@pulumi/okta 4.14.0-alpha.1739081525 → 4.14.0-alpha.1739378663

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 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/getDomain.d.ts CHANGED
@@ -10,10 +10,10 @@ import * as outputs from "./types/output";
10
10
  * import * as okta from "@pulumi/okta";
11
11
  *
12
12
  * const example = new okta.Domain("example", {name: "www.example.com"});
13
- * const by-name = okta.getDomain({
13
+ * const by_name = okta.getDomain({
14
14
  * domainIdOrName: "www.example.com",
15
15
  * });
16
- * const by-id = okta.getDomainOutput({
16
+ * const by_id = okta.getDomainOutput({
17
17
  * domainIdOrName: example.id,
18
18
  * });
19
19
  * ```
@@ -73,10 +73,10 @@ export interface GetDomainResult {
73
73
  * import * as okta from "@pulumi/okta";
74
74
  *
75
75
  * const example = new okta.Domain("example", {name: "www.example.com"});
76
- * const by-name = okta.getDomain({
76
+ * const by_name = okta.getDomain({
77
77
  * domainIdOrName: "www.example.com",
78
78
  * });
79
- * const by-id = okta.getDomainOutput({
79
+ * const by_id = okta.getDomainOutput({
80
80
  * domainIdOrName: example.id,
81
81
  * });
82
82
  * ```
package/getDomain.js CHANGED
@@ -15,10 +15,10 @@ const utilities = require("./utilities");
15
15
  * import * as okta from "@pulumi/okta";
16
16
  *
17
17
  * const example = new okta.Domain("example", {name: "www.example.com"});
18
- * const by-name = okta.getDomain({
18
+ * const by_name = okta.getDomain({
19
19
  * domainIdOrName: "www.example.com",
20
20
  * });
21
- * const by-id = okta.getDomainOutput({
21
+ * const by_id = okta.getDomainOutput({
22
22
  * domainIdOrName: example.id,
23
23
  * });
24
24
  * ```
@@ -40,10 +40,10 @@ exports.getDomain = getDomain;
40
40
  * import * as okta from "@pulumi/okta";
41
41
  *
42
42
  * const example = new okta.Domain("example", {name: "www.example.com"});
43
- * const by-name = okta.getDomain({
43
+ * const by_name = okta.getDomain({
44
44
  * domainIdOrName: "www.example.com",
45
45
  * });
46
- * const by-id = okta.getDomainOutput({
46
+ * const by_id = okta.getDomainOutput({
47
47
  * domainIdOrName: example.id,
48
48
  * });
49
49
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pulumi/okta",
3
- "version": "4.14.0-alpha.1739081525",
4
- "description": "A Pulumi package for creating and managing okta resources.. Based on terraform-provider-okta: version v4.13.1",
3
+ "version": "4.14.0-alpha.1739378663",
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.1739081525"
26
+ "version": "4.14.0-alpha.1739378663"
27
27
  }
28
28
  }