@pulumi/datadog 4.23.0 → 4.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -87,7 +87,7 @@ export declare class SecurityMonitoringRule extends pulumi.CustomResource {
87
87
  */
88
88
  readonly message: pulumi.Output<string>;
89
89
  /**
90
- * The name of the rule.
90
+ * Name of the case.
91
91
  */
92
92
  readonly name: pulumi.Output<string>;
93
93
  /**
@@ -95,7 +95,7 @@ export declare class SecurityMonitoringRule extends pulumi.CustomResource {
95
95
  */
96
96
  readonly options: pulumi.Output<outputs.SecurityMonitoringRuleOptions | undefined>;
97
97
  /**
98
- * Queries for selecting logs which are part of the rule.
98
+ * Query for selecting logs to apply the filtering action.
99
99
  */
100
100
  readonly queries: pulumi.Output<outputs.SecurityMonitoringRuleQuery[] | undefined>;
101
101
  /**
@@ -144,7 +144,7 @@ export interface SecurityMonitoringRuleState {
144
144
  */
145
145
  message?: pulumi.Input<string>;
146
146
  /**
147
- * The name of the rule.
147
+ * Name of the case.
148
148
  */
149
149
  name?: pulumi.Input<string>;
150
150
  /**
@@ -152,7 +152,7 @@ export interface SecurityMonitoringRuleState {
152
152
  */
153
153
  options?: pulumi.Input<inputs.SecurityMonitoringRuleOptions>;
154
154
  /**
155
- * Queries for selecting logs which are part of the rule.
155
+ * Query for selecting logs to apply the filtering action.
156
156
  */
157
157
  queries?: pulumi.Input<pulumi.Input<inputs.SecurityMonitoringRuleQuery>[]>;
158
158
  /**
@@ -193,7 +193,7 @@ export interface SecurityMonitoringRuleArgs {
193
193
  */
194
194
  message: pulumi.Input<string>;
195
195
  /**
196
- * The name of the rule.
196
+ * Name of the case.
197
197
  */
198
198
  name: pulumi.Input<string>;
199
199
  /**
@@ -201,7 +201,7 @@ export interface SecurityMonitoringRuleArgs {
201
201
  */
202
202
  options?: pulumi.Input<inputs.SecurityMonitoringRuleOptions>;
203
203
  /**
204
- * Queries for selecting logs which are part of the rule.
204
+ * Query for selecting logs to apply the filtering action.
205
205
  */
206
206
  queries?: pulumi.Input<pulumi.Input<inputs.SecurityMonitoringRuleQuery>[]>;
207
207
  /**
@@ -134,7 +134,7 @@ export declare class ServiceLevelObjective extends pulumi.CustomResource {
134
134
  */
135
135
  readonly thresholds: pulumi.Output<outputs.ServiceLevelObjectiveThreshold[]>;
136
136
  /**
137
- * The primary time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`, `custom`.
137
+ * The time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`, `custom`.
138
138
  */
139
139
  readonly timeframe: pulumi.Output<string>;
140
140
  /**
@@ -199,7 +199,7 @@ export interface ServiceLevelObjectiveState {
199
199
  */
200
200
  thresholds?: pulumi.Input<pulumi.Input<inputs.ServiceLevelObjectiveThreshold>[]>;
201
201
  /**
202
- * The primary time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`, `custom`.
202
+ * The time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`, `custom`.
203
203
  */
204
204
  timeframe?: pulumi.Input<string>;
205
205
  /**
@@ -256,7 +256,7 @@ export interface ServiceLevelObjectiveArgs {
256
256
  */
257
257
  thresholds: pulumi.Input<pulumi.Input<inputs.ServiceLevelObjectiveThreshold>[]>;
258
258
  /**
259
- * The primary time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`, `custom`.
259
+ * The time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Valid values are `7d`, `30d`, `90d`, `custom`.
260
260
  */
261
261
  timeframe?: pulumi.Input<string>;
262
262
  /**
@@ -78,7 +78,7 @@ export declare class SyntheticsGlobalVariable extends pulumi.CustomResource {
78
78
  */
79
79
  readonly tags: pulumi.Output<string[] | undefined>;
80
80
  /**
81
- * The value of the global variable.
81
+ * Value for the parser to use, required for type `jsonPath` or `regex`.
82
82
  */
83
83
  readonly value: pulumi.Output<string>;
84
84
  /**
@@ -127,7 +127,7 @@ export interface SyntheticsGlobalVariableState {
127
127
  */
128
128
  tags?: pulumi.Input<pulumi.Input<string>[]>;
129
129
  /**
130
- * The value of the global variable.
130
+ * Value for the parser to use, required for type `jsonPath` or `regex`.
131
131
  */
132
132
  value?: pulumi.Input<string>;
133
133
  }
@@ -168,7 +168,7 @@ export interface SyntheticsGlobalVariableArgs {
168
168
  */
169
169
  tags?: pulumi.Input<pulumi.Input<string>[]>;
170
170
  /**
171
- * The value of the global variable.
171
+ * Value for the parser to use, required for type `jsonPath` or `regex`.
172
172
  */
173
173
  value: pulumi.Input<string>;
174
174
  }
@@ -344,7 +344,7 @@ export declare class SyntheticsTest extends pulumi.CustomResource {
344
344
  */
345
345
  readonly locations: pulumi.Output<string[]>;
346
346
  /**
347
- * A message to include with notifications for this synthetics test. Email notifications can be sent to specific users by using the same `@username` notation as events.
347
+ * For UDP and websocket tests, message to send with the request.
348
348
  */
349
349
  readonly message: pulumi.Output<string | undefined>;
350
350
  /**
@@ -365,7 +365,7 @@ export declare class SyntheticsTest extends pulumi.CustomResource {
365
365
  */
366
366
  readonly requestClientCertificate: pulumi.Output<outputs.SyntheticsTestRequestClientCertificate | undefined>;
367
367
  /**
368
- * Required if `type = "api"`. The synthetics test request.
368
+ * The request for the api step.
369
369
  */
370
370
  readonly requestDefinition: pulumi.Output<outputs.SyntheticsTestRequestDefinition | undefined>;
371
371
  /**
@@ -399,7 +399,7 @@ export declare class SyntheticsTest extends pulumi.CustomResource {
399
399
  */
400
400
  readonly status: pulumi.Output<string>;
401
401
  /**
402
- * The subtype of the Synthetic API test. Defaults to `http`. Valid values are `http`, `ssl`, `tcp`, `dns`, `multi`, `icmp`, `udp`, `websocket`, `grpc`.
402
+ * The subtype of the Synthetic multistep API test step. Valid values are `http`.
403
403
  */
404
404
  readonly subtype: pulumi.Output<string | undefined>;
405
405
  /**
@@ -407,7 +407,7 @@ export declare class SyntheticsTest extends pulumi.CustomResource {
407
407
  */
408
408
  readonly tags: pulumi.Output<string[] | undefined>;
409
409
  /**
410
- * Synthetics test type. Valid values are `api`, `browser`.
410
+ * Type of assertion. **Note** Only some combinations of `type` and `operator` are valid (please refer to [Datadog documentation](https://docs.datadoghq.com/api/latest/synthetics/#create-a-test)). Valid values are `body`, `header`, `statusCode`, `certificate`, `responseTime`, `property`, `recordEvery`, `recordSome`, `tlsVersion`, `minTlsVersion`, `latency`, `packetLossPercentage`, `packetsReceived`, `networkHop`, `receivedMessage`, `grpcHealthcheckStatus`, `grpcMetadata`, `grpcProto`, `connection`.
411
411
  */
412
412
  readonly type: pulumi.Output<string>;
413
413
  /**
@@ -452,7 +452,7 @@ export interface SyntheticsTestState {
452
452
  */
453
453
  locations?: pulumi.Input<pulumi.Input<string>[]>;
454
454
  /**
455
- * A message to include with notifications for this synthetics test. Email notifications can be sent to specific users by using the same `@username` notation as events.
455
+ * For UDP and websocket tests, message to send with the request.
456
456
  */
457
457
  message?: pulumi.Input<string>;
458
458
  /**
@@ -473,7 +473,7 @@ export interface SyntheticsTestState {
473
473
  */
474
474
  requestClientCertificate?: pulumi.Input<inputs.SyntheticsTestRequestClientCertificate>;
475
475
  /**
476
- * Required if `type = "api"`. The synthetics test request.
476
+ * The request for the api step.
477
477
  */
478
478
  requestDefinition?: pulumi.Input<inputs.SyntheticsTestRequestDefinition>;
479
479
  /**
@@ -507,7 +507,7 @@ export interface SyntheticsTestState {
507
507
  */
508
508
  status?: pulumi.Input<string>;
509
509
  /**
510
- * The subtype of the Synthetic API test. Defaults to `http`. Valid values are `http`, `ssl`, `tcp`, `dns`, `multi`, `icmp`, `udp`, `websocket`, `grpc`.
510
+ * The subtype of the Synthetic multistep API test step. Valid values are `http`.
511
511
  */
512
512
  subtype?: pulumi.Input<string>;
513
513
  /**
@@ -515,7 +515,7 @@ export interface SyntheticsTestState {
515
515
  */
516
516
  tags?: pulumi.Input<pulumi.Input<string>[]>;
517
517
  /**
518
- * Synthetics test type. Valid values are `api`, `browser`.
518
+ * Type of assertion. **Note** Only some combinations of `type` and `operator` are valid (please refer to [Datadog documentation](https://docs.datadoghq.com/api/latest/synthetics/#create-a-test)). Valid values are `body`, `header`, `statusCode`, `certificate`, `responseTime`, `property`, `recordEvery`, `recordSome`, `tlsVersion`, `minTlsVersion`, `latency`, `packetLossPercentage`, `packetsReceived`, `networkHop`, `receivedMessage`, `grpcHealthcheckStatus`, `grpcMetadata`, `grpcProto`, `connection`.
519
519
  */
520
520
  type?: pulumi.Input<string>;
521
521
  }
@@ -552,7 +552,7 @@ export interface SyntheticsTestArgs {
552
552
  */
553
553
  locations: pulumi.Input<pulumi.Input<string>[]>;
554
554
  /**
555
- * A message to include with notifications for this synthetics test. Email notifications can be sent to specific users by using the same `@username` notation as events.
555
+ * For UDP and websocket tests, message to send with the request.
556
556
  */
557
557
  message?: pulumi.Input<string>;
558
558
  /**
@@ -569,7 +569,7 @@ export interface SyntheticsTestArgs {
569
569
  */
570
570
  requestClientCertificate?: pulumi.Input<inputs.SyntheticsTestRequestClientCertificate>;
571
571
  /**
572
- * Required if `type = "api"`. The synthetics test request.
572
+ * The request for the api step.
573
573
  */
574
574
  requestDefinition?: pulumi.Input<inputs.SyntheticsTestRequestDefinition>;
575
575
  /**
@@ -603,7 +603,7 @@ export interface SyntheticsTestArgs {
603
603
  */
604
604
  status: pulumi.Input<string>;
605
605
  /**
606
- * The subtype of the Synthetic API test. Defaults to `http`. Valid values are `http`, `ssl`, `tcp`, `dns`, `multi`, `icmp`, `udp`, `websocket`, `grpc`.
606
+ * The subtype of the Synthetic multistep API test step. Valid values are `http`.
607
607
  */
608
608
  subtype?: pulumi.Input<string>;
609
609
  /**
@@ -611,7 +611,7 @@ export interface SyntheticsTestArgs {
611
611
  */
612
612
  tags?: pulumi.Input<pulumi.Input<string>[]>;
613
613
  /**
614
- * Synthetics test type. Valid values are `api`, `browser`.
614
+ * Type of assertion. **Note** Only some combinations of `type` and `operator` are valid (please refer to [Datadog documentation](https://docs.datadoghq.com/api/latest/synthetics/#create-a-test)). Valid values are `body`, `header`, `statusCode`, `certificate`, `responseTime`, `property`, `recordEvery`, `recordSome`, `tlsVersion`, `minTlsVersion`, `latency`, `packetLossPercentage`, `packetsReceived`, `networkHop`, `receivedMessage`, `grpcHealthcheckStatus`, `grpcMetadata`, `grpcProto`, `connection`.
615
615
  */
616
616
  type: pulumi.Input<string>;
617
617
  }