@pulumi/datadog 4.60.0-alpha.1761112114 → 4.60.0-alpha.1763748285
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/agentlessScanningGcpScanOptions.d.ts +101 -0
- package/agentlessScanningGcpScanOptions.js +91 -0
- package/agentlessScanningGcpScanOptions.js.map +1 -0
- package/applicationKey.d.ts +3 -4
- package/applicationKey.js +3 -4
- package/applicationKey.js.map +1 -1
- package/gcp/integrationSts.d.ts +1 -1
- package/getMetrics.d.ts +44 -0
- package/getMetrics.js +28 -0
- package/getMetrics.js.map +1 -0
- package/getUser.d.ts +12 -0
- package/getUser.js +2 -0
- package/getUser.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +13 -5
- package/index.js.map +1 -1
- package/metricMetadata.d.ts +3 -3
- package/package.json +2 -2
- package/securityMonitoringSuppression.d.ts +12 -0
- package/securityMonitoringSuppression.js +2 -0
- package/securityMonitoringSuppression.js.map +1 -1
- package/sloCorrection.d.ts +3 -3
- package/tagPipelineRulesets.d.ts +3 -12
- package/tagPipelineRulesets.js +2 -12
- package/tagPipelineRulesets.js.map +1 -1
- package/types/input.d.ts +331 -32
- package/types/output.d.ts +335 -32
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a Datadog Agentless Scanning GCP scan options resource. This can be used to activate and configure Agentless scan options for a GCP project.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as datadog from "@pulumi/datadog";
|
|
10
|
+
*
|
|
11
|
+
* // Configure agentless scanning for a GCP project
|
|
12
|
+
* const example = new datadog.AgentlessScanningGcpScanOptions("example", {
|
|
13
|
+
* gcpProjectId: "company-project-prod",
|
|
14
|
+
* vulnContainersOs: true,
|
|
15
|
+
* vulnHostOs: true,
|
|
16
|
+
* });
|
|
17
|
+
* ```
|
|
18
|
+
*
|
|
19
|
+
* ## Import
|
|
20
|
+
*
|
|
21
|
+
* The `pulumi import` command can be used, for example:
|
|
22
|
+
*
|
|
23
|
+
* #!/bin/sh
|
|
24
|
+
*
|
|
25
|
+
* Import existing agentless scanning GCP scan options by GCP project ID
|
|
26
|
+
*
|
|
27
|
+
* ```sh
|
|
28
|
+
* $ pulumi import datadog:index/agentlessScanningGcpScanOptions:AgentlessScanningGcpScanOptions example company-project-prod
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare class AgentlessScanningGcpScanOptions extends pulumi.CustomResource {
|
|
32
|
+
/**
|
|
33
|
+
* Get an existing AgentlessScanningGcpScanOptions resource's state with the given name, ID, and optional extra
|
|
34
|
+
* properties used to qualify the lookup.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resulting resource.
|
|
37
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
38
|
+
* @param state Any extra arguments used during the lookup.
|
|
39
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
40
|
+
*/
|
|
41
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AgentlessScanningGcpScanOptionsState, opts?: pulumi.CustomResourceOptions): AgentlessScanningGcpScanOptions;
|
|
42
|
+
/**
|
|
43
|
+
* Returns true if the given object is an instance of AgentlessScanningGcpScanOptions. This is designed to work even
|
|
44
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
45
|
+
*/
|
|
46
|
+
static isInstance(obj: any): obj is AgentlessScanningGcpScanOptions;
|
|
47
|
+
/**
|
|
48
|
+
* The GCP project ID for which agentless scanning is configured. Must be a valid GCP project ID: 6–30 characters, start with a lowercase letter, and include only lowercase letters, digits, or hyphens.
|
|
49
|
+
*/
|
|
50
|
+
readonly gcpProjectId: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* Indicates if scanning for vulnerabilities in containers is enabled.
|
|
53
|
+
*/
|
|
54
|
+
readonly vulnContainersOs: pulumi.Output<boolean>;
|
|
55
|
+
/**
|
|
56
|
+
* Indicates if scanning for vulnerabilities in hosts is enabled.
|
|
57
|
+
*/
|
|
58
|
+
readonly vulnHostOs: pulumi.Output<boolean>;
|
|
59
|
+
/**
|
|
60
|
+
* Create a AgentlessScanningGcpScanOptions resource with the given unique name, arguments, and options.
|
|
61
|
+
*
|
|
62
|
+
* @param name The _unique_ name of the resource.
|
|
63
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
64
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
65
|
+
*/
|
|
66
|
+
constructor(name: string, args: AgentlessScanningGcpScanOptionsArgs, opts?: pulumi.CustomResourceOptions);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Input properties used for looking up and filtering AgentlessScanningGcpScanOptions resources.
|
|
70
|
+
*/
|
|
71
|
+
export interface AgentlessScanningGcpScanOptionsState {
|
|
72
|
+
/**
|
|
73
|
+
* The GCP project ID for which agentless scanning is configured. Must be a valid GCP project ID: 6–30 characters, start with a lowercase letter, and include only lowercase letters, digits, or hyphens.
|
|
74
|
+
*/
|
|
75
|
+
gcpProjectId?: pulumi.Input<string>;
|
|
76
|
+
/**
|
|
77
|
+
* Indicates if scanning for vulnerabilities in containers is enabled.
|
|
78
|
+
*/
|
|
79
|
+
vulnContainersOs?: pulumi.Input<boolean>;
|
|
80
|
+
/**
|
|
81
|
+
* Indicates if scanning for vulnerabilities in hosts is enabled.
|
|
82
|
+
*/
|
|
83
|
+
vulnHostOs?: pulumi.Input<boolean>;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* The set of arguments for constructing a AgentlessScanningGcpScanOptions resource.
|
|
87
|
+
*/
|
|
88
|
+
export interface AgentlessScanningGcpScanOptionsArgs {
|
|
89
|
+
/**
|
|
90
|
+
* The GCP project ID for which agentless scanning is configured. Must be a valid GCP project ID: 6–30 characters, start with a lowercase letter, and include only lowercase letters, digits, or hyphens.
|
|
91
|
+
*/
|
|
92
|
+
gcpProjectId: pulumi.Input<string>;
|
|
93
|
+
/**
|
|
94
|
+
* Indicates if scanning for vulnerabilities in containers is enabled.
|
|
95
|
+
*/
|
|
96
|
+
vulnContainersOs: pulumi.Input<boolean>;
|
|
97
|
+
/**
|
|
98
|
+
* Indicates if scanning for vulnerabilities in hosts is enabled.
|
|
99
|
+
*/
|
|
100
|
+
vulnHostOs: pulumi.Input<boolean>;
|
|
101
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
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.AgentlessScanningGcpScanOptions = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Datadog Agentless Scanning GCP scan options resource. This can be used to activate and configure Agentless scan options for a GCP project.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as datadog from "@pulumi/datadog";
|
|
16
|
+
*
|
|
17
|
+
* // Configure agentless scanning for a GCP project
|
|
18
|
+
* const example = new datadog.AgentlessScanningGcpScanOptions("example", {
|
|
19
|
+
* gcpProjectId: "company-project-prod",
|
|
20
|
+
* vulnContainersOs: true,
|
|
21
|
+
* vulnHostOs: true,
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ## Import
|
|
26
|
+
*
|
|
27
|
+
* The `pulumi import` command can be used, for example:
|
|
28
|
+
*
|
|
29
|
+
* #!/bin/sh
|
|
30
|
+
*
|
|
31
|
+
* Import existing agentless scanning GCP scan options by GCP project ID
|
|
32
|
+
*
|
|
33
|
+
* ```sh
|
|
34
|
+
* $ pulumi import datadog:index/agentlessScanningGcpScanOptions:AgentlessScanningGcpScanOptions example company-project-prod
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
class AgentlessScanningGcpScanOptions extends pulumi.CustomResource {
|
|
38
|
+
/**
|
|
39
|
+
* Get an existing AgentlessScanningGcpScanOptions resource's state with the given name, ID, and optional extra
|
|
40
|
+
* properties used to qualify the lookup.
|
|
41
|
+
*
|
|
42
|
+
* @param name The _unique_ name of the resulting resource.
|
|
43
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
44
|
+
* @param state Any extra arguments used during the lookup.
|
|
45
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
46
|
+
*/
|
|
47
|
+
static get(name, id, state, opts) {
|
|
48
|
+
return new AgentlessScanningGcpScanOptions(name, state, { ...opts, id: id });
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Returns true if the given object is an instance of AgentlessScanningGcpScanOptions. This is designed to work even
|
|
52
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
53
|
+
*/
|
|
54
|
+
static isInstance(obj) {
|
|
55
|
+
if (obj === undefined || obj === null) {
|
|
56
|
+
return false;
|
|
57
|
+
}
|
|
58
|
+
return obj['__pulumiType'] === AgentlessScanningGcpScanOptions.__pulumiType;
|
|
59
|
+
}
|
|
60
|
+
constructor(name, argsOrState, opts) {
|
|
61
|
+
let resourceInputs = {};
|
|
62
|
+
opts = opts || {};
|
|
63
|
+
if (opts.id) {
|
|
64
|
+
const state = argsOrState;
|
|
65
|
+
resourceInputs["gcpProjectId"] = state?.gcpProjectId;
|
|
66
|
+
resourceInputs["vulnContainersOs"] = state?.vulnContainersOs;
|
|
67
|
+
resourceInputs["vulnHostOs"] = state?.vulnHostOs;
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
const args = argsOrState;
|
|
71
|
+
if (args?.gcpProjectId === undefined && !opts.urn) {
|
|
72
|
+
throw new Error("Missing required property 'gcpProjectId'");
|
|
73
|
+
}
|
|
74
|
+
if (args?.vulnContainersOs === undefined && !opts.urn) {
|
|
75
|
+
throw new Error("Missing required property 'vulnContainersOs'");
|
|
76
|
+
}
|
|
77
|
+
if (args?.vulnHostOs === undefined && !opts.urn) {
|
|
78
|
+
throw new Error("Missing required property 'vulnHostOs'");
|
|
79
|
+
}
|
|
80
|
+
resourceInputs["gcpProjectId"] = args?.gcpProjectId;
|
|
81
|
+
resourceInputs["vulnContainersOs"] = args?.vulnContainersOs;
|
|
82
|
+
resourceInputs["vulnHostOs"] = args?.vulnHostOs;
|
|
83
|
+
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
|
+
super(AgentlessScanningGcpScanOptions.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.AgentlessScanningGcpScanOptions = AgentlessScanningGcpScanOptions;
|
|
89
|
+
/** @internal */
|
|
90
|
+
AgentlessScanningGcpScanOptions.__pulumiType = 'datadog:index/agentlessScanningGcpScanOptions:AgentlessScanningGcpScanOptions';
|
|
91
|
+
//# sourceMappingURL=agentlessScanningGcpScanOptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agentlessScanningGcpScanOptions.js","sourceRoot":"","sources":["../agentlessScanningGcpScanOptions.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,+BAAgC,SAAQ,MAAM,CAAC,cAAc;IACtE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4C,EAAE,IAAmC;QAC1I,OAAO,IAAI,+BAA+B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtF,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,+BAA+B,CAAC,YAAY,CAAC;IAChF,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAwF,EAAE,IAAmC;QACnJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+D,CAAC;YAC9E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;SACpD;aAAM;YACH,MAAM,IAAI,GAAG,WAA8D,CAAC;YAC5E,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,IAAI,EAAE,gBAAgB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,+BAA+B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpF,CAAC;;AA1EL,0EA2EC;AA7DG,gBAAgB;AACO,4CAAY,GAAG,+EAA+E,CAAC"}
|
package/applicationKey.d.ts
CHANGED
|
@@ -8,8 +8,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
9
|
* import * as datadog from "@pulumi/datadog";
|
|
10
10
|
*
|
|
11
|
-
* //
|
|
12
|
-
* const ddPerms = datadog.getPermissions({});
|
|
11
|
+
* // See the permissions available for scoped keys at https://docs.datadoghq.com/account_management/rbac/permissions/#permissions-list
|
|
13
12
|
* // Create an unrestricted Application Key
|
|
14
13
|
* // This key inherits all permissions of the user that owns the key
|
|
15
14
|
* const unrestrictedKey = new datadog.ApplicationKey("unrestricted_key", {name: "Unrestricted Application Key"});
|
|
@@ -17,8 +16,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
17
16
|
* const monitorManagementKey = new datadog.ApplicationKey("monitor_management_key", {
|
|
18
17
|
* name: "Monitor Management Key",
|
|
19
18
|
* scopes: [
|
|
20
|
-
*
|
|
21
|
-
*
|
|
19
|
+
* "monitors_read",
|
|
20
|
+
* "monitors_write",
|
|
22
21
|
* ],
|
|
23
22
|
* });
|
|
24
23
|
* ```
|
package/applicationKey.js
CHANGED
|
@@ -14,8 +14,7 @@ const utilities = require("./utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as datadog from "@pulumi/datadog";
|
|
16
16
|
*
|
|
17
|
-
* //
|
|
18
|
-
* const ddPerms = datadog.getPermissions({});
|
|
17
|
+
* // See the permissions available for scoped keys at https://docs.datadoghq.com/account_management/rbac/permissions/#permissions-list
|
|
19
18
|
* // Create an unrestricted Application Key
|
|
20
19
|
* // This key inherits all permissions of the user that owns the key
|
|
21
20
|
* const unrestrictedKey = new datadog.ApplicationKey("unrestricted_key", {name: "Unrestricted Application Key"});
|
|
@@ -23,8 +22,8 @@ const utilities = require("./utilities");
|
|
|
23
22
|
* const monitorManagementKey = new datadog.ApplicationKey("monitor_management_key", {
|
|
24
23
|
* name: "Monitor Management Key",
|
|
25
24
|
* scopes: [
|
|
26
|
-
*
|
|
27
|
-
*
|
|
25
|
+
* "monitors_read",
|
|
26
|
+
* "monitors_write",
|
|
28
27
|
* ],
|
|
29
28
|
* });
|
|
30
29
|
* ```
|
package/applicationKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicationKey.js","sourceRoot":"","sources":["../applicationKey.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"applicationKey.js","sourceRoot":"","sources":["../applicationKey.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAuBD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC;QACxD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;;AAtEL,wCAuEC;AAzDG,gBAAgB;AACO,2BAAY,GAAG,6CAA6C,CAAC"}
|
package/gcp/integrationSts.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export declare class IntegrationSts extends pulumi.CustomResource {
|
|
|
75
75
|
/**
|
|
76
76
|
* Configurations for GCP metric namespaces.
|
|
77
77
|
*/
|
|
78
|
-
readonly metricNamespaceConfigs: pulumi.Output<outputs.gcp.IntegrationStsMetricNamespaceConfig[]
|
|
78
|
+
readonly metricNamespaceConfigs: pulumi.Output<outputs.gcp.IntegrationStsMetricNamespaceConfig[]>;
|
|
79
79
|
/**
|
|
80
80
|
* Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
|
|
81
81
|
*/
|
package/getMetrics.d.ts
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to list metrics for use in other resources.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getMetrics(args: GetMetricsArgs, opts?: pulumi.InvokeOptions): Promise<GetMetricsResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getMetrics.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetMetricsArgs {
|
|
10
|
+
/**
|
|
11
|
+
* The search query to use when listing metrics.
|
|
12
|
+
*/
|
|
13
|
+
query: string;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* A collection of values returned by getMetrics.
|
|
17
|
+
*/
|
|
18
|
+
export interface GetMetricsResult {
|
|
19
|
+
/**
|
|
20
|
+
* The ID of this resource.
|
|
21
|
+
*/
|
|
22
|
+
readonly id: string;
|
|
23
|
+
/**
|
|
24
|
+
* The metrics returned by the search query.
|
|
25
|
+
*/
|
|
26
|
+
readonly metrics: string[];
|
|
27
|
+
/**
|
|
28
|
+
* The search query to use when listing metrics.
|
|
29
|
+
*/
|
|
30
|
+
readonly query: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Use this data source to list metrics for use in other resources.
|
|
34
|
+
*/
|
|
35
|
+
export declare function getMetricsOutput(args: GetMetricsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMetricsResult>;
|
|
36
|
+
/**
|
|
37
|
+
* A collection of arguments for invoking getMetrics.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetMetricsOutputArgs {
|
|
40
|
+
/**
|
|
41
|
+
* The search query to use when listing metrics.
|
|
42
|
+
*/
|
|
43
|
+
query: pulumi.Input<string>;
|
|
44
|
+
}
|
package/getMetrics.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
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.getMetricsOutput = exports.getMetrics = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to list metrics for use in other resources.
|
|
10
|
+
*/
|
|
11
|
+
function getMetrics(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("datadog:index/getMetrics:getMetrics", {
|
|
14
|
+
"query": args.query,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getMetrics = getMetrics;
|
|
18
|
+
/**
|
|
19
|
+
* Use this data source to list metrics for use in other resources.
|
|
20
|
+
*/
|
|
21
|
+
function getMetricsOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("datadog:index/getMetrics:getMetrics", {
|
|
24
|
+
"query": args.query,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getMetricsOutput = getMetricsOutput;
|
|
28
|
+
//# sourceMappingURL=getMetrics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getMetrics.js","sourceRoot":"","sources":["../getMetrics.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gCAKC;AA6BD;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qCAAqC,EAAE;QACtE,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4CAKC"}
|
package/getUser.d.ts
CHANGED
|
@@ -22,6 +22,10 @@ export interface GetUserArgs {
|
|
|
22
22
|
* When true, `filter` string is exact matched against the user's `email`, followed by `name` attribute. Defaults to `false`.
|
|
23
23
|
*/
|
|
24
24
|
exactMatch?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* When true, service accounts are excluded from the result. Defaults to `false`.
|
|
27
|
+
*/
|
|
28
|
+
excludeServiceAccounts?: boolean;
|
|
25
29
|
/**
|
|
26
30
|
* Filter all users by the given string.
|
|
27
31
|
*/
|
|
@@ -47,6 +51,10 @@ export interface GetUserResult {
|
|
|
47
51
|
* When true, `filter` string is exact matched against the user's `email`, followed by `name` attribute. Defaults to `false`.
|
|
48
52
|
*/
|
|
49
53
|
readonly exactMatch?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* When true, service accounts are excluded from the result. Defaults to `false`.
|
|
56
|
+
*/
|
|
57
|
+
readonly excludeServiceAccounts?: boolean;
|
|
50
58
|
/**
|
|
51
59
|
* Filter all users by the given string.
|
|
52
60
|
*/
|
|
@@ -115,6 +123,10 @@ export interface GetUserOutputArgs {
|
|
|
115
123
|
* When true, `filter` string is exact matched against the user's `email`, followed by `name` attribute. Defaults to `false`.
|
|
116
124
|
*/
|
|
117
125
|
exactMatch?: pulumi.Input<boolean>;
|
|
126
|
+
/**
|
|
127
|
+
* When true, service accounts are excluded from the result. Defaults to `false`.
|
|
128
|
+
*/
|
|
129
|
+
excludeServiceAccounts?: pulumi.Input<boolean>;
|
|
118
130
|
/**
|
|
119
131
|
* Filter all users by the given string.
|
|
120
132
|
*/
|
package/getUser.js
CHANGED
|
@@ -23,6 +23,7 @@ function getUser(args, opts) {
|
|
|
23
23
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
24
|
return pulumi.runtime.invoke("datadog:index/getUser:getUser", {
|
|
25
25
|
"exactMatch": args.exactMatch,
|
|
26
|
+
"excludeServiceAccounts": args.excludeServiceAccounts,
|
|
26
27
|
"filter": args.filter,
|
|
27
28
|
}, opts);
|
|
28
29
|
}
|
|
@@ -45,6 +46,7 @@ function getUserOutput(args, opts) {
|
|
|
45
46
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
46
47
|
return pulumi.runtime.invokeOutput("datadog:index/getUser:getUser", {
|
|
47
48
|
"exactMatch": args.exactMatch,
|
|
49
|
+
"excludeServiceAccounts": args.excludeServiceAccounts,
|
|
48
50
|
"filter": args.filter,
|
|
49
51
|
}, opts);
|
|
50
52
|
}
|
package/getUser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0BAOC;AAyFD;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAAiC;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+BAA+B,EAAE;QAChE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC"}
|
package/index.d.ts
CHANGED
|
@@ -4,6 +4,9 @@ export declare const ActionConnection: typeof import("./actionConnection").Actio
|
|
|
4
4
|
export { AgentlessScanningAwsScanOptionsArgs, AgentlessScanningAwsScanOptionsState } from "./agentlessScanningAwsScanOptions";
|
|
5
5
|
export type AgentlessScanningAwsScanOptions = import("./agentlessScanningAwsScanOptions").AgentlessScanningAwsScanOptions;
|
|
6
6
|
export declare const AgentlessScanningAwsScanOptions: typeof import("./agentlessScanningAwsScanOptions").AgentlessScanningAwsScanOptions;
|
|
7
|
+
export { AgentlessScanningGcpScanOptionsArgs, AgentlessScanningGcpScanOptionsState } from "./agentlessScanningGcpScanOptions";
|
|
8
|
+
export type AgentlessScanningGcpScanOptions = import("./agentlessScanningGcpScanOptions").AgentlessScanningGcpScanOptions;
|
|
9
|
+
export declare const AgentlessScanningGcpScanOptions: typeof import("./agentlessScanningGcpScanOptions").AgentlessScanningGcpScanOptions;
|
|
7
10
|
export { ApiKeyArgs, ApiKeyState } from "./apiKey";
|
|
8
11
|
export type ApiKey = import("./apiKey").ApiKey;
|
|
9
12
|
export declare const ApiKey: typeof import("./apiKey").ApiKey;
|
|
@@ -175,6 +178,9 @@ export declare const getMetricMetadataOutput: typeof import("./getMetricMetadata
|
|
|
175
178
|
export { GetMetricTagsArgs, GetMetricTagsResult, GetMetricTagsOutputArgs } from "./getMetricTags";
|
|
176
179
|
export declare const getMetricTags: typeof import("./getMetricTags").getMetricTags;
|
|
177
180
|
export declare const getMetricTagsOutput: typeof import("./getMetricTags").getMetricTagsOutput;
|
|
181
|
+
export { GetMetricsArgs, GetMetricsResult, GetMetricsOutputArgs } from "./getMetrics";
|
|
182
|
+
export declare const getMetrics: typeof import("./getMetrics").getMetrics;
|
|
183
|
+
export declare const getMetricsOutput: typeof import("./getMetrics").getMetricsOutput;
|
|
178
184
|
export { GetMonitorArgs, GetMonitorResult, GetMonitorOutputArgs } from "./getMonitor";
|
|
179
185
|
export declare const getMonitor: typeof import("./getMonitor").getMonitor;
|
|
180
186
|
export declare const getMonitorOutput: typeof import("./getMonitor").getMonitorOutput;
|
package/index.js
CHANGED
|
@@ -16,17 +16,19 @@ 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.
|
|
23
|
-
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 = void 0;
|
|
19
|
+
exports.getCostBudgetOutput = exports.getCostBudget = exports.getCloudWorkloadSecurityAgentRulesOutput = exports.getCloudWorkloadSecurityAgentRules = exports.getAzureUcConfigOutput = exports.getAzureUcConfig = exports.getAwsCurConfigOutput = exports.getAwsCurConfig = exports.getApplicationKeyOutput = exports.getApplicationKey = exports.getAppBuilderAppOutput = exports.getAppBuilderApp = exports.getApmRetentionFiltersOrderOutput = exports.getApmRetentionFiltersOrder = exports.getApiKeyOutput = exports.getApiKey = exports.getActionConnectionOutput = exports.getActionConnection = exports.GcpUcConfig = exports.DowntimeSchedule = exports.Downtime = exports.DomainAllowlist = exports.Dataset = exports.DashboardList = exports.DashboardJson = exports.Dashboard = exports.CustomAllocationRules = exports.CustomAllocationRule = exports.CsmThreatsPolicy = exports.CsmThreatsAgentRule = exports.CostBudget = exports.ComplianceResourceEvaluationFilter = exports.ComplianceCustomFramework = exports.CloudWorkloadSecurityAgentRule = exports.CloudConfigurationRule = exports.ChildOrganization = exports.AzureUcConfig = exports.AwsCurConfig = exports.AuthnMapping = exports.AppsecWafExclusionFilter = exports.AppsecWafCustomRule = exports.ApplicationKey = exports.AppKeyRegistration = exports.AppBuilderApp = exports.ApmRetentionFilterOrder = exports.ApmRetentionFilter = exports.ApiKey = exports.AgentlessScanningGcpScanOptions = exports.AgentlessScanningAwsScanOptions = exports.ActionConnection = void 0;
|
|
20
|
+
exports.getPowerpackOutput = exports.getPowerpack = exports.getPermissionsOutput = exports.getPermissions = exports.getMonitorsOutput = exports.getMonitors = exports.getMonitorConfigPoliciesOutput = exports.getMonitorConfigPolicies = exports.getMonitorOutput = exports.getMonitor = exports.getMetricsOutput = exports.getMetrics = exports.getMetricTagsOutput = exports.getMetricTags = exports.getMetricMetadataOutput = exports.getMetricMetadata = exports.getMetricActiveTagsAndAggregationsOutput = exports.getMetricActiveTagsAndAggregations = exports.getLogsPipelinesOrderOutput = exports.getLogsPipelinesOrder = exports.getLogsPipelinesOutput = exports.getLogsPipelines = exports.getLogsIndexesOrderOutput = exports.getLogsIndexesOrder = exports.getLogsIndexesOutput = exports.getLogsIndexes = exports.getLogsArchivesOrderOutput = exports.getLogsArchivesOrder = exports.getIpRangesOutput = exports.getIpRanges = exports.getIncidentTypeOutput = exports.getIncidentType = exports.getIncidentNotificationTemplateOutput = exports.getIncidentNotificationTemplate = exports.getIncidentNotificationRuleOutput = exports.getIncidentNotificationRule = exports.getHostsOutput = exports.getHosts = exports.getGcpUcConfigOutput = exports.getGcpUcConfig = exports.getDashboardListOutput = exports.getDashboardList = exports.getDashboardOutput = exports.getDashboard = exports.getCustomAllocationRuleOutput = exports.getCustomAllocationRule = exports.getCsmThreatsPoliciesOutput = exports.getCsmThreatsPolicies = exports.getCsmThreatsAgentRulesOutput = exports.getCsmThreatsAgentRules = void 0;
|
|
21
|
+
exports.IncidentNotificationTemplate = exports.IncidentNotificationRule = exports.getWorkflowAutomationOutput = exports.getWorkflowAutomation = exports.getUsersOutput = exports.getUsers = exports.getUserOutput = exports.getUser = exports.getTeamsOutput = exports.getTeams = exports.getTeamMembershipsOutput = exports.getTeamMemberships = exports.getTeamOutput = exports.getTeam = exports.getTagPipelineRulesetOutput = exports.getTagPipelineRuleset = 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 = void 0;
|
|
22
|
+
exports.SyntheticsPrivateLocation = exports.SyntheticsGlobalVariable = exports.SyntheticsConcurrencyCap = exports.SpansMetric = exports.SoftwareCatalog = exports.SloCorrection = exports.ServiceLevelObjective = exports.ServiceDefinitionYaml = 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.OrgConnection = 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.IncidentType = void 0;
|
|
23
|
+
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.TagPipelineRulesets = exports.TagPipelineRuleset = exports.SyntheticsTest = void 0;
|
|
24
24
|
const pulumi = require("@pulumi/pulumi");
|
|
25
25
|
const utilities = require("./utilities");
|
|
26
26
|
exports.ActionConnection = null;
|
|
27
27
|
utilities.lazyLoad(exports, ["ActionConnection"], () => require("./actionConnection"));
|
|
28
28
|
exports.AgentlessScanningAwsScanOptions = null;
|
|
29
29
|
utilities.lazyLoad(exports, ["AgentlessScanningAwsScanOptions"], () => require("./agentlessScanningAwsScanOptions"));
|
|
30
|
+
exports.AgentlessScanningGcpScanOptions = null;
|
|
31
|
+
utilities.lazyLoad(exports, ["AgentlessScanningGcpScanOptions"], () => require("./agentlessScanningGcpScanOptions"));
|
|
30
32
|
exports.ApiKey = null;
|
|
31
33
|
utilities.lazyLoad(exports, ["ApiKey"], () => require("./apiKey"));
|
|
32
34
|
exports.ApmRetentionFilter = null;
|
|
@@ -169,6 +171,9 @@ utilities.lazyLoad(exports, ["getMetricMetadata", "getMetricMetadataOutput"], ()
|
|
|
169
171
|
exports.getMetricTags = null;
|
|
170
172
|
exports.getMetricTagsOutput = null;
|
|
171
173
|
utilities.lazyLoad(exports, ["getMetricTags", "getMetricTagsOutput"], () => require("./getMetricTags"));
|
|
174
|
+
exports.getMetrics = null;
|
|
175
|
+
exports.getMetricsOutput = null;
|
|
176
|
+
utilities.lazyLoad(exports, ["getMetrics", "getMetricsOutput"], () => require("./getMetrics"));
|
|
172
177
|
exports.getMonitor = null;
|
|
173
178
|
exports.getMonitorOutput = null;
|
|
174
179
|
utilities.lazyLoad(exports, ["getMonitor", "getMonitorOutput"], () => require("./getMonitor"));
|
|
@@ -419,6 +424,8 @@ const _module = {
|
|
|
419
424
|
return new exports.ActionConnection(name, undefined, { urn });
|
|
420
425
|
case "datadog:index/agentlessScanningAwsScanOptions:AgentlessScanningAwsScanOptions":
|
|
421
426
|
return new exports.AgentlessScanningAwsScanOptions(name, undefined, { urn });
|
|
427
|
+
case "datadog:index/agentlessScanningGcpScanOptions:AgentlessScanningGcpScanOptions":
|
|
428
|
+
return new exports.AgentlessScanningGcpScanOptions(name, undefined, { urn });
|
|
422
429
|
case "datadog:index/apiKey:ApiKey":
|
|
423
430
|
return new exports.ApiKey(name, undefined, { urn });
|
|
424
431
|
case "datadog:index/apmRetentionFilter:ApmRetentionFilter":
|
|
@@ -612,6 +619,7 @@ const _module = {
|
|
|
612
619
|
};
|
|
613
620
|
pulumi.runtime.registerResourceModule("datadog", "index/actionConnection", _module);
|
|
614
621
|
pulumi.runtime.registerResourceModule("datadog", "index/agentlessScanningAwsScanOptions", _module);
|
|
622
|
+
pulumi.runtime.registerResourceModule("datadog", "index/agentlessScanningGcpScanOptions", _module);
|
|
615
623
|
pulumi.runtime.registerResourceModule("datadog", "index/apiKey", _module);
|
|
616
624
|
pulumi.runtime.registerResourceModule("datadog", "index/apmRetentionFilter", _module);
|
|
617
625
|
pulumi.runtime.registerResourceModule("datadog", "index/apmRetentionFilterOrder", _module);
|