generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathAlarmAlarmTargetGetArgs.cs
63 lines (53 loc) · 1.91 KB
/
AlarmAlarmTargetGetArgs.cs
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
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
using Pulumi;
namespace TencentCloudIAC.PulumiPackage.Tencentcloud.Cls.Inputs
{
public sealed class AlarmAlarmTargetGetArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// search end time of offset.
/// </summary>
[Input("endTimeOffset", required: true)]
public Input<int> EndTimeOffset { get; set; } = null!;
/// <summary>
/// logset id.
/// </summary>
[Input("logsetId", required: true)]
public Input<string> LogsetId { get; set; } = null!;
/// <summary>
/// the number of alarm object.
/// </summary>
[Input("number", required: true)]
public Input<int> Number { get; set; } = null!;
/// <summary>
/// query rules.
/// </summary>
[Input("query", required: true)]
public Input<string> Query { get; set; } = null!;
/// <summary>
/// search start time of offset.
/// </summary>
[Input("startTimeOffset", required: true)]
public Input<int> StartTimeOffset { get; set; } = null!;
/// <summary>
/// Retrieve grammar rules, 0: Lucene syntax, 1: CQL syntax, Default value is 0.
/// </summary>
[Input("syntaxRule")]
public Input<int>? SyntaxRule { get; set; }
/// <summary>
/// topic id.
/// </summary>
[Input("topicId", required: true)]
public Input<string> TopicId { get; set; } = null!;
public AlarmAlarmTargetGetArgs()
{
}
public static new AlarmAlarmTargetGetArgs Empty => new AlarmAlarmTargetGetArgs();
}
}