Updated on 2024-06-13 GMT+08:00

Modifying a Message Template

Function

This API is used to modify a notification template base on its name.

Calling Method

For details, see Calling APIs.

URI

PUT /v2/{project_id}/{domain_id}/lts/events/notification/templates

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For details about how to obtain a project ID, see Obtaining the Project ID, Account ID, Log Group ID, and Log Stream ID.

Minimum: 32

Maximum: 32

domain_id

Yes

String

Account ID. For details about how to obtain an account ID, see Obtaining the Project ID, Account ID, Log Group ID, and Log Stream ID.

Minimum: 32

Maximum: 32

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

User token obtained from IAM. For details about how to obtain a user token, see Obtaining a User Token.

Minimum: 1000

Maximum: 2000

Content-Type

Yes

String

Set this parameter to application/json;charset=UTF-8.

Minimum: 30

Maximum: 30

Table 3 Request body parameters

Parameter

Mandatory

Type

Description

name

Yes

String

Notification rule name, which is mandatory. The value can contain only digits, letters, underscores (), and hyphens (-), and cannot start or end with special characters such as underscores (). The value can contain 1 to 100 characters and cannot be changed after being created.

Minimum: 1

Maximum: 100

type

No

Array of strings

This field is reserved and optional.

desc

Yes

String

Template description, which is mandatory. The value can contain only digits, letters, and underscores (), and cannot start or end with an underscore (). The value can contain 0 to 1024 characters.

Minimum: 0

Maximum: 1024

source

Yes

String

Template source. Currently, this parameter must be set to LTS. Otherwise, the template cannot be filtered.

Minimum: 3

Maximum: 3

locale

Yes

String

Language, which is mandatory. The value can be zh-cn or en-us.

Enumeration values:

  • zh-cn

  • en-us

templates

Yes

Array of UpdateSubTemplate objects

Template body, which is an array.

Table 4 UpdateSubTemplate

Parameter

Mandatory

Type

Description

sub_type

Yes

String

Template subtype. Only the following types are supported: sms, dingding, wechat, webhook, email, and voice.

Enumeration values:

  • sms

  • dingding

  • wechat

  • webhook

  • email

  • voice

content

Yes

String

In the subtemplate body, the variables following the dollar sign ($) can only be the following ones. The supported variables vary according to the alarm type (keyword or SQL). Currently, the two alarm types have the following common variables:

Severity: ${event_severity}; Occurred: ${starts_at}; Alarm source: $event.metadata.resource_provider; Resource type: $event.metadata.resource_type; Resource ID: ${resources}; Statistical type: by keyword; Expression: $event.annotations.condition_expression; Current value: $event.annotations.current_value; Statistical period: $event.annotations.frequency; Variables specific to keyword alarms: Query time: $event.annotations.results[0].time; Query log: $event.annotations.results[0].raw_results; Variables specific to SQL alarms: Log group/stream name: $event.annotations.results[0].resource_id; Query statement: $event.annotations.results[0].sql; Query time: $event.annotations.results[0].time; Query URL: $event.annotations.results[0].url; Query log: $event.annotations.results[0].raw_results;

NOTE:

The semicolon (;) following the variable is an English character and must be added. Otherwise, the template replacement fails.

Response Parameters

Status code: 201

Table 5 Response body parameters

Parameter

Type

Description

name

String

Notification rule name, which is mandatory. The value can contain only digits, letters, underscores (), and hyphens (-), and cannot start or end with special characters such as underscores (). The value can contain 1 to 100 characters and cannot be changed after being created.

Minimum: 1

Maximum: 100

type

Array of strings

This field is reserved and optional.

desc

String

Template description, which is mandatory. The value can contain only digits, letters, and underscores (), and cannot start or end with an underscore (). The value can contain 0 to 1024 characters.

Minimum: 0

Maximum: 1024

source

String

Template source. Currently, this parameter must be set to LTS. Otherwise, the template cannot be filtered.

Minimum: 3

Maximum: 3

locale

String

Language, which is mandatory. The value can be zh-cn or en-us.

Enumeration values:

  • zh-cn

  • en-us

templates

Array of SubTemplateResBody objects

Template body, which is an array.

Table 6 SubTemplateResBody

Parameter

Type

Description

sub_type

String

Template subtype. Only the following types are supported: sms, dingding, wechat, webhook, and email. Value:

Enumeration values:

  • sms

  • dingding

  • wechat

  • webhook

  • email

  • voice

content

String

In the subtemplate body, the variables following the dollar sign ($) can only be the following ones. The supported variables vary according to the alarm type (keyword or SQL). Currently, the two alarm types have the following common variables:

Severity: ${event_severity}; Occurred: ${starts_at}; Alarm source: $event.metadata.resource_provider; Resource type: $event.metadata.resource_type; Resource ID: ${resources}; Statistical type: by keyword; Expression: $event.annotations.condition_expression; Current value: $event.annotations.current_value; Statistical period: $event.annotations.frequency; Variables specific to keyword alarms: Query time: $event.annotations.results[0].time; Query log: $event.annotations.results[0].raw_results; Variables specific to SQL alarms: Log group/stream name: $event.annotations.results[0].resource_id; Query statement: $event.annotations.results[0].sql; Query time: $event.annotations.results[0].time; Query URL: $event.annotations.results[0].url; Query log: $event.annotations.results[0].raw_results;

NOTE:

The semicolon (;) following the variable is an English character and must be added. Otherwise, the template replacement fails.

Status code: 400

Table 7 Response body parameters

Parameter

Type

Description

error_code

String

Error code.

Minimum: 8

Maximum: 8

error_msg

String

Error message.

Status code: 500

Table 8 Response body parameters

Parameter

Type

Description

error_code

String

Error code.

Minimum: 8

Maximum: 8

error_msg

String

Error message.

Example Requests

Modifying a message template

PUT https://{endpoint}/v2/{project_id}/{domain_id}/lts/events/notification/templates

{
  "name" : "xxx",
  "desc" : "xxxxxx",
  "type" : [ ],
  "source" : "LTS",
  "locale" : "zh-cn",
  "templates" : [ {
    "sub_type" : "sms",
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;"
  }, {
    "sub_type" : "dingding",
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;"
  }, {
    "sub_type" : "wechat",
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;"
  }, {
    "sub_type" : "webhook",
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;"
  }, {
    "sub_type" : "email",
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nAlarm source: $event.metadata.resource_provider;\nResource type: $event.metadata.resource_type;\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;\nQuery time: $event.annotations.results[0].time;\nQuery log: $event.annotations.results[0].raw_results;"
  }, {
    "sub_type" : "voice",
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;"
  } ]
}

Example Responses

Status code: 201

The request is successful.

{
  "desc" : "description",
  "locale" : "zh-cn",
  "name" : "postman-test1",
  "source" : "LTS",
  "templates" : [ {
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;",
    "sub_type" : "sms"
  }, {
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;",
    "sub_type" : "dingding"
  }, {
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;",
    "sub_type" : "wechat"
  }, {
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;",
    "sub_type" : "webhook"
  }, {
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nAlarm source: $event.metadata.resource_provider;\nResource type: $event.metadata.resource_type;\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;\nQuery time: $event.annotations.results[0].time;\nQuery log: $event.annotations.results[0].raw_results;",
    "sub_type" : "email"
  }, {
    "content" : "Severity: ${event_severity};\nOccurred: ${starts_at};\nResource ID: ${resources};\nStatistical type: by keyword;\nExpression: $event.annotations.condition_expression;\nCurrent value: $event.annotations.current_value;\nStatistical period: $event.annotations.frequency;",
    "sub_type" : "voice"
  } ],
  "type" : [ ]
}

Status code: 400

Invalid request. Modify the request based on the description in error_msg before a retry.

{
  "error_code" : "LTS.2016",
  "error_msg" : "desc is invalid!"
}

Status code: 500

The server has received the request but encountered an internal error.

{
  "error_code" : "LTS.2016",
  "error_msg" : "Failed to update notification template"
}

SDK Sample Code

The SDK sample code is as follows.

Modifying a message template

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package com.huaweicloud.sdk.test;

import com.huaweicloud.sdk.core.auth.ICredential;
import com.huaweicloud.sdk.core.auth.BasicCredentials;
import com.huaweicloud.sdk.core.exception.ConnectionException;
import com.huaweicloud.sdk.core.exception.RequestTimeoutException;
import com.huaweicloud.sdk.core.exception.ServiceResponseException;
import com.huaweicloud.sdk.lts.v2.region.LtsRegion;
import com.huaweicloud.sdk.lts.v2.*;
import com.huaweicloud.sdk.lts.v2.model.*;

import java.util.List;
import java.util.ArrayList;

public class UpdateNotificationTemplateSolution {

    public static void main(String[] args) {
        // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
        String ak = System.getenv("CLOUD_SDK_AK");
        String sk = System.getenv("CLOUD_SDK_SK");

        ICredential auth = new BasicCredentials()
                .withAk(ak)
                .withSk(sk);

        LtsClient client = LtsClient.newBuilder()
                .withCredential(auth)
                .withRegion(LtsRegion.valueOf("<YOUR REGION>"))
                .build();
        UpdateNotificationTemplateRequest request = new UpdateNotificationTemplateRequest();
        CreateNotificationTemplateRequestBody body = new CreateNotificationTemplateRequestBody();
        List<SubTemplate> listbodyTemplates = new ArrayList<>();
        listbodyTemplates.add(
            new SubTemplate()
                .withSubType(SubTemplate.SubTypeEnum.fromValue("sms"))
                .withContent("Severity: ${event_severity};
Occurred: ${starts_at};
Resource ID: ${resources};
Statistical type: by keyword;
Expression: $event.annotations.condition_expression;
Current value: $event.annotations.current_value;
Statistical period: $event.annotations.frequency;")
        );
        listbodyTemplates.add(
            new SubTemplate()
                .withSubType(SubTemplate.SubTypeEnum.fromValue("dingding"))
                .withContent("Severity: ${event_severity};
Occurred: ${starts_at};
Resource ID: ${resources};
Statistical type: by keyword;
Expression: $event.annotations.condition_expression;
Current value: $event.annotations.current_value;
Statistical period: $event.annotations.frequency;")
        );
        listbodyTemplates.add(
            new SubTemplate()
                .withSubType(SubTemplate.SubTypeEnum.fromValue("wechat"))
                .withContent("Severity: ${event_severity};
Occurred: ${starts_at};
Resource ID: ${resources};
Statistical type: by keyword;
Expression: $event.annotations.condition_expression;
Current value: $event.annotations.current_value;
Statistical period: $event.annotations.frequency;")
        );
        listbodyTemplates.add(
            new SubTemplate()
                .withSubType(SubTemplate.SubTypeEnum.fromValue("webhook"))
                .withContent("Severity: ${event_severity};
Occurred: ${starts_at};
Resource ID: ${resources};
Statistical type: by keyword;
Expression: $event.annotations.condition_expression;
Current value: $event.annotations.current_value;
Statistical period: $event.annotations.frequency;")
        );
        listbodyTemplates.add(
            new SubTemplate()
                .withSubType(SubTemplate.SubTypeEnum.fromValue("email"))
                .withContent("Severity: ${event_severity};
Occurred: ${starts_at};
Alarm source: $event.metadata.resource_provider;
Resource type: $event.metadata.resource_type;
Resource ID: ${resources};
Statistical type: by keyword;
Expression: $event.annotations.condition_expression;
Current value: $event.annotations.current_value;
Statistical period: $event.annotations.frequency;
Query time: $event.annotations.results[0].time;
Query log: $event.annotations.results[0].raw_results;")
        );
        listbodyTemplates.add(
            new SubTemplate()
                .withSubType(SubTemplate.SubTypeEnum.fromValue("voice"))
                .withContent("Severity: ${event_severity};
Occurred: ${starts_at};
Resource ID: ${resources};
Statistical type: by keyword;
Expression: $event.annotations.condition_expression;
Current value: $event.annotations.current_value;
Statistical period: $event.annotations.frequency;")
        );
        body.withTemplates(listbodyTemplates);
        body.withLocale(CreateNotificationTemplateRequestBody.LocaleEnum.fromValue("zh-cn"));
        body.withSource("LTS");
        body.withDesc("xxxxxx");
        body.withName("xxx");
        request.withBody(body);
        try {
            UpdateNotificationTemplateResponse response = client.updateNotificationTemplate(request);
            System.out.println(response.toString());
        } catch (ConnectionException e) {
            e.printStackTrace();
        } catch (RequestTimeoutException e) {
            e.printStackTrace();
        } catch (ServiceResponseException e) {
            e.printStackTrace();
            System.out.println(e.getHttpStatusCode());
            System.out.println(e.getRequestId());
            System.out.println(e.getErrorCode());
            System.out.println(e.getErrorMsg());
        }
    }
}

Modifying a message template

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
# coding: utf-8

import os
from huaweicloudsdkcore.auth.credentials import BasicCredentials
from huaweicloudsdklts.v2.region.lts_region import LtsRegion
from huaweicloudsdkcore.exceptions import exceptions
from huaweicloudsdklts.v2 import *

if __name__ == "__main__":
    # The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    # In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
    ak = os.environ["CLOUD_SDK_AK"]
    sk = os.environ["CLOUD_SDK_SK"]

    credentials = BasicCredentials(ak, sk)

    client = LtsClient.new_builder() \
        .with_credentials(credentials) \
        .with_region(LtsRegion.value_of("<YOUR REGION>")) \
        .build()

    try:
        request = UpdateNotificationTemplateRequest()
        listTemplatesbody = [
            SubTemplate(
                sub_type="sms",
                content="Severity: ${event_severity};
        Occurred: ${starts_at};
        Resource ID: ${resources};
        Statistical type: by keyword;
        Expression: $event.annotations.condition_expression;
        Current value: $event.annotations.current_value;
        Statistical period: $event.annotations.frequency;"
            ),
            SubTemplate(
                sub_type="dingding",
                content="Severity: ${event_severity};
        Occurred: ${starts_at};
        Resource ID: ${resources};
        Statistical type: by keyword;
        Expression: $event.annotations.condition_expression;
        Current value: $event.annotations.current_value;
        Statistical period: $event.annotations.frequency;"
            ),
            SubTemplate(
                sub_type="wechat",
                content="Severity: ${event_severity};
        Occurred: ${starts_at};
        Resource ID: ${resources};
        Statistical type: by keyword;
        Expression: $event.annotations.condition_expression;
        Current value: $event.annotations.current_value;
        Statistical period: $event.annotations.frequency;"
            ),
            SubTemplate(
                sub_type="webhook",
                content="Severity: ${event_severity};
        Occurred: ${starts_at};
        Resource ID: ${resources};
        Statistical type: by keyword;
        Expression: $event.annotations.condition_expression;
        Current value: $event.annotations.current_value;
        Statistical period: $event.annotations.frequency;"
            ),
            SubTemplate(
                sub_type="email",
                content="Severity: ${event_severity};
        Occurred: ${starts_at};
        Alarm source: $event.metadata.resource_provider;
        Resource type: $event.metadata.resource_type;
        Resource ID: ${resources};
        Statistical type: by keyword;
        Expression: $event.annotations.condition_expression;
        Current value: $event.annotations.current_value;
        Statistical period: $event.annotations.frequency;
        Query time: $event.annotations.results[0].time;
        Query log: $event.annotations.results[0].raw_results;"
            ),
            SubTemplate(
                sub_type="voice",
                content="Severity: ${event_severity};
        Occurred: ${starts_at};
        Resource ID: ${resources};
        Statistical type: by keyword;
        Expression: $event.annotations.condition_expression;
        Current value: $event.annotations.current_value;
        Statistical period: $event.annotations.frequency;"
            )
        ]
        request.body = CreateNotificationTemplateRequestBody(
            templates=listTemplatesbody,
            locale="zh-cn",
            source="LTS",
            desc="xxxxxx",
            name="xxx"
        )
        response = client.update_notification_template(request)
        print(response)
    except exceptions.ClientRequestException as e:
        print(e.status_code)
        print(e.request_id)
        print(e.error_code)
        print(e.error_msg)

Modifying a message template

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
package main

import (
	"fmt"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
    lts "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/lts/v2"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/lts/v2/model"
    region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/lts/v2/region"
)

func main() {
    // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
    ak := os.Getenv("CLOUD_SDK_AK")
    sk := os.Getenv("CLOUD_SDK_SK")

    auth := basic.NewCredentialsBuilder().
        WithAk(ak).
        WithSk(sk).
        Build()

    client := lts.NewLtsClient(
        lts.LtsClientBuilder().
            WithRegion(region.ValueOf("<YOUR REGION>")).
            WithCredential(auth).
            Build())

    request := &model.UpdateNotificationTemplateRequest{}
	var listTemplatesbody = []model.SubTemplate{
        {
            SubType: model.GetSubTemplateSubTypeEnum().SMS,
            Content: "Severity: ${event_severity};
    Occurred: ${starts_at};
    Resource ID: ${resources};
    Statistical type: by keyword;
    Expression: $event.annotations.condition_expression;
    Current value: $event.annotations.current_value;
    Statistical period: $event.annotations.frequency;",
        },
        {
            SubType: model.GetSubTemplateSubTypeEnum().DINGDING,
            Content: "Severity: ${event_severity};
    Occurred: ${starts_at};
    Resource ID: ${resources};
    Statistical type: by keyword;
    Expression: $event.annotations.condition_expression;
    Current value: $event.annotations.current_value;
    Statistical period: $event.annotations.frequency;",
        },
        {
            SubType: model.GetSubTemplateSubTypeEnum().WECHAT,
            Content: "Severity: ${event_severity};
    Occurred: ${starts_at};
    Resource ID: ${resources};
    Statistical type: by keyword;
    Expression: $event.annotations.condition_expression;
    Current value: $event.annotations.current_value;
    Statistical period: $event.annotations.frequency;",
        },
        {
            SubType: model.GetSubTemplateSubTypeEnum().WEBHOOK,
            Content: "Severity: ${event_severity};
    Occurred: ${starts_at};
    Resource ID: ${resources};
    Statistical type: by keyword;
    Expression: $event.annotations.condition_expression;
    Current value: $event.annotations.current_value;
    Statistical period: $event.annotations.frequency;",
        },
        {
            SubType: model.GetSubTemplateSubTypeEnum().EMAIL,
            Content: "Severity: ${event_severity};
    Occurred: ${starts_at};
    Alarm source: $event.metadata.resource_provider;
    Resource type: $event.metadata.resource_type;
    Resource ID: ${resources};
    Statistical type: by keyword;
    Expression: $event.annotations.condition_expression;
    Current value: $event.annotations.current_value;
    Statistical period: $event.annotations.frequency;
    Query time: $event.annotations.results[0].time;
    Query log: $event.annotations.results[0].raw_results;",
        },
        {
            SubType: model.GetSubTemplateSubTypeEnum().VOICE,
            Content: "Severity: ${event_severity};
    Occurred: ${starts_at};
    Resource ID: ${resources};
    Statistical type: by keyword;
    Expression: $event.annotations.condition_expression;
    Current value: $event.annotations.current_value;
    Statistical period: $event.annotations.frequency;",
        },
    }
	request.Body = &model.CreateNotificationTemplateRequestBody{
		Templates: listTemplatesbody,
		Locale: model.GetCreateNotificationTemplateRequestBodyLocaleEnum().ZH_CN,
		Source: "LTS",
		Desc: "xxxxxx",
		Name: "xxx",
	}
	response, err := client.UpdateNotificationTemplate(request)
	if err == nil {
        fmt.Printf("%+v\n", response)
    } else {
        fmt.Println(err)
    }
}

For SDK sample code of more programming languages, see the Sample Code tab in API Explorer. SDK sample code can be automatically generated.

Status Codes

Status Code

Description

201

The request is successful.

400

Invalid request. Modify the request based on the description in error_msg before a retry.

500

The server has received the request but encountered an internal error.

Error Codes

See Error Codes.