1. Packages
  2. Azure Native
  3. API Docs
  4. devopsinfrastructure
  5. Pool
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.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.devopsinfrastructure.Pool

Explore with Pulumi AI

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.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Concrete tracked resource types can be created by aliasing this type using a specific property type.

    Uses Azure REST API version 2025-01-21. In version 2.x of the Azure Native provider, it used API version 2023-10-30-preview.

    Other available API versions: 2023-10-30-preview, 2023-12-13-preview, 2024-03-26-preview, 2024-04-04-preview, 2024-10-19. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native devopsinfrastructure [ApiVersion]. See the version guide for details.

    Example Usage

    Pools_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var pool = new AzureNative.DevOpsInfrastructure.Pool("pool", new()
        {
            AgentProfile = new AzureNative.DevOpsInfrastructure.Inputs.StatelessAgentProfileArgs
            {
                Kind = "Stateless",
            },
            DevCenterProjectResourceId = "/subscriptions/222e81d0-cf38-4dab-baa5-289bf16baaa4/resourceGroups/rg-1es-devcenter/providers/Microsoft.DevCenter/projects/1ES",
            FabricProfile = new AzureNative.DevOpsInfrastructure.Inputs.VmssFabricProfileArgs
            {
                Images = new[]
                {
                    new AzureNative.DevOpsInfrastructure.Inputs.PoolImageArgs
                    {
                        EphemeralType = AzureNative.DevOpsInfrastructure.EphemeralType.Automatic,
                        ResourceId = "/MicrosoftWindowsServer/WindowsServer/2019-Datacenter/latest",
                    },
                },
                Kind = "Vmss",
                OsProfile = new AzureNative.DevOpsInfrastructure.Inputs.OsProfileArgs
                {
                    SecretsManagementSettings = new AzureNative.DevOpsInfrastructure.Inputs.SecretsManagementSettingsArgs
                    {
                        CertificateStoreName = AzureNative.DevOpsInfrastructure.CertificateStoreNameOption.Root,
                        KeyExportable = false,
                        ObservedCertificates = new[]
                        {
                            "https://abc.vault.azure.net/secrets/one",
                        },
                    },
                },
                Sku = new AzureNative.DevOpsInfrastructure.Inputs.DevOpsAzureSkuArgs
                {
                    Name = "Standard_D4ads_v5",
                },
            },
            Location = "eastus",
            MaximumConcurrency = 10,
            OrganizationProfile = new AzureNative.DevOpsInfrastructure.Inputs.AzureDevOpsOrganizationProfileArgs
            {
                Kind = "AzureDevOps",
                Organizations = new[]
                {
                    new AzureNative.DevOpsInfrastructure.Inputs.OrganizationArgs
                    {
                        OpenAccess = true,
                        Url = "https://mseng.visualstudio.com",
                    },
                },
            },
            PoolName = "pool",
            ProvisioningState = AzureNative.DevOpsInfrastructure.ProvisioningState.Succeeded,
            ResourceGroupName = "rg",
        });
    
    });
    
    package main
    
    import (
    	devopsinfrastructure "github.com/pulumi/pulumi-azure-native-sdk/devopsinfrastructure/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := devopsinfrastructure.NewPool(ctx, "pool", &devopsinfrastructure.PoolArgs{
    			AgentProfile: &devopsinfrastructure.StatelessAgentProfileArgs{
    				Kind: pulumi.String("Stateless"),
    			},
    			DevCenterProjectResourceId: pulumi.String("/subscriptions/222e81d0-cf38-4dab-baa5-289bf16baaa4/resourceGroups/rg-1es-devcenter/providers/Microsoft.DevCenter/projects/1ES"),
    			FabricProfile: &devopsinfrastructure.VmssFabricProfileArgs{
    				Images: devopsinfrastructure.PoolImageArray{
    					&devopsinfrastructure.PoolImageArgs{
    						EphemeralType: pulumi.String(devopsinfrastructure.EphemeralTypeAutomatic),
    						ResourceId:    pulumi.String("/MicrosoftWindowsServer/WindowsServer/2019-Datacenter/latest"),
    					},
    				},
    				Kind: pulumi.String("Vmss"),
    				OsProfile: &devopsinfrastructure.OsProfileArgs{
    					SecretsManagementSettings: &devopsinfrastructure.SecretsManagementSettingsArgs{
    						CertificateStoreName: pulumi.String(devopsinfrastructure.CertificateStoreNameOptionRoot),
    						KeyExportable:        pulumi.Bool(false),
    						ObservedCertificates: pulumi.StringArray{
    							pulumi.String("https://abc.vault.azure.net/secrets/one"),
    						},
    					},
    				},
    				Sku: &devopsinfrastructure.DevOpsAzureSkuArgs{
    					Name: pulumi.String("Standard_D4ads_v5"),
    				},
    			},
    			Location:           pulumi.String("eastus"),
    			MaximumConcurrency: pulumi.Int(10),
    			OrganizationProfile: &devopsinfrastructure.AzureDevOpsOrganizationProfileArgs{
    				Kind: pulumi.String("AzureDevOps"),
    				Organizations: devopsinfrastructure.OrganizationArray{
    					&devopsinfrastructure.OrganizationArgs{
    						OpenAccess: pulumi.Bool(true),
    						Url:        pulumi.String("https://mseng.visualstudio.com"),
    					},
    				},
    			},
    			PoolName:          pulumi.String("pool"),
    			ProvisioningState: pulumi.String(devopsinfrastructure.ProvisioningStateSucceeded),
    			ResourceGroupName: pulumi.String("rg"),
    		})
    		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.devopsinfrastructure.Pool;
    import com.pulumi.azurenative.devopsinfrastructure.PoolArgs;
    import com.pulumi.azurenative.devopsinfrastructure.inputs.VmssFabricProfileArgs;
    import com.pulumi.azurenative.devopsinfrastructure.inputs.OsProfileArgs;
    import com.pulumi.azurenative.devopsinfrastructure.inputs.SecretsManagementSettingsArgs;
    import com.pulumi.azurenative.devopsinfrastructure.inputs.DevOpsAzureSkuArgs;
    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 pool = new Pool("pool", PoolArgs.builder()
                .agentProfile(StatelessAgentProfileArgs.builder()
                    .kind("Stateless")
                    .build())
                .devCenterProjectResourceId("/subscriptions/222e81d0-cf38-4dab-baa5-289bf16baaa4/resourceGroups/rg-1es-devcenter/providers/Microsoft.DevCenter/projects/1ES")
                .fabricProfile(VmssFabricProfileArgs.builder()
                    .images(PoolImageArgs.builder()
                        .ephemeralType("Automatic")
                        .resourceId("/MicrosoftWindowsServer/WindowsServer/2019-Datacenter/latest")
                        .build())
                    .kind("Vmss")
                    .osProfile(OsProfileArgs.builder()
                        .secretsManagementSettings(SecretsManagementSettingsArgs.builder()
                            .certificateStoreName("Root")
                            .keyExportable(false)
                            .observedCertificates("https://abc.vault.azure.net/secrets/one")
                            .build())
                        .build())
                    .sku(DevOpsAzureSkuArgs.builder()
                        .name("Standard_D4ads_v5")
                        .build())
                    .build())
                .location("eastus")
                .maximumConcurrency(10)
                .organizationProfile(AzureDevOpsOrganizationProfileArgs.builder()
                    .kind("AzureDevOps")
                    .organizations(OrganizationArgs.builder()
                        .openAccess(true)
                        .url("https://mseng.visualstudio.com")
                        .build())
                    .build())
                .poolName("pool")
                .provisioningState("Succeeded")
                .resourceGroupName("rg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const pool = new azure_native.devopsinfrastructure.Pool("pool", {
        agentProfile: {
            kind: "Stateless",
        },
        devCenterProjectResourceId: "/subscriptions/222e81d0-cf38-4dab-baa5-289bf16baaa4/resourceGroups/rg-1es-devcenter/providers/Microsoft.DevCenter/projects/1ES",
        fabricProfile: {
            images: [{
                ephemeralType: azure_native.devopsinfrastructure.EphemeralType.Automatic,
                resourceId: "/MicrosoftWindowsServer/WindowsServer/2019-Datacenter/latest",
            }],
            kind: "Vmss",
            osProfile: {
                secretsManagementSettings: {
                    certificateStoreName: azure_native.devopsinfrastructure.CertificateStoreNameOption.Root,
                    keyExportable: false,
                    observedCertificates: ["https://abc.vault.azure.net/secrets/one"],
                },
            },
            sku: {
                name: "Standard_D4ads_v5",
            },
        },
        location: "eastus",
        maximumConcurrency: 10,
        organizationProfile: {
            kind: "AzureDevOps",
            organizations: [{
                openAccess: true,
                url: "https://mseng.visualstudio.com",
            }],
        },
        poolName: "pool",
        provisioningState: azure_native.devopsinfrastructure.ProvisioningState.Succeeded,
        resourceGroupName: "rg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    pool = azure_native.devopsinfrastructure.Pool("pool",
        agent_profile={
            "kind": "Stateless",
        },
        dev_center_project_resource_id="/subscriptions/222e81d0-cf38-4dab-baa5-289bf16baaa4/resourceGroups/rg-1es-devcenter/providers/Microsoft.DevCenter/projects/1ES",
        fabric_profile={
            "images": [{
                "ephemeral_type": azure_native.devopsinfrastructure.EphemeralType.AUTOMATIC,
                "resource_id": "/MicrosoftWindowsServer/WindowsServer/2019-Datacenter/latest",
            }],
            "kind": "Vmss",
            "os_profile": {
                "secrets_management_settings": {
                    "certificate_store_name": azure_native.devopsinfrastructure.CertificateStoreNameOption.ROOT,
                    "key_exportable": False,
                    "observed_certificates": ["https://abc.vault.azure.net/secrets/one"],
                },
            },
            "sku": {
                "name": "Standard_D4ads_v5",
            },
        },
        location="eastus",
        maximum_concurrency=10,
        organization_profile={
            "kind": "AzureDevOps",
            "organizations": [{
                "open_access": True,
                "url": "https://mseng.visualstudio.com",
            }],
        },
        pool_name="pool",
        provisioning_state=azure_native.devopsinfrastructure.ProvisioningState.SUCCEEDED,
        resource_group_name="rg")
    
    resources:
      pool:
        type: azure-native:devopsinfrastructure:Pool
        properties:
          agentProfile:
            kind: Stateless
          devCenterProjectResourceId: /subscriptions/222e81d0-cf38-4dab-baa5-289bf16baaa4/resourceGroups/rg-1es-devcenter/providers/Microsoft.DevCenter/projects/1ES
          fabricProfile:
            images:
              - ephemeralType: Automatic
                resourceId: /MicrosoftWindowsServer/WindowsServer/2019-Datacenter/latest
            kind: Vmss
            osProfile:
              secretsManagementSettings:
                certificateStoreName: Root
                keyExportable: false
                observedCertificates:
                  - https://abc.vault.azure.net/secrets/one
            sku:
              name: Standard_D4ads_v5
          location: eastus
          maximumConcurrency: 10
          organizationProfile:
            kind: AzureDevOps
            organizations:
              - openAccess: true
                url: https://mseng.visualstudio.com
          poolName: pool
          provisioningState: Succeeded
          resourceGroupName: rg
    

    Create Pool Resource

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

    Constructor syntax

    new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
    @overload
    def Pool(resource_name: str,
             args: PoolArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Pool(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             agent_profile: Optional[Union[StatefulArgs, StatelessAgentProfileArgs]] = None,
             dev_center_project_resource_id: Optional[str] = None,
             fabric_profile: Optional[VmssFabricProfileArgs] = None,
             maximum_concurrency: Optional[int] = None,
             organization_profile: Optional[Union[AzureDevOpsOrganizationProfileArgs, GitHubOrganizationProfileArgs]] = None,
             resource_group_name: Optional[str] = None,
             identity: Optional[ManagedServiceIdentityArgs] = None,
             location: Optional[str] = None,
             pool_name: Optional[str] = None,
             provisioning_state: Optional[Union[str, ProvisioningState]] = None,
             tags: Optional[Mapping[str, str]] = None)
    func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
    public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
    public Pool(String name, PoolArgs args)
    public Pool(String name, PoolArgs args, CustomResourceOptions options)
    
    type: azure-native:devopsinfrastructure:Pool
    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 PoolArgs
    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 PoolArgs
    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 PoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PoolArgs
    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 examplepoolResourceResourceFromDevopsinfrastructure = new AzureNative.DevOpsInfrastructure.Pool("examplepoolResourceResourceFromDevopsinfrastructure", new()
    {
        AgentProfile = new AzureNative.DevOpsInfrastructure.Inputs.StatefulArgs
        {
            Kind = "Stateful",
            GracePeriodTimeSpan = "string",
            MaxAgentLifetime = "string",
            ResourcePredictions = "any",
            ResourcePredictionsProfile = new AzureNative.DevOpsInfrastructure.Inputs.AutomaticResourcePredictionsProfileArgs
            {
                Kind = "Automatic",
                PredictionPreference = "string",
            },
        },
        DevCenterProjectResourceId = "string",
        FabricProfile = new AzureNative.DevOpsInfrastructure.Inputs.VmssFabricProfileArgs
        {
            Images = new[]
            {
                new AzureNative.DevOpsInfrastructure.Inputs.PoolImageArgs
                {
                    Aliases = new[]
                    {
                        "string",
                    },
                    Buffer = "string",
                    EphemeralType = "string",
                    ResourceId = "string",
                    WellKnownImageName = "string",
                },
            },
            Kind = "Vmss",
            Sku = new AzureNative.DevOpsInfrastructure.Inputs.DevOpsAzureSkuArgs
            {
                Name = "string",
            },
            NetworkProfile = new AzureNative.DevOpsInfrastructure.Inputs.NetworkProfileArgs
            {
                SubnetId = "string",
            },
            OsProfile = new AzureNative.DevOpsInfrastructure.Inputs.OsProfileArgs
            {
                LogonType = "string",
                SecretsManagementSettings = new AzureNative.DevOpsInfrastructure.Inputs.SecretsManagementSettingsArgs
                {
                    KeyExportable = false,
                    ObservedCertificates = new[]
                    {
                        "string",
                    },
                    CertificateStoreLocation = "string",
                    CertificateStoreName = "string",
                },
            },
            StorageProfile = new AzureNative.DevOpsInfrastructure.Inputs.StorageProfileArgs
            {
                DataDisks = new[]
                {
                    new AzureNative.DevOpsInfrastructure.Inputs.DataDiskArgs
                    {
                        Caching = "string",
                        DiskSizeGiB = 0,
                        DriveLetter = "string",
                        StorageAccountType = "string",
                    },
                },
                OsDiskStorageAccountType = "string",
            },
        },
        MaximumConcurrency = 0,
        OrganizationProfile = new AzureNative.DevOpsInfrastructure.Inputs.AzureDevOpsOrganizationProfileArgs
        {
            Kind = "AzureDevOps",
            Organizations = new[]
            {
                new AzureNative.DevOpsInfrastructure.Inputs.OrganizationArgs
                {
                    Url = "string",
                    OpenAccess = false,
                    Parallelism = 0,
                    Projects = new[]
                    {
                        "string",
                    },
                },
            },
            PermissionProfile = new AzureNative.DevOpsInfrastructure.Inputs.AzureDevOpsPermissionProfileArgs
            {
                Kind = "string",
                Groups = new[]
                {
                    "string",
                },
                Users = new[]
                {
                    "string",
                },
            },
        },
        ResourceGroupName = "string",
        Identity = new AzureNative.DevOpsInfrastructure.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        PoolName = "string",
        ProvisioningState = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := devopsinfrastructure.NewPool(ctx, "examplepoolResourceResourceFromDevopsinfrastructure", &devopsinfrastructure.PoolArgs{
    	AgentProfile: &devopsinfrastructure.StatefulArgs{
    		Kind:                pulumi.String("Stateful"),
    		GracePeriodTimeSpan: pulumi.String("string"),
    		MaxAgentLifetime:    pulumi.String("string"),
    		ResourcePredictions: pulumi.Any("any"),
    		ResourcePredictionsProfile: devopsinfrastructure.AutomaticResourcePredictionsProfile{
    			Kind:                 "Automatic",
    			PredictionPreference: "string",
    		},
    	},
    	DevCenterProjectResourceId: pulumi.String("string"),
    	FabricProfile: &devopsinfrastructure.VmssFabricProfileArgs{
    		Images: devopsinfrastructure.PoolImageArray{
    			&devopsinfrastructure.PoolImageArgs{
    				Aliases: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				Buffer:             pulumi.String("string"),
    				EphemeralType:      pulumi.String("string"),
    				ResourceId:         pulumi.String("string"),
    				WellKnownImageName: pulumi.String("string"),
    			},
    		},
    		Kind: pulumi.String("Vmss"),
    		Sku: &devopsinfrastructure.DevOpsAzureSkuArgs{
    			Name: pulumi.String("string"),
    		},
    		NetworkProfile: &devopsinfrastructure.NetworkProfileArgs{
    			SubnetId: pulumi.String("string"),
    		},
    		OsProfile: &devopsinfrastructure.OsProfileArgs{
    			LogonType: pulumi.String("string"),
    			SecretsManagementSettings: &devopsinfrastructure.SecretsManagementSettingsArgs{
    				KeyExportable: pulumi.Bool(false),
    				ObservedCertificates: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				CertificateStoreLocation: pulumi.String("string"),
    				CertificateStoreName:     pulumi.String("string"),
    			},
    		},
    		StorageProfile: &devopsinfrastructure.StorageProfileArgs{
    			DataDisks: devopsinfrastructure.DataDiskArray{
    				&devopsinfrastructure.DataDiskArgs{
    					Caching:            pulumi.String("string"),
    					DiskSizeGiB:        pulumi.Int(0),
    					DriveLetter:        pulumi.String("string"),
    					StorageAccountType: pulumi.String("string"),
    				},
    			},
    			OsDiskStorageAccountType: pulumi.String("string"),
    		},
    	},
    	MaximumConcurrency: pulumi.Int(0),
    	OrganizationProfile: &devopsinfrastructure.AzureDevOpsOrganizationProfileArgs{
    		Kind: pulumi.String("AzureDevOps"),
    		Organizations: devopsinfrastructure.OrganizationArray{
    			&devopsinfrastructure.OrganizationArgs{
    				Url:         pulumi.String("string"),
    				OpenAccess:  pulumi.Bool(false),
    				Parallelism: pulumi.Int(0),
    				Projects: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    		},
    		PermissionProfile: &devopsinfrastructure.AzureDevOpsPermissionProfileArgs{
    			Kind: pulumi.String("string"),
    			Groups: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Users: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	ResourceGroupName: pulumi.String("string"),
    	Identity: &devopsinfrastructure.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location:          pulumi.String("string"),
    	PoolName:          pulumi.String("string"),
    	ProvisioningState: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var examplepoolResourceResourceFromDevopsinfrastructure = new com.pulumi.azurenative.devopsinfrastructure.Pool("examplepoolResourceResourceFromDevopsinfrastructure", com.pulumi.azurenative.devopsinfrastructure.PoolArgs.builder()
        .agentProfile(StatefulArgs.builder()
            .kind("Stateful")
            .gracePeriodTimeSpan("string")
            .maxAgentLifetime("string")
            .resourcePredictions("any")
            .resourcePredictionsProfile(AutomaticResourcePredictionsProfileArgs.builder()
                .kind("Automatic")
                .predictionPreference("string")
                .build())
            .build())
        .devCenterProjectResourceId("string")
        .fabricProfile(VmssFabricProfileArgs.builder()
            .images(PoolImageArgs.builder()
                .aliases("string")
                .buffer("string")
                .ephemeralType("string")
                .resourceId("string")
                .wellKnownImageName("string")
                .build())
            .kind("Vmss")
            .sku(DevOpsAzureSkuArgs.builder()
                .name("string")
                .build())
            .networkProfile(NetworkProfileArgs.builder()
                .subnetId("string")
                .build())
            .osProfile(OsProfileArgs.builder()
                .logonType("string")
                .secretsManagementSettings(SecretsManagementSettingsArgs.builder()
                    .keyExportable(false)
                    .observedCertificates("string")
                    .certificateStoreLocation("string")
                    .certificateStoreName("string")
                    .build())
                .build())
            .storageProfile(StorageProfileArgs.builder()
                .dataDisks(DataDiskArgs.builder()
                    .caching("string")
                    .diskSizeGiB(0)
                    .driveLetter("string")
                    .storageAccountType("string")
                    .build())
                .osDiskStorageAccountType("string")
                .build())
            .build())
        .maximumConcurrency(0)
        .organizationProfile(AzureDevOpsOrganizationProfileArgs.builder()
            .kind("AzureDevOps")
            .organizations(OrganizationArgs.builder()
                .url("string")
                .openAccess(false)
                .parallelism(0)
                .projects("string")
                .build())
            .permissionProfile(AzureDevOpsPermissionProfileArgs.builder()
                .kind("string")
                .groups("string")
                .users("string")
                .build())
            .build())
        .resourceGroupName("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .poolName("string")
        .provisioningState("string")
        .tags(Map.of("string", "string"))
        .build());
    
    examplepool_resource_resource_from_devopsinfrastructure = azure_native.devopsinfrastructure.Pool("examplepoolResourceResourceFromDevopsinfrastructure",
        agent_profile={
            "kind": "Stateful",
            "grace_period_time_span": "string",
            "max_agent_lifetime": "string",
            "resource_predictions": "any",
            "resource_predictions_profile": {
                "kind": "Automatic",
                "prediction_preference": "string",
            },
        },
        dev_center_project_resource_id="string",
        fabric_profile={
            "images": [{
                "aliases": ["string"],
                "buffer": "string",
                "ephemeral_type": "string",
                "resource_id": "string",
                "well_known_image_name": "string",
            }],
            "kind": "Vmss",
            "sku": {
                "name": "string",
            },
            "network_profile": {
                "subnet_id": "string",
            },
            "os_profile": {
                "logon_type": "string",
                "secrets_management_settings": {
                    "key_exportable": False,
                    "observed_certificates": ["string"],
                    "certificate_store_location": "string",
                    "certificate_store_name": "string",
                },
            },
            "storage_profile": {
                "data_disks": [{
                    "caching": "string",
                    "disk_size_gi_b": 0,
                    "drive_letter": "string",
                    "storage_account_type": "string",
                }],
                "os_disk_storage_account_type": "string",
            },
        },
        maximum_concurrency=0,
        organization_profile={
            "kind": "AzureDevOps",
            "organizations": [{
                "url": "string",
                "open_access": False,
                "parallelism": 0,
                "projects": ["string"],
            }],
            "permission_profile": {
                "kind": "string",
                "groups": ["string"],
                "users": ["string"],
            },
        },
        resource_group_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        pool_name="string",
        provisioning_state="string",
        tags={
            "string": "string",
        })
    
    const examplepoolResourceResourceFromDevopsinfrastructure = new azure_native.devopsinfrastructure.Pool("examplepoolResourceResourceFromDevopsinfrastructure", {
        agentProfile: {
            kind: "Stateful",
            gracePeriodTimeSpan: "string",
            maxAgentLifetime: "string",
            resourcePredictions: "any",
            resourcePredictionsProfile: {
                kind: "Automatic",
                predictionPreference: "string",
            },
        },
        devCenterProjectResourceId: "string",
        fabricProfile: {
            images: [{
                aliases: ["string"],
                buffer: "string",
                ephemeralType: "string",
                resourceId: "string",
                wellKnownImageName: "string",
            }],
            kind: "Vmss",
            sku: {
                name: "string",
            },
            networkProfile: {
                subnetId: "string",
            },
            osProfile: {
                logonType: "string",
                secretsManagementSettings: {
                    keyExportable: false,
                    observedCertificates: ["string"],
                    certificateStoreLocation: "string",
                    certificateStoreName: "string",
                },
            },
            storageProfile: {
                dataDisks: [{
                    caching: "string",
                    diskSizeGiB: 0,
                    driveLetter: "string",
                    storageAccountType: "string",
                }],
                osDiskStorageAccountType: "string",
            },
        },
        maximumConcurrency: 0,
        organizationProfile: {
            kind: "AzureDevOps",
            organizations: [{
                url: "string",
                openAccess: false,
                parallelism: 0,
                projects: ["string"],
            }],
            permissionProfile: {
                kind: "string",
                groups: ["string"],
                users: ["string"],
            },
        },
        resourceGroupName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        poolName: "string",
        provisioningState: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:devopsinfrastructure:Pool
    properties:
        agentProfile:
            gracePeriodTimeSpan: string
            kind: Stateful
            maxAgentLifetime: string
            resourcePredictions: any
            resourcePredictionsProfile:
                kind: Automatic
                predictionPreference: string
        devCenterProjectResourceId: string
        fabricProfile:
            images:
                - aliases:
                    - string
                  buffer: string
                  ephemeralType: string
                  resourceId: string
                  wellKnownImageName: string
            kind: Vmss
            networkProfile:
                subnetId: string
            osProfile:
                logonType: string
                secretsManagementSettings:
                    certificateStoreLocation: string
                    certificateStoreName: string
                    keyExportable: false
                    observedCertificates:
                        - string
            sku:
                name: string
            storageProfile:
                dataDisks:
                    - caching: string
                      diskSizeGiB: 0
                      driveLetter: string
                      storageAccountType: string
                osDiskStorageAccountType: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        maximumConcurrency: 0
        organizationProfile:
            kind: AzureDevOps
            organizations:
                - openAccess: false
                  parallelism: 0
                  projects:
                    - string
                  url: string
            permissionProfile:
                groups:
                    - string
                kind: string
                users:
                    - string
        poolName: string
        provisioningState: string
        resourceGroupName: string
        tags:
            string: string
    

    Pool 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 Pool resource accepts the following input properties:

    AgentProfile Pulumi.AzureNative.DevOpsInfrastructure.Inputs.Stateful | Pulumi.AzureNative.DevOpsInfrastructure.Inputs.StatelessAgentProfile
    Defines how the machine will be handled once it executed a job.
    DevCenterProjectResourceId string
    The resource id of the DevCenter Project the pool belongs to.
    FabricProfile Pulumi.AzureNative.DevOpsInfrastructure.Inputs.VmssFabricProfile
    Defines the type of fabric the agent will run on.
    MaximumConcurrency int
    Defines how many resources can there be created at any given time.
    OrganizationProfile Pulumi.AzureNative.DevOpsInfrastructure.Inputs.AzureDevOpsOrganizationProfile | Pulumi.AzureNative.DevOpsInfrastructure.Inputs.GitHubOrganizationProfile
    Defines the organization in which the pool will be used.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity Pulumi.AzureNative.DevOpsInfrastructure.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    PoolName string
    Name of the pool. It needs to be globally unique.
    ProvisioningState string | Pulumi.AzureNative.DevOpsInfrastructure.ProvisioningState
    The status of the current operation.
    Tags Dictionary<string, string>
    Resource tags.
    AgentProfile StatefulArgs | StatelessAgentProfileArgs
    Defines how the machine will be handled once it executed a job.
    DevCenterProjectResourceId string
    The resource id of the DevCenter Project the pool belongs to.
    FabricProfile VmssFabricProfileArgs
    Defines the type of fabric the agent will run on.
    MaximumConcurrency int
    Defines how many resources can there be created at any given time.
    OrganizationProfile AzureDevOpsOrganizationProfileArgs | GitHubOrganizationProfileArgs
    Defines the organization in which the pool will be used.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    PoolName string
    Name of the pool. It needs to be globally unique.
    ProvisioningState string | ProvisioningState
    The status of the current operation.
    Tags map[string]string
    Resource tags.
    agentProfile Stateful | StatelessAgentProfile
    Defines how the machine will be handled once it executed a job.
    devCenterProjectResourceId String
    The resource id of the DevCenter Project the pool belongs to.
    fabricProfile VmssFabricProfile
    Defines the type of fabric the agent will run on.
    maximumConcurrency Integer
    Defines how many resources can there be created at any given time.
    organizationProfile AzureDevOpsOrganizationProfile | GitHubOrganizationProfile
    Defines the organization in which the pool will be used.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    poolName String
    Name of the pool. It needs to be globally unique.
    provisioningState String | ProvisioningState
    The status of the current operation.
    tags Map<String,String>
    Resource tags.
    agentProfile Stateful | StatelessAgentProfile
    Defines how the machine will be handled once it executed a job.
    devCenterProjectResourceId string
    The resource id of the DevCenter Project the pool belongs to.
    fabricProfile VmssFabricProfile
    Defines the type of fabric the agent will run on.
    maximumConcurrency number
    Defines how many resources can there be created at any given time.
    organizationProfile AzureDevOpsOrganizationProfile | GitHubOrganizationProfile
    Defines the organization in which the pool will be used.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    poolName string
    Name of the pool. It needs to be globally unique.
    provisioningState string | ProvisioningState
    The status of the current operation.
    tags {[key: string]: string}
    Resource tags.
    agent_profile StatefulArgs | StatelessAgentProfileArgs
    Defines how the machine will be handled once it executed a job.
    dev_center_project_resource_id str
    The resource id of the DevCenter Project the pool belongs to.
    fabric_profile VmssFabricProfileArgs
    Defines the type of fabric the agent will run on.
    maximum_concurrency int
    Defines how many resources can there be created at any given time.
    organization_profile AzureDevOpsOrganizationProfileArgs | GitHubOrganizationProfileArgs
    Defines the organization in which the pool will be used.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    pool_name str
    Name of the pool. It needs to be globally unique.
    provisioning_state str | ProvisioningState
    The status of the current operation.
    tags Mapping[str, str]
    Resource tags.
    agentProfile Property Map | Property Map
    Defines how the machine will be handled once it executed a job.
    devCenterProjectResourceId String
    The resource id of the DevCenter Project the pool belongs to.
    fabricProfile Property Map
    Defines the type of fabric the agent will run on.
    maximumConcurrency Number
    Defines how many resources can there be created at any given time.
    organizationProfile Property Map | Property Map
    Defines the organization in which the pool will be used.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity Property Map
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    poolName String
    Name of the pool. It needs to be globally unique.
    provisioningState String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted"
    The status of the current operation.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.DevOpsInfrastructure.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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name 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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name 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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name 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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name 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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name 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

    AutomaticResourcePredictionsProfile, AutomaticResourcePredictionsProfileArgs

    PredictionPreference string | Pulumi.AzureNative.DevOpsInfrastructure.PredictionPreference
    Determines the balance between cost and performance.
    PredictionPreference string | PredictionPreference
    Determines the balance between cost and performance.
    predictionPreference String | PredictionPreference
    Determines the balance between cost and performance.
    predictionPreference string | PredictionPreference
    Determines the balance between cost and performance.
    prediction_preference str | PredictionPreference
    Determines the balance between cost and performance.

    AutomaticResourcePredictionsProfileResponse, AutomaticResourcePredictionsProfileResponseArgs

    PredictionPreference string
    Determines the balance between cost and performance.
    PredictionPreference string
    Determines the balance between cost and performance.
    predictionPreference String
    Determines the balance between cost and performance.
    predictionPreference string
    Determines the balance between cost and performance.
    prediction_preference str
    Determines the balance between cost and performance.
    predictionPreference String
    Determines the balance between cost and performance.

    AzureDevOpsOrganizationProfile, AzureDevOpsOrganizationProfileArgs

    Organizations List<Pulumi.AzureNative.DevOpsInfrastructure.Inputs.Organization>
    The list of Azure DevOps organizations the pool should be present in.
    PermissionProfile Pulumi.AzureNative.DevOpsInfrastructure.Inputs.AzureDevOpsPermissionProfile
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    Organizations []Organization
    The list of Azure DevOps organizations the pool should be present in.
    PermissionProfile AzureDevOpsPermissionProfile
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations List<Organization>
    The list of Azure DevOps organizations the pool should be present in.
    permissionProfile AzureDevOpsPermissionProfile
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations Organization[]
    The list of Azure DevOps organizations the pool should be present in.
    permissionProfile AzureDevOpsPermissionProfile
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations Sequence[Organization]
    The list of Azure DevOps organizations the pool should be present in.
    permission_profile AzureDevOpsPermissionProfile
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations List<Property Map>
    The list of Azure DevOps organizations the pool should be present in.
    permissionProfile Property Map
    The type of permission which determines which accounts are admins on the Azure DevOps pool.

    AzureDevOpsOrganizationProfileResponse, AzureDevOpsOrganizationProfileResponseArgs

    Organizations List<Pulumi.AzureNative.DevOpsInfrastructure.Inputs.OrganizationResponse>
    The list of Azure DevOps organizations the pool should be present in.
    PermissionProfile Pulumi.AzureNative.DevOpsInfrastructure.Inputs.AzureDevOpsPermissionProfileResponse
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    Organizations []OrganizationResponse
    The list of Azure DevOps organizations the pool should be present in.
    PermissionProfile AzureDevOpsPermissionProfileResponse
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations List<OrganizationResponse>
    The list of Azure DevOps organizations the pool should be present in.
    permissionProfile AzureDevOpsPermissionProfileResponse
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations OrganizationResponse[]
    The list of Azure DevOps organizations the pool should be present in.
    permissionProfile AzureDevOpsPermissionProfileResponse
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations Sequence[OrganizationResponse]
    The list of Azure DevOps organizations the pool should be present in.
    permission_profile AzureDevOpsPermissionProfileResponse
    The type of permission which determines which accounts are admins on the Azure DevOps pool.
    organizations List<Property Map>
    The list of Azure DevOps organizations the pool should be present in.
    permissionProfile Property Map
    The type of permission which determines which accounts are admins on the Azure DevOps pool.

    AzureDevOpsPermissionProfile, AzureDevOpsPermissionProfileArgs

    Kind string | Pulumi.AzureNative.DevOpsInfrastructure.AzureDevOpsPermissionType
    Determines who has admin permissions to the Azure DevOps pool.
    Groups List<string>
    Group email addresses
    Users List<string>
    User email addresses
    Kind string | AzureDevOpsPermissionType
    Determines who has admin permissions to the Azure DevOps pool.
    Groups []string
    Group email addresses
    Users []string
    User email addresses
    kind String | AzureDevOpsPermissionType
    Determines who has admin permissions to the Azure DevOps pool.
    groups List<String>
    Group email addresses
    users List<String>
    User email addresses
    kind string | AzureDevOpsPermissionType
    Determines who has admin permissions to the Azure DevOps pool.
    groups string[]
    Group email addresses
    users string[]
    User email addresses
    kind str | AzureDevOpsPermissionType
    Determines who has admin permissions to the Azure DevOps pool.
    groups Sequence[str]
    Group email addresses
    users Sequence[str]
    User email addresses
    kind String | "Inherit" | "CreatorOnly" | "SpecificAccounts"
    Determines who has admin permissions to the Azure DevOps pool.
    groups List<String>
    Group email addresses
    users List<String>
    User email addresses

    AzureDevOpsPermissionProfileResponse, AzureDevOpsPermissionProfileResponseArgs

    Kind string
    Determines who has admin permissions to the Azure DevOps pool.
    Groups List<string>
    Group email addresses
    Users List<string>
    User email addresses
    Kind string
    Determines who has admin permissions to the Azure DevOps pool.
    Groups []string
    Group email addresses
    Users []string
    User email addresses
    kind String
    Determines who has admin permissions to the Azure DevOps pool.
    groups List<String>
    Group email addresses
    users List<String>
    User email addresses
    kind string
    Determines who has admin permissions to the Azure DevOps pool.
    groups string[]
    Group email addresses
    users string[]
    User email addresses
    kind str
    Determines who has admin permissions to the Azure DevOps pool.
    groups Sequence[str]
    Group email addresses
    users Sequence[str]
    User email addresses
    kind String
    Determines who has admin permissions to the Azure DevOps pool.
    groups List<String>
    Group email addresses
    users List<String>
    User email addresses

    AzureDevOpsPermissionType, AzureDevOpsPermissionTypeArgs

    Inherit
    InheritPool will inherit permissions from the project or organization.
    CreatorOnly
    CreatorOnlyOnly the pool creator will be an admin of the pool.
    SpecificAccounts
    SpecificAccountsOnly the specified accounts will be admins of the pool.
    AzureDevOpsPermissionTypeInherit
    InheritPool will inherit permissions from the project or organization.
    AzureDevOpsPermissionTypeCreatorOnly
    CreatorOnlyOnly the pool creator will be an admin of the pool.
    AzureDevOpsPermissionTypeSpecificAccounts
    SpecificAccountsOnly the specified accounts will be admins of the pool.
    Inherit
    InheritPool will inherit permissions from the project or organization.
    CreatorOnly
    CreatorOnlyOnly the pool creator will be an admin of the pool.
    SpecificAccounts
    SpecificAccountsOnly the specified accounts will be admins of the pool.
    Inherit
    InheritPool will inherit permissions from the project or organization.
    CreatorOnly
    CreatorOnlyOnly the pool creator will be an admin of the pool.
    SpecificAccounts
    SpecificAccountsOnly the specified accounts will be admins of the pool.
    INHERIT
    InheritPool will inherit permissions from the project or organization.
    CREATOR_ONLY
    CreatorOnlyOnly the pool creator will be an admin of the pool.
    SPECIFIC_ACCOUNTS
    SpecificAccountsOnly the specified accounts will be admins of the pool.
    "Inherit"
    InheritPool will inherit permissions from the project or organization.
    "CreatorOnly"
    CreatorOnlyOnly the pool creator will be an admin of the pool.
    "SpecificAccounts"
    SpecificAccountsOnly the specified accounts will be admins of the pool.

    CachingType, CachingTypeArgs

    None
    NoneDon't use host caching.
    ReadOnly
    ReadOnlyFor workloads that only do read operations.
    ReadWrite
    ReadWriteFor workloads that do a balance of read and write operations.
    CachingTypeNone
    NoneDon't use host caching.
    CachingTypeReadOnly
    ReadOnlyFor workloads that only do read operations.
    CachingTypeReadWrite
    ReadWriteFor workloads that do a balance of read and write operations.
    None
    NoneDon't use host caching.
    ReadOnly
    ReadOnlyFor workloads that only do read operations.
    ReadWrite
    ReadWriteFor workloads that do a balance of read and write operations.
    None
    NoneDon't use host caching.
    ReadOnly
    ReadOnlyFor workloads that only do read operations.
    ReadWrite
    ReadWriteFor workloads that do a balance of read and write operations.
    NONE
    NoneDon't use host caching.
    READ_ONLY
    ReadOnlyFor workloads that only do read operations.
    READ_WRITE
    ReadWriteFor workloads that do a balance of read and write operations.
    "None"
    NoneDon't use host caching.
    "ReadOnly"
    ReadOnlyFor workloads that only do read operations.
    "ReadWrite"
    ReadWriteFor workloads that do a balance of read and write operations.

    CertificateStoreNameOption, CertificateStoreNameOptionArgs

    My
    MyThe X.509 certificate store for personal certificates.
    Root
    RootThe X.509 certificate store for trusted root certificate authorities (CAs).
    CertificateStoreNameOptionMy
    MyThe X.509 certificate store for personal certificates.
    CertificateStoreNameOptionRoot
    RootThe X.509 certificate store for trusted root certificate authorities (CAs).
    My
    MyThe X.509 certificate store for personal certificates.
    Root
    RootThe X.509 certificate store for trusted root certificate authorities (CAs).
    My
    MyThe X.509 certificate store for personal certificates.
    Root
    RootThe X.509 certificate store for trusted root certificate authorities (CAs).
    MY
    MyThe X.509 certificate store for personal certificates.
    ROOT
    RootThe X.509 certificate store for trusted root certificate authorities (CAs).
    "My"
    MyThe X.509 certificate store for personal certificates.
    "Root"
    RootThe X.509 certificate store for trusted root certificate authorities (CAs).

    DataDisk, DataDiskArgs

    Caching string | Pulumi.AzureNative.DevOpsInfrastructure.CachingType
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    DiskSizeGiB int
    The initial disk size in gigabytes.
    DriveLetter string
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    StorageAccountType string | Pulumi.AzureNative.DevOpsInfrastructure.StorageAccountType
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    Caching string | CachingType
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    DiskSizeGiB int
    The initial disk size in gigabytes.
    DriveLetter string
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    StorageAccountType string | StorageAccountType
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching String | CachingType
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    diskSizeGiB Integer
    The initial disk size in gigabytes.
    driveLetter String
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storageAccountType String | StorageAccountType
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching string | CachingType
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    diskSizeGiB number
    The initial disk size in gigabytes.
    driveLetter string
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storageAccountType string | StorageAccountType
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching str | CachingType
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    disk_size_gi_b int
    The initial disk size in gigabytes.
    drive_letter str
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storage_account_type str | StorageAccountType
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching String | "None" | "ReadOnly" | "ReadWrite"
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    diskSizeGiB Number
    The initial disk size in gigabytes.
    driveLetter String
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storageAccountType String | "Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "Premium_ZRS" | "StandardSSD_ZRS"
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".

    DataDiskResponse, DataDiskResponseArgs

    Caching string
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    DiskSizeGiB int
    The initial disk size in gigabytes.
    DriveLetter string
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    StorageAccountType string
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    Caching string
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    DiskSizeGiB int
    The initial disk size in gigabytes.
    DriveLetter string
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    StorageAccountType string
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching String
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    diskSizeGiB Integer
    The initial disk size in gigabytes.
    driveLetter String
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storageAccountType String
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching string
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    diskSizeGiB number
    The initial disk size in gigabytes.
    driveLetter string
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storageAccountType string
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching str
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    disk_size_gi_b int
    The initial disk size in gigabytes.
    drive_letter str
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storage_account_type str
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".
    caching String
    The type of caching to be enabled for the data disks. The default value for caching is readwrite. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
    diskSizeGiB Number
    The initial disk size in gigabytes.
    driveLetter String
    The drive letter for the empty data disk. If not specified, it will be the first available letter.
    storageAccountType String
    The storage Account type to be used for the data disk. If omitted, the default is "standard_lrs".

    DevOpsAzureSku, DevOpsAzureSkuArgs

    Name string
    The Azure SKU name of the machines in the pool.
    Name string
    The Azure SKU name of the machines in the pool.
    name String
    The Azure SKU name of the machines in the pool.
    name string
    The Azure SKU name of the machines in the pool.
    name str
    The Azure SKU name of the machines in the pool.
    name String
    The Azure SKU name of the machines in the pool.

    DevOpsAzureSkuResponse, DevOpsAzureSkuResponseArgs

    Name string
    The Azure SKU name of the machines in the pool.
    Name string
    The Azure SKU name of the machines in the pool.
    name String
    The Azure SKU name of the machines in the pool.
    name string
    The Azure SKU name of the machines in the pool.
    name str
    The Azure SKU name of the machines in the pool.
    name String
    The Azure SKU name of the machines in the pool.

    EphemeralType, EphemeralTypeArgs

    Automatic
    AutomaticEphemeral is handled by Managed DevOps Pools service.
    CacheDisk
    CacheDiskCacheDisk ephemeral only, requires that the SKU has a cache that is large enough for the image.
    ResourceDisk
    ResourceDiskResourceDisk ephemeral only, requires only that the SKU supports it.
    EphemeralTypeAutomatic
    AutomaticEphemeral is handled by Managed DevOps Pools service.
    EphemeralTypeCacheDisk
    CacheDiskCacheDisk ephemeral only, requires that the SKU has a cache that is large enough for the image.
    EphemeralTypeResourceDisk
    ResourceDiskResourceDisk ephemeral only, requires only that the SKU supports it.
    Automatic
    AutomaticEphemeral is handled by Managed DevOps Pools service.
    CacheDisk
    CacheDiskCacheDisk ephemeral only, requires that the SKU has a cache that is large enough for the image.
    ResourceDisk
    ResourceDiskResourceDisk ephemeral only, requires only that the SKU supports it.
    Automatic
    AutomaticEphemeral is handled by Managed DevOps Pools service.
    CacheDisk
    CacheDiskCacheDisk ephemeral only, requires that the SKU has a cache that is large enough for the image.
    ResourceDisk
    ResourceDiskResourceDisk ephemeral only, requires only that the SKU supports it.
    AUTOMATIC
    AutomaticEphemeral is handled by Managed DevOps Pools service.
    CACHE_DISK
    CacheDiskCacheDisk ephemeral only, requires that the SKU has a cache that is large enough for the image.
    RESOURCE_DISK
    ResourceDiskResourceDisk ephemeral only, requires only that the SKU supports it.
    "Automatic"
    AutomaticEphemeral is handled by Managed DevOps Pools service.
    "CacheDisk"
    CacheDiskCacheDisk ephemeral only, requires that the SKU has a cache that is large enough for the image.
    "ResourceDisk"
    ResourceDiskResourceDisk ephemeral only, requires only that the SKU supports it.

    GitHubOrganization, GitHubOrganizationArgs

    Url string
    The GitHub organization URL in which the pool should be created.
    Repositories List<string>
    Optional list of repositories in which the pool should be created.
    Url string
    The GitHub organization URL in which the pool should be created.
    Repositories []string
    Optional list of repositories in which the pool should be created.
    url String
    The GitHub organization URL in which the pool should be created.
    repositories List<String>
    Optional list of repositories in which the pool should be created.
    url string
    The GitHub organization URL in which the pool should be created.
    repositories string[]
    Optional list of repositories in which the pool should be created.
    url str
    The GitHub organization URL in which the pool should be created.
    repositories Sequence[str]
    Optional list of repositories in which the pool should be created.
    url String
    The GitHub organization URL in which the pool should be created.
    repositories List<String>
    Optional list of repositories in which the pool should be created.

    GitHubOrganizationProfile, GitHubOrganizationProfileArgs

    Organizations List<Pulumi.AzureNative.DevOpsInfrastructure.Inputs.GitHubOrganization>
    The list of GitHub organizations/repositories the pool should be present in.
    Organizations []GitHubOrganization
    The list of GitHub organizations/repositories the pool should be present in.
    organizations List<GitHubOrganization>
    The list of GitHub organizations/repositories the pool should be present in.
    organizations GitHubOrganization[]
    The list of GitHub organizations/repositories the pool should be present in.
    organizations Sequence[GitHubOrganization]
    The list of GitHub organizations/repositories the pool should be present in.
    organizations List<Property Map>
    The list of GitHub organizations/repositories the pool should be present in.

    GitHubOrganizationProfileResponse, GitHubOrganizationProfileResponseArgs

    Organizations List<Pulumi.AzureNative.DevOpsInfrastructure.Inputs.GitHubOrganizationResponse>
    The list of GitHub organizations/repositories the pool should be present in.
    Organizations []GitHubOrganizationResponse
    The list of GitHub organizations/repositories the pool should be present in.
    organizations List<GitHubOrganizationResponse>
    The list of GitHub organizations/repositories the pool should be present in.
    organizations GitHubOrganizationResponse[]
    The list of GitHub organizations/repositories the pool should be present in.
    organizations Sequence[GitHubOrganizationResponse]
    The list of GitHub organizations/repositories the pool should be present in.
    organizations List<Property Map>
    The list of GitHub organizations/repositories the pool should be present in.

    GitHubOrganizationResponse, GitHubOrganizationResponseArgs

    Url string
    The GitHub organization URL in which the pool should be created.
    Repositories List<string>
    Optional list of repositories in which the pool should be created.
    Url string
    The GitHub organization URL in which the pool should be created.
    Repositories []string
    Optional list of repositories in which the pool should be created.
    url String
    The GitHub organization URL in which the pool should be created.
    repositories List<String>
    Optional list of repositories in which the pool should be created.
    url string
    The GitHub organization URL in which the pool should be created.
    repositories string[]
    Optional list of repositories in which the pool should be created.
    url str
    The GitHub organization URL in which the pool should be created.
    repositories Sequence[str]
    Optional list of repositories in which the pool should be created.
    url String
    The GitHub organization URL in which the pool should be created.
    repositories List<String>
    Optional list of repositories in which the pool should be created.

    LogonType, LogonTypeArgs

    Service
    ServiceRun as a service.
    Interactive
    InteractiveRun in interactive mode.
    LogonTypeService
    ServiceRun as a service.
    LogonTypeInteractive
    InteractiveRun in interactive mode.
    Service
    ServiceRun as a service.
    Interactive
    InteractiveRun in interactive mode.
    Service
    ServiceRun as a service.
    Interactive
    InteractiveRun in interactive mode.
    SERVICE
    ServiceRun as a service.
    INTERACTIVE
    InteractiveRun in interactive mode.
    "Service"
    ServiceRun as a service.
    "Interactive"
    InteractiveRun in interactive mode.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.DevOpsInfrastructure.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.DevOpsInfrastructure.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned

    ManualResourcePredictionsProfile, ManualResourcePredictionsProfileArgs

    ManualResourcePredictionsProfileResponse, ManualResourcePredictionsProfileResponseArgs

    NetworkProfile, NetworkProfileArgs

    SubnetId string
    The subnet id on which to put all machines created in the pool.
    SubnetId string
    The subnet id on which to put all machines created in the pool.
    subnetId String
    The subnet id on which to put all machines created in the pool.
    subnetId string
    The subnet id on which to put all machines created in the pool.
    subnet_id str
    The subnet id on which to put all machines created in the pool.
    subnetId String
    The subnet id on which to put all machines created in the pool.

    NetworkProfileResponse, NetworkProfileResponseArgs

    SubnetId string
    The subnet id on which to put all machines created in the pool.
    SubnetId string
    The subnet id on which to put all machines created in the pool.
    subnetId String
    The subnet id on which to put all machines created in the pool.
    subnetId string
    The subnet id on which to put all machines created in the pool.
    subnet_id str
    The subnet id on which to put all machines created in the pool.
    subnetId String
    The subnet id on which to put all machines created in the pool.

    Organization, OrganizationArgs

    Url string
    The Azure DevOps organization URL in which the pool should be created.
    OpenAccess bool
    Determines if the pool should have open access to all projects in this organization.
    Parallelism int
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    Projects List<string>
    Optional list of projects in which the pool should be created.
    Url string
    The Azure DevOps organization URL in which the pool should be created.
    OpenAccess bool
    Determines if the pool should have open access to all projects in this organization.
    Parallelism int
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    Projects []string
    Optional list of projects in which the pool should be created.
    url String
    The Azure DevOps organization URL in which the pool should be created.
    openAccess Boolean
    Determines if the pool should have open access to all projects in this organization.
    parallelism Integer
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects List<String>
    Optional list of projects in which the pool should be created.
    url string
    The Azure DevOps organization URL in which the pool should be created.
    openAccess boolean
    Determines if the pool should have open access to all projects in this organization.
    parallelism number
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects string[]
    Optional list of projects in which the pool should be created.
    url str
    The Azure DevOps organization URL in which the pool should be created.
    open_access bool
    Determines if the pool should have open access to all projects in this organization.
    parallelism int
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects Sequence[str]
    Optional list of projects in which the pool should be created.
    url String
    The Azure DevOps organization URL in which the pool should be created.
    openAccess Boolean
    Determines if the pool should have open access to all projects in this organization.
    parallelism Number
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects List<String>
    Optional list of projects in which the pool should be created.

    OrganizationResponse, OrganizationResponseArgs

    Url string
    The Azure DevOps organization URL in which the pool should be created.
    OpenAccess bool
    Determines if the pool should have open access to all projects in this organization.
    Parallelism int
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    Projects List<string>
    Optional list of projects in which the pool should be created.
    Url string
    The Azure DevOps organization URL in which the pool should be created.
    OpenAccess bool
    Determines if the pool should have open access to all projects in this organization.
    Parallelism int
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    Projects []string
    Optional list of projects in which the pool should be created.
    url String
    The Azure DevOps organization URL in which the pool should be created.
    openAccess Boolean
    Determines if the pool should have open access to all projects in this organization.
    parallelism Integer
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects List<String>
    Optional list of projects in which the pool should be created.
    url string
    The Azure DevOps organization URL in which the pool should be created.
    openAccess boolean
    Determines if the pool should have open access to all projects in this organization.
    parallelism number
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects string[]
    Optional list of projects in which the pool should be created.
    url str
    The Azure DevOps organization URL in which the pool should be created.
    open_access bool
    Determines if the pool should have open access to all projects in this organization.
    parallelism int
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects Sequence[str]
    Optional list of projects in which the pool should be created.
    url String
    The Azure DevOps organization URL in which the pool should be created.
    openAccess Boolean
    Determines if the pool should have open access to all projects in this organization.
    parallelism Number
    How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
    projects List<String>
    Optional list of projects in which the pool should be created.

    OsDiskStorageAccountType, OsDiskStorageAccountTypeArgs

    Standard
    StandardStandard OS disk type.
    Premium
    PremiumPremium OS disk type.
    StandardSSD
    StandardSSDStandard SSD OS disk type.
    OsDiskStorageAccountTypeStandard
    StandardStandard OS disk type.
    OsDiskStorageAccountTypePremium
    PremiumPremium OS disk type.
    OsDiskStorageAccountTypeStandardSSD
    StandardSSDStandard SSD OS disk type.
    Standard
    StandardStandard OS disk type.
    Premium
    PremiumPremium OS disk type.
    StandardSSD
    StandardSSDStandard SSD OS disk type.
    Standard
    StandardStandard OS disk type.
    Premium
    PremiumPremium OS disk type.
    StandardSSD
    StandardSSDStandard SSD OS disk type.
    STANDARD
    StandardStandard OS disk type.
    PREMIUM
    PremiumPremium OS disk type.
    STANDARD_SSD
    StandardSSDStandard SSD OS disk type.
    "Standard"
    StandardStandard OS disk type.
    "Premium"
    PremiumPremium OS disk type.
    "StandardSSD"
    StandardSSDStandard SSD OS disk type.

    OsProfile, OsProfileArgs

    LogonType string | Pulumi.AzureNative.DevOpsInfrastructure.LogonType
    Determines how the service should be run. By default, this will be set to Service.
    SecretsManagementSettings Pulumi.AzureNative.DevOpsInfrastructure.Inputs.SecretsManagementSettings
    The secret management settings of the machines in the pool.
    LogonType string | LogonType
    Determines how the service should be run. By default, this will be set to Service.
    SecretsManagementSettings SecretsManagementSettings
    The secret management settings of the machines in the pool.
    logonType String | LogonType
    Determines how the service should be run. By default, this will be set to Service.
    secretsManagementSettings SecretsManagementSettings
    The secret management settings of the machines in the pool.
    logonType string | LogonType
    Determines how the service should be run. By default, this will be set to Service.
    secretsManagementSettings SecretsManagementSettings
    The secret management settings of the machines in the pool.
    logon_type str | LogonType
    Determines how the service should be run. By default, this will be set to Service.
    secrets_management_settings SecretsManagementSettings
    The secret management settings of the machines in the pool.
    logonType String | "Service" | "Interactive"
    Determines how the service should be run. By default, this will be set to Service.
    secretsManagementSettings Property Map
    The secret management settings of the machines in the pool.

    OsProfileResponse, OsProfileResponseArgs

    LogonType string
    Determines how the service should be run. By default, this will be set to Service.
    SecretsManagementSettings Pulumi.AzureNative.DevOpsInfrastructure.Inputs.SecretsManagementSettingsResponse
    The secret management settings of the machines in the pool.
    LogonType string
    Determines how the service should be run. By default, this will be set to Service.
    SecretsManagementSettings SecretsManagementSettingsResponse
    The secret management settings of the machines in the pool.
    logonType String
    Determines how the service should be run. By default, this will be set to Service.
    secretsManagementSettings SecretsManagementSettingsResponse
    The secret management settings of the machines in the pool.
    logonType string
    Determines how the service should be run. By default, this will be set to Service.
    secretsManagementSettings SecretsManagementSettingsResponse
    The secret management settings of the machines in the pool.
    logon_type str
    Determines how the service should be run. By default, this will be set to Service.
    secrets_management_settings SecretsManagementSettingsResponse
    The secret management settings of the machines in the pool.
    logonType String
    Determines how the service should be run. By default, this will be set to Service.
    secretsManagementSettings Property Map
    The secret management settings of the machines in the pool.

    PoolImage, PoolImageArgs

    Aliases List<string>
    List of aliases to reference the image by.
    Buffer string
    The percentage of the buffer to be allocated to this image.
    EphemeralType string | Pulumi.AzureNative.DevOpsInfrastructure.EphemeralType
    The ephemeral type of the image.
    ResourceId string
    The resource id of the image.
    WellKnownImageName string
    The image to use from a well-known set of images made available to customers.
    Aliases []string
    List of aliases to reference the image by.
    Buffer string
    The percentage of the buffer to be allocated to this image.
    EphemeralType string | EphemeralType
    The ephemeral type of the image.
    ResourceId string
    The resource id of the image.
    WellKnownImageName string
    The image to use from a well-known set of images made available to customers.
    aliases List<String>
    List of aliases to reference the image by.
    buffer String
    The percentage of the buffer to be allocated to this image.
    ephemeralType String | EphemeralType
    The ephemeral type of the image.
    resourceId String
    The resource id of the image.
    wellKnownImageName String
    The image to use from a well-known set of images made available to customers.
    aliases string[]
    List of aliases to reference the image by.
    buffer string
    The percentage of the buffer to be allocated to this image.
    ephemeralType string | EphemeralType
    The ephemeral type of the image.
    resourceId string
    The resource id of the image.
    wellKnownImageName string
    The image to use from a well-known set of images made available to customers.
    aliases Sequence[str]
    List of aliases to reference the image by.
    buffer str
    The percentage of the buffer to be allocated to this image.
    ephemeral_type str | EphemeralType
    The ephemeral type of the image.
    resource_id str
    The resource id of the image.
    well_known_image_name str
    The image to use from a well-known set of images made available to customers.
    aliases List<String>
    List of aliases to reference the image by.
    buffer String
    The percentage of the buffer to be allocated to this image.
    ephemeralType String | "Automatic" | "CacheDisk" | "ResourceDisk"
    The ephemeral type of the image.
    resourceId String
    The resource id of the image.
    wellKnownImageName String
    The image to use from a well-known set of images made available to customers.

    PoolImageResponse, PoolImageResponseArgs

    Aliases List<string>
    List of aliases to reference the image by.
    Buffer string
    The percentage of the buffer to be allocated to this image.
    EphemeralType string
    The ephemeral type of the image.
    ResourceId string
    The resource id of the image.
    WellKnownImageName string
    The image to use from a well-known set of images made available to customers.
    Aliases []string
    List of aliases to reference the image by.
    Buffer string
    The percentage of the buffer to be allocated to this image.
    EphemeralType string
    The ephemeral type of the image.
    ResourceId string
    The resource id of the image.
    WellKnownImageName string
    The image to use from a well-known set of images made available to customers.
    aliases List<String>
    List of aliases to reference the image by.
    buffer String
    The percentage of the buffer to be allocated to this image.
    ephemeralType String
    The ephemeral type of the image.
    resourceId String
    The resource id of the image.
    wellKnownImageName String
    The image to use from a well-known set of images made available to customers.
    aliases string[]
    List of aliases to reference the image by.
    buffer string
    The percentage of the buffer to be allocated to this image.
    ephemeralType string
    The ephemeral type of the image.
    resourceId string
    The resource id of the image.
    wellKnownImageName string
    The image to use from a well-known set of images made available to customers.
    aliases Sequence[str]
    List of aliases to reference the image by.
    buffer str
    The percentage of the buffer to be allocated to this image.
    ephemeral_type str
    The ephemeral type of the image.
    resource_id str
    The resource id of the image.
    well_known_image_name str
    The image to use from a well-known set of images made available to customers.
    aliases List<String>
    List of aliases to reference the image by.
    buffer String
    The percentage of the buffer to be allocated to this image.
    ephemeralType String
    The ephemeral type of the image.
    resourceId String
    The resource id of the image.
    wellKnownImageName String
    The image to use from a well-known set of images made available to customers.

    PredictionPreference, PredictionPreferenceArgs

    Balanced
    BalancedBalance between cost and performance.
    MostCostEffective
    MostCostEffectiveOptimizes for cost over performance.
    MoreCostEffective
    MoreCostEffectiveHalfway through cost and balanced.
    MorePerformance
    MorePerformanceHalfway through balanced and performance.
    BestPerformance
    BestPerformanceOptimizes for performance over cost.
    PredictionPreferenceBalanced
    BalancedBalance between cost and performance.
    PredictionPreferenceMostCostEffective
    MostCostEffectiveOptimizes for cost over performance.
    PredictionPreferenceMoreCostEffective
    MoreCostEffectiveHalfway through cost and balanced.
    PredictionPreferenceMorePerformance
    MorePerformanceHalfway through balanced and performance.
    PredictionPreferenceBestPerformance
    BestPerformanceOptimizes for performance over cost.
    Balanced
    BalancedBalance between cost and performance.
    MostCostEffective
    MostCostEffectiveOptimizes for cost over performance.
    MoreCostEffective
    MoreCostEffectiveHalfway through cost and balanced.
    MorePerformance
    MorePerformanceHalfway through balanced and performance.
    BestPerformance
    BestPerformanceOptimizes for performance over cost.
    Balanced
    BalancedBalance between cost and performance.
    MostCostEffective
    MostCostEffectiveOptimizes for cost over performance.
    MoreCostEffective
    MoreCostEffectiveHalfway through cost and balanced.
    MorePerformance
    MorePerformanceHalfway through balanced and performance.
    BestPerformance
    BestPerformanceOptimizes for performance over cost.
    BALANCED
    BalancedBalance between cost and performance.
    MOST_COST_EFFECTIVE
    MostCostEffectiveOptimizes for cost over performance.
    MORE_COST_EFFECTIVE
    MoreCostEffectiveHalfway through cost and balanced.
    MORE_PERFORMANCE
    MorePerformanceHalfway through balanced and performance.
    BEST_PERFORMANCE
    BestPerformanceOptimizes for performance over cost.
    "Balanced"
    BalancedBalance between cost and performance.
    "MostCostEffective"
    MostCostEffectiveOptimizes for cost over performance.
    "MoreCostEffective"
    MoreCostEffectiveHalfway through cost and balanced.
    "MorePerformance"
    MorePerformanceHalfway through balanced and performance.
    "BestPerformance"
    BestPerformanceOptimizes for performance over cost.

    ProvisioningState, ProvisioningStateArgs

    Succeeded
    SucceededRepresents a succeeded operation.
    Failed
    FailedRepresents a failed operation.
    Canceled
    CanceledRepresents a canceled operation.
    Provisioning
    ProvisioningRepresents a pending operation.
    Updating
    UpdatingRepresents a pending operation.
    Deleting
    DeletingRepresents an operation under deletion.
    Accepted
    AcceptedRepresents an accepted operation.
    ProvisioningStateSucceeded
    SucceededRepresents a succeeded operation.
    ProvisioningStateFailed
    FailedRepresents a failed operation.
    ProvisioningStateCanceled
    CanceledRepresents a canceled operation.
    ProvisioningStateProvisioning
    ProvisioningRepresents a pending operation.
    ProvisioningStateUpdating
    UpdatingRepresents a pending operation.
    ProvisioningStateDeleting
    DeletingRepresents an operation under deletion.
    ProvisioningStateAccepted
    AcceptedRepresents an accepted operation.
    Succeeded
    SucceededRepresents a succeeded operation.
    Failed
    FailedRepresents a failed operation.
    Canceled
    CanceledRepresents a canceled operation.
    Provisioning
    ProvisioningRepresents a pending operation.
    Updating
    UpdatingRepresents a pending operation.
    Deleting
    DeletingRepresents an operation under deletion.
    Accepted
    AcceptedRepresents an accepted operation.
    Succeeded
    SucceededRepresents a succeeded operation.
    Failed
    FailedRepresents a failed operation.
    Canceled
    CanceledRepresents a canceled operation.
    Provisioning
    ProvisioningRepresents a pending operation.
    Updating
    UpdatingRepresents a pending operation.
    Deleting
    DeletingRepresents an operation under deletion.
    Accepted
    AcceptedRepresents an accepted operation.
    SUCCEEDED
    SucceededRepresents a succeeded operation.
    FAILED
    FailedRepresents a failed operation.
    CANCELED
    CanceledRepresents a canceled operation.
    PROVISIONING
    ProvisioningRepresents a pending operation.
    UPDATING
    UpdatingRepresents a pending operation.
    DELETING
    DeletingRepresents an operation under deletion.
    ACCEPTED
    AcceptedRepresents an accepted operation.
    "Succeeded"
    SucceededRepresents a succeeded operation.
    "Failed"
    FailedRepresents a failed operation.
    "Canceled"
    CanceledRepresents a canceled operation.
    "Provisioning"
    ProvisioningRepresents a pending operation.
    "Updating"
    UpdatingRepresents a pending operation.
    "Deleting"
    DeletingRepresents an operation under deletion.
    "Accepted"
    AcceptedRepresents an accepted operation.

    SecretsManagementSettings, SecretsManagementSettingsArgs

    KeyExportable bool
    Defines if the key of the certificates should be exportable.
    ObservedCertificates List<string>
    The list of certificates to install on all machines in the pool.
    CertificateStoreLocation string
    Where to store certificates on the machine.
    CertificateStoreName string | Pulumi.AzureNative.DevOpsInfrastructure.CertificateStoreNameOption
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    KeyExportable bool
    Defines if the key of the certificates should be exportable.
    ObservedCertificates []string
    The list of certificates to install on all machines in the pool.
    CertificateStoreLocation string
    Where to store certificates on the machine.
    CertificateStoreName string | CertificateStoreNameOption
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    keyExportable Boolean
    Defines if the key of the certificates should be exportable.
    observedCertificates List<String>
    The list of certificates to install on all machines in the pool.
    certificateStoreLocation String
    Where to store certificates on the machine.
    certificateStoreName String | CertificateStoreNameOption
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    keyExportable boolean
    Defines if the key of the certificates should be exportable.
    observedCertificates string[]
    The list of certificates to install on all machines in the pool.
    certificateStoreLocation string
    Where to store certificates on the machine.
    certificateStoreName string | CertificateStoreNameOption
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    key_exportable bool
    Defines if the key of the certificates should be exportable.
    observed_certificates Sequence[str]
    The list of certificates to install on all machines in the pool.
    certificate_store_location str
    Where to store certificates on the machine.
    certificate_store_name str | CertificateStoreNameOption
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    keyExportable Boolean
    Defines if the key of the certificates should be exportable.
    observedCertificates List<String>
    The list of certificates to install on all machines in the pool.
    certificateStoreLocation String
    Where to store certificates on the machine.
    certificateStoreName String | "My" | "Root"
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.

    SecretsManagementSettingsResponse, SecretsManagementSettingsResponseArgs

    KeyExportable bool
    Defines if the key of the certificates should be exportable.
    ObservedCertificates List<string>
    The list of certificates to install on all machines in the pool.
    CertificateStoreLocation string
    Where to store certificates on the machine.
    CertificateStoreName string
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    KeyExportable bool
    Defines if the key of the certificates should be exportable.
    ObservedCertificates []string
    The list of certificates to install on all machines in the pool.
    CertificateStoreLocation string
    Where to store certificates on the machine.
    CertificateStoreName string
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    keyExportable Boolean
    Defines if the key of the certificates should be exportable.
    observedCertificates List<String>
    The list of certificates to install on all machines in the pool.
    certificateStoreLocation String
    Where to store certificates on the machine.
    certificateStoreName String
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    keyExportable boolean
    Defines if the key of the certificates should be exportable.
    observedCertificates string[]
    The list of certificates to install on all machines in the pool.
    certificateStoreLocation string
    Where to store certificates on the machine.
    certificateStoreName string
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    key_exportable bool
    Defines if the key of the certificates should be exportable.
    observed_certificates Sequence[str]
    The list of certificates to install on all machines in the pool.
    certificate_store_location str
    Where to store certificates on the machine.
    certificate_store_name str
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.
    keyExportable Boolean
    Defines if the key of the certificates should be exportable.
    observedCertificates List<String>
    The list of certificates to install on all machines in the pool.
    certificateStoreLocation String
    Where to store certificates on the machine.
    certificateStoreName String
    Name of the certificate store to use on the machine, currently 'My' and 'Root' are supported.

    Stateful, StatefulArgs

    GracePeriodTimeSpan string
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    MaxAgentLifetime string
    How long should stateful machines be kept around. The maximum is one week.
    ResourcePredictions object
    Defines pool buffer/stand-by agents.
    ResourcePredictionsProfile Pulumi.AzureNative.DevOpsInfrastructure.Inputs.AutomaticResourcePredictionsProfile | Pulumi.AzureNative.DevOpsInfrastructure.Inputs.ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    GracePeriodTimeSpan string
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    MaxAgentLifetime string
    How long should stateful machines be kept around. The maximum is one week.
    ResourcePredictions interface{}
    Defines pool buffer/stand-by agents.
    ResourcePredictionsProfile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    gracePeriodTimeSpan String
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    maxAgentLifetime String
    How long should stateful machines be kept around. The maximum is one week.
    resourcePredictions Object
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    gracePeriodTimeSpan string
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    maxAgentLifetime string
    How long should stateful machines be kept around. The maximum is one week.
    resourcePredictions any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    grace_period_time_span str
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    max_agent_lifetime str
    How long should stateful machines be kept around. The maximum is one week.
    resource_predictions Any
    Defines pool buffer/stand-by agents.
    resource_predictions_profile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    gracePeriodTimeSpan String
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    maxAgentLifetime String
    How long should stateful machines be kept around. The maximum is one week.
    resourcePredictions Any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile Property Map | Property Map
    Defines how the pool buffer/stand-by agents is provided.

    StatefulResponse, StatefulResponseArgs

    GracePeriodTimeSpan string
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    MaxAgentLifetime string
    How long should stateful machines be kept around. The maximum is one week.
    ResourcePredictions object
    Defines pool buffer/stand-by agents.
    ResourcePredictionsProfile Pulumi.AzureNative.DevOpsInfrastructure.Inputs.AutomaticResourcePredictionsProfileResponse | Pulumi.AzureNative.DevOpsInfrastructure.Inputs.ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    GracePeriodTimeSpan string
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    MaxAgentLifetime string
    How long should stateful machines be kept around. The maximum is one week.
    ResourcePredictions interface{}
    Defines pool buffer/stand-by agents.
    ResourcePredictionsProfile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    gracePeriodTimeSpan String
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    maxAgentLifetime String
    How long should stateful machines be kept around. The maximum is one week.
    resourcePredictions Object
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    gracePeriodTimeSpan string
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    maxAgentLifetime string
    How long should stateful machines be kept around. The maximum is one week.
    resourcePredictions any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    grace_period_time_span str
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    max_agent_lifetime str
    How long should stateful machines be kept around. The maximum is one week.
    resource_predictions Any
    Defines pool buffer/stand-by agents.
    resource_predictions_profile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    gracePeriodTimeSpan String
    How long should the machine be kept around after it ran a workload when there are no stand-by agents. The maximum is one week.
    maxAgentLifetime String
    How long should stateful machines be kept around. The maximum is one week.
    resourcePredictions Any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile Property Map | Property Map
    Defines how the pool buffer/stand-by agents is provided.

    StatelessAgentProfile, StatelessAgentProfileArgs

    ResourcePredictions interface{}
    Defines pool buffer/stand-by agents.
    ResourcePredictionsProfile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    resourcePredictions Object
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    resourcePredictions any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    resource_predictions Any
    Defines pool buffer/stand-by agents.
    resource_predictions_profile AutomaticResourcePredictionsProfile | ManualResourcePredictionsProfile
    Defines how the pool buffer/stand-by agents is provided.
    resourcePredictions Any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile Property Map | Property Map
    Defines how the pool buffer/stand-by agents is provided.

    StatelessAgentProfileResponse, StatelessAgentProfileResponseArgs

    ResourcePredictions interface{}
    Defines pool buffer/stand-by agents.
    ResourcePredictionsProfile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    resourcePredictions Object
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    resourcePredictions any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    resource_predictions Any
    Defines pool buffer/stand-by agents.
    resource_predictions_profile AutomaticResourcePredictionsProfileResponse | ManualResourcePredictionsProfileResponse
    Defines how the pool buffer/stand-by agents is provided.
    resourcePredictions Any
    Defines pool buffer/stand-by agents.
    resourcePredictionsProfile Property Map | Property Map
    Defines how the pool buffer/stand-by agents is provided.

    StorageAccountType, StorageAccountTypeArgs

    StandardLRS
    Standard_LRSThe data disk should use standard locally redundant storage.
    PremiumLRS
    Premium_LRSThe data disk should use premium locally redundant storage.
    StandardSSDLRS
    StandardSSD_LRSThe data disk should use standard SSD locally redundant storage.
    PremiumZRS
    Premium_ZRSThe data disk should use premium SSD zonal redundant storage.
    StandardSSDZRS
    StandardSSD_ZRSThe data disk should use standard SSD zonal redundant storage.
    StorageAccountTypeStandardLRS
    Standard_LRSThe data disk should use standard locally redundant storage.
    StorageAccountTypePremiumLRS
    Premium_LRSThe data disk should use premium locally redundant storage.
    StorageAccountTypeStandardSSDLRS
    StandardSSD_LRSThe data disk should use standard SSD locally redundant storage.
    StorageAccountTypePremiumZRS
    Premium_ZRSThe data disk should use premium SSD zonal redundant storage.
    StorageAccountTypeStandardSSDZRS
    StandardSSD_ZRSThe data disk should use standard SSD zonal redundant storage.
    StandardLRS
    Standard_LRSThe data disk should use standard locally redundant storage.
    PremiumLRS
    Premium_LRSThe data disk should use premium locally redundant storage.
    StandardSSDLRS
    StandardSSD_LRSThe data disk should use standard SSD locally redundant storage.
    PremiumZRS
    Premium_ZRSThe data disk should use premium SSD zonal redundant storage.
    StandardSSDZRS
    StandardSSD_ZRSThe data disk should use standard SSD zonal redundant storage.
    StandardLRS
    Standard_LRSThe data disk should use standard locally redundant storage.
    PremiumLRS
    Premium_LRSThe data disk should use premium locally redundant storage.
    StandardSSDLRS
    StandardSSD_LRSThe data disk should use standard SSD locally redundant storage.
    PremiumZRS
    Premium_ZRSThe data disk should use premium SSD zonal redundant storage.
    StandardSSDZRS
    StandardSSD_ZRSThe data disk should use standard SSD zonal redundant storage.
    STANDARD_LRS
    Standard_LRSThe data disk should use standard locally redundant storage.
    PREMIUM_LRS
    Premium_LRSThe data disk should use premium locally redundant storage.
    STANDARD_SSDLRS
    StandardSSD_LRSThe data disk should use standard SSD locally redundant storage.
    PREMIUM_ZRS
    Premium_ZRSThe data disk should use premium SSD zonal redundant storage.
    STANDARD_SSDZRS
    StandardSSD_ZRSThe data disk should use standard SSD zonal redundant storage.
    "Standard_LRS"
    Standard_LRSThe data disk should use standard locally redundant storage.
    "Premium_LRS"
    Premium_LRSThe data disk should use premium locally redundant storage.
    "StandardSSD_LRS"
    StandardSSD_LRSThe data disk should use standard SSD locally redundant storage.
    "Premium_ZRS"
    Premium_ZRSThe data disk should use premium SSD zonal redundant storage.
    "StandardSSD_ZRS"
    StandardSSD_ZRSThe data disk should use standard SSD zonal redundant storage.

    StorageProfile, StorageProfileArgs

    DataDisks []DataDisk
    A list of empty data disks to attach.
    OsDiskStorageAccountType string | OsDiskStorageAccountType
    The Azure SKU name of the machines in the pool.
    dataDisks List<DataDisk>
    A list of empty data disks to attach.
    osDiskStorageAccountType String | OsDiskStorageAccountType
    The Azure SKU name of the machines in the pool.
    dataDisks DataDisk[]
    A list of empty data disks to attach.
    osDiskStorageAccountType string | OsDiskStorageAccountType
    The Azure SKU name of the machines in the pool.
    data_disks Sequence[DataDisk]
    A list of empty data disks to attach.
    os_disk_storage_account_type str | OsDiskStorageAccountType
    The Azure SKU name of the machines in the pool.
    dataDisks List<Property Map>
    A list of empty data disks to attach.
    osDiskStorageAccountType String | "Standard" | "Premium" | "StandardSSD"
    The Azure SKU name of the machines in the pool.

    StorageProfileResponse, StorageProfileResponseArgs

    DataDisks List<Pulumi.AzureNative.DevOpsInfrastructure.Inputs.DataDiskResponse>
    A list of empty data disks to attach.
    OsDiskStorageAccountType string
    The Azure SKU name of the machines in the pool.
    DataDisks []DataDiskResponse
    A list of empty data disks to attach.
    OsDiskStorageAccountType string
    The Azure SKU name of the machines in the pool.
    dataDisks List<DataDiskResponse>
    A list of empty data disks to attach.
    osDiskStorageAccountType String
    The Azure SKU name of the machines in the pool.
    dataDisks DataDiskResponse[]
    A list of empty data disks to attach.
    osDiskStorageAccountType string
    The Azure SKU name of the machines in the pool.
    data_disks Sequence[DataDiskResponse]
    A list of empty data disks to attach.
    os_disk_storage_account_type str
    The Azure SKU name of the machines in the pool.
    dataDisks List<Property Map>
    A list of empty data disks to attach.
    osDiskStorageAccountType String
    The Azure SKU name of the machines in the pool.

    SystemDataResponse, SystemDataResponseArgs

    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.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    VmssFabricProfile, VmssFabricProfileArgs

    Images []PoolImage
    The VM images of the machines in the pool.
    Sku DevOpsAzureSku
    The Azure SKU of the machines in the pool.
    NetworkProfile NetworkProfile
    The network profile of the machines in the pool.
    OsProfile OsProfile
    The OS profile of the machines in the pool.
    StorageProfile StorageProfile
    The storage profile of the machines in the pool.
    images List<PoolImage>
    The VM images of the machines in the pool.
    sku DevOpsAzureSku
    The Azure SKU of the machines in the pool.
    networkProfile NetworkProfile
    The network profile of the machines in the pool.
    osProfile OsProfile
    The OS profile of the machines in the pool.
    storageProfile StorageProfile
    The storage profile of the machines in the pool.
    images PoolImage[]
    The VM images of the machines in the pool.
    sku DevOpsAzureSku
    The Azure SKU of the machines in the pool.
    networkProfile NetworkProfile
    The network profile of the machines in the pool.
    osProfile OsProfile
    The OS profile of the machines in the pool.
    storageProfile StorageProfile
    The storage profile of the machines in the pool.
    images Sequence[PoolImage]
    The VM images of the machines in the pool.
    sku DevOpsAzureSku
    The Azure SKU of the machines in the pool.
    network_profile NetworkProfile
    The network profile of the machines in the pool.
    os_profile OsProfile
    The OS profile of the machines in the pool.
    storage_profile StorageProfile
    The storage profile of the machines in the pool.
    images List<Property Map>
    The VM images of the machines in the pool.
    sku Property Map
    The Azure SKU of the machines in the pool.
    networkProfile Property Map
    The network profile of the machines in the pool.
    osProfile Property Map
    The OS profile of the machines in the pool.
    storageProfile Property Map
    The storage profile of the machines in the pool.

    VmssFabricProfileResponse, VmssFabricProfileResponseArgs

    Images []PoolImageResponse
    The VM images of the machines in the pool.
    Sku DevOpsAzureSkuResponse
    The Azure SKU of the machines in the pool.
    NetworkProfile NetworkProfileResponse
    The network profile of the machines in the pool.
    OsProfile OsProfileResponse
    The OS profile of the machines in the pool.
    StorageProfile StorageProfileResponse
    The storage profile of the machines in the pool.
    images List<PoolImageResponse>
    The VM images of the machines in the pool.
    sku DevOpsAzureSkuResponse
    The Azure SKU of the machines in the pool.
    networkProfile NetworkProfileResponse
    The network profile of the machines in the pool.
    osProfile OsProfileResponse
    The OS profile of the machines in the pool.
    storageProfile StorageProfileResponse
    The storage profile of the machines in the pool.
    images PoolImageResponse[]
    The VM images of the machines in the pool.
    sku DevOpsAzureSkuResponse
    The Azure SKU of the machines in the pool.
    networkProfile NetworkProfileResponse
    The network profile of the machines in the pool.
    osProfile OsProfileResponse
    The OS profile of the machines in the pool.
    storageProfile StorageProfileResponse
    The storage profile of the machines in the pool.
    images Sequence[PoolImageResponse]
    The VM images of the machines in the pool.
    sku DevOpsAzureSkuResponse
    The Azure SKU of the machines in the pool.
    network_profile NetworkProfileResponse
    The network profile of the machines in the pool.
    os_profile OsProfileResponse
    The OS profile of the machines in the pool.
    storage_profile StorageProfileResponse
    The storage profile of the machines in the pool.
    images List<Property Map>
    The VM images of the machines in the pool.
    sku Property Map
    The Azure SKU of the machines in the pool.
    networkProfile Property Map
    The network profile of the machines in the pool.
    osProfile Property Map
    The OS profile of the machines in the pool.
    storageProfile Property Map
    The storage profile of the machines in the pool.

    Import

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

    $ pulumi import azure-native:devopsinfrastructure:Pool myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOpsInfrastructure/pools/{poolName} 
    

    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.3.0 published on Monday, Apr 28, 2025 by Pulumi