Skip to content

Commit 5aa6f84

Browse files
committed
Merge branch 'develop' into feature/be-6103
2 parents 9e34734 + 4bfb0cc commit 5aa6f84

14 files changed

Lines changed: 509 additions & 7 deletions

File tree

docs/build/variable/download.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
```

docs/build/variable/group/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
```

docs/build/variable/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

docs/organization/create-sub.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
```

docs/organization/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
```

docs/publish/variable/group/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
```

0 commit comments

Comments
 (0)