@pulumi/okta 4.14.0-alpha.1739081525 → 4.14.0-alpha.1739378398
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/app/getOauth.d.ts +1 -1
- package/app/oauth.d.ts +6 -6
- package/package.json +3 -3
package/app/getOauth.d.ts
CHANGED
|
@@ -170,7 +170,7 @@ export interface GetOauthResult {
|
|
|
170
170
|
*/
|
|
171
171
|
readonly type: string;
|
|
172
172
|
/**
|
|
173
|
-
* Indicates if the client is allowed to use wildcard matching of redirect_uris
|
|
173
|
+
* Indicates if the client is allowed to use wildcard matching of redirect_uris. Some valid values include: "SUBDOMAIN", "DISABLED".
|
|
174
174
|
*/
|
|
175
175
|
readonly wildcardRedirect: string;
|
|
176
176
|
}
|
package/app/oauth.d.ts
CHANGED
|
@@ -201,7 +201,7 @@ export declare class OAuth extends pulumi.CustomResource {
|
|
|
201
201
|
*/
|
|
202
202
|
readonly refreshTokenRotation: pulumi.Output<string | undefined>;
|
|
203
203
|
/**
|
|
204
|
-
* List of OAuth 2.0 response type strings.
|
|
204
|
+
* List of OAuth 2.0 response type strings. Valid values are any combination of: `code`, `token`, and `idToken`.
|
|
205
205
|
*/
|
|
206
206
|
readonly responseTypes: pulumi.Output<string[]>;
|
|
207
207
|
/**
|
|
@@ -213,7 +213,7 @@ export declare class OAuth extends pulumi.CustomResource {
|
|
|
213
213
|
*/
|
|
214
214
|
readonly status: pulumi.Output<string | undefined>;
|
|
215
215
|
/**
|
|
216
|
-
* Requested authentication method for the token endpoint.
|
|
216
|
+
* Requested authentication method for the token endpoint, valid values include: 'client*secret*basic', 'client*secret*post', 'client*secret*jwt', 'private*key*jwt', 'none', etc.
|
|
217
217
|
*/
|
|
218
218
|
readonly tokenEndpointAuthMethod: pulumi.Output<string | undefined>;
|
|
219
219
|
/**
|
|
@@ -415,7 +415,7 @@ export interface OAuthState {
|
|
|
415
415
|
*/
|
|
416
416
|
refreshTokenRotation?: pulumi.Input<string>;
|
|
417
417
|
/**
|
|
418
|
-
* List of OAuth 2.0 response type strings.
|
|
418
|
+
* List of OAuth 2.0 response type strings. Valid values are any combination of: `code`, `token`, and `idToken`.
|
|
419
419
|
*/
|
|
420
420
|
responseTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
421
421
|
/**
|
|
@@ -427,7 +427,7 @@ export interface OAuthState {
|
|
|
427
427
|
*/
|
|
428
428
|
status?: pulumi.Input<string>;
|
|
429
429
|
/**
|
|
430
|
-
* Requested authentication method for the token endpoint.
|
|
430
|
+
* Requested authentication method for the token endpoint, valid values include: 'client*secret*basic', 'client*secret*post', 'client*secret*jwt', 'private*key*jwt', 'none', etc.
|
|
431
431
|
*/
|
|
432
432
|
tokenEndpointAuthMethod?: pulumi.Input<string>;
|
|
433
433
|
/**
|
|
@@ -609,7 +609,7 @@ export interface OAuthArgs {
|
|
|
609
609
|
*/
|
|
610
610
|
refreshTokenRotation?: pulumi.Input<string>;
|
|
611
611
|
/**
|
|
612
|
-
* List of OAuth 2.0 response type strings.
|
|
612
|
+
* List of OAuth 2.0 response type strings. Valid values are any combination of: `code`, `token`, and `idToken`.
|
|
613
613
|
*/
|
|
614
614
|
responseTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
615
615
|
/**
|
|
@@ -617,7 +617,7 @@ export interface OAuthArgs {
|
|
|
617
617
|
*/
|
|
618
618
|
status?: pulumi.Input<string>;
|
|
619
619
|
/**
|
|
620
|
-
* Requested authentication method for the token endpoint.
|
|
620
|
+
* Requested authentication method for the token endpoint, valid values include: 'client*secret*basic', 'client*secret*post', 'client*secret*jwt', 'private*key*jwt', 'none', etc.
|
|
621
621
|
*/
|
|
622
622
|
tokenEndpointAuthMethod?: pulumi.Input<string>;
|
|
623
623
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/okta",
|
|
3
|
-
"version": "4.14.0-alpha.
|
|
4
|
-
"description": "A Pulumi package for creating and managing okta resources.. Based on terraform-provider-okta: version v4.
|
|
3
|
+
"version": "4.14.0-alpha.1739378398",
|
|
4
|
+
"description": "A Pulumi package for creating and managing okta resources.. Based on terraform-provider-okta: version v4.14.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"okta"
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "okta",
|
|
26
|
-
"version": "4.14.0-alpha.
|
|
26
|
+
"version": "4.14.0-alpha.1739378398"
|
|
27
27
|
}
|
|
28
28
|
}
|