@pulumi/datadog 4.64.0-alpha.1769443125 → 4.64.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/datastore.d.ts +170 -0
- package/datastore.js +107 -0
- package/datastore.js.map +1 -0
- package/datastoreItem.d.ts +126 -0
- package/datastoreItem.js +110 -0
- package/datastoreItem.js.map +1 -0
- package/getDatastore.d.ts +76 -0
- package/getDatastore.js +30 -0
- package/getDatastore.js.map +1 -0
- package/getDatastoreItem.d.ts +78 -0
- package/getDatastoreItem.js +30 -0
- package/getDatastoreItem.js.map +1 -0
- package/getSecurityMonitoringCriticalAsset.d.ts +78 -0
- package/getSecurityMonitoringCriticalAsset.js +50 -0
- package/getSecurityMonitoringCriticalAsset.js.map +1 -0
- package/getSecurityMonitoringCriticalAssets.d.ts +45 -0
- package/getSecurityMonitoringCriticalAssets.js +46 -0
- package/getSecurityMonitoringCriticalAssets.js.map +1 -0
- package/index.d.ts +24 -0
- package/index.js +38 -5
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/rumRetentionFilter.d.ts +3 -3
- package/securityMonitoringCriticalAsset.d.ts +125 -0
- package/securityMonitoringCriticalAsset.js +95 -0
- package/securityMonitoringCriticalAsset.js.map +1 -0
- package/syntheticsSuite.d.ts +101 -0
- package/syntheticsSuite.js +63 -0
- package/syntheticsSuite.js.map +1 -0
- package/types/input.d.ts +134 -32
- package/types/output.d.ts +142 -32
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to retrieve information about an existing Datadog datastore item.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getDatastoreItem(args: GetDatastoreItemArgs, opts?: pulumi.InvokeOptions): Promise<GetDatastoreItemResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getDatastoreItem.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetDatastoreItemArgs {
|
|
10
|
+
/**
|
|
11
|
+
* The unique identifier of the datastore containing the item.
|
|
12
|
+
*/
|
|
13
|
+
datastoreId: string;
|
|
14
|
+
/**
|
|
15
|
+
* The primary key value that identifies the item to retrieve.
|
|
16
|
+
*/
|
|
17
|
+
itemKey: string;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* A collection of values returned by getDatastoreItem.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetDatastoreItemResult {
|
|
23
|
+
/**
|
|
24
|
+
* Timestamp when the item was first created.
|
|
25
|
+
*/
|
|
26
|
+
readonly createdAt: string;
|
|
27
|
+
/**
|
|
28
|
+
* The unique identifier of the datastore containing the item.
|
|
29
|
+
*/
|
|
30
|
+
readonly datastoreId: string;
|
|
31
|
+
/**
|
|
32
|
+
* The ID of this resource.
|
|
33
|
+
*/
|
|
34
|
+
readonly id: string;
|
|
35
|
+
/**
|
|
36
|
+
* The primary key value that identifies the item to retrieve.
|
|
37
|
+
*/
|
|
38
|
+
readonly itemKey: string;
|
|
39
|
+
/**
|
|
40
|
+
* Timestamp when the item was last modified.
|
|
41
|
+
*/
|
|
42
|
+
readonly modifiedAt: string;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the organization that owns this item.
|
|
45
|
+
*/
|
|
46
|
+
readonly orgId: number;
|
|
47
|
+
/**
|
|
48
|
+
* A unique signature identifying this item version.
|
|
49
|
+
*/
|
|
50
|
+
readonly signature: string;
|
|
51
|
+
/**
|
|
52
|
+
* The unique identifier of the datastore containing this item.
|
|
53
|
+
*/
|
|
54
|
+
readonly storeId: string;
|
|
55
|
+
/**
|
|
56
|
+
* The data content (as key-value pairs) of the datastore item.
|
|
57
|
+
*/
|
|
58
|
+
readonly value: {
|
|
59
|
+
[key: string]: string;
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Use this data source to retrieve information about an existing Datadog datastore item.
|
|
64
|
+
*/
|
|
65
|
+
export declare function getDatastoreItemOutput(args: GetDatastoreItemOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDatastoreItemResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getDatastoreItem.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetDatastoreItemOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* The unique identifier of the datastore containing the item.
|
|
72
|
+
*/
|
|
73
|
+
datastoreId: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The primary key value that identifies the item to retrieve.
|
|
76
|
+
*/
|
|
77
|
+
itemKey: pulumi.Input<string>;
|
|
78
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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.getDatastoreItemOutput = exports.getDatastoreItem = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve information about an existing Datadog datastore item.
|
|
10
|
+
*/
|
|
11
|
+
function getDatastoreItem(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("datadog:index/getDatastoreItem:getDatastoreItem", {
|
|
14
|
+
"datastoreId": args.datastoreId,
|
|
15
|
+
"itemKey": args.itemKey,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getDatastoreItem = getDatastoreItem;
|
|
19
|
+
/**
|
|
20
|
+
* Use this data source to retrieve information about an existing Datadog datastore item.
|
|
21
|
+
*/
|
|
22
|
+
function getDatastoreItemOutput(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invokeOutput("datadog:index/getDatastoreItem:getDatastoreItem", {
|
|
25
|
+
"datastoreId": args.datastoreId,
|
|
26
|
+
"itemKey": args.itemKey,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getDatastoreItemOutput = getDatastoreItemOutput;
|
|
30
|
+
//# sourceMappingURL=getDatastoreItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDatastoreItem.js","sourceRoot":"","sources":["../getDatastoreItem.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4CAMC;AAyDD;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAAiC;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iDAAiD,EAAE;QAClF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wDAMC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to retrieve information about an existing critical asset.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as datadog from "@pulumi/datadog";
|
|
10
|
+
*
|
|
11
|
+
* const myCriticalAsset = datadog.getSecurityMonitoringCriticalAsset({
|
|
12
|
+
* id: "1dab677c-5eb4-4ac8-b1d3-444bf0117e19",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getSecurityMonitoringCriticalAsset(args: GetSecurityMonitoringCriticalAssetArgs, opts?: pulumi.InvokeOptions): Promise<GetSecurityMonitoringCriticalAssetResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getSecurityMonitoringCriticalAsset.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetSecurityMonitoringCriticalAssetArgs {
|
|
21
|
+
/**
|
|
22
|
+
* The ID of the critical asset.
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* A collection of values returned by getSecurityMonitoringCriticalAsset.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetSecurityMonitoringCriticalAssetResult {
|
|
30
|
+
/**
|
|
31
|
+
* Whether the critical asset is enabled.
|
|
32
|
+
*/
|
|
33
|
+
readonly enabled: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* The ID of the critical asset.
|
|
36
|
+
*/
|
|
37
|
+
readonly id: string;
|
|
38
|
+
/**
|
|
39
|
+
* The query used to match a critical asset and the associated signals.
|
|
40
|
+
*/
|
|
41
|
+
readonly query: string;
|
|
42
|
+
/**
|
|
43
|
+
* The rule query to filter which detection rules this critical asset applies to.
|
|
44
|
+
*/
|
|
45
|
+
readonly ruleQuery: string;
|
|
46
|
+
/**
|
|
47
|
+
* The severity change applied to signals matching this critical asset.
|
|
48
|
+
*/
|
|
49
|
+
readonly severity: string;
|
|
50
|
+
/**
|
|
51
|
+
* A list of tags associated with the critical asset.
|
|
52
|
+
*/
|
|
53
|
+
readonly tags: string[];
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Use this data source to retrieve information about an existing critical asset.
|
|
57
|
+
*
|
|
58
|
+
* ## Example Usage
|
|
59
|
+
*
|
|
60
|
+
* ```typescript
|
|
61
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
62
|
+
* import * as datadog from "@pulumi/datadog";
|
|
63
|
+
*
|
|
64
|
+
* const myCriticalAsset = datadog.getSecurityMonitoringCriticalAsset({
|
|
65
|
+
* id: "1dab677c-5eb4-4ac8-b1d3-444bf0117e19",
|
|
66
|
+
* });
|
|
67
|
+
* ```
|
|
68
|
+
*/
|
|
69
|
+
export declare function getSecurityMonitoringCriticalAssetOutput(args: GetSecurityMonitoringCriticalAssetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityMonitoringCriticalAssetResult>;
|
|
70
|
+
/**
|
|
71
|
+
* A collection of arguments for invoking getSecurityMonitoringCriticalAsset.
|
|
72
|
+
*/
|
|
73
|
+
export interface GetSecurityMonitoringCriticalAssetOutputArgs {
|
|
74
|
+
/**
|
|
75
|
+
* The ID of the critical asset.
|
|
76
|
+
*/
|
|
77
|
+
id: pulumi.Input<string>;
|
|
78
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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.getSecurityMonitoringCriticalAssetOutput = exports.getSecurityMonitoringCriticalAsset = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve information about an existing critical asset.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as datadog from "@pulumi/datadog";
|
|
16
|
+
*
|
|
17
|
+
* const myCriticalAsset = datadog.getSecurityMonitoringCriticalAsset({
|
|
18
|
+
* id: "1dab677c-5eb4-4ac8-b1d3-444bf0117e19",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getSecurityMonitoringCriticalAsset(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("datadog:index/getSecurityMonitoringCriticalAsset:getSecurityMonitoringCriticalAsset", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getSecurityMonitoringCriticalAsset = getSecurityMonitoringCriticalAsset;
|
|
29
|
+
/**
|
|
30
|
+
* Use this data source to retrieve information about an existing critical asset.
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as datadog from "@pulumi/datadog";
|
|
37
|
+
*
|
|
38
|
+
* const myCriticalAsset = datadog.getSecurityMonitoringCriticalAsset({
|
|
39
|
+
* id: "1dab677c-5eb4-4ac8-b1d3-444bf0117e19",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getSecurityMonitoringCriticalAssetOutput(args, opts) {
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("datadog:index/getSecurityMonitoringCriticalAsset:getSecurityMonitoringCriticalAsset", {
|
|
46
|
+
"id": args.id,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getSecurityMonitoringCriticalAssetOutput = getSecurityMonitoringCriticalAssetOutput;
|
|
50
|
+
//# sourceMappingURL=getSecurityMonitoringCriticalAsset.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSecurityMonitoringCriticalAsset.js","sourceRoot":"","sources":["../getSecurityMonitoringCriticalAsset.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qFAAqF,EAAE;QAChH,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gFAKC;AAyCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,wCAAwC,CAAC,IAAkD,EAAE,IAAiC;IAC1I,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qFAAqF,EAAE;QACtH,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4FAKC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to retrieve a list of all critical assets for the current org.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as datadog from "@pulumi/datadog";
|
|
11
|
+
*
|
|
12
|
+
* const all = datadog.getSecurityMonitoringCriticalAssets({});
|
|
13
|
+
* export const criticalAssetsCount = all.then(all => all.criticalAssets).length;
|
|
14
|
+
* export const criticalAssets = all.then(all => all.criticalAssets);
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getSecurityMonitoringCriticalAssets(opts?: pulumi.InvokeOptions): Promise<GetSecurityMonitoringCriticalAssetsResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of values returned by getSecurityMonitoringCriticalAssets.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetSecurityMonitoringCriticalAssetsResult {
|
|
22
|
+
/**
|
|
23
|
+
* List of critical assets
|
|
24
|
+
*/
|
|
25
|
+
readonly criticalAssets: outputs.GetSecurityMonitoringCriticalAssetsCriticalAsset[];
|
|
26
|
+
/**
|
|
27
|
+
* The ID of this resource.
|
|
28
|
+
*/
|
|
29
|
+
readonly id: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Use this data source to retrieve a list of all critical assets for the current org.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as datadog from "@pulumi/datadog";
|
|
39
|
+
*
|
|
40
|
+
* const all = datadog.getSecurityMonitoringCriticalAssets({});
|
|
41
|
+
* export const criticalAssetsCount = all.then(all => all.criticalAssets).length;
|
|
42
|
+
* export const criticalAssets = all.then(all => all.criticalAssets);
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare function getSecurityMonitoringCriticalAssetsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityMonitoringCriticalAssetsResult>;
|
|
@@ -0,0 +1,46 @@
|
|
|
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.getSecurityMonitoringCriticalAssetsOutput = exports.getSecurityMonitoringCriticalAssets = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve a list of all critical assets for the current org.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as datadog from "@pulumi/datadog";
|
|
16
|
+
*
|
|
17
|
+
* const all = datadog.getSecurityMonitoringCriticalAssets({});
|
|
18
|
+
* export const criticalAssetsCount = all.then(all => all.criticalAssets).length;
|
|
19
|
+
* export const criticalAssets = all.then(all => all.criticalAssets);
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getSecurityMonitoringCriticalAssets(opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("datadog:index/getSecurityMonitoringCriticalAssets:getSecurityMonitoringCriticalAssets", {}, opts);
|
|
25
|
+
}
|
|
26
|
+
exports.getSecurityMonitoringCriticalAssets = getSecurityMonitoringCriticalAssets;
|
|
27
|
+
/**
|
|
28
|
+
* Use this data source to retrieve a list of all critical assets for the current org.
|
|
29
|
+
*
|
|
30
|
+
* ## Example Usage
|
|
31
|
+
*
|
|
32
|
+
* ```typescript
|
|
33
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
+
* import * as datadog from "@pulumi/datadog";
|
|
35
|
+
*
|
|
36
|
+
* const all = datadog.getSecurityMonitoringCriticalAssets({});
|
|
37
|
+
* export const criticalAssetsCount = all.then(all => all.criticalAssets).length;
|
|
38
|
+
* export const criticalAssets = all.then(all => all.criticalAssets);
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
function getSecurityMonitoringCriticalAssetsOutput(opts) {
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
43
|
+
return pulumi.runtime.invokeOutput("datadog:index/getSecurityMonitoringCriticalAssets:getSecurityMonitoringCriticalAssets", {}, opts);
|
|
44
|
+
}
|
|
45
|
+
exports.getSecurityMonitoringCriticalAssetsOutput = getSecurityMonitoringCriticalAssetsOutput;
|
|
46
|
+
//# sourceMappingURL=getSecurityMonitoringCriticalAssets.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSecurityMonitoringCriticalAssets.js","sourceRoot":"","sources":["../getSecurityMonitoringCriticalAssets.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,mCAAmC,CAAC,IAA2B;IAC3E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uFAAuF,EAAE,EACrH,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,kFAIC;AAeD;;;;;;;;;;;;;GAaG;AACH,SAAgB,yCAAyC,CAAC,IAAiC;IACvF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uFAAuF,EAAE,EAC3H,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,8FAIC"}
|
package/index.d.ts
CHANGED
|
@@ -85,6 +85,12 @@ export declare const DashboardList: typeof import("./dashboardList").DashboardLi
|
|
|
85
85
|
export { DatasetArgs, DatasetState } from "./dataset";
|
|
86
86
|
export type Dataset = import("./dataset").Dataset;
|
|
87
87
|
export declare const Dataset: typeof import("./dataset").Dataset;
|
|
88
|
+
export { DatastoreArgs, DatastoreState } from "./datastore";
|
|
89
|
+
export type Datastore = import("./datastore").Datastore;
|
|
90
|
+
export declare const Datastore: typeof import("./datastore").Datastore;
|
|
91
|
+
export { DatastoreItemArgs, DatastoreItemState } from "./datastoreItem";
|
|
92
|
+
export type DatastoreItem = import("./datastoreItem").DatastoreItem;
|
|
93
|
+
export declare const DatastoreItem: typeof import("./datastoreItem").DatastoreItem;
|
|
88
94
|
export { DeploymentGateArgs, DeploymentGateState } from "./deploymentGate";
|
|
89
95
|
export type DeploymentGate = import("./deploymentGate").DeploymentGate;
|
|
90
96
|
export declare const DeploymentGate: typeof import("./deploymentGate").DeploymentGate;
|
|
@@ -142,6 +148,12 @@ export declare const getDashboardOutput: typeof import("./getDashboard").getDash
|
|
|
142
148
|
export { GetDashboardListArgs, GetDashboardListResult, GetDashboardListOutputArgs } from "./getDashboardList";
|
|
143
149
|
export declare const getDashboardList: typeof import("./getDashboardList").getDashboardList;
|
|
144
150
|
export declare const getDashboardListOutput: typeof import("./getDashboardList").getDashboardListOutput;
|
|
151
|
+
export { GetDatastoreArgs, GetDatastoreResult, GetDatastoreOutputArgs } from "./getDatastore";
|
|
152
|
+
export declare const getDatastore: typeof import("./getDatastore").getDatastore;
|
|
153
|
+
export declare const getDatastoreOutput: typeof import("./getDatastore").getDatastoreOutput;
|
|
154
|
+
export { GetDatastoreItemArgs, GetDatastoreItemResult, GetDatastoreItemOutputArgs } from "./getDatastoreItem";
|
|
155
|
+
export declare const getDatastoreItem: typeof import("./getDatastoreItem").getDatastoreItem;
|
|
156
|
+
export declare const getDatastoreItemOutput: typeof import("./getDatastoreItem").getDatastoreItemOutput;
|
|
145
157
|
export { GetGcpUcConfigArgs, GetGcpUcConfigResult, GetGcpUcConfigOutputArgs } from "./getGcpUcConfig";
|
|
146
158
|
export declare const getGcpUcConfig: typeof import("./getGcpUcConfig").getGcpUcConfig;
|
|
147
159
|
export declare const getGcpUcConfigOutput: typeof import("./getGcpUcConfig").getGcpUcConfigOutput;
|
|
@@ -226,6 +238,12 @@ export declare const getRumApplicationOutput: typeof import("./getRumApplication
|
|
|
226
238
|
export { GetRumRetentionFiltersArgs, GetRumRetentionFiltersResult, GetRumRetentionFiltersOutputArgs } from "./getRumRetentionFilters";
|
|
227
239
|
export declare const getRumRetentionFilters: typeof import("./getRumRetentionFilters").getRumRetentionFilters;
|
|
228
240
|
export declare const getRumRetentionFiltersOutput: typeof import("./getRumRetentionFilters").getRumRetentionFiltersOutput;
|
|
241
|
+
export { GetSecurityMonitoringCriticalAssetArgs, GetSecurityMonitoringCriticalAssetResult, GetSecurityMonitoringCriticalAssetOutputArgs } from "./getSecurityMonitoringCriticalAsset";
|
|
242
|
+
export declare const getSecurityMonitoringCriticalAsset: typeof import("./getSecurityMonitoringCriticalAsset").getSecurityMonitoringCriticalAsset;
|
|
243
|
+
export declare const getSecurityMonitoringCriticalAssetOutput: typeof import("./getSecurityMonitoringCriticalAsset").getSecurityMonitoringCriticalAssetOutput;
|
|
244
|
+
export { GetSecurityMonitoringCriticalAssetsResult } from "./getSecurityMonitoringCriticalAssets";
|
|
245
|
+
export declare const getSecurityMonitoringCriticalAssets: typeof import("./getSecurityMonitoringCriticalAssets").getSecurityMonitoringCriticalAssets;
|
|
246
|
+
export declare const getSecurityMonitoringCriticalAssetsOutput: typeof import("./getSecurityMonitoringCriticalAssets").getSecurityMonitoringCriticalAssetsOutput;
|
|
229
247
|
export { GetSecurityMonitoringFiltersResult } from "./getSecurityMonitoringFilters";
|
|
230
248
|
export declare const getSecurityMonitoringFilters: typeof import("./getSecurityMonitoringFilters").getSecurityMonitoringFilters;
|
|
231
249
|
export declare const getSecurityMonitoringFiltersOutput: typeof import("./getSecurityMonitoringFilters").getSecurityMonitoringFiltersOutput;
|
|
@@ -404,6 +422,9 @@ export declare const RumRetentionFilter: typeof import("./rumRetentionFilter").R
|
|
|
404
422
|
export { RumRetentionFiltersOrderArgs, RumRetentionFiltersOrderState } from "./rumRetentionFiltersOrder";
|
|
405
423
|
export type RumRetentionFiltersOrder = import("./rumRetentionFiltersOrder").RumRetentionFiltersOrder;
|
|
406
424
|
export declare const RumRetentionFiltersOrder: typeof import("./rumRetentionFiltersOrder").RumRetentionFiltersOrder;
|
|
425
|
+
export { SecurityMonitoringCriticalAssetArgs, SecurityMonitoringCriticalAssetState } from "./securityMonitoringCriticalAsset";
|
|
426
|
+
export type SecurityMonitoringCriticalAsset = import("./securityMonitoringCriticalAsset").SecurityMonitoringCriticalAsset;
|
|
427
|
+
export declare const SecurityMonitoringCriticalAsset: typeof import("./securityMonitoringCriticalAsset").SecurityMonitoringCriticalAsset;
|
|
407
428
|
export { SecurityMonitoringDefaultRuleArgs, SecurityMonitoringDefaultRuleState } from "./securityMonitoringDefaultRule";
|
|
408
429
|
export type SecurityMonitoringDefaultRule = import("./securityMonitoringDefaultRule").SecurityMonitoringDefaultRule;
|
|
409
430
|
export declare const SecurityMonitoringDefaultRule: typeof import("./securityMonitoringDefaultRule").SecurityMonitoringDefaultRule;
|
|
@@ -461,6 +482,9 @@ export declare const SyntheticsGlobalVariable: typeof import("./syntheticsGlobal
|
|
|
461
482
|
export { SyntheticsPrivateLocationArgs, SyntheticsPrivateLocationState } from "./syntheticsPrivateLocation";
|
|
462
483
|
export type SyntheticsPrivateLocation = import("./syntheticsPrivateLocation").SyntheticsPrivateLocation;
|
|
463
484
|
export declare const SyntheticsPrivateLocation: typeof import("./syntheticsPrivateLocation").SyntheticsPrivateLocation;
|
|
485
|
+
export { SyntheticsSuiteArgs, SyntheticsSuiteState } from "./syntheticsSuite";
|
|
486
|
+
export type SyntheticsSuite = import("./syntheticsSuite").SyntheticsSuite;
|
|
487
|
+
export declare const SyntheticsSuite: typeof import("./syntheticsSuite").SyntheticsSuite;
|
|
464
488
|
export { SyntheticsTestArgs, SyntheticsTestState } from "./syntheticsTest";
|
|
465
489
|
export type SyntheticsTest = import("./syntheticsTest").SyntheticsTest;
|
|
466
490
|
export declare const SyntheticsTest: typeof import("./syntheticsTest").SyntheticsTest;
|
package/index.js
CHANGED
|
@@ -16,11 +16,12 @@ 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.
|
|
19
|
+
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.DeploymentGate = exports.DatastoreItem = exports.Datastore = 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.CloudInventorySyncConfig = 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.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.getDatastoreItemOutput = exports.getDatastoreItem = exports.getDatastoreOutput = exports.getDatastore = exports.getDashboardListOutput = exports.getDashboardList = exports.getDashboardOutput = exports.getDashboard = exports.getCustomAllocationRuleOutput = exports.getCustomAllocationRule = exports.getCsmThreatsPoliciesOutput = exports.getCsmThreatsPolicies = exports.getCsmThreatsAgentRulesOutput = exports.getCsmThreatsAgentRules = exports.getCostBudgetOutput = exports.getCostBudget = exports.getCloudWorkloadSecurityAgentRulesOutput = exports.getCloudWorkloadSecurityAgentRules = void 0;
|
|
21
|
+
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.getSecurityMonitoringCriticalAssetsOutput = exports.getSecurityMonitoringCriticalAssets = exports.getSecurityMonitoringCriticalAssetOutput = exports.getSecurityMonitoringCriticalAsset = exports.getRumRetentionFiltersOutput = exports.getRumRetentionFilters = exports.getRumApplicationOutput = exports.getRumApplication = exports.getRolesOutput = exports.getRoles = exports.getRoleUsersOutput = exports.getRoleUsers = exports.getRoleOutput = exports.getRole = exports.getReferenceTableRowsOutput = exports.getReferenceTableRows = exports.getReferenceTableOutput = exports.getReferenceTable = exports.getPowerpackOutput = exports.getPowerpack = exports.getPermissionsOutput = exports.getPermissions = exports.getOrganizationSettingsOutput = exports.getOrganizationSettings = exports.getMonitorsOutput = exports.getMonitors = exports.getMonitorConfigPoliciesOutput = exports.getMonitorConfigPolicies = void 0;
|
|
22
|
+
exports.OrgConnection = exports.OpenapiApi = exports.OnCallUserNotificationRule = exports.OnCallUserNotificationChannel = exports.OnCallTeamRoutingRules = exports.OnCallSchedule = exports.OnCallEscalationPolicy = exports.ObservabilityPipeline = exports.MonitorNotificationRule = exports.MonitorJson = exports.MonitorConfigPolicy = exports.Monitor = exports.MetricTagConfiguration = exports.MetricMetadata = exports.LogsRestrictionQuery = exports.LogsPipelineOrder = exports.LogsMetric = exports.LogsIntegrationPipeline = exports.LogsIndexOrder = exports.LogsIndex = exports.LogsCustomPipeline = exports.LogsCustomDestination = exports.LogsArchiveOrder = exports.LogsArchive = exports.IpAllowlist = exports.IncidentType = exports.IncidentNotificationTemplate = exports.IncidentNotificationRule = exports.getWorkflowAutomationOutput = exports.getWorkflowAutomation = exports.getUsersOutput = exports.getUsers = exports.getUserOutput = exports.getUser = exports.getTeamsOutput = exports.getTeams = exports.getTeamNotificationRulesOutput = exports.getTeamNotificationRules = exports.getTeamNotificationRuleOutput = exports.getTeamNotificationRule = exports.getTeamMembershipsOutput = exports.getTeamMemberships = exports.getTeamHierarchyLinksOutput = exports.getTeamHierarchyLinks = exports.getTeamOutput = exports.getTeam = exports.getTagPipelineRulesetOutput = exports.getTagPipelineRuleset = exports.getSyntheticsTestOutput = exports.getSyntheticsTest = void 0;
|
|
23
|
+
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.TeamNotificationRule = exports.TeamMembership = exports.TeamLink = exports.TeamHierarchyLinks = exports.Team = exports.TagPipelineRulesets = exports.TagPipelineRuleset = exports.SyntheticsTest = exports.SyntheticsSuite = 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.SecurityMonitoringCriticalAsset = exports.RumRetentionFiltersOrder = exports.RumRetentionFilter = exports.RumMetric = exports.RumApplication = exports.Role = exports.RestrictionPolicy = exports.ReferenceTable = exports.Powerpack = exports.OrganizationSettings = void 0;
|
|
24
|
+
exports.types = exports.slack = exports.pagerduty = exports.opsgenie = exports.ms = exports.gcp = void 0;
|
|
24
25
|
const pulumi = require("@pulumi/pulumi");
|
|
25
26
|
const utilities = require("./utilities");
|
|
26
27
|
exports.ActionConnection = null;
|
|
@@ -81,6 +82,10 @@ exports.DashboardList = null;
|
|
|
81
82
|
utilities.lazyLoad(exports, ["DashboardList"], () => require("./dashboardList"));
|
|
82
83
|
exports.Dataset = null;
|
|
83
84
|
utilities.lazyLoad(exports, ["Dataset"], () => require("./dataset"));
|
|
85
|
+
exports.Datastore = null;
|
|
86
|
+
utilities.lazyLoad(exports, ["Datastore"], () => require("./datastore"));
|
|
87
|
+
exports.DatastoreItem = null;
|
|
88
|
+
utilities.lazyLoad(exports, ["DatastoreItem"], () => require("./datastoreItem"));
|
|
84
89
|
exports.DeploymentGate = null;
|
|
85
90
|
utilities.lazyLoad(exports, ["DeploymentGate"], () => require("./deploymentGate"));
|
|
86
91
|
exports.DomainAllowlist = null;
|
|
@@ -133,6 +138,12 @@ utilities.lazyLoad(exports, ["getDashboard", "getDashboardOutput"], () => requir
|
|
|
133
138
|
exports.getDashboardList = null;
|
|
134
139
|
exports.getDashboardListOutput = null;
|
|
135
140
|
utilities.lazyLoad(exports, ["getDashboardList", "getDashboardListOutput"], () => require("./getDashboardList"));
|
|
141
|
+
exports.getDatastore = null;
|
|
142
|
+
exports.getDatastoreOutput = null;
|
|
143
|
+
utilities.lazyLoad(exports, ["getDatastore", "getDatastoreOutput"], () => require("./getDatastore"));
|
|
144
|
+
exports.getDatastoreItem = null;
|
|
145
|
+
exports.getDatastoreItemOutput = null;
|
|
146
|
+
utilities.lazyLoad(exports, ["getDatastoreItem", "getDatastoreItemOutput"], () => require("./getDatastoreItem"));
|
|
136
147
|
exports.getGcpUcConfig = null;
|
|
137
148
|
exports.getGcpUcConfigOutput = null;
|
|
138
149
|
utilities.lazyLoad(exports, ["getGcpUcConfig", "getGcpUcConfigOutput"], () => require("./getGcpUcConfig"));
|
|
@@ -217,6 +228,12 @@ utilities.lazyLoad(exports, ["getRumApplication", "getRumApplicationOutput"], ()
|
|
|
217
228
|
exports.getRumRetentionFilters = null;
|
|
218
229
|
exports.getRumRetentionFiltersOutput = null;
|
|
219
230
|
utilities.lazyLoad(exports, ["getRumRetentionFilters", "getRumRetentionFiltersOutput"], () => require("./getRumRetentionFilters"));
|
|
231
|
+
exports.getSecurityMonitoringCriticalAsset = null;
|
|
232
|
+
exports.getSecurityMonitoringCriticalAssetOutput = null;
|
|
233
|
+
utilities.lazyLoad(exports, ["getSecurityMonitoringCriticalAsset", "getSecurityMonitoringCriticalAssetOutput"], () => require("./getSecurityMonitoringCriticalAsset"));
|
|
234
|
+
exports.getSecurityMonitoringCriticalAssets = null;
|
|
235
|
+
exports.getSecurityMonitoringCriticalAssetsOutput = null;
|
|
236
|
+
utilities.lazyLoad(exports, ["getSecurityMonitoringCriticalAssets", "getSecurityMonitoringCriticalAssetsOutput"], () => require("./getSecurityMonitoringCriticalAssets"));
|
|
220
237
|
exports.getSecurityMonitoringFilters = null;
|
|
221
238
|
exports.getSecurityMonitoringFiltersOutput = null;
|
|
222
239
|
utilities.lazyLoad(exports, ["getSecurityMonitoringFilters", "getSecurityMonitoringFiltersOutput"], () => require("./getSecurityMonitoringFilters"));
|
|
@@ -359,6 +376,8 @@ exports.RumRetentionFilter = null;
|
|
|
359
376
|
utilities.lazyLoad(exports, ["RumRetentionFilter"], () => require("./rumRetentionFilter"));
|
|
360
377
|
exports.RumRetentionFiltersOrder = null;
|
|
361
378
|
utilities.lazyLoad(exports, ["RumRetentionFiltersOrder"], () => require("./rumRetentionFiltersOrder"));
|
|
379
|
+
exports.SecurityMonitoringCriticalAsset = null;
|
|
380
|
+
utilities.lazyLoad(exports, ["SecurityMonitoringCriticalAsset"], () => require("./securityMonitoringCriticalAsset"));
|
|
362
381
|
exports.SecurityMonitoringDefaultRule = null;
|
|
363
382
|
utilities.lazyLoad(exports, ["SecurityMonitoringDefaultRule"], () => require("./securityMonitoringDefaultRule"));
|
|
364
383
|
exports.SecurityMonitoringFilter = null;
|
|
@@ -397,6 +416,8 @@ exports.SyntheticsGlobalVariable = null;
|
|
|
397
416
|
utilities.lazyLoad(exports, ["SyntheticsGlobalVariable"], () => require("./syntheticsGlobalVariable"));
|
|
398
417
|
exports.SyntheticsPrivateLocation = null;
|
|
399
418
|
utilities.lazyLoad(exports, ["SyntheticsPrivateLocation"], () => require("./syntheticsPrivateLocation"));
|
|
419
|
+
exports.SyntheticsSuite = null;
|
|
420
|
+
utilities.lazyLoad(exports, ["SyntheticsSuite"], () => require("./syntheticsSuite"));
|
|
400
421
|
exports.SyntheticsTest = null;
|
|
401
422
|
utilities.lazyLoad(exports, ["SyntheticsTest"], () => require("./syntheticsTest"));
|
|
402
423
|
exports.TagPipelineRuleset = null;
|
|
@@ -512,6 +533,10 @@ const _module = {
|
|
|
512
533
|
return new exports.DashboardList(name, undefined, { urn });
|
|
513
534
|
case "datadog:index/dataset:Dataset":
|
|
514
535
|
return new exports.Dataset(name, undefined, { urn });
|
|
536
|
+
case "datadog:index/datastore:Datastore":
|
|
537
|
+
return new exports.Datastore(name, undefined, { urn });
|
|
538
|
+
case "datadog:index/datastoreItem:DatastoreItem":
|
|
539
|
+
return new exports.DatastoreItem(name, undefined, { urn });
|
|
515
540
|
case "datadog:index/deploymentGate:DeploymentGate":
|
|
516
541
|
return new exports.DeploymentGate(name, undefined, { urn });
|
|
517
542
|
case "datadog:index/domainAllowlist:DomainAllowlist":
|
|
@@ -596,6 +621,8 @@ const _module = {
|
|
|
596
621
|
return new exports.RumRetentionFilter(name, undefined, { urn });
|
|
597
622
|
case "datadog:index/rumRetentionFiltersOrder:RumRetentionFiltersOrder":
|
|
598
623
|
return new exports.RumRetentionFiltersOrder(name, undefined, { urn });
|
|
624
|
+
case "datadog:index/securityMonitoringCriticalAsset:SecurityMonitoringCriticalAsset":
|
|
625
|
+
return new exports.SecurityMonitoringCriticalAsset(name, undefined, { urn });
|
|
599
626
|
case "datadog:index/securityMonitoringDefaultRule:SecurityMonitoringDefaultRule":
|
|
600
627
|
return new exports.SecurityMonitoringDefaultRule(name, undefined, { urn });
|
|
601
628
|
case "datadog:index/securityMonitoringFilter:SecurityMonitoringFilter":
|
|
@@ -634,6 +661,8 @@ const _module = {
|
|
|
634
661
|
return new exports.SyntheticsGlobalVariable(name, undefined, { urn });
|
|
635
662
|
case "datadog:index/syntheticsPrivateLocation:SyntheticsPrivateLocation":
|
|
636
663
|
return new exports.SyntheticsPrivateLocation(name, undefined, { urn });
|
|
664
|
+
case "datadog:index/syntheticsSuite:SyntheticsSuite":
|
|
665
|
+
return new exports.SyntheticsSuite(name, undefined, { urn });
|
|
637
666
|
case "datadog:index/syntheticsTest:SyntheticsTest":
|
|
638
667
|
return new exports.SyntheticsTest(name, undefined, { urn });
|
|
639
668
|
case "datadog:index/tagPipelineRuleset:TagPipelineRuleset":
|
|
@@ -696,6 +725,8 @@ pulumi.runtime.registerResourceModule("datadog", "index/dashboard", _module);
|
|
|
696
725
|
pulumi.runtime.registerResourceModule("datadog", "index/dashboardJson", _module);
|
|
697
726
|
pulumi.runtime.registerResourceModule("datadog", "index/dashboardList", _module);
|
|
698
727
|
pulumi.runtime.registerResourceModule("datadog", "index/dataset", _module);
|
|
728
|
+
pulumi.runtime.registerResourceModule("datadog", "index/datastore", _module);
|
|
729
|
+
pulumi.runtime.registerResourceModule("datadog", "index/datastoreItem", _module);
|
|
699
730
|
pulumi.runtime.registerResourceModule("datadog", "index/deploymentGate", _module);
|
|
700
731
|
pulumi.runtime.registerResourceModule("datadog", "index/domainAllowlist", _module);
|
|
701
732
|
pulumi.runtime.registerResourceModule("datadog", "index/downtime", _module);
|
|
@@ -738,6 +769,7 @@ pulumi.runtime.registerResourceModule("datadog", "index/rumApplication", _module
|
|
|
738
769
|
pulumi.runtime.registerResourceModule("datadog", "index/rumMetric", _module);
|
|
739
770
|
pulumi.runtime.registerResourceModule("datadog", "index/rumRetentionFilter", _module);
|
|
740
771
|
pulumi.runtime.registerResourceModule("datadog", "index/rumRetentionFiltersOrder", _module);
|
|
772
|
+
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringCriticalAsset", _module);
|
|
741
773
|
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringDefaultRule", _module);
|
|
742
774
|
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringFilter", _module);
|
|
743
775
|
pulumi.runtime.registerResourceModule("datadog", "index/securityMonitoringRule", _module);
|
|
@@ -757,6 +789,7 @@ pulumi.runtime.registerResourceModule("datadog", "index/spansMetric", _module);
|
|
|
757
789
|
pulumi.runtime.registerResourceModule("datadog", "index/syntheticsConcurrencyCap", _module);
|
|
758
790
|
pulumi.runtime.registerResourceModule("datadog", "index/syntheticsGlobalVariable", _module);
|
|
759
791
|
pulumi.runtime.registerResourceModule("datadog", "index/syntheticsPrivateLocation", _module);
|
|
792
|
+
pulumi.runtime.registerResourceModule("datadog", "index/syntheticsSuite", _module);
|
|
760
793
|
pulumi.runtime.registerResourceModule("datadog", "index/syntheticsTest", _module);
|
|
761
794
|
pulumi.runtime.registerResourceModule("datadog", "index/tagPipelineRuleset", _module);
|
|
762
795
|
pulumi.runtime.registerResourceModule("datadog", "index/tagPipelineRulesets", _module);
|