Share via


az databox job

Note

This reference is part of the databox extension for the Azure CLI (version 2.70.0 or higher). The extension will automatically install the first time you run an az databox job command. Learn more about extensions.

Manage data box job.

Commands

Name Description Type Status
az databox job cancel

CancelJob.

Extension GA
az databox job create

Create a new job with the specified parameters.

Extension GA
az databox job delete

Delete a job.

Extension GA
az databox job list

List all the jobs available under the subscription.

Extension GA
az databox job list-credential

This method gets the unencrypted secrets related to the job.

Extension GA
az databox job mark-devices-shipped

Request to mark devices for a given job as shipped.

Extension GA
az databox job mitigate

Request to mitigate for a given job.

Extension GA
az databox job show

Get information about the specified job.

Extension GA
az databox job update

Update the properties of an existing job.

Extension GA

az databox job cancel

CancelJob.

az databox job cancel --reason
                      [--ids]
                      [--job-name --name]
                      [--resource-group]
                      [--subscription]
                      [--yes]

Examples

Cancel job

az databox job cancel -g rg --job-name name --reason reason

JobsCancelPost

az databox job cancel --resource-group YourResourceGroupName --job-name TestJobName1 --reason CancelTest

Required Parameters

--reason

Reason for cancellation.

Property Value
Parameter group: CancellationReason Arguments

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

Property Value
Parameter group: Resource Id Arguments
--job-name --name -n

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

Property Value
Parameter group: Resource Id Arguments
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Property Value
Parameter group: Resource Id Arguments
--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Property Value
Parameter group: Resource Id Arguments
--yes -y

Do not prompt for confirmation.

Property Value
Default value: False
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job create

Create a new job with the specified parameters.

az databox job create --job-name --name
                      --resource-group
                      --sku {DataBox, DataBoxCustomerDisk, DataBoxDisk, DataBoxHeavy}
                      --transfer-type {ExportFromAzure, ImportToAzure}
                      [--city]
                      [--company-name]
                      [--contact-name]
                      [--country]
                      [--data-box-customer-disk]
                      [--email-list]
                      [--expected-data-size]
                      [--identity]
                      [--kek-identity]
                      [--kek-type {CustomerManaged, MicrosoftManaged}]
                      [--kek-url]
                      [--kek-vault-resource-id]
                      [--location]
                      [--mobile]
                      [--model {AzureDataBox120, AzureDataBox525, DataBox, DataBoxCustomerDisk, DataBoxDisk, DataBoxHeavy}]
                      [--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
                      [--phone]
                      [--postal-code]
                      [--resource-group-for-managed-disk]
                      [--staging-storage-account]
                      [--state-or-province]
                      [--storage-account]
                      [--street-address1]
                      [--street-address2]
                      [--street-address3]
                      [--tags]
                      [--transfer-all-blobs {0, 1, f, false, n, no, t, true, y, yes}]
                      [--transfer-all-files {0, 1, f, false, n, no, t, true, y, yes}]
                      [--transfer-configuration-type {TransferAll, TransferUsingFilter}]
                      [--transfer-filter-details]

Examples

Create job

az databox job create -g rg -n job-name --sku databox --contact-name 'test' --phone 14258828080 --email-list testing@microsoft.com --street-address1 "1 MICROSOFT WAY" --city Redmond --state-or-province WA --country US --postal-code 98052 --company-name Microsoft --storage-account account-id --staging-storage-account account-id --resource-group-for-managed-disk rg --transfer-type ImportToAzure --kek-type MicrosoftManaged

Create job - DataboxV2

az databox job create -g rg -n job-name --sku databox --model AzureDataBox120 --contact-name 'test' --phone 14258828080 --email-list testing@microsoft.com --street-address1 "1 MICROSOFT WAY" --city Redmond --state-or-province WA --country US --postal-code 98052 --company-name Microsoft --storage-account account-id --staging-storage-account account-id --resource-group-for-managed-disk rg --transfer-type ImportToAzure --kek-type MicrosoftManaged

JobsCreate

az databox job create --resource-group YourResourceGroupName --job-name TestJobName1 --transfer-type ImportToAzure --contact-name XXXX XXXX --phone 0000000000 --phone-extension  --email-list "[xxxx@xxxx.xxx]" --street-address1 XXXX XXXX --street-address2 XXXX XXXX --city XXXX XXXX --state-or-province XX --country XX --postal-code 00000 --company-name XXXX XXXX --address-type Commercial --data-import-details "[{account-details:{storageAccountId:/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName,storage-account:{storage-account-id:/subscriptions/YourSubscriptionId/resourcegroups/YourResourceGroupName/providers/Microsoft.Storage/storageAccounts/YourStorageAccountName}}}]" --location westus --sku DataBox --model DataBox

Required Parameters

--job-name --name -n

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--sku

The sku name.

Property Value
Parameter group: Sku Arguments
Accepted values: DataBox, DataBoxCustomerDisk, DataBoxDisk, DataBoxHeavy
--transfer-type

Type of the data transfer.

Property Value
Parameter group: Properties Arguments
Accepted values: ExportFromAzure, ImportToAzure

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--city

Name of the city.

Property Value
Parameter group: ShippingAddress Arguments
--company-name

Name of the company.

Property Value
Parameter group: ShippingAddress Arguments
--contact-name

Contact name of the person.

Property Value
Parameter group: ContactDetails Arguments
--country

Name of the Country.

Property Value
Parameter group: ShippingAddress Arguments
--data-box-customer-disk

Customer disk job details. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: Details Arguments
--email-list

List of Email-ids to be notified about job progress. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: ContactDetails Arguments
--expected-data-size

The expected size of the data, which needs to be transferred in this job, in terabytes.

Property Value
Parameter group: Details Arguments
--identity

Msi identity of the resource Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: JobResource Arguments
--kek-identity

Managed identity properties used for key encryption. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: KeyEncryptionKey Arguments
--kek-type

Type of encryption key used for key encryption.

Property Value
Parameter group: KeyEncryptionKey Arguments
Default value: MicrosoftManaged
Accepted values: CustomerManaged, MicrosoftManaged
--kek-url

Key encryption key. It is required in case of Customer managed KekType.

Property Value
Parameter group: KeyEncryptionKey Arguments
--kek-vault-resource-id

Kek vault resource id. It is required in case of Customer managed KekType.

Property Value
Parameter group: KeyEncryptionKey Arguments
--location -l

The location of the resource. This will be one of the supported and registered Azure Regions (e.g. West US, East US, Southeast Asia, etc.). The region of a resource cannot be changed once it is created, but if an identical region is specified on update the request will succeed. When not specified, the location of the resource group will be used.

Property Value
Parameter group: JobResource Arguments
--mobile

Mobile number of the contact person.

Property Value
Parameter group: ContactDetails Arguments
--model

The customer friendly name of the combination of version and capacity of the device. This field is necessary only at the time of ordering the newer generation device i.e. AzureDataBox120 and AzureDataBox525 as of Feb/2025.

Property Value
Parameter group: Sku Arguments
Accepted values: AzureDataBox120, AzureDataBox525, DataBox, DataBoxCustomerDisk, DataBoxDisk, DataBoxHeavy
--no-wait

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

Property Value
Accepted values: 0, 1, f, false, n, no, t, true, y, yes
--phone

Phone number of the contact person.

Property Value
Parameter group: ContactDetails Arguments
--postal-code

Postal code.

Property Value
Parameter group: ShippingAddress Arguments
--resource-group-for-managed-disk

Resource Group Id of the compute disks.

--staging-storage-account

Resource Id of the storage account that can be used to copy the vhd for staging.

--state-or-province

Name of the State or Province.

Property Value
Parameter group: ShippingAddress Arguments
--storage-account

Space-separated list of the destination storage account. It can be the name or resource ID of storage account. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

--street-address1

Street Address line 1.

Property Value
Parameter group: ShippingAddress Arguments
--street-address2

Street Address line 2.

Property Value
Parameter group: ShippingAddress Arguments
--street-address3

Street Address line 3.

Property Value
Parameter group: ShippingAddress Arguments
--tags

The list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: JobResource Arguments
--transfer-all-blobs

To indicate if all Azure blobs have to be transferred.

Property Value
Default value: False
Accepted values: 0, 1, f, false, n, no, t, true, y, yes
--transfer-all-files

To indicate if all Azure files have to be transferred.

Property Value
Default value: False
Accepted values: 0, 1, f, false, n, no, t, true, y, yes
--transfer-configuration-type

Type of the configuration for transfer.

Property Value
Accepted values: TransferAll, TransferUsingFilter
--transfer-filter-details

Path to the map of filter type and the details to filter. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job delete

Delete a job.

az databox job delete [--ids]
                      [--job-name --name]
                      [--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
                      [--resource-group]
                      [--subscription]
                      [--yes]

Examples

Delete job

az databox job delete -n job-name -g rg

JobsDelete

az databox job delete --resource-group YourResourceGroupName --job-name TestJobName1

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

Property Value
Parameter group: Resource Id Arguments
--job-name --name -n

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

Property Value
Parameter group: Resource Id Arguments
--no-wait

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

Property Value
Accepted values: 0, 1, f, false, n, no, t, true, y, yes
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Property Value
Parameter group: Resource Id Arguments
--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Property Value
Parameter group: Resource Id Arguments
--yes -y

Do not prompt for confirmation.

Property Value
Default value: False
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job list

List all the jobs available under the subscription.

az databox job list [--max-items]
                    [--next-token]
                    [--resource-group]

Examples

List job by resource group

az databox job list -g rg

JobsList

az databox job list

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--max-items

Total number of items to return in the command's output. If the total number of items available is more than the value specified, a token is provided in the command's output. To resume pagination, provide the token value in --next-token argument of a subsequent command.

Property Value
Parameter group: Pagination Arguments
--next-token

Token to specify where to start paginating. This is the token value from a previously truncated response.

Property Value
Parameter group: Pagination Arguments
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job list-credential

This method gets the unencrypted secrets related to the job.

az databox job list-credential [--ids]
                               [--job-name --name]
                               [--resource-group]
                               [--subscription]

Examples

List credential

az databox job list-credential -g rg -n job-name

JobsListCredentials

az databox job list-credential --resource-group YourResourceGroupName --job-name TestJobName1

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

Property Value
Parameter group: Resource Id Arguments
--job-name --name -n

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

Property Value
Parameter group: Resource Id Arguments
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Property Value
Parameter group: Resource Id Arguments
--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Property Value
Parameter group: Resource Id Arguments
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job mark-devices-shipped

Request to mark devices for a given job as shipped.

az databox job mark-devices-shipped --deliver-package-details
                                    [--ids]
                                    [--job-name --name]
                                    [--resource-group]
                                    [--subscription]

Examples

Mark devices shipped

az databox job mark-devices-shipped -g rg -n job-name --deliver-package-details "{carrier-name:testCarrier,tracking-id:000000}"

MarkDevicesShipped

az databox job mark-devices-shipped --job-name TestJobName1 --resource-group YourResourceGroupName --deliver-package-details "{carrier-name:testCarrier,tracking-id:000000}"

Required Parameters

--deliver-package-details

Delivery package details Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: MarkDevicesShippedRequest Arguments

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

Property Value
Parameter group: Resource Id Arguments
--job-name --name -n

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

Property Value
Parameter group: Resource Id Arguments
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Property Value
Parameter group: Resource Id Arguments
--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Property Value
Parameter group: Resource Id Arguments
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job mitigate

Request to mitigate for a given job.

az databox job mitigate [--ids]
                        [--job-name]
                        [--resolution-code {MoveToCleanUpDevice, None, ReachOutToOperation, Restart, Resume}]
                        [--resource-group]
                        [--srn-resolution-map]
                        [--subscription]

Examples

Mitigate

az databox job mitigate --job-name TestJobName1 --resource-group YourResourceGroupName --srn-resolution-map "{testDISK-1:MoveToCleanUpDevice,testDISK-2:Resume}"

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

Property Value
Parameter group: Resource Id Arguments
--job-name

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

Property Value
Parameter group: Resource Id Arguments
--resolution-code

Resolution code for the job.

Property Value
Parameter group: MitigateJobRequest Arguments
Accepted values: MoveToCleanUpDevice, None, ReachOutToOperation, Restart, Resume
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Property Value
Parameter group: Resource Id Arguments
--srn-resolution-map

Serial number and the customer resolution code corresponding to each serial number Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: MitigateJobRequest Arguments
--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Property Value
Parameter group: Resource Id Arguments
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job show

Get information about the specified job.

az databox job show [--ids]
                    [--job-name --name]
                    [--resource-group]
                    [--subscription]

Examples

Show job

az databox job show -g rg -n job-name

JobsGet

az databox job show --resource-group YourResourceGroupName --job-name TestJobName1 --expand details

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

Property Value
Parameter group: Resource Id Arguments
--job-name --name -n

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

Property Value
Parameter group: Resource Id Arguments
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Property Value
Parameter group: Resource Id Arguments
--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Property Value
Parameter group: Resource Id Arguments
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False

az databox job update

Update the properties of an existing job.

az databox job update [--city]
                      [--company-name]
                      [--contact-name]
                      [--country]
                      [--email-list]
                      [--ids]
                      [--job-name --name]
                      [--kek-identity]
                      [--kek-type {CustomerManaged, MicrosoftManaged}]
                      [--kek-url]
                      [--kek-vault-resource-id]
                      [--mobile]
                      [--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
                      [--phone]
                      [--postal-code]
                      [--resource-group]
                      [--state-or-province]
                      [--street-address1]
                      [--street-address2]
                      [--street-address3]
                      [--subscription]

Examples

Update job

az databox job update -g rg -n job-name --contact-name 'name --email-list email --phone phone-number

Optional Parameters

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--city

Name of the city.

Property Value
Parameter group: ShippingAddress Arguments
--company-name

Name of the company.

Property Value
Parameter group: ShippingAddress Arguments
--contact-name

Contact name of the person.

Property Value
Parameter group: ContactDetails Arguments
--country

Name of the Country.

Property Value
Parameter group: ShippingAddress Arguments
--email-list

List of Email-ids to be notified about job progress. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: ContactDetails Arguments
--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

Property Value
Parameter group: Resource Id Arguments
--job-name --name -n

The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.

Property Value
Parameter group: Resource Id Arguments
--kek-identity

Managed identity properties used for key encryption. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.

Property Value
Parameter group: KeyEncryptionKey Arguments
--kek-type

Type of encryption key used for key encryption.

Property Value
Parameter group: KeyEncryptionKey Arguments
Accepted values: CustomerManaged, MicrosoftManaged
--kek-url

Key encryption key. It is required in case of Customer managed KekType.

Property Value
Parameter group: KeyEncryptionKey Arguments
--kek-vault-resource-id

Kek vault resource id. It is required in case of Customer managed KekType.

Property Value
Parameter group: KeyEncryptionKey Arguments
--mobile

Mobile number of the contact person.

Property Value
Parameter group: ContactDetails Arguments
--no-wait

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

Property Value
Accepted values: 0, 1, f, false, n, no, t, true, y, yes
--phone

Phone number of the contact person.

Property Value
Parameter group: ContactDetails Arguments
--postal-code

Postal code.

Property Value
Parameter group: ShippingAddress Arguments
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Property Value
Parameter group: Resource Id Arguments
--state-or-province

Name of the State or Province.

Property Value
Parameter group: ShippingAddress Arguments
--street-address1

Street Address line 1.

Property Value
Parameter group: ShippingAddress Arguments
--street-address2

Street Address line 2.

Property Value
Parameter group: ShippingAddress Arguments
--street-address3

Street Address line 3.

Property Value
Parameter group: ShippingAddress Arguments
--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Property Value
Parameter group: Resource Id Arguments
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

Property Value
Default value: False
--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

Property Value
Default value: False
--output -o

Output format.

Property Value
Default value: json
Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Property Value
Default value: False