@pulumi/auth0 3.45.0-alpha.1780121907 → 3.45.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/output.d.ts CHANGED
@@ -999,15 +999,15 @@ export interface ClientAddonsSamlp {
999
999
  */
1000
1000
  binding?: string;
1001
1001
  /**
1002
- * Indicates whether a UPN claim should be created. Defaults to `true`.
1002
+ * Indicates whether a UPN claim should be created.
1003
1003
  */
1004
- createUpnClaim?: boolean;
1004
+ createUpnClaim: boolean;
1005
1005
  /**
1006
1006
  * Destination of the SAML Response. If not specified, it will be `AssertionConsumerUrl` of SAMLRequest or callback URL if there was no SAMLRequest.
1007
1007
  */
1008
1008
  destination?: string;
1009
1009
  /**
1010
- * Algorithm used to calculate the digest of the SAML Assertion or response. Options include `sha1` and `sha256`. Defaults to `sha1`.
1010
+ * Algorithm used to calculate the digest of the SAML Assertion or response. Options include `sha1` and `sha256`.
1011
1011
  */
1012
1012
  digestAlgorithm?: string;
1013
1013
  /**
@@ -1015,47 +1015,47 @@ export interface ClientAddonsSamlp {
1015
1015
  */
1016
1016
  flexibleMappings?: string;
1017
1017
  /**
1018
- * Indicates whether or not we should infer the NameFormat based on the attribute name. If set to `false`, the attribute NameFormat is not set in the assertion. Defaults to `true`.
1018
+ * Indicates whether or not we should infer the NameFormat based on the attribute name. If set to `false`, the attribute NameFormat is not set in the assertion.
1019
1019
  */
1020
- includeAttributeNameFormat?: boolean;
1020
+ includeAttributeNameFormat: boolean;
1021
1021
  /**
1022
1022
  * Issuer of the SAML Assertion.
1023
1023
  */
1024
1024
  issuer?: string;
1025
1025
  /**
1026
- * Number of seconds during which the token is valid. Defaults to `3600` seconds.
1026
+ * Number of seconds during which the token is valid.
1027
1027
  */
1028
- lifetimeInSeconds?: number;
1028
+ lifetimeInSeconds: number;
1029
1029
  /**
1030
1030
  * Configuration settings for logout.
1031
1031
  */
1032
1032
  logout?: outputs.ClientAddonsSamlpLogout;
1033
1033
  /**
1034
- * Indicates whether or not to add additional identity information in the token, such as the provider used and the `accessToken`, if available. Defaults to `true`.
1034
+ * Indicates whether or not to add additional identity information in the token, such as the provider used and the `accessToken`, if available.
1035
1035
  */
1036
- mapIdentities?: boolean;
1036
+ mapIdentities: boolean;
1037
1037
  /**
1038
- * Indicates whether to add a prefix of `http://schema.auth0.com` to any claims that are not mapped to the common profile when passed through in the output assertion. Defaults to `false`.
1038
+ * Indicates whether to add a prefix of `http://schema.auth0.com` to any claims that are not mapped to the common profile when passed through in the output assertion.
1039
1039
  */
1040
1040
  mapUnknownClaimsAsIs?: boolean;
1041
1041
  /**
1042
1042
  * Mappings between the Auth0 user profile property name (`name`) and the output attributes on the SAML attribute in the assertion (`value`).
1043
1043
  */
1044
- mappings?: {
1044
+ mappings: {
1045
1045
  [key: string]: string;
1046
1046
  };
1047
1047
  /**
1048
- * Format of the name identifier. Defaults to `urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified`.
1048
+ * Format of the name identifier.
1049
1049
  */
1050
1050
  nameIdentifierFormat?: string;
1051
1051
  /**
1052
1052
  * Attributes that can be used for Subject/NameID. Auth0 will try each of the attributes of this array in order and use the first value it finds.
1053
1053
  */
1054
- nameIdentifierProbes?: string[];
1054
+ nameIdentifierProbes: string[];
1055
1055
  /**
1056
- * Indicates whether or not to passthrough claims that are not mapped to the common profile in the output assertion. Defaults to `true`.
1056
+ * Indicates whether or not to passthrough claims that are not mapped to the common profile in the output assertion.
1057
1057
  */
1058
- passthroughClaimsWithNoMapping?: boolean;
1058
+ passthroughClaimsWithNoMapping: boolean;
1059
1059
  /**
1060
1060
  * Recipient of the SAML Assertion (SubjectConfirmationData). Default is `AssertionConsumerUrl` on SAMLRequest or callback URL if no SAMLRequest was sent.
1061
1061
  */
@@ -1065,7 +1065,7 @@ export interface ClientAddonsSamlp {
1065
1065
  */
1066
1066
  signResponse?: boolean;
1067
1067
  /**
1068
- * Algorithm used to sign the SAML Assertion or response. Options include `rsa-sha1` and `rsa-sha256`. Defaults to `rsa-sha1`.
1068
+ * Algorithm used to sign the SAML Assertion or response. Options include `rsa-sha1` and `rsa-sha256`.
1069
1069
  */
1070
1070
  signatureAlgorithm?: string;
1071
1071
  /**
@@ -1073,9 +1073,9 @@ export interface ClientAddonsSamlp {
1073
1073
  */
1074
1074
  signingCert?: string;
1075
1075
  /**
1076
- * Indicates whether or not we should infer the `xs:type` of the element. Types include `xs:string`, `xs:boolean`, `xs:double`, and `xs:anyType`. When set to `false`, all `xs:type` are `xs:anyType`. Defaults to `true`.
1076
+ * Indicates whether or not we should infer the `xs:type` of the element. Types include `xs:string`, `xs:boolean`, `xs:double`, and `xs:anyType`. When set to `false`, all `xs:type` are `xs:anyType`.
1077
1077
  */
1078
- typedAttributes?: boolean;
1078
+ typedAttributes: boolean;
1079
1079
  }
1080
1080
  export interface ClientAddonsSamlpLogout {
1081
1081
  /**
@@ -1809,6 +1809,10 @@ export interface ConnectionOptions {
1809
1809
  * The key used to decrypt encrypted responses from the connection. Uses the `key` and `cert` properties to provide the private key and certificate respectively.
1810
1810
  */
1811
1811
  decryptionKey?: outputs.ConnectionOptionsDecryptionKey;
1812
+ /**
1813
+ * The destination URL for the SAML assertion. Used when configuring a SAML connection for proxy gateways.
1814
+ */
1815
+ destinationUrl?: string;
1812
1816
  /**
1813
1817
  * Sign Request Algorithm Digest.
1814
1818
  */
@@ -1842,7 +1846,7 @@ export interface ConnectionOptions {
1842
1846
  */
1843
1847
  domainAliases: string[];
1844
1848
  /**
1845
- * Signature method used to sign the request. EA Only
1849
+ * The algorithm used to sign the DPoP proof. Allowed values: ES256, ES384, ES512, Ed25519.
1846
1850
  */
1847
1851
  dpopSigningAlg?: string;
1848
1852
  /**
@@ -2017,6 +2021,10 @@ export interface ConnectionOptions {
2017
2021
  * Allows configuration if connections*realm*fallback flag is enabled for the tenant
2018
2022
  */
2019
2023
  realmFallback?: boolean;
2024
+ /**
2025
+ * The recipient URL for the SAML assertion. Used when configuring a SAML connection for proxy gateways.
2026
+ */
2027
+ recipientUrl?: string;
2020
2028
  /**
2021
2029
  * Template that formats the SAML request.
2022
2030
  */
@@ -4126,7 +4134,7 @@ export interface GetClientAddonSamlp {
4126
4134
  */
4127
4135
  binding: string;
4128
4136
  /**
4129
- * Indicates whether a UPN claim should be created. Defaults to `true`.
4137
+ * Indicates whether a UPN claim should be created.
4130
4138
  */
4131
4139
  createUpnClaim: boolean;
4132
4140
  /**
@@ -4134,7 +4142,7 @@ export interface GetClientAddonSamlp {
4134
4142
  */
4135
4143
  destination: string;
4136
4144
  /**
4137
- * Algorithm used to calculate the digest of the SAML Assertion or response. Options include `sha1` and `sha256`. Defaults to `sha1`.
4145
+ * Algorithm used to calculate the digest of the SAML Assertion or response. Options include `sha1` and `sha256`.
4138
4146
  */
4139
4147
  digestAlgorithm: string;
4140
4148
  /**
@@ -4142,7 +4150,7 @@ export interface GetClientAddonSamlp {
4142
4150
  */
4143
4151
  flexibleMappings: string;
4144
4152
  /**
4145
- * Indicates whether or not we should infer the NameFormat based on the attribute name. If set to `false`, the attribute NameFormat is not set in the assertion. Defaults to `true`.
4153
+ * Indicates whether or not we should infer the NameFormat based on the attribute name. If set to `false`, the attribute NameFormat is not set in the assertion.
4146
4154
  */
4147
4155
  includeAttributeNameFormat: boolean;
4148
4156
  /**
@@ -4150,7 +4158,7 @@ export interface GetClientAddonSamlp {
4150
4158
  */
4151
4159
  issuer: string;
4152
4160
  /**
4153
- * Number of seconds during which the token is valid. Defaults to `3600` seconds.
4161
+ * Number of seconds during which the token is valid.
4154
4162
  */
4155
4163
  lifetimeInSeconds: number;
4156
4164
  /**
@@ -4158,11 +4166,11 @@ export interface GetClientAddonSamlp {
4158
4166
  */
4159
4167
  logouts: outputs.GetClientAddonSamlpLogout[];
4160
4168
  /**
4161
- * Indicates whether or not to add additional identity information in the token, such as the provider used and the `accessToken`, if available. Defaults to `true`.
4169
+ * Indicates whether or not to add additional identity information in the token, such as the provider used and the `accessToken`, if available.
4162
4170
  */
4163
4171
  mapIdentities: boolean;
4164
4172
  /**
4165
- * Indicates whether to add a prefix of `http://schema.auth0.com` to any claims that are not mapped to the common profile when passed through in the output assertion. Defaults to `false`.
4173
+ * Indicates whether to add a prefix of `http://schema.auth0.com` to any claims that are not mapped to the common profile when passed through in the output assertion.
4166
4174
  */
4167
4175
  mapUnknownClaimsAsIs: boolean;
4168
4176
  /**
@@ -4172,7 +4180,7 @@ export interface GetClientAddonSamlp {
4172
4180
  [key: string]: string;
4173
4181
  };
4174
4182
  /**
4175
- * Format of the name identifier. Defaults to `urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified`.
4183
+ * Format of the name identifier.
4176
4184
  */
4177
4185
  nameIdentifierFormat: string;
4178
4186
  /**
@@ -4180,7 +4188,7 @@ export interface GetClientAddonSamlp {
4180
4188
  */
4181
4189
  nameIdentifierProbes: string[];
4182
4190
  /**
4183
- * Indicates whether or not to passthrough claims that are not mapped to the common profile in the output assertion. Defaults to `true`.
4191
+ * Indicates whether or not to passthrough claims that are not mapped to the common profile in the output assertion.
4184
4192
  */
4185
4193
  passthroughClaimsWithNoMapping: boolean;
4186
4194
  /**
@@ -4192,7 +4200,7 @@ export interface GetClientAddonSamlp {
4192
4200
  */
4193
4201
  signResponse: boolean;
4194
4202
  /**
4195
- * Algorithm used to sign the SAML Assertion or response. Options include `rsa-sha1` and `rsa-sha256`. Defaults to `rsa-sha1`.
4203
+ * Algorithm used to sign the SAML Assertion or response. Options include `rsa-sha1` and `rsa-sha256`.
4196
4204
  */
4197
4205
  signatureAlgorithm: string;
4198
4206
  /**
@@ -4200,7 +4208,7 @@ export interface GetClientAddonSamlp {
4200
4208
  */
4201
4209
  signingCert: string;
4202
4210
  /**
4203
- * Indicates whether or not we should infer the `xs:type` of the element. Types include `xs:string`, `xs:boolean`, `xs:double`, and `xs:anyType`. When set to `false`, all `xs:type` are `xs:anyType`. Defaults to `true`.
4211
+ * Indicates whether or not we should infer the `xs:type` of the element. Types include `xs:string`, `xs:boolean`, `xs:double`, and `xs:anyType`. When set to `false`, all `xs:type` are `xs:anyType`.
4204
4212
  */
4205
4213
  typedAttributes: boolean;
4206
4214
  }
@@ -5189,6 +5197,10 @@ export interface GetConnectionOption {
5189
5197
  * The key used to decrypt encrypted responses from the connection. Uses the `key` and `cert` properties to provide the private key and certificate respectively.
5190
5198
  */
5191
5199
  decryptionKeys: outputs.GetConnectionOptionDecryptionKey[];
5200
+ /**
5201
+ * The destination URL for the SAML assertion. Used when configuring a SAML connection for proxy gateways.
5202
+ */
5203
+ destinationUrl: string;
5192
5204
  /**
5193
5205
  * Sign Request Algorithm Digest.
5194
5206
  */
@@ -5222,7 +5234,7 @@ export interface GetConnectionOption {
5222
5234
  */
5223
5235
  domainAliases: string[];
5224
5236
  /**
5225
- * Signature method used to sign the request. EA Only
5237
+ * The algorithm used to sign the DPoP proof. Allowed values: ES256, ES384, ES512, Ed25519.
5226
5238
  */
5227
5239
  dpopSigningAlg: string;
5228
5240
  /**
@@ -5397,6 +5409,10 @@ export interface GetConnectionOption {
5397
5409
  * Allows configuration if connectionsRealmFallback flag is enabled for the tenant
5398
5410
  */
5399
5411
  realmFallback: boolean;
5412
+ /**
5413
+ * The recipient URL for the SAML assertion. Used when configuring a SAML connection for proxy gateways.
5414
+ */
5415
+ recipientUrl: string;
5400
5416
  /**
5401
5417
  * Template that formats the SAML request.
5402
5418
  */
@@ -7211,6 +7227,44 @@ export interface GetUserAttributeProfileUserIdStrategyOverride {
7211
7227
  */
7212
7228
  strategy: string;
7213
7229
  }
7230
+ export interface GetUserConnectedAccountsConnectedAccount {
7231
+ /**
7232
+ * The access type for the connected account.
7233
+ */
7234
+ accessType: string;
7235
+ /**
7236
+ * The name of the connection associated with the account.
7237
+ */
7238
+ connection: string;
7239
+ /**
7240
+ * The unique identifier of the connection associated with the account.
7241
+ */
7242
+ connectionId: string;
7243
+ /**
7244
+ * ISO 8601 timestamp when the connected account was created.
7245
+ */
7246
+ createdAt: string;
7247
+ /**
7248
+ * ISO 8601 timestamp when the connected account expires. Empty string if not set.
7249
+ */
7250
+ expiresAt: string;
7251
+ /**
7252
+ * The unique identifier for the connected account.
7253
+ */
7254
+ id: string;
7255
+ /**
7256
+ * The identifier of the organization associated with the connected account. Empty string if not set.
7257
+ */
7258
+ organizationId: string;
7259
+ /**
7260
+ * The scopes granted for this connected account.
7261
+ */
7262
+ scopes: string[];
7263
+ /**
7264
+ * The authentication strategy used by the connection.
7265
+ */
7266
+ strategy: string;
7267
+ }
7214
7268
  export interface GetUserPermission {
7215
7269
  /**
7216
7270
  * Description of the permission.