1. Packages
  2. Azure Native
  3. API Docs
  4. batch
  5. BatchAccount
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    Contains information about an Azure Batch account.

    Uses Azure REST API version 2024-07-01. In version 2.x of the Azure Native provider, it used API version 2023-05-01.

    Other available API versions: 2023-05-01, 2023-11-01, 2024-02-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native batch [ApiVersion]. See the version guide for details.

    Example Usage

    BatchAccountCreate_BYOS

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var batchAccount = new AzureNative.Batch.BatchAccount("batchAccount", new()
        {
            AccountName = "sampleacct",
            AutoStorage = new AzureNative.Batch.Inputs.AutoStorageBasePropertiesArgs
            {
                StorageAccountId = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
            },
            KeyVaultReference = new AzureNative.Batch.Inputs.KeyVaultReferenceArgs
            {
                Id = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample",
                Url = "http://sample.vault.azure.net/",
            },
            Location = "japaneast",
            PoolAllocationMode = AzureNative.Batch.PoolAllocationMode.UserSubscription,
            ResourceGroupName = "default-azurebatch-japaneast",
        });
    
    });
    
    package main
    
    import (
    	batch "github.com/pulumi/pulumi-azure-native-sdk/batch/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := batch.NewBatchAccount(ctx, "batchAccount", &batch.BatchAccountArgs{
    			AccountName: pulumi.String("sampleacct"),
    			AutoStorage: &batch.AutoStorageBasePropertiesArgs{
    				StorageAccountId: pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage"),
    			},
    			KeyVaultReference: &batch.KeyVaultReferenceArgs{
    				Id:  pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample"),
    				Url: pulumi.String("http://sample.vault.azure.net/"),
    			},
    			Location:           pulumi.String("japaneast"),
    			PoolAllocationMode: batch.PoolAllocationModeUserSubscription,
    			ResourceGroupName:  pulumi.String("default-azurebatch-japaneast"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.batch.BatchAccount;
    import com.pulumi.azurenative.batch.BatchAccountArgs;
    import com.pulumi.azurenative.batch.inputs.AutoStorageBasePropertiesArgs;
    import com.pulumi.azurenative.batch.inputs.KeyVaultReferenceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var batchAccount = new BatchAccount("batchAccount", BatchAccountArgs.builder()
                .accountName("sampleacct")
                .autoStorage(AutoStorageBasePropertiesArgs.builder()
                    .storageAccountId("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage")
                    .build())
                .keyVaultReference(KeyVaultReferenceArgs.builder()
                    .id("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample")
                    .url("http://sample.vault.azure.net/")
                    .build())
                .location("japaneast")
                .poolAllocationMode("UserSubscription")
                .resourceGroupName("default-azurebatch-japaneast")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const batchAccount = new azure_native.batch.BatchAccount("batchAccount", {
        accountName: "sampleacct",
        autoStorage: {
            storageAccountId: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        keyVaultReference: {
            id: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample",
            url: "http://sample.vault.azure.net/",
        },
        location: "japaneast",
        poolAllocationMode: azure_native.batch.PoolAllocationMode.UserSubscription,
        resourceGroupName: "default-azurebatch-japaneast",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    batch_account = azure_native.batch.BatchAccount("batchAccount",
        account_name="sampleacct",
        auto_storage={
            "storage_account_id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        key_vault_reference={
            "id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample",
            "url": "http://sample.vault.azure.net/",
        },
        location="japaneast",
        pool_allocation_mode=azure_native.batch.PoolAllocationMode.USER_SUBSCRIPTION,
        resource_group_name="default-azurebatch-japaneast")
    
    resources:
      batchAccount:
        type: azure-native:batch:BatchAccount
        properties:
          accountName: sampleacct
          autoStorage:
            storageAccountId: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage
          keyVaultReference:
            id: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample
            url: http://sample.vault.azure.net/
          location: japaneast
          poolAllocationMode: UserSubscription
          resourceGroupName: default-azurebatch-japaneast
    

    BatchAccountCreate_Default

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var batchAccount = new AzureNative.Batch.BatchAccount("batchAccount", new()
        {
            AccountName = "sampleacct",
            AutoStorage = new AzureNative.Batch.Inputs.AutoStorageBasePropertiesArgs
            {
                StorageAccountId = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
            },
            Location = "japaneast",
            ResourceGroupName = "default-azurebatch-japaneast",
        });
    
    });
    
    package main
    
    import (
    	batch "github.com/pulumi/pulumi-azure-native-sdk/batch/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := batch.NewBatchAccount(ctx, "batchAccount", &batch.BatchAccountArgs{
    			AccountName: pulumi.String("sampleacct"),
    			AutoStorage: &batch.AutoStorageBasePropertiesArgs{
    				StorageAccountId: pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage"),
    			},
    			Location:          pulumi.String("japaneast"),
    			ResourceGroupName: pulumi.String("default-azurebatch-japaneast"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.batch.BatchAccount;
    import com.pulumi.azurenative.batch.BatchAccountArgs;
    import com.pulumi.azurenative.batch.inputs.AutoStorageBasePropertiesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var batchAccount = new BatchAccount("batchAccount", BatchAccountArgs.builder()
                .accountName("sampleacct")
                .autoStorage(AutoStorageBasePropertiesArgs.builder()
                    .storageAccountId("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage")
                    .build())
                .location("japaneast")
                .resourceGroupName("default-azurebatch-japaneast")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const batchAccount = new azure_native.batch.BatchAccount("batchAccount", {
        accountName: "sampleacct",
        autoStorage: {
            storageAccountId: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        location: "japaneast",
        resourceGroupName: "default-azurebatch-japaneast",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    batch_account = azure_native.batch.BatchAccount("batchAccount",
        account_name="sampleacct",
        auto_storage={
            "storage_account_id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        location="japaneast",
        resource_group_name="default-azurebatch-japaneast")
    
    resources:
      batchAccount:
        type: azure-native:batch:BatchAccount
        properties:
          accountName: sampleacct
          autoStorage:
            storageAccountId: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage
          location: japaneast
          resourceGroupName: default-azurebatch-japaneast
    

    BatchAccountCreate_SystemAssignedIdentity

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var batchAccount = new AzureNative.Batch.BatchAccount("batchAccount", new()
        {
            AccountName = "sampleacct",
            AutoStorage = new AzureNative.Batch.Inputs.AutoStorageBasePropertiesArgs
            {
                StorageAccountId = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
            },
            Identity = new AzureNative.Batch.Inputs.BatchAccountIdentityArgs
            {
                Type = AzureNative.Batch.ResourceIdentityType.SystemAssigned,
            },
            Location = "japaneast",
            ResourceGroupName = "default-azurebatch-japaneast",
        });
    
    });
    
    package main
    
    import (
    	batch "github.com/pulumi/pulumi-azure-native-sdk/batch/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := batch.NewBatchAccount(ctx, "batchAccount", &batch.BatchAccountArgs{
    			AccountName: pulumi.String("sampleacct"),
    			AutoStorage: &batch.AutoStorageBasePropertiesArgs{
    				StorageAccountId: pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage"),
    			},
    			Identity: &batch.BatchAccountIdentityArgs{
    				Type: batch.ResourceIdentityTypeSystemAssigned,
    			},
    			Location:          pulumi.String("japaneast"),
    			ResourceGroupName: pulumi.String("default-azurebatch-japaneast"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.batch.BatchAccount;
    import com.pulumi.azurenative.batch.BatchAccountArgs;
    import com.pulumi.azurenative.batch.inputs.AutoStorageBasePropertiesArgs;
    import com.pulumi.azurenative.batch.inputs.BatchAccountIdentityArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var batchAccount = new BatchAccount("batchAccount", BatchAccountArgs.builder()
                .accountName("sampleacct")
                .autoStorage(AutoStorageBasePropertiesArgs.builder()
                    .storageAccountId("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage")
                    .build())
                .identity(BatchAccountIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .location("japaneast")
                .resourceGroupName("default-azurebatch-japaneast")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const batchAccount = new azure_native.batch.BatchAccount("batchAccount", {
        accountName: "sampleacct",
        autoStorage: {
            storageAccountId: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        identity: {
            type: azure_native.batch.ResourceIdentityType.SystemAssigned,
        },
        location: "japaneast",
        resourceGroupName: "default-azurebatch-japaneast",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    batch_account = azure_native.batch.BatchAccount("batchAccount",
        account_name="sampleacct",
        auto_storage={
            "storage_account_id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        identity={
            "type": azure_native.batch.ResourceIdentityType.SYSTEM_ASSIGNED,
        },
        location="japaneast",
        resource_group_name="default-azurebatch-japaneast")
    
    resources:
      batchAccount:
        type: azure-native:batch:BatchAccount
        properties:
          accountName: sampleacct
          autoStorage:
            storageAccountId: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage
          identity:
            type: SystemAssigned
          location: japaneast
          resourceGroupName: default-azurebatch-japaneast
    

    PrivateBatchAccountCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var batchAccount = new AzureNative.Batch.BatchAccount("batchAccount", new()
        {
            AccountName = "sampleacct",
            AutoStorage = new AzureNative.Batch.Inputs.AutoStorageBasePropertiesArgs
            {
                StorageAccountId = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
            },
            KeyVaultReference = new AzureNative.Batch.Inputs.KeyVaultReferenceArgs
            {
                Id = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample",
                Url = "http://sample.vault.azure.net/",
            },
            Location = "japaneast",
            PublicNetworkAccess = AzureNative.Batch.PublicNetworkAccessType.Disabled,
            ResourceGroupName = "default-azurebatch-japaneast",
        });
    
    });
    
    package main
    
    import (
    	batch "github.com/pulumi/pulumi-azure-native-sdk/batch/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := batch.NewBatchAccount(ctx, "batchAccount", &batch.BatchAccountArgs{
    			AccountName: pulumi.String("sampleacct"),
    			AutoStorage: &batch.AutoStorageBasePropertiesArgs{
    				StorageAccountId: pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage"),
    			},
    			KeyVaultReference: &batch.KeyVaultReferenceArgs{
    				Id:  pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample"),
    				Url: pulumi.String("http://sample.vault.azure.net/"),
    			},
    			Location:            pulumi.String("japaneast"),
    			PublicNetworkAccess: batch.PublicNetworkAccessTypeDisabled,
    			ResourceGroupName:   pulumi.String("default-azurebatch-japaneast"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.batch.BatchAccount;
    import com.pulumi.azurenative.batch.BatchAccountArgs;
    import com.pulumi.azurenative.batch.inputs.AutoStorageBasePropertiesArgs;
    import com.pulumi.azurenative.batch.inputs.KeyVaultReferenceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var batchAccount = new BatchAccount("batchAccount", BatchAccountArgs.builder()
                .accountName("sampleacct")
                .autoStorage(AutoStorageBasePropertiesArgs.builder()
                    .storageAccountId("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage")
                    .build())
                .keyVaultReference(KeyVaultReferenceArgs.builder()
                    .id("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample")
                    .url("http://sample.vault.azure.net/")
                    .build())
                .location("japaneast")
                .publicNetworkAccess("Disabled")
                .resourceGroupName("default-azurebatch-japaneast")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const batchAccount = new azure_native.batch.BatchAccount("batchAccount", {
        accountName: "sampleacct",
        autoStorage: {
            storageAccountId: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        keyVaultReference: {
            id: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample",
            url: "http://sample.vault.azure.net/",
        },
        location: "japaneast",
        publicNetworkAccess: azure_native.batch.PublicNetworkAccessType.Disabled,
        resourceGroupName: "default-azurebatch-japaneast",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    batch_account = azure_native.batch.BatchAccount("batchAccount",
        account_name="sampleacct",
        auto_storage={
            "storage_account_id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
        },
        key_vault_reference={
            "id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample",
            "url": "http://sample.vault.azure.net/",
        },
        location="japaneast",
        public_network_access=azure_native.batch.PublicNetworkAccessType.DISABLED,
        resource_group_name="default-azurebatch-japaneast")
    
    resources:
      batchAccount:
        type: azure-native:batch:BatchAccount
        properties:
          accountName: sampleacct
          autoStorage:
            storageAccountId: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage
          keyVaultReference:
            id: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.KeyVault/vaults/sample
            url: http://sample.vault.azure.net/
          location: japaneast
          publicNetworkAccess: Disabled
          resourceGroupName: default-azurebatch-japaneast
    

    Create BatchAccount Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BatchAccount(name: string, args: BatchAccountArgs, opts?: CustomResourceOptions);
    @overload
    def BatchAccount(resource_name: str,
                     args: BatchAccountArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def BatchAccount(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     resource_group_name: Optional[str] = None,
                     account_name: Optional[str] = None,
                     allowed_authentication_modes: Optional[Sequence[AuthenticationMode]] = None,
                     auto_storage: Optional[AutoStorageBasePropertiesArgs] = None,
                     encryption: Optional[EncryptionPropertiesArgs] = None,
                     identity: Optional[BatchAccountIdentityArgs] = None,
                     key_vault_reference: Optional[KeyVaultReferenceArgs] = None,
                     location: Optional[str] = None,
                     network_profile: Optional[NetworkProfileArgs] = None,
                     pool_allocation_mode: Optional[PoolAllocationMode] = None,
                     public_network_access: Optional[PublicNetworkAccessType] = None,
                     tags: Optional[Mapping[str, str]] = None)
    func NewBatchAccount(ctx *Context, name string, args BatchAccountArgs, opts ...ResourceOption) (*BatchAccount, error)
    public BatchAccount(string name, BatchAccountArgs args, CustomResourceOptions? opts = null)
    public BatchAccount(String name, BatchAccountArgs args)
    public BatchAccount(String name, BatchAccountArgs args, CustomResourceOptions options)
    
    type: azure-native:batch:BatchAccount
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args BatchAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args BatchAccountArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args BatchAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BatchAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BatchAccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var batchAccountResource = new AzureNative.Batch.BatchAccount("batchAccountResource", new()
    {
        ResourceGroupName = "string",
        AccountName = "string",
        AllowedAuthenticationModes = new[]
        {
            AzureNative.Batch.AuthenticationMode.SharedKey,
        },
        AutoStorage = new AzureNative.Batch.Inputs.AutoStorageBasePropertiesArgs
        {
            StorageAccountId = "string",
            AuthenticationMode = AzureNative.Batch.AutoStorageAuthenticationMode.StorageKeys,
            NodeIdentityReference = new AzureNative.Batch.Inputs.ComputeNodeIdentityReferenceArgs
            {
                ResourceId = "string",
            },
        },
        Encryption = new AzureNative.Batch.Inputs.EncryptionPropertiesArgs
        {
            KeySource = AzureNative.Batch.KeySource.Microsoft_Batch,
            KeyVaultProperties = new AzureNative.Batch.Inputs.KeyVaultPropertiesArgs
            {
                KeyIdentifier = "string",
            },
        },
        Identity = new AzureNative.Batch.Inputs.BatchAccountIdentityArgs
        {
            Type = AzureNative.Batch.ResourceIdentityType.SystemAssigned,
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        KeyVaultReference = new AzureNative.Batch.Inputs.KeyVaultReferenceArgs
        {
            Id = "string",
            Url = "string",
        },
        Location = "string",
        NetworkProfile = new AzureNative.Batch.Inputs.NetworkProfileArgs
        {
            AccountAccess = new AzureNative.Batch.Inputs.EndpointAccessProfileArgs
            {
                DefaultAction = AzureNative.Batch.EndpointAccessDefaultAction.Allow,
                IpRules = new[]
                {
                    new AzureNative.Batch.Inputs.IPRuleArgs
                    {
                        Action = AzureNative.Batch.IPRuleAction.Allow,
                        Value = "string",
                    },
                },
            },
            NodeManagementAccess = new AzureNative.Batch.Inputs.EndpointAccessProfileArgs
            {
                DefaultAction = AzureNative.Batch.EndpointAccessDefaultAction.Allow,
                IpRules = new[]
                {
                    new AzureNative.Batch.Inputs.IPRuleArgs
                    {
                        Action = AzureNative.Batch.IPRuleAction.Allow,
                        Value = "string",
                    },
                },
            },
        },
        PoolAllocationMode = AzureNative.Batch.PoolAllocationMode.BatchService,
        PublicNetworkAccess = AzureNative.Batch.PublicNetworkAccessType.Enabled,
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := batch.NewBatchAccount(ctx, "batchAccountResource", &batch.BatchAccountArgs{
    	ResourceGroupName: pulumi.String("string"),
    	AccountName:       pulumi.String("string"),
    	AllowedAuthenticationModes: batch.AuthenticationModeArray{
    		batch.AuthenticationModeSharedKey,
    	},
    	AutoStorage: &batch.AutoStorageBasePropertiesArgs{
    		StorageAccountId:   pulumi.String("string"),
    		AuthenticationMode: batch.AutoStorageAuthenticationModeStorageKeys,
    		NodeIdentityReference: &batch.ComputeNodeIdentityReferenceArgs{
    			ResourceId: pulumi.String("string"),
    		},
    	},
    	Encryption: &batch.EncryptionPropertiesArgs{
    		KeySource: batch.KeySource_Microsoft_Batch,
    		KeyVaultProperties: &batch.KeyVaultPropertiesArgs{
    			KeyIdentifier: pulumi.String("string"),
    		},
    	},
    	Identity: &batch.BatchAccountIdentityArgs{
    		Type: batch.ResourceIdentityTypeSystemAssigned,
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	KeyVaultReference: &batch.KeyVaultReferenceArgs{
    		Id:  pulumi.String("string"),
    		Url: pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	NetworkProfile: &batch.NetworkProfileArgs{
    		AccountAccess: &batch.EndpointAccessProfileArgs{
    			DefaultAction: batch.EndpointAccessDefaultActionAllow,
    			IpRules: batch.IPRuleArray{
    				&batch.IPRuleArgs{
    					Action: batch.IPRuleActionAllow,
    					Value:  pulumi.String("string"),
    				},
    			},
    		},
    		NodeManagementAccess: &batch.EndpointAccessProfileArgs{
    			DefaultAction: batch.EndpointAccessDefaultActionAllow,
    			IpRules: batch.IPRuleArray{
    				&batch.IPRuleArgs{
    					Action: batch.IPRuleActionAllow,
    					Value:  pulumi.String("string"),
    				},
    			},
    		},
    	},
    	PoolAllocationMode:  batch.PoolAllocationModeBatchService,
    	PublicNetworkAccess: batch.PublicNetworkAccessTypeEnabled,
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var batchAccountResource = new BatchAccount("batchAccountResource", BatchAccountArgs.builder()
        .resourceGroupName("string")
        .accountName("string")
        .allowedAuthenticationModes("SharedKey")
        .autoStorage(AutoStorageBasePropertiesArgs.builder()
            .storageAccountId("string")
            .authenticationMode("StorageKeys")
            .nodeIdentityReference(ComputeNodeIdentityReferenceArgs.builder()
                .resourceId("string")
                .build())
            .build())
        .encryption(EncryptionPropertiesArgs.builder()
            .keySource("Microsoft.Batch")
            .keyVaultProperties(KeyVaultPropertiesArgs.builder()
                .keyIdentifier("string")
                .build())
            .build())
        .identity(BatchAccountIdentityArgs.builder()
            .type("SystemAssigned")
            .userAssignedIdentities("string")
            .build())
        .keyVaultReference(KeyVaultReferenceArgs.builder()
            .id("string")
            .url("string")
            .build())
        .location("string")
        .networkProfile(NetworkProfileArgs.builder()
            .accountAccess(EndpointAccessProfileArgs.builder()
                .defaultAction("Allow")
                .ipRules(IPRuleArgs.builder()
                    .action("Allow")
                    .value("string")
                    .build())
                .build())
            .nodeManagementAccess(EndpointAccessProfileArgs.builder()
                .defaultAction("Allow")
                .ipRules(IPRuleArgs.builder()
                    .action("Allow")
                    .value("string")
                    .build())
                .build())
            .build())
        .poolAllocationMode("BatchService")
        .publicNetworkAccess("Enabled")
        .tags(Map.of("string", "string"))
        .build());
    
    batch_account_resource = azure_native.batch.BatchAccount("batchAccountResource",
        resource_group_name="string",
        account_name="string",
        allowed_authentication_modes=[azure_native.batch.AuthenticationMode.SHARED_KEY],
        auto_storage={
            "storage_account_id": "string",
            "authentication_mode": azure_native.batch.AutoStorageAuthenticationMode.STORAGE_KEYS,
            "node_identity_reference": {
                "resource_id": "string",
            },
        },
        encryption={
            "key_source": azure_native.batch.KeySource.MICROSOFT_BATCH,
            "key_vault_properties": {
                "key_identifier": "string",
            },
        },
        identity={
            "type": azure_native.batch.ResourceIdentityType.SYSTEM_ASSIGNED,
            "user_assigned_identities": ["string"],
        },
        key_vault_reference={
            "id": "string",
            "url": "string",
        },
        location="string",
        network_profile={
            "account_access": {
                "default_action": azure_native.batch.EndpointAccessDefaultAction.ALLOW,
                "ip_rules": [{
                    "action": azure_native.batch.IPRuleAction.ALLOW,
                    "value": "string",
                }],
            },
            "node_management_access": {
                "default_action": azure_native.batch.EndpointAccessDefaultAction.ALLOW,
                "ip_rules": [{
                    "action": azure_native.batch.IPRuleAction.ALLOW,
                    "value": "string",
                }],
            },
        },
        pool_allocation_mode=azure_native.batch.PoolAllocationMode.BATCH_SERVICE,
        public_network_access=azure_native.batch.PublicNetworkAccessType.ENABLED,
        tags={
            "string": "string",
        })
    
    const batchAccountResource = new azure_native.batch.BatchAccount("batchAccountResource", {
        resourceGroupName: "string",
        accountName: "string",
        allowedAuthenticationModes: [azure_native.batch.AuthenticationMode.SharedKey],
        autoStorage: {
            storageAccountId: "string",
            authenticationMode: azure_native.batch.AutoStorageAuthenticationMode.StorageKeys,
            nodeIdentityReference: {
                resourceId: "string",
            },
        },
        encryption: {
            keySource: azure_native.batch.KeySource.Microsoft_Batch,
            keyVaultProperties: {
                keyIdentifier: "string",
            },
        },
        identity: {
            type: azure_native.batch.ResourceIdentityType.SystemAssigned,
            userAssignedIdentities: ["string"],
        },
        keyVaultReference: {
            id: "string",
            url: "string",
        },
        location: "string",
        networkProfile: {
            accountAccess: {
                defaultAction: azure_native.batch.EndpointAccessDefaultAction.Allow,
                ipRules: [{
                    action: azure_native.batch.IPRuleAction.Allow,
                    value: "string",
                }],
            },
            nodeManagementAccess: {
                defaultAction: azure_native.batch.EndpointAccessDefaultAction.Allow,
                ipRules: [{
                    action: azure_native.batch.IPRuleAction.Allow,
                    value: "string",
                }],
            },
        },
        poolAllocationMode: azure_native.batch.PoolAllocationMode.BatchService,
        publicNetworkAccess: azure_native.batch.PublicNetworkAccessType.Enabled,
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:batch:BatchAccount
    properties:
        accountName: string
        allowedAuthenticationModes:
            - SharedKey
        autoStorage:
            authenticationMode: StorageKeys
            nodeIdentityReference:
                resourceId: string
            storageAccountId: string
        encryption:
            keySource: Microsoft.Batch
            keyVaultProperties:
                keyIdentifier: string
        identity:
            type: SystemAssigned
            userAssignedIdentities:
                - string
        keyVaultReference:
            id: string
            url: string
        location: string
        networkProfile:
            accountAccess:
                defaultAction: Allow
                ipRules:
                    - action: Allow
                      value: string
            nodeManagementAccess:
                defaultAction: Allow
                ipRules:
                    - action: Allow
                      value: string
        poolAllocationMode: BatchService
        publicNetworkAccess: Enabled
        resourceGroupName: string
        tags:
            string: string
    

    BatchAccount Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The BatchAccount resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccountName string
    A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
    AllowedAuthenticationModes List<Pulumi.AzureNative.Batch.AuthenticationMode>
    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.
    AutoStorage Pulumi.AzureNative.Batch.Inputs.AutoStorageBaseProperties
    The properties related to the auto-storage account.
    Encryption Pulumi.AzureNative.Batch.Inputs.EncryptionProperties
    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.
    Identity Pulumi.AzureNative.Batch.Inputs.BatchAccountIdentity
    The identity of the Batch account.
    KeyVaultReference Pulumi.AzureNative.Batch.Inputs.KeyVaultReference
    A reference to the Azure key vault associated with the Batch account.
    Location string
    The region in which to create the account.
    NetworkProfile Pulumi.AzureNative.Batch.Inputs.NetworkProfile
    The network profile only takes effect when publicNetworkAccess is enabled.
    PoolAllocationMode Pulumi.AzureNative.Batch.PoolAllocationMode
    The pool allocation mode also affects how clients may authenticate to the Batch Service API. If the mode is BatchService, clients may authenticate using access keys or Microsoft Entra ID. If the mode is UserSubscription, clients must use Microsoft Entra ID. The default is BatchService.
    PublicNetworkAccess Pulumi.AzureNative.Batch.PublicNetworkAccessType
    The network access type for operating on the resources in the Batch account.
    Tags Dictionary<string, string>
    The user-specified tags associated with the account.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccountName string
    A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
    AllowedAuthenticationModes []AuthenticationMode
    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.
    AutoStorage AutoStorageBasePropertiesArgs
    The properties related to the auto-storage account.
    Encryption EncryptionPropertiesArgs
    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.
    Identity BatchAccountIdentityArgs
    The identity of the Batch account.
    KeyVaultReference KeyVaultReferenceArgs
    A reference to the Azure key vault associated with the Batch account.
    Location string
    The region in which to create the account.
    NetworkProfile NetworkProfileArgs
    The network profile only takes effect when publicNetworkAccess is enabled.
    PoolAllocationMode PoolAllocationMode
    The pool allocation mode also affects how clients may authenticate to the Batch Service API. If the mode is BatchService, clients may authenticate using access keys or Microsoft Entra ID. If the mode is UserSubscription, clients must use Microsoft Entra ID. The default is BatchService.
    PublicNetworkAccess PublicNetworkAccessType
    The network access type for operating on the resources in the Batch account.
    Tags map[string]string
    The user-specified tags associated with the account.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accountName String
    A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
    allowedAuthenticationModes List<AuthenticationMode>
    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.
    autoStorage AutoStorageBaseProperties
    The properties related to the auto-storage account.
    encryption EncryptionProperties
    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.
    identity BatchAccountIdentity
    The identity of the Batch account.
    keyVaultReference KeyVaultReference
    A reference to the Azure key vault associated with the Batch account.
    location String
    The region in which to create the account.
    networkProfile NetworkProfile
    The network profile only takes effect when publicNetworkAccess is enabled.
    poolAllocationMode PoolAllocationMode
    The pool allocation mode also affects how clients may authenticate to the Batch Service API. If the mode is BatchService, clients may authenticate using access keys or Microsoft Entra ID. If the mode is UserSubscription, clients must use Microsoft Entra ID. The default is BatchService.
    publicNetworkAccess PublicNetworkAccessType
    The network access type for operating on the resources in the Batch account.
    tags Map<String,String>
    The user-specified tags associated with the account.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    accountName string
    A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
    allowedAuthenticationModes AuthenticationMode[]
    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.
    autoStorage AutoStorageBaseProperties
    The properties related to the auto-storage account.
    encryption EncryptionProperties
    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.
    identity BatchAccountIdentity
    The identity of the Batch account.
    keyVaultReference KeyVaultReference
    A reference to the Azure key vault associated with the Batch account.
    location string
    The region in which to create the account.
    networkProfile NetworkProfile
    The network profile only takes effect when publicNetworkAccess is enabled.
    poolAllocationMode PoolAllocationMode
    The pool allocation mode also affects how clients may authenticate to the Batch Service API. If the mode is BatchService, clients may authenticate using access keys or Microsoft Entra ID. If the mode is UserSubscription, clients must use Microsoft Entra ID. The default is BatchService.
    publicNetworkAccess PublicNetworkAccessType
    The network access type for operating on the resources in the Batch account.
    tags {[key: string]: string}
    The user-specified tags associated with the account.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    account_name str
    A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
    allowed_authentication_modes Sequence[AuthenticationMode]
    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.
    auto_storage AutoStorageBasePropertiesArgs
    The properties related to the auto-storage account.
    encryption EncryptionPropertiesArgs
    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.
    identity BatchAccountIdentityArgs
    The identity of the Batch account.
    key_vault_reference KeyVaultReferenceArgs
    A reference to the Azure key vault associated with the Batch account.
    location str
    The region in which to create the account.
    network_profile NetworkProfileArgs
    The network profile only takes effect when publicNetworkAccess is enabled.
    pool_allocation_mode PoolAllocationMode
    The pool allocation mode also affects how clients may authenticate to the Batch Service API. If the mode is BatchService, clients may authenticate using access keys or Microsoft Entra ID. If the mode is UserSubscription, clients must use Microsoft Entra ID. The default is BatchService.
    public_network_access PublicNetworkAccessType
    The network access type for operating on the resources in the Batch account.
    tags Mapping[str, str]
    The user-specified tags associated with the account.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accountName String
    A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
    allowedAuthenticationModes List<"SharedKey" | "AAD" | "TaskAuthenticationToken">
    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.
    autoStorage Property Map
    The properties related to the auto-storage account.
    encryption Property Map
    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.
    identity Property Map
    The identity of the Batch account.
    keyVaultReference Property Map
    A reference to the Azure key vault associated with the Batch account.
    location String
    The region in which to create the account.
    networkProfile Property Map
    The network profile only takes effect when publicNetworkAccess is enabled.
    poolAllocationMode "BatchService" | "UserSubscription"
    The pool allocation mode also affects how clients may authenticate to the Batch Service API. If the mode is BatchService, clients may authenticate using access keys or Microsoft Entra ID. If the mode is UserSubscription, clients must use Microsoft Entra ID. The default is BatchService.
    publicNetworkAccess "Enabled" | "Disabled" | "SecuredByPerimeter"
    The network access type for operating on the resources in the Batch account.
    tags Map<String>
    The user-specified tags associated with the account.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BatchAccount resource produces the following output properties:

    AccountEndpoint string
    The account endpoint used to interact with the Batch service.
    ActiveJobAndJobScheduleQuota int
    The active job and job schedule quota for the Batch account.
    AzureApiVersion string
    The Azure API version of the resource.
    DedicatedCoreQuota int
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    DedicatedCoreQuotaPerVMFamily List<Pulumi.AzureNative.Batch.Outputs.VirtualMachineFamilyCoreQuotaResponse>
    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.
    DedicatedCoreQuotaPerVMFamilyEnforced bool
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    LowPriorityCoreQuota int
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    Name string
    The name of the resource
    NodeManagementEndpoint string
    The endpoint used by compute node to connect to the Batch node management service.
    PoolQuota int
    The pool quota for the Batch account.
    PrivateEndpointConnections List<Pulumi.AzureNative.Batch.Outputs.PrivateEndpointConnectionResponse>
    List of private endpoint connections associated with the Batch account
    ProvisioningState string
    The provisioned state of the resource
    SystemData Pulumi.AzureNative.Batch.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AccountEndpoint string
    The account endpoint used to interact with the Batch service.
    ActiveJobAndJobScheduleQuota int
    The active job and job schedule quota for the Batch account.
    AzureApiVersion string
    The Azure API version of the resource.
    DedicatedCoreQuota int
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    DedicatedCoreQuotaPerVMFamily []VirtualMachineFamilyCoreQuotaResponse
    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.
    DedicatedCoreQuotaPerVMFamilyEnforced bool
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    LowPriorityCoreQuota int
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    Name string
    The name of the resource
    NodeManagementEndpoint string
    The endpoint used by compute node to connect to the Batch node management service.
    PoolQuota int
    The pool quota for the Batch account.
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    List of private endpoint connections associated with the Batch account
    ProvisioningState string
    The provisioned state of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    accountEndpoint String
    The account endpoint used to interact with the Batch service.
    activeJobAndJobScheduleQuota Integer
    The active job and job schedule quota for the Batch account.
    azureApiVersion String
    The Azure API version of the resource.
    dedicatedCoreQuota Integer
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    dedicatedCoreQuotaPerVMFamily List<VirtualMachineFamilyCoreQuotaResponse>
    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.
    dedicatedCoreQuotaPerVMFamilyEnforced Boolean
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    lowPriorityCoreQuota Integer
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    name String
    The name of the resource
    nodeManagementEndpoint String
    The endpoint used by compute node to connect to the Batch node management service.
    poolQuota Integer
    The pool quota for the Batch account.
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    List of private endpoint connections associated with the Batch account
    provisioningState String
    The provisioned state of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    accountEndpoint string
    The account endpoint used to interact with the Batch service.
    activeJobAndJobScheduleQuota number
    The active job and job schedule quota for the Batch account.
    azureApiVersion string
    The Azure API version of the resource.
    dedicatedCoreQuota number
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    dedicatedCoreQuotaPerVMFamily VirtualMachineFamilyCoreQuotaResponse[]
    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.
    dedicatedCoreQuotaPerVMFamilyEnforced boolean
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    lowPriorityCoreQuota number
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    name string
    The name of the resource
    nodeManagementEndpoint string
    The endpoint used by compute node to connect to the Batch node management service.
    poolQuota number
    The pool quota for the Batch account.
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    List of private endpoint connections associated with the Batch account
    provisioningState string
    The provisioned state of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    account_endpoint str
    The account endpoint used to interact with the Batch service.
    active_job_and_job_schedule_quota int
    The active job and job schedule quota for the Batch account.
    azure_api_version str
    The Azure API version of the resource.
    dedicated_core_quota int
    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 Sequence[VirtualMachineFamilyCoreQuotaResponse]
    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 bool
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    low_priority_core_quota int
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    name str
    The name of the resource
    node_management_endpoint str
    The endpoint used by compute node to connect to the Batch node management service.
    pool_quota int
    The pool quota for the Batch account.
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    List of private endpoint connections associated with the Batch account
    provisioning_state str
    The provisioned state of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    accountEndpoint String
    The account endpoint used to interact with the Batch service.
    activeJobAndJobScheduleQuota Number
    The active job and job schedule quota for the Batch account.
    azureApiVersion String
    The Azure API version of the resource.
    dedicatedCoreQuota Number
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    dedicatedCoreQuotaPerVMFamily List<Property Map>
    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.
    dedicatedCoreQuotaPerVMFamilyEnforced Boolean
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    lowPriorityCoreQuota Number
    For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned.
    name String
    The name of the resource
    nodeManagementEndpoint String
    The endpoint used by compute node to connect to the Batch node management service.
    poolQuota Number
    The pool quota for the Batch account.
    privateEndpointConnections List<Property Map>
    List of private endpoint connections associated with the Batch account
    provisioningState String
    The provisioned state of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AuthenticationMode, AuthenticationModeArgs

    SharedKey
    SharedKey The authentication mode using shared keys.
    AAD
    AAD The authentication mode using Microsoft Entra ID.
    TaskAuthenticationToken
    TaskAuthenticationToken The authentication mode using task authentication tokens.
    AuthenticationModeSharedKey
    SharedKey The authentication mode using shared keys.
    AuthenticationModeAAD
    AAD The authentication mode using Microsoft Entra ID.
    AuthenticationModeTaskAuthenticationToken
    TaskAuthenticationToken The authentication mode using task authentication tokens.
    SharedKey
    SharedKey The authentication mode using shared keys.
    AAD
    AAD The authentication mode using Microsoft Entra ID.
    TaskAuthenticationToken
    TaskAuthenticationToken The authentication mode using task authentication tokens.
    SharedKey
    SharedKey The authentication mode using shared keys.
    AAD
    AAD The authentication mode using Microsoft Entra ID.
    TaskAuthenticationToken
    TaskAuthenticationToken The authentication mode using task authentication tokens.
    SHARED_KEY
    SharedKey The authentication mode using shared keys.
    AAD
    AAD The authentication mode using Microsoft Entra ID.
    TASK_AUTHENTICATION_TOKEN
    TaskAuthenticationToken The authentication mode using task authentication tokens.
    "SharedKey"
    SharedKey The authentication mode using shared keys.
    "AAD"
    AAD The authentication mode using Microsoft Entra ID.
    "TaskAuthenticationToken"
    TaskAuthenticationToken The authentication mode using task authentication tokens.

    AutoStorageAuthenticationMode, AutoStorageAuthenticationModeArgs

    StorageKeys
    StorageKeys The Batch service will authenticate requests to auto-storage using storage account keys.
    BatchAccountManagedIdentity
    BatchAccountManagedIdentity The Batch service will authenticate requests to auto-storage using the managed identity assigned to the Batch account.
    AutoStorageAuthenticationModeStorageKeys
    StorageKeys The Batch service will authenticate requests to auto-storage using storage account keys.
    AutoStorageAuthenticationModeBatchAccountManagedIdentity
    BatchAccountManagedIdentity The Batch service will authenticate requests to auto-storage using the managed identity assigned to the Batch account.
    StorageKeys
    StorageKeys The Batch service will authenticate requests to auto-storage using storage account keys.
    BatchAccountManagedIdentity
    BatchAccountManagedIdentity The Batch service will authenticate requests to auto-storage using the managed identity assigned to the Batch account.
    StorageKeys
    StorageKeys The Batch service will authenticate requests to auto-storage using storage account keys.
    BatchAccountManagedIdentity
    BatchAccountManagedIdentity The Batch service will authenticate requests to auto-storage using the managed identity assigned to the Batch account.
    STORAGE_KEYS
    StorageKeys The Batch service will authenticate requests to auto-storage using storage account keys.
    BATCH_ACCOUNT_MANAGED_IDENTITY
    BatchAccountManagedIdentity The Batch service will authenticate requests to auto-storage using the managed identity assigned to the Batch account.
    "StorageKeys"
    StorageKeys The Batch service will authenticate requests to auto-storage using storage account keys.
    "BatchAccountManagedIdentity"
    BatchAccountManagedIdentity The Batch service will authenticate requests to auto-storage using the managed identity assigned to the Batch account.

    AutoStorageBaseProperties, AutoStorageBasePropertiesArgs

    The properties related to the auto-storage account.
    StorageAccountId string
    The resource ID of the storage account to be used for auto-storage account.
    AuthenticationMode Pulumi.AzureNative.Batch.AutoStorageAuthenticationMode
    The authentication mode which the Batch service will use to manage the auto-storage account.
    NodeIdentityReference Pulumi.AzureNative.Batch.Inputs.ComputeNodeIdentityReference
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    StorageAccountId string
    The resource ID of the storage account to be used for auto-storage account.
    AuthenticationMode AutoStorageAuthenticationMode
    The authentication mode which the Batch service will use to manage the auto-storage account.
    NodeIdentityReference ComputeNodeIdentityReference
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    storageAccountId String
    The resource ID of the storage account to be used for auto-storage account.
    authenticationMode AutoStorageAuthenticationMode
    The authentication mode which the Batch service will use to manage the auto-storage account.
    nodeIdentityReference ComputeNodeIdentityReference
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    storageAccountId string
    The resource ID of the storage account to be used for auto-storage account.
    authenticationMode AutoStorageAuthenticationMode
    The authentication mode which the Batch service will use to manage the auto-storage account.
    nodeIdentityReference ComputeNodeIdentityReference
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    storage_account_id str
    The resource ID of the storage account to be used for auto-storage account.
    authentication_mode AutoStorageAuthenticationMode
    The authentication mode which the Batch service will use to manage the auto-storage account.
    node_identity_reference ComputeNodeIdentityReference
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    storageAccountId String
    The resource ID of the storage account to be used for auto-storage account.
    authenticationMode "StorageKeys" | "BatchAccountManagedIdentity"
    The authentication mode which the Batch service will use to manage the auto-storage account.
    nodeIdentityReference Property Map
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.

    AutoStoragePropertiesResponse, AutoStoragePropertiesResponseArgs

    Contains information about the auto-storage account associated with a Batch account.
    LastKeySync string
    The UTC time at which storage keys were last synchronized with the Batch account.
    StorageAccountId string
    The resource ID of the storage account to be used for auto-storage account.
    AuthenticationMode string
    The authentication mode which the Batch service will use to manage the auto-storage account.
    NodeIdentityReference Pulumi.AzureNative.Batch.Inputs.ComputeNodeIdentityReferenceResponse
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    LastKeySync string
    The UTC time at which storage keys were last synchronized with the Batch account.
    StorageAccountId string
    The resource ID of the storage account to be used for auto-storage account.
    AuthenticationMode string
    The authentication mode which the Batch service will use to manage the auto-storage account.
    NodeIdentityReference ComputeNodeIdentityReferenceResponse
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    lastKeySync String
    The UTC time at which storage keys were last synchronized with the Batch account.
    storageAccountId String
    The resource ID of the storage account to be used for auto-storage account.
    authenticationMode String
    The authentication mode which the Batch service will use to manage the auto-storage account.
    nodeIdentityReference ComputeNodeIdentityReferenceResponse
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    lastKeySync string
    The UTC time at which storage keys were last synchronized with the Batch account.
    storageAccountId string
    The resource ID of the storage account to be used for auto-storage account.
    authenticationMode string
    The authentication mode which the Batch service will use to manage the auto-storage account.
    nodeIdentityReference ComputeNodeIdentityReferenceResponse
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    last_key_sync str
    The UTC time at which storage keys were last synchronized with the Batch account.
    storage_account_id str
    The resource ID of the storage account to be used for auto-storage account.
    authentication_mode str
    The authentication mode which the Batch service will use to manage the auto-storage account.
    node_identity_reference ComputeNodeIdentityReferenceResponse
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.
    lastKeySync String
    The UTC time at which storage keys were last synchronized with the Batch account.
    storageAccountId String
    The resource ID of the storage account to be used for auto-storage account.
    authenticationMode String
    The authentication mode which the Batch service will use to manage the auto-storage account.
    nodeIdentityReference Property Map
    The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage.

    BatchAccountIdentity, BatchAccountIdentityArgs

    The identity of the Batch account, if configured. This is used when the user specifies 'Microsoft.KeyVault' as their Batch account encryption configuration or when ManagedIdentity is selected as the auto-storage authentication mode.
    Type Pulumi.AzureNative.Batch.ResourceIdentityType
    The type of identity used for the Batch account.
    UserAssignedIdentities List<string>
    The list of user identities associated with the Batch account.
    Type ResourceIdentityType
    The type of identity used for the Batch account.
    UserAssignedIdentities []string
    The list of user identities associated with the Batch account.
    type ResourceIdentityType
    The type of identity used for the Batch account.
    userAssignedIdentities List<String>
    The list of user identities associated with the Batch account.
    type ResourceIdentityType
    The type of identity used for the Batch account.
    userAssignedIdentities string[]
    The list of user identities associated with the Batch account.
    type ResourceIdentityType
    The type of identity used for the Batch account.
    user_assigned_identities Sequence[str]
    The list of user identities associated with the Batch account.
    type "SystemAssigned" | "UserAssigned" | "None"
    The type of identity used for the Batch account.
    userAssignedIdentities List<String>
    The list of user identities associated with the Batch account.

    BatchAccountIdentityResponse, BatchAccountIdentityResponseArgs

    The identity of the Batch account, if configured. This is used when the user specifies 'Microsoft.KeyVault' as their Batch account encryption configuration or when ManagedIdentity is selected as the auto-storage authentication mode.
    PrincipalId string
    The principal id of the Batch account. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant id associated with the Batch account. This property will only be provided for a system assigned identity.
    Type string
    The type of identity used for the Batch account.
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Batch.Inputs.UserAssignedIdentitiesResponse>
    The list of user identities associated with the Batch account.
    PrincipalId string
    The principal id of the Batch account. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant id associated with the Batch account. This property will only be provided for a system assigned identity.
    Type string
    The type of identity used for the Batch account.
    UserAssignedIdentities map[string]UserAssignedIdentitiesResponse
    The list of user identities associated with the Batch account.
    principalId String
    The principal id of the Batch account. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant id associated with the Batch account. This property will only be provided for a system assigned identity.
    type String
    The type of identity used for the Batch account.
    userAssignedIdentities Map<String,UserAssignedIdentitiesResponse>
    The list of user identities associated with the Batch account.
    principalId string
    The principal id of the Batch account. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant id associated with the Batch account. This property will only be provided for a system assigned identity.
    type string
    The type of identity used for the Batch account.
    userAssignedIdentities {[key: string]: UserAssignedIdentitiesResponse}
    The list of user identities associated with the Batch account.
    principal_id str
    The principal id of the Batch account. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant id associated with the Batch account. This property will only be provided for a system assigned identity.
    type str
    The type of identity used for the Batch account.
    user_assigned_identities Mapping[str, UserAssignedIdentitiesResponse]
    The list of user identities associated with the Batch account.
    principalId String
    The principal id of the Batch account. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant id associated with the Batch account. This property will only be provided for a system assigned identity.
    type String
    The type of identity used for the Batch account.
    userAssignedIdentities Map<Property Map>
    The list of user identities associated with the Batch account.

    ComputeNodeIdentityReference, ComputeNodeIdentityReferenceArgs

    The reference to a user assigned identity associated with the Batch pool which a compute node will use.
    ResourceId string
    The ARM resource id of the user assigned identity.
    ResourceId string
    The ARM resource id of the user assigned identity.
    resourceId String
    The ARM resource id of the user assigned identity.
    resourceId string
    The ARM resource id of the user assigned identity.
    resource_id str
    The ARM resource id of the user assigned identity.
    resourceId String
    The ARM resource id of the user assigned identity.

    ComputeNodeIdentityReferenceResponse, ComputeNodeIdentityReferenceResponseArgs

    The reference to a user assigned identity associated with the Batch pool which a compute node will use.
    ResourceId string
    The ARM resource id of the user assigned identity.
    ResourceId string
    The ARM resource id of the user assigned identity.
    resourceId String
    The ARM resource id of the user assigned identity.
    resourceId string
    The ARM resource id of the user assigned identity.
    resource_id str
    The ARM resource id of the user assigned identity.
    resourceId String
    The ARM resource id of the user assigned identity.

    EncryptionProperties, EncryptionPropertiesArgs

    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.
    KeySource KeySource
    Type of the key source.
    KeyVaultProperties KeyVaultProperties
    Additional details when using Microsoft.KeyVault
    keySource KeySource
    Type of the key source.
    keyVaultProperties KeyVaultProperties
    Additional details when using Microsoft.KeyVault
    keySource KeySource
    Type of the key source.
    keyVaultProperties KeyVaultProperties
    Additional details when using Microsoft.KeyVault
    key_source KeySource
    Type of the key source.
    key_vault_properties KeyVaultProperties
    Additional details when using Microsoft.KeyVault
    keySource "Microsoft.Batch" | "Microsoft.KeyVault"
    Type of the key source.
    keyVaultProperties Property Map
    Additional details when using Microsoft.KeyVault

    EncryptionPropertiesResponse, EncryptionPropertiesResponseArgs

    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.
    KeySource string
    Type of the key source.
    KeyVaultProperties Pulumi.AzureNative.Batch.Inputs.KeyVaultPropertiesResponse
    Additional details when using Microsoft.KeyVault
    KeySource string
    Type of the key source.
    KeyVaultProperties KeyVaultPropertiesResponse
    Additional details when using Microsoft.KeyVault
    keySource String
    Type of the key source.
    keyVaultProperties KeyVaultPropertiesResponse
    Additional details when using Microsoft.KeyVault
    keySource string
    Type of the key source.
    keyVaultProperties KeyVaultPropertiesResponse
    Additional details when using Microsoft.KeyVault
    key_source str
    Type of the key source.
    key_vault_properties KeyVaultPropertiesResponse
    Additional details when using Microsoft.KeyVault
    keySource String
    Type of the key source.
    keyVaultProperties Property Map
    Additional details when using Microsoft.KeyVault

    EndpointAccessDefaultAction, EndpointAccessDefaultActionArgs

    Allow
    Allow Allow client access.
    Deny
    Deny Deny client access.
    EndpointAccessDefaultActionAllow
    Allow Allow client access.
    EndpointAccessDefaultActionDeny
    Deny Deny client access.
    Allow
    Allow Allow client access.
    Deny
    Deny Deny client access.
    Allow
    Allow Allow client access.
    Deny
    Deny Deny client access.
    ALLOW
    Allow Allow client access.
    DENY
    Deny Deny client access.
    "Allow"
    Allow Allow client access.
    "Deny"
    Deny Deny client access.

    EndpointAccessProfile, EndpointAccessProfileArgs

    Network access profile for Batch endpoint.
    DefaultAction Pulumi.AzureNative.Batch.EndpointAccessDefaultAction
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    IpRules List<Pulumi.AzureNative.Batch.Inputs.IPRule>
    Array of IP ranges to filter client IP address.
    DefaultAction EndpointAccessDefaultAction
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    IpRules []IPRule
    Array of IP ranges to filter client IP address.
    defaultAction EndpointAccessDefaultAction
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ipRules List<IPRule>
    Array of IP ranges to filter client IP address.
    defaultAction EndpointAccessDefaultAction
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ipRules IPRule[]
    Array of IP ranges to filter client IP address.
    default_action EndpointAccessDefaultAction
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ip_rules Sequence[IPRule]
    Array of IP ranges to filter client IP address.
    defaultAction "Allow" | "Deny"
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ipRules List<Property Map>
    Array of IP ranges to filter client IP address.

    EndpointAccessProfileResponse, EndpointAccessProfileResponseArgs

    Network access profile for Batch endpoint.
    DefaultAction string
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    IpRules List<Pulumi.AzureNative.Batch.Inputs.IPRuleResponse>
    Array of IP ranges to filter client IP address.
    DefaultAction string
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    IpRules []IPRuleResponse
    Array of IP ranges to filter client IP address.
    defaultAction String
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ipRules List<IPRuleResponse>
    Array of IP ranges to filter client IP address.
    defaultAction string
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ipRules IPRuleResponse[]
    Array of IP ranges to filter client IP address.
    default_action str
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ip_rules Sequence[IPRuleResponse]
    Array of IP ranges to filter client IP address.
    defaultAction String
    Default action for endpoint access. It is only applicable when publicNetworkAccess is enabled.
    ipRules List<Property Map>
    Array of IP ranges to filter client IP address.

    IPRule, IPRuleArgs

    Rule to filter client IP address.
    Action Pulumi.AzureNative.Batch.IPRuleAction
    Action when client IP address is matched.
    Value string
    IPv4 address, or IPv4 address range in CIDR format.
    Action IPRuleAction
    Action when client IP address is matched.
    Value string
    IPv4 address, or IPv4 address range in CIDR format.
    action IPRuleAction
    Action when client IP address is matched.
    value String
    IPv4 address, or IPv4 address range in CIDR format.
    action IPRuleAction
    Action when client IP address is matched.
    value string
    IPv4 address, or IPv4 address range in CIDR format.
    action IPRuleAction
    Action when client IP address is matched.
    value str
    IPv4 address, or IPv4 address range in CIDR format.
    action "Allow"
    Action when client IP address is matched.
    value String
    IPv4 address, or IPv4 address range in CIDR format.

    IPRuleAction, IPRuleActionArgs

    Allow
    Allow Allow access for the matched client IP address.
    IPRuleActionAllow
    Allow Allow access for the matched client IP address.
    Allow
    Allow Allow access for the matched client IP address.
    Allow
    Allow Allow access for the matched client IP address.
    ALLOW
    Allow Allow access for the matched client IP address.
    "Allow"
    Allow Allow access for the matched client IP address.

    IPRuleResponse, IPRuleResponseArgs

    Rule to filter client IP address.
    Action string
    Action when client IP address is matched.
    Value string
    IPv4 address, or IPv4 address range in CIDR format.
    Action string
    Action when client IP address is matched.
    Value string
    IPv4 address, or IPv4 address range in CIDR format.
    action String
    Action when client IP address is matched.
    value String
    IPv4 address, or IPv4 address range in CIDR format.
    action string
    Action when client IP address is matched.
    value string
    IPv4 address, or IPv4 address range in CIDR format.
    action str
    Action when client IP address is matched.
    value str
    IPv4 address, or IPv4 address range in CIDR format.
    action String
    Action when client IP address is matched.
    value String
    IPv4 address, or IPv4 address range in CIDR format.

    KeySource, KeySourceArgs

    Microsoft_Batch
    Microsoft.Batch Batch creates and manages the encryption keys used to protect the account data.
    Microsoft_KeyVault
    Microsoft.KeyVault The encryption keys used to protect the account data are stored in an external key vault. If this is set then the Batch Account identity must be set to SystemAssigned and a valid Key Identifier must also be supplied under the keyVaultProperties.
    KeySource_Microsoft_Batch
    Microsoft.Batch Batch creates and manages the encryption keys used to protect the account data.
    KeySource_Microsoft_KeyVault
    Microsoft.KeyVault The encryption keys used to protect the account data are stored in an external key vault. If this is set then the Batch Account identity must be set to SystemAssigned and a valid Key Identifier must also be supplied under the keyVaultProperties.
    Microsoft_Batch
    Microsoft.Batch Batch creates and manages the encryption keys used to protect the account data.
    Microsoft_KeyVault
    Microsoft.KeyVault The encryption keys used to protect the account data are stored in an external key vault. If this is set then the Batch Account identity must be set to SystemAssigned and a valid Key Identifier must also be supplied under the keyVaultProperties.
    Microsoft_Batch
    Microsoft.Batch Batch creates and manages the encryption keys used to protect the account data.
    Microsoft_KeyVault
    Microsoft.KeyVault The encryption keys used to protect the account data are stored in an external key vault. If this is set then the Batch Account identity must be set to SystemAssigned and a valid Key Identifier must also be supplied under the keyVaultProperties.
    MICROSOFT_BATCH
    Microsoft.Batch Batch creates and manages the encryption keys used to protect the account data.
    MICROSOFT_KEY_VAULT
    Microsoft.KeyVault The encryption keys used to protect the account data are stored in an external key vault. If this is set then the Batch Account identity must be set to SystemAssigned and a valid Key Identifier must also be supplied under the keyVaultProperties.
    "Microsoft.Batch"
    Microsoft.Batch Batch creates and manages the encryption keys used to protect the account data.
    "Microsoft.KeyVault"
    Microsoft.KeyVault The encryption keys used to protect the account data are stored in an external key vault. If this is set then the Batch Account identity must be set to SystemAssigned and a valid Key Identifier must also be supplied under the keyVaultProperties.

    KeyVaultProperties, KeyVaultPropertiesArgs

    KeyVault configuration when using an encryption KeySource of Microsoft.KeyVault.
    KeyIdentifier string

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    KeyIdentifier string

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    keyIdentifier String

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    keyIdentifier string

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    key_identifier str

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    keyIdentifier String

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs

    KeyVault configuration when using an encryption KeySource of Microsoft.KeyVault.
    KeyIdentifier string

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    KeyIdentifier string

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    keyIdentifier String

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    keyIdentifier string

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    key_identifier str

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    keyIdentifier String

    Full path to the secret with or without version. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. or https://mykeyvault.vault.azure.net/keys/testkey. To be usable the following prerequisites must be met:

    The Batch Account has a System Assigned identity The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions The KeyVault has soft-delete and purge protection enabled

    KeyVaultReference, KeyVaultReferenceArgs

    Identifies the Azure key vault associated with a Batch account.
    Id string
    The resource ID of the Azure key vault associated with the Batch account.
    Url string
    The URL of the Azure key vault associated with the Batch account.
    Id string
    The resource ID of the Azure key vault associated with the Batch account.
    Url string
    The URL of the Azure key vault associated with the Batch account.
    id String
    The resource ID of the Azure key vault associated with the Batch account.
    url String
    The URL of the Azure key vault associated with the Batch account.
    id string
    The resource ID of the Azure key vault associated with the Batch account.
    url string
    The URL of the Azure key vault associated with the Batch account.
    id str
    The resource ID of the Azure key vault associated with the Batch account.
    url str
    The URL of the Azure key vault associated with the Batch account.
    id String
    The resource ID of the Azure key vault associated with the Batch account.
    url String
    The URL of the Azure key vault associated with the Batch account.

    KeyVaultReferenceResponse, KeyVaultReferenceResponseArgs

    Identifies the Azure key vault associated with a Batch account.
    Id string
    The resource ID of the Azure key vault associated with the Batch account.
    Url string
    The URL of the Azure key vault associated with the Batch account.
    Id string
    The resource ID of the Azure key vault associated with the Batch account.
    Url string
    The URL of the Azure key vault associated with the Batch account.
    id String
    The resource ID of the Azure key vault associated with the Batch account.
    url String
    The URL of the Azure key vault associated with the Batch account.
    id string
    The resource ID of the Azure key vault associated with the Batch account.
    url string
    The URL of the Azure key vault associated with the Batch account.
    id str
    The resource ID of the Azure key vault associated with the Batch account.
    url str
    The URL of the Azure key vault associated with the Batch account.
    id String
    The resource ID of the Azure key vault associated with the Batch account.
    url String
    The URL of the Azure key vault associated with the Batch account.

    NetworkProfile, NetworkProfileArgs

    Network profile for Batch account, which contains network rule settings for each endpoint.
    AccountAccess Pulumi.AzureNative.Batch.Inputs.EndpointAccessProfile
    Network access profile for batchAccount endpoint (Batch account data plane API).
    NodeManagementAccess Pulumi.AzureNative.Batch.Inputs.EndpointAccessProfile
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    AccountAccess EndpointAccessProfile
    Network access profile for batchAccount endpoint (Batch account data plane API).
    NodeManagementAccess EndpointAccessProfile
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    accountAccess EndpointAccessProfile
    Network access profile for batchAccount endpoint (Batch account data plane API).
    nodeManagementAccess EndpointAccessProfile
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    accountAccess EndpointAccessProfile
    Network access profile for batchAccount endpoint (Batch account data plane API).
    nodeManagementAccess EndpointAccessProfile
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    account_access EndpointAccessProfile
    Network access profile for batchAccount endpoint (Batch account data plane API).
    node_management_access EndpointAccessProfile
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    accountAccess Property Map
    Network access profile for batchAccount endpoint (Batch account data plane API).
    nodeManagementAccess Property Map
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).

    NetworkProfileResponse, NetworkProfileResponseArgs

    Network profile for Batch account, which contains network rule settings for each endpoint.
    AccountAccess Pulumi.AzureNative.Batch.Inputs.EndpointAccessProfileResponse
    Network access profile for batchAccount endpoint (Batch account data plane API).
    NodeManagementAccess Pulumi.AzureNative.Batch.Inputs.EndpointAccessProfileResponse
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    AccountAccess EndpointAccessProfileResponse
    Network access profile for batchAccount endpoint (Batch account data plane API).
    NodeManagementAccess EndpointAccessProfileResponse
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    accountAccess EndpointAccessProfileResponse
    Network access profile for batchAccount endpoint (Batch account data plane API).
    nodeManagementAccess EndpointAccessProfileResponse
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    accountAccess EndpointAccessProfileResponse
    Network access profile for batchAccount endpoint (Batch account data plane API).
    nodeManagementAccess EndpointAccessProfileResponse
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    account_access EndpointAccessProfileResponse
    Network access profile for batchAccount endpoint (Batch account data plane API).
    node_management_access EndpointAccessProfileResponse
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).
    accountAccess Property Map
    Network access profile for batchAccount endpoint (Batch account data plane API).
    nodeManagementAccess Property Map
    Network access profile for nodeManagement endpoint (Batch service managing compute nodes for Batch pools).

    PoolAllocationMode, PoolAllocationModeArgs

    BatchService
    BatchService Pools will be allocated in subscriptions owned by the Batch service.
    UserSubscription
    UserSubscription Pools will be allocated in a subscription owned by the user.
    PoolAllocationModeBatchService
    BatchService Pools will be allocated in subscriptions owned by the Batch service.
    PoolAllocationModeUserSubscription
    UserSubscription Pools will be allocated in a subscription owned by the user.
    BatchService
    BatchService Pools will be allocated in subscriptions owned by the Batch service.
    UserSubscription
    UserSubscription Pools will be allocated in a subscription owned by the user.
    BatchService
    BatchService Pools will be allocated in subscriptions owned by the Batch service.
    UserSubscription
    UserSubscription Pools will be allocated in a subscription owned by the user.
    BATCH_SERVICE
    BatchService Pools will be allocated in subscriptions owned by the Batch service.
    USER_SUBSCRIPTION
    UserSubscription Pools will be allocated in a subscription owned by the user.
    "BatchService"
    BatchService Pools will be allocated in subscriptions owned by the Batch service.
    "UserSubscription"
    UserSubscription Pools will be allocated in a subscription owned by the user.

    PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs

    Contains information about a private link resource.
    Etag string
    The ETag of the resource, used for concurrency statements.
    GroupIds List<string>
    The value has one and only one group id.
    Id string
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    Name string
    The name of the resource
    PrivateEndpoint Pulumi.AzureNative.Batch.Inputs.PrivateEndpointResponse
    The private endpoint of the private endpoint connection.
    ProvisioningState string
    The provisioning state of the private endpoint connection.
    SystemData Pulumi.AzureNative.Batch.Inputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    PrivateLinkServiceConnectionState Pulumi.AzureNative.Batch.Inputs.PrivateLinkServiceConnectionStateResponse
    The private link service connection state of the private endpoint connection.
    Tags Dictionary<string, string>
    The tags of the resource.
    Etag string
    The ETag of the resource, used for concurrency statements.
    GroupIds []string
    The value has one and only one group id.
    Id string
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    Name string
    The name of the resource
    PrivateEndpoint PrivateEndpointResponse
    The private endpoint of the private endpoint connection.
    ProvisioningState string
    The provisioning state of the private endpoint connection.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    The private link service connection state of the private endpoint connection.
    Tags map[string]string
    The tags of the resource.
    etag String
    The ETag of the resource, used for concurrency statements.
    groupIds List<String>
    The value has one and only one group id.
    id String
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name String
    The name of the resource
    privateEndpoint PrivateEndpointResponse
    The private endpoint of the private endpoint connection.
    provisioningState String
    The provisioning state of the private endpoint connection.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    The private link service connection state of the private endpoint connection.
    tags Map<String,String>
    The tags of the resource.
    etag string
    The ETag of the resource, used for concurrency statements.
    groupIds string[]
    The value has one and only one group id.
    id string
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name string
    The name of the resource
    privateEndpoint PrivateEndpointResponse
    The private endpoint of the private endpoint connection.
    provisioningState string
    The provisioning state of the private endpoint connection.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    The private link service connection state of the private endpoint connection.
    tags {[key: string]: string}
    The tags of the resource.
    etag str
    The ETag of the resource, used for concurrency statements.
    group_ids Sequence[str]
    The value has one and only one group id.
    id str
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name str
    The name of the resource
    private_endpoint PrivateEndpointResponse
    The private endpoint of the private endpoint connection.
    provisioning_state str
    The provisioning state of the private endpoint connection.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
    The private link service connection state of the private endpoint connection.
    tags Mapping[str, str]
    The tags of the resource.
    etag String
    The ETag of the resource, used for concurrency statements.
    groupIds List<String>
    The value has one and only one group id.
    id String
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name String
    The name of the resource
    privateEndpoint Property Map
    The private endpoint of the private endpoint connection.
    provisioningState String
    The provisioning state of the private endpoint connection.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateLinkServiceConnectionState Property Map
    The private link service connection state of the private endpoint connection.
    tags Map<String>
    The tags of the resource.

    PrivateEndpointResponse, PrivateEndpointResponseArgs

    The private endpoint of the private endpoint connection.
    Id string
    The ARM resource identifier of the private endpoint. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}.
    Id string
    The ARM resource identifier of the private endpoint. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}.
    id String
    The ARM resource identifier of the private endpoint. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}.
    id string
    The ARM resource identifier of the private endpoint. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}.
    id str
    The ARM resource identifier of the private endpoint. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}.
    id String
    The ARM resource identifier of the private endpoint. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}.

    PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs

    The private link service connection state of the private endpoint connection
    ActionsRequired string
    Action required on the private connection state
    Status string
    The status of the Batch private endpoint connection
    Description string
    Description of the private Connection state
    ActionsRequired string
    Action required on the private connection state
    Status string
    The status of the Batch private endpoint connection
    Description string
    Description of the private Connection state
    actionsRequired String
    Action required on the private connection state
    status String
    The status of the Batch private endpoint connection
    description String
    Description of the private Connection state
    actionsRequired string
    Action required on the private connection state
    status string
    The status of the Batch private endpoint connection
    description string
    Description of the private Connection state
    actions_required str
    Action required on the private connection state
    status str
    The status of the Batch private endpoint connection
    description str
    Description of the private Connection state
    actionsRequired String
    Action required on the private connection state
    status String
    The status of the Batch private endpoint connection
    description String
    Description of the private Connection state

    PublicNetworkAccessType, PublicNetworkAccessTypeArgs

    Enabled
    Enabled Enables connectivity to Azure Batch through public DNS.
    Disabled
    Disabled Disables public connectivity and enables private connectivity to Azure Batch Service through private endpoint resource.
    SecuredByPerimeter
    SecuredByPerimeter Secures connectivity to Azure Batch through NSP configuration.
    PublicNetworkAccessTypeEnabled
    Enabled Enables connectivity to Azure Batch through public DNS.
    PublicNetworkAccessTypeDisabled
    Disabled Disables public connectivity and enables private connectivity to Azure Batch Service through private endpoint resource.
    PublicNetworkAccessTypeSecuredByPerimeter
    SecuredByPerimeter Secures connectivity to Azure Batch through NSP configuration.
    Enabled
    Enabled Enables connectivity to Azure Batch through public DNS.
    Disabled
    Disabled Disables public connectivity and enables private connectivity to Azure Batch Service through private endpoint resource.
    SecuredByPerimeter
    SecuredByPerimeter Secures connectivity to Azure Batch through NSP configuration.
    Enabled
    Enabled Enables connectivity to Azure Batch through public DNS.
    Disabled
    Disabled Disables public connectivity and enables private connectivity to Azure Batch Service through private endpoint resource.
    SecuredByPerimeter
    SecuredByPerimeter Secures connectivity to Azure Batch through NSP configuration.
    ENABLED
    Enabled Enables connectivity to Azure Batch through public DNS.
    DISABLED
    Disabled Disables public connectivity and enables private connectivity to Azure Batch Service through private endpoint resource.
    SECURED_BY_PERIMETER
    SecuredByPerimeter Secures connectivity to Azure Batch through NSP configuration.
    "Enabled"
    Enabled Enables connectivity to Azure Batch through public DNS.
    "Disabled"
    Disabled Disables public connectivity and enables private connectivity to Azure Batch Service through private endpoint resource.
    "SecuredByPerimeter"
    SecuredByPerimeter Secures connectivity to Azure Batch through NSP configuration.

    ResourceIdentityType, ResourceIdentityTypeArgs

    SystemAssigned
    SystemAssigned Batch account has a system assigned identity with it.
    UserAssigned
    UserAssigned Batch account has user assigned identities with it.
    None
    None Batch account has no identity associated with it. Setting None in update account will remove existing identities.
    ResourceIdentityTypeSystemAssigned
    SystemAssigned Batch account has a system assigned identity with it.
    ResourceIdentityTypeUserAssigned
    UserAssigned Batch account has user assigned identities with it.
    ResourceIdentityTypeNone
    None Batch account has no identity associated with it. Setting None in update account will remove existing identities.
    SystemAssigned
    SystemAssigned Batch account has a system assigned identity with it.
    UserAssigned
    UserAssigned Batch account has user assigned identities with it.
    None
    None Batch account has no identity associated with it. Setting None in update account will remove existing identities.
    SystemAssigned
    SystemAssigned Batch account has a system assigned identity with it.
    UserAssigned
    UserAssigned Batch account has user assigned identities with it.
    None
    None Batch account has no identity associated with it. Setting None in update account will remove existing identities.
    SYSTEM_ASSIGNED
    SystemAssigned Batch account has a system assigned identity with it.
    USER_ASSIGNED
    UserAssigned Batch account has user assigned identities with it.
    NONE
    None Batch account has no identity associated with it. Setting None in update account will remove existing identities.
    "SystemAssigned"
    SystemAssigned Batch account has a system assigned identity with it.
    "UserAssigned"
    UserAssigned Batch account has user assigned identities with it.
    "None"
    None Batch account has no identity associated with it. Setting None in update account will remove existing identities.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UserAssignedIdentitiesResponse, UserAssignedIdentitiesResponseArgs

    The list of associated user identities.
    ClientId string
    The client id of user assigned identity.
    PrincipalId string
    The principal id of user assigned identity.
    ClientId string
    The client id of user assigned identity.
    PrincipalId string
    The principal id of user assigned identity.
    clientId String
    The client id of user assigned identity.
    principalId String
    The principal id of user assigned identity.
    clientId string
    The client id of user assigned identity.
    principalId string
    The principal id of user assigned identity.
    client_id str
    The client id of user assigned identity.
    principal_id str
    The principal id of user assigned identity.
    clientId String
    The client id of user assigned identity.
    principalId String
    The principal id of user assigned identity.

    VirtualMachineFamilyCoreQuotaResponse, VirtualMachineFamilyCoreQuotaResponseArgs

    A VM Family and its associated core quota for the Batch account.
    CoreQuota int
    The core quota for the VM family for the Batch account.
    Name string
    The Virtual Machine family name.
    CoreQuota int
    The core quota for the VM family for the Batch account.
    Name string
    The Virtual Machine family name.
    coreQuota Integer
    The core quota for the VM family for the Batch account.
    name String
    The Virtual Machine family name.
    coreQuota number
    The core quota for the VM family for the Batch account.
    name string
    The Virtual Machine family name.
    core_quota int
    The core quota for the VM family for the Batch account.
    name str
    The Virtual Machine family name.
    coreQuota Number
    The core quota for the VM family for the Batch account.
    name String
    The Virtual Machine family name.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:batch:BatchAccount sampleacct /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate