-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add custom domains CRUD * Add autogenerated docs * Address review feedback
- Loading branch information
Showing
23 changed files
with
659 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
## auth0 branding domains | ||
|
||
Manage custom domains. | ||
|
||
### Flags | ||
|
||
``` | ||
-h, --help help for domains | ||
``` | ||
|
||
### Flags inherited from parent commands | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--force Skip confirmation. | ||
--format string Command output format. Options: json. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [auth0 branding](auth0_branding.md) - Manage branding options | ||
* [auth0 branding domains create](auth0_branding_domains_create.md) - Create a custom domain | ||
* [auth0 branding domains delete](auth0_branding_domains_delete.md) - Delete a custom domain | ||
* [auth0 branding domains list](auth0_branding_domains_list.md) - List your custom domains | ||
* [auth0 branding domains show](auth0_branding_domains_show.md) - Show a custom domain | ||
* [auth0 branding domains verify](auth0_branding_domains_verify.md) - Verify a custom domain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
## auth0 branding domains create | ||
|
||
Create a custom domain. | ||
|
||
``` | ||
auth0 branding domains create [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
auth0 branding domains create | ||
auth0 branding domains create <id> | ||
``` | ||
|
||
### Flags | ||
|
||
``` | ||
-d, --domain string Domain name. | ||
-h, --help help for create | ||
-t, --type string Custom domain provisioning type. Must be 'auth0' for Auth0-managed certs or 'self' for self-managed certs. | ||
-v, --verification string Custom domain verification method. Must be 'txt'. | ||
``` | ||
|
||
### Flags inherited from parent commands | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--force Skip confirmation. | ||
--format string Command output format. Options: json. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [auth0 branding domains](auth0_branding_domains.md) - Manage custom domains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
## auth0 branding domains delete | ||
|
||
Delete a custom domain. | ||
|
||
``` | ||
auth0 branding domains delete [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
auth0 branding domains delete | ||
auth0 branding domains delete <id> | ||
``` | ||
|
||
### Flags | ||
|
||
``` | ||
-h, --help help for delete | ||
``` | ||
|
||
### Flags inherited from parent commands | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--force Skip confirmation. | ||
--format string Command output format. Options: json. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [auth0 branding domains](auth0_branding_domains.md) - Manage custom domains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
## auth0 branding domains list | ||
|
||
List your existing custom domains. To create one try: | ||
auth0 branding domains create | ||
|
||
``` | ||
auth0 branding domains list [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
auth0 branding domains list | ||
auth0 branding domains ls | ||
``` | ||
|
||
### Flags | ||
|
||
``` | ||
-h, --help help for list | ||
``` | ||
|
||
### Flags inherited from parent commands | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--force Skip confirmation. | ||
--format string Command output format. Options: json. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [auth0 branding domains](auth0_branding_domains.md) - Manage custom domains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
## auth0 branding domains show | ||
|
||
Show a custom domain. | ||
|
||
``` | ||
auth0 branding domains show [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
auth0 branding domains show | ||
auth0 branding domains show <id> | ||
``` | ||
|
||
### Flags | ||
|
||
``` | ||
-h, --help help for show | ||
``` | ||
|
||
### Flags inherited from parent commands | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--force Skip confirmation. | ||
--format string Command output format. Options: json. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [auth0 branding domains](auth0_branding_domains.md) - Manage custom domains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
## auth0 branding domains verify | ||
|
||
Verify a custom domain. | ||
|
||
``` | ||
auth0 branding domains verify [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
auth0 branding domains verify | ||
auth0 branding domains verify <id> | ||
``` | ||
|
||
### Flags | ||
|
||
``` | ||
-h, --help help for verify | ||
``` | ||
|
||
### Flags inherited from parent commands | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--force Skip confirmation. | ||
--format string Command output format. Options: json. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [auth0 branding domains](auth0_branding_domains.md) - Manage custom domains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.