@pulumi/cloudflare 5.28.0 → 5.29.0-alpha.1715876609
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/accessApplication.d.ts +15 -3
- package/accessApplication.js +2 -0
- package/accessApplication.js.map +1 -1
- package/accessPolicy.d.ts +37 -23
- package/accessPolicy.js +7 -11
- package/accessPolicy.js.map +1 -1
- package/devicePostureRule.d.ts +1 -0
- package/devicePostureRule.js +1 -0
- package/devicePostureRule.js.map +1 -1
- package/package.json +3 -2
- package/package.json.bak +3 -2
- package/types/input.d.ts +21 -13
- package/types/output.d.ts +21 -13
package/accessApplication.d.ts
CHANGED
|
@@ -122,6 +122,10 @@ export declare class AccessApplication extends pulumi.CustomResource {
|
|
|
122
122
|
* Allows options preflight requests to bypass Access authentication and go directly to the origin. Cannot turn on if corsHeaders is set. Defaults to `false`.
|
|
123
123
|
*/
|
|
124
124
|
readonly optionsPreflightBypass: pulumi.Output<boolean | undefined>;
|
|
125
|
+
/**
|
|
126
|
+
* The policies associated with the application, in ascending order of precedence. When omitted, the application policies are not be updated. Warning: Do not use this field while you still have this application ID referenced as `applicationId` in an `cloudflare.AccessPolicy` resource, as it can result in an inconsistent state.
|
|
127
|
+
*/
|
|
128
|
+
readonly policies: pulumi.Output<string[] | undefined>;
|
|
125
129
|
/**
|
|
126
130
|
* SaaS configuration for the Access Application.
|
|
127
131
|
*/
|
|
@@ -131,7 +135,7 @@ export declare class AccessApplication extends pulumi.CustomResource {
|
|
|
131
135
|
*/
|
|
132
136
|
readonly sameSiteCookieAttribute: pulumi.Output<string | undefined>;
|
|
133
137
|
/**
|
|
134
|
-
* Configuration for provisioning to
|
|
138
|
+
* Configuration for provisioning to this application via SCIM. This is currently in closed beta.
|
|
135
139
|
*/
|
|
136
140
|
readonly scimConfig: pulumi.Output<outputs.AccessApplicationScimConfig | undefined>;
|
|
137
141
|
/**
|
|
@@ -263,6 +267,10 @@ export interface AccessApplicationState {
|
|
|
263
267
|
* Allows options preflight requests to bypass Access authentication and go directly to the origin. Cannot turn on if corsHeaders is set. Defaults to `false`.
|
|
264
268
|
*/
|
|
265
269
|
optionsPreflightBypass?: pulumi.Input<boolean>;
|
|
270
|
+
/**
|
|
271
|
+
* The policies associated with the application, in ascending order of precedence. When omitted, the application policies are not be updated. Warning: Do not use this field while you still have this application ID referenced as `applicationId` in an `cloudflare.AccessPolicy` resource, as it can result in an inconsistent state.
|
|
272
|
+
*/
|
|
273
|
+
policies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
266
274
|
/**
|
|
267
275
|
* SaaS configuration for the Access Application.
|
|
268
276
|
*/
|
|
@@ -272,7 +280,7 @@ export interface AccessApplicationState {
|
|
|
272
280
|
*/
|
|
273
281
|
sameSiteCookieAttribute?: pulumi.Input<string>;
|
|
274
282
|
/**
|
|
275
|
-
* Configuration for provisioning to
|
|
283
|
+
* Configuration for provisioning to this application via SCIM. This is currently in closed beta.
|
|
276
284
|
*/
|
|
277
285
|
scimConfig?: pulumi.Input<inputs.AccessApplicationScimConfig>;
|
|
278
286
|
/**
|
|
@@ -392,6 +400,10 @@ export interface AccessApplicationArgs {
|
|
|
392
400
|
* Allows options preflight requests to bypass Access authentication and go directly to the origin. Cannot turn on if corsHeaders is set. Defaults to `false`.
|
|
393
401
|
*/
|
|
394
402
|
optionsPreflightBypass?: pulumi.Input<boolean>;
|
|
403
|
+
/**
|
|
404
|
+
* The policies associated with the application, in ascending order of precedence. When omitted, the application policies are not be updated. Warning: Do not use this field while you still have this application ID referenced as `applicationId` in an `cloudflare.AccessPolicy` resource, as it can result in an inconsistent state.
|
|
405
|
+
*/
|
|
406
|
+
policies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
395
407
|
/**
|
|
396
408
|
* SaaS configuration for the Access Application.
|
|
397
409
|
*/
|
|
@@ -401,7 +413,7 @@ export interface AccessApplicationArgs {
|
|
|
401
413
|
*/
|
|
402
414
|
sameSiteCookieAttribute?: pulumi.Input<string>;
|
|
403
415
|
/**
|
|
404
|
-
* Configuration for provisioning to
|
|
416
|
+
* Configuration for provisioning to this application via SCIM. This is currently in closed beta.
|
|
405
417
|
*/
|
|
406
418
|
scimConfig?: pulumi.Input<inputs.AccessApplicationScimConfig>;
|
|
407
419
|
/**
|
package/accessApplication.js
CHANGED
|
@@ -72,6 +72,7 @@ class AccessApplication extends pulumi.CustomResource {
|
|
|
72
72
|
resourceInputs["logoUrl"] = state ? state.logoUrl : undefined;
|
|
73
73
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
74
74
|
resourceInputs["optionsPreflightBypass"] = state ? state.optionsPreflightBypass : undefined;
|
|
75
|
+
resourceInputs["policies"] = state ? state.policies : undefined;
|
|
75
76
|
resourceInputs["saasApp"] = state ? state.saasApp : undefined;
|
|
76
77
|
resourceInputs["sameSiteCookieAttribute"] = state ? state.sameSiteCookieAttribute : undefined;
|
|
77
78
|
resourceInputs["scimConfig"] = state ? state.scimConfig : undefined;
|
|
@@ -106,6 +107,7 @@ class AccessApplication extends pulumi.CustomResource {
|
|
|
106
107
|
resourceInputs["logoUrl"] = args ? args.logoUrl : undefined;
|
|
107
108
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
108
109
|
resourceInputs["optionsPreflightBypass"] = args ? args.optionsPreflightBypass : undefined;
|
|
110
|
+
resourceInputs["policies"] = args ? args.policies : undefined;
|
|
109
111
|
resourceInputs["saasApp"] = args ? args.saasApp : undefined;
|
|
110
112
|
resourceInputs["sameSiteCookieAttribute"] = args ? args.sameSiteCookieAttribute : undefined;
|
|
111
113
|
resourceInputs["scimConfig"] = args ? args.scimConfig : undefined;
|
package/accessApplication.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accessApplication.js","sourceRoot":"","sources":["../accessApplication.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;
|
|
1
|
+
{"version":3,"file":"accessApplication.js","sourceRoot":"","sources":["../accessApplication.ts"],"names":[],"mappings":"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"}
|
package/accessPolicy.d.ts
CHANGED
|
@@ -6,11 +6,13 @@ import * as outputs from "./types/output";
|
|
|
6
6
|
* used in conjunction with Access Applications to restrict access to
|
|
7
7
|
* a particular resource.
|
|
8
8
|
*
|
|
9
|
-
* > It's required that an `accountId` or `zoneId` is provided and in
|
|
10
|
-
*
|
|
11
|
-
* access token
|
|
12
|
-
*
|
|
13
|
-
*
|
|
9
|
+
* > It's required that an `accountId` or `zoneId` is provided and in most cases using either is fine.
|
|
10
|
+
* However, if you're using a scoped access token, you must provide the argument that matches the token's
|
|
11
|
+
* scope. For example, an access token that is scoped to the "example.com" zone needs to use the `zoneId` argument.
|
|
12
|
+
* If 'application_id' is omitted, the policy created can be reused by multiple access applications.
|
|
13
|
+
* Any accessApplication resource can reference reusable policies through its `policies` argument.
|
|
14
|
+
* To destroy a reusable policy and remove it from all applications' policies lists on the same apply, preemptively set the
|
|
15
|
+
* lifecycle option `createBeforeDestroy` to true on the 'access_policy' resource.
|
|
14
16
|
*
|
|
15
17
|
* ## Import
|
|
16
18
|
*
|
|
@@ -43,13 +45,15 @@ export declare class AccessPolicy extends pulumi.CustomResource {
|
|
|
43
45
|
*/
|
|
44
46
|
static isInstance(obj: any): obj is AccessPolicy;
|
|
45
47
|
/**
|
|
46
|
-
* The account identifier to target for the resource.
|
|
48
|
+
* The account identifier to target for the resource. Must provide only one of `accountId`, `zoneId`. **Modifying this attribute will force creation of a new resource.**
|
|
47
49
|
*/
|
|
48
|
-
readonly accountId: pulumi.Output<string>;
|
|
50
|
+
readonly accountId: pulumi.Output<string | undefined>;
|
|
49
51
|
/**
|
|
50
|
-
* The ID of the application the policy is associated with.
|
|
52
|
+
* The ID of the application the policy is associated with. Required when using `precedence`. **Modifying this attribute will force creation of a new resource.**
|
|
53
|
+
*
|
|
54
|
+
* @deprecated This field is deprecated. Policies can now be standalone and reusable by multiple applications.Please use `cloudflare_access_application.policies` to associate policies with applications.
|
|
51
55
|
*/
|
|
52
|
-
readonly applicationId: pulumi.Output<string>;
|
|
56
|
+
readonly applicationId: pulumi.Output<string | undefined>;
|
|
53
57
|
readonly approvalGroups: pulumi.Output<outputs.AccessPolicyApprovalGroup[] | undefined>;
|
|
54
58
|
readonly approvalRequired: pulumi.Output<boolean | undefined>;
|
|
55
59
|
/**
|
|
@@ -73,9 +77,11 @@ export declare class AccessPolicy extends pulumi.CustomResource {
|
|
|
73
77
|
*/
|
|
74
78
|
readonly name: pulumi.Output<string>;
|
|
75
79
|
/**
|
|
76
|
-
* The unique precedence for policies on a single application.
|
|
80
|
+
* The unique precedence for policies on a single application. Required when using `applicationId`.
|
|
81
|
+
*
|
|
82
|
+
* @deprecated This field is deprecated. Access policies can now be reusable by multiple applications. Please use `cloudflare_access_application.policies` to link policies to an application with ascending order of precedence.
|
|
77
83
|
*/
|
|
78
|
-
readonly precedence: pulumi.Output<number>;
|
|
84
|
+
readonly precedence: pulumi.Output<number | undefined>;
|
|
79
85
|
/**
|
|
80
86
|
* The prompt to display to the user for a justification for accessing the resource. Required when using `purposeJustificationRequired`.
|
|
81
87
|
*/
|
|
@@ -93,9 +99,9 @@ export declare class AccessPolicy extends pulumi.CustomResource {
|
|
|
93
99
|
*/
|
|
94
100
|
readonly sessionDuration: pulumi.Output<string | undefined>;
|
|
95
101
|
/**
|
|
96
|
-
* The zone identifier to target for the resource.
|
|
102
|
+
* The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
|
|
97
103
|
*/
|
|
98
|
-
readonly zoneId: pulumi.Output<string>;
|
|
104
|
+
readonly zoneId: pulumi.Output<string | undefined>;
|
|
99
105
|
/**
|
|
100
106
|
* Create a AccessPolicy resource with the given unique name, arguments, and options.
|
|
101
107
|
*
|
|
@@ -110,11 +116,13 @@ export declare class AccessPolicy extends pulumi.CustomResource {
|
|
|
110
116
|
*/
|
|
111
117
|
export interface AccessPolicyState {
|
|
112
118
|
/**
|
|
113
|
-
* The account identifier to target for the resource.
|
|
119
|
+
* The account identifier to target for the resource. Must provide only one of `accountId`, `zoneId`. **Modifying this attribute will force creation of a new resource.**
|
|
114
120
|
*/
|
|
115
121
|
accountId?: pulumi.Input<string>;
|
|
116
122
|
/**
|
|
117
|
-
* The ID of the application the policy is associated with.
|
|
123
|
+
* The ID of the application the policy is associated with. Required when using `precedence`. **Modifying this attribute will force creation of a new resource.**
|
|
124
|
+
*
|
|
125
|
+
* @deprecated This field is deprecated. Policies can now be standalone and reusable by multiple applications.Please use `cloudflare_access_application.policies` to associate policies with applications.
|
|
118
126
|
*/
|
|
119
127
|
applicationId?: pulumi.Input<string>;
|
|
120
128
|
approvalGroups?: pulumi.Input<pulumi.Input<inputs.AccessPolicyApprovalGroup>[]>;
|
|
@@ -140,7 +148,9 @@ export interface AccessPolicyState {
|
|
|
140
148
|
*/
|
|
141
149
|
name?: pulumi.Input<string>;
|
|
142
150
|
/**
|
|
143
|
-
* The unique precedence for policies on a single application.
|
|
151
|
+
* The unique precedence for policies on a single application. Required when using `applicationId`.
|
|
152
|
+
*
|
|
153
|
+
* @deprecated This field is deprecated. Access policies can now be reusable by multiple applications. Please use `cloudflare_access_application.policies` to link policies to an application with ascending order of precedence.
|
|
144
154
|
*/
|
|
145
155
|
precedence?: pulumi.Input<number>;
|
|
146
156
|
/**
|
|
@@ -160,7 +170,7 @@ export interface AccessPolicyState {
|
|
|
160
170
|
*/
|
|
161
171
|
sessionDuration?: pulumi.Input<string>;
|
|
162
172
|
/**
|
|
163
|
-
* The zone identifier to target for the resource.
|
|
173
|
+
* The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
|
|
164
174
|
*/
|
|
165
175
|
zoneId?: pulumi.Input<string>;
|
|
166
176
|
}
|
|
@@ -169,13 +179,15 @@ export interface AccessPolicyState {
|
|
|
169
179
|
*/
|
|
170
180
|
export interface AccessPolicyArgs {
|
|
171
181
|
/**
|
|
172
|
-
* The account identifier to target for the resource.
|
|
182
|
+
* The account identifier to target for the resource. Must provide only one of `accountId`, `zoneId`. **Modifying this attribute will force creation of a new resource.**
|
|
173
183
|
*/
|
|
174
184
|
accountId?: pulumi.Input<string>;
|
|
175
185
|
/**
|
|
176
|
-
* The ID of the application the policy is associated with.
|
|
186
|
+
* The ID of the application the policy is associated with. Required when using `precedence`. **Modifying this attribute will force creation of a new resource.**
|
|
187
|
+
*
|
|
188
|
+
* @deprecated This field is deprecated. Policies can now be standalone and reusable by multiple applications.Please use `cloudflare_access_application.policies` to associate policies with applications.
|
|
177
189
|
*/
|
|
178
|
-
applicationId
|
|
190
|
+
applicationId?: pulumi.Input<string>;
|
|
179
191
|
approvalGroups?: pulumi.Input<pulumi.Input<inputs.AccessPolicyApprovalGroup>[]>;
|
|
180
192
|
approvalRequired?: pulumi.Input<boolean>;
|
|
181
193
|
/**
|
|
@@ -199,9 +211,11 @@ export interface AccessPolicyArgs {
|
|
|
199
211
|
*/
|
|
200
212
|
name: pulumi.Input<string>;
|
|
201
213
|
/**
|
|
202
|
-
* The unique precedence for policies on a single application.
|
|
214
|
+
* The unique precedence for policies on a single application. Required when using `applicationId`.
|
|
215
|
+
*
|
|
216
|
+
* @deprecated This field is deprecated. Access policies can now be reusable by multiple applications. Please use `cloudflare_access_application.policies` to link policies to an application with ascending order of precedence.
|
|
203
217
|
*/
|
|
204
|
-
precedence
|
|
218
|
+
precedence?: pulumi.Input<number>;
|
|
205
219
|
/**
|
|
206
220
|
* The prompt to display to the user for a justification for accessing the resource. Required when using `purposeJustificationRequired`.
|
|
207
221
|
*/
|
|
@@ -219,7 +233,7 @@ export interface AccessPolicyArgs {
|
|
|
219
233
|
*/
|
|
220
234
|
sessionDuration?: pulumi.Input<string>;
|
|
221
235
|
/**
|
|
222
|
-
* The zone identifier to target for the resource.
|
|
236
|
+
* The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
|
|
223
237
|
*/
|
|
224
238
|
zoneId?: pulumi.Input<string>;
|
|
225
239
|
}
|
package/accessPolicy.js
CHANGED
|
@@ -10,11 +10,13 @@ const utilities = require("./utilities");
|
|
|
10
10
|
* used in conjunction with Access Applications to restrict access to
|
|
11
11
|
* a particular resource.
|
|
12
12
|
*
|
|
13
|
-
* > It's required that an `accountId` or `zoneId` is provided and in
|
|
14
|
-
*
|
|
15
|
-
* access token
|
|
16
|
-
*
|
|
17
|
-
*
|
|
13
|
+
* > It's required that an `accountId` or `zoneId` is provided and in most cases using either is fine.
|
|
14
|
+
* However, if you're using a scoped access token, you must provide the argument that matches the token's
|
|
15
|
+
* scope. For example, an access token that is scoped to the "example.com" zone needs to use the `zoneId` argument.
|
|
16
|
+
* If 'application_id' is omitted, the policy created can be reused by multiple access applications.
|
|
17
|
+
* Any accessApplication resource can reference reusable policies through its `policies` argument.
|
|
18
|
+
* To destroy a reusable policy and remove it from all applications' policies lists on the same apply, preemptively set the
|
|
19
|
+
* lifecycle option `createBeforeDestroy` to true on the 'access_policy' resource.
|
|
18
20
|
*
|
|
19
21
|
* ## Import
|
|
20
22
|
*
|
|
@@ -76,9 +78,6 @@ class AccessPolicy extends pulumi.CustomResource {
|
|
|
76
78
|
}
|
|
77
79
|
else {
|
|
78
80
|
const args = argsOrState;
|
|
79
|
-
if ((!args || args.applicationId === undefined) && !opts.urn) {
|
|
80
|
-
throw new Error("Missing required property 'applicationId'");
|
|
81
|
-
}
|
|
82
81
|
if ((!args || args.decision === undefined) && !opts.urn) {
|
|
83
82
|
throw new Error("Missing required property 'decision'");
|
|
84
83
|
}
|
|
@@ -88,9 +87,6 @@ class AccessPolicy extends pulumi.CustomResource {
|
|
|
88
87
|
if ((!args || args.name === undefined) && !opts.urn) {
|
|
89
88
|
throw new Error("Missing required property 'name'");
|
|
90
89
|
}
|
|
91
|
-
if ((!args || args.precedence === undefined) && !opts.urn) {
|
|
92
|
-
throw new Error("Missing required property 'precedence'");
|
|
93
|
-
}
|
|
94
90
|
resourceInputs["accountId"] = args ? args.accountId : undefined;
|
|
95
91
|
resourceInputs["applicationId"] = args ? args.applicationId : undefined;
|
|
96
92
|
resourceInputs["approvalGroups"] = args ? args.approvalGroups : undefined;
|
package/accessPolicy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accessPolicy.js","sourceRoot":"","sources":["../accessPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"accessPolicy.js","sourceRoot":"","sources":["../accessPolicy.ts"],"names":[],"mappings":"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"}
|
package/devicePostureRule.d.ts
CHANGED
package/devicePostureRule.js
CHANGED
package/devicePostureRule.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devicePostureRule.js","sourceRoot":"","sources":["../devicePostureRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"devicePostureRule.js","sourceRoot":"","sources":["../devicePostureRule.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudflare",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.29.0-alpha.1715876609+416a74e",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Cloudflare cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
|
-
"name": "cloudflare"
|
|
25
|
+
"name": "cloudflare",
|
|
26
|
+
"version": "5.29.0-alpha.1715876609+416a74e"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudflare",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.29.0-alpha.1715876609+416a74e",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Cloudflare cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
|
-
"name": "cloudflare"
|
|
25
|
+
"name": "cloudflare",
|
|
26
|
+
"version": "5.29.0-alpha.1715876609+416a74e"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -164,7 +164,7 @@ export interface AccessApplicationSaasAppCustomAttributeSource {
|
|
|
164
164
|
}
|
|
165
165
|
export interface AccessApplicationScimConfig {
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* Attributes for configuring HTTP Basic, OAuth Bearer token, or OAuth 2 authentication schemes for SCIM provisioning to an application.
|
|
168
168
|
*/
|
|
169
169
|
authentication?: pulumi.Input<inputs.AccessApplicationScimConfigAuthentication>;
|
|
170
170
|
/**
|
|
@@ -176,11 +176,11 @@ export interface AccessApplicationScimConfig {
|
|
|
176
176
|
*/
|
|
177
177
|
enabled?: pulumi.Input<boolean>;
|
|
178
178
|
/**
|
|
179
|
-
* The
|
|
179
|
+
* The UID of the IdP to use as the source for SCIM resources to provision to this application.
|
|
180
180
|
*/
|
|
181
181
|
idpUid: pulumi.Input<string>;
|
|
182
182
|
/**
|
|
183
|
-
* A list of
|
|
183
|
+
* A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
|
|
184
184
|
*/
|
|
185
185
|
mappings?: pulumi.Input<pulumi.Input<inputs.AccessApplicationScimConfigMapping>[]>;
|
|
186
186
|
/**
|
|
@@ -190,39 +190,39 @@ export interface AccessApplicationScimConfig {
|
|
|
190
190
|
}
|
|
191
191
|
export interface AccessApplicationScimConfigAuthentication {
|
|
192
192
|
/**
|
|
193
|
-
* URL used to generate the auth code used during token generation.
|
|
193
|
+
* URL used to generate the auth code used during token generation. Required when using `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.token_url`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
194
194
|
*/
|
|
195
195
|
authorizationUrl?: pulumi.Input<string>;
|
|
196
196
|
/**
|
|
197
|
-
* Client ID used to authenticate when generating a token for authenticating with the remote SCIM service.
|
|
197
|
+
* Client ID used to authenticate when generating a token for authenticating with the remote SCIM service. Required when using `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
198
198
|
*/
|
|
199
199
|
clientId?: pulumi.Input<string>;
|
|
200
200
|
/**
|
|
201
|
-
* Secret used to authenticate when generating a token for authenticating with the remove SCIM service.
|
|
201
|
+
* Secret used to authenticate when generating a token for authenticating with the remove SCIM service. Required when using `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
202
202
|
*/
|
|
203
203
|
clientSecret?: pulumi.Input<string>;
|
|
204
204
|
/**
|
|
205
|
-
*
|
|
205
|
+
* Required when using `scim_config.0.authentication.0.user`. Conflicts with `scim_config.0.authentication.0.token`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`, `scim_config.0.authentication.0.scopes`.
|
|
206
206
|
*/
|
|
207
207
|
password?: pulumi.Input<string>;
|
|
208
208
|
/**
|
|
209
|
-
* The authentication scheme to use
|
|
209
|
+
* The authentication scheme to use when making SCIM requests to this application.
|
|
210
210
|
*/
|
|
211
211
|
scheme: pulumi.Input<string>;
|
|
212
212
|
/**
|
|
213
|
-
* The authorization scopes to request when generating the token used to authenticate with the remove SCIM service.
|
|
213
|
+
* The authorization scopes to request when generating the token used to authenticate with the remove SCIM service. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
214
214
|
*/
|
|
215
215
|
scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Token used to authenticate with the remote SCIM service. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`, `scim_config.0.authentication.0.scopes`.
|
|
218
218
|
*/
|
|
219
219
|
token?: pulumi.Input<string>;
|
|
220
220
|
/**
|
|
221
|
-
* URL used to generate the token used to authenticate with the remote SCIM service.
|
|
221
|
+
* URL used to generate the token used to authenticate with the remote SCIM service. Required when using `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.client_id`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
222
222
|
*/
|
|
223
223
|
tokenUrl?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
225
|
-
*
|
|
225
|
+
* User name used to authenticate with the remote SCIM service. Required when using `scim_config.0.authentication.0.password`. Conflicts with `scim_config.0.authentication.0.token`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`, `scim_config.0.authentication.0.scopes`.
|
|
226
226
|
*/
|
|
227
227
|
user?: pulumi.Input<string>;
|
|
228
228
|
}
|
|
@@ -1160,7 +1160,7 @@ export interface DevicePostureRuleInput {
|
|
|
1160
1160
|
*/
|
|
1161
1161
|
osDistroRevision?: pulumi.Input<string>;
|
|
1162
1162
|
/**
|
|
1163
|
-
* Extra
|
|
1163
|
+
* Extra version value following the operating system semantic version.
|
|
1164
1164
|
*/
|
|
1165
1165
|
osVersionExtra?: pulumi.Input<string>;
|
|
1166
1166
|
/**
|
|
@@ -4506,6 +4506,7 @@ export interface ZoneSettingsOverrideInitialSetting {
|
|
|
4506
4506
|
minify?: pulumi.Input<inputs.ZoneSettingsOverrideInitialSettingMinify>;
|
|
4507
4507
|
mirage?: pulumi.Input<string>;
|
|
4508
4508
|
mobileRedirect?: pulumi.Input<inputs.ZoneSettingsOverrideInitialSettingMobileRedirect>;
|
|
4509
|
+
nel?: pulumi.Input<inputs.ZoneSettingsOverrideInitialSettingNel>;
|
|
4509
4510
|
opportunisticEncryption?: pulumi.Input<string>;
|
|
4510
4511
|
opportunisticOnion?: pulumi.Input<string>;
|
|
4511
4512
|
orangeToOrange?: pulumi.Input<string>;
|
|
@@ -4547,6 +4548,9 @@ export interface ZoneSettingsOverrideInitialSettingMobileRedirect {
|
|
|
4547
4548
|
status: pulumi.Input<string>;
|
|
4548
4549
|
stripUri: pulumi.Input<boolean>;
|
|
4549
4550
|
}
|
|
4551
|
+
export interface ZoneSettingsOverrideInitialSettingNel {
|
|
4552
|
+
enabled: pulumi.Input<boolean>;
|
|
4553
|
+
}
|
|
4550
4554
|
export interface ZoneSettingsOverrideInitialSettingSecurityHeader {
|
|
4551
4555
|
enabled?: pulumi.Input<boolean>;
|
|
4552
4556
|
includeSubdomains?: pulumi.Input<boolean>;
|
|
@@ -4584,6 +4588,7 @@ export interface ZoneSettingsOverrideSettings {
|
|
|
4584
4588
|
minify?: pulumi.Input<inputs.ZoneSettingsOverrideSettingsMinify>;
|
|
4585
4589
|
mirage?: pulumi.Input<string>;
|
|
4586
4590
|
mobileRedirect?: pulumi.Input<inputs.ZoneSettingsOverrideSettingsMobileRedirect>;
|
|
4591
|
+
nel?: pulumi.Input<inputs.ZoneSettingsOverrideSettingsNel>;
|
|
4587
4592
|
opportunisticEncryption?: pulumi.Input<string>;
|
|
4588
4593
|
opportunisticOnion?: pulumi.Input<string>;
|
|
4589
4594
|
orangeToOrange?: pulumi.Input<string>;
|
|
@@ -4625,6 +4630,9 @@ export interface ZoneSettingsOverrideSettingsMobileRedirect {
|
|
|
4625
4630
|
status: pulumi.Input<string>;
|
|
4626
4631
|
stripUri: pulumi.Input<boolean>;
|
|
4627
4632
|
}
|
|
4633
|
+
export interface ZoneSettingsOverrideSettingsNel {
|
|
4634
|
+
enabled: pulumi.Input<boolean>;
|
|
4635
|
+
}
|
|
4628
4636
|
export interface ZoneSettingsOverrideSettingsSecurityHeader {
|
|
4629
4637
|
enabled?: pulumi.Input<boolean>;
|
|
4630
4638
|
includeSubdomains?: pulumi.Input<boolean>;
|
package/types/output.d.ts
CHANGED
|
@@ -163,7 +163,7 @@ export interface AccessApplicationSaasAppCustomAttributeSource {
|
|
|
163
163
|
}
|
|
164
164
|
export interface AccessApplicationScimConfig {
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
166
|
+
* Attributes for configuring HTTP Basic, OAuth Bearer token, or OAuth 2 authentication schemes for SCIM provisioning to an application.
|
|
167
167
|
*/
|
|
168
168
|
authentication?: outputs.AccessApplicationScimConfigAuthentication;
|
|
169
169
|
/**
|
|
@@ -175,11 +175,11 @@ export interface AccessApplicationScimConfig {
|
|
|
175
175
|
*/
|
|
176
176
|
enabled?: boolean;
|
|
177
177
|
/**
|
|
178
|
-
* The
|
|
178
|
+
* The UID of the IdP to use as the source for SCIM resources to provision to this application.
|
|
179
179
|
*/
|
|
180
180
|
idpUid: string;
|
|
181
181
|
/**
|
|
182
|
-
* A list of
|
|
182
|
+
* A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
|
|
183
183
|
*/
|
|
184
184
|
mappings?: outputs.AccessApplicationScimConfigMapping[];
|
|
185
185
|
/**
|
|
@@ -189,39 +189,39 @@ export interface AccessApplicationScimConfig {
|
|
|
189
189
|
}
|
|
190
190
|
export interface AccessApplicationScimConfigAuthentication {
|
|
191
191
|
/**
|
|
192
|
-
* URL used to generate the auth code used during token generation.
|
|
192
|
+
* URL used to generate the auth code used during token generation. Required when using `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.token_url`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
193
193
|
*/
|
|
194
194
|
authorizationUrl?: string;
|
|
195
195
|
/**
|
|
196
|
-
* Client ID used to authenticate when generating a token for authenticating with the remote SCIM service.
|
|
196
|
+
* Client ID used to authenticate when generating a token for authenticating with the remote SCIM service. Required when using `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
197
197
|
*/
|
|
198
198
|
clientId?: string;
|
|
199
199
|
/**
|
|
200
|
-
* Secret used to authenticate when generating a token for authenticating with the remove SCIM service.
|
|
200
|
+
* Secret used to authenticate when generating a token for authenticating with the remove SCIM service. Required when using `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
201
201
|
*/
|
|
202
202
|
clientSecret?: string;
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
* Required when using `scim_config.0.authentication.0.user`. Conflicts with `scim_config.0.authentication.0.token`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`, `scim_config.0.authentication.0.scopes`.
|
|
205
205
|
*/
|
|
206
206
|
password?: string;
|
|
207
207
|
/**
|
|
208
|
-
* The authentication scheme to use
|
|
208
|
+
* The authentication scheme to use when making SCIM requests to this application.
|
|
209
209
|
*/
|
|
210
210
|
scheme: string;
|
|
211
211
|
/**
|
|
212
|
-
* The authorization scopes to request when generating the token used to authenticate with the remove SCIM service.
|
|
212
|
+
* The authorization scopes to request when generating the token used to authenticate with the remove SCIM service. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
213
213
|
*/
|
|
214
214
|
scopes?: string[];
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Token used to authenticate with the remote SCIM service. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`, `scim_config.0.authentication.0.scopes`.
|
|
217
217
|
*/
|
|
218
218
|
token?: string;
|
|
219
219
|
/**
|
|
220
|
-
* URL used to generate the token used to authenticate with the remote SCIM service.
|
|
220
|
+
* URL used to generate the token used to authenticate with the remote SCIM service. Required when using `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.client_id`. Conflicts with `scim_config.0.authentication.0.user`, `scim_config.0.authentication.0.password`, `scim_config.0.authentication.0.token`.
|
|
221
221
|
*/
|
|
222
222
|
tokenUrl?: string;
|
|
223
223
|
/**
|
|
224
|
-
*
|
|
224
|
+
* User name used to authenticate with the remote SCIM service. Required when using `scim_config.0.authentication.0.password`. Conflicts with `scim_config.0.authentication.0.token`, `scim_config.0.authentication.0.client_id`, `scim_config.0.authentication.0.client_secret`, `scim_config.0.authentication.0.authorization_url`, `scim_config.0.authentication.0.token_url`, `scim_config.0.authentication.0.scopes`.
|
|
225
225
|
*/
|
|
226
226
|
user?: string;
|
|
227
227
|
}
|
|
@@ -1159,7 +1159,7 @@ export interface DevicePostureRuleInput {
|
|
|
1159
1159
|
*/
|
|
1160
1160
|
osDistroRevision?: string;
|
|
1161
1161
|
/**
|
|
1162
|
-
* Extra
|
|
1162
|
+
* Extra version value following the operating system semantic version.
|
|
1163
1163
|
*/
|
|
1164
1164
|
osVersionExtra?: string;
|
|
1165
1165
|
/**
|
|
@@ -5221,6 +5221,7 @@ export interface ZoneSettingsOverrideInitialSetting {
|
|
|
5221
5221
|
minify: outputs.ZoneSettingsOverrideInitialSettingMinify;
|
|
5222
5222
|
mirage: string;
|
|
5223
5223
|
mobileRedirect: outputs.ZoneSettingsOverrideInitialSettingMobileRedirect;
|
|
5224
|
+
nel: outputs.ZoneSettingsOverrideInitialSettingNel;
|
|
5224
5225
|
opportunisticEncryption: string;
|
|
5225
5226
|
opportunisticOnion: string;
|
|
5226
5227
|
orangeToOrange: string;
|
|
@@ -5262,6 +5263,9 @@ export interface ZoneSettingsOverrideInitialSettingMobileRedirect {
|
|
|
5262
5263
|
status: string;
|
|
5263
5264
|
stripUri: boolean;
|
|
5264
5265
|
}
|
|
5266
|
+
export interface ZoneSettingsOverrideInitialSettingNel {
|
|
5267
|
+
enabled: boolean;
|
|
5268
|
+
}
|
|
5265
5269
|
export interface ZoneSettingsOverrideInitialSettingSecurityHeader {
|
|
5266
5270
|
enabled: boolean;
|
|
5267
5271
|
includeSubdomains: boolean;
|
|
@@ -5299,6 +5303,7 @@ export interface ZoneSettingsOverrideSettings {
|
|
|
5299
5303
|
minify: outputs.ZoneSettingsOverrideSettingsMinify;
|
|
5300
5304
|
mirage: string;
|
|
5301
5305
|
mobileRedirect: outputs.ZoneSettingsOverrideSettingsMobileRedirect;
|
|
5306
|
+
nel: outputs.ZoneSettingsOverrideSettingsNel;
|
|
5302
5307
|
opportunisticEncryption: string;
|
|
5303
5308
|
opportunisticOnion: string;
|
|
5304
5309
|
orangeToOrange: string;
|
|
@@ -5340,6 +5345,9 @@ export interface ZoneSettingsOverrideSettingsMobileRedirect {
|
|
|
5340
5345
|
status: string;
|
|
5341
5346
|
stripUri: boolean;
|
|
5342
5347
|
}
|
|
5348
|
+
export interface ZoneSettingsOverrideSettingsNel {
|
|
5349
|
+
enabled: boolean;
|
|
5350
|
+
}
|
|
5343
5351
|
export interface ZoneSettingsOverrideSettingsSecurityHeader {
|
|
5344
5352
|
enabled: boolean;
|
|
5345
5353
|
includeSubdomains: boolean;
|