@axway/axway-central-cli 3.8.0 → 3.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -450,20 +450,26 @@ Update resources from a file
|
|
|
450
450
|
|
|
451
451
|
APPLY OPTIONS:
|
|
452
452
|
--account [value] Override your default account config
|
|
453
|
-
--no-cache Do not use cache when communicating with the server
|
|
454
453
|
-f, --file [path] Filename to use to create or update the resources. One of: yaml | json
|
|
454
|
+
--language [langCode] Only update language portion. One of: fr-fr | en-us | de-de | pt-br
|
|
455
|
+
--no-cache Do not use cache when communicating with the server
|
|
455
456
|
-o, --output [value] Additional output formats. One of: yaml | json
|
|
456
457
|
--region [value] Override your region config
|
|
458
|
+
--subresource [name] Name of the 1 subresource to update. Will prevent main resource and all other subresources from being updated.
|
|
457
459
|
-y, --yes Automatically reply "yes" to any command prompts.
|
|
458
460
|
```
|
|
459
461
|
|
|
460
462
|
### apply examples
|
|
461
463
|
|
|
462
464
|
```bash
|
|
463
|
-
# create multiple resources from file
|
|
465
|
+
# create or update multiple resources from file
|
|
464
466
|
axway central apply -f ./some/folder/resources.yaml
|
|
465
|
-
# create multiple resources from file and output results in YAML format
|
|
467
|
+
# create or update multiple resources from file and output results in YAML format
|
|
466
468
|
axway central apply -f ./some/folder/resources.json -o yaml
|
|
469
|
+
# only update 1 language "en-us" for multiple resources from file
|
|
470
|
+
axway central apply -f ./some/folder/resources.yaml --language en-us
|
|
471
|
+
# only update 1 subresource named "state" for multiple resources from file
|
|
472
|
+
axway central apply -f ./some/folder/resources.yaml --subresource state
|
|
467
473
|
```
|
|
468
474
|
|
|
469
475
|
---
|