@pulumi/auth0 2.20.0 → 2.21.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.
package/types/input.d.ts CHANGED
@@ -456,6 +456,27 @@ export interface ClientAddonsSamlp {
456
456
  signingCert?: pulumi.Input<string>;
457
457
  typedAttributes?: pulumi.Input<boolean>;
458
458
  }
459
+ export interface ClientCredentialsPrivateKeyJwt {
460
+ /**
461
+ * Client credentials available for use when Private Key JWT is in use as the client authentication method. A maximum of 2 client credentials can be set.
462
+ */
463
+ credentials: pulumi.Input<pulumi.Input<inputs.ClientCredentialsPrivateKeyJwtCredential>[]>;
464
+ }
465
+ export interface ClientCredentialsPrivateKeyJwtCredential {
466
+ algorithm?: pulumi.Input<string>;
467
+ createdAt?: pulumi.Input<string>;
468
+ credentialType: pulumi.Input<string>;
469
+ expiresAt?: pulumi.Input<string>;
470
+ /**
471
+ * The ID of this resource.
472
+ */
473
+ id?: pulumi.Input<string>;
474
+ keyId?: pulumi.Input<string>;
475
+ name?: pulumi.Input<string>;
476
+ parseExpiryFromCert?: pulumi.Input<boolean>;
477
+ pem: pulumi.Input<string>;
478
+ updatedAt?: pulumi.Input<string>;
479
+ }
459
480
  export interface ClientJwtConfiguration {
460
481
  /**
461
482
  * Algorithm used to sign JWTs.
@@ -776,7 +797,7 @@ export interface ConnectionOptions {
776
797
  [key: string]: pulumi.Input<string>;
777
798
  }>;
778
799
  /**
779
- * Determines whether the 'name', 'given*name', 'family*name', 'nickname', and 'picture' attributes can be independently updated when using an external IdP. Possible values are 'on*each*login' (default value, it configures the connection to automatically update the root attributes from the external IdP with each user login. When this setting is used, root attributes cannot be independently updated), 'on*first*login' (configures the connection to only set the root attributes on first login, allowing them to be independently updated thereafter).
800
+ * Determines whether to sync user profile attributes (`name`, `givenName`, `familyName`, `nickname`, `picture`) at each login or only on the first login. Options include: `onEachLogin`, `onFirstLogin`. Default value: `onEachLogin`.
780
801
  */
781
802
  setUserRootAttributes?: pulumi.Input<string>;
782
803
  /**
@@ -1438,6 +1459,16 @@ export interface ResourceServerScope {
1438
1459
  */
1439
1460
  value: pulumi.Input<string>;
1440
1461
  }
1462
+ export interface ResourceServerScopesScope {
1463
+ /**
1464
+ * User-friendly description of the scope (permission).
1465
+ */
1466
+ description?: pulumi.Input<string>;
1467
+ /**
1468
+ * Name of the scope (permission). Examples include `read:appointments` or `delete:appointments`.
1469
+ */
1470
+ name: pulumi.Input<string>;
1471
+ }
1441
1472
  export interface RolePermission {
1442
1473
  /**
1443
1474
  * Description of the permission.
package/types/output.d.ts CHANGED
@@ -455,6 +455,27 @@ export interface ClientAddonsSamlp {
455
455
  signingCert?: string;
456
456
  typedAttributes?: boolean;
457
457
  }
458
+ export interface ClientCredentialsPrivateKeyJwt {
459
+ /**
460
+ * Client credentials available for use when Private Key JWT is in use as the client authentication method. A maximum of 2 client credentials can be set.
461
+ */
462
+ credentials: outputs.ClientCredentialsPrivateKeyJwtCredential[];
463
+ }
464
+ export interface ClientCredentialsPrivateKeyJwtCredential {
465
+ algorithm?: string;
466
+ createdAt: string;
467
+ credentialType: string;
468
+ expiresAt: string;
469
+ /**
470
+ * The ID of this resource.
471
+ */
472
+ id: string;
473
+ keyId: string;
474
+ name?: string;
475
+ parseExpiryFromCert?: boolean;
476
+ pem: string;
477
+ updatedAt: string;
478
+ }
458
479
  export interface ClientJwtConfiguration {
459
480
  /**
460
481
  * Algorithm used to sign JWTs.
@@ -775,9 +796,9 @@ export interface ConnectionOptions {
775
796
  [key: string]: string;
776
797
  };
777
798
  /**
778
- * Determines whether the 'name', 'given*name', 'family*name', 'nickname', and 'picture' attributes can be independently updated when using an external IdP. Possible values are 'on*each*login' (default value, it configures the connection to automatically update the root attributes from the external IdP with each user login. When this setting is used, root attributes cannot be independently updated), 'on*first*login' (configures the connection to only set the root attributes on first login, allowing them to be independently updated thereafter).
799
+ * Determines whether to sync user profile attributes (`name`, `givenName`, `familyName`, `nickname`, `picture`) at each login or only on the first login. Options include: `onEachLogin`, `onFirstLogin`. Default value: `onEachLogin`.
779
800
  */
780
- setUserRootAttributes: string;
801
+ setUserRootAttributes?: string;
781
802
  /**
782
803
  * Choose how Auth0 sets the emailVerified field in the user profile.
783
804
  */
@@ -2090,6 +2111,16 @@ export interface ResourceServerScope {
2090
2111
  */
2091
2112
  value: string;
2092
2113
  }
2114
+ export interface ResourceServerScopesScope {
2115
+ /**
2116
+ * User-friendly description of the scope (permission).
2117
+ */
2118
+ description?: string;
2119
+ /**
2120
+ * Name of the scope (permission). Examples include `read:appointments` or `delete:appointments`.
2121
+ */
2122
+ name: string;
2123
+ }
2093
2124
  export interface RolePermission {
2094
2125
  /**
2095
2126
  * Description of the permission.