@pulumi/datadog 4.47.0-alpha.1742276236 → 4.47.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,122 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Provides a Datadog AppsecWafCustomRule resource. This can be used to create and manage Datadog appsec_waf_custom_rule.
6
+ *
7
+ * ## Import
8
+ *
9
+ * ```sh
10
+ * $ pulumi import datadog:index/appsecWafCustomRule:AppsecWafCustomRule new_list ""
11
+ * ```
12
+ */
13
+ export declare class AppsecWafCustomRule extends pulumi.CustomResource {
14
+ /**
15
+ * Get an existing AppsecWafCustomRule resource's state with the given name, ID, and optional extra
16
+ * properties used to qualify the lookup.
17
+ *
18
+ * @param name The _unique_ name of the resulting resource.
19
+ * @param id The _unique_ provider ID of the resource to lookup.
20
+ * @param state Any extra arguments used during the lookup.
21
+ * @param opts Optional settings to control the behavior of the CustomResource.
22
+ */
23
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AppsecWafCustomRuleState, opts?: pulumi.CustomResourceOptions): AppsecWafCustomRule;
24
+ /**
25
+ * Returns true if the given object is an instance of AppsecWafCustomRule. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj: any): obj is AppsecWafCustomRule;
29
+ readonly action: pulumi.Output<outputs.AppsecWafCustomRuleAction | undefined>;
30
+ /**
31
+ * Indicates whether the WAF custom rule will block the request.
32
+ */
33
+ readonly blocking: pulumi.Output<boolean>;
34
+ readonly conditions: pulumi.Output<outputs.AppsecWafCustomRuleCondition[] | undefined>;
35
+ /**
36
+ * Indicates whether the WAF custom rule is enabled.
37
+ */
38
+ readonly enabled: pulumi.Output<boolean>;
39
+ /**
40
+ * The Name of the WAF custom rule.
41
+ */
42
+ readonly name: pulumi.Output<string>;
43
+ /**
44
+ * The path glob for the WAF custom rule.
45
+ */
46
+ readonly pathGlob: pulumi.Output<string | undefined>;
47
+ readonly scopes: pulumi.Output<outputs.AppsecWafCustomRuleScope[] | undefined>;
48
+ /**
49
+ * Tags associated with the WAF custom rule. `category` and `type` tags are required. Supported categories include `businessLogic`, `attackAttempt` and `securityResponse`.
50
+ */
51
+ readonly tags: pulumi.Output<{
52
+ [key: string]: string;
53
+ }>;
54
+ /**
55
+ * Create a AppsecWafCustomRule resource with the given unique name, arguments, and options.
56
+ *
57
+ * @param name The _unique_ name of the resource.
58
+ * @param args The arguments to use to populate this resource's properties.
59
+ * @param opts A bag of options that control this resource's behavior.
60
+ */
61
+ constructor(name: string, args: AppsecWafCustomRuleArgs, opts?: pulumi.CustomResourceOptions);
62
+ }
63
+ /**
64
+ * Input properties used for looking up and filtering AppsecWafCustomRule resources.
65
+ */
66
+ export interface AppsecWafCustomRuleState {
67
+ action?: pulumi.Input<inputs.AppsecWafCustomRuleAction>;
68
+ /**
69
+ * Indicates whether the WAF custom rule will block the request.
70
+ */
71
+ blocking?: pulumi.Input<boolean>;
72
+ conditions?: pulumi.Input<pulumi.Input<inputs.AppsecWafCustomRuleCondition>[]>;
73
+ /**
74
+ * Indicates whether the WAF custom rule is enabled.
75
+ */
76
+ enabled?: pulumi.Input<boolean>;
77
+ /**
78
+ * The Name of the WAF custom rule.
79
+ */
80
+ name?: pulumi.Input<string>;
81
+ /**
82
+ * The path glob for the WAF custom rule.
83
+ */
84
+ pathGlob?: pulumi.Input<string>;
85
+ scopes?: pulumi.Input<pulumi.Input<inputs.AppsecWafCustomRuleScope>[]>;
86
+ /**
87
+ * Tags associated with the WAF custom rule. `category` and `type` tags are required. Supported categories include `businessLogic`, `attackAttempt` and `securityResponse`.
88
+ */
89
+ tags?: pulumi.Input<{
90
+ [key: string]: pulumi.Input<string>;
91
+ }>;
92
+ }
93
+ /**
94
+ * The set of arguments for constructing a AppsecWafCustomRule resource.
95
+ */
96
+ export interface AppsecWafCustomRuleArgs {
97
+ action?: pulumi.Input<inputs.AppsecWafCustomRuleAction>;
98
+ /**
99
+ * Indicates whether the WAF custom rule will block the request.
100
+ */
101
+ blocking: pulumi.Input<boolean>;
102
+ conditions?: pulumi.Input<pulumi.Input<inputs.AppsecWafCustomRuleCondition>[]>;
103
+ /**
104
+ * Indicates whether the WAF custom rule is enabled.
105
+ */
106
+ enabled: pulumi.Input<boolean>;
107
+ /**
108
+ * The Name of the WAF custom rule.
109
+ */
110
+ name: pulumi.Input<string>;
111
+ /**
112
+ * The path glob for the WAF custom rule.
113
+ */
114
+ pathGlob?: pulumi.Input<string>;
115
+ scopes?: pulumi.Input<pulumi.Input<inputs.AppsecWafCustomRuleScope>[]>;
116
+ /**
117
+ * Tags associated with the WAF custom rule. `category` and `type` tags are required. Supported categories include `businessLogic`, `attackAttempt` and `securityResponse`.
118
+ */
119
+ tags: pulumi.Input<{
120
+ [key: string]: pulumi.Input<string>;
121
+ }>;
122
+ }
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.AppsecWafCustomRule = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog AppsecWafCustomRule resource. This can be used to create and manage Datadog appsec_waf_custom_rule.
10
+ *
11
+ * ## Import
12
+ *
13
+ * ```sh
14
+ * $ pulumi import datadog:index/appsecWafCustomRule:AppsecWafCustomRule new_list ""
15
+ * ```
16
+ */
17
+ class AppsecWafCustomRule extends pulumi.CustomResource {
18
+ /**
19
+ * Get an existing AppsecWafCustomRule resource's state with the given name, ID, and optional extra
20
+ * properties used to qualify the lookup.
21
+ *
22
+ * @param name The _unique_ name of the resulting resource.
23
+ * @param id The _unique_ provider ID of the resource to lookup.
24
+ * @param state Any extra arguments used during the lookup.
25
+ * @param opts Optional settings to control the behavior of the CustomResource.
26
+ */
27
+ static get(name, id, state, opts) {
28
+ return new AppsecWafCustomRule(name, state, Object.assign(Object.assign({}, opts), { id: id }));
29
+ }
30
+ /**
31
+ * Returns true if the given object is an instance of AppsecWafCustomRule. This is designed to work even
32
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
33
+ */
34
+ static isInstance(obj) {
35
+ if (obj === undefined || obj === null) {
36
+ return false;
37
+ }
38
+ return obj['__pulumiType'] === AppsecWafCustomRule.__pulumiType;
39
+ }
40
+ constructor(name, argsOrState, opts) {
41
+ let resourceInputs = {};
42
+ opts = opts || {};
43
+ if (opts.id) {
44
+ const state = argsOrState;
45
+ resourceInputs["action"] = state ? state.action : undefined;
46
+ resourceInputs["blocking"] = state ? state.blocking : undefined;
47
+ resourceInputs["conditions"] = state ? state.conditions : undefined;
48
+ resourceInputs["enabled"] = state ? state.enabled : undefined;
49
+ resourceInputs["name"] = state ? state.name : undefined;
50
+ resourceInputs["pathGlob"] = state ? state.pathGlob : undefined;
51
+ resourceInputs["scopes"] = state ? state.scopes : undefined;
52
+ resourceInputs["tags"] = state ? state.tags : undefined;
53
+ }
54
+ else {
55
+ const args = argsOrState;
56
+ if ((!args || args.blocking === undefined) && !opts.urn) {
57
+ throw new Error("Missing required property 'blocking'");
58
+ }
59
+ if ((!args || args.enabled === undefined) && !opts.urn) {
60
+ throw new Error("Missing required property 'enabled'");
61
+ }
62
+ if ((!args || args.name === undefined) && !opts.urn) {
63
+ throw new Error("Missing required property 'name'");
64
+ }
65
+ if ((!args || args.tags === undefined) && !opts.urn) {
66
+ throw new Error("Missing required property 'tags'");
67
+ }
68
+ resourceInputs["action"] = args ? args.action : undefined;
69
+ resourceInputs["blocking"] = args ? args.blocking : undefined;
70
+ resourceInputs["conditions"] = args ? args.conditions : undefined;
71
+ resourceInputs["enabled"] = args ? args.enabled : undefined;
72
+ resourceInputs["name"] = args ? args.name : undefined;
73
+ resourceInputs["pathGlob"] = args ? args.pathGlob : undefined;
74
+ resourceInputs["scopes"] = args ? args.scopes : undefined;
75
+ resourceInputs["tags"] = args ? args.tags : undefined;
76
+ }
77
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
78
+ super(AppsecWafCustomRule.__pulumiType, name, resourceInputs, opts);
79
+ }
80
+ }
81
+ exports.AppsecWafCustomRule = AppsecWafCustomRule;
82
+ /** @internal */
83
+ AppsecWafCustomRule.__pulumiType = 'datadog:index/appsecWafCustomRule:AppsecWafCustomRule';
84
+ //# sourceMappingURL=appsecWafCustomRule.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appsecWafCustomRule.js","sourceRoot":"","sources":["../appsecWafCustomRule.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,168 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Provides a Datadog AppsecWafExclusionFilter resource. This can be used to create and manage Datadog appsec_waf_exclusion_filter.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as datadog from "@pulumi/datadog";
12
+ *
13
+ * // Create a WAF exclusion filter on a path
14
+ * const excludeOnPath = new datadog.index.AppsecExclusionFilter("exclude_on_path", {
15
+ * description: "Exclude false positives on a path",
16
+ * enabled: true,
17
+ * pathGlob: "/accounts/*",
18
+ * rulesTarget: [{
19
+ * tags: [{
20
+ * category: "attack_attempt",
21
+ * type: "lfi",
22
+ * }],
23
+ * }],
24
+ * scope: [{
25
+ * env: "www",
26
+ * service: "prod",
27
+ * }],
28
+ * });
29
+ * // Create a WAF exclusion filter for trusted IPs
30
+ * const trustedIps = new datadog.index.AppsecExclusionFilter("trusted_ips", {
31
+ * description: "Do not block office IP network",
32
+ * enabled: true,
33
+ * ipList: ["198.10.14.53/24"],
34
+ * onMatch: "monitor",
35
+ * });
36
+ * ```
37
+ *
38
+ * ## Import
39
+ *
40
+ * ```sh
41
+ * $ pulumi import datadog:index/appsecWafExclusionFilter:AppsecWafExclusionFilter passlist_entry "45b7032f-0ac4-4b2f-9118-363523c625f6"
42
+ * ```
43
+ */
44
+ export declare class AppsecWafExclusionFilter extends pulumi.CustomResource {
45
+ /**
46
+ * Get an existing AppsecWafExclusionFilter resource's state with the given name, ID, and optional extra
47
+ * properties used to qualify the lookup.
48
+ *
49
+ * @param name The _unique_ name of the resulting resource.
50
+ * @param id The _unique_ provider ID of the resource to lookup.
51
+ * @param state Any extra arguments used during the lookup.
52
+ * @param opts Optional settings to control the behavior of the CustomResource.
53
+ */
54
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AppsecWafExclusionFilterState, opts?: pulumi.CustomResourceOptions): AppsecWafExclusionFilter;
55
+ /**
56
+ * Returns true if the given object is an instance of AppsecWafExclusionFilter. This is designed to work even
57
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
58
+ */
59
+ static isInstance(obj: any): obj is AppsecWafExclusionFilter;
60
+ /**
61
+ * A description for the exclusion filter.
62
+ */
63
+ readonly description: pulumi.Output<string>;
64
+ /**
65
+ * Indicates whether the exclusion filter is enabled.
66
+ */
67
+ readonly enabled: pulumi.Output<boolean>;
68
+ /**
69
+ * The event query matched by the legacy exclusion filter. Cannot be created nor updated.
70
+ */
71
+ readonly eventQuery: pulumi.Output<string | undefined>;
72
+ /**
73
+ * The client IP addresses matched by the exclusion filter (CIDR notation is supported).
74
+ */
75
+ readonly ipLists: pulumi.Output<string[] | undefined>;
76
+ /**
77
+ * The action taken when the exclusion filter matches. When set to `monitor`, security traces are emitted but the requests are not blocked. By default, security traces are not emitted and the requests are not blocked.
78
+ */
79
+ readonly onMatch: pulumi.Output<string | undefined>;
80
+ /**
81
+ * A list of parameters matched by the exclusion filter in the HTTP query string and HTTP request body. Nested parameters can be matched by joining fields with a dot character.
82
+ */
83
+ readonly parameters: pulumi.Output<string[] | undefined>;
84
+ /**
85
+ * The HTTP path glob expression matched by the exclusion filter.
86
+ */
87
+ readonly pathGlob: pulumi.Output<string | undefined>;
88
+ readonly rulesTargets: pulumi.Output<outputs.AppsecWafExclusionFilterRulesTarget[] | undefined>;
89
+ readonly scopes: pulumi.Output<outputs.AppsecWafExclusionFilterScope[] | undefined>;
90
+ /**
91
+ * Create a AppsecWafExclusionFilter resource with the given unique name, arguments, and options.
92
+ *
93
+ * @param name The _unique_ name of the resource.
94
+ * @param args The arguments to use to populate this resource's properties.
95
+ * @param opts A bag of options that control this resource's behavior.
96
+ */
97
+ constructor(name: string, args: AppsecWafExclusionFilterArgs, opts?: pulumi.CustomResourceOptions);
98
+ }
99
+ /**
100
+ * Input properties used for looking up and filtering AppsecWafExclusionFilter resources.
101
+ */
102
+ export interface AppsecWafExclusionFilterState {
103
+ /**
104
+ * A description for the exclusion filter.
105
+ */
106
+ description?: pulumi.Input<string>;
107
+ /**
108
+ * Indicates whether the exclusion filter is enabled.
109
+ */
110
+ enabled?: pulumi.Input<boolean>;
111
+ /**
112
+ * The event query matched by the legacy exclusion filter. Cannot be created nor updated.
113
+ */
114
+ eventQuery?: pulumi.Input<string>;
115
+ /**
116
+ * The client IP addresses matched by the exclusion filter (CIDR notation is supported).
117
+ */
118
+ ipLists?: pulumi.Input<pulumi.Input<string>[]>;
119
+ /**
120
+ * The action taken when the exclusion filter matches. When set to `monitor`, security traces are emitted but the requests are not blocked. By default, security traces are not emitted and the requests are not blocked.
121
+ */
122
+ onMatch?: pulumi.Input<string>;
123
+ /**
124
+ * A list of parameters matched by the exclusion filter in the HTTP query string and HTTP request body. Nested parameters can be matched by joining fields with a dot character.
125
+ */
126
+ parameters?: pulumi.Input<pulumi.Input<string>[]>;
127
+ /**
128
+ * The HTTP path glob expression matched by the exclusion filter.
129
+ */
130
+ pathGlob?: pulumi.Input<string>;
131
+ rulesTargets?: pulumi.Input<pulumi.Input<inputs.AppsecWafExclusionFilterRulesTarget>[]>;
132
+ scopes?: pulumi.Input<pulumi.Input<inputs.AppsecWafExclusionFilterScope>[]>;
133
+ }
134
+ /**
135
+ * The set of arguments for constructing a AppsecWafExclusionFilter resource.
136
+ */
137
+ export interface AppsecWafExclusionFilterArgs {
138
+ /**
139
+ * A description for the exclusion filter.
140
+ */
141
+ description: pulumi.Input<string>;
142
+ /**
143
+ * Indicates whether the exclusion filter is enabled.
144
+ */
145
+ enabled: pulumi.Input<boolean>;
146
+ /**
147
+ * The event query matched by the legacy exclusion filter. Cannot be created nor updated.
148
+ */
149
+ eventQuery?: pulumi.Input<string>;
150
+ /**
151
+ * The client IP addresses matched by the exclusion filter (CIDR notation is supported).
152
+ */
153
+ ipLists?: pulumi.Input<pulumi.Input<string>[]>;
154
+ /**
155
+ * The action taken when the exclusion filter matches. When set to `monitor`, security traces are emitted but the requests are not blocked. By default, security traces are not emitted and the requests are not blocked.
156
+ */
157
+ onMatch?: pulumi.Input<string>;
158
+ /**
159
+ * A list of parameters matched by the exclusion filter in the HTTP query string and HTTP request body. Nested parameters can be matched by joining fields with a dot character.
160
+ */
161
+ parameters?: pulumi.Input<pulumi.Input<string>[]>;
162
+ /**
163
+ * The HTTP path glob expression matched by the exclusion filter.
164
+ */
165
+ pathGlob?: pulumi.Input<string>;
166
+ rulesTargets?: pulumi.Input<pulumi.Input<inputs.AppsecWafExclusionFilterRulesTarget>[]>;
167
+ scopes?: pulumi.Input<pulumi.Input<inputs.AppsecWafExclusionFilterScope>[]>;
168
+ }
@@ -0,0 +1,111 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.AppsecWafExclusionFilter = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog AppsecWafExclusionFilter resource. This can be used to create and manage Datadog appsec_waf_exclusion_filter.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datadog from "@pulumi/datadog";
16
+ *
17
+ * // Create a WAF exclusion filter on a path
18
+ * const excludeOnPath = new datadog.index.AppsecExclusionFilter("exclude_on_path", {
19
+ * description: "Exclude false positives on a path",
20
+ * enabled: true,
21
+ * pathGlob: "/accounts/*",
22
+ * rulesTarget: [{
23
+ * tags: [{
24
+ * category: "attack_attempt",
25
+ * type: "lfi",
26
+ * }],
27
+ * }],
28
+ * scope: [{
29
+ * env: "www",
30
+ * service: "prod",
31
+ * }],
32
+ * });
33
+ * // Create a WAF exclusion filter for trusted IPs
34
+ * const trustedIps = new datadog.index.AppsecExclusionFilter("trusted_ips", {
35
+ * description: "Do not block office IP network",
36
+ * enabled: true,
37
+ * ipList: ["198.10.14.53/24"],
38
+ * onMatch: "monitor",
39
+ * });
40
+ * ```
41
+ *
42
+ * ## Import
43
+ *
44
+ * ```sh
45
+ * $ pulumi import datadog:index/appsecWafExclusionFilter:AppsecWafExclusionFilter passlist_entry "45b7032f-0ac4-4b2f-9118-363523c625f6"
46
+ * ```
47
+ */
48
+ class AppsecWafExclusionFilter extends pulumi.CustomResource {
49
+ /**
50
+ * Get an existing AppsecWafExclusionFilter resource's state with the given name, ID, and optional extra
51
+ * properties used to qualify the lookup.
52
+ *
53
+ * @param name The _unique_ name of the resulting resource.
54
+ * @param id The _unique_ provider ID of the resource to lookup.
55
+ * @param state Any extra arguments used during the lookup.
56
+ * @param opts Optional settings to control the behavior of the CustomResource.
57
+ */
58
+ static get(name, id, state, opts) {
59
+ return new AppsecWafExclusionFilter(name, state, Object.assign(Object.assign({}, opts), { id: id }));
60
+ }
61
+ /**
62
+ * Returns true if the given object is an instance of AppsecWafExclusionFilter. This is designed to work even
63
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
64
+ */
65
+ static isInstance(obj) {
66
+ if (obj === undefined || obj === null) {
67
+ return false;
68
+ }
69
+ return obj['__pulumiType'] === AppsecWafExclusionFilter.__pulumiType;
70
+ }
71
+ constructor(name, argsOrState, opts) {
72
+ let resourceInputs = {};
73
+ opts = opts || {};
74
+ if (opts.id) {
75
+ const state = argsOrState;
76
+ resourceInputs["description"] = state ? state.description : undefined;
77
+ resourceInputs["enabled"] = state ? state.enabled : undefined;
78
+ resourceInputs["eventQuery"] = state ? state.eventQuery : undefined;
79
+ resourceInputs["ipLists"] = state ? state.ipLists : undefined;
80
+ resourceInputs["onMatch"] = state ? state.onMatch : undefined;
81
+ resourceInputs["parameters"] = state ? state.parameters : undefined;
82
+ resourceInputs["pathGlob"] = state ? state.pathGlob : undefined;
83
+ resourceInputs["rulesTargets"] = state ? state.rulesTargets : undefined;
84
+ resourceInputs["scopes"] = state ? state.scopes : undefined;
85
+ }
86
+ else {
87
+ const args = argsOrState;
88
+ if ((!args || args.description === undefined) && !opts.urn) {
89
+ throw new Error("Missing required property 'description'");
90
+ }
91
+ if ((!args || args.enabled === undefined) && !opts.urn) {
92
+ throw new Error("Missing required property 'enabled'");
93
+ }
94
+ resourceInputs["description"] = args ? args.description : undefined;
95
+ resourceInputs["enabled"] = args ? args.enabled : undefined;
96
+ resourceInputs["eventQuery"] = args ? args.eventQuery : undefined;
97
+ resourceInputs["ipLists"] = args ? args.ipLists : undefined;
98
+ resourceInputs["onMatch"] = args ? args.onMatch : undefined;
99
+ resourceInputs["parameters"] = args ? args.parameters : undefined;
100
+ resourceInputs["pathGlob"] = args ? args.pathGlob : undefined;
101
+ resourceInputs["rulesTargets"] = args ? args.rulesTargets : undefined;
102
+ resourceInputs["scopes"] = args ? args.scopes : undefined;
103
+ }
104
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
105
+ super(AppsecWafExclusionFilter.__pulumiType, name, resourceInputs, opts);
106
+ }
107
+ }
108
+ exports.AppsecWafExclusionFilter = AppsecWafExclusionFilter;
109
+ /** @internal */
110
+ AppsecWafExclusionFilter.__pulumiType = 'datadog:index/appsecWafExclusionFilter:AppsecWafExclusionFilter';
111
+ //# sourceMappingURL=appsecWafExclusionFilter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appsecWafExclusionFilter.js","sourceRoot":"","sources":["../appsecWafExclusionFilter.ts"],"names":[],"mappings":"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"}
package/aws/index.d.ts CHANGED
@@ -19,6 +19,9 @@ export declare const IntegrationAccount: typeof import("./integrationAccount").I
19
19
  export { IntegrationEventBridgeArgs, IntegrationEventBridgeState } from "./integrationEventBridge";
20
20
  export type IntegrationEventBridge = import("./integrationEventBridge").IntegrationEventBridge;
21
21
  export declare const IntegrationEventBridge: typeof import("./integrationEventBridge").IntegrationEventBridge;
22
+ export { IntegrationExternalIdArgs, IntegrationExternalIdState } from "./integrationExternalId";
23
+ export type IntegrationExternalId = import("./integrationExternalId").IntegrationExternalId;
24
+ export declare const IntegrationExternalId: typeof import("./integrationExternalId").IntegrationExternalId;
22
25
  export { IntegrationLambdaArnArgs, IntegrationLambdaArnState } from "./integrationLambdaArn";
23
26
  export type IntegrationLambdaArn = import("./integrationLambdaArn").IntegrationLambdaArn;
24
27
  export declare const IntegrationLambdaArn: typeof import("./integrationLambdaArn").IntegrationLambdaArn;
package/aws/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.IntegrationTagFilter = exports.IntegrationLogCollection = exports.IntegrationLambdaArn = exports.IntegrationEventBridge = exports.IntegrationAccount = exports.Integration = exports.getIntegrationNamespaceRulesOutput = exports.getIntegrationNamespaceRules = exports.getIntegrationLogsServicesOutput = exports.getIntegrationLogsServices = exports.getIntegrationAvailableNamespacesOutput = exports.getIntegrationAvailableNamespaces = exports.getIntegrationAvailableLogsServicesOutput = exports.getIntegrationAvailableLogsServices = void 0;
5
+ exports.IntegrationTagFilter = exports.IntegrationLogCollection = exports.IntegrationLambdaArn = exports.IntegrationExternalId = exports.IntegrationEventBridge = exports.IntegrationAccount = exports.Integration = exports.getIntegrationNamespaceRulesOutput = exports.getIntegrationNamespaceRules = exports.getIntegrationLogsServicesOutput = exports.getIntegrationLogsServices = exports.getIntegrationAvailableNamespacesOutput = exports.getIntegrationAvailableNamespaces = exports.getIntegrationAvailableLogsServicesOutput = exports.getIntegrationAvailableLogsServices = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.getIntegrationAvailableLogsServices = null;
@@ -23,6 +23,8 @@ exports.IntegrationAccount = null;
23
23
  utilities.lazyLoad(exports, ["IntegrationAccount"], () => require("./integrationAccount"));
24
24
  exports.IntegrationEventBridge = null;
25
25
  utilities.lazyLoad(exports, ["IntegrationEventBridge"], () => require("./integrationEventBridge"));
26
+ exports.IntegrationExternalId = null;
27
+ utilities.lazyLoad(exports, ["IntegrationExternalId"], () => require("./integrationExternalId"));
26
28
  exports.IntegrationLambdaArn = null;
27
29
  utilities.lazyLoad(exports, ["IntegrationLambdaArn"], () => require("./integrationLambdaArn"));
28
30
  exports.IntegrationLogCollection = null;
@@ -39,6 +41,8 @@ const _module = {
39
41
  return new exports.IntegrationAccount(name, undefined, { urn });
40
42
  case "datadog:aws/integrationEventBridge:IntegrationEventBridge":
41
43
  return new exports.IntegrationEventBridge(name, undefined, { urn });
44
+ case "datadog:aws/integrationExternalId:IntegrationExternalId":
45
+ return new exports.IntegrationExternalId(name, undefined, { urn });
42
46
  case "datadog:aws/integrationLambdaArn:IntegrationLambdaArn":
43
47
  return new exports.IntegrationLambdaArn(name, undefined, { urn });
44
48
  case "datadog:aws/integrationLogCollection:IntegrationLogCollection":
@@ -53,6 +57,7 @@ const _module = {
53
57
  pulumi.runtime.registerResourceModule("datadog", "aws/integration", _module);
54
58
  pulumi.runtime.registerResourceModule("datadog", "aws/integrationAccount", _module);
55
59
  pulumi.runtime.registerResourceModule("datadog", "aws/integrationEventBridge", _module);
60
+ pulumi.runtime.registerResourceModule("datadog", "aws/integrationExternalId", _module);
56
61
  pulumi.runtime.registerResourceModule("datadog", "aws/integrationLambdaArn", _module);
57
62
  pulumi.runtime.registerResourceModule("datadog", "aws/integrationLogCollection", _module);
58
63
  pulumi.runtime.registerResourceModule("datadog", "aws/integrationTagFilter", _module);
package/aws/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../aws/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../aws/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,55 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * ## Example Usage
4
+ *
5
+ * ```typescript
6
+ * import * as pulumi from "@pulumi/pulumi";
7
+ * import * as datadog from "@pulumi/datadog";
8
+ *
9
+ * // Create new integration_aws_external_id resource
10
+ * const foo = new datadog.aws.IntegrationExternalId("foo", {});
11
+ * ```
12
+ *
13
+ * ## Import
14
+ *
15
+ * Amazon Web Services external IDs can be imported using the ID value.
16
+ *
17
+ * ```sh
18
+ * $ pulumi import datadog:aws/integrationExternalId:IntegrationExternalId foo ${id}
19
+ * ```
20
+ */
21
+ export declare class IntegrationExternalId extends pulumi.CustomResource {
22
+ /**
23
+ * Get an existing IntegrationExternalId resource's state with the given name, ID, and optional extra
24
+ * properties used to qualify the lookup.
25
+ *
26
+ * @param name The _unique_ name of the resulting resource.
27
+ * @param id The _unique_ provider ID of the resource to lookup.
28
+ * @param state Any extra arguments used during the lookup.
29
+ * @param opts Optional settings to control the behavior of the CustomResource.
30
+ */
31
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IntegrationExternalIdState, opts?: pulumi.CustomResourceOptions): IntegrationExternalId;
32
+ /**
33
+ * Returns true if the given object is an instance of IntegrationExternalId. This is designed to work even
34
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
35
+ */
36
+ static isInstance(obj: any): obj is IntegrationExternalId;
37
+ /**
38
+ * Create a IntegrationExternalId resource with the given unique name, arguments, and options.
39
+ *
40
+ * @param name The _unique_ name of the resource.
41
+ * @param args The arguments to use to populate this resource's properties.
42
+ * @param opts A bag of options that control this resource's behavior.
43
+ */
44
+ constructor(name: string, args?: IntegrationExternalIdArgs, opts?: pulumi.CustomResourceOptions);
45
+ }
46
+ /**
47
+ * Input properties used for looking up and filtering IntegrationExternalId resources.
48
+ */
49
+ export interface IntegrationExternalIdState {
50
+ }
51
+ /**
52
+ * The set of arguments for constructing a IntegrationExternalId resource.
53
+ */
54
+ export interface IntegrationExternalIdArgs {
55
+ }