1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getClsAlarmNotices
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
tencentcloud logo
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack

    Use this data source to query detailed information of cls alarm notices

    Example Usage

    Query all cls alarm notices

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getClsAlarmNotices({});
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_cls_alarm_notices()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.GetClsAlarmNotices(ctx, &tencentcloud.GetClsAlarmNoticesArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Tencentcloud.GetClsAlarmNotices.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetClsAlarmNoticesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = TencentcloudFunctions.getClsAlarmNotices(GetClsAlarmNoticesArgs.builder()
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getClsAlarmNotices
          arguments: {}
    

    Query by filters

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getClsAlarmNotices({
        filters: [
            {
                key: "name",
                values: ["tf-example"],
            },
            {
                key: "alarmNoticeId",
                values: ["notice-c2af43ee-1a4b-4c4a-ae3e-f81481280101"],
            },
        ],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_cls_alarm_notices(filters=[
        {
            "key": "name",
            "values": ["tf-example"],
        },
        {
            "key": "alarmNoticeId",
            "values": ["notice-c2af43ee-1a4b-4c4a-ae3e-f81481280101"],
        },
    ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.GetClsAlarmNotices(ctx, &tencentcloud.GetClsAlarmNoticesArgs{
    			Filters: []tencentcloud.GetClsAlarmNoticesFilter{
    				{
    					Key: "name",
    					Values: []string{
    						"tf-example",
    					},
    				},
    				{
    					Key: "alarmNoticeId",
    					Values: []string{
    						"notice-c2af43ee-1a4b-4c4a-ae3e-f81481280101",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Tencentcloud.GetClsAlarmNotices.Invoke(new()
        {
            Filters = new[]
            {
                new Tencentcloud.Inputs.GetClsAlarmNoticesFilterInputArgs
                {
                    Key = "name",
                    Values = new[]
                    {
                        "tf-example",
                    },
                },
                new Tencentcloud.Inputs.GetClsAlarmNoticesFilterInputArgs
                {
                    Key = "alarmNoticeId",
                    Values = new[]
                    {
                        "notice-c2af43ee-1a4b-4c4a-ae3e-f81481280101",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetClsAlarmNoticesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = TencentcloudFunctions.getClsAlarmNotices(GetClsAlarmNoticesArgs.builder()
                .filters(            
                    GetClsAlarmNoticesFilterArgs.builder()
                        .key("name")
                        .values("tf-example")
                        .build(),
                    GetClsAlarmNoticesFilterArgs.builder()
                        .key("alarmNoticeId")
                        .values("notice-c2af43ee-1a4b-4c4a-ae3e-f81481280101")
                        .build())
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getClsAlarmNotices
          arguments:
            filters:
              - key: name
                values:
                  - tf-example
              - key: alarmNoticeId
                values:
                  - notice-c2af43ee-1a4b-4c4a-ae3e-f81481280101
    

    Using getClsAlarmNotices

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getClsAlarmNotices(args: GetClsAlarmNoticesArgs, opts?: InvokeOptions): Promise<GetClsAlarmNoticesResult>
    function getClsAlarmNoticesOutput(args: GetClsAlarmNoticesOutputArgs, opts?: InvokeOptions): Output<GetClsAlarmNoticesResult>
    def get_cls_alarm_notices(filters: Optional[Sequence[GetClsAlarmNoticesFilter]] = None,
                              has_alarm_shield_count: Optional[bool] = None,
                              id: Optional[str] = None,
                              result_output_file: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetClsAlarmNoticesResult
    def get_cls_alarm_notices_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetClsAlarmNoticesFilterArgs]]]] = None,
                              has_alarm_shield_count: Optional[pulumi.Input[bool]] = None,
                              id: Optional[pulumi.Input[str]] = None,
                              result_output_file: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetClsAlarmNoticesResult]
    func GetClsAlarmNotices(ctx *Context, args *GetClsAlarmNoticesArgs, opts ...InvokeOption) (*GetClsAlarmNoticesResult, error)
    func GetClsAlarmNoticesOutput(ctx *Context, args *GetClsAlarmNoticesOutputArgs, opts ...InvokeOption) GetClsAlarmNoticesResultOutput

    > Note: This function is named GetClsAlarmNotices in the Go SDK.

    public static class GetClsAlarmNotices 
    {
        public static Task<GetClsAlarmNoticesResult> InvokeAsync(GetClsAlarmNoticesArgs args, InvokeOptions? opts = null)
        public static Output<GetClsAlarmNoticesResult> Invoke(GetClsAlarmNoticesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetClsAlarmNoticesResult> getClsAlarmNotices(GetClsAlarmNoticesArgs args, InvokeOptions options)
    public static Output<GetClsAlarmNoticesResult> getClsAlarmNotices(GetClsAlarmNoticesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getClsAlarmNotices:getClsAlarmNotices
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetClsAlarmNoticesFilter>
    Filter conditions. Maximum 10 filters, each with up to 5 values. Multiple values within the same filter use OR logic, multiple filters use AND logic.
    HasAlarmShieldCount bool
    Whether to query alarm shield count statistics. Default is false.
    Id string
    ResultOutputFile string
    Used to save results.
    Filters []GetClsAlarmNoticesFilter
    Filter conditions. Maximum 10 filters, each with up to 5 values. Multiple values within the same filter use OR logic, multiple filters use AND logic.
    HasAlarmShieldCount bool
    Whether to query alarm shield count statistics. Default is false.
    Id string
    ResultOutputFile string
    Used to save results.
    filters List<GetClsAlarmNoticesFilter>
    Filter conditions. Maximum 10 filters, each with up to 5 values. Multiple values within the same filter use OR logic, multiple filters use AND logic.
    hasAlarmShieldCount Boolean
    Whether to query alarm shield count statistics. Default is false.
    id String
    resultOutputFile String
    Used to save results.
    filters GetClsAlarmNoticesFilter[]
    Filter conditions. Maximum 10 filters, each with up to 5 values. Multiple values within the same filter use OR logic, multiple filters use AND logic.
    hasAlarmShieldCount boolean
    Whether to query alarm shield count statistics. Default is false.
    id string
    resultOutputFile string
    Used to save results.
    filters Sequence[GetClsAlarmNoticesFilter]
    Filter conditions. Maximum 10 filters, each with up to 5 values. Multiple values within the same filter use OR logic, multiple filters use AND logic.
    has_alarm_shield_count bool
    Whether to query alarm shield count statistics. Default is false.
    id str
    result_output_file str
    Used to save results.
    filters List<Property Map>
    Filter conditions. Maximum 10 filters, each with up to 5 values. Multiple values within the same filter use OR logic, multiple filters use AND logic.
    hasAlarmShieldCount Boolean
    Whether to query alarm shield count statistics. Default is false.
    id String
    resultOutputFile String
    Used to save results.

    getClsAlarmNotices Result

    The following output properties are available:

    Supporting Types

    GetClsAlarmNoticesAlarmNotice

    AlarmNoticeId string
    Alarm notice ID.
    AlarmShieldCounts List<GetClsAlarmNoticesAlarmNoticeAlarmShieldCount>
    Alarm shield count statistics.
    AlarmShieldStatus double
    Alarm shield status (0: not shielded, 1: shielded).
    CallbackPrioritize bool
    Whether webhook callback takes priority.
    CreateTime string
    Creation time.
    DeliverFlag double
    Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
    DeliverStatus double
    Delivery status (0: delivered, 1: not delivered).
    JumpDomain string
    Jump domain.
    Name string
    Alarm notice name.
    NoticeReceivers List<GetClsAlarmNoticesAlarmNoticeNoticeReceiver>
    Notice receivers for this rule.
    NoticeRules List<GetClsAlarmNoticesAlarmNoticeNoticeRule>
    List of notice rules.
    Tags List<GetClsAlarmNoticesAlarmNoticeTag>
    Tag list.
    UpdateTime string
    Last update time.
    WebCallbacks List<GetClsAlarmNoticesAlarmNoticeWebCallback>
    List of webhook callbacks.
    AlarmNoticeId string
    Alarm notice ID.
    AlarmShieldCounts []GetClsAlarmNoticesAlarmNoticeAlarmShieldCount
    Alarm shield count statistics.
    AlarmShieldStatus float64
    Alarm shield status (0: not shielded, 1: shielded).
    CallbackPrioritize bool
    Whether webhook callback takes priority.
    CreateTime string
    Creation time.
    DeliverFlag float64
    Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
    DeliverStatus float64
    Delivery status (0: delivered, 1: not delivered).
    JumpDomain string
    Jump domain.
    Name string
    Alarm notice name.
    NoticeReceivers []GetClsAlarmNoticesAlarmNoticeNoticeReceiver
    Notice receivers for this rule.
    NoticeRules []GetClsAlarmNoticesAlarmNoticeNoticeRule
    List of notice rules.
    Tags []GetClsAlarmNoticesAlarmNoticeTag
    Tag list.
    UpdateTime string
    Last update time.
    WebCallbacks []GetClsAlarmNoticesAlarmNoticeWebCallback
    List of webhook callbacks.
    alarmNoticeId String
    Alarm notice ID.
    alarmShieldCounts List<GetClsAlarmNoticesAlarmNoticeAlarmShieldCount>
    Alarm shield count statistics.
    alarmShieldStatus Double
    Alarm shield status (0: not shielded, 1: shielded).
    callbackPrioritize Boolean
    Whether webhook callback takes priority.
    createTime String
    Creation time.
    deliverFlag Double
    Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
    deliverStatus Double
    Delivery status (0: delivered, 1: not delivered).
    jumpDomain String
    Jump domain.
    name String
    Alarm notice name.
    noticeReceivers List<GetClsAlarmNoticesAlarmNoticeNoticeReceiver>
    Notice receivers for this rule.
    noticeRules List<GetClsAlarmNoticesAlarmNoticeNoticeRule>
    List of notice rules.
    tags List<GetClsAlarmNoticesAlarmNoticeTag>
    Tag list.
    updateTime String
    Last update time.
    webCallbacks List<GetClsAlarmNoticesAlarmNoticeWebCallback>
    List of webhook callbacks.
    alarmNoticeId string
    Alarm notice ID.
    alarmShieldCounts GetClsAlarmNoticesAlarmNoticeAlarmShieldCount[]
    Alarm shield count statistics.
    alarmShieldStatus number
    Alarm shield status (0: not shielded, 1: shielded).
    callbackPrioritize boolean
    Whether webhook callback takes priority.
    createTime string
    Creation time.
    deliverFlag number
    Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
    deliverStatus number
    Delivery status (0: delivered, 1: not delivered).
    jumpDomain string
    Jump domain.
    name string
    Alarm notice name.
    noticeReceivers GetClsAlarmNoticesAlarmNoticeNoticeReceiver[]
    Notice receivers for this rule.
    noticeRules GetClsAlarmNoticesAlarmNoticeNoticeRule[]
    List of notice rules.
    tags GetClsAlarmNoticesAlarmNoticeTag[]
    Tag list.
    updateTime string
    Last update time.
    webCallbacks GetClsAlarmNoticesAlarmNoticeWebCallback[]
    List of webhook callbacks.
    alarm_notice_id str
    Alarm notice ID.
    alarm_shield_counts Sequence[GetClsAlarmNoticesAlarmNoticeAlarmShieldCount]
    Alarm shield count statistics.
    alarm_shield_status float
    Alarm shield status (0: not shielded, 1: shielded).
    callback_prioritize bool
    Whether webhook callback takes priority.
    create_time str
    Creation time.
    deliver_flag float
    Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
    deliver_status float
    Delivery status (0: delivered, 1: not delivered).
    jump_domain str
    Jump domain.
    name str
    Alarm notice name.
    notice_receivers Sequence[GetClsAlarmNoticesAlarmNoticeNoticeReceiver]
    Notice receivers for this rule.
    notice_rules Sequence[GetClsAlarmNoticesAlarmNoticeNoticeRule]
    List of notice rules.
    tags Sequence[GetClsAlarmNoticesAlarmNoticeTag]
    Tag list.
    update_time str
    Last update time.
    web_callbacks Sequence[GetClsAlarmNoticesAlarmNoticeWebCallback]
    List of webhook callbacks.
    alarmNoticeId String
    Alarm notice ID.
    alarmShieldCounts List<Property Map>
    Alarm shield count statistics.
    alarmShieldStatus Number
    Alarm shield status (0: not shielded, 1: shielded).
    callbackPrioritize Boolean
    Whether webhook callback takes priority.
    createTime String
    Creation time.
    deliverFlag Number
    Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
    deliverStatus Number
    Delivery status (0: delivered, 1: not delivered).
    jumpDomain String
    Jump domain.
    name String
    Alarm notice name.
    noticeReceivers List<Property Map>
    Notice receivers for this rule.
    noticeRules List<Property Map>
    List of notice rules.
    tags List<Property Map>
    Tag list.
    updateTime String
    Last update time.
    webCallbacks List<Property Map>
    List of webhook callbacks.

    GetClsAlarmNoticesAlarmNoticeAlarmShieldCount

    TotalCount double
    Total count of shielded alarms.
    TotalCount float64
    Total count of shielded alarms.
    totalCount Double
    Total count of shielded alarms.
    totalCount number
    Total count of shielded alarms.
    total_count float
    Total count of shielded alarms.
    totalCount Number
    Total count of shielded alarms.

    GetClsAlarmNoticesAlarmNoticeNoticeReceiver

    EndTime string
    End time.
    Index double
    Index order.
    ReceiverChannels List<string>
    Notification channels.
    ReceiverIds List<double>
    Receiver IDs.
    ReceiverType string
    Receiver type.
    StartTime string
    Start time.
    EndTime string
    End time.
    Index float64
    Index order.
    ReceiverChannels []string
    Notification channels.
    ReceiverIds []float64
    Receiver IDs.
    ReceiverType string
    Receiver type.
    StartTime string
    Start time.
    endTime String
    End time.
    index Double
    Index order.
    receiverChannels List<String>
    Notification channels.
    receiverIds List<Double>
    Receiver IDs.
    receiverType String
    Receiver type.
    startTime String
    Start time.
    endTime string
    End time.
    index number
    Index order.
    receiverChannels string[]
    Notification channels.
    receiverIds number[]
    Receiver IDs.
    receiverType string
    Receiver type.
    startTime string
    Start time.
    end_time str
    End time.
    index float
    Index order.
    receiver_channels Sequence[str]
    Notification channels.
    receiver_ids Sequence[float]
    Receiver IDs.
    receiver_type str
    Receiver type.
    start_time str
    Start time.
    endTime String
    End time.
    index Number
    Index order.
    receiverChannels List<String>
    Notification channels.
    receiverIds List<Number>
    Receiver IDs.
    receiverType String
    Receiver type.
    startTime String
    Start time.

    GetClsAlarmNoticesAlarmNoticeNoticeRule

    DayOfWeeks List<double>
    Days of week (0-6, 0 is Sunday).
    JumpDomain string
    Jump domain.
    NoticeReceivers List<GetClsAlarmNoticesAlarmNoticeNoticeRuleNoticeReceiver>
    Notice receivers for this rule.
    NotifyWays List<string>
    Notification ways.
    ReceiverType string
    Receiver type.
    RepeatInterval double
    Repeat interval in minutes.
    TimeRangeEnd string
    Effective end time (24-hour format HH:mm:ss).
    TimeRangeStart string
    Effective start time (24-hour format HH:mm:ss).
    WebCallbacks List<GetClsAlarmNoticesAlarmNoticeNoticeRuleWebCallback>
    List of webhook callbacks.
    DayOfWeeks []float64
    Days of week (0-6, 0 is Sunday).
    JumpDomain string
    Jump domain.
    NoticeReceivers []GetClsAlarmNoticesAlarmNoticeNoticeRuleNoticeReceiver
    Notice receivers for this rule.
    NotifyWays []string
    Notification ways.
    ReceiverType string
    Receiver type.
    RepeatInterval float64
    Repeat interval in minutes.
    TimeRangeEnd string
    Effective end time (24-hour format HH:mm:ss).
    TimeRangeStart string
    Effective start time (24-hour format HH:mm:ss).
    WebCallbacks []GetClsAlarmNoticesAlarmNoticeNoticeRuleWebCallback
    List of webhook callbacks.
    dayOfWeeks List<Double>
    Days of week (0-6, 0 is Sunday).
    jumpDomain String
    Jump domain.
    noticeReceivers List<GetClsAlarmNoticesAlarmNoticeNoticeRuleNoticeReceiver>
    Notice receivers for this rule.
    notifyWays List<String>
    Notification ways.
    receiverType String
    Receiver type.
    repeatInterval Double
    Repeat interval in minutes.
    timeRangeEnd String
    Effective end time (24-hour format HH:mm:ss).
    timeRangeStart String
    Effective start time (24-hour format HH:mm:ss).
    webCallbacks List<GetClsAlarmNoticesAlarmNoticeNoticeRuleWebCallback>
    List of webhook callbacks.
    dayOfWeeks number[]
    Days of week (0-6, 0 is Sunday).
    jumpDomain string
    Jump domain.
    noticeReceivers GetClsAlarmNoticesAlarmNoticeNoticeRuleNoticeReceiver[]
    Notice receivers for this rule.
    notifyWays string[]
    Notification ways.
    receiverType string
    Receiver type.
    repeatInterval number
    Repeat interval in minutes.
    timeRangeEnd string
    Effective end time (24-hour format HH:mm:ss).
    timeRangeStart string
    Effective start time (24-hour format HH:mm:ss).
    webCallbacks GetClsAlarmNoticesAlarmNoticeNoticeRuleWebCallback[]
    List of webhook callbacks.
    day_of_weeks Sequence[float]
    Days of week (0-6, 0 is Sunday).
    jump_domain str
    Jump domain.
    notice_receivers Sequence[GetClsAlarmNoticesAlarmNoticeNoticeRuleNoticeReceiver]
    Notice receivers for this rule.
    notify_ways Sequence[str]
    Notification ways.
    receiver_type str
    Receiver type.
    repeat_interval float
    Repeat interval in minutes.
    time_range_end str
    Effective end time (24-hour format HH:mm:ss).
    time_range_start str
    Effective start time (24-hour format HH:mm:ss).
    web_callbacks Sequence[GetClsAlarmNoticesAlarmNoticeNoticeRuleWebCallback]
    List of webhook callbacks.
    dayOfWeeks List<Number>
    Days of week (0-6, 0 is Sunday).
    jumpDomain String
    Jump domain.
    noticeReceivers List<Property Map>
    Notice receivers for this rule.
    notifyWays List<String>
    Notification ways.
    receiverType String
    Receiver type.
    repeatInterval Number
    Repeat interval in minutes.
    timeRangeEnd String
    Effective end time (24-hour format HH:mm:ss).
    timeRangeStart String
    Effective start time (24-hour format HH:mm:ss).
    webCallbacks List<Property Map>
    List of webhook callbacks.

    GetClsAlarmNoticesAlarmNoticeNoticeRuleNoticeReceiver

    EndTime string
    End time.
    Index double
    Index order.
    ReceiverChannels List<string>
    Notification channels.
    ReceiverIds List<double>
    Receiver IDs.
    ReceiverType string
    Receiver type.
    StartTime string
    Start time.
    EndTime string
    End time.
    Index float64
    Index order.
    ReceiverChannels []string
    Notification channels.
    ReceiverIds []float64
    Receiver IDs.
    ReceiverType string
    Receiver type.
    StartTime string
    Start time.
    endTime String
    End time.
    index Double
    Index order.
    receiverChannels List<String>
    Notification channels.
    receiverIds List<Double>
    Receiver IDs.
    receiverType String
    Receiver type.
    startTime String
    Start time.
    endTime string
    End time.
    index number
    Index order.
    receiverChannels string[]
    Notification channels.
    receiverIds number[]
    Receiver IDs.
    receiverType string
    Receiver type.
    startTime string
    Start time.
    end_time str
    End time.
    index float
    Index order.
    receiver_channels Sequence[str]
    Notification channels.
    receiver_ids Sequence[float]
    Receiver IDs.
    receiver_type str
    Receiver type.
    start_time str
    Start time.
    endTime String
    End time.
    index Number
    Index order.
    receiverChannels List<String>
    Notification channels.
    receiverIds List<Number>
    Receiver IDs.
    receiverType String
    Receiver type.
    startTime String
    Start time.

    GetClsAlarmNoticesAlarmNoticeNoticeRuleWebCallback

    Body string
    Request body.
    CallbackType string
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    Headers List<string>
    Request headers.
    Index double
    Index order.
    Method string
    HTTP method. GET or POST.
    Url string
    Callback URL.
    Body string
    Request body.
    CallbackType string
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    Headers []string
    Request headers.
    Index float64
    Index order.
    Method string
    HTTP method. GET or POST.
    Url string
    Callback URL.
    body String
    Request body.
    callbackType String
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers List<String>
    Request headers.
    index Double
    Index order.
    method String
    HTTP method. GET or POST.
    url String
    Callback URL.
    body string
    Request body.
    callbackType string
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers string[]
    Request headers.
    index number
    Index order.
    method string
    HTTP method. GET or POST.
    url string
    Callback URL.
    body str
    Request body.
    callback_type str
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers Sequence[str]
    Request headers.
    index float
    Index order.
    method str
    HTTP method. GET or POST.
    url str
    Callback URL.
    body String
    Request body.
    callbackType String
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers List<String>
    Request headers.
    index Number
    Index order.
    method String
    HTTP method. GET or POST.
    url String
    Callback URL.

    GetClsAlarmNoticesAlarmNoticeTag

    Key string
    Tag key.
    Value string
    Tag value.
    Key string
    Tag key.
    Value string
    Tag value.
    key String
    Tag key.
    value String
    Tag value.
    key string
    Tag key.
    value string
    Tag value.
    key str
    Tag key.
    value str
    Tag value.
    key String
    Tag key.
    value String
    Tag value.

    GetClsAlarmNoticesAlarmNoticeWebCallback

    Body string
    Request body.
    CallbackType string
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    Headers List<string>
    Request headers.
    Index double
    Index order.
    Method string
    HTTP method. GET or POST.
    Url string
    Callback URL.
    Body string
    Request body.
    CallbackType string
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    Headers []string
    Request headers.
    Index float64
    Index order.
    Method string
    HTTP method. GET or POST.
    Url string
    Callback URL.
    body String
    Request body.
    callbackType String
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers List<String>
    Request headers.
    index Double
    Index order.
    method String
    HTTP method. GET or POST.
    url String
    Callback URL.
    body string
    Request body.
    callbackType string
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers string[]
    Request headers.
    index number
    Index order.
    method string
    HTTP method. GET or POST.
    url string
    Callback URL.
    body str
    Request body.
    callback_type str
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers Sequence[str]
    Request headers.
    index float
    Index order.
    method str
    HTTP method. GET or POST.
    url str
    Callback URL.
    body String
    Request body.
    callbackType String
    Callback type. WeCom or Http or DingTalk or Lark or Webhook.
    headers List<String>
    Request headers.
    index Number
    Index order.
    method String
    HTTP method. GET or POST.
    url String
    Callback URL.

    GetClsAlarmNoticesFilter

    Key string
    Filter field name. Supported values: name (alarm notice group name), alarmNoticeId (alarm notice ID), uid (receiver user ID), groupId (receiver user group ID), deliverFlag (delivery status: 1-not enabled, 2-enabled, 3-abnormal).
    Values List<string>
    Filter field values.
    Key string
    Filter field name. Supported values: name (alarm notice group name), alarmNoticeId (alarm notice ID), uid (receiver user ID), groupId (receiver user group ID), deliverFlag (delivery status: 1-not enabled, 2-enabled, 3-abnormal).
    Values []string
    Filter field values.
    key String
    Filter field name. Supported values: name (alarm notice group name), alarmNoticeId (alarm notice ID), uid (receiver user ID), groupId (receiver user group ID), deliverFlag (delivery status: 1-not enabled, 2-enabled, 3-abnormal).
    values List<String>
    Filter field values.
    key string
    Filter field name. Supported values: name (alarm notice group name), alarmNoticeId (alarm notice ID), uid (receiver user ID), groupId (receiver user group ID), deliverFlag (delivery status: 1-not enabled, 2-enabled, 3-abnormal).
    values string[]
    Filter field values.
    key str
    Filter field name. Supported values: name (alarm notice group name), alarmNoticeId (alarm notice ID), uid (receiver user ID), groupId (receiver user group ID), deliverFlag (delivery status: 1-not enabled, 2-enabled, 3-abnormal).
    values Sequence[str]
    Filter field values.
    key String
    Filter field name. Supported values: name (alarm notice group name), alarmNoticeId (alarm notice ID), uid (receiver user ID), groupId (receiver user group ID), deliverFlag (delivery status: 1-not enabled, 2-enabled, 3-abnormal).
    values List<String>
    Filter field values.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    Viewing docs for tencentcloud 1.82.79
    published on Friday, Mar 27, 2026 by tencentcloudstack
      Try Pulumi Cloud free. Your team will thank you.