Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/azure-cli/azure/cli/command_modules/batch/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
helps['batch account create'] = """
type: command
short-summary: Create a Batch account with the specified parameters.
examples:
- name: Create a Batch account with the specified parameters.
text: >
az batch account create --name MyBatchAccount --resource-group MyResourceGroup --location eastus
"""

helps['batch account keys'] = """
Expand Down Expand Up @@ -198,6 +202,14 @@
short-summary: Manage Batch applications.
"""

helps['batch application create'] = """
type: command
examples:
- name: Create a Batch application with the specified parameters.
text: >
az batch application create -g MyResourceGroup -n batch --application-name app
"""

helps['batch application package'] = """
type: group
short-summary: Manage Batch application packages.
Expand All @@ -212,6 +224,11 @@
helps['batch application package create'] = """
type: command
short-summary: Create a Batch application package record and activate it.
examples:
- name: Create a Batch application package record and activate it.
text: >
az batch application package create -g rg -n batch --application-name myapp --version 1.0 --package-file PackageFilePath

"""

helps['batch application set'] = """
Expand Down Expand Up @@ -517,6 +534,10 @@
helps['batch pool create'] = """
type: command
short-summary: Create a Batch pool in an account. When creating a pool, choose arguments from either Cloud Services Configuration or Virtual Machine Configuration.
examples:
- name: Create a Batch pool in an account. When creating a pool, choose arguments from either Cloud Services Configuration or Virtual Machine Configuration.
text: >
az batch pool create --json-file batch-pool-create.json --account-name clibatch --account-key BatchAccountKey
"""

helps['batch pool node-counts'] = """
Expand Down