@pulumi/datadog 4.51.0-alpha.1748929617 → 4.51.0-alpha.1749573710
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.
- package/appBuilderApp.d.ts +1 -1
- package/appBuilderApp.js +1 -1
- package/complianceCustomFramework.d.ts +162 -0
- package/complianceCustomFramework.js +130 -0
- package/complianceCustomFramework.js.map +1 -0
- package/config/vars.d.ts +2 -2
- package/gcp/integrationSts.d.ts +12 -0
- package/gcp/integrationSts.js +2 -0
- package/gcp/integrationSts.js.map +1 -1
- package/index.d.ts +15 -0
- package/index.js +29 -4
- package/index.js.map +1 -1
- package/monitorNotificationRule.d.ts +1 -1
- package/monitorNotificationRule.js +1 -1
- package/observabilityPipeline.d.ts +9 -1
- package/observabilityPipeline.js +9 -1
- package/observabilityPipeline.js.map +1 -1
- package/onCallEscalationPolicy.d.ts +137 -0
- package/onCallEscalationPolicy.js +99 -0
- package/onCallEscalationPolicy.js.map +1 -0
- package/onCallSchedule.d.ts +97 -0
- package/onCallSchedule.js +72 -0
- package/onCallSchedule.js.map +1 -0
- package/onCallTeamRoutingRules.d.ts +73 -0
- package/onCallTeamRoutingRules.js +65 -0
- package/onCallTeamRoutingRules.js.map +1 -0
- package/package.json +2 -2
- package/provider.d.ts +2 -2
- package/securityMonitoringRuleJson.d.ts +57 -0
- package/securityMonitoringRuleJson.js +61 -0
- package/securityMonitoringRuleJson.js.map +1 -0
- package/serviceLevelObjective.d.ts +4 -4
- package/syntheticsTest.d.ts +3 -3
- package/types/input.d.ts +1807 -182
- package/types/output.d.ts +1807 -182
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Provides a Datadog On-Call team routing rules resource.
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* Import an existing on_call_schedule
|
|
10
|
+
*
|
|
11
|
+
* ```sh
|
|
12
|
+
* $ pulumi import datadog:index/onCallTeamRoutingRules:OnCallTeamRoutingRules test "b03a07d5-49da-43e9-83b4-5d84969b588b"
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class OnCallTeamRoutingRules extends pulumi.CustomResource {
|
|
16
|
+
/**
|
|
17
|
+
* Get an existing OnCallTeamRoutingRules resource's state with the given name, ID, and optional extra
|
|
18
|
+
* properties used to qualify the lookup.
|
|
19
|
+
*
|
|
20
|
+
* @param name The _unique_ name of the resulting resource.
|
|
21
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
22
|
+
* @param state Any extra arguments used during the lookup.
|
|
23
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
24
|
+
*/
|
|
25
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OnCallTeamRoutingRulesState, opts?: pulumi.CustomResourceOptions): OnCallTeamRoutingRules;
|
|
26
|
+
/**
|
|
27
|
+
* Returns true if the given object is an instance of OnCallTeamRoutingRules. This is designed to work even
|
|
28
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
29
|
+
*/
|
|
30
|
+
static isInstance(obj: any): obj is OnCallTeamRoutingRules;
|
|
31
|
+
/**
|
|
32
|
+
* List of team routing rules.
|
|
33
|
+
*/
|
|
34
|
+
readonly rules: pulumi.Output<outputs.OnCallTeamRoutingRulesRule[] | undefined>;
|
|
35
|
+
/**
|
|
36
|
+
* ID of the team to associate the routing rules with.
|
|
37
|
+
*/
|
|
38
|
+
readonly teamId: pulumi.Output<string>;
|
|
39
|
+
/**
|
|
40
|
+
* Create a OnCallTeamRoutingRules resource with the given unique name, arguments, and options.
|
|
41
|
+
*
|
|
42
|
+
* @param name The _unique_ name of the resource.
|
|
43
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
44
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
45
|
+
*/
|
|
46
|
+
constructor(name: string, args: OnCallTeamRoutingRulesArgs, opts?: pulumi.CustomResourceOptions);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Input properties used for looking up and filtering OnCallTeamRoutingRules resources.
|
|
50
|
+
*/
|
|
51
|
+
export interface OnCallTeamRoutingRulesState {
|
|
52
|
+
/**
|
|
53
|
+
* List of team routing rules.
|
|
54
|
+
*/
|
|
55
|
+
rules?: pulumi.Input<pulumi.Input<inputs.OnCallTeamRoutingRulesRule>[]>;
|
|
56
|
+
/**
|
|
57
|
+
* ID of the team to associate the routing rules with.
|
|
58
|
+
*/
|
|
59
|
+
teamId?: pulumi.Input<string>;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* The set of arguments for constructing a OnCallTeamRoutingRules resource.
|
|
63
|
+
*/
|
|
64
|
+
export interface OnCallTeamRoutingRulesArgs {
|
|
65
|
+
/**
|
|
66
|
+
* List of team routing rules.
|
|
67
|
+
*/
|
|
68
|
+
rules?: pulumi.Input<pulumi.Input<inputs.OnCallTeamRoutingRulesRule>[]>;
|
|
69
|
+
/**
|
|
70
|
+
* ID of the team to associate the routing rules with.
|
|
71
|
+
*/
|
|
72
|
+
teamId: pulumi.Input<string>;
|
|
73
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.OnCallTeamRoutingRules = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Datadog On-Call team routing rules resource.
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* Import an existing on_call_schedule
|
|
14
|
+
*
|
|
15
|
+
* ```sh
|
|
16
|
+
* $ pulumi import datadog:index/onCallTeamRoutingRules:OnCallTeamRoutingRules test "b03a07d5-49da-43e9-83b4-5d84969b588b"
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
class OnCallTeamRoutingRules extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing OnCallTeamRoutingRules resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new OnCallTeamRoutingRules(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of OnCallTeamRoutingRules. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === OnCallTeamRoutingRules.__pulumiType;
|
|
41
|
+
}
|
|
42
|
+
constructor(name, argsOrState, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (opts.id) {
|
|
46
|
+
const state = argsOrState;
|
|
47
|
+
resourceInputs["rules"] = state ? state.rules : undefined;
|
|
48
|
+
resourceInputs["teamId"] = state ? state.teamId : undefined;
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
const args = argsOrState;
|
|
52
|
+
if ((!args || args.teamId === undefined) && !opts.urn) {
|
|
53
|
+
throw new Error("Missing required property 'teamId'");
|
|
54
|
+
}
|
|
55
|
+
resourceInputs["rules"] = args ? args.rules : undefined;
|
|
56
|
+
resourceInputs["teamId"] = args ? args.teamId : undefined;
|
|
57
|
+
}
|
|
58
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
59
|
+
super(OnCallTeamRoutingRules.__pulumiType, name, resourceInputs, opts);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.OnCallTeamRoutingRules = OnCallTeamRoutingRules;
|
|
63
|
+
/** @internal */
|
|
64
|
+
OnCallTeamRoutingRules.__pulumiType = 'datadog:index/onCallTeamRoutingRules:OnCallTeamRoutingRules';
|
|
65
|
+
//# sourceMappingURL=onCallTeamRoutingRules.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"onCallTeamRoutingRules.js","sourceRoot":"","sources":["../onCallTeamRoutingRules.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IAC7D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;;AA9DL,wDA+DC;AAjDG,gBAAgB;AACO,mCAAY,GAAG,6DAA6D,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/datadog",
|
|
3
|
-
"version": "4.51.0-alpha.
|
|
3
|
+
"version": "4.51.0-alpha.1749573710",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Datadog resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "datadog",
|
|
25
|
-
"version": "4.51.0-alpha.
|
|
25
|
+
"version": "4.51.0-alpha.1749573710"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/provider.d.ts
CHANGED
|
@@ -73,8 +73,8 @@ export interface ProviderArgs {
|
|
|
73
73
|
*/
|
|
74
74
|
appKey?: pulumi.Input<string>;
|
|
75
75
|
/**
|
|
76
|
-
* [Experimental - Logs Pipelines, Monitors
|
|
77
|
-
* apply default resource tags across all resources.
|
|
76
|
+
* [Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Configuration
|
|
77
|
+
* block containing settings to apply default resource tags across all resources.
|
|
78
78
|
*/
|
|
79
79
|
defaultTags?: pulumi.Input<inputs.ProviderDefaultTags>;
|
|
80
80
|
/**
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a Datadog Security Monitoring Rule JSON resource. This can be used to create and manage Datadog security monitoring rules using raw JSON.
|
|
4
|
+
*
|
|
5
|
+
* ## Import
|
|
6
|
+
*
|
|
7
|
+
* ```sh
|
|
8
|
+
* $ pulumi import datadog:index/securityMonitoringRuleJson:SecurityMonitoringRuleJson security_rule_json aaa-yyy-vvv
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
export declare class SecurityMonitoringRuleJson extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing SecurityMonitoringRuleJson resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param state Any extra arguments used during the lookup.
|
|
19
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
|
+
*/
|
|
21
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SecurityMonitoringRuleJsonState, opts?: pulumi.CustomResourceOptions): SecurityMonitoringRuleJson;
|
|
22
|
+
/**
|
|
23
|
+
* Returns true if the given object is an instance of SecurityMonitoringRuleJson. This is designed to work even
|
|
24
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
25
|
+
*/
|
|
26
|
+
static isInstance(obj: any): obj is SecurityMonitoringRuleJson;
|
|
27
|
+
/**
|
|
28
|
+
* The JSON definition of the Security Monitoring Rule.
|
|
29
|
+
*/
|
|
30
|
+
readonly json: pulumi.Output<string>;
|
|
31
|
+
/**
|
|
32
|
+
* Create a SecurityMonitoringRuleJson resource with the given unique name, arguments, and options.
|
|
33
|
+
*
|
|
34
|
+
* @param name The _unique_ name of the resource.
|
|
35
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
36
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
37
|
+
*/
|
|
38
|
+
constructor(name: string, args: SecurityMonitoringRuleJsonArgs, opts?: pulumi.CustomResourceOptions);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Input properties used for looking up and filtering SecurityMonitoringRuleJson resources.
|
|
42
|
+
*/
|
|
43
|
+
export interface SecurityMonitoringRuleJsonState {
|
|
44
|
+
/**
|
|
45
|
+
* The JSON definition of the Security Monitoring Rule.
|
|
46
|
+
*/
|
|
47
|
+
json?: pulumi.Input<string>;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* The set of arguments for constructing a SecurityMonitoringRuleJson resource.
|
|
51
|
+
*/
|
|
52
|
+
export interface SecurityMonitoringRuleJsonArgs {
|
|
53
|
+
/**
|
|
54
|
+
* The JSON definition of the Security Monitoring Rule.
|
|
55
|
+
*/
|
|
56
|
+
json: pulumi.Input<string>;
|
|
57
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.SecurityMonitoringRuleJson = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Datadog Security Monitoring Rule JSON resource. This can be used to create and manage Datadog security monitoring rules using raw JSON.
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import datadog:index/securityMonitoringRuleJson:SecurityMonitoringRuleJson security_rule_json aaa-yyy-vvv
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
class SecurityMonitoringRuleJson extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing SecurityMonitoringRuleJson resource's state with the given name, ID, and optional extra
|
|
20
|
+
* properties used to qualify the lookup.
|
|
21
|
+
*
|
|
22
|
+
* @param name The _unique_ name of the resulting resource.
|
|
23
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
24
|
+
* @param state Any extra arguments used during the lookup.
|
|
25
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
26
|
+
*/
|
|
27
|
+
static get(name, id, state, opts) {
|
|
28
|
+
return new SecurityMonitoringRuleJson(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of SecurityMonitoringRuleJson. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === SecurityMonitoringRuleJson.__pulumiType;
|
|
39
|
+
}
|
|
40
|
+
constructor(name, argsOrState, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (opts.id) {
|
|
44
|
+
const state = argsOrState;
|
|
45
|
+
resourceInputs["json"] = state ? state.json : undefined;
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
const args = argsOrState;
|
|
49
|
+
if ((!args || args.json === undefined) && !opts.urn) {
|
|
50
|
+
throw new Error("Missing required property 'json'");
|
|
51
|
+
}
|
|
52
|
+
resourceInputs["json"] = args ? args.json : undefined;
|
|
53
|
+
}
|
|
54
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
55
|
+
super(SecurityMonitoringRuleJson.__pulumiType, name, resourceInputs, opts);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
exports.SecurityMonitoringRuleJson = SecurityMonitoringRuleJson;
|
|
59
|
+
/** @internal */
|
|
60
|
+
SecurityMonitoringRuleJson.__pulumiType = 'datadog:index/securityMonitoringRuleJson:SecurityMonitoringRuleJson';
|
|
61
|
+
//# sourceMappingURL=securityMonitoringRuleJson.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"securityMonitoringRuleJson.js","sourceRoot":"","sources":["../securityMonitoringRuleJson.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;IAeD,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AAxDL,gEAyDC;AA3CG,gBAAgB;AACO,uCAAY,GAAG,qEAAqE,CAAC"}
|
|
@@ -160,9 +160,9 @@ export declare class ServiceLevelObjective extends pulumi.CustomResource {
|
|
|
160
160
|
*/
|
|
161
161
|
readonly sliSpecification: pulumi.Output<outputs.ServiceLevelObjectiveSliSpecification | undefined>;
|
|
162
162
|
/**
|
|
163
|
-
* A list of tags to associate with your service level objective. This can help you categorize and filter service level objectives in the service level objectives page of the UI. Note
|
|
163
|
+
* A list of tags to associate with your service level objective. This can help you categorize and filter service level objectives in the service level objectives page of the UI. **Note**: it's not currently possible to filter by these tags when querying via the API. If default tags are present at the provider level, they will be added to this resource.
|
|
164
164
|
*/
|
|
165
|
-
readonly tags: pulumi.Output<string[]
|
|
165
|
+
readonly tags: pulumi.Output<string[]>;
|
|
166
166
|
/**
|
|
167
167
|
* The objective's target in `(0,100)`. This must match the corresponding thresholds of the primary time frame.
|
|
168
168
|
*/
|
|
@@ -229,7 +229,7 @@ export interface ServiceLevelObjectiveState {
|
|
|
229
229
|
*/
|
|
230
230
|
sliSpecification?: pulumi.Input<inputs.ServiceLevelObjectiveSliSpecification>;
|
|
231
231
|
/**
|
|
232
|
-
* A list of tags to associate with your service level objective. This can help you categorize and filter service level objectives in the service level objectives page of the UI. Note
|
|
232
|
+
* A list of tags to associate with your service level objective. This can help you categorize and filter service level objectives in the service level objectives page of the UI. **Note**: it's not currently possible to filter by these tags when querying via the API. If default tags are present at the provider level, they will be added to this resource.
|
|
233
233
|
*/
|
|
234
234
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
235
235
|
/**
|
|
@@ -290,7 +290,7 @@ export interface ServiceLevelObjectiveArgs {
|
|
|
290
290
|
*/
|
|
291
291
|
sliSpecification?: pulumi.Input<inputs.ServiceLevelObjectiveSliSpecification>;
|
|
292
292
|
/**
|
|
293
|
-
* A list of tags to associate with your service level objective. This can help you categorize and filter service level objectives in the service level objectives page of the UI. Note
|
|
293
|
+
* A list of tags to associate with your service level objective. This can help you categorize and filter service level objectives in the service level objectives page of the UI. **Note**: it's not currently possible to filter by these tags when querying via the API. If default tags are present at the provider level, they will be added to this resource.
|
|
294
294
|
*/
|
|
295
295
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
296
296
|
/**
|
package/syntheticsTest.d.ts
CHANGED
|
@@ -734,7 +734,7 @@ export declare class SyntheticsTest extends pulumi.CustomResource {
|
|
|
734
734
|
*/
|
|
735
735
|
readonly forceDeleteDependencies: pulumi.Output<boolean | undefined>;
|
|
736
736
|
/**
|
|
737
|
-
* Array of locations used to run the test. Refer to the Datadog Synthetics location data source to retrieve the list of locations.
|
|
737
|
+
* Array of locations used to run the test. Refer to the Datadog Synthetics location data source to retrieve the list of locations or find the possible values listed in [this API response](https://app.datadoghq.com/api/v1/synthetics/locations?only_public=true).
|
|
738
738
|
*/
|
|
739
739
|
readonly locations: pulumi.Output<string[]>;
|
|
740
740
|
/**
|
|
@@ -865,7 +865,7 @@ export interface SyntheticsTestState {
|
|
|
865
865
|
*/
|
|
866
866
|
forceDeleteDependencies?: pulumi.Input<boolean>;
|
|
867
867
|
/**
|
|
868
|
-
* Array of locations used to run the test. Refer to the Datadog Synthetics location data source to retrieve the list of locations.
|
|
868
|
+
* Array of locations used to run the test. Refer to the Datadog Synthetics location data source to retrieve the list of locations or find the possible values listed in [this API response](https://app.datadoghq.com/api/v1/synthetics/locations?only_public=true).
|
|
869
869
|
*/
|
|
870
870
|
locations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
871
871
|
/**
|
|
@@ -988,7 +988,7 @@ export interface SyntheticsTestArgs {
|
|
|
988
988
|
*/
|
|
989
989
|
forceDeleteDependencies?: pulumi.Input<boolean>;
|
|
990
990
|
/**
|
|
991
|
-
* Array of locations used to run the test. Refer to the Datadog Synthetics location data source to retrieve the list of locations.
|
|
991
|
+
* Array of locations used to run the test. Refer to the Datadog Synthetics location data source to retrieve the list of locations or find the possible values listed in [this API response](https://app.datadoghq.com/api/v1/synthetics/locations?only_public=true).
|
|
992
992
|
*/
|
|
993
993
|
locations: pulumi.Input<pulumi.Input<string>[]>;
|
|
994
994
|
/**
|