@pulumi/datadog 4.53.0-alpha.1755150202 → 4.53.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.
@@ -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.getIncidentTypeOutput = exports.getIncidentType = 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 incident type.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datadog from "@pulumi/datadog";
16
+ *
17
+ * const example = datadog.getIncidentType({
18
+ * id: "01234567-89ab-cdef-0123-456789abcdef",
19
+ * });
20
+ * ```
21
+ */
22
+ function getIncidentType(args, opts) {
23
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
24
+ return pulumi.runtime.invoke("datadog:index/getIncidentType:getIncidentType", {
25
+ "id": args.id,
26
+ }, opts);
27
+ }
28
+ exports.getIncidentType = getIncidentType;
29
+ /**
30
+ * Use this data source to retrieve information about an existing incident type.
31
+ *
32
+ * ## Example Usage
33
+ *
34
+ * ```typescript
35
+ * import * as pulumi from "@pulumi/pulumi";
36
+ * import * as datadog from "@pulumi/datadog";
37
+ *
38
+ * const example = datadog.getIncidentType({
39
+ * id: "01234567-89ab-cdef-0123-456789abcdef",
40
+ * });
41
+ * ```
42
+ */
43
+ function getIncidentTypeOutput(args, opts) {
44
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
45
+ return pulumi.runtime.invokeOutput("datadog:index/getIncidentType:getIncidentType", {
46
+ "id": args.id,
47
+ }, opts);
48
+ }
49
+ exports.getIncidentTypeOutput = getIncidentTypeOutput;
50
+ //# sourceMappingURL=getIncidentType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getIncidentType.js","sourceRoot":"","sources":["../getIncidentType.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC;AAiCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+CAA+C,EAAE;QAChF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
@@ -0,0 +1,68 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Use this data source to retrieve metadata associated with a metric to use in other resources.
4
+ */
5
+ export declare function getMetricMetadata(args: GetMetricMetadataArgs, opts?: pulumi.InvokeOptions): Promise<GetMetricMetadataResult>;
6
+ /**
7
+ * A collection of arguments for invoking getMetricMetadata.
8
+ */
9
+ export interface GetMetricMetadataArgs {
10
+ /**
11
+ * The metric for which to fetch metadata.
12
+ */
13
+ metricName: string;
14
+ }
15
+ /**
16
+ * A collection of values returned by getMetricMetadata.
17
+ */
18
+ export interface GetMetricMetadataResult {
19
+ /**
20
+ * The metric description.
21
+ */
22
+ readonly description: string;
23
+ /**
24
+ * The ID of this resource.
25
+ */
26
+ readonly id: string;
27
+ /**
28
+ * The metric integration.
29
+ */
30
+ readonly integration: string;
31
+ /**
32
+ * The metric for which to fetch metadata.
33
+ */
34
+ readonly metricName: string;
35
+ /**
36
+ * The per unit of the metric.
37
+ */
38
+ readonly perUnit: string;
39
+ /**
40
+ * The metric short name.
41
+ */
42
+ readonly shortName: string;
43
+ /**
44
+ * The metric statsd interval.
45
+ */
46
+ readonly statsdInterval: number;
47
+ /**
48
+ * The metric type.
49
+ */
50
+ readonly type: string;
51
+ /**
52
+ * The metric unit.
53
+ */
54
+ readonly unit: string;
55
+ }
56
+ /**
57
+ * Use this data source to retrieve metadata associated with a metric to use in other resources.
58
+ */
59
+ export declare function getMetricMetadataOutput(args: GetMetricMetadataOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMetricMetadataResult>;
60
+ /**
61
+ * A collection of arguments for invoking getMetricMetadata.
62
+ */
63
+ export interface GetMetricMetadataOutputArgs {
64
+ /**
65
+ * The metric for which to fetch metadata.
66
+ */
67
+ metricName: pulumi.Input<string>;
68
+ }
@@ -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.getMetricMetadataOutput = exports.getMetricMetadata = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Use this data source to retrieve metadata associated with a metric to use in other resources.
10
+ */
11
+ function getMetricMetadata(args, opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("datadog:index/getMetricMetadata:getMetricMetadata", {
14
+ "metricName": args.metricName,
15
+ }, opts);
16
+ }
17
+ exports.getMetricMetadata = getMetricMetadata;
18
+ /**
19
+ * Use this data source to retrieve metadata associated with a metric to use in other resources.
20
+ */
21
+ function getMetricMetadataOutput(args, opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invokeOutput("datadog:index/getMetricMetadata:getMetricMetadata", {
24
+ "metricName": args.metricName,
25
+ }, opts);
26
+ }
27
+ exports.getMetricMetadataOutput = getMetricMetadataOutput;
28
+ //# sourceMappingURL=getMetricMetadata.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getMetricMetadata.js","sourceRoot":"","sources":["../getMetricMetadata.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC;AAqDD;;GAEG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mDAAmD,EAAE;QACpF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC"}
@@ -1,6 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources.
3
+ * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources. This data source requires a registered application key.
4
4
  *
5
5
  * ## Example Usage
6
6
  *
@@ -53,7 +53,7 @@ export interface GetWorkflowAutomationResult {
53
53
  readonly tags: string[];
54
54
  }
55
55
  /**
56
- * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources.
56
+ * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources. This data source requires a registered application key.
57
57
  *
58
58
  * ## Example Usage
59
59
  *
@@ -6,7 +6,7 @@ exports.getWorkflowAutomationOutput = exports.getWorkflowAutomation = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources.
9
+ * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources. This data source requires a registered application key.
10
10
  *
11
11
  * ## Example Usage
12
12
  *
@@ -27,7 +27,7 @@ function getWorkflowAutomation(args, opts) {
27
27
  }
28
28
  exports.getWorkflowAutomation = getWorkflowAutomation;
29
29
  /**
30
- * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources.
30
+ * This data source retrieves the definition of an existing Datadog workflow from Workflow Automation for use in other resources. This data source requires a registered application key.
31
31
  *
32
32
  * ## Example Usage
33
33
  *
@@ -0,0 +1,97 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Provides a Datadog incident type resource. This can be used to create and manage Datadog incident types.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as datadog from "@pulumi/datadog";
10
+ *
11
+ * // Basic incident type
12
+ * const example = new datadog.IncidentType("example", {
13
+ * name: "Security Incident",
14
+ * description: "Security-related incidents requiring immediate attention",
15
+ * isDefault: false,
16
+ * });
17
+ * ```
18
+ *
19
+ * ## Import
20
+ *
21
+ * The `pulumi import` command can be used, for example:
22
+ *
23
+ * ```sh
24
+ * $ pulumi import datadog:index/incidentType:IncidentType example "12345678-1234-1234-1234-1234567890ab"
25
+ * ```
26
+ */
27
+ export declare class IncidentType extends pulumi.CustomResource {
28
+ /**
29
+ * Get an existing IncidentType resource's state with the given name, ID, and optional extra
30
+ * properties used to qualify the lookup.
31
+ *
32
+ * @param name The _unique_ name of the resulting resource.
33
+ * @param id The _unique_ provider ID of the resource to lookup.
34
+ * @param state Any extra arguments used during the lookup.
35
+ * @param opts Optional settings to control the behavior of the CustomResource.
36
+ */
37
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IncidentTypeState, opts?: pulumi.CustomResourceOptions): IncidentType;
38
+ /**
39
+ * Returns true if the given object is an instance of IncidentType. This is designed to work even
40
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
41
+ */
42
+ static isInstance(obj: any): obj is IncidentType;
43
+ /**
44
+ * Description of the incident type. The description can have a maximum of 512 characters.
45
+ */
46
+ readonly description: pulumi.Output<string | undefined>;
47
+ /**
48
+ * Whether this incident type is the default type.
49
+ */
50
+ readonly isDefault: pulumi.Output<boolean>;
51
+ /**
52
+ * Name of the incident type. Must be between 1 and 50 characters.
53
+ */
54
+ readonly name: pulumi.Output<string>;
55
+ /**
56
+ * Create a IncidentType resource with the given unique name, arguments, and options.
57
+ *
58
+ * @param name The _unique_ name of the resource.
59
+ * @param args The arguments to use to populate this resource's properties.
60
+ * @param opts A bag of options that control this resource's behavior.
61
+ */
62
+ constructor(name: string, args: IncidentTypeArgs, opts?: pulumi.CustomResourceOptions);
63
+ }
64
+ /**
65
+ * Input properties used for looking up and filtering IncidentType resources.
66
+ */
67
+ export interface IncidentTypeState {
68
+ /**
69
+ * Description of the incident type. The description can have a maximum of 512 characters.
70
+ */
71
+ description?: pulumi.Input<string>;
72
+ /**
73
+ * Whether this incident type is the default type.
74
+ */
75
+ isDefault?: pulumi.Input<boolean>;
76
+ /**
77
+ * Name of the incident type. Must be between 1 and 50 characters.
78
+ */
79
+ name?: pulumi.Input<string>;
80
+ }
81
+ /**
82
+ * The set of arguments for constructing a IncidentType resource.
83
+ */
84
+ export interface IncidentTypeArgs {
85
+ /**
86
+ * Description of the incident type. The description can have a maximum of 512 characters.
87
+ */
88
+ description?: pulumi.Input<string>;
89
+ /**
90
+ * Whether this incident type is the default type.
91
+ */
92
+ isDefault?: pulumi.Input<boolean>;
93
+ /**
94
+ * Name of the incident type. Must be between 1 and 50 characters.
95
+ */
96
+ name: pulumi.Input<string>;
97
+ }
@@ -0,0 +1,81 @@
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.IncidentType = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog incident type resource. This can be used to create and manage Datadog incident types.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datadog from "@pulumi/datadog";
16
+ *
17
+ * // Basic incident type
18
+ * const example = new datadog.IncidentType("example", {
19
+ * name: "Security Incident",
20
+ * description: "Security-related incidents requiring immediate attention",
21
+ * isDefault: false,
22
+ * });
23
+ * ```
24
+ *
25
+ * ## Import
26
+ *
27
+ * The `pulumi import` command can be used, for example:
28
+ *
29
+ * ```sh
30
+ * $ pulumi import datadog:index/incidentType:IncidentType example "12345678-1234-1234-1234-1234567890ab"
31
+ * ```
32
+ */
33
+ class IncidentType extends pulumi.CustomResource {
34
+ /**
35
+ * Get an existing IncidentType resource's state with the given name, ID, and optional extra
36
+ * properties used to qualify the lookup.
37
+ *
38
+ * @param name The _unique_ name of the resulting resource.
39
+ * @param id The _unique_ provider ID of the resource to lookup.
40
+ * @param state Any extra arguments used during the lookup.
41
+ * @param opts Optional settings to control the behavior of the CustomResource.
42
+ */
43
+ static get(name, id, state, opts) {
44
+ return new IncidentType(name, state, Object.assign(Object.assign({}, opts), { id: id }));
45
+ }
46
+ /**
47
+ * Returns true if the given object is an instance of IncidentType. This is designed to work even
48
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
49
+ */
50
+ static isInstance(obj) {
51
+ if (obj === undefined || obj === null) {
52
+ return false;
53
+ }
54
+ return obj['__pulumiType'] === IncidentType.__pulumiType;
55
+ }
56
+ constructor(name, argsOrState, opts) {
57
+ let resourceInputs = {};
58
+ opts = opts || {};
59
+ if (opts.id) {
60
+ const state = argsOrState;
61
+ resourceInputs["description"] = state ? state.description : undefined;
62
+ resourceInputs["isDefault"] = state ? state.isDefault : undefined;
63
+ resourceInputs["name"] = state ? state.name : undefined;
64
+ }
65
+ else {
66
+ const args = argsOrState;
67
+ if ((!args || args.name === undefined) && !opts.urn) {
68
+ throw new Error("Missing required property 'name'");
69
+ }
70
+ resourceInputs["description"] = args ? args.description : undefined;
71
+ resourceInputs["isDefault"] = args ? args.isDefault : undefined;
72
+ resourceInputs["name"] = args ? args.name : undefined;
73
+ }
74
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
75
+ super(IncidentType.__pulumiType, name, resourceInputs, opts);
76
+ }
77
+ }
78
+ exports.IncidentType = IncidentType;
79
+ /** @internal */
80
+ IncidentType.__pulumiType = 'datadog:index/incidentType:IncidentType';
81
+ //# sourceMappingURL=incidentType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"incidentType.js","sourceRoot":"","sources":["../incidentType.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AApEL,oCAqEC;AAvDG,gBAAgB;AACO,yBAAY,GAAG,yCAAyC,CAAC"}
package/index.d.ts CHANGED
@@ -1,6 +1,9 @@
1
1
  export { ActionConnectionArgs, ActionConnectionState } from "./actionConnection";
2
2
  export type ActionConnection = import("./actionConnection").ActionConnection;
3
3
  export declare const ActionConnection: typeof import("./actionConnection").ActionConnection;
4
+ export { AgentlessScanningAwsScanOptionsArgs, AgentlessScanningAwsScanOptionsState } from "./agentlessScanningAwsScanOptions";
5
+ export type AgentlessScanningAwsScanOptions = import("./agentlessScanningAwsScanOptions").AgentlessScanningAwsScanOptions;
6
+ export declare const AgentlessScanningAwsScanOptions: typeof import("./agentlessScanningAwsScanOptions").AgentlessScanningAwsScanOptions;
4
7
  export { ApiKeyArgs, ApiKeyState } from "./apiKey";
5
8
  export type ApiKey = import("./apiKey").ApiKey;
6
9
  export declare const ApiKey: typeof import("./apiKey").ApiKey;
@@ -13,6 +16,9 @@ export declare const ApmRetentionFilterOrder: typeof import("./apmRetentionFilte
13
16
  export { AppBuilderAppArgs, AppBuilderAppState } from "./appBuilderApp";
14
17
  export type AppBuilderApp = import("./appBuilderApp").AppBuilderApp;
15
18
  export declare const AppBuilderApp: typeof import("./appBuilderApp").AppBuilderApp;
19
+ export { AppKeyRegistrationArgs, AppKeyRegistrationState } from "./appKeyRegistration";
20
+ export type AppKeyRegistration = import("./appKeyRegistration").AppKeyRegistration;
21
+ export declare const AppKeyRegistration: typeof import("./appKeyRegistration").AppKeyRegistration;
16
22
  export { ApplicationKeyArgs, ApplicationKeyState } from "./applicationKey";
17
23
  export type ApplicationKey = import("./applicationKey").ApplicationKey;
18
24
  export declare const ApplicationKey: typeof import("./applicationKey").ApplicationKey;
@@ -103,6 +109,9 @@ export declare const getDashboardListOutput: typeof import("./getDashboardList")
103
109
  export { GetHostsArgs, GetHostsResult, GetHostsOutputArgs } from "./getHosts";
104
110
  export declare const getHosts: typeof import("./getHosts").getHosts;
105
111
  export declare const getHostsOutput: typeof import("./getHosts").getHostsOutput;
112
+ export { GetIncidentTypeArgs, GetIncidentTypeResult, GetIncidentTypeOutputArgs } from "./getIncidentType";
113
+ export declare const getIncidentType: typeof import("./getIncidentType").getIncidentType;
114
+ export declare const getIncidentTypeOutput: typeof import("./getIncidentType").getIncidentTypeOutput;
106
115
  export { GetIpRangesResult } from "./getIpRanges";
107
116
  export declare const getIpRanges: typeof import("./getIpRanges").getIpRanges;
108
117
  export declare const getIpRangesOutput: typeof import("./getIpRanges").getIpRangesOutput;
@@ -121,6 +130,9 @@ export declare const getLogsPipelinesOutput: typeof import("./getLogsPipelines")
121
130
  export { GetLogsPipelinesOrderResult } from "./getLogsPipelinesOrder";
122
131
  export declare const getLogsPipelinesOrder: typeof import("./getLogsPipelinesOrder").getLogsPipelinesOrder;
123
132
  export declare const getLogsPipelinesOrderOutput: typeof import("./getLogsPipelinesOrder").getLogsPipelinesOrderOutput;
133
+ export { GetMetricMetadataArgs, GetMetricMetadataResult, GetMetricMetadataOutputArgs } from "./getMetricMetadata";
134
+ export declare const getMetricMetadata: typeof import("./getMetricMetadata").getMetricMetadata;
135
+ export declare const getMetricMetadataOutput: typeof import("./getMetricMetadata").getMetricMetadataOutput;
124
136
  export { GetMetricTagsArgs, GetMetricTagsResult, GetMetricTagsOutputArgs } from "./getMetricTags";
125
137
  export declare const getMetricTags: typeof import("./getMetricTags").getMetricTags;
126
138
  export declare const getMetricTagsOutput: typeof import("./getMetricTags").getMetricTagsOutput;
@@ -208,6 +220,9 @@ export declare const getUsersOutput: typeof import("./getUsers").getUsersOutput;
208
220
  export { GetWorkflowAutomationArgs, GetWorkflowAutomationResult, GetWorkflowAutomationOutputArgs } from "./getWorkflowAutomation";
209
221
  export declare const getWorkflowAutomation: typeof import("./getWorkflowAutomation").getWorkflowAutomation;
210
222
  export declare const getWorkflowAutomationOutput: typeof import("./getWorkflowAutomation").getWorkflowAutomationOutput;
223
+ export { IncidentTypeArgs, IncidentTypeState } from "./incidentType";
224
+ export type IncidentType = import("./incidentType").IncidentType;
225
+ export declare const IncidentType: typeof import("./incidentType").IncidentType;
211
226
  export { IpAllowlistArgs, IpAllowlistState } from "./ipAllowlist";
212
227
  export type IpAllowlist = import("./ipAllowlist").IpAllowlist;
213
228
  export declare const IpAllowlist: typeof import("./ipAllowlist").IpAllowlist;
package/index.js CHANGED
@@ -16,14 +16,16 @@ 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.getLogsArchivesOrder = exports.getIpRangesOutput = exports.getIpRanges = exports.getHostsOutput = exports.getHosts = exports.getDashboardListOutput = exports.getDashboardList = exports.getDashboardOutput = exports.getDashboard = exports.getCsmThreatsPoliciesOutput = exports.getCsmThreatsPolicies = exports.getCsmThreatsAgentRulesOutput = exports.getCsmThreatsAgentRules = exports.getCostBudgetOutput = exports.getCostBudget = 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.CsmThreatsPolicy = exports.CsmThreatsAgentRule = exports.CostBudget = exports.ComplianceResourceEvaluationFilter = 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.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 = exports.getLogsPipelinesOutput = exports.getLogsPipelines = exports.getLogsIndexesOrderOutput = exports.getLogsIndexesOrder = exports.getLogsIndexesOutput = exports.getLogsIndexes = exports.getLogsArchivesOrderOutput = void 0;
21
- 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 = exports.getTeamOutput = exports.getTeam = exports.getSyntheticsTestOutput = exports.getSyntheticsTest = exports.getSyntheticsLocationsOutput = exports.getSyntheticsLocations = exports.getSyntheticsGlobalVariableOutput = 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 = exports.ServiceAccountApplicationKey = exports.ServiceAccount = exports.SensitiveDataScannerRule = exports.SensitiveDataScannerGroupOrder = exports.SensitiveDataScannerGroup = exports.SecurityNotificationRule = exports.SecurityMonitoringSuppression = void 0;
19
+ exports.getIncidentType = exports.getHostsOutput = exports.getHosts = exports.getDashboardListOutput = exports.getDashboardList = exports.getDashboardOutput = exports.getDashboard = exports.getCsmThreatsPoliciesOutput = exports.getCsmThreatsPolicies = exports.getCsmThreatsAgentRulesOutput = exports.getCsmThreatsAgentRules = exports.getCostBudgetOutput = exports.getCostBudget = 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.CsmThreatsPolicy = exports.CsmThreatsAgentRule = exports.CostBudget = exports.ComplianceResourceEvaluationFilter = exports.ComplianceCustomFramework = exports.CloudWorkloadSecurityAgentRule = exports.CloudConfigurationRule = exports.ChildOrganization = exports.AuthnMapping = exports.AppsecWafExclusionFilter = exports.AppsecWafCustomRule = exports.ApplicationKey = exports.AppKeyRegistration = exports.AppBuilderApp = exports.ApmRetentionFilterOrder = exports.ApmRetentionFilter = exports.ApiKey = exports.AgentlessScanningAwsScanOptions = exports.ActionConnection = void 0;
20
+ 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.getMetricMetadataOutput = exports.getMetricMetadata = 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 = void 0;
21
+ 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.IncidentType = 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.getSyntheticsTestOutput = exports.getSyntheticsTest = exports.getSyntheticsLocationsOutput = exports.getSyntheticsLocations = exports.getSyntheticsGlobalVariableOutput = exports.getSyntheticsGlobalVariable = exports.getSoftwareCatalogOutput = exports.getSoftwareCatalog = exports.getServiceLevelObjectivesOutput = exports.getServiceLevelObjectives = exports.getServiceLevelObjectiveOutput = 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 = 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 = void 0;
23
23
  const pulumi = require("@pulumi/pulumi");
24
24
  const utilities = require("./utilities");
25
25
  exports.ActionConnection = null;
26
26
  utilities.lazyLoad(exports, ["ActionConnection"], () => require("./actionConnection"));
27
+ exports.AgentlessScanningAwsScanOptions = null;
28
+ utilities.lazyLoad(exports, ["AgentlessScanningAwsScanOptions"], () => require("./agentlessScanningAwsScanOptions"));
27
29
  exports.ApiKey = null;
28
30
  utilities.lazyLoad(exports, ["ApiKey"], () => require("./apiKey"));
29
31
  exports.ApmRetentionFilter = null;
@@ -32,6 +34,8 @@ exports.ApmRetentionFilterOrder = null;
32
34
  utilities.lazyLoad(exports, ["ApmRetentionFilterOrder"], () => require("./apmRetentionFilterOrder"));
33
35
  exports.AppBuilderApp = null;
34
36
  utilities.lazyLoad(exports, ["AppBuilderApp"], () => require("./appBuilderApp"));
37
+ exports.AppKeyRegistration = null;
38
+ utilities.lazyLoad(exports, ["AppKeyRegistration"], () => require("./appKeyRegistration"));
35
39
  exports.ApplicationKey = null;
36
40
  utilities.lazyLoad(exports, ["ApplicationKey"], () => require("./applicationKey"));
37
41
  exports.AppsecWafCustomRule = null;
@@ -104,6 +108,9 @@ utilities.lazyLoad(exports, ["getDashboardList", "getDashboardListOutput"], () =
104
108
  exports.getHosts = null;
105
109
  exports.getHostsOutput = null;
106
110
  utilities.lazyLoad(exports, ["getHosts", "getHostsOutput"], () => require("./getHosts"));
111
+ exports.getIncidentType = null;
112
+ exports.getIncidentTypeOutput = null;
113
+ utilities.lazyLoad(exports, ["getIncidentType", "getIncidentTypeOutput"], () => require("./getIncidentType"));
107
114
  exports.getIpRanges = null;
108
115
  exports.getIpRangesOutput = null;
109
116
  utilities.lazyLoad(exports, ["getIpRanges", "getIpRangesOutput"], () => require("./getIpRanges"));
@@ -122,6 +129,9 @@ utilities.lazyLoad(exports, ["getLogsPipelines", "getLogsPipelinesOutput"], () =
122
129
  exports.getLogsPipelinesOrder = null;
123
130
  exports.getLogsPipelinesOrderOutput = null;
124
131
  utilities.lazyLoad(exports, ["getLogsPipelinesOrder", "getLogsPipelinesOrderOutput"], () => require("./getLogsPipelinesOrder"));
132
+ exports.getMetricMetadata = null;
133
+ exports.getMetricMetadataOutput = null;
134
+ utilities.lazyLoad(exports, ["getMetricMetadata", "getMetricMetadataOutput"], () => require("./getMetricMetadata"));
125
135
  exports.getMetricTags = null;
126
136
  exports.getMetricTagsOutput = null;
127
137
  utilities.lazyLoad(exports, ["getMetricTags", "getMetricTagsOutput"], () => require("./getMetricTags"));
@@ -209,6 +219,8 @@ utilities.lazyLoad(exports, ["getUsers", "getUsersOutput"], () => require("./get
209
219
  exports.getWorkflowAutomation = null;
210
220
  exports.getWorkflowAutomationOutput = null;
211
221
  utilities.lazyLoad(exports, ["getWorkflowAutomation", "getWorkflowAutomationOutput"], () => require("./getWorkflowAutomation"));
222
+ exports.IncidentType = null;
223
+ utilities.lazyLoad(exports, ["IncidentType"], () => require("./incidentType"));
212
224
  exports.IpAllowlist = null;
213
225
  utilities.lazyLoad(exports, ["IpAllowlist"], () => require("./ipAllowlist"));
214
226
  exports.LogsArchive = null;
@@ -358,6 +370,8 @@ const _module = {
358
370
  switch (type) {
359
371
  case "datadog:index/actionConnection:ActionConnection":
360
372
  return new exports.ActionConnection(name, undefined, { urn });
373
+ case "datadog:index/agentlessScanningAwsScanOptions:AgentlessScanningAwsScanOptions":
374
+ return new exports.AgentlessScanningAwsScanOptions(name, undefined, { urn });
361
375
  case "datadog:index/apiKey:ApiKey":
362
376
  return new exports.ApiKey(name, undefined, { urn });
363
377
  case "datadog:index/apmRetentionFilter:ApmRetentionFilter":
@@ -366,6 +380,8 @@ const _module = {
366
380
  return new exports.ApmRetentionFilterOrder(name, undefined, { urn });
367
381
  case "datadog:index/appBuilderApp:AppBuilderApp":
368
382
  return new exports.AppBuilderApp(name, undefined, { urn });
383
+ case "datadog:index/appKeyRegistration:AppKeyRegistration":
384
+ return new exports.AppKeyRegistration(name, undefined, { urn });
369
385
  case "datadog:index/applicationKey:ApplicationKey":
370
386
  return new exports.ApplicationKey(name, undefined, { urn });
371
387
  case "datadog:index/appsecWafCustomRule:AppsecWafCustomRule":
@@ -402,6 +418,8 @@ const _module = {
402
418
  return new exports.Downtime(name, undefined, { urn });
403
419
  case "datadog:index/downtimeSchedule:DowntimeSchedule":
404
420
  return new exports.DowntimeSchedule(name, undefined, { urn });
421
+ case "datadog:index/incidentType:IncidentType":
422
+ return new exports.IncidentType(name, undefined, { urn });
405
423
  case "datadog:index/ipAllowlist:IpAllowlist":
406
424
  return new exports.IpAllowlist(name, undefined, { urn });
407
425
  case "datadog:index/logsArchive:LogsArchive":
@@ -524,10 +542,12 @@ const _module = {
524
542
  },
525
543
  };
526
544
  pulumi.runtime.registerResourceModule("datadog", "index/actionConnection", _module);
545
+ pulumi.runtime.registerResourceModule("datadog", "index/agentlessScanningAwsScanOptions", _module);
527
546
  pulumi.runtime.registerResourceModule("datadog", "index/apiKey", _module);
528
547
  pulumi.runtime.registerResourceModule("datadog", "index/apmRetentionFilter", _module);
529
548
  pulumi.runtime.registerResourceModule("datadog", "index/apmRetentionFilterOrder", _module);
530
549
  pulumi.runtime.registerResourceModule("datadog", "index/appBuilderApp", _module);
550
+ pulumi.runtime.registerResourceModule("datadog", "index/appKeyRegistration", _module);
531
551
  pulumi.runtime.registerResourceModule("datadog", "index/applicationKey", _module);
532
552
  pulumi.runtime.registerResourceModule("datadog", "index/appsecWafCustomRule", _module);
533
553
  pulumi.runtime.registerResourceModule("datadog", "index/appsecWafExclusionFilter", _module);
@@ -546,6 +566,7 @@ pulumi.runtime.registerResourceModule("datadog", "index/dashboardList", _module)
546
566
  pulumi.runtime.registerResourceModule("datadog", "index/domainAllowlist", _module);
547
567
  pulumi.runtime.registerResourceModule("datadog", "index/downtime", _module);
548
568
  pulumi.runtime.registerResourceModule("datadog", "index/downtimeSchedule", _module);
569
+ pulumi.runtime.registerResourceModule("datadog", "index/incidentType", _module);
549
570
  pulumi.runtime.registerResourceModule("datadog", "index/ipAllowlist", _module);
550
571
  pulumi.runtime.registerResourceModule("datadog", "index/logsArchive", _module);
551
572
  pulumi.runtime.registerResourceModule("datadog", "index/logsArchiveOrder", _module);