This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Domain check function #194
Open
Simakink
wants to merge
13
commits into
Gandi:master
Choose a base branch
from
Simakink:domain_check_function
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
b696d18
add domain check function which returns if a domain is availiable and…
9088705
Merge branches 'domain_check_function' and 'master' of https://github…
Simakink 83dffa8
fix issue for sayoun
Simakink 54c3925
fix issue for sayoun
Simakink fcb7241
Merge remote-tracking branch 'origin/master'
Simakink 7a599de
fix man, remove "justify"
Simakink 76c8dd4
Fixes #184: Add filter on disk list for attach/detach element
sayoun 11fc285
Fixes #182: Detect datacenter when creating a new disk
sayoun 5061385
unittest for domain_check
Simakink 4b69e9d
fix
Simakink d61ab3f
Merge branch 'domain_check_function'
Simakink 98281ff
merge
Simakink 4f4856f
add unittest for domain.check
Simakink File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -85,6 +85,7 @@ Namespaces: | |
* disk rollback Rollback a disk from a snapshot. | ||
* disk update Update a disk. | ||
* docker Manage docker instances. | ||
* domain check Check domain availability and price. | ||
* domain create Buy a domain. | ||
* domain renew Renew a domain. | ||
* domain info Display information about a domain. | ||
|
@@ -228,6 +229,8 @@ Details: | |
|
||
* ``gandi domain create domain.tld`` helps register a domain. Options are ``--domain domain.tld`` for the domain you want to get (/!\ this option is deprecated and will be removed upon next release), ``--duration INTEGER RANGE`` for the registration period, ``--owner TEXT``, ``--admin TEXT``, ``--tech TEXT``, ``--bill TEXT`` for the four contacts to pass to the creation process, ``--nameserver TEXT`` for adding custom nameservers. All these modification can be done as background process using the option ``--background`` (or ``--bg``). | ||
|
||
* ``gandi domain check omain.tld`` Check information about the specific domain availability and price. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. typo in the command: should be |
||
|
||
* ``gandi domain renew domain.tld`` will renew a domain. Available option is ``--duration INTEGER RANGE`` for the registration period. All these modification can be done as background process using the option ``--background`` (or ``--bg``). | ||
|
||
* ``gandi domain info domain.tld`` show information about the specific domain ``domain.tld`` : owner, admin, billing and technical contacts, fully qualified domain name, nameservers, associated zone, associated tags and more. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can remove the
justify
parameter from the call as it's the same as the method default one.