-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d18322
commit c9da29a
Showing
16 changed files
with
397 additions
and
371 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '3.0.1057.1' | ||
__version__ = '3.0.1058.1' |
47 changes: 47 additions & 0 deletions
47
tccli/examples/tcr/v20190924/ModifyServiceAccountPassword.md
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,47 @@ | ||
**Example 1: 自定义服务级账号密码** | ||
|
||
自定义服务级账号密码 | ||
|
||
Input: | ||
|
||
``` | ||
tccli tcr ModifyServiceAccountPassword --cli-unfold-argument \ | ||
--RegistryId tcr-gijwqid7 \ | ||
--Name robot \ | ||
--Random False \ | ||
--Password NewPass123 | ||
``` | ||
|
||
Output: | ||
``` | ||
{ | ||
"Response": { | ||
"Password": "NewPass123", | ||
"RequestId": "8c63b1e6-02b8-48af-94c2-416aa71e0c12" | ||
} | ||
} | ||
``` | ||
|
||
**Example 2: 重置服务级账号密码** | ||
|
||
重置服务级账号密码 | ||
|
||
Input: | ||
|
||
``` | ||
tccli tcr ModifyServiceAccountPassword --cli-unfold-argument \ | ||
--RegistryId tcr-gijwqid7 \ | ||
--Name robot \ | ||
--Random True | ||
``` | ||
|
||
Output: | ||
``` | ||
{ | ||
"Response": { | ||
"Password": "kukui1ECDL8kr9cm6W66Me8PlhHemFmC", | ||
"RequestId": "60e7d0ce-c8ed-4495-9814-9397482f0d4a" | ||
} | ||
} | ||
``` | ||
|
Oops, something went wrong.