BatchAccount Class
Contains information about an Azure Batch account.
Variables are only populated by the server, and will be ignored when sending a request.
- Inheritance
-
azure.mgmt.batch.models._models_py3.AzureResourceBatchAccount
Constructor
BatchAccount(*, identity: _models.BatchAccountIdentity | None = None, public_network_access: str | _models.PublicNetworkAccessType = 'Enabled', network_profile: _models.NetworkProfile | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
identity
|
The identity of the Batch account. |
public_network_access
|
If not specified, the default value is 'enabled'. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". Default value: Enabled
|
network_profile
|
The network profile only takes effect when publicNetworkAccess is enabled. |
Variables
Name | Description |
---|---|
id
|
The ID of the resource. |
name
|
The name of the resource. |
type
|
The type of the resource. |
location
|
The location of the resource. |
tags
|
The tags of the resource. |
identity
|
The identity of the Batch account. |
account_endpoint
|
The account endpoint used to interact with the Batch service. |
node_management_endpoint
|
The endpoint used by compute node to connect to the Batch node management service. |
provisioning_state
|
The provisioned state of the resource. Known values are: "Invalid", "Creating", "Deleting", "Succeeded", "Failed", and "Cancelled". |
pool_allocation_mode
|
The allocation mode for creating pools in the Batch account. Known values are: "BatchService" and "UserSubscription". |
key_vault_reference
|
Identifies the Azure key vault associated with a Batch account. |
public_network_access
|
If not specified, the default value is 'enabled'. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". |
network_profile
|
The network profile only takes effect when publicNetworkAccess is enabled. |
private_endpoint_connections
|
List of private endpoint connections associated with the Batch account. |
auto_storage
|
Contains information about the auto-storage account associated with a Batch account. |
encryption
|
Configures how customer data is encrypted inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. For additional control, a customer-managed key can be used instead. |
dedicated_core_quota
|
For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned. |
low_priority_core_quota
|
For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned. |
dedicated_core_quota_per_vm_family
|
A list of the dedicated core quota per Virtual Machine family for the Batch account. For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned. |
dedicated_core_quota_per_vm_family_enforced
|
If this flag is true, dedicated core quota is enforced via both the dedicatedCoreQuotaPerVMFamily and dedicatedCoreQuota properties on the account. If this flag is false, dedicated core quota is enforced only via the dedicatedCoreQuota property on the account and does not consider Virtual Machine family. |
pool_quota
|
The pool quota for the Batch account. |
active_job_and_job_schedule_quota
|
The active job and job schedule quota for the Batch account. |
allowed_authentication_modes
|
List of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane. |
Azure SDK for Python