@pulumi/auth0 2.3.0 → 2.3.1

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
@@ -1,4 +1,56 @@
1
1
  import { output as outputs } from "../types";
2
+ export interface ActionDependency {
3
+ /**
4
+ * Secret name.
5
+ */
6
+ name: string;
7
+ /**
8
+ * Trigger version.
9
+ */
10
+ version: string;
11
+ }
12
+ export interface ActionSecret {
13
+ /**
14
+ * Secret name.
15
+ */
16
+ name: string;
17
+ /**
18
+ * Secret value.
19
+ */
20
+ value: string;
21
+ }
22
+ export interface ActionSupportedTriggers {
23
+ /**
24
+ * Trigger ID.
25
+ */
26
+ id: string;
27
+ /**
28
+ * Trigger version.
29
+ */
30
+ version: string;
31
+ }
32
+ export interface BrandingColors {
33
+ /**
34
+ * String, Hexadecimal. Background color of login pages.
35
+ */
36
+ pageBackground: string;
37
+ /**
38
+ * String, Hexadecimal. Primary button background color.
39
+ */
40
+ primary: string;
41
+ }
42
+ export interface BrandingFont {
43
+ /**
44
+ * String. URL for the custom font.
45
+ */
46
+ url: string;
47
+ }
48
+ export interface BrandingUniversalLogin {
49
+ /**
50
+ * String, body of login pages.
51
+ */
52
+ body: string;
53
+ }
2
54
  export interface ClientAddons {
3
55
  /**
4
56
  * String
@@ -350,7 +402,7 @@ export interface ConnectionOptions {
350
402
  /**
351
403
  * Azure AD domain name.
352
404
  *
353
- * @deprecated use domain instead
405
+ * @deprecated Use domain instead
354
406
  */
355
407
  appDomain?: string;
356
408
  /**
@@ -421,6 +473,9 @@ export interface ConnectionOptions {
421
473
  from?: string;
422
474
  iconUrl?: string;
423
475
  identityApi?: string;
476
+ /**
477
+ * Configuration Options for IDP Initiated Authentication. This is an object with the properties: `clientId`, `clientProtocol`, and `clientAuthorizeQuery`
478
+ */
424
479
  idpInitiated?: outputs.ConnectionOptionsIdpInitiated;
425
480
  /**
426
481
  * Indicates whether or not you have a legacy user store and want to gradually migrate those users to the Auth0 user store. [Learn more](https://auth0.com/docs/users/guides/configure-automatic-migration).
@@ -833,7 +888,7 @@ export interface GlobalClientRefreshToken {
833
888
  }
834
889
  export interface GuardianPhone {
835
890
  /**
836
- * List(String). Message types to use, array of `phone` and or `voice`. Adding both to array should enable the user to choose.
891
+ * List(String). Message types to use, array of `sms` and or `voice`. Adding both to array should enable the user to choose.
837
892
  */
838
893
  messageTypes: string[];
839
894
  /**
@@ -872,26 +927,106 @@ export interface GuardianPhoneOptions {
872
927
  verificationMessage?: string;
873
928
  }
874
929
  export interface LogStreamSink {
930
+ /**
931
+ * The AWS Account ID
932
+ */
875
933
  awsAccountId?: string;
934
+ /**
935
+ * Name of the Partner Event Source to be used with AWS. Generally generated by Auth0 and passed to AWS so this should generally be an output attribute.
936
+ */
876
937
  awsPartnerEventSource: string;
938
+ /**
939
+ * The AWS Region (i.e "us-east-2")
940
+ */
877
941
  awsRegion?: string;
942
+ /**
943
+ * Name of the Partner Topic to be used with Azure. Generally should not be specified.
944
+ */
878
945
  azurePartnerTopic: string;
946
+ /**
947
+ * The Azure region code (i.e. "ne")
948
+ */
879
949
  azureRegion?: string;
950
+ /**
951
+ * The Azure EventGrid resource group which allows you to manage all Azure assets within one subscription
952
+ */
880
953
  azureResourceGroup?: string;
954
+ /**
955
+ * The unique alphanumeric string that identifies your Azure subscription
956
+ */
881
957
  azureSubscriptionId?: string;
958
+ /**
959
+ * The Datadog API key
960
+ */
882
961
  datadogApiKey?: string;
962
+ /**
963
+ * The Datadog region
964
+ */
883
965
  datadogRegion?: string;
966
+ /**
967
+ * Sent in the HTTP "Authorization" header with each request
968
+ */
884
969
  httpAuthorization?: string;
970
+ /**
971
+ * The format of data sent over HTTP. Options are "JSONLINES" or "JSONARRAY"
972
+ */
885
973
  httpContentFormat?: string;
974
+ /**
975
+ * The ContentType header to send over HTTP. Common value is "application/json"
976
+ */
886
977
  httpContentType?: string;
978
+ /**
979
+ * Additional HTTP headers to be included as part of the HTTP request
980
+ */
887
981
  httpCustomHeaders?: string[];
982
+ /**
983
+ * The HTTP endpoint to send streaming logs
984
+ */
888
985
  httpEndpoint?: string;
986
+ /**
987
+ * The Splunk domain name
988
+ */
889
989
  splunkDomain?: string;
890
990
  splunkPort?: string;
991
+ /**
992
+ * This toggle should be turned off when using self-signed certificates
993
+ */
891
994
  splunkSecure?: boolean;
995
+ /**
996
+ * The Splunk access token
997
+ */
892
998
  splunkToken?: string;
999
+ /**
1000
+ * Generated URL for your defined HTTP source in Sumo Logic for collecting streaming data from Auth0
1001
+ */
893
1002
  sumoSourceAddress?: string;
894
1003
  }
1004
+ export interface OrganizationBranding {
1005
+ /**
1006
+ * Color scheme used to customize the login pages
1007
+ */
1008
+ colors?: {
1009
+ [key: string]: string;
1010
+ };
1011
+ /**
1012
+ * URL of logo to display on login page
1013
+ */
1014
+ logoUrl?: string;
1015
+ }
1016
+ export interface OrganizationConnection {
1017
+ /**
1018
+ * When true, all users that log in
1019
+ * with this connection will be automatically granted membership in the
1020
+ * organization. When false, users must be granted membership in the organization
1021
+ * before logging in with this connection.
1022
+ */
1023
+ assignMembershipOnLogin?: boolean;
1024
+ /**
1025
+ * The connection ID of the connection to add to the
1026
+ * organization
1027
+ */
1028
+ connectionId: string;
1029
+ }
895
1030
  export interface ResourceServerScope {
896
1031
  /**
897
1032
  * String. Description of the permission (scope).