@pulumi/datadog 4.51.0-alpha.1749534564 → 4.51.0
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
package/appBuilderApp.d.ts
CHANGED
package/appBuilderApp.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.AppBuilderApp = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* ## Example Usage
|
|
10
10
|
*
|
|
11
11
|
* ## Import
|
|
12
12
|
*
|
|
@@ -0,0 +1,162 @@
|
|
|
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 Compliance Custom Framework resource, which is used to create and manage compliance custom frameworks.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as datadog from "@pulumi/datadog";
|
|
12
|
+
*
|
|
13
|
+
* const framework = new datadog.ComplianceCustomFramework("framework", {
|
|
14
|
+
* name: "my-custom-framework-terraform-2",
|
|
15
|
+
* version: "2.0.0",
|
|
16
|
+
* handle: "my-custom-framework-terraform-2",
|
|
17
|
+
* requirements: [
|
|
18
|
+
* {
|
|
19
|
+
* name: "requirement2",
|
|
20
|
+
* controls: [
|
|
21
|
+
* {
|
|
22
|
+
* name: "control2",
|
|
23
|
+
* rulesIds: [
|
|
24
|
+
* "def-000-h9o",
|
|
25
|
+
* "def-000-b6i",
|
|
26
|
+
* "def-000-yed",
|
|
27
|
+
* "def-000-h5a",
|
|
28
|
+
* "def-000-aw5",
|
|
29
|
+
* ],
|
|
30
|
+
* },
|
|
31
|
+
* {
|
|
32
|
+
* name: "control1",
|
|
33
|
+
* rulesIds: [
|
|
34
|
+
* "def-000-j9v",
|
|
35
|
+
* "def-000-465",
|
|
36
|
+
* "def-000-vq1",
|
|
37
|
+
* "def-000-4hf",
|
|
38
|
+
* "def-000-s2d",
|
|
39
|
+
* "def-000-vnl",
|
|
40
|
+
* ],
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* },
|
|
44
|
+
* {
|
|
45
|
+
* name: "requirement1",
|
|
46
|
+
* controls: [
|
|
47
|
+
* {
|
|
48
|
+
* name: "control2",
|
|
49
|
+
* rulesIds: [
|
|
50
|
+
* "def-000-wuf",
|
|
51
|
+
* "def-000-7og",
|
|
52
|
+
* ],
|
|
53
|
+
* },
|
|
54
|
+
* {
|
|
55
|
+
* name: "control5",
|
|
56
|
+
* rulesIds: [
|
|
57
|
+
* "def-000-mdt",
|
|
58
|
+
* "def-000-zrx",
|
|
59
|
+
* "def-000-z6k",
|
|
60
|
+
* ],
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* });
|
|
66
|
+
* ```
|
|
67
|
+
*/
|
|
68
|
+
export declare class ComplianceCustomFramework extends pulumi.CustomResource {
|
|
69
|
+
/**
|
|
70
|
+
* Get an existing ComplianceCustomFramework resource's state with the given name, ID, and optional extra
|
|
71
|
+
* properties used to qualify the lookup.
|
|
72
|
+
*
|
|
73
|
+
* @param name The _unique_ name of the resulting resource.
|
|
74
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
75
|
+
* @param state Any extra arguments used during the lookup.
|
|
76
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
77
|
+
*/
|
|
78
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ComplianceCustomFrameworkState, opts?: pulumi.CustomResourceOptions): ComplianceCustomFramework;
|
|
79
|
+
/**
|
|
80
|
+
* Returns true if the given object is an instance of ComplianceCustomFramework. This is designed to work even
|
|
81
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
82
|
+
*/
|
|
83
|
+
static isInstance(obj: any): obj is ComplianceCustomFramework;
|
|
84
|
+
/**
|
|
85
|
+
* The framework handle. String length must be at least 1. This field is immutable.
|
|
86
|
+
*/
|
|
87
|
+
readonly handle: pulumi.Output<string>;
|
|
88
|
+
/**
|
|
89
|
+
* The URL of the icon representing the framework
|
|
90
|
+
*/
|
|
91
|
+
readonly iconUrl: pulumi.Output<string | undefined>;
|
|
92
|
+
/**
|
|
93
|
+
* The framework name. String length must be at least 1.
|
|
94
|
+
*/
|
|
95
|
+
readonly name: pulumi.Output<string>;
|
|
96
|
+
/**
|
|
97
|
+
* The requirements of the framework. Length must be at least 1.
|
|
98
|
+
*/
|
|
99
|
+
readonly requirements: pulumi.Output<outputs.ComplianceCustomFrameworkRequirement[] | undefined>;
|
|
100
|
+
/**
|
|
101
|
+
* The framework version. String length must be at least 1. This field is immutable.
|
|
102
|
+
*/
|
|
103
|
+
readonly version: pulumi.Output<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Create a ComplianceCustomFramework resource with the given unique name, arguments, and options.
|
|
106
|
+
*
|
|
107
|
+
* @param name The _unique_ name of the resource.
|
|
108
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
109
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
110
|
+
*/
|
|
111
|
+
constructor(name: string, args: ComplianceCustomFrameworkArgs, opts?: pulumi.CustomResourceOptions);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Input properties used for looking up and filtering ComplianceCustomFramework resources.
|
|
115
|
+
*/
|
|
116
|
+
export interface ComplianceCustomFrameworkState {
|
|
117
|
+
/**
|
|
118
|
+
* The framework handle. String length must be at least 1. This field is immutable.
|
|
119
|
+
*/
|
|
120
|
+
handle?: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* The URL of the icon representing the framework
|
|
123
|
+
*/
|
|
124
|
+
iconUrl?: pulumi.Input<string>;
|
|
125
|
+
/**
|
|
126
|
+
* The framework name. String length must be at least 1.
|
|
127
|
+
*/
|
|
128
|
+
name?: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* The requirements of the framework. Length must be at least 1.
|
|
131
|
+
*/
|
|
132
|
+
requirements?: pulumi.Input<pulumi.Input<inputs.ComplianceCustomFrameworkRequirement>[]>;
|
|
133
|
+
/**
|
|
134
|
+
* The framework version. String length must be at least 1. This field is immutable.
|
|
135
|
+
*/
|
|
136
|
+
version?: pulumi.Input<string>;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* The set of arguments for constructing a ComplianceCustomFramework resource.
|
|
140
|
+
*/
|
|
141
|
+
export interface ComplianceCustomFrameworkArgs {
|
|
142
|
+
/**
|
|
143
|
+
* The framework handle. String length must be at least 1. This field is immutable.
|
|
144
|
+
*/
|
|
145
|
+
handle: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* The URL of the icon representing the framework
|
|
148
|
+
*/
|
|
149
|
+
iconUrl?: pulumi.Input<string>;
|
|
150
|
+
/**
|
|
151
|
+
* The framework name. String length must be at least 1.
|
|
152
|
+
*/
|
|
153
|
+
name: pulumi.Input<string>;
|
|
154
|
+
/**
|
|
155
|
+
* The requirements of the framework. Length must be at least 1.
|
|
156
|
+
*/
|
|
157
|
+
requirements?: pulumi.Input<pulumi.Input<inputs.ComplianceCustomFrameworkRequirement>[]>;
|
|
158
|
+
/**
|
|
159
|
+
* The framework version. String length must be at least 1. This field is immutable.
|
|
160
|
+
*/
|
|
161
|
+
version: pulumi.Input<string>;
|
|
162
|
+
}
|
|
@@ -0,0 +1,130 @@
|
|
|
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.ComplianceCustomFramework = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Datadog Compliance Custom Framework resource, which is used to create and manage compliance custom frameworks.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as datadog from "@pulumi/datadog";
|
|
16
|
+
*
|
|
17
|
+
* const framework = new datadog.ComplianceCustomFramework("framework", {
|
|
18
|
+
* name: "my-custom-framework-terraform-2",
|
|
19
|
+
* version: "2.0.0",
|
|
20
|
+
* handle: "my-custom-framework-terraform-2",
|
|
21
|
+
* requirements: [
|
|
22
|
+
* {
|
|
23
|
+
* name: "requirement2",
|
|
24
|
+
* controls: [
|
|
25
|
+
* {
|
|
26
|
+
* name: "control2",
|
|
27
|
+
* rulesIds: [
|
|
28
|
+
* "def-000-h9o",
|
|
29
|
+
* "def-000-b6i",
|
|
30
|
+
* "def-000-yed",
|
|
31
|
+
* "def-000-h5a",
|
|
32
|
+
* "def-000-aw5",
|
|
33
|
+
* ],
|
|
34
|
+
* },
|
|
35
|
+
* {
|
|
36
|
+
* name: "control1",
|
|
37
|
+
* rulesIds: [
|
|
38
|
+
* "def-000-j9v",
|
|
39
|
+
* "def-000-465",
|
|
40
|
+
* "def-000-vq1",
|
|
41
|
+
* "def-000-4hf",
|
|
42
|
+
* "def-000-s2d",
|
|
43
|
+
* "def-000-vnl",
|
|
44
|
+
* ],
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* },
|
|
48
|
+
* {
|
|
49
|
+
* name: "requirement1",
|
|
50
|
+
* controls: [
|
|
51
|
+
* {
|
|
52
|
+
* name: "control2",
|
|
53
|
+
* rulesIds: [
|
|
54
|
+
* "def-000-wuf",
|
|
55
|
+
* "def-000-7og",
|
|
56
|
+
* ],
|
|
57
|
+
* },
|
|
58
|
+
* {
|
|
59
|
+
* name: "control5",
|
|
60
|
+
* rulesIds: [
|
|
61
|
+
* "def-000-mdt",
|
|
62
|
+
* "def-000-zrx",
|
|
63
|
+
* "def-000-z6k",
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* });
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
class ComplianceCustomFramework extends pulumi.CustomResource {
|
|
73
|
+
/**
|
|
74
|
+
* Get an existing ComplianceCustomFramework resource's state with the given name, ID, and optional extra
|
|
75
|
+
* properties used to qualify the lookup.
|
|
76
|
+
*
|
|
77
|
+
* @param name The _unique_ name of the resulting resource.
|
|
78
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
79
|
+
* @param state Any extra arguments used during the lookup.
|
|
80
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
81
|
+
*/
|
|
82
|
+
static get(name, id, state, opts) {
|
|
83
|
+
return new ComplianceCustomFramework(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Returns true if the given object is an instance of ComplianceCustomFramework. This is designed to work even
|
|
87
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
88
|
+
*/
|
|
89
|
+
static isInstance(obj) {
|
|
90
|
+
if (obj === undefined || obj === null) {
|
|
91
|
+
return false;
|
|
92
|
+
}
|
|
93
|
+
return obj['__pulumiType'] === ComplianceCustomFramework.__pulumiType;
|
|
94
|
+
}
|
|
95
|
+
constructor(name, argsOrState, opts) {
|
|
96
|
+
let resourceInputs = {};
|
|
97
|
+
opts = opts || {};
|
|
98
|
+
if (opts.id) {
|
|
99
|
+
const state = argsOrState;
|
|
100
|
+
resourceInputs["handle"] = state ? state.handle : undefined;
|
|
101
|
+
resourceInputs["iconUrl"] = state ? state.iconUrl : undefined;
|
|
102
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
103
|
+
resourceInputs["requirements"] = state ? state.requirements : undefined;
|
|
104
|
+
resourceInputs["version"] = state ? state.version : undefined;
|
|
105
|
+
}
|
|
106
|
+
else {
|
|
107
|
+
const args = argsOrState;
|
|
108
|
+
if ((!args || args.handle === undefined) && !opts.urn) {
|
|
109
|
+
throw new Error("Missing required property 'handle'");
|
|
110
|
+
}
|
|
111
|
+
if ((!args || args.name === undefined) && !opts.urn) {
|
|
112
|
+
throw new Error("Missing required property 'name'");
|
|
113
|
+
}
|
|
114
|
+
if ((!args || args.version === undefined) && !opts.urn) {
|
|
115
|
+
throw new Error("Missing required property 'version'");
|
|
116
|
+
}
|
|
117
|
+
resourceInputs["handle"] = args ? args.handle : undefined;
|
|
118
|
+
resourceInputs["iconUrl"] = args ? args.iconUrl : undefined;
|
|
119
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
120
|
+
resourceInputs["requirements"] = args ? args.requirements : undefined;
|
|
121
|
+
resourceInputs["version"] = args ? args.version : undefined;
|
|
122
|
+
}
|
|
123
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
124
|
+
super(ComplianceCustomFramework.__pulumiType, name, resourceInputs, opts);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
exports.ComplianceCustomFramework = ComplianceCustomFramework;
|
|
128
|
+
/** @internal */
|
|
129
|
+
ComplianceCustomFramework.__pulumiType = 'datadog:index/complianceCustomFramework:ComplianceCustomFramework';
|
|
130
|
+
//# sourceMappingURL=complianceCustomFramework.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"complianceCustomFramework.js","sourceRoot":"","sources":["../complianceCustomFramework.ts"],"names":[],"mappings":"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"}
|
package/config/vars.d.ts
CHANGED
|
@@ -17,8 +17,8 @@ export declare const apiUrl: string | undefined;
|
|
|
17
17
|
*/
|
|
18
18
|
export declare const appKey: string | undefined;
|
|
19
19
|
/**
|
|
20
|
-
* [Experimental - Logs Pipelines, Monitors
|
|
21
|
-
* apply default resource tags across all resources.
|
|
20
|
+
* [Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Configuration
|
|
21
|
+
* block containing settings to apply default resource tags across all resources.
|
|
22
22
|
*/
|
|
23
23
|
export declare const defaultTags: outputs.config.DefaultTags | undefined;
|
|
24
24
|
/**
|
package/gcp/integrationSts.d.ts
CHANGED
|
@@ -54,6 +54,10 @@ export declare class IntegrationSts extends pulumi.CustomResource {
|
|
|
54
54
|
* Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires `resourceCollectionEnabled` to also be enabled.
|
|
55
55
|
*/
|
|
56
56
|
readonly isCspmEnabled: pulumi.Output<boolean>;
|
|
57
|
+
/**
|
|
58
|
+
* When enabled, Datadog includes the `X-Goog-User-Project` header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
|
|
59
|
+
*/
|
|
60
|
+
readonly isPerProjectQuotaEnabled: pulumi.Output<boolean>;
|
|
57
61
|
/**
|
|
58
62
|
* When enabled, Datadog scans for all resource change data in your Google Cloud environment.
|
|
59
63
|
*/
|
|
@@ -111,6 +115,10 @@ export interface IntegrationStsState {
|
|
|
111
115
|
* Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires `resourceCollectionEnabled` to also be enabled.
|
|
112
116
|
*/
|
|
113
117
|
isCspmEnabled?: pulumi.Input<boolean>;
|
|
118
|
+
/**
|
|
119
|
+
* When enabled, Datadog includes the `X-Goog-User-Project` header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
|
|
120
|
+
*/
|
|
121
|
+
isPerProjectQuotaEnabled?: pulumi.Input<boolean>;
|
|
114
122
|
/**
|
|
115
123
|
* When enabled, Datadog scans for all resource change data in your Google Cloud environment.
|
|
116
124
|
*/
|
|
@@ -156,6 +164,10 @@ export interface IntegrationStsArgs {
|
|
|
156
164
|
* Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires `resourceCollectionEnabled` to also be enabled.
|
|
157
165
|
*/
|
|
158
166
|
isCspmEnabled?: pulumi.Input<boolean>;
|
|
167
|
+
/**
|
|
168
|
+
* When enabled, Datadog includes the `X-Goog-User-Project` header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
|
|
169
|
+
*/
|
|
170
|
+
isPerProjectQuotaEnabled?: pulumi.Input<boolean>;
|
|
159
171
|
/**
|
|
160
172
|
* When enabled, Datadog scans for all resource change data in your Google Cloud environment.
|
|
161
173
|
*/
|
package/gcp/integrationSts.js
CHANGED
|
@@ -49,6 +49,7 @@ class IntegrationSts extends pulumi.CustomResource {
|
|
|
49
49
|
resourceInputs["delegateAccountEmail"] = state ? state.delegateAccountEmail : undefined;
|
|
50
50
|
resourceInputs["hostFilters"] = state ? state.hostFilters : undefined;
|
|
51
51
|
resourceInputs["isCspmEnabled"] = state ? state.isCspmEnabled : undefined;
|
|
52
|
+
resourceInputs["isPerProjectQuotaEnabled"] = state ? state.isPerProjectQuotaEnabled : undefined;
|
|
52
53
|
resourceInputs["isResourceChangeCollectionEnabled"] = state ? state.isResourceChangeCollectionEnabled : undefined;
|
|
53
54
|
resourceInputs["isSecurityCommandCenterEnabled"] = state ? state.isSecurityCommandCenterEnabled : undefined;
|
|
54
55
|
resourceInputs["metricNamespaceConfigs"] = state ? state.metricNamespaceConfigs : undefined;
|
|
@@ -65,6 +66,7 @@ class IntegrationSts extends pulumi.CustomResource {
|
|
|
65
66
|
resourceInputs["cloudRunRevisionFilters"] = args ? args.cloudRunRevisionFilters : undefined;
|
|
66
67
|
resourceInputs["hostFilters"] = args ? args.hostFilters : undefined;
|
|
67
68
|
resourceInputs["isCspmEnabled"] = args ? args.isCspmEnabled : undefined;
|
|
69
|
+
resourceInputs["isPerProjectQuotaEnabled"] = args ? args.isPerProjectQuotaEnabled : undefined;
|
|
68
70
|
resourceInputs["isResourceChangeCollectionEnabled"] = args ? args.isResourceChangeCollectionEnabled : undefined;
|
|
69
71
|
resourceInputs["isSecurityCommandCenterEnabled"] = args ? args.isSecurityCommandCenterEnabled : undefined;
|
|
70
72
|
resourceInputs["metricNamespaceConfigs"] = args ? args.metricNamespaceConfigs : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integrationSts.js","sourceRoot":"","sources":["../../gcp/integrationSts.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"integrationSts.js","sourceRoot":"","sources":["../../gcp/integrationSts.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -34,6 +34,9 @@ export declare const CloudConfigurationRule: typeof import("./cloudConfiguration
|
|
|
34
34
|
export { CloudWorkloadSecurityAgentRuleArgs, CloudWorkloadSecurityAgentRuleState } from "./cloudWorkloadSecurityAgentRule";
|
|
35
35
|
export type CloudWorkloadSecurityAgentRule = import("./cloudWorkloadSecurityAgentRule").CloudWorkloadSecurityAgentRule;
|
|
36
36
|
export declare const CloudWorkloadSecurityAgentRule: typeof import("./cloudWorkloadSecurityAgentRule").CloudWorkloadSecurityAgentRule;
|
|
37
|
+
export { ComplianceCustomFrameworkArgs, ComplianceCustomFrameworkState } from "./complianceCustomFramework";
|
|
38
|
+
export type ComplianceCustomFramework = import("./complianceCustomFramework").ComplianceCustomFramework;
|
|
39
|
+
export declare const ComplianceCustomFramework: typeof import("./complianceCustomFramework").ComplianceCustomFramework;
|
|
37
40
|
export { CsmThreatsAgentRuleArgs, CsmThreatsAgentRuleState } from "./csmThreatsAgentRule";
|
|
38
41
|
export type CsmThreatsAgentRule = import("./csmThreatsAgentRule").CsmThreatsAgentRule;
|
|
39
42
|
export declare const CsmThreatsAgentRule: typeof import("./csmThreatsAgentRule").CsmThreatsAgentRule;
|
|
@@ -241,6 +244,15 @@ export declare const MonitorNotificationRule: typeof import("./monitorNotificati
|
|
|
241
244
|
export { ObservabilityPipelineArgs, ObservabilityPipelineState } from "./observabilityPipeline";
|
|
242
245
|
export type ObservabilityPipeline = import("./observabilityPipeline").ObservabilityPipeline;
|
|
243
246
|
export declare const ObservabilityPipeline: typeof import("./observabilityPipeline").ObservabilityPipeline;
|
|
247
|
+
export { OnCallEscalationPolicyArgs, OnCallEscalationPolicyState } from "./onCallEscalationPolicy";
|
|
248
|
+
export type OnCallEscalationPolicy = import("./onCallEscalationPolicy").OnCallEscalationPolicy;
|
|
249
|
+
export declare const OnCallEscalationPolicy: typeof import("./onCallEscalationPolicy").OnCallEscalationPolicy;
|
|
250
|
+
export { OnCallScheduleArgs, OnCallScheduleState } from "./onCallSchedule";
|
|
251
|
+
export type OnCallSchedule = import("./onCallSchedule").OnCallSchedule;
|
|
252
|
+
export declare const OnCallSchedule: typeof import("./onCallSchedule").OnCallSchedule;
|
|
253
|
+
export { OnCallTeamRoutingRulesArgs, OnCallTeamRoutingRulesState } from "./onCallTeamRoutingRules";
|
|
254
|
+
export type OnCallTeamRoutingRules = import("./onCallTeamRoutingRules").OnCallTeamRoutingRules;
|
|
255
|
+
export declare const OnCallTeamRoutingRules: typeof import("./onCallTeamRoutingRules").OnCallTeamRoutingRules;
|
|
244
256
|
export { OpenapiApiArgs, OpenapiApiState } from "./openapiApi";
|
|
245
257
|
export type OpenapiApi = import("./openapiApi").OpenapiApi;
|
|
246
258
|
export declare const OpenapiApi: typeof import("./openapiApi").OpenapiApi;
|
|
@@ -278,6 +290,9 @@ export declare const SecurityMonitoringFilter: typeof import("./securityMonitori
|
|
|
278
290
|
export { SecurityMonitoringRuleArgs, SecurityMonitoringRuleState } from "./securityMonitoringRule";
|
|
279
291
|
export type SecurityMonitoringRule = import("./securityMonitoringRule").SecurityMonitoringRule;
|
|
280
292
|
export declare const SecurityMonitoringRule: typeof import("./securityMonitoringRule").SecurityMonitoringRule;
|
|
293
|
+
export { SecurityMonitoringRuleJsonArgs, SecurityMonitoringRuleJsonState } from "./securityMonitoringRuleJson";
|
|
294
|
+
export type SecurityMonitoringRuleJson = import("./securityMonitoringRuleJson").SecurityMonitoringRuleJson;
|
|
295
|
+
export declare const SecurityMonitoringRuleJson: typeof import("./securityMonitoringRuleJson").SecurityMonitoringRuleJson;
|
|
281
296
|
export { SecurityMonitoringSuppressionArgs, SecurityMonitoringSuppressionState } from "./securityMonitoringSuppression";
|
|
282
297
|
export type SecurityMonitoringSuppression = import("./securityMonitoringSuppression").SecurityMonitoringSuppression;
|
|
283
298
|
export declare const SecurityMonitoringSuppression: typeof import("./securityMonitoringSuppression").SecurityMonitoringSuppression;
|
package/index.js
CHANGED
|
@@ -16,10 +16,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.types = exports.slack = exports.pagerduty = exports.opsgenie = exports.ms = exports.gcp = exports.fastly = exports.confluent = exports.config = exports.cloudflare = exports.azure = exports.aws = exports.WorkflowAutomation = exports.WebhookCustomVariable = exports.Webhook = exports.UserRole = exports.User = exports.TeamPermissionSetting = exports.TeamMembership = exports.TeamLink = exports.Team = exports.SyntheticsTest = exports.SyntheticsPrivateLocation = exports.SyntheticsGlobalVariable = exports.SyntheticsConcurrencyCap = void 0;
|
|
19
|
+
exports.getLogsPipelinesOutput = exports.getLogsPipelines = exports.getLogsIndexesOrderOutput = exports.getLogsIndexesOrder = exports.getLogsIndexesOutput = exports.getLogsIndexes = exports.getLogsArchivesOrderOutput = exports.getLogsArchivesOrder = exports.getIpRangesOutput = exports.getIpRanges = exports.getHostsOutput = exports.getHosts = exports.getDashboardListOutput = exports.getDashboardList = exports.getDashboardOutput = exports.getDashboard = exports.getCsmThreatsAgentRulesOutput = exports.getCsmThreatsAgentRules = exports.getCloudWorkloadSecurityAgentRulesOutput = exports.getCloudWorkloadSecurityAgentRules = exports.getApplicationKeyOutput = exports.getApplicationKey = exports.getAppBuilderAppOutput = exports.getAppBuilderApp = exports.getApmRetentionFiltersOrderOutput = exports.getApmRetentionFiltersOrder = exports.getApiKeyOutput = exports.getApiKey = exports.getActionConnectionOutput = exports.getActionConnection = exports.DowntimeSchedule = exports.Downtime = exports.DomainAllowlist = exports.DashboardList = exports.DashboardJson = exports.Dashboard = exports.CsmThreatsAgentRule = exports.ComplianceCustomFramework = exports.CloudWorkloadSecurityAgentRule = exports.CloudConfigurationRule = exports.ChildOrganization = exports.AuthnMapping = exports.AppsecWafExclusionFilter = exports.AppsecWafCustomRule = exports.ApplicationKey = exports.AppBuilderApp = exports.ApmRetentionFilterOrder = exports.ApmRetentionFilter = exports.ApiKey = exports.ActionConnection = void 0;
|
|
20
|
+
exports.getTeamOutput = exports.getTeam = exports.getSyntheticsTestOutput = exports.getSyntheticsTest = exports.getSyntheticsLocationsOutput = exports.getSyntheticsLocations = exports.getSyntheticsGlobalVariableOutput = exports.getSyntheticsGlobalVariable = exports.getSoftwareCatalogOutput = exports.getSoftwareCatalog = exports.getServiceLevelObjectivesOutput = exports.getServiceLevelObjectives = exports.getServiceLevelObjectiveOutput = exports.getServiceLevelObjective = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getSensitiveDataScannerStandardPatternOutput = exports.getSensitiveDataScannerStandardPattern = exports.getSensitiveDataScannerGroupOrderOutput = exports.getSensitiveDataScannerGroupOrder = exports.getSecurityMonitoringSuppressionsOutput = exports.getSecurityMonitoringSuppressions = exports.getSecurityMonitoringRulesOutput = exports.getSecurityMonitoringRules = exports.getSecurityMonitoringFiltersOutput = exports.getSecurityMonitoringFilters = exports.getRumRetentionFiltersOutput = exports.getRumRetentionFilters = exports.getRumApplicationOutput = exports.getRumApplication = exports.getRolesOutput = exports.getRoles = exports.getRoleUsersOutput = exports.getRoleUsers = exports.getRoleOutput = exports.getRole = exports.getPowerpackOutput = exports.getPowerpack = exports.getPermissionsOutput = exports.getPermissions = exports.getMonitorsOutput = exports.getMonitors = exports.getMonitorConfigPoliciesOutput = exports.getMonitorConfigPolicies = exports.getMonitorOutput = exports.getMonitor = exports.getMetricTagsOutput = exports.getMetricTags = exports.getLogsPipelinesOrderOutput = exports.getLogsPipelinesOrder = void 0;
|
|
21
|
+
exports.ServiceAccountApplicationKey = exports.ServiceAccount = exports.SensitiveDataScannerRule = exports.SensitiveDataScannerGroupOrder = exports.SensitiveDataScannerGroup = exports.SecurityNotificationRule = exports.SecurityMonitoringSuppression = exports.SecurityMonitoringRuleJson = exports.SecurityMonitoringRule = exports.SecurityMonitoringFilter = exports.SecurityMonitoringDefaultRule = exports.RumRetentionFiltersOrder = exports.RumRetentionFilter = exports.RumMetric = exports.RumApplication = exports.Role = exports.RestrictionPolicy = exports.Powerpack = exports.OrganizationSettings = exports.OpenapiApi = exports.OnCallTeamRoutingRules = exports.OnCallSchedule = exports.OnCallEscalationPolicy = exports.ObservabilityPipeline = exports.MonitorNotificationRule = exports.MonitorJson = exports.MonitorConfigPolicy = exports.Monitor = exports.MetricTagConfiguration = exports.MetricMetadata = exports.LogsPipelineOrder = exports.LogsMetric = exports.LogsIntegrationPipeline = exports.LogsIndexOrder = exports.LogsIndex = exports.LogsCustomPipeline = exports.LogsCustomDestination = exports.LogsArchiveOrder = exports.LogsArchive = exports.IpAllowlist = exports.getWorkflowAutomationOutput = exports.getWorkflowAutomation = exports.getUsersOutput = exports.getUsers = exports.getUserOutput = exports.getUser = exports.getTeamsOutput = exports.getTeams = exports.getTeamMembershipsOutput = exports.getTeamMemberships = void 0;
|
|
22
|
+
exports.types = exports.slack = exports.pagerduty = exports.opsgenie = exports.ms = exports.gcp = exports.fastly = exports.confluent = exports.config = exports.cloudflare = exports.azure = exports.aws = exports.WorkflowAutomation = exports.WebhookCustomVariable = exports.Webhook = exports.UserRole = exports.User = exports.TeamPermissionSetting = exports.TeamMembership = exports.TeamLink = exports.Team = exports.SyntheticsTest = exports.SyntheticsPrivateLocation = exports.SyntheticsGlobalVariable = exports.SyntheticsConcurrencyCap = exports.SpansMetric = exports.SoftwareCatalog = exports.SloCorrection = exports.ServiceLevelObjective = exports.ServiceDefinitionYaml = void 0;
|
|
23
23
|
const pulumi = require("@pulumi/pulumi");
|
|
24
24
|
const utilities = require("./utilities");
|
|
25
25
|
exports.ActionConnection = null;
|
|
@@ -46,6 +46,8 @@ exports.CloudConfigurationRule = null;
|
|
|
46
46
|
utilities.lazyLoad(exports, ["CloudConfigurationRule"], () => require("./cloudConfigurationRule"));
|
|
47
47
|
exports.CloudWorkloadSecurityAgentRule = null;
|
|
48
48
|
utilities.lazyLoad(exports, ["CloudWorkloadSecurityAgentRule"], () => require("./cloudWorkloadSecurityAgentRule"));
|
|
49
|
+
exports.ComplianceCustomFramework = null;
|
|
50
|
+
utilities.lazyLoad(exports, ["ComplianceCustomFramework"], () => require("./complianceCustomFramework"));
|
|
49
51
|
exports.CsmThreatsAgentRule = null;
|
|
50
52
|
utilities.lazyLoad(exports, ["CsmThreatsAgentRule"], () => require("./csmThreatsAgentRule"));
|
|
51
53
|
exports.Dashboard = null;
|
|
@@ -229,6 +231,12 @@ exports.MonitorNotificationRule = null;
|
|
|
229
231
|
utilities.lazyLoad(exports, ["MonitorNotificationRule"], () => require("./monitorNotificationRule"));
|
|
230
232
|
exports.ObservabilityPipeline = null;
|
|
231
233
|
utilities.lazyLoad(exports, ["ObservabilityPipeline"], () => require("./observabilityPipeline"));
|
|
234
|
+
exports.OnCallEscalationPolicy = null;
|
|
235
|
+
utilities.lazyLoad(exports, ["OnCallEscalationPolicy"], () => require("./onCallEscalationPolicy"));
|
|
236
|
+
exports.OnCallSchedule = null;
|
|
237
|
+
utilities.lazyLoad(exports, ["OnCallSchedule"], () => require("./onCallSchedule"));
|
|
238
|
+
exports.OnCallTeamRoutingRules = null;
|
|
239
|
+
utilities.lazyLoad(exports, ["OnCallTeamRoutingRules"], () => require("./onCallTeamRoutingRules"));
|
|
232
240
|
exports.OpenapiApi = null;
|
|
233
241
|
utilities.lazyLoad(exports, ["OpenapiApi"], () => require("./openapiApi"));
|
|
234
242
|
exports.OrganizationSettings = null;
|
|
@@ -255,6 +263,8 @@ exports.SecurityMonitoringFilter = null;
|
|
|
255
263
|
utilities.lazyLoad(exports, ["SecurityMonitoringFilter"], () => require("./securityMonitoringFilter"));
|
|
256
264
|
exports.SecurityMonitoringRule = null;
|
|
257
265
|
utilities.lazyLoad(exports, ["SecurityMonitoringRule"], () => require("./securityMonitoringRule"));
|
|
266
|
+
exports.SecurityMonitoringRuleJson = null;
|
|
267
|
+
utilities.lazyLoad(exports, ["SecurityMonitoringRuleJson"], () => require("./securityMonitoringRuleJson"));
|
|
258
268
|
exports.SecurityMonitoringSuppression = null;
|
|
259
269
|
utilities.lazyLoad(exports, ["SecurityMonitoringSuppression"], () => require("./securityMonitoringSuppression"));
|
|
260
270
|
exports.SecurityNotificationRule = null;
|
|
@@ -358,6 +368,8 @@ const _module = {
|
|
|
358
368
|
return new exports.CloudConfigurationRule(name, undefined, { urn });
|
|
359
369
|
case "datadog:index/cloudWorkloadSecurityAgentRule:CloudWorkloadSecurityAgentRule":
|
|
360
370
|
return new exports.CloudWorkloadSecurityAgentRule(name, undefined, { urn });
|
|
371
|
+
case "datadog:index/complianceCustomFramework:ComplianceCustomFramework":
|
|
372
|
+
return new exports.ComplianceCustomFramework(name, undefined, { urn });
|
|
361
373
|
case "datadog:index/csmThreatsAgentRule:CsmThreatsAgentRule":
|
|
362
374
|
return new exports.CsmThreatsAgentRule(name, undefined, { urn });
|
|
363
375
|
case "datadog:index/dashboard:Dashboard":
|
|
@@ -406,6 +418,12 @@ const _module = {
|
|
|
406
418
|
return new exports.MonitorNotificationRule(name, undefined, { urn });
|
|
407
419
|
case "datadog:index/observabilityPipeline:ObservabilityPipeline":
|
|
408
420
|
return new exports.ObservabilityPipeline(name, undefined, { urn });
|
|
421
|
+
case "datadog:index/onCallEscalationPolicy:OnCallEscalationPolicy":
|
|
422
|
+
return new exports.OnCallEscalationPolicy(name, undefined, { urn });
|
|
423
|
+
case "datadog:index/onCallSchedule:OnCallSchedule":
|
|
424
|
+
return new exports.OnCallSchedule(name, undefined, { urn });
|
|
425
|
+
case "datadog:index/onCallTeamRoutingRules:OnCallTeamRoutingRules":
|
|
426
|
+
return new exports.OnCallTeamRoutingRules(name, undefined, { urn });
|
|
409
427
|
case "datadog:index/openapiApi:OpenapiApi":
|
|
410
428
|
return new exports.OpenapiApi(name, undefined, { urn });
|
|
411
429
|
case "datadog:index/organizationSettings:OrganizationSettings":
|
|
@@ -430,6 +448,8 @@ const _module = {
|
|
|
430
448
|
return new exports.SecurityMonitoringFilter(name, undefined, { urn });
|
|
431
449
|
case "datadog:index/securityMonitoringRule:SecurityMonitoringRule":
|
|
432
450
|
return new exports.SecurityMonitoringRule(name, undefined, { urn });
|
|
451
|
+
case "datadog:index/securityMonitoringRuleJson:SecurityMonitoringRuleJson":
|
|
452
|
+
return new exports.SecurityMonitoringRuleJson(name, undefined, { urn });
|
|
433
453
|
case "datadog:index/securityMonitoringSuppression:SecurityMonitoringSuppression":
|
|
434
454
|
return new exports.SecurityMonitoringSuppression(name, undefined, { urn });
|
|
435
455
|
case "datadog:index/securityNotificationRule:SecurityNotificationRule":
|
|
@@ -497,6 +517,7 @@ pulumi.runtime.registerResourceModule("datadog", "index/authnMapping", _module);
|
|
|
497
517
|
pulumi.runtime.registerResourceModule("datadog", "index/childOrganization", _module);
|
|
498
518
|
pulumi.runtime.registerResourceModule("datadog", "index/cloudConfigurationRule", _module);
|
|
499
519
|
pulumi.runtime.registerResourceModule("datadog", "index/cloudWorkloadSecurityAgentRule", _module);
|
|
520
|
+
pulumi.runtime.registerResourceModule("datadog", "index/complianceCustomFramework", _module);
|
|
500
521
|
pulumi.runtime.registerResourceModule("datadog", "index/csmThreatsAgentRule", _module);
|
|
501
522
|
pulumi.runtime.registerResourceModule("datadog", "index/dashboard", _module);
|
|
502
523
|
pulumi.runtime.registerResourceModule("datadog", "index/dashboardJson", _module);
|
|
@@ -521,6 +542,9 @@ pulumi.runtime.registerResourceModule("datadog", "index/monitorConfigPolicy", _m
|
|
|
521
542
|
pulumi.runtime.registerResourceModule("datadog", "index/monitorJson", _module);
|
|
522
543
|
pulumi.runtime.registerResourceModule("datadog", "index/monitorNotificationRule", _module);
|
|
523
544
|
pulumi.runtime.registerResourceModule("datadog", "index/observabilityPipeline", _module);
|
|
545
|
+
pulumi.runtime.registerResourceModule("datadog", "index/onCallEscalationPolicy", _module);
|
|
546
|
+
pulumi.runtime.registerResourceModule("datadog", "index/onCallSchedule", _module);
|
|
547
|
+
pulumi.runtime.registerResourceModule("datadog", "index/onCallTeamRoutingRules", _module);
|
|
524
548
|
pulumi.runtime.registerResourceModule("datadog", "index/openapiApi", _module);
|
|
525
549
|
pulumi.runtime.registerResourceModule("datadog", "index/organizationSettings", _module);
|
|
526
550
|
pulumi.runtime.registerResourceModule("datadog", "index/powerpack", _module);
|
|
@@ -533,6 +557,7 @@ pulumi.runtime.registerResourceModule("datadog", "index/rumRetentionFiltersOrder
|
|
|
533
557
|
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringDefaultRule", _module);
|
|
534
558
|
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringFilter", _module);
|
|
535
559
|
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringRule", _module);
|
|
560
|
+
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringRuleJson", _module);
|
|
536
561
|
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringSuppression", _module);
|
|
537
562
|
pulumi.runtime.registerResourceModule("datadog", "index/securityNotificationRule", _module);
|
|
538
563
|
pulumi.runtime.registerResourceModule("datadog", "index/sensitiveDataScannerGroup", _module);
|