Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
published on Friday, Mar 27, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
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 dictionaryThe following arguments are supported:
- Filters
List<Get
Cls Alarm Notices Filter> - 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 boolShield Count - Whether to query alarm shield count statistics. Default is false.
- Id string
- Result
Output stringFile - Used to save results.
- Filters
[]Get
Cls Alarm Notices Filter - 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 boolShield Count - Whether to query alarm shield count statistics. Default is false.
- Id string
- Result
Output stringFile - Used to save results.
- filters
List<Get
Cls Alarm Notices Filter> - 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 BooleanShield Count - Whether to query alarm shield count statistics. Default is false.
- id String
- result
Output StringFile - Used to save results.
- filters
Get
Cls Alarm Notices Filter[] - 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 booleanShield Count - Whether to query alarm shield count statistics. Default is false.
- id string
- result
Output stringFile - Used to save results.
- filters
Sequence[Get
Cls Alarm Notices Filter] - 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_ boolshield_ count - Whether to query alarm shield count statistics. Default is false.
- id str
- result_
output_ strfile - 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.
- has
Alarm BooleanShield Count - Whether to query alarm shield count statistics. Default is false.
- id String
- result
Output StringFile - Used to save results.
getClsAlarmNotices Result
The following output properties are available:
- Alarm
Notices List<GetCls Alarm Notices Alarm Notice> - List of alarm notice configurations.
- Id string
- Filters
List<Get
Cls Alarm Notices Filter> - Has
Alarm boolShield Count - Result
Output stringFile
- Alarm
Notices []GetCls Alarm Notices Alarm Notice - List of alarm notice configurations.
- Id string
- Filters
[]Get
Cls Alarm Notices Filter - Has
Alarm boolShield Count - Result
Output stringFile
- alarm
Notices List<GetCls Alarm Notices Alarm Notice> - List of alarm notice configurations.
- id String
- filters
List<Get
Cls Alarm Notices Filter> - has
Alarm BooleanShield Count - result
Output StringFile
- alarm
Notices GetCls Alarm Notices Alarm Notice[] - List of alarm notice configurations.
- id string
- filters
Get
Cls Alarm Notices Filter[] - has
Alarm booleanShield Count - result
Output stringFile
- alarm_
notices Sequence[GetCls Alarm Notices Alarm Notice] - List of alarm notice configurations.
- id str
- filters
Sequence[Get
Cls Alarm Notices Filter] - has_
alarm_ boolshield_ count - result_
output_ strfile
- alarm
Notices List<Property Map> - List of alarm notice configurations.
- id String
- filters List<Property Map>
- has
Alarm BooleanShield Count - result
Output StringFile
Supporting Types
GetClsAlarmNoticesAlarmNotice
- Alarm
Notice stringId - Alarm notice ID.
- Alarm
Shield List<GetCounts Cls Alarm Notices Alarm Notice Alarm Shield Count> - Alarm shield count statistics.
- Alarm
Shield doubleStatus - Alarm shield status (0: not shielded, 1: shielded).
- Callback
Prioritize bool - Whether webhook callback takes priority.
- Create
Time string - Creation time.
- Deliver
Flag double - Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
- Deliver
Status double - Delivery status (0: delivered, 1: not delivered).
- Jump
Domain string - Jump domain.
- Name string
- Alarm notice name.
- Notice
Receivers List<GetCls Alarm Notices Alarm Notice Notice Receiver> - Notice receivers for this rule.
- Notice
Rules List<GetCls Alarm Notices Alarm Notice Notice Rule> - List of notice rules.
-
List<Get
Cls Alarm Notices Alarm Notice Tag> - Tag list.
- Update
Time string - Last update time.
- Web
Callbacks List<GetCls Alarm Notices Alarm Notice Web Callback> - List of webhook callbacks.
- Alarm
Notice stringId - Alarm notice ID.
- Alarm
Shield []GetCounts Cls Alarm Notices Alarm Notice Alarm Shield Count - Alarm shield count statistics.
- Alarm
Shield float64Status - Alarm shield status (0: not shielded, 1: shielded).
- Callback
Prioritize bool - Whether webhook callback takes priority.
- Create
Time string - Creation time.
- Deliver
Flag float64 - Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
- Deliver
Status float64 - Delivery status (0: delivered, 1: not delivered).
- Jump
Domain string - Jump domain.
- Name string
- Alarm notice name.
- Notice
Receivers []GetCls Alarm Notices Alarm Notice Notice Receiver - Notice receivers for this rule.
- Notice
Rules []GetCls Alarm Notices Alarm Notice Notice Rule - List of notice rules.
-
[]Get
Cls Alarm Notices Alarm Notice Tag - Tag list.
- Update
Time string - Last update time.
- Web
Callbacks []GetCls Alarm Notices Alarm Notice Web Callback - List of webhook callbacks.
- alarm
Notice StringId - Alarm notice ID.
- alarm
Shield List<GetCounts Cls Alarm Notices Alarm Notice Alarm Shield Count> - Alarm shield count statistics.
- alarm
Shield DoubleStatus - Alarm shield status (0: not shielded, 1: shielded).
- callback
Prioritize Boolean - Whether webhook callback takes priority.
- create
Time String - Creation time.
- deliver
Flag Double - Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
- deliver
Status Double - Delivery status (0: delivered, 1: not delivered).
- jump
Domain String - Jump domain.
- name String
- Alarm notice name.
- notice
Receivers List<GetCls Alarm Notices Alarm Notice Notice Receiver> - Notice receivers for this rule.
- notice
Rules List<GetCls Alarm Notices Alarm Notice Notice Rule> - List of notice rules.
-
List<Get
Cls Alarm Notices Alarm Notice Tag> - Tag list.
- update
Time String - Last update time.
- web
Callbacks List<GetCls Alarm Notices Alarm Notice Web Callback> - List of webhook callbacks.
- alarm
Notice stringId - Alarm notice ID.
- alarm
Shield GetCounts Cls Alarm Notices Alarm Notice Alarm Shield Count[] - Alarm shield count statistics.
- alarm
Shield numberStatus - Alarm shield status (0: not shielded, 1: shielded).
- callback
Prioritize boolean - Whether webhook callback takes priority.
- create
Time string - Creation time.
- deliver
Flag number - Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
- deliver
Status number - Delivery status (0: delivered, 1: not delivered).
- jump
Domain string - Jump domain.
- name string
- Alarm notice name.
- notice
Receivers GetCls Alarm Notices Alarm Notice Notice Receiver[] - Notice receivers for this rule.
- notice
Rules GetCls Alarm Notices Alarm Notice Notice Rule[] - List of notice rules.
-
Get
Cls Alarm Notices Alarm Notice Tag[] - Tag list.
- update
Time string - Last update time.
- web
Callbacks GetCls Alarm Notices Alarm Notice Web Callback[] - List of webhook callbacks.
- alarm_
notice_ strid - Alarm notice ID.
- alarm_
shield_ Sequence[Getcounts Cls Alarm Notices Alarm Notice Alarm Shield Count] - Alarm shield count statistics.
- alarm_
shield_ floatstatus - 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[GetCls Alarm Notices Alarm Notice Notice Receiver] - Notice receivers for this rule.
- notice_
rules Sequence[GetCls Alarm Notices Alarm Notice Notice Rule] - List of notice rules.
-
Sequence[Get
Cls Alarm Notices Alarm Notice Tag] - Tag list.
- update_
time str - Last update time.
- web_
callbacks Sequence[GetCls Alarm Notices Alarm Notice Web Callback] - List of webhook callbacks.
- alarm
Notice StringId - Alarm notice ID.
- alarm
Shield List<Property Map>Counts - Alarm shield count statistics.
- alarm
Shield NumberStatus - Alarm shield status (0: not shielded, 1: shielded).
- callback
Prioritize Boolean - Whether webhook callback takes priority.
- create
Time String - Creation time.
- deliver
Flag Number - Delivery flag (1: not enabled, 2: enabled, 3: abnormal).
- deliver
Status Number - Delivery status (0: delivered, 1: not delivered).
- jump
Domain String - Jump domain.
- name String
- Alarm notice name.
- notice
Receivers List<Property Map> - Notice receivers for this rule.
- notice
Rules List<Property Map> - List of notice rules.
- List<Property Map>
- Tag list.
- update
Time String - Last update time.
- web
Callbacks List<Property Map> - List of webhook callbacks.
GetClsAlarmNoticesAlarmNoticeAlarmShieldCount
- Total
Count double - Total count of shielded alarms.
- Total
Count float64 - Total count of shielded alarms.
- total
Count Double - Total count of shielded alarms.
- total
Count number - Total count of shielded alarms.
- total_
count float - Total count of shielded alarms.
- total
Count Number - Total count of shielded alarms.
GetClsAlarmNoticesAlarmNoticeNoticeReceiver
- End
Time string - End time.
- Index double
- Index order.
- Receiver
Channels List<string> - Notification channels.
- Receiver
Ids List<double> - Receiver IDs.
- Receiver
Type string - Receiver type.
- Start
Time string - Start time.
- End
Time string - End time.
- Index float64
- Index order.
- Receiver
Channels []string - Notification channels.
- Receiver
Ids []float64 - Receiver IDs.
- Receiver
Type string - Receiver type.
- Start
Time string - Start time.
- end
Time String - End time.
- index Double
- Index order.
- receiver
Channels List<String> - Notification channels.
- receiver
Ids List<Double> - Receiver IDs.
- receiver
Type String - Receiver type.
- start
Time String - Start time.
- end
Time string - End time.
- index number
- Index order.
- receiver
Channels string[] - Notification channels.
- receiver
Ids number[] - Receiver IDs.
- receiver
Type string - Receiver type.
- start
Time 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.
- end
Time String - End time.
- index Number
- Index order.
- receiver
Channels List<String> - Notification channels.
- receiver
Ids List<Number> - Receiver IDs.
- receiver
Type String - Receiver type.
- start
Time String - Start time.
GetClsAlarmNoticesAlarmNoticeNoticeRule
- Day
Of List<double>Weeks - Days of week (0-6, 0 is Sunday).
- Jump
Domain string - Jump domain.
- Notice
Receivers List<GetCls Alarm Notices Alarm Notice Notice Rule Notice Receiver> - Notice receivers for this rule.
- Notify
Ways List<string> - Notification ways.
- Receiver
Type string - Receiver type.
- Repeat
Interval double - Repeat interval in minutes.
- Time
Range stringEnd - Effective end time (24-hour format HH:mm:ss).
- Time
Range stringStart - Effective start time (24-hour format HH:mm:ss).
- Web
Callbacks List<GetCls Alarm Notices Alarm Notice Notice Rule Web Callback> - List of webhook callbacks.
- Day
Of []float64Weeks - Days of week (0-6, 0 is Sunday).
- Jump
Domain string - Jump domain.
- Notice
Receivers []GetCls Alarm Notices Alarm Notice Notice Rule Notice Receiver - Notice receivers for this rule.
- Notify
Ways []string - Notification ways.
- Receiver
Type string - Receiver type.
- Repeat
Interval float64 - Repeat interval in minutes.
- Time
Range stringEnd - Effective end time (24-hour format HH:mm:ss).
- Time
Range stringStart - Effective start time (24-hour format HH:mm:ss).
- Web
Callbacks []GetCls Alarm Notices Alarm Notice Notice Rule Web Callback - List of webhook callbacks.
- day
Of List<Double>Weeks - Days of week (0-6, 0 is Sunday).
- jump
Domain String - Jump domain.
- notice
Receivers List<GetCls Alarm Notices Alarm Notice Notice Rule Notice Receiver> - Notice receivers for this rule.
- notify
Ways List<String> - Notification ways.
- receiver
Type String - Receiver type.
- repeat
Interval Double - Repeat interval in minutes.
- time
Range StringEnd - Effective end time (24-hour format HH:mm:ss).
- time
Range StringStart - Effective start time (24-hour format HH:mm:ss).
- web
Callbacks List<GetCls Alarm Notices Alarm Notice Notice Rule Web Callback> - List of webhook callbacks.
- day
Of number[]Weeks - Days of week (0-6, 0 is Sunday).
- jump
Domain string - Jump domain.
- notice
Receivers GetCls Alarm Notices Alarm Notice Notice Rule Notice Receiver[] - Notice receivers for this rule.
- notify
Ways string[] - Notification ways.
- receiver
Type string - Receiver type.
- repeat
Interval number - Repeat interval in minutes.
- time
Range stringEnd - Effective end time (24-hour format HH:mm:ss).
- time
Range stringStart - Effective start time (24-hour format HH:mm:ss).
- web
Callbacks GetCls Alarm Notices Alarm Notice Notice Rule Web Callback[] - List of webhook callbacks.
- day_
of_ Sequence[float]weeks - Days of week (0-6, 0 is Sunday).
- jump_
domain str - Jump domain.
- notice_
receivers Sequence[GetCls Alarm Notices Alarm Notice Notice Rule Notice Receiver] - 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_ strend - Effective end time (24-hour format HH:mm:ss).
- time_
range_ strstart - Effective start time (24-hour format HH:mm:ss).
- web_
callbacks Sequence[GetCls Alarm Notices Alarm Notice Notice Rule Web Callback] - List of webhook callbacks.
- day
Of List<Number>Weeks - Days of week (0-6, 0 is Sunday).
- jump
Domain String - Jump domain.
- notice
Receivers List<Property Map> - Notice receivers for this rule.
- notify
Ways List<String> - Notification ways.
- receiver
Type String - Receiver type.
- repeat
Interval Number - Repeat interval in minutes.
- time
Range StringEnd - Effective end time (24-hour format HH:mm:ss).
- time
Range StringStart - Effective start time (24-hour format HH:mm:ss).
- web
Callbacks List<Property Map> - List of webhook callbacks.
GetClsAlarmNoticesAlarmNoticeNoticeRuleNoticeReceiver
- End
Time string - End time.
- Index double
- Index order.
- Receiver
Channels List<string> - Notification channels.
- Receiver
Ids List<double> - Receiver IDs.
- Receiver
Type string - Receiver type.
- Start
Time string - Start time.
- End
Time string - End time.
- Index float64
- Index order.
- Receiver
Channels []string - Notification channels.
- Receiver
Ids []float64 - Receiver IDs.
- Receiver
Type string - Receiver type.
- Start
Time string - Start time.
- end
Time String - End time.
- index Double
- Index order.
- receiver
Channels List<String> - Notification channels.
- receiver
Ids List<Double> - Receiver IDs.
- receiver
Type String - Receiver type.
- start
Time String - Start time.
- end
Time string - End time.
- index number
- Index order.
- receiver
Channels string[] - Notification channels.
- receiver
Ids number[] - Receiver IDs.
- receiver
Type string - Receiver type.
- start
Time 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.
- end
Time String - End time.
- index Number
- Index order.
- receiver
Channels List<String> - Notification channels.
- receiver
Ids List<Number> - Receiver IDs.
- receiver
Type String - Receiver type.
- start
Time String - Start time.
GetClsAlarmNoticesAlarmNoticeNoticeRuleWebCallback
GetClsAlarmNoticesAlarmNoticeTag
GetClsAlarmNoticesAlarmNoticeWebCallback
GetClsAlarmNoticesFilter
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
published on Friday, Mar 27, 2026 by tencentcloudstack
