az batch account

Manage Azure Batch accounts.

Commands

az batch account autostorage-keys

Manage the access keys for the auto storage account configured for a Batch account.

az batch account autostorage-keys sync

Synchronizes access keys for the auto-storage account configured for the specified Batch account, only if storage key authentication is being used.

az batch account create

Create a Batch account with the specified parameters.

az batch account delete

Deletes the specified Batch account.

az batch account keys

Manage Batch account keys.

az batch account keys list

Gets the account keys for the specified Batch account.

az batch account keys renew

Renew keys for a Batch account.

az batch account list

List the Batch accounts associated with a subscription or resource group.

az batch account login

Log in to a Batch account through Azure Active Directory or Shared Key authentication.

az batch account outbound-endpoints

List an account's outbound network dependencies.

az batch account set

Update properties for a Batch account.

az batch account show

Get a specified Batch account or the currently set account.

az batch account create

Create a Batch account with the specified parameters.

az batch account create --location
                        --name
                        --resource-group
                        [--encryption-key-identifier]
                        [--encryption-key-source {Microsoft.Batch, Microsoft.KeyVault}]
                        [--identity-type {None, SystemAssigned, UserAssigned}]
                        [--keyvault]
                        [--no-wait]
                        [--public-network-access {Disabled, Enabled}]
                        [--storage-account]
                        [--tags]

Required Parameters

--location -l

The region in which to create the account.

--name -n

Name of the Batch account.

--resource-group -g

Name of the resource group.

Optional Parameters

--encryption-key-identifier

Part of the encryption configuration for the Batch account. Full path to the versioned secret. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053.

--encryption-key-source

Part of the encryption configuration for the Batch account. Type of the key source. Can be either Microsoft.Batch or Microsoft.KeyVault.

accepted values: Microsoft.Batch, Microsoft.KeyVault
--identity-type

The type of identity used for the Batch account.

accepted values: None, SystemAssigned, UserAssigned
--keyvault

The KeyVault name or resource ID to be used for an account with a pool allocation mode of 'User Subscription'.

--no-wait

Do not wait for the long-running operation to finish.

--public-network-access

The network access type for accessing Azure Batch account. Values can either be enabled or disabled.

accepted values: Disabled, Enabled
--storage-account

The storage account name or resource ID to be used for auto storage.

--tags

Space-separated tags in 'key[=value]' format.

az batch account delete

Deletes the specified Batch account.

az batch account delete --name
                        --resource-group
                        [--no-wait]
                        [--yes]

Required Parameters

--name -n

Name of the Batch account.

--resource-group -g

Name of the resource group.

Optional Parameters

--no-wait

Do not wait for the long-running operation to finish.

--yes -y

Do not prompt for confirmation.

az batch account list

List the Batch accounts associated with a subscription or resource group.

az batch account list [--resource-group]

Optional Parameters

--resource-group -g

Name of the resource group.

az batch account login

Log in to a Batch account through Azure Active Directory or Shared Key authentication.

az batch account login --name
                       --resource-group
                       [--shared-key-auth]
                       [--show]

Required Parameters

--name -n

Name of the Batch account.

--resource-group -g

Name of the resource group.

Optional Parameters

--shared-key-auth

Using Shared Key authentication, if not specified, it will use Azure Active Directory authentication.

--show

Display the credential information for the Batch account.

az batch account outbound-endpoints

List an account's outbound network dependencies.

List the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/azure/batch/batch-virtual-network.".

az batch account outbound-endpoints --name
                                    --resource-group

Required Parameters

--name -n

Name of the Batch account.

--resource-group -g

Name of the resource group.

az batch account set

Update properties for a Batch account.

az batch account set --name
                     --resource-group
                     [--encryption-key-identifier]
                     [--encryption-key-source]
                     [--identity-type {None, SystemAssigned, UserAssigned}]
                     [--storage-account]
                     [--tags]

Examples

Update properties for a Batch account. (autogenerated)

az batch account set --name MyBatchAccount --resource-group MyResourceGroup

Required Parameters

--name -n

Name of the Batch account.

--resource-group -g

Name of the resource group.

Optional Parameters

--encryption-key-identifier

Part of the encryption configuration for the Batch account. Full path to the versioned secret. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053.

--encryption-key-source

Part of the encryption configuration for the Batch account. Type of the key source. Can be either Microsoft.Batch or Microsoft.KeyVault.

--identity-type

The type of identity used for the Batch account.

accepted values: None, SystemAssigned, UserAssigned
--storage-account

The storage account name or resource ID to be used for auto storage.

--tags

Space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.

az batch account show

Get a specified Batch account or the currently set account.

az batch account show [--name]
                      [--resource-group]

Examples

Get a specified Batch account or the currently set account. (autogenerated)

az batch account show --name MyBatchAccount --resource-group MyResourceGroup

Optional Parameters

--name -n

Name of the batch account to show. If not specified will display currently set account.

--resource-group -g

Name of the resource group. If not specified will display currently set account.