File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # ` appcircle build variable download `
2+
3+ Download environment variables as JSON
4+
5+ ``` plaintext
6+ appcircle build variable download [options]
7+ ```
8+
9+ ## Examples
10+
11+ ``` plaintext
12+ $ appcircle build variable download --variableGroupId "Variable Group ID"
13+
14+ $ appcircle build variable download --variableGroupId "Variable Group ID" --path "/path/to/save"
15+ ```
16+
17+ ## Options
18+
19+ ``` plaintext
20+ --variableGroupId <uuid> Variable Groups ID
21+ --path <string> [OPTIONAL] The path for JSON file to be downloaded (Defaults to the current directory)
22+ ```
23+
24+ ## Options inherited from parent commands
25+
26+ ``` plaintext
27+ --help Show help for command
28+ ```
Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ appcircle build variable group [command] [options]
1616
1717- [ ` list ` ] ( list.md )
1818- [ ` create ` ] ( create.md )
19+ - [ ` upload ` ] ( upload.md )
1920
Original file line number Diff line number Diff line change 1+ # ` appcircle build variable group upload `
2+
3+ Upload environment variables from JSON file to a variable group.
4+
5+ ``` plaintext
6+ appcircle build variable group upload [options]
7+ ```
8+
9+ ## Examples
10+
11+ ``` plaintext
12+ $ appcircle build variable group upload --variableGroupId "Variable Group ID" --filePath "/path/to/variables.json"
13+ ```
14+
15+ ## Options
16+
17+ ``` plaintext
18+ --variableGroupId <uuid> Variable Group ID
19+ --filePath <string> JSON file path
20+ ```
21+
22+ ## Options inherited from parent commands
23+
24+ ``` plaintext
25+ --help Show help for command
26+ ```
27+
28+ ## JSON File Format
29+
30+ The JSON file should be in the following format:
31+
32+ ``` json
33+ [
34+ {
35+ "key" : " VARIABLE_NAME" ,
36+ "value" : " variable_value" ,
37+ "isSecret" : false ,
38+ "isFile" : false ,
39+ "id" : " VARIABLE_NAME"
40+ },
41+ ...
42+ ]
43+ ```
Original file line number Diff line number Diff line change @@ -17,4 +17,5 @@ appcircle build variable [command] [options]
1717- [ ` group ` ] ( group/index.md )
1818- [ ` create ` ] ( create.md )
1919- [ ` view ` ] ( view.md )
20+ - [ ` download ` ] ( download.md )
2021
Original file line number Diff line number Diff line change 1+ # ` appcircle organization create-sub `
2+
3+ Create a new sub-organization under the current organization.
4+
5+ ``` plaintext
6+ appcircle organization create-sub [options]
7+ ```
8+
9+ ## Options
10+
11+ ``` plaintext
12+ --name <string> Name of the sub-organization
13+ ```
14+ ## Options inherited from parent commands
15+
16+ ``` plaintext
17+ --help Show help for command
18+ ```
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ appcircle organization [command] [options]
1515## Subcommands
1616
1717- [ ` view ` ] ( view.md )
18+ - [ ` create-sub ` ] ( create-sub.md )
1819- [ ` user ` ] ( user/index.md )
1920- [ ` role ` ] ( role/index.md )
2021
Original file line number Diff line number Diff line change 1+ # ` appcircle publish variable group download `
2+
3+ Download publish environment variables as JSON
4+
5+ ``` plaintext
6+ appcircle publish variable group download [options]
7+ ```
8+
9+ ## Examples
10+
11+ ``` plaintext
12+ $ appcircle publish variable group download --publishVariableGroupId "Variable Group ID"
13+
14+ $ appcircle publish variable group download --publishVariableGroupId "Variable Group ID" --path "/path/to/save"
15+ ```
16+
17+ ## Options
18+
19+ ``` plaintext
20+ --publishVariableGroupId <uuid> Variable Group ID
21+ --path <string> [OPTIONAL] The path for JSON file to be downloaded (Defaults to the current directory)
22+ ```
23+
24+ ## Options inherited from parent commands
25+
26+ ``` plaintext
27+ --help Show help for command
28+ ```
Original file line number Diff line number Diff line change @@ -16,4 +16,6 @@ appcircle publish profile variable group [command] [options]
1616
1717- [ ` list ` ] ( list.md )
1818- [ ` view ` ] ( view.md )
19+ - [ ` upload ` ] ( upload.md )
20+ - [ ` download ` ] ( download.md )
1921
Original file line number Diff line number Diff line change 1+ # ` appcircle publish variable group upload `
2+
3+ Upload publish environment variables from JSON file to a variable group.
4+
5+ ``` plaintext
6+ appcircle publish variable group upload [options]
7+ ```
8+
9+ ## Examples
10+
11+ ``` plaintext
12+ $ appcircle publish variable group upload --publishVariableGroupId "Variable Group ID" --filePath "/path/to/variables.json"
13+ ```
14+
15+ ## Options
16+
17+ ``` plaintext
18+ --publishVariableGroupId <uuid> Variable Group ID
19+ --filePath <string> JSON file path
20+ ```
21+
22+ ## Options inherited from parent commands
23+
24+ ``` plaintext
25+ --help Show help for command
26+ ```
27+
28+ ## JSON File Format
29+
30+ The JSON file should be in the following format:
31+
32+ ``` json
33+ [
34+ {
35+ "key" : " VARIABLE_NAME" ,
36+ "value" : " variable_value" ,
37+ "isSecret" : false ,
38+ "isFile" : false ,
39+ "id" : " VARIABLE_NAME"
40+ },
41+ ...
42+ ]
43+ ```
You can’t perform that action at this time.
0 commit comments