@pulumi/datadog 4.45.0-alpha.1740029909 → 4.45.0-alpha.1740540330
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/apiKey.d.ts +3 -3
- package/config/vars.d.ts +2 -2
- package/getUser.d.ts +40 -0
- package/getUser.js.map +1 -1
- package/logsCustomPipeline.d.ts +1 -1
- package/openapiApi.d.ts +1 -1
- package/openapiApi.js +1 -1
- package/package.json +2 -2
- package/provider.d.ts +2 -2
- package/securityNotificationRule.d.ts +3 -3
- package/syntheticsGlobalVariable.d.ts +20 -8
- package/syntheticsGlobalVariable.js +2 -3
- package/syntheticsGlobalVariable.js.map +1 -1
- package/types/input.d.ts +792 -28
- package/types/output.d.ts +793 -29
package/apiKey.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare class ApiKey extends pulumi.CustomResource {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly name: pulumi.Output<string>;
|
|
45
45
|
/**
|
|
46
|
-
* Whether the API key is used for remote config.
|
|
46
|
+
* Whether the API key is used for remote config. Set to true only if remote config is enabled in `/organization-settings/remote-config`.
|
|
47
47
|
*/
|
|
48
48
|
readonly remoteConfigReadEnabled: pulumi.Output<boolean>;
|
|
49
49
|
/**
|
|
@@ -68,7 +68,7 @@ export interface ApiKeyState {
|
|
|
68
68
|
*/
|
|
69
69
|
name?: pulumi.Input<string>;
|
|
70
70
|
/**
|
|
71
|
-
* Whether the API key is used for remote config.
|
|
71
|
+
* Whether the API key is used for remote config. Set to true only if remote config is enabled in `/organization-settings/remote-config`.
|
|
72
72
|
*/
|
|
73
73
|
remoteConfigReadEnabled?: pulumi.Input<boolean>;
|
|
74
74
|
}
|
|
@@ -81,7 +81,7 @@ export interface ApiKeyArgs {
|
|
|
81
81
|
*/
|
|
82
82
|
name: pulumi.Input<string>;
|
|
83
83
|
/**
|
|
84
|
-
* Whether the API key is used for remote config.
|
|
84
|
+
* Whether the API key is used for remote config. Set to true only if remote config is enabled in `/organization-settings/remote-config`.
|
|
85
85
|
*/
|
|
86
86
|
remoteConfigReadEnabled?: pulumi.Input<boolean>;
|
|
87
87
|
}
|
package/config/vars.d.ts
CHANGED
|
@@ -17,8 +17,8 @@ export declare const apiUrl: string | undefined;
|
|
|
17
17
|
*/
|
|
18
18
|
export declare const appKey: string | undefined;
|
|
19
19
|
/**
|
|
20
|
-
* [Experimental - Monitors only] Configuration block containing settings to apply default resource tags
|
|
21
|
-
* resources.
|
|
20
|
+
* [Experimental - Monitors and Logs Pipelines only] Configuration block containing settings to apply default resource tags
|
|
21
|
+
* across all resources.
|
|
22
22
|
*/
|
|
23
23
|
export declare const defaultTags: outputs.config.DefaultTags | undefined;
|
|
24
24
|
/**
|
package/getUser.d.ts
CHANGED
|
@@ -31,6 +31,14 @@ export interface GetUserArgs {
|
|
|
31
31
|
* A collection of values returned by getUser.
|
|
32
32
|
*/
|
|
33
33
|
export interface GetUserResult {
|
|
34
|
+
/**
|
|
35
|
+
* The time when the user was created (RFC3339 format).
|
|
36
|
+
*/
|
|
37
|
+
readonly createdAt: string;
|
|
38
|
+
/**
|
|
39
|
+
* Indicates whether the user is disabled.
|
|
40
|
+
*/
|
|
41
|
+
readonly disabled: boolean;
|
|
34
42
|
/**
|
|
35
43
|
* Email of the user.
|
|
36
44
|
*/
|
|
@@ -43,14 +51,46 @@ export interface GetUserResult {
|
|
|
43
51
|
* Filter all users by the given string.
|
|
44
52
|
*/
|
|
45
53
|
readonly filter: string;
|
|
54
|
+
/**
|
|
55
|
+
* The user's handle.
|
|
56
|
+
*/
|
|
57
|
+
readonly handle: string;
|
|
58
|
+
/**
|
|
59
|
+
* The URL where the user's icon is located.
|
|
60
|
+
*/
|
|
61
|
+
readonly icon: string;
|
|
46
62
|
/**
|
|
47
63
|
* The provider-assigned unique ID for this managed resource.
|
|
48
64
|
*/
|
|
49
65
|
readonly id: string;
|
|
66
|
+
/**
|
|
67
|
+
* Indicates whether the user has enabled MFA.
|
|
68
|
+
*/
|
|
69
|
+
readonly mfaEnabled: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* The time at which the user was last updated (RFC3339 format).
|
|
72
|
+
*/
|
|
73
|
+
readonly modifiedAt: string;
|
|
50
74
|
/**
|
|
51
75
|
* Name of the user.
|
|
52
76
|
*/
|
|
53
77
|
readonly name: string;
|
|
78
|
+
/**
|
|
79
|
+
* Indicates whether the user is a service account.
|
|
80
|
+
*/
|
|
81
|
+
readonly serviceAccount: boolean;
|
|
82
|
+
/**
|
|
83
|
+
* The user's status.
|
|
84
|
+
*/
|
|
85
|
+
readonly status: string;
|
|
86
|
+
/**
|
|
87
|
+
* The user's title.
|
|
88
|
+
*/
|
|
89
|
+
readonly title: string;
|
|
90
|
+
/**
|
|
91
|
+
* Indicates whether the user is verified.
|
|
92
|
+
*/
|
|
93
|
+
readonly verified: boolean;
|
|
54
94
|
}
|
|
55
95
|
/**
|
|
56
96
|
* Use this data source to retrieve information about an existing user to use it in an other resources.
|
package/getUser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0BAMC;
|
|
1
|
+
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0BAMC;AAiFD;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAAiC;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+BAA+B,EAAE;QAChE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC"}
|
package/logsCustomPipeline.d.ts
CHANGED
|
@@ -207,7 +207,7 @@ export declare class LogsCustomPipeline extends pulumi.CustomResource {
|
|
|
207
207
|
readonly isEnabled: pulumi.Output<boolean | undefined>;
|
|
208
208
|
readonly name: pulumi.Output<string>;
|
|
209
209
|
readonly processors: pulumi.Output<outputs.LogsCustomPipelineProcessor[] | undefined>;
|
|
210
|
-
readonly tags: pulumi.Output<string[]
|
|
210
|
+
readonly tags: pulumi.Output<string[]>;
|
|
211
211
|
/**
|
|
212
212
|
* Create a LogsCustomPipeline resource with the given unique name, arguments, and options.
|
|
213
213
|
*
|
package/openapiApi.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Provides a Datadog OpenAPI resource. This can be used to synchronize Datadog's [API catalog](https://docs.datadoghq.com/api_catalog/) with an [OpenAPI](https://www.openapis.org/) specifications file.
|
|
3
|
+
* Deprecated: use the `datadog.SoftwareCatalog` resource instead. Provides a Datadog OpenAPI resource. This can be used to synchronize Datadog's [API catalog](https://docs.datadoghq.com/api_catalog/) with an [OpenAPI](https://www.openapis.org/) specifications file.
|
|
4
4
|
*
|
|
5
5
|
* ## Import
|
|
6
6
|
*
|
package/openapiApi.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.OpenapiApi = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Provides a Datadog OpenAPI resource. This can be used to synchronize Datadog's [API catalog](https://docs.datadoghq.com/api_catalog/) with an [OpenAPI](https://www.openapis.org/) specifications file.
|
|
9
|
+
* Deprecated: use the `datadog.SoftwareCatalog` resource instead. Provides a Datadog OpenAPI resource. This can be used to synchronize Datadog's [API catalog](https://docs.datadoghq.com/api_catalog/) with an [OpenAPI](https://www.openapis.org/) specifications file.
|
|
10
10
|
*
|
|
11
11
|
* ## Import
|
|
12
12
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/datadog",
|
|
3
|
-
"version": "4.45.0-alpha.
|
|
3
|
+
"version": "4.45.0-alpha.1740540330",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Datadog resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "datadog",
|
|
25
|
-
"version": "4.45.0-alpha.
|
|
25
|
+
"version": "4.45.0-alpha.1740540330"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/provider.d.ts
CHANGED
|
@@ -69,8 +69,8 @@ export interface ProviderArgs {
|
|
|
69
69
|
*/
|
|
70
70
|
appKey?: pulumi.Input<string>;
|
|
71
71
|
/**
|
|
72
|
-
* [Experimental - Monitors only] Configuration block containing settings to apply default resource tags
|
|
73
|
-
* resources.
|
|
72
|
+
* [Experimental - Monitors and Logs Pipelines only] Configuration block containing settings to apply default resource tags
|
|
73
|
+
* across all resources.
|
|
74
74
|
*/
|
|
75
75
|
defaultTags?: pulumi.Input<inputs.ProviderDefaultTags>;
|
|
76
76
|
/**
|
|
@@ -63,7 +63,7 @@ export declare class SecurityNotificationRule extends pulumi.CustomResource {
|
|
|
63
63
|
*/
|
|
64
64
|
readonly selectors: pulumi.Output<outputs.SecurityNotificationRuleSelectors | undefined>;
|
|
65
65
|
/**
|
|
66
|
-
* The list of handle targets for the notifications.
|
|
66
|
+
* The list of handle targets for the notifications. A target must be prefixed with an @. It can be an email address (@bob@email.com), or any installed integration. For example, a Slack recipient (@slack-ops), or a Teams recipient (@teams-ops).
|
|
67
67
|
*/
|
|
68
68
|
readonly targets: pulumi.Output<string[]>;
|
|
69
69
|
/**
|
|
@@ -124,7 +124,7 @@ export interface SecurityNotificationRuleState {
|
|
|
124
124
|
*/
|
|
125
125
|
selectors?: pulumi.Input<inputs.SecurityNotificationRuleSelectors>;
|
|
126
126
|
/**
|
|
127
|
-
* The list of handle targets for the notifications.
|
|
127
|
+
* The list of handle targets for the notifications. A target must be prefixed with an @. It can be an email address (@bob@email.com), or any installed integration. For example, a Slack recipient (@slack-ops), or a Teams recipient (@teams-ops).
|
|
128
128
|
*/
|
|
129
129
|
targets?: pulumi.Input<pulumi.Input<string>[]>;
|
|
130
130
|
/**
|
|
@@ -153,7 +153,7 @@ export interface SecurityNotificationRuleArgs {
|
|
|
153
153
|
*/
|
|
154
154
|
selectors?: pulumi.Input<inputs.SecurityNotificationRuleSelectors>;
|
|
155
155
|
/**
|
|
156
|
-
* The list of handle targets for the notifications.
|
|
156
|
+
* The list of handle targets for the notifications. A target must be prefixed with an @. It can be an email address (@bob@email.com), or any installed integration. For example, a Slack recipient (@slack-ops), or a Teams recipient (@teams-ops).
|
|
157
157
|
*/
|
|
158
158
|
targets: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
@@ -49,6 +49,10 @@ export declare class SyntheticsGlobalVariable extends pulumi.CustomResource {
|
|
|
49
49
|
* Description of the global variable.
|
|
50
50
|
*/
|
|
51
51
|
readonly description: pulumi.Output<string | undefined>;
|
|
52
|
+
/**
|
|
53
|
+
* If set to true, the global variable is a FIDO variable. Defaults to `false`.
|
|
54
|
+
*/
|
|
55
|
+
readonly isFido: pulumi.Output<boolean | undefined>;
|
|
52
56
|
/**
|
|
53
57
|
* If set to true, the global variable is a TOTP variable. Defaults to `false`.
|
|
54
58
|
*/
|
|
@@ -74,7 +78,7 @@ export declare class SyntheticsGlobalVariable extends pulumi.CustomResource {
|
|
|
74
78
|
*/
|
|
75
79
|
readonly restrictedRoles: pulumi.Output<string[] | undefined>;
|
|
76
80
|
/**
|
|
77
|
-
* If set to true, the value of the global variable is hidden. This setting is ignored if `isTotp` is set to `true`. Defaults to `false`.
|
|
81
|
+
* If set to true, the value of the global variable is hidden. This setting is ignored if `isTotp` or `isFido` is set to `true`. Defaults to `false`.
|
|
78
82
|
*/
|
|
79
83
|
readonly secure: pulumi.Output<boolean | undefined>;
|
|
80
84
|
/**
|
|
@@ -82,9 +86,9 @@ export declare class SyntheticsGlobalVariable extends pulumi.CustomResource {
|
|
|
82
86
|
*/
|
|
83
87
|
readonly tags: pulumi.Output<string[] | undefined>;
|
|
84
88
|
/**
|
|
85
|
-
* The value of the global variable.
|
|
89
|
+
* The value of the global variable. This setting is ignored if `isFido` is set to `true` and required otherwise.
|
|
86
90
|
*/
|
|
87
|
-
readonly value: pulumi.Output<string>;
|
|
91
|
+
readonly value: pulumi.Output<string | undefined>;
|
|
88
92
|
/**
|
|
89
93
|
* Create a SyntheticsGlobalVariable resource with the given unique name, arguments, and options.
|
|
90
94
|
*
|
|
@@ -102,6 +106,10 @@ export interface SyntheticsGlobalVariableState {
|
|
|
102
106
|
* Description of the global variable.
|
|
103
107
|
*/
|
|
104
108
|
description?: pulumi.Input<string>;
|
|
109
|
+
/**
|
|
110
|
+
* If set to true, the global variable is a FIDO variable. Defaults to `false`.
|
|
111
|
+
*/
|
|
112
|
+
isFido?: pulumi.Input<boolean>;
|
|
105
113
|
/**
|
|
106
114
|
* If set to true, the global variable is a TOTP variable. Defaults to `false`.
|
|
107
115
|
*/
|
|
@@ -127,7 +135,7 @@ export interface SyntheticsGlobalVariableState {
|
|
|
127
135
|
*/
|
|
128
136
|
restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
129
137
|
/**
|
|
130
|
-
* If set to true, the value of the global variable is hidden. This setting is ignored if `isTotp` is set to `true`. Defaults to `false`.
|
|
138
|
+
* If set to true, the value of the global variable is hidden. This setting is ignored if `isTotp` or `isFido` is set to `true`. Defaults to `false`.
|
|
131
139
|
*/
|
|
132
140
|
secure?: pulumi.Input<boolean>;
|
|
133
141
|
/**
|
|
@@ -135,7 +143,7 @@ export interface SyntheticsGlobalVariableState {
|
|
|
135
143
|
*/
|
|
136
144
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
137
145
|
/**
|
|
138
|
-
* The value of the global variable.
|
|
146
|
+
* The value of the global variable. This setting is ignored if `isFido` is set to `true` and required otherwise.
|
|
139
147
|
*/
|
|
140
148
|
value?: pulumi.Input<string>;
|
|
141
149
|
}
|
|
@@ -147,6 +155,10 @@ export interface SyntheticsGlobalVariableArgs {
|
|
|
147
155
|
* Description of the global variable.
|
|
148
156
|
*/
|
|
149
157
|
description?: pulumi.Input<string>;
|
|
158
|
+
/**
|
|
159
|
+
* If set to true, the global variable is a FIDO variable. Defaults to `false`.
|
|
160
|
+
*/
|
|
161
|
+
isFido?: pulumi.Input<boolean>;
|
|
150
162
|
/**
|
|
151
163
|
* If set to true, the global variable is a TOTP variable. Defaults to `false`.
|
|
152
164
|
*/
|
|
@@ -172,7 +184,7 @@ export interface SyntheticsGlobalVariableArgs {
|
|
|
172
184
|
*/
|
|
173
185
|
restrictedRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
174
186
|
/**
|
|
175
|
-
* If set to true, the value of the global variable is hidden. This setting is ignored if `isTotp` is set to `true`. Defaults to `false`.
|
|
187
|
+
* If set to true, the value of the global variable is hidden. This setting is ignored if `isTotp` or `isFido` is set to `true`. Defaults to `false`.
|
|
176
188
|
*/
|
|
177
189
|
secure?: pulumi.Input<boolean>;
|
|
178
190
|
/**
|
|
@@ -180,7 +192,7 @@ export interface SyntheticsGlobalVariableArgs {
|
|
|
180
192
|
*/
|
|
181
193
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
182
194
|
/**
|
|
183
|
-
* The value of the global variable.
|
|
195
|
+
* The value of the global variable. This setting is ignored if `isFido` is set to `true` and required otherwise.
|
|
184
196
|
*/
|
|
185
|
-
value
|
|
197
|
+
value?: pulumi.Input<string>;
|
|
186
198
|
}
|
|
@@ -62,6 +62,7 @@ class SyntheticsGlobalVariable extends pulumi.CustomResource {
|
|
|
62
62
|
if (opts.id) {
|
|
63
63
|
const state = argsOrState;
|
|
64
64
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
65
|
+
resourceInputs["isFido"] = state ? state.isFido : undefined;
|
|
65
66
|
resourceInputs["isTotp"] = state ? state.isTotp : undefined;
|
|
66
67
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
67
68
|
resourceInputs["options"] = state ? state.options : undefined;
|
|
@@ -77,10 +78,8 @@ class SyntheticsGlobalVariable extends pulumi.CustomResource {
|
|
|
77
78
|
if ((!args || args.name === undefined) && !opts.urn) {
|
|
78
79
|
throw new Error("Missing required property 'name'");
|
|
79
80
|
}
|
|
80
|
-
if ((!args || args.value === undefined) && !opts.urn) {
|
|
81
|
-
throw new Error("Missing required property 'value'");
|
|
82
|
-
}
|
|
83
81
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
82
|
+
resourceInputs["isFido"] = args ? args.isFido : undefined;
|
|
84
83
|
resourceInputs["isTotp"] = args ? args.isTotp : undefined;
|
|
85
84
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
86
85
|
resourceInputs["options"] = args ? args.options : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"syntheticsGlobalVariable.js","sourceRoot":"","sources":["../syntheticsGlobalVariable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,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,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;
|
|
1
|
+
{"version":3,"file":"syntheticsGlobalVariable.js","sourceRoot":"","sources":["../syntheticsGlobalVariable.ts"],"names":[],"mappings":"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"}
|