1. Packages
  2. Azure Native
  3. API Docs
  4. azurefleet
  5. Fleet
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.60.1 published on Wednesday, Sep 11, 2024 by Pulumi

azure-native.azurefleet.Fleet

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.60.1 published on Wednesday, Sep 11, 2024 by Pulumi

    An Compute Fleet resource Azure REST API version: 2024-05-01-preview.

    Other available API versions: 2023-11-01-preview.

    Example Usage

    Fleets_CreateOrUpdate_MinimumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var fleet = new AzureNative.AzureFleet.Fleet("fleet", new()
        {
            ComputeProfile = new AzureNative.AzureFleet.Inputs.ComputeProfileArgs
            {
                BaseVirtualMachineProfile = new AzureNative.AzureFleet.Inputs.BaseVirtualMachineProfileArgs
                {
                    NetworkProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkProfileArgs
                    {
                        NetworkApiVersion = "2022-07-01",
                        NetworkInterfaceConfigurations = new[]
                        {
                            new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkConfigurationArgs
                            {
                                Name = "vmNameTest",
                                Properties = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkConfigurationPropertiesArgs
                                {
                                    EnableAcceleratedNetworking = false,
                                    EnableIPForwarding = true,
                                    IpConfigurations = new[]
                                    {
                                        new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetIPConfigurationArgs
                                        {
                                            Name = "vmNameTest",
                                            Properties = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetIPConfigurationPropertiesArgs
                                            {
                                                LoadBalancerBackendAddressPools = new[]
                                                {
                                                    new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                                    {
                                                        Id = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}",
                                                    },
                                                },
                                                Primary = true,
                                                Subnet = new AzureNative.AzureFleet.Inputs.ApiEntityReferenceArgs
                                                {
                                                    Id = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}",
                                                },
                                            },
                                        },
                                    },
                                    Primary = true,
                                },
                            },
                        },
                    },
                    OsProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetOSProfileArgs
                    {
                        AdminPassword = "TestPassword$0",
                        AdminUsername = "azureuser",
                        ComputerNamePrefix = "prefix",
                        LinuxConfiguration = new AzureNative.AzureFleet.Inputs.LinuxConfigurationArgs
                        {
                            DisablePasswordAuthentication = false,
                        },
                    },
                    StorageProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetStorageProfileArgs
                    {
                        ImageReference = new AzureNative.AzureFleet.Inputs.ImageReferenceArgs
                        {
                            Offer = "0001-com-ubuntu-server-focal",
                            Publisher = "canonical",
                            Sku = "20_04-lts-gen2",
                            Version = "latest",
                        },
                        OsDisk = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetOSDiskArgs
                        {
                            Caching = AzureNative.AzureFleet.CachingTypes.ReadWrite,
                            CreateOption = AzureNative.AzureFleet.DiskCreateOptionTypes.FromImage,
                            ManagedDisk = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetManagedDiskParametersArgs
                            {
                                StorageAccountType = AzureNative.AzureFleet.StorageAccountTypes.Standard_LRS,
                            },
                            OsType = AzureNative.AzureFleet.OperatingSystemTypes.Linux,
                        },
                    },
                },
                ComputeApiVersion = "2023-09-01",
                PlatformFaultDomainCount = 1,
            },
            FleetName = "testFleet",
            Location = "eastus2euap",
            RegularPriorityProfile = new AzureNative.AzureFleet.Inputs.RegularPriorityProfileArgs
            {
                AllocationStrategy = AzureNative.AzureFleet.RegularPriorityAllocationStrategy.LowestPrice,
                Capacity = 2,
                MinCapacity = 1,
            },
            ResourceGroupName = "rgazurefleet",
            SpotPriorityProfile = new AzureNative.AzureFleet.Inputs.SpotPriorityProfileArgs
            {
                AllocationStrategy = AzureNative.AzureFleet.SpotAllocationStrategy.PriceCapacityOptimized,
                Capacity = 2,
                EvictionPolicy = AzureNative.AzureFleet.EvictionPolicy.Delete,
                Maintain = true,
                MinCapacity = 1,
            },
            Tags = 
            {
                { "key", "fleets-test" },
            },
            VmSizesProfile = new[]
            {
                new AzureNative.AzureFleet.Inputs.VmSizeProfileArgs
                {
                    Name = "Standard_D2s_v3",
                },
                new AzureNative.AzureFleet.Inputs.VmSizeProfileArgs
                {
                    Name = "Standard_D4s_v3",
                },
                new AzureNative.AzureFleet.Inputs.VmSizeProfileArgs
                {
                    Name = "Standard_E2s_v3",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	azurefleet "github.com/pulumi/pulumi-azure-native-sdk/azurefleet/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurefleet.NewFleet(ctx, "fleet", &azurefleet.FleetArgs{
    			ComputeProfile: &azurefleet.ComputeProfileArgs{
    				BaseVirtualMachineProfile: &azurefleet.BaseVirtualMachineProfileArgs{
    					NetworkProfile: &azurefleet.VirtualMachineScaleSetNetworkProfileArgs{
    						NetworkApiVersion: pulumi.String("2022-07-01"),
    						NetworkInterfaceConfigurations: azurefleet.VirtualMachineScaleSetNetworkConfigurationArray{
    							&azurefleet.VirtualMachineScaleSetNetworkConfigurationArgs{
    								Name: pulumi.String("vmNameTest"),
    								Properties: &azurefleet.VirtualMachineScaleSetNetworkConfigurationPropertiesArgs{
    									EnableAcceleratedNetworking: pulumi.Bool(false),
    									EnableIPForwarding:          pulumi.Bool(true),
    									IpConfigurations: azurefleet.VirtualMachineScaleSetIPConfigurationArray{
    										&azurefleet.VirtualMachineScaleSetIPConfigurationArgs{
    											Name: pulumi.String("vmNameTest"),
    											Properties: &azurefleet.VirtualMachineScaleSetIPConfigurationPropertiesArgs{
    												LoadBalancerBackendAddressPools: azurefleet.SubResourceArray{
    													&azurefleet.SubResourceArgs{
    														Id: pulumi.String("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"),
    													},
    												},
    												Primary: pulumi.Bool(true),
    												Subnet: &azurefleet.ApiEntityReferenceArgs{
    													Id: pulumi.String("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"),
    												},
    											},
    										},
    									},
    									Primary: pulumi.Bool(true),
    								},
    							},
    						},
    					},
    					OsProfile: &azurefleet.VirtualMachineScaleSetOSProfileArgs{
    						AdminPassword:      pulumi.String("TestPassword$0"),
    						AdminUsername:      pulumi.String("azureuser"),
    						ComputerNamePrefix: pulumi.String("prefix"),
    						LinuxConfiguration: &azurefleet.LinuxConfigurationArgs{
    							DisablePasswordAuthentication: pulumi.Bool(false),
    						},
    					},
    					StorageProfile: &azurefleet.VirtualMachineScaleSetStorageProfileArgs{
    						ImageReference: &azurefleet.ImageReferenceArgs{
    							Offer:     pulumi.String("0001-com-ubuntu-server-focal"),
    							Publisher: pulumi.String("canonical"),
    							Sku:       pulumi.String("20_04-lts-gen2"),
    							Version:   pulumi.String("latest"),
    						},
    						OsDisk: &azurefleet.VirtualMachineScaleSetOSDiskArgs{
    							Caching:      pulumi.String(azurefleet.CachingTypesReadWrite),
    							CreateOption: pulumi.String(azurefleet.DiskCreateOptionTypesFromImage),
    							ManagedDisk: &azurefleet.VirtualMachineScaleSetManagedDiskParametersArgs{
    								StorageAccountType: pulumi.String(azurefleet.StorageAccountTypes_Standard_LRS),
    							},
    							OsType: pulumi.String(azurefleet.OperatingSystemTypesLinux),
    						},
    					},
    				},
    				ComputeApiVersion:        pulumi.String("2023-09-01"),
    				PlatformFaultDomainCount: pulumi.Int(1),
    			},
    			FleetName: pulumi.String("testFleet"),
    			Location:  pulumi.String("eastus2euap"),
    			RegularPriorityProfile: &azurefleet.RegularPriorityProfileArgs{
    				AllocationStrategy: pulumi.String(azurefleet.RegularPriorityAllocationStrategyLowestPrice),
    				Capacity:           pulumi.Int(2),
    				MinCapacity:        pulumi.Int(1),
    			},
    			ResourceGroupName: pulumi.String("rgazurefleet"),
    			SpotPriorityProfile: &azurefleet.SpotPriorityProfileArgs{
    				AllocationStrategy: pulumi.String(azurefleet.SpotAllocationStrategyPriceCapacityOptimized),
    				Capacity:           pulumi.Int(2),
    				EvictionPolicy:     pulumi.String(azurefleet.EvictionPolicyDelete),
    				Maintain:           pulumi.Bool(true),
    				MinCapacity:        pulumi.Int(1),
    			},
    			Tags: pulumi.StringMap{
    				"key": pulumi.String("fleets-test"),
    			},
    			VmSizesProfile: azurefleet.VmSizeProfileArray{
    				&azurefleet.VmSizeProfileArgs{
    					Name: pulumi.String("Standard_D2s_v3"),
    				},
    				&azurefleet.VmSizeProfileArgs{
    					Name: pulumi.String("Standard_D4s_v3"),
    				},
    				&azurefleet.VmSizeProfileArgs{
    					Name: pulumi.String("Standard_E2s_v3"),
    				},
    			},
    		})
    		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.azurefleet.Fleet;
    import com.pulumi.azurenative.azurefleet.FleetArgs;
    import com.pulumi.azurenative.azurefleet.inputs.ComputeProfileArgs;
    import com.pulumi.azurenative.azurefleet.inputs.BaseVirtualMachineProfileArgs;
    import com.pulumi.azurenative.azurefleet.inputs.VirtualMachineScaleSetNetworkProfileArgs;
    import com.pulumi.azurenative.azurefleet.inputs.VirtualMachineScaleSetOSProfileArgs;
    import com.pulumi.azurenative.azurefleet.inputs.LinuxConfigurationArgs;
    import com.pulumi.azurenative.azurefleet.inputs.VirtualMachineScaleSetStorageProfileArgs;
    import com.pulumi.azurenative.azurefleet.inputs.ImageReferenceArgs;
    import com.pulumi.azurenative.azurefleet.inputs.VirtualMachineScaleSetOSDiskArgs;
    import com.pulumi.azurenative.azurefleet.inputs.VirtualMachineScaleSetManagedDiskParametersArgs;
    import com.pulumi.azurenative.azurefleet.inputs.RegularPriorityProfileArgs;
    import com.pulumi.azurenative.azurefleet.inputs.SpotPriorityProfileArgs;
    import com.pulumi.azurenative.azurefleet.inputs.VmSizeProfileArgs;
    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 fleet = new Fleet("fleet", FleetArgs.builder()
                .computeProfile(ComputeProfileArgs.builder()
                    .baseVirtualMachineProfile(BaseVirtualMachineProfileArgs.builder()
                        .networkProfile(VirtualMachineScaleSetNetworkProfileArgs.builder()
                            .networkApiVersion("2022-07-01")
                            .networkInterfaceConfigurations(VirtualMachineScaleSetNetworkConfigurationArgs.builder()
                                .name("vmNameTest")
                                .properties(VirtualMachineScaleSetNetworkConfigurationPropertiesArgs.builder()
                                    .enableAcceleratedNetworking(false)
                                    .enableIPForwarding(true)
                                    .ipConfigurations(VirtualMachineScaleSetIPConfigurationArgs.builder()
                                        .name("vmNameTest")
                                        .properties(VirtualMachineScaleSetIPConfigurationPropertiesArgs.builder()
                                            .loadBalancerBackendAddressPools(SubResourceArgs.builder()
                                                .id("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}")
                                                .build())
                                            .primary(true)
                                            .subnet(ApiEntityReferenceArgs.builder()
                                                .id("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}")
                                                .build())
                                            .build())
                                        .build())
                                    .primary(true)
                                    .build())
                                .build())
                            .build())
                        .osProfile(VirtualMachineScaleSetOSProfileArgs.builder()
                            .adminPassword("TestPassword$0")
                            .adminUsername("azureuser")
                            .computerNamePrefix("prefix")
                            .linuxConfiguration(LinuxConfigurationArgs.builder()
                                .disablePasswordAuthentication(false)
                                .build())
                            .build())
                        .storageProfile(VirtualMachineScaleSetStorageProfileArgs.builder()
                            .imageReference(ImageReferenceArgs.builder()
                                .offer("0001-com-ubuntu-server-focal")
                                .publisher("canonical")
                                .sku("20_04-lts-gen2")
                                .version("latest")
                                .build())
                            .osDisk(VirtualMachineScaleSetOSDiskArgs.builder()
                                .caching("ReadWrite")
                                .createOption("FromImage")
                                .managedDisk(VirtualMachineScaleSetManagedDiskParametersArgs.builder()
                                    .storageAccountType("Standard_LRS")
                                    .build())
                                .osType("Linux")
                                .build())
                            .build())
                        .build())
                    .computeApiVersion("2023-09-01")
                    .platformFaultDomainCount(1)
                    .build())
                .fleetName("testFleet")
                .location("eastus2euap")
                .regularPriorityProfile(RegularPriorityProfileArgs.builder()
                    .allocationStrategy("LowestPrice")
                    .capacity(2)
                    .minCapacity(1)
                    .build())
                .resourceGroupName("rgazurefleet")
                .spotPriorityProfile(SpotPriorityProfileArgs.builder()
                    .allocationStrategy("PriceCapacityOptimized")
                    .capacity(2)
                    .evictionPolicy("Delete")
                    .maintain(true)
                    .minCapacity(1)
                    .build())
                .tags(Map.of("key", "fleets-test"))
                .vmSizesProfile(            
                    VmSizeProfileArgs.builder()
                        .name("Standard_D2s_v3")
                        .build(),
                    VmSizeProfileArgs.builder()
                        .name("Standard_D4s_v3")
                        .build(),
                    VmSizeProfileArgs.builder()
                        .name("Standard_E2s_v3")
                        .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    fleet = azure_native.azurefleet.Fleet("fleet",
        compute_profile={
            "base_virtual_machine_profile": {
                "network_profile": {
                    "network_api_version": "2022-07-01",
                    "network_interface_configurations": [{
                        "name": "vmNameTest",
                        "properties": {
                            "enable_accelerated_networking": False,
                            "enable_ip_forwarding": True,
                            "ip_configurations": [{
                                "name": "vmNameTest",
                                "properties": {
                                    "load_balancer_backend_address_pools": [{
                                        "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}",
                                    }],
                                    "primary": True,
                                    "subnet": {
                                        "id": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}",
                                    },
                                },
                            }],
                            "primary": True,
                        },
                    }],
                },
                "os_profile": {
                    "admin_password": "TestPassword$0",
                    "admin_username": "azureuser",
                    "computer_name_prefix": "prefix",
                    "linux_configuration": {
                        "disable_password_authentication": False,
                    },
                },
                "storage_profile": {
                    "image_reference": {
                        "offer": "0001-com-ubuntu-server-focal",
                        "publisher": "canonical",
                        "sku": "20_04-lts-gen2",
                        "version": "latest",
                    },
                    "os_disk": {
                        "caching": azure_native.azurefleet.CachingTypes.READ_WRITE,
                        "create_option": azure_native.azurefleet.DiskCreateOptionTypes.FROM_IMAGE,
                        "managed_disk": {
                            "storage_account_type": azure_native.azurefleet.StorageAccountTypes.STANDARD_LRS,
                        },
                        "os_type": azure_native.azurefleet.OperatingSystemTypes.LINUX,
                    },
                },
            },
            "compute_api_version": "2023-09-01",
            "platform_fault_domain_count": 1,
        },
        fleet_name="testFleet",
        location="eastus2euap",
        regular_priority_profile={
            "allocation_strategy": azure_native.azurefleet.RegularPriorityAllocationStrategy.LOWEST_PRICE,
            "capacity": 2,
            "min_capacity": 1,
        },
        resource_group_name="rgazurefleet",
        spot_priority_profile={
            "allocation_strategy": azure_native.azurefleet.SpotAllocationStrategy.PRICE_CAPACITY_OPTIMIZED,
            "capacity": 2,
            "eviction_policy": azure_native.azurefleet.EvictionPolicy.DELETE,
            "maintain": True,
            "min_capacity": 1,
        },
        tags={
            "key": "fleets-test",
        },
        vm_sizes_profile=[
            {
                "name": "Standard_D2s_v3",
            },
            {
                "name": "Standard_D4s_v3",
            },
            {
                "name": "Standard_E2s_v3",
            },
        ])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const fleet = new azure_native.azurefleet.Fleet("fleet", {
        computeProfile: {
            baseVirtualMachineProfile: {
                networkProfile: {
                    networkApiVersion: "2022-07-01",
                    networkInterfaceConfigurations: [{
                        name: "vmNameTest",
                        properties: {
                            enableAcceleratedNetworking: false,
                            enableIPForwarding: true,
                            ipConfigurations: [{
                                name: "vmNameTest",
                                properties: {
                                    loadBalancerBackendAddressPools: [{
                                        id: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}",
                                    }],
                                    primary: true,
                                    subnet: {
                                        id: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}",
                                    },
                                },
                            }],
                            primary: true,
                        },
                    }],
                },
                osProfile: {
                    adminPassword: "TestPassword$0",
                    adminUsername: "azureuser",
                    computerNamePrefix: "prefix",
                    linuxConfiguration: {
                        disablePasswordAuthentication: false,
                    },
                },
                storageProfile: {
                    imageReference: {
                        offer: "0001-com-ubuntu-server-focal",
                        publisher: "canonical",
                        sku: "20_04-lts-gen2",
                        version: "latest",
                    },
                    osDisk: {
                        caching: azure_native.azurefleet.CachingTypes.ReadWrite,
                        createOption: azure_native.azurefleet.DiskCreateOptionTypes.FromImage,
                        managedDisk: {
                            storageAccountType: azure_native.azurefleet.StorageAccountTypes.Standard_LRS,
                        },
                        osType: azure_native.azurefleet.OperatingSystemTypes.Linux,
                    },
                },
            },
            computeApiVersion: "2023-09-01",
            platformFaultDomainCount: 1,
        },
        fleetName: "testFleet",
        location: "eastus2euap",
        regularPriorityProfile: {
            allocationStrategy: azure_native.azurefleet.RegularPriorityAllocationStrategy.LowestPrice,
            capacity: 2,
            minCapacity: 1,
        },
        resourceGroupName: "rgazurefleet",
        spotPriorityProfile: {
            allocationStrategy: azure_native.azurefleet.SpotAllocationStrategy.PriceCapacityOptimized,
            capacity: 2,
            evictionPolicy: azure_native.azurefleet.EvictionPolicy.Delete,
            maintain: true,
            minCapacity: 1,
        },
        tags: {
            key: "fleets-test",
        },
        vmSizesProfile: [
            {
                name: "Standard_D2s_v3",
            },
            {
                name: "Standard_D4s_v3",
            },
            {
                name: "Standard_E2s_v3",
            },
        ],
    });
    
    resources:
      fleet:
        type: azure-native:azurefleet:Fleet
        properties:
          computeProfile:
            baseVirtualMachineProfile:
              networkProfile:
                networkApiVersion: 2022-07-01
                networkInterfaceConfigurations:
                  - name: vmNameTest
                    properties:
                      enableAcceleratedNetworking: false
                      enableIPForwarding: true
                      ipConfigurations:
                        - name: vmNameTest
                          properties:
                            loadBalancerBackendAddressPools:
                              - id: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}
                            primary: true
                            subnet:
                              id: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
                      primary: true
              osProfile:
                adminPassword: TestPassword$0
                adminUsername: azureuser
                computerNamePrefix: prefix
                linuxConfiguration:
                  disablePasswordAuthentication: false
              storageProfile:
                imageReference:
                  offer: 0001-com-ubuntu-server-focal
                  publisher: canonical
                  sku: 20_04-lts-gen2
                  version: latest
                osDisk:
                  caching: ReadWrite
                  createOption: FromImage
                  managedDisk:
                    storageAccountType: Standard_LRS
                  osType: Linux
            computeApiVersion: 2023-09-01
            platformFaultDomainCount: 1
          fleetName: testFleet
          location: eastus2euap
          regularPriorityProfile:
            allocationStrategy: LowestPrice
            capacity: 2
            minCapacity: 1
          resourceGroupName: rgazurefleet
          spotPriorityProfile:
            allocationStrategy: PriceCapacityOptimized
            capacity: 2
            evictionPolicy: Delete
            maintain: true
            minCapacity: 1
          tags:
            key: fleets-test
          vmSizesProfile:
            - name: Standard_D2s_v3
            - name: Standard_D4s_v3
            - name: Standard_E2s_v3
    

    Create Fleet Resource

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

    Constructor syntax

    new Fleet(name: string, args: FleetArgs, opts?: CustomResourceOptions);
    @overload
    def Fleet(resource_name: str,
              args: FleetArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Fleet(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              compute_profile: Optional[ComputeProfileArgs] = None,
              resource_group_name: Optional[str] = None,
              vm_sizes_profile: Optional[Sequence[VmSizeProfileArgs]] = None,
              fleet_name: Optional[str] = None,
              identity: Optional[ManagedServiceIdentityArgs] = None,
              location: Optional[str] = None,
              plan: Optional[PlanArgs] = None,
              regular_priority_profile: Optional[RegularPriorityProfileArgs] = None,
              spot_priority_profile: Optional[SpotPriorityProfileArgs] = None,
              tags: Optional[Mapping[str, str]] = None,
              zones: Optional[Sequence[str]] = None)
    func NewFleet(ctx *Context, name string, args FleetArgs, opts ...ResourceOption) (*Fleet, error)
    public Fleet(string name, FleetArgs args, CustomResourceOptions? opts = null)
    public Fleet(String name, FleetArgs args)
    public Fleet(String name, FleetArgs args, CustomResourceOptions options)
    
    type: azure-native:azurefleet:Fleet
    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 FleetArgs
    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 FleetArgs
    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 FleetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FleetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FleetArgs
    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 fleetResource = new AzureNative.AzureFleet.Fleet("fleetResource", new()
    {
        ComputeProfile = new AzureNative.AzureFleet.Inputs.ComputeProfileArgs
        {
            BaseVirtualMachineProfile = new AzureNative.AzureFleet.Inputs.BaseVirtualMachineProfileArgs
            {
                ApplicationProfile = new AzureNative.AzureFleet.Inputs.ApplicationProfileArgs
                {
                    GalleryApplications = new[]
                    {
                        new AzureNative.AzureFleet.Inputs.VMGalleryApplicationArgs
                        {
                            PackageReferenceId = "string",
                            ConfigurationReference = "string",
                            EnableAutomaticUpgrade = false,
                            Order = 0,
                            Tags = "string",
                            TreatFailureAsDeploymentFailure = false,
                        },
                    },
                },
                CapacityReservation = new AzureNative.AzureFleet.Inputs.CapacityReservationProfileArgs
                {
                    CapacityReservationGroup = new AzureNative.AzureFleet.Inputs.SubResourceArgs
                    {
                        Id = "string",
                    },
                },
                DiagnosticsProfile = new AzureNative.AzureFleet.Inputs.DiagnosticsProfileArgs
                {
                    BootDiagnostics = new AzureNative.AzureFleet.Inputs.BootDiagnosticsArgs
                    {
                        Enabled = false,
                        StorageUri = "string",
                    },
                },
                ExtensionProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetExtensionProfileArgs
                {
                    Extensions = new[]
                    {
                        new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetExtensionArgs
                        {
                            Name = "string",
                            Properties = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetExtensionPropertiesArgs
                            {
                                AutoUpgradeMinorVersion = false,
                                EnableAutomaticUpgrade = false,
                                ForceUpdateTag = "string",
                                ProtectedSettings = "any",
                                ProtectedSettingsFromKeyVault = new AzureNative.AzureFleet.Inputs.KeyVaultSecretReferenceArgs
                                {
                                    SecretUrl = "string",
                                    SourceVault = new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                    {
                                        Id = "string",
                                    },
                                },
                                ProvisionAfterExtensions = new[]
                                {
                                    "string",
                                },
                                Publisher = "string",
                                Settings = "any",
                                SuppressFailures = false,
                                Type = "string",
                                TypeHandlerVersion = "string",
                            },
                        },
                    },
                    ExtensionsTimeBudget = "string",
                },
                HardwareProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetHardwareProfileArgs
                {
                    VmSizeProperties = new AzureNative.AzureFleet.Inputs.VMSizePropertiesArgs
                    {
                        VCPUsAvailable = 0,
                        VCPUsPerCore = 0,
                    },
                },
                LicenseType = "string",
                NetworkProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkProfileArgs
                {
                    HealthProbe = new AzureNative.AzureFleet.Inputs.ApiEntityReferenceArgs
                    {
                        Id = "string",
                    },
                    NetworkApiVersion = "string",
                    NetworkInterfaceConfigurations = new[]
                    {
                        new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkConfigurationArgs
                        {
                            Name = "string",
                            Properties = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkConfigurationPropertiesArgs
                            {
                                IpConfigurations = new[]
                                {
                                    new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetIPConfigurationArgs
                                    {
                                        Name = "string",
                                        Properties = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetIPConfigurationPropertiesArgs
                                        {
                                            ApplicationGatewayBackendAddressPools = new[]
                                            {
                                                new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                                {
                                                    Id = "string",
                                                },
                                            },
                                            ApplicationSecurityGroups = new[]
                                            {
                                                new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                                {
                                                    Id = "string",
                                                },
                                            },
                                            LoadBalancerBackendAddressPools = new[]
                                            {
                                                new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                                {
                                                    Id = "string",
                                                },
                                            },
                                            LoadBalancerInboundNatPools = new[]
                                            {
                                                new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                                {
                                                    Id = "string",
                                                },
                                            },
                                            Primary = false,
                                            PrivateIPAddressVersion = "string",
                                            PublicIPAddressConfiguration = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetPublicIPAddressConfigurationArgs
                                            {
                                                Name = "string",
                                                Properties = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetPublicIPAddressConfigurationPropertiesArgs
                                                {
                                                    DeleteOption = "string",
                                                    DnsSettings = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs
                                                    {
                                                        DomainNameLabel = "string",
                                                        DomainNameLabelScope = "string",
                                                    },
                                                    IdleTimeoutInMinutes = 0,
                                                    IpTags = new[]
                                                    {
                                                        new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetIpTagArgs
                                                        {
                                                            IpTagType = "string",
                                                            Tag = "string",
                                                        },
                                                    },
                                                    PublicIPAddressVersion = "string",
                                                    PublicIPPrefix = new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                                    {
                                                        Id = "string",
                                                    },
                                                },
                                                Sku = new AzureNative.AzureFleet.Inputs.PublicIPAddressSkuArgs
                                                {
                                                    Name = "string",
                                                    Tier = "string",
                                                },
                                            },
                                            Subnet = new AzureNative.AzureFleet.Inputs.ApiEntityReferenceArgs
                                            {
                                                Id = "string",
                                            },
                                        },
                                    },
                                },
                                AuxiliaryMode = "string",
                                AuxiliarySku = "string",
                                DeleteOption = "string",
                                DisableTcpStateTracking = false,
                                DnsSettings = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkConfigurationDnsSettingsArgs
                                {
                                    DnsServers = new[]
                                    {
                                        "string",
                                    },
                                },
                                EnableAcceleratedNetworking = false,
                                EnableFpga = false,
                                EnableIPForwarding = false,
                                NetworkSecurityGroup = new AzureNative.AzureFleet.Inputs.SubResourceArgs
                                {
                                    Id = "string",
                                },
                                Primary = false,
                            },
                        },
                    },
                },
                OsProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetOSProfileArgs
                {
                    AdminPassword = "string",
                    AdminUsername = "string",
                    AllowExtensionOperations = false,
                    ComputerNamePrefix = "string",
                    CustomData = "string",
                    LinuxConfiguration = new AzureNative.AzureFleet.Inputs.LinuxConfigurationArgs
                    {
                        DisablePasswordAuthentication = false,
                        EnableVMAgentPlatformUpdates = false,
                        PatchSettings = new AzureNative.AzureFleet.Inputs.LinuxPatchSettingsArgs
                        {
                            AssessmentMode = "string",
                            AutomaticByPlatformSettings = new AzureNative.AzureFleet.Inputs.LinuxVMGuestPatchAutomaticByPlatformSettingsArgs
                            {
                                BypassPlatformSafetyChecksOnUserSchedule = false,
                                RebootSetting = "string",
                            },
                            PatchMode = "string",
                        },
                        ProvisionVMAgent = false,
                        Ssh = new AzureNative.AzureFleet.Inputs.SshConfigurationArgs
                        {
                            PublicKeys = new[]
                            {
                                new AzureNative.AzureFleet.Inputs.SshPublicKeyArgs
                                {
                                    KeyData = "string",
                                    Path = "string",
                                },
                            },
                        },
                    },
                    RequireGuestProvisionSignal = false,
                    Secrets = new[]
                    {
                        new AzureNative.AzureFleet.Inputs.VaultSecretGroupArgs
                        {
                            SourceVault = new AzureNative.AzureFleet.Inputs.SubResourceArgs
                            {
                                Id = "string",
                            },
                            VaultCertificates = new[]
                            {
                                new AzureNative.AzureFleet.Inputs.VaultCertificateArgs
                                {
                                    CertificateStore = "string",
                                    CertificateUrl = "string",
                                },
                            },
                        },
                    },
                    WindowsConfiguration = new AzureNative.AzureFleet.Inputs.WindowsConfigurationArgs
                    {
                        AdditionalUnattendContent = new[]
                        {
                            new AzureNative.AzureFleet.Inputs.AdditionalUnattendContentArgs
                            {
                                ComponentName = AzureNative.AzureFleet.ComponentName.Microsoft_Windows_Shell_Setup,
                                Content = "string",
                                PassName = AzureNative.AzureFleet.PassName.OobeSystem,
                                SettingName = "string",
                            },
                        },
                        EnableAutomaticUpdates = false,
                        EnableVMAgentPlatformUpdates = false,
                        PatchSettings = new AzureNative.AzureFleet.Inputs.PatchSettingsArgs
                        {
                            AssessmentMode = "string",
                            AutomaticByPlatformSettings = new AzureNative.AzureFleet.Inputs.WindowsVMGuestPatchAutomaticByPlatformSettingsArgs
                            {
                                BypassPlatformSafetyChecksOnUserSchedule = false,
                                RebootSetting = "string",
                            },
                            EnableHotpatching = false,
                            PatchMode = "string",
                        },
                        ProvisionVMAgent = false,
                        TimeZone = "string",
                        WinRM = new AzureNative.AzureFleet.Inputs.WinRMConfigurationArgs
                        {
                            Listeners = new[]
                            {
                                new AzureNative.AzureFleet.Inputs.WinRMListenerArgs
                                {
                                    CertificateUrl = "string",
                                    Protocol = "string",
                                },
                            },
                        },
                    },
                },
                ScheduledEventsProfile = new AzureNative.AzureFleet.Inputs.ScheduledEventsProfileArgs
                {
                    OsImageNotificationProfile = new AzureNative.AzureFleet.Inputs.OSImageNotificationProfileArgs
                    {
                        Enable = false,
                        NotBeforeTimeout = "string",
                    },
                    TerminateNotificationProfile = new AzureNative.AzureFleet.Inputs.TerminateNotificationProfileArgs
                    {
                        Enable = false,
                        NotBeforeTimeout = "string",
                    },
                },
                SecurityPostureReference = new AzureNative.AzureFleet.Inputs.SecurityPostureReferenceArgs
                {
                    ExcludeExtensions = new[]
                    {
                        "string",
                    },
                    Id = "string",
                    IsOverridable = false,
                },
                SecurityProfile = new AzureNative.AzureFleet.Inputs.SecurityProfileArgs
                {
                    EncryptionAtHost = false,
                    EncryptionIdentity = new AzureNative.AzureFleet.Inputs.EncryptionIdentityArgs
                    {
                        UserAssignedIdentityResourceId = "string",
                    },
                    ProxyAgentSettings = new AzureNative.AzureFleet.Inputs.ProxyAgentSettingsArgs
                    {
                        Enabled = false,
                        KeyIncarnationId = 0,
                        Mode = "string",
                    },
                    SecurityType = "string",
                    UefiSettings = new AzureNative.AzureFleet.Inputs.UefiSettingsArgs
                    {
                        SecureBootEnabled = false,
                        VTpmEnabled = false,
                    },
                },
                ServiceArtifactReference = new AzureNative.AzureFleet.Inputs.ServiceArtifactReferenceArgs
                {
                    Id = "string",
                },
                StorageProfile = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetStorageProfileArgs
                {
                    DataDisks = new[]
                    {
                        new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetDataDiskArgs
                        {
                            CreateOption = "string",
                            Lun = 0,
                            Caching = "string",
                            DeleteOption = "string",
                            DiskIOPSReadWrite = 0,
                            DiskMBpsReadWrite = 0,
                            DiskSizeGB = 0,
                            ManagedDisk = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetManagedDiskParametersArgs
                            {
                                DiskEncryptionSet = new AzureNative.AzureFleet.Inputs.DiskEncryptionSetParametersArgs
                                {
                                    Id = "string",
                                },
                                SecurityProfile = new AzureNative.AzureFleet.Inputs.VMDiskSecurityProfileArgs
                                {
                                    DiskEncryptionSet = new AzureNative.AzureFleet.Inputs.DiskEncryptionSetParametersArgs
                                    {
                                        Id = "string",
                                    },
                                    SecurityEncryptionType = "string",
                                },
                                StorageAccountType = "string",
                            },
                            Name = "string",
                            WriteAcceleratorEnabled = false,
                        },
                    },
                    DiskControllerType = "string",
                    ImageReference = new AzureNative.AzureFleet.Inputs.ImageReferenceArgs
                    {
                        CommunityGalleryImageId = "string",
                        Id = "string",
                        Offer = "string",
                        Publisher = "string",
                        SharedGalleryImageId = "string",
                        Sku = "string",
                        Version = "string",
                    },
                    OsDisk = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetOSDiskArgs
                    {
                        CreateOption = "string",
                        Caching = "string",
                        DeleteOption = "string",
                        DiffDiskSettings = new AzureNative.AzureFleet.Inputs.DiffDiskSettingsArgs
                        {
                            Option = "string",
                            Placement = "string",
                        },
                        DiskSizeGB = 0,
                        Image = new AzureNative.AzureFleet.Inputs.VirtualHardDiskArgs
                        {
                            Uri = "string",
                        },
                        ManagedDisk = new AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetManagedDiskParametersArgs
                        {
                            DiskEncryptionSet = new AzureNative.AzureFleet.Inputs.DiskEncryptionSetParametersArgs
                            {
                                Id = "string",
                            },
                            SecurityProfile = new AzureNative.AzureFleet.Inputs.VMDiskSecurityProfileArgs
                            {
                                DiskEncryptionSet = new AzureNative.AzureFleet.Inputs.DiskEncryptionSetParametersArgs
                                {
                                    Id = "string",
                                },
                                SecurityEncryptionType = "string",
                            },
                            StorageAccountType = "string",
                        },
                        Name = "string",
                        OsType = "string",
                        VhdContainers = new[]
                        {
                            "string",
                        },
                        WriteAcceleratorEnabled = false,
                    },
                },
                UserData = "string",
            },
            ComputeApiVersion = "string",
            PlatformFaultDomainCount = 0,
        },
        ResourceGroupName = "string",
        VmSizesProfile = new[]
        {
            new AzureNative.AzureFleet.Inputs.VmSizeProfileArgs
            {
                Name = "string",
                Rank = 0,
            },
        },
        FleetName = "string",
        Identity = new AzureNative.AzureFleet.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        Plan = new AzureNative.AzureFleet.Inputs.PlanArgs
        {
            Name = "string",
            Product = "string",
            Publisher = "string",
            PromotionCode = "string",
            Version = "string",
        },
        RegularPriorityProfile = new AzureNative.AzureFleet.Inputs.RegularPriorityProfileArgs
        {
            AllocationStrategy = "string",
            Capacity = 0,
            MinCapacity = 0,
        },
        SpotPriorityProfile = new AzureNative.AzureFleet.Inputs.SpotPriorityProfileArgs
        {
            AllocationStrategy = "string",
            Capacity = 0,
            EvictionPolicy = "string",
            Maintain = false,
            MaxPricePerVM = 0,
            MinCapacity = 0,
        },
        Tags = 
        {
            { "string", "string" },
        },
        Zones = new[]
        {
            "string",
        },
    });
    
    example, err := azurefleet.NewFleet(ctx, "fleetResource", &azurefleet.FleetArgs{
    	ComputeProfile: &azurefleet.ComputeProfileArgs{
    		BaseVirtualMachineProfile: &azurefleet.BaseVirtualMachineProfileArgs{
    			ApplicationProfile: &azurefleet.ApplicationProfileArgs{
    				GalleryApplications: azurefleet.VMGalleryApplicationArray{
    					&azurefleet.VMGalleryApplicationArgs{
    						PackageReferenceId:              pulumi.String("string"),
    						ConfigurationReference:          pulumi.String("string"),
    						EnableAutomaticUpgrade:          pulumi.Bool(false),
    						Order:                           pulumi.Int(0),
    						Tags:                            pulumi.String("string"),
    						TreatFailureAsDeploymentFailure: pulumi.Bool(false),
    					},
    				},
    			},
    			CapacityReservation: &azurefleet.CapacityReservationProfileArgs{
    				CapacityReservationGroup: &azurefleet.SubResourceArgs{
    					Id: pulumi.String("string"),
    				},
    			},
    			DiagnosticsProfile: &azurefleet.DiagnosticsProfileArgs{
    				BootDiagnostics: &azurefleet.BootDiagnosticsArgs{
    					Enabled:    pulumi.Bool(false),
    					StorageUri: pulumi.String("string"),
    				},
    			},
    			ExtensionProfile: &azurefleet.VirtualMachineScaleSetExtensionProfileArgs{
    				Extensions: azurefleet.VirtualMachineScaleSetExtensionArray{
    					&azurefleet.VirtualMachineScaleSetExtensionArgs{
    						Name: pulumi.String("string"),
    						Properties: &azurefleet.VirtualMachineScaleSetExtensionPropertiesArgs{
    							AutoUpgradeMinorVersion: pulumi.Bool(false),
    							EnableAutomaticUpgrade:  pulumi.Bool(false),
    							ForceUpdateTag:          pulumi.String("string"),
    							ProtectedSettings:       pulumi.Any("any"),
    							ProtectedSettingsFromKeyVault: &azurefleet.KeyVaultSecretReferenceArgs{
    								SecretUrl: pulumi.String("string"),
    								SourceVault: &azurefleet.SubResourceArgs{
    									Id: pulumi.String("string"),
    								},
    							},
    							ProvisionAfterExtensions: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Publisher:          pulumi.String("string"),
    							Settings:           pulumi.Any("any"),
    							SuppressFailures:   pulumi.Bool(false),
    							Type:               pulumi.String("string"),
    							TypeHandlerVersion: pulumi.String("string"),
    						},
    					},
    				},
    				ExtensionsTimeBudget: pulumi.String("string"),
    			},
    			HardwareProfile: &azurefleet.VirtualMachineScaleSetHardwareProfileArgs{
    				VmSizeProperties: &azurefleet.VMSizePropertiesArgs{
    					VCPUsAvailable: pulumi.Int(0),
    					VCPUsPerCore:   pulumi.Int(0),
    				},
    			},
    			LicenseType: pulumi.String("string"),
    			NetworkProfile: &azurefleet.VirtualMachineScaleSetNetworkProfileArgs{
    				HealthProbe: &azurefleet.ApiEntityReferenceArgs{
    					Id: pulumi.String("string"),
    				},
    				NetworkApiVersion: pulumi.String("string"),
    				NetworkInterfaceConfigurations: azurefleet.VirtualMachineScaleSetNetworkConfigurationArray{
    					&azurefleet.VirtualMachineScaleSetNetworkConfigurationArgs{
    						Name: pulumi.String("string"),
    						Properties: &azurefleet.VirtualMachineScaleSetNetworkConfigurationPropertiesArgs{
    							IpConfigurations: azurefleet.VirtualMachineScaleSetIPConfigurationArray{
    								&azurefleet.VirtualMachineScaleSetIPConfigurationArgs{
    									Name: pulumi.String("string"),
    									Properties: &azurefleet.VirtualMachineScaleSetIPConfigurationPropertiesArgs{
    										ApplicationGatewayBackendAddressPools: azurefleet.SubResourceArray{
    											&azurefleet.SubResourceArgs{
    												Id: pulumi.String("string"),
    											},
    										},
    										ApplicationSecurityGroups: azurefleet.SubResourceArray{
    											&azurefleet.SubResourceArgs{
    												Id: pulumi.String("string"),
    											},
    										},
    										LoadBalancerBackendAddressPools: azurefleet.SubResourceArray{
    											&azurefleet.SubResourceArgs{
    												Id: pulumi.String("string"),
    											},
    										},
    										LoadBalancerInboundNatPools: azurefleet.SubResourceArray{
    											&azurefleet.SubResourceArgs{
    												Id: pulumi.String("string"),
    											},
    										},
    										Primary:                 pulumi.Bool(false),
    										PrivateIPAddressVersion: pulumi.String("string"),
    										PublicIPAddressConfiguration: &azurefleet.VirtualMachineScaleSetPublicIPAddressConfigurationArgs{
    											Name: pulumi.String("string"),
    											Properties: &azurefleet.VirtualMachineScaleSetPublicIPAddressConfigurationPropertiesArgs{
    												DeleteOption: pulumi.String("string"),
    												DnsSettings: &azurefleet.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs{
    													DomainNameLabel:      pulumi.String("string"),
    													DomainNameLabelScope: pulumi.String("string"),
    												},
    												IdleTimeoutInMinutes: pulumi.Int(0),
    												IpTags: azurefleet.VirtualMachineScaleSetIpTagArray{
    													&azurefleet.VirtualMachineScaleSetIpTagArgs{
    														IpTagType: pulumi.String("string"),
    														Tag:       pulumi.String("string"),
    													},
    												},
    												PublicIPAddressVersion: pulumi.String("string"),
    												PublicIPPrefix: &azurefleet.SubResourceArgs{
    													Id: pulumi.String("string"),
    												},
    											},
    											Sku: &azurefleet.PublicIPAddressSkuArgs{
    												Name: pulumi.String("string"),
    												Tier: pulumi.String("string"),
    											},
    										},
    										Subnet: &azurefleet.ApiEntityReferenceArgs{
    											Id: pulumi.String("string"),
    										},
    									},
    								},
    							},
    							AuxiliaryMode:           pulumi.String("string"),
    							AuxiliarySku:            pulumi.String("string"),
    							DeleteOption:            pulumi.String("string"),
    							DisableTcpStateTracking: pulumi.Bool(false),
    							DnsSettings: &azurefleet.VirtualMachineScaleSetNetworkConfigurationDnsSettingsArgs{
    								DnsServers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    							},
    							EnableAcceleratedNetworking: pulumi.Bool(false),
    							EnableFpga:                  pulumi.Bool(false),
    							EnableIPForwarding:          pulumi.Bool(false),
    							NetworkSecurityGroup: &azurefleet.SubResourceArgs{
    								Id: pulumi.String("string"),
    							},
    							Primary: pulumi.Bool(false),
    						},
    					},
    				},
    			},
    			OsProfile: &azurefleet.VirtualMachineScaleSetOSProfileArgs{
    				AdminPassword:            pulumi.String("string"),
    				AdminUsername:            pulumi.String("string"),
    				AllowExtensionOperations: pulumi.Bool(false),
    				ComputerNamePrefix:       pulumi.String("string"),
    				CustomData:               pulumi.String("string"),
    				LinuxConfiguration: &azurefleet.LinuxConfigurationArgs{
    					DisablePasswordAuthentication: pulumi.Bool(false),
    					EnableVMAgentPlatformUpdates:  pulumi.Bool(false),
    					PatchSettings: &azurefleet.LinuxPatchSettingsArgs{
    						AssessmentMode: pulumi.String("string"),
    						AutomaticByPlatformSettings: &azurefleet.LinuxVMGuestPatchAutomaticByPlatformSettingsArgs{
    							BypassPlatformSafetyChecksOnUserSchedule: pulumi.Bool(false),
    							RebootSetting:                            pulumi.String("string"),
    						},
    						PatchMode: pulumi.String("string"),
    					},
    					ProvisionVMAgent: pulumi.Bool(false),
    					Ssh: &azurefleet.SshConfigurationArgs{
    						PublicKeys: azurefleet.SshPublicKeyArray{
    							&azurefleet.SshPublicKeyArgs{
    								KeyData: pulumi.String("string"),
    								Path:    pulumi.String("string"),
    							},
    						},
    					},
    				},
    				RequireGuestProvisionSignal: pulumi.Bool(false),
    				Secrets: azurefleet.VaultSecretGroupArray{
    					&azurefleet.VaultSecretGroupArgs{
    						SourceVault: &azurefleet.SubResourceArgs{
    							Id: pulumi.String("string"),
    						},
    						VaultCertificates: azurefleet.VaultCertificateArray{
    							&azurefleet.VaultCertificateArgs{
    								CertificateStore: pulumi.String("string"),
    								CertificateUrl:   pulumi.String("string"),
    							},
    						},
    					},
    				},
    				WindowsConfiguration: &azurefleet.WindowsConfigurationArgs{
    					AdditionalUnattendContent: azurefleet.AdditionalUnattendContentArray{
    						&azurefleet.AdditionalUnattendContentArgs{
    							ComponentName: azurefleet.ComponentName_Microsoft_Windows_Shell_Setup,
    							Content:       pulumi.String("string"),
    							PassName:      azurefleet.PassNameOobeSystem,
    							SettingName:   pulumi.String("string"),
    						},
    					},
    					EnableAutomaticUpdates:       pulumi.Bool(false),
    					EnableVMAgentPlatformUpdates: pulumi.Bool(false),
    					PatchSettings: &azurefleet.PatchSettingsArgs{
    						AssessmentMode: pulumi.String("string"),
    						AutomaticByPlatformSettings: &azurefleet.WindowsVMGuestPatchAutomaticByPlatformSettingsArgs{
    							BypassPlatformSafetyChecksOnUserSchedule: pulumi.Bool(false),
    							RebootSetting:                            pulumi.String("string"),
    						},
    						EnableHotpatching: pulumi.Bool(false),
    						PatchMode:         pulumi.String("string"),
    					},
    					ProvisionVMAgent: pulumi.Bool(false),
    					TimeZone:         pulumi.String("string"),
    					WinRM: &azurefleet.WinRMConfigurationArgs{
    						Listeners: azurefleet.WinRMListenerArray{
    							&azurefleet.WinRMListenerArgs{
    								CertificateUrl: pulumi.String("string"),
    								Protocol:       pulumi.String("string"),
    							},
    						},
    					},
    				},
    			},
    			ScheduledEventsProfile: &azurefleet.ScheduledEventsProfileArgs{
    				OsImageNotificationProfile: &azurefleet.OSImageNotificationProfileArgs{
    					Enable:           pulumi.Bool(false),
    					NotBeforeTimeout: pulumi.String("string"),
    				},
    				TerminateNotificationProfile: &azurefleet.TerminateNotificationProfileArgs{
    					Enable:           pulumi.Bool(false),
    					NotBeforeTimeout: pulumi.String("string"),
    				},
    			},
    			SecurityPostureReference: &azurefleet.SecurityPostureReferenceArgs{
    				ExcludeExtensions: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				Id:            pulumi.String("string"),
    				IsOverridable: pulumi.Bool(false),
    			},
    			SecurityProfile: &azurefleet.SecurityProfileArgs{
    				EncryptionAtHost: pulumi.Bool(false),
    				EncryptionIdentity: &azurefleet.EncryptionIdentityArgs{
    					UserAssignedIdentityResourceId: pulumi.String("string"),
    				},
    				ProxyAgentSettings: &azurefleet.ProxyAgentSettingsArgs{
    					Enabled:          pulumi.Bool(false),
    					KeyIncarnationId: pulumi.Int(0),
    					Mode:             pulumi.String("string"),
    				},
    				SecurityType: pulumi.String("string"),
    				UefiSettings: &azurefleet.UefiSettingsArgs{
    					SecureBootEnabled: pulumi.Bool(false),
    					VTpmEnabled:       pulumi.Bool(false),
    				},
    			},
    			ServiceArtifactReference: &azurefleet.ServiceArtifactReferenceArgs{
    				Id: pulumi.String("string"),
    			},
    			StorageProfile: &azurefleet.VirtualMachineScaleSetStorageProfileArgs{
    				DataDisks: azurefleet.VirtualMachineScaleSetDataDiskArray{
    					&azurefleet.VirtualMachineScaleSetDataDiskArgs{
    						CreateOption:      pulumi.String("string"),
    						Lun:               pulumi.Int(0),
    						Caching:           pulumi.String("string"),
    						DeleteOption:      pulumi.String("string"),
    						DiskIOPSReadWrite: pulumi.Float64(0),
    						DiskMBpsReadWrite: pulumi.Float64(0),
    						DiskSizeGB:        pulumi.Int(0),
    						ManagedDisk: &azurefleet.VirtualMachineScaleSetManagedDiskParametersArgs{
    							DiskEncryptionSet: &azurefleet.DiskEncryptionSetParametersArgs{
    								Id: pulumi.String("string"),
    							},
    							SecurityProfile: &azurefleet.VMDiskSecurityProfileArgs{
    								DiskEncryptionSet: &azurefleet.DiskEncryptionSetParametersArgs{
    									Id: pulumi.String("string"),
    								},
    								SecurityEncryptionType: pulumi.String("string"),
    							},
    							StorageAccountType: pulumi.String("string"),
    						},
    						Name:                    pulumi.String("string"),
    						WriteAcceleratorEnabled: pulumi.Bool(false),
    					},
    				},
    				DiskControllerType: pulumi.String("string"),
    				ImageReference: &azurefleet.ImageReferenceArgs{
    					CommunityGalleryImageId: pulumi.String("string"),
    					Id:                      pulumi.String("string"),
    					Offer:                   pulumi.String("string"),
    					Publisher:               pulumi.String("string"),
    					SharedGalleryImageId:    pulumi.String("string"),
    					Sku:                     pulumi.String("string"),
    					Version:                 pulumi.String("string"),
    				},
    				OsDisk: &azurefleet.VirtualMachineScaleSetOSDiskArgs{
    					CreateOption: pulumi.String("string"),
    					Caching:      pulumi.String("string"),
    					DeleteOption: pulumi.String("string"),
    					DiffDiskSettings: &azurefleet.DiffDiskSettingsArgs{
    						Option:    pulumi.String("string"),
    						Placement: pulumi.String("string"),
    					},
    					DiskSizeGB: pulumi.Int(0),
    					Image: &azurefleet.VirtualHardDiskArgs{
    						Uri: pulumi.String("string"),
    					},
    					ManagedDisk: &azurefleet.VirtualMachineScaleSetManagedDiskParametersArgs{
    						DiskEncryptionSet: &azurefleet.DiskEncryptionSetParametersArgs{
    							Id: pulumi.String("string"),
    						},
    						SecurityProfile: &azurefleet.VMDiskSecurityProfileArgs{
    							DiskEncryptionSet: &azurefleet.DiskEncryptionSetParametersArgs{
    								Id: pulumi.String("string"),
    							},
    							SecurityEncryptionType: pulumi.String("string"),
    						},
    						StorageAccountType: pulumi.String("string"),
    					},
    					Name:   pulumi.String("string"),
    					OsType: pulumi.String("string"),
    					VhdContainers: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					WriteAcceleratorEnabled: pulumi.Bool(false),
    				},
    			},
    			UserData: pulumi.String("string"),
    		},
    		ComputeApiVersion:        pulumi.String("string"),
    		PlatformFaultDomainCount: pulumi.Int(0),
    	},
    	ResourceGroupName: pulumi.String("string"),
    	VmSizesProfile: azurefleet.VmSizeProfileArray{
    		&azurefleet.VmSizeProfileArgs{
    			Name: pulumi.String("string"),
    			Rank: pulumi.Int(0),
    		},
    	},
    	FleetName: pulumi.String("string"),
    	Identity: &azurefleet.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location: pulumi.String("string"),
    	Plan: &azurefleet.PlanArgs{
    		Name:          pulumi.String("string"),
    		Product:       pulumi.String("string"),
    		Publisher:     pulumi.String("string"),
    		PromotionCode: pulumi.String("string"),
    		Version:       pulumi.String("string"),
    	},
    	RegularPriorityProfile: &azurefleet.RegularPriorityProfileArgs{
    		AllocationStrategy: pulumi.String("string"),
    		Capacity:           pulumi.Int(0),
    		MinCapacity:        pulumi.Int(0),
    	},
    	SpotPriorityProfile: &azurefleet.SpotPriorityProfileArgs{
    		AllocationStrategy: pulumi.String("string"),
    		Capacity:           pulumi.Int(0),
    		EvictionPolicy:     pulumi.String("string"),
    		Maintain:           pulumi.Bool(false),
    		MaxPricePerVM:      pulumi.Float64(0),
    		MinCapacity:        pulumi.Int(0),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Zones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var fleetResource = new Fleet("fleetResource", FleetArgs.builder()
        .computeProfile(ComputeProfileArgs.builder()
            .baseVirtualMachineProfile(BaseVirtualMachineProfileArgs.builder()
                .applicationProfile(ApplicationProfileArgs.builder()
                    .galleryApplications(VMGalleryApplicationArgs.builder()
                        .packageReferenceId("string")
                        .configurationReference("string")
                        .enableAutomaticUpgrade(false)
                        .order(0)
                        .tags("string")
                        .treatFailureAsDeploymentFailure(false)
                        .build())
                    .build())
                .capacityReservation(CapacityReservationProfileArgs.builder()
                    .capacityReservationGroup(SubResourceArgs.builder()
                        .id("string")
                        .build())
                    .build())
                .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                    .bootDiagnostics(BootDiagnosticsArgs.builder()
                        .enabled(false)
                        .storageUri("string")
                        .build())
                    .build())
                .extensionProfile(VirtualMachineScaleSetExtensionProfileArgs.builder()
                    .extensions(VirtualMachineScaleSetExtensionArgs.builder()
                        .name("string")
                        .properties(VirtualMachineScaleSetExtensionPropertiesArgs.builder()
                            .autoUpgradeMinorVersion(false)
                            .enableAutomaticUpgrade(false)
                            .forceUpdateTag("string")
                            .protectedSettings("any")
                            .protectedSettingsFromKeyVault(KeyVaultSecretReferenceArgs.builder()
                                .secretUrl("string")
                                .sourceVault(SubResourceArgs.builder()
                                    .id("string")
                                    .build())
                                .build())
                            .provisionAfterExtensions("string")
                            .publisher("string")
                            .settings("any")
                            .suppressFailures(false)
                            .type("string")
                            .typeHandlerVersion("string")
                            .build())
                        .build())
                    .extensionsTimeBudget("string")
                    .build())
                .hardwareProfile(VirtualMachineScaleSetHardwareProfileArgs.builder()
                    .vmSizeProperties(VMSizePropertiesArgs.builder()
                        .vCPUsAvailable(0)
                        .vCPUsPerCore(0)
                        .build())
                    .build())
                .licenseType("string")
                .networkProfile(VirtualMachineScaleSetNetworkProfileArgs.builder()
                    .healthProbe(ApiEntityReferenceArgs.builder()
                        .id("string")
                        .build())
                    .networkApiVersion("string")
                    .networkInterfaceConfigurations(VirtualMachineScaleSetNetworkConfigurationArgs.builder()
                        .name("string")
                        .properties(VirtualMachineScaleSetNetworkConfigurationPropertiesArgs.builder()
                            .ipConfigurations(VirtualMachineScaleSetIPConfigurationArgs.builder()
                                .name("string")
                                .properties(VirtualMachineScaleSetIPConfigurationPropertiesArgs.builder()
                                    .applicationGatewayBackendAddressPools(SubResourceArgs.builder()
                                        .id("string")
                                        .build())
                                    .applicationSecurityGroups(SubResourceArgs.builder()
                                        .id("string")
                                        .build())
                                    .loadBalancerBackendAddressPools(SubResourceArgs.builder()
                                        .id("string")
                                        .build())
                                    .loadBalancerInboundNatPools(SubResourceArgs.builder()
                                        .id("string")
                                        .build())
                                    .primary(false)
                                    .privateIPAddressVersion("string")
                                    .publicIPAddressConfiguration(VirtualMachineScaleSetPublicIPAddressConfigurationArgs.builder()
                                        .name("string")
                                        .properties(VirtualMachineScaleSetPublicIPAddressConfigurationPropertiesArgs.builder()
                                            .deleteOption("string")
                                            .dnsSettings(VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs.builder()
                                                .domainNameLabel("string")
                                                .domainNameLabelScope("string")
                                                .build())
                                            .idleTimeoutInMinutes(0)
                                            .ipTags(VirtualMachineScaleSetIpTagArgs.builder()
                                                .ipTagType("string")
                                                .tag("string")
                                                .build())
                                            .publicIPAddressVersion("string")
                                            .publicIPPrefix(SubResourceArgs.builder()
                                                .id("string")
                                                .build())
                                            .build())
                                        .sku(PublicIPAddressSkuArgs.builder()
                                            .name("string")
                                            .tier("string")
                                            .build())
                                        .build())
                                    .subnet(ApiEntityReferenceArgs.builder()
                                        .id("string")
                                        .build())
                                    .build())
                                .build())
                            .auxiliaryMode("string")
                            .auxiliarySku("string")
                            .deleteOption("string")
                            .disableTcpStateTracking(false)
                            .dnsSettings(VirtualMachineScaleSetNetworkConfigurationDnsSettingsArgs.builder()
                                .dnsServers("string")
                                .build())
                            .enableAcceleratedNetworking(false)
                            .enableFpga(false)
                            .enableIPForwarding(false)
                            .networkSecurityGroup(SubResourceArgs.builder()
                                .id("string")
                                .build())
                            .primary(false)
                            .build())
                        .build())
                    .build())
                .osProfile(VirtualMachineScaleSetOSProfileArgs.builder()
                    .adminPassword("string")
                    .adminUsername("string")
                    .allowExtensionOperations(false)
                    .computerNamePrefix("string")
                    .customData("string")
                    .linuxConfiguration(LinuxConfigurationArgs.builder()
                        .disablePasswordAuthentication(false)
                        .enableVMAgentPlatformUpdates(false)
                        .patchSettings(LinuxPatchSettingsArgs.builder()
                            .assessmentMode("string")
                            .automaticByPlatformSettings(LinuxVMGuestPatchAutomaticByPlatformSettingsArgs.builder()
                                .bypassPlatformSafetyChecksOnUserSchedule(false)
                                .rebootSetting("string")
                                .build())
                            .patchMode("string")
                            .build())
                        .provisionVMAgent(false)
                        .ssh(SshConfigurationArgs.builder()
                            .publicKeys(SshPublicKeyArgs.builder()
                                .keyData("string")
                                .path("string")
                                .build())
                            .build())
                        .build())
                    .requireGuestProvisionSignal(false)
                    .secrets(VaultSecretGroupArgs.builder()
                        .sourceVault(SubResourceArgs.builder()
                            .id("string")
                            .build())
                        .vaultCertificates(VaultCertificateArgs.builder()
                            .certificateStore("string")
                            .certificateUrl("string")
                            .build())
                        .build())
                    .windowsConfiguration(WindowsConfigurationArgs.builder()
                        .additionalUnattendContent(AdditionalUnattendContentArgs.builder()
                            .componentName("Microsoft-Windows-Shell-Setup")
                            .content("string")
                            .passName("OobeSystem")
                            .settingName("string")
                            .build())
                        .enableAutomaticUpdates(false)
                        .enableVMAgentPlatformUpdates(false)
                        .patchSettings(PatchSettingsArgs.builder()
                            .assessmentMode("string")
                            .automaticByPlatformSettings(WindowsVMGuestPatchAutomaticByPlatformSettingsArgs.builder()
                                .bypassPlatformSafetyChecksOnUserSchedule(false)
                                .rebootSetting("string")
                                .build())
                            .enableHotpatching(false)
                            .patchMode("string")
                            .build())
                        .provisionVMAgent(false)
                        .timeZone("string")
                        .winRM(WinRMConfigurationArgs.builder()
                            .listeners(WinRMListenerArgs.builder()
                                .certificateUrl("string")
                                .protocol("string")
                                .build())
                            .build())
                        .build())
                    .build())
                .scheduledEventsProfile(ScheduledEventsProfileArgs.builder()
                    .osImageNotificationProfile(OSImageNotificationProfileArgs.builder()
                        .enable(false)
                        .notBeforeTimeout("string")
                        .build())
                    .terminateNotificationProfile(TerminateNotificationProfileArgs.builder()
                        .enable(false)
                        .notBeforeTimeout("string")
                        .build())
                    .build())
                .securityPostureReference(SecurityPostureReferenceArgs.builder()
                    .excludeExtensions("string")
                    .id("string")
                    .isOverridable(false)
                    .build())
                .securityProfile(SecurityProfileArgs.builder()
                    .encryptionAtHost(false)
                    .encryptionIdentity(EncryptionIdentityArgs.builder()
                        .userAssignedIdentityResourceId("string")
                        .build())
                    .proxyAgentSettings(ProxyAgentSettingsArgs.builder()
                        .enabled(false)
                        .keyIncarnationId(0)
                        .mode("string")
                        .build())
                    .securityType("string")
                    .uefiSettings(UefiSettingsArgs.builder()
                        .secureBootEnabled(false)
                        .vTpmEnabled(false)
                        .build())
                    .build())
                .serviceArtifactReference(ServiceArtifactReferenceArgs.builder()
                    .id("string")
                    .build())
                .storageProfile(VirtualMachineScaleSetStorageProfileArgs.builder()
                    .dataDisks(VirtualMachineScaleSetDataDiskArgs.builder()
                        .createOption("string")
                        .lun(0)
                        .caching("string")
                        .deleteOption("string")
                        .diskIOPSReadWrite(0)
                        .diskMBpsReadWrite(0)
                        .diskSizeGB(0)
                        .managedDisk(VirtualMachineScaleSetManagedDiskParametersArgs.builder()
                            .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                                .id("string")
                                .build())
                            .securityProfile(VMDiskSecurityProfileArgs.builder()
                                .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                                    .id("string")
                                    .build())
                                .securityEncryptionType("string")
                                .build())
                            .storageAccountType("string")
                            .build())
                        .name("string")
                        .writeAcceleratorEnabled(false)
                        .build())
                    .diskControllerType("string")
                    .imageReference(ImageReferenceArgs.builder()
                        .communityGalleryImageId("string")
                        .id("string")
                        .offer("string")
                        .publisher("string")
                        .sharedGalleryImageId("string")
                        .sku("string")
                        .version("string")
                        .build())
                    .osDisk(VirtualMachineScaleSetOSDiskArgs.builder()
                        .createOption("string")
                        .caching("string")
                        .deleteOption("string")
                        .diffDiskSettings(DiffDiskSettingsArgs.builder()
                            .option("string")
                            .placement("string")
                            .build())
                        .diskSizeGB(0)
                        .image(VirtualHardDiskArgs.builder()
                            .uri("string")
                            .build())
                        .managedDisk(VirtualMachineScaleSetManagedDiskParametersArgs.builder()
                            .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                                .id("string")
                                .build())
                            .securityProfile(VMDiskSecurityProfileArgs.builder()
                                .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                                    .id("string")
                                    .build())
                                .securityEncryptionType("string")
                                .build())
                            .storageAccountType("string")
                            .build())
                        .name("string")
                        .osType("string")
                        .vhdContainers("string")
                        .writeAcceleratorEnabled(false)
                        .build())
                    .build())
                .userData("string")
                .build())
            .computeApiVersion("string")
            .platformFaultDomainCount(0)
            .build())
        .resourceGroupName("string")
        .vmSizesProfile(VmSizeProfileArgs.builder()
            .name("string")
            .rank(0)
            .build())
        .fleetName("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .plan(PlanArgs.builder()
            .name("string")
            .product("string")
            .publisher("string")
            .promotionCode("string")
            .version("string")
            .build())
        .regularPriorityProfile(RegularPriorityProfileArgs.builder()
            .allocationStrategy("string")
            .capacity(0)
            .minCapacity(0)
            .build())
        .spotPriorityProfile(SpotPriorityProfileArgs.builder()
            .allocationStrategy("string")
            .capacity(0)
            .evictionPolicy("string")
            .maintain(false)
            .maxPricePerVM(0)
            .minCapacity(0)
            .build())
        .tags(Map.of("string", "string"))
        .zones("string")
        .build());
    
    fleet_resource = azure_native.azurefleet.Fleet("fleetResource",
        compute_profile={
            "baseVirtualMachineProfile": {
                "applicationProfile": {
                    "galleryApplications": [{
                        "packageReferenceId": "string",
                        "configurationReference": "string",
                        "enableAutomaticUpgrade": False,
                        "order": 0,
                        "tags": "string",
                        "treatFailureAsDeploymentFailure": False,
                    }],
                },
                "capacityReservation": {
                    "capacityReservationGroup": {
                        "id": "string",
                    },
                },
                "diagnosticsProfile": {
                    "bootDiagnostics": {
                        "enabled": False,
                        "storageUri": "string",
                    },
                },
                "extensionProfile": {
                    "extensions": [{
                        "name": "string",
                        "properties": {
                            "autoUpgradeMinorVersion": False,
                            "enableAutomaticUpgrade": False,
                            "forceUpdateTag": "string",
                            "protectedSettings": "any",
                            "protectedSettingsFromKeyVault": {
                                "secretUrl": "string",
                                "sourceVault": {
                                    "id": "string",
                                },
                            },
                            "provisionAfterExtensions": ["string"],
                            "publisher": "string",
                            "settings": "any",
                            "suppressFailures": False,
                            "type": "string",
                            "typeHandlerVersion": "string",
                        },
                    }],
                    "extensionsTimeBudget": "string",
                },
                "hardwareProfile": {
                    "vmSizeProperties": {
                        "vCPUsAvailable": 0,
                        "vCPUsPerCore": 0,
                    },
                },
                "licenseType": "string",
                "networkProfile": {
                    "healthProbe": {
                        "id": "string",
                    },
                    "networkApiVersion": "string",
                    "networkInterfaceConfigurations": [{
                        "name": "string",
                        "properties": {
                            "ipConfigurations": [{
                                "name": "string",
                                "properties": {
                                    "applicationGatewayBackendAddressPools": [{
                                        "id": "string",
                                    }],
                                    "applicationSecurityGroups": [{
                                        "id": "string",
                                    }],
                                    "loadBalancerBackendAddressPools": [{
                                        "id": "string",
                                    }],
                                    "loadBalancerInboundNatPools": [{
                                        "id": "string",
                                    }],
                                    "primary": False,
                                    "privateIPAddressVersion": "string",
                                    "publicIPAddressConfiguration": {
                                        "name": "string",
                                        "properties": {
                                            "deleteOption": "string",
                                            "dnsSettings": {
                                                "domainNameLabel": "string",
                                                "domainNameLabelScope": "string",
                                            },
                                            "idleTimeoutInMinutes": 0,
                                            "ipTags": [{
                                                "ipTagType": "string",
                                                "tag": "string",
                                            }],
                                            "publicIPAddressVersion": "string",
                                            "publicIPPrefix": {
                                                "id": "string",
                                            },
                                        },
                                        "sku": {
                                            "name": "string",
                                            "tier": "string",
                                        },
                                    },
                                    "subnet": {
                                        "id": "string",
                                    },
                                },
                            }],
                            "auxiliaryMode": "string",
                            "auxiliarySku": "string",
                            "deleteOption": "string",
                            "disableTcpStateTracking": False,
                            "dnsSettings": {
                                "dnsServers": ["string"],
                            },
                            "enableAcceleratedNetworking": False,
                            "enableFpga": False,
                            "enableIPForwarding": False,
                            "networkSecurityGroup": {
                                "id": "string",
                            },
                            "primary": False,
                        },
                    }],
                },
                "osProfile": {
                    "adminPassword": "string",
                    "adminUsername": "string",
                    "allowExtensionOperations": False,
                    "computerNamePrefix": "string",
                    "customData": "string",
                    "linuxConfiguration": {
                        "disablePasswordAuthentication": False,
                        "enableVMAgentPlatformUpdates": False,
                        "patchSettings": {
                            "assessmentMode": "string",
                            "automaticByPlatformSettings": {
                                "bypassPlatformSafetyChecksOnUserSchedule": False,
                                "rebootSetting": "string",
                            },
                            "patchMode": "string",
                        },
                        "provisionVMAgent": False,
                        "ssh": {
                            "publicKeys": [{
                                "keyData": "string",
                                "path": "string",
                            }],
                        },
                    },
                    "requireGuestProvisionSignal": False,
                    "secrets": [{
                        "sourceVault": {
                            "id": "string",
                        },
                        "vaultCertificates": [{
                            "certificateStore": "string",
                            "certificateUrl": "string",
                        }],
                    }],
                    "windowsConfiguration": {
                        "additionalUnattendContent": [{
                            "componentName": azure_native.azurefleet.ComponentName.MICROSOFT_WINDOWS_SHELL_SETUP,
                            "content": "string",
                            "passName": azure_native.azurefleet.PassName.OOBE_SYSTEM,
                            "settingName": "string",
                        }],
                        "enableAutomaticUpdates": False,
                        "enableVMAgentPlatformUpdates": False,
                        "patchSettings": {
                            "assessmentMode": "string",
                            "automaticByPlatformSettings": {
                                "bypassPlatformSafetyChecksOnUserSchedule": False,
                                "rebootSetting": "string",
                            },
                            "enableHotpatching": False,
                            "patchMode": "string",
                        },
                        "provisionVMAgent": False,
                        "timeZone": "string",
                        "winRM": {
                            "listeners": [{
                                "certificateUrl": "string",
                                "protocol": "string",
                            }],
                        },
                    },
                },
                "scheduledEventsProfile": {
                    "osImageNotificationProfile": {
                        "enable": False,
                        "notBeforeTimeout": "string",
                    },
                    "terminateNotificationProfile": {
                        "enable": False,
                        "notBeforeTimeout": "string",
                    },
                },
                "securityPostureReference": {
                    "excludeExtensions": ["string"],
                    "id": "string",
                    "isOverridable": False,
                },
                "securityProfile": {
                    "encryptionAtHost": False,
                    "encryptionIdentity": {
                        "userAssignedIdentityResourceId": "string",
                    },
                    "proxyAgentSettings": {
                        "enabled": False,
                        "keyIncarnationId": 0,
                        "mode": "string",
                    },
                    "securityType": "string",
                    "uefiSettings": {
                        "secureBootEnabled": False,
                        "vTpmEnabled": False,
                    },
                },
                "serviceArtifactReference": {
                    "id": "string",
                },
                "storageProfile": {
                    "dataDisks": [{
                        "createOption": "string",
                        "lun": 0,
                        "caching": "string",
                        "deleteOption": "string",
                        "diskIOPSReadWrite": 0,
                        "diskMBpsReadWrite": 0,
                        "diskSizeGB": 0,
                        "managedDisk": {
                            "diskEncryptionSet": {
                                "id": "string",
                            },
                            "securityProfile": {
                                "diskEncryptionSet": {
                                    "id": "string",
                                },
                                "securityEncryptionType": "string",
                            },
                            "storageAccountType": "string",
                        },
                        "name": "string",
                        "writeAcceleratorEnabled": False,
                    }],
                    "diskControllerType": "string",
                    "imageReference": {
                        "communityGalleryImageId": "string",
                        "id": "string",
                        "offer": "string",
                        "publisher": "string",
                        "sharedGalleryImageId": "string",
                        "sku": "string",
                        "version": "string",
                    },
                    "osDisk": {
                        "createOption": "string",
                        "caching": "string",
                        "deleteOption": "string",
                        "diffDiskSettings": {
                            "option": "string",
                            "placement": "string",
                        },
                        "diskSizeGB": 0,
                        "image": {
                            "uri": "string",
                        },
                        "managedDisk": {
                            "diskEncryptionSet": {
                                "id": "string",
                            },
                            "securityProfile": {
                                "diskEncryptionSet": {
                                    "id": "string",
                                },
                                "securityEncryptionType": "string",
                            },
                            "storageAccountType": "string",
                        },
                        "name": "string",
                        "osType": "string",
                        "vhdContainers": ["string"],
                        "writeAcceleratorEnabled": False,
                    },
                },
                "userData": "string",
            },
            "computeApiVersion": "string",
            "platformFaultDomainCount": 0,
        },
        resource_group_name="string",
        vm_sizes_profile=[{
            "name": "string",
            "rank": 0,
        }],
        fleet_name="string",
        identity={
            "type": "string",
            "userAssignedIdentities": ["string"],
        },
        location="string",
        plan={
            "name": "string",
            "product": "string",
            "publisher": "string",
            "promotionCode": "string",
            "version": "string",
        },
        regular_priority_profile={
            "allocationStrategy": "string",
            "capacity": 0,
            "minCapacity": 0,
        },
        spot_priority_profile={
            "allocationStrategy": "string",
            "capacity": 0,
            "evictionPolicy": "string",
            "maintain": False,
            "maxPricePerVM": 0,
            "minCapacity": 0,
        },
        tags={
            "string": "string",
        },
        zones=["string"])
    
    const fleetResource = new azure_native.azurefleet.Fleet("fleetResource", {
        computeProfile: {
            baseVirtualMachineProfile: {
                applicationProfile: {
                    galleryApplications: [{
                        packageReferenceId: "string",
                        configurationReference: "string",
                        enableAutomaticUpgrade: false,
                        order: 0,
                        tags: "string",
                        treatFailureAsDeploymentFailure: false,
                    }],
                },
                capacityReservation: {
                    capacityReservationGroup: {
                        id: "string",
                    },
                },
                diagnosticsProfile: {
                    bootDiagnostics: {
                        enabled: false,
                        storageUri: "string",
                    },
                },
                extensionProfile: {
                    extensions: [{
                        name: "string",
                        properties: {
                            autoUpgradeMinorVersion: false,
                            enableAutomaticUpgrade: false,
                            forceUpdateTag: "string",
                            protectedSettings: "any",
                            protectedSettingsFromKeyVault: {
                                secretUrl: "string",
                                sourceVault: {
                                    id: "string",
                                },
                            },
                            provisionAfterExtensions: ["string"],
                            publisher: "string",
                            settings: "any",
                            suppressFailures: false,
                            type: "string",
                            typeHandlerVersion: "string",
                        },
                    }],
                    extensionsTimeBudget: "string",
                },
                hardwareProfile: {
                    vmSizeProperties: {
                        vCPUsAvailable: 0,
                        vCPUsPerCore: 0,
                    },
                },
                licenseType: "string",
                networkProfile: {
                    healthProbe: {
                        id: "string",
                    },
                    networkApiVersion: "string",
                    networkInterfaceConfigurations: [{
                        name: "string",
                        properties: {
                            ipConfigurations: [{
                                name: "string",
                                properties: {
                                    applicationGatewayBackendAddressPools: [{
                                        id: "string",
                                    }],
                                    applicationSecurityGroups: [{
                                        id: "string",
                                    }],
                                    loadBalancerBackendAddressPools: [{
                                        id: "string",
                                    }],
                                    loadBalancerInboundNatPools: [{
                                        id: "string",
                                    }],
                                    primary: false,
                                    privateIPAddressVersion: "string",
                                    publicIPAddressConfiguration: {
                                        name: "string",
                                        properties: {
                                            deleteOption: "string",
                                            dnsSettings: {
                                                domainNameLabel: "string",
                                                domainNameLabelScope: "string",
                                            },
                                            idleTimeoutInMinutes: 0,
                                            ipTags: [{
                                                ipTagType: "string",
                                                tag: "string",
                                            }],
                                            publicIPAddressVersion: "string",
                                            publicIPPrefix: {
                                                id: "string",
                                            },
                                        },
                                        sku: {
                                            name: "string",
                                            tier: "string",
                                        },
                                    },
                                    subnet: {
                                        id: "string",
                                    },
                                },
                            }],
                            auxiliaryMode: "string",
                            auxiliarySku: "string",
                            deleteOption: "string",
                            disableTcpStateTracking: false,
                            dnsSettings: {
                                dnsServers: ["string"],
                            },
                            enableAcceleratedNetworking: false,
                            enableFpga: false,
                            enableIPForwarding: false,
                            networkSecurityGroup: {
                                id: "string",
                            },
                            primary: false,
                        },
                    }],
                },
                osProfile: {
                    adminPassword: "string",
                    adminUsername: "string",
                    allowExtensionOperations: false,
                    computerNamePrefix: "string",
                    customData: "string",
                    linuxConfiguration: {
                        disablePasswordAuthentication: false,
                        enableVMAgentPlatformUpdates: false,
                        patchSettings: {
                            assessmentMode: "string",
                            automaticByPlatformSettings: {
                                bypassPlatformSafetyChecksOnUserSchedule: false,
                                rebootSetting: "string",
                            },
                            patchMode: "string",
                        },
                        provisionVMAgent: false,
                        ssh: {
                            publicKeys: [{
                                keyData: "string",
                                path: "string",
                            }],
                        },
                    },
                    requireGuestProvisionSignal: false,
                    secrets: [{
                        sourceVault: {
                            id: "string",
                        },
                        vaultCertificates: [{
                            certificateStore: "string",
                            certificateUrl: "string",
                        }],
                    }],
                    windowsConfiguration: {
                        additionalUnattendContent: [{
                            componentName: azure_native.azurefleet.ComponentName.Microsoft_Windows_Shell_Setup,
                            content: "string",
                            passName: azure_native.azurefleet.PassName.OobeSystem,
                            settingName: "string",
                        }],
                        enableAutomaticUpdates: false,
                        enableVMAgentPlatformUpdates: false,
                        patchSettings: {
                            assessmentMode: "string",
                            automaticByPlatformSettings: {
                                bypassPlatformSafetyChecksOnUserSchedule: false,
                                rebootSetting: "string",
                            },
                            enableHotpatching: false,
                            patchMode: "string",
                        },
                        provisionVMAgent: false,
                        timeZone: "string",
                        winRM: {
                            listeners: [{
                                certificateUrl: "string",
                                protocol: "string",
                            }],
                        },
                    },
                },
                scheduledEventsProfile: {
                    osImageNotificationProfile: {
                        enable: false,
                        notBeforeTimeout: "string",
                    },
                    terminateNotificationProfile: {
                        enable: false,
                        notBeforeTimeout: "string",
                    },
                },
                securityPostureReference: {
                    excludeExtensions: ["string"],
                    id: "string",
                    isOverridable: false,
                },
                securityProfile: {
                    encryptionAtHost: false,
                    encryptionIdentity: {
                        userAssignedIdentityResourceId: "string",
                    },
                    proxyAgentSettings: {
                        enabled: false,
                        keyIncarnationId: 0,
                        mode: "string",
                    },
                    securityType: "string",
                    uefiSettings: {
                        secureBootEnabled: false,
                        vTpmEnabled: false,
                    },
                },
                serviceArtifactReference: {
                    id: "string",
                },
                storageProfile: {
                    dataDisks: [{
                        createOption: "string",
                        lun: 0,
                        caching: "string",
                        deleteOption: "string",
                        diskIOPSReadWrite: 0,
                        diskMBpsReadWrite: 0,
                        diskSizeGB: 0,
                        managedDisk: {
                            diskEncryptionSet: {
                                id: "string",
                            },
                            securityProfile: {
                                diskEncryptionSet: {
                                    id: "string",
                                },
                                securityEncryptionType: "string",
                            },
                            storageAccountType: "string",
                        },
                        name: "string",
                        writeAcceleratorEnabled: false,
                    }],
                    diskControllerType: "string",
                    imageReference: {
                        communityGalleryImageId: "string",
                        id: "string",
                        offer: "string",
                        publisher: "string",
                        sharedGalleryImageId: "string",
                        sku: "string",
                        version: "string",
                    },
                    osDisk: {
                        createOption: "string",
                        caching: "string",
                        deleteOption: "string",
                        diffDiskSettings: {
                            option: "string",
                            placement: "string",
                        },
                        diskSizeGB: 0,
                        image: {
                            uri: "string",
                        },
                        managedDisk: {
                            diskEncryptionSet: {
                                id: "string",
                            },
                            securityProfile: {
                                diskEncryptionSet: {
                                    id: "string",
                                },
                                securityEncryptionType: "string",
                            },
                            storageAccountType: "string",
                        },
                        name: "string",
                        osType: "string",
                        vhdContainers: ["string"],
                        writeAcceleratorEnabled: false,
                    },
                },
                userData: "string",
            },
            computeApiVersion: "string",
            platformFaultDomainCount: 0,
        },
        resourceGroupName: "string",
        vmSizesProfile: [{
            name: "string",
            rank: 0,
        }],
        fleetName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        plan: {
            name: "string",
            product: "string",
            publisher: "string",
            promotionCode: "string",
            version: "string",
        },
        regularPriorityProfile: {
            allocationStrategy: "string",
            capacity: 0,
            minCapacity: 0,
        },
        spotPriorityProfile: {
            allocationStrategy: "string",
            capacity: 0,
            evictionPolicy: "string",
            maintain: false,
            maxPricePerVM: 0,
            minCapacity: 0,
        },
        tags: {
            string: "string",
        },
        zones: ["string"],
    });
    
    type: azure-native:azurefleet:Fleet
    properties:
        computeProfile:
            baseVirtualMachineProfile:
                applicationProfile:
                    galleryApplications:
                        - configurationReference: string
                          enableAutomaticUpgrade: false
                          order: 0
                          packageReferenceId: string
                          tags: string
                          treatFailureAsDeploymentFailure: false
                capacityReservation:
                    capacityReservationGroup:
                        id: string
                diagnosticsProfile:
                    bootDiagnostics:
                        enabled: false
                        storageUri: string
                extensionProfile:
                    extensions:
                        - name: string
                          properties:
                            autoUpgradeMinorVersion: false
                            enableAutomaticUpgrade: false
                            forceUpdateTag: string
                            protectedSettings: any
                            protectedSettingsFromKeyVault:
                                secretUrl: string
                                sourceVault:
                                    id: string
                            provisionAfterExtensions:
                                - string
                            publisher: string
                            settings: any
                            suppressFailures: false
                            type: string
                            typeHandlerVersion: string
                    extensionsTimeBudget: string
                hardwareProfile:
                    vmSizeProperties:
                        vCPUsAvailable: 0
                        vCPUsPerCore: 0
                licenseType: string
                networkProfile:
                    healthProbe:
                        id: string
                    networkApiVersion: string
                    networkInterfaceConfigurations:
                        - name: string
                          properties:
                            auxiliaryMode: string
                            auxiliarySku: string
                            deleteOption: string
                            disableTcpStateTracking: false
                            dnsSettings:
                                dnsServers:
                                    - string
                            enableAcceleratedNetworking: false
                            enableFpga: false
                            enableIPForwarding: false
                            ipConfigurations:
                                - name: string
                                  properties:
                                    applicationGatewayBackendAddressPools:
                                        - id: string
                                    applicationSecurityGroups:
                                        - id: string
                                    loadBalancerBackendAddressPools:
                                        - id: string
                                    loadBalancerInboundNatPools:
                                        - id: string
                                    primary: false
                                    privateIPAddressVersion: string
                                    publicIPAddressConfiguration:
                                        name: string
                                        properties:
                                            deleteOption: string
                                            dnsSettings:
                                                domainNameLabel: string
                                                domainNameLabelScope: string
                                            idleTimeoutInMinutes: 0
                                            ipTags:
                                                - ipTagType: string
                                                  tag: string
                                            publicIPAddressVersion: string
                                            publicIPPrefix:
                                                id: string
                                        sku:
                                            name: string
                                            tier: string
                                    subnet:
                                        id: string
                            networkSecurityGroup:
                                id: string
                            primary: false
                osProfile:
                    adminPassword: string
                    adminUsername: string
                    allowExtensionOperations: false
                    computerNamePrefix: string
                    customData: string
                    linuxConfiguration:
                        disablePasswordAuthentication: false
                        enableVMAgentPlatformUpdates: false
                        patchSettings:
                            assessmentMode: string
                            automaticByPlatformSettings:
                                bypassPlatformSafetyChecksOnUserSchedule: false
                                rebootSetting: string
                            patchMode: string
                        provisionVMAgent: false
                        ssh:
                            publicKeys:
                                - keyData: string
                                  path: string
                    requireGuestProvisionSignal: false
                    secrets:
                        - sourceVault:
                            id: string
                          vaultCertificates:
                            - certificateStore: string
                              certificateUrl: string
                    windowsConfiguration:
                        additionalUnattendContent:
                            - componentName: Microsoft-Windows-Shell-Setup
                              content: string
                              passName: OobeSystem
                              settingName: string
                        enableAutomaticUpdates: false
                        enableVMAgentPlatformUpdates: false
                        patchSettings:
                            assessmentMode: string
                            automaticByPlatformSettings:
                                bypassPlatformSafetyChecksOnUserSchedule: false
                                rebootSetting: string
                            enableHotpatching: false
                            patchMode: string
                        provisionVMAgent: false
                        timeZone: string
                        winRM:
                            listeners:
                                - certificateUrl: string
                                  protocol: string
                scheduledEventsProfile:
                    osImageNotificationProfile:
                        enable: false
                        notBeforeTimeout: string
                    terminateNotificationProfile:
                        enable: false
                        notBeforeTimeout: string
                securityPostureReference:
                    excludeExtensions:
                        - string
                    id: string
                    isOverridable: false
                securityProfile:
                    encryptionAtHost: false
                    encryptionIdentity:
                        userAssignedIdentityResourceId: string
                    proxyAgentSettings:
                        enabled: false
                        keyIncarnationId: 0
                        mode: string
                    securityType: string
                    uefiSettings:
                        secureBootEnabled: false
                        vTpmEnabled: false
                serviceArtifactReference:
                    id: string
                storageProfile:
                    dataDisks:
                        - caching: string
                          createOption: string
                          deleteOption: string
                          diskIOPSReadWrite: 0
                          diskMBpsReadWrite: 0
                          diskSizeGB: 0
                          lun: 0
                          managedDisk:
                            diskEncryptionSet:
                                id: string
                            securityProfile:
                                diskEncryptionSet:
                                    id: string
                                securityEncryptionType: string
                            storageAccountType: string
                          name: string
                          writeAcceleratorEnabled: false
                    diskControllerType: string
                    imageReference:
                        communityGalleryImageId: string
                        id: string
                        offer: string
                        publisher: string
                        sharedGalleryImageId: string
                        sku: string
                        version: string
                    osDisk:
                        caching: string
                        createOption: string
                        deleteOption: string
                        diffDiskSettings:
                            option: string
                            placement: string
                        diskSizeGB: 0
                        image:
                            uri: string
                        managedDisk:
                            diskEncryptionSet:
                                id: string
                            securityProfile:
                                diskEncryptionSet:
                                    id: string
                                securityEncryptionType: string
                            storageAccountType: string
                        name: string
                        osType: string
                        vhdContainers:
                            - string
                        writeAcceleratorEnabled: false
                userData: string
            computeApiVersion: string
            platformFaultDomainCount: 0
        fleetName: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        plan:
            name: string
            product: string
            promotionCode: string
            publisher: string
            version: string
        regularPriorityProfile:
            allocationStrategy: string
            capacity: 0
            minCapacity: 0
        resourceGroupName: string
        spotPriorityProfile:
            allocationStrategy: string
            capacity: 0
            evictionPolicy: string
            maintain: false
            maxPricePerVM: 0
            minCapacity: 0
        tags:
            string: string
        vmSizesProfile:
            - name: string
              rank: 0
        zones:
            - string
    

    Fleet Resource Properties

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

    Inputs

    The Fleet resource accepts the following input properties:

    ComputeProfile Pulumi.AzureNative.AzureFleet.Inputs.ComputeProfile
    Compute Profile to use for running user's workloads.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VmSizesProfile List<Pulumi.AzureNative.AzureFleet.Inputs.VmSizeProfile>
    List of VM sizes supported for Compute Fleet
    FleetName string
    The name of the Compute Fleet
    Identity Pulumi.AzureNative.AzureFleet.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Plan Pulumi.AzureNative.AzureFleet.Inputs.Plan
    Details of the resource plan.
    RegularPriorityProfile Pulumi.AzureNative.AzureFleet.Inputs.RegularPriorityProfile
    Configuration Options for Regular instances in Compute Fleet.
    SpotPriorityProfile Pulumi.AzureNative.AzureFleet.Inputs.SpotPriorityProfile
    Configuration Options for Spot instances in Compute Fleet.
    Tags Dictionary<string, string>
    Resource tags.
    Zones List<string>
    Zones in which the Compute Fleet is available
    ComputeProfile ComputeProfileArgs
    Compute Profile to use for running user's workloads.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VmSizesProfile []VmSizeProfileArgs
    List of VM sizes supported for Compute Fleet
    FleetName string
    The name of the Compute Fleet
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Plan PlanArgs
    Details of the resource plan.
    RegularPriorityProfile RegularPriorityProfileArgs
    Configuration Options for Regular instances in Compute Fleet.
    SpotPriorityProfile SpotPriorityProfileArgs
    Configuration Options for Spot instances in Compute Fleet.
    Tags map[string]string
    Resource tags.
    Zones []string
    Zones in which the Compute Fleet is available
    computeProfile ComputeProfile
    Compute Profile to use for running user's workloads.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    vmSizesProfile List<VmSizeProfile>
    List of VM sizes supported for Compute Fleet
    fleetName String
    The name of the Compute Fleet
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    plan Plan
    Details of the resource plan.
    regularPriorityProfile RegularPriorityProfile
    Configuration Options for Regular instances in Compute Fleet.
    spotPriorityProfile SpotPriorityProfile
    Configuration Options for Spot instances in Compute Fleet.
    tags Map<String,String>
    Resource tags.
    zones List<String>
    Zones in which the Compute Fleet is available
    computeProfile ComputeProfile
    Compute Profile to use for running user's workloads.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    vmSizesProfile VmSizeProfile[]
    List of VM sizes supported for Compute Fleet
    fleetName string
    The name of the Compute Fleet
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    plan Plan
    Details of the resource plan.
    regularPriorityProfile RegularPriorityProfile
    Configuration Options for Regular instances in Compute Fleet.
    spotPriorityProfile SpotPriorityProfile
    Configuration Options for Spot instances in Compute Fleet.
    tags {[key: string]: string}
    Resource tags.
    zones string[]
    Zones in which the Compute Fleet is available
    compute_profile ComputeProfileArgs
    Compute Profile to use for running user's workloads.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    vm_sizes_profile Sequence[VmSizeProfileArgs]
    List of VM sizes supported for Compute Fleet
    fleet_name str
    The name of the Compute Fleet
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    plan PlanArgs
    Details of the resource plan.
    regular_priority_profile RegularPriorityProfileArgs
    Configuration Options for Regular instances in Compute Fleet.
    spot_priority_profile SpotPriorityProfileArgs
    Configuration Options for Spot instances in Compute Fleet.
    tags Mapping[str, str]
    Resource tags.
    zones Sequence[str]
    Zones in which the Compute Fleet is available
    computeProfile Property Map
    Compute Profile to use for running user's workloads.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    vmSizesProfile List<Property Map>
    List of VM sizes supported for Compute Fleet
    fleetName String
    The name of the Compute Fleet
    identity Property Map
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    plan Property Map
    Details of the resource plan.
    regularPriorityProfile Property Map
    Configuration Options for Regular instances in Compute Fleet.
    spotPriorityProfile Property Map
    Configuration Options for Spot instances in Compute Fleet.
    tags Map<String>
    Resource tags.
    zones List<String>
    Zones in which the Compute Fleet is available

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData Pulumi.AzureNative.AzureFleet.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TimeCreated string
    Specifies the time at which the Compute Fleet is created.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    UniqueId string
    Specifies the ID which uniquely identifies a Compute Fleet.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TimeCreated string
    Specifies the time at which the Compute Fleet is created.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    UniqueId string
    Specifies the ID which uniquely identifies a Compute Fleet.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    timeCreated String
    Specifies the time at which the Compute Fleet is created.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    uniqueId String
    Specifies the ID which uniquely identifies a Compute Fleet.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    timeCreated string
    Specifies the time at which the Compute Fleet is created.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    uniqueId string
    Specifies the ID which uniquely identifies a Compute Fleet.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The status of the last operation.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    time_created str
    Specifies the time at which the Compute Fleet is created.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    unique_id str
    Specifies the ID which uniquely identifies a Compute Fleet.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    timeCreated String
    Specifies the time at which the Compute Fleet is created.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    uniqueId String
    Specifies the ID which uniquely identifies a Compute Fleet.

    Supporting Types

    AdditionalUnattendContent, AdditionalUnattendContentArgs

    ComponentName Pulumi.AzureNative.AzureFleet.ComponentName
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    Content string
    Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
    PassName Pulumi.AzureNative.AzureFleet.PassName
    The pass name. Currently, the only allowable value is OobeSystem.
    SettingName string | Pulumi.AzureNative.AzureFleet.SettingNames
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    ComponentName ComponentName
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    Content string
    Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
    PassName PassName
    The pass name. Currently, the only allowable value is OobeSystem.
    SettingName string | SettingNames
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    componentName ComponentName
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    content String
    Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
    passName PassName
    The pass name. Currently, the only allowable value is OobeSystem.
    settingName String | SettingNames
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    componentName ComponentName
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    content string
    Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
    passName PassName
    The pass name. Currently, the only allowable value is OobeSystem.
    settingName string | SettingNames
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    component_name ComponentName
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    content str
    Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
    pass_name PassName
    The pass name. Currently, the only allowable value is OobeSystem.
    setting_name str | SettingNames
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    componentName "Microsoft-Windows-Shell-Setup"
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    content String
    Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
    passName "OobeSystem"
    The pass name. Currently, the only allowable value is OobeSystem.
    settingName String | "AutoLogon" | "FirstLogonCommands"
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.

    AdditionalUnattendContentResponse, AdditionalUnattendContentResponseArgs

    ComponentName string
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    PassName string
    The pass name. Currently, the only allowable value is OobeSystem.
    SettingName string
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    ComponentName string
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    PassName string
    The pass name. Currently, the only allowable value is OobeSystem.
    SettingName string
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    componentName String
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    passName String
    The pass name. Currently, the only allowable value is OobeSystem.
    settingName String
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    componentName string
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    passName string
    The pass name. Currently, the only allowable value is OobeSystem.
    settingName string
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    component_name str
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    pass_name str
    The pass name. Currently, the only allowable value is OobeSystem.
    setting_name str
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
    componentName String
    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
    passName String
    The pass name. Currently, the only allowable value is OobeSystem.
    settingName String
    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.

    ApiEntityReference, ApiEntityReferenceArgs

    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id str
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...

    ApiEntityReferenceResponse, ApiEntityReferenceResponseArgs

    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id str
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...

    ApplicationProfile, ApplicationProfileArgs

    GalleryApplications List<Pulumi.AzureNative.AzureFleet.Inputs.VMGalleryApplication>
    Specifies the gallery applications that should be made available to the VM/VMSS
    GalleryApplications []VMGalleryApplication
    Specifies the gallery applications that should be made available to the VM/VMSS
    galleryApplications List<VMGalleryApplication>
    Specifies the gallery applications that should be made available to the VM/VMSS
    galleryApplications VMGalleryApplication[]
    Specifies the gallery applications that should be made available to the VM/VMSS
    gallery_applications Sequence[VMGalleryApplication]
    Specifies the gallery applications that should be made available to the VM/VMSS
    galleryApplications List<Property Map>
    Specifies the gallery applications that should be made available to the VM/VMSS

    ApplicationProfileResponse, ApplicationProfileResponseArgs

    GalleryApplications List<Pulumi.AzureNative.AzureFleet.Inputs.VMGalleryApplicationResponse>
    Specifies the gallery applications that should be made available to the VM/VMSS
    GalleryApplications []VMGalleryApplicationResponse
    Specifies the gallery applications that should be made available to the VM/VMSS
    galleryApplications List<VMGalleryApplicationResponse>
    Specifies the gallery applications that should be made available to the VM/VMSS
    galleryApplications VMGalleryApplicationResponse[]
    Specifies the gallery applications that should be made available to the VM/VMSS
    gallery_applications Sequence[VMGalleryApplicationResponse]
    Specifies the gallery applications that should be made available to the VM/VMSS
    galleryApplications List<Property Map>
    Specifies the gallery applications that should be made available to the VM/VMSS

    BaseVirtualMachineProfile, BaseVirtualMachineProfileArgs

    ApplicationProfile Pulumi.AzureNative.AzureFleet.Inputs.ApplicationProfile
    Specifies the gallery applications that should be made available to the VM/VMSS
    CapacityReservation Pulumi.AzureNative.AzureFleet.Inputs.CapacityReservationProfile
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    DiagnosticsProfile Pulumi.AzureNative.AzureFleet.Inputs.DiagnosticsProfile
    Specifies the boot diagnostic settings state.
    ExtensionProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetExtensionProfile
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    HardwareProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetHardwareProfile
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    LicenseType string
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    NetworkProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkProfile
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    OsProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetOSProfile
    Specifies the operating system settings for the virtual machines in the scale set.
    ScheduledEventsProfile Pulumi.AzureNative.AzureFleet.Inputs.ScheduledEventsProfile
    Specifies Scheduled Event related configurations.
    SecurityPostureReference Pulumi.AzureNative.AzureFleet.Inputs.SecurityPostureReference
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    SecurityProfile Pulumi.AzureNative.AzureFleet.Inputs.SecurityProfile
    Specifies the Security related profile settings for the virtual machines in the scale set.
    ServiceArtifactReference Pulumi.AzureNative.AzureFleet.Inputs.ServiceArtifactReference
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    StorageProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetStorageProfile
    Specifies the storage settings for the virtual machine disks.
    UserData string
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    ApplicationProfile ApplicationProfile
    Specifies the gallery applications that should be made available to the VM/VMSS
    CapacityReservation CapacityReservationProfile
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    DiagnosticsProfile DiagnosticsProfile
    Specifies the boot diagnostic settings state.
    ExtensionProfile VirtualMachineScaleSetExtensionProfile
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    HardwareProfile VirtualMachineScaleSetHardwareProfile
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    LicenseType string
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    NetworkProfile VirtualMachineScaleSetNetworkProfile
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    OsProfile VirtualMachineScaleSetOSProfile
    Specifies the operating system settings for the virtual machines in the scale set.
    ScheduledEventsProfile ScheduledEventsProfile
    Specifies Scheduled Event related configurations.
    SecurityPostureReference SecurityPostureReference
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    SecurityProfile SecurityProfile
    Specifies the Security related profile settings for the virtual machines in the scale set.
    ServiceArtifactReference ServiceArtifactReference
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    StorageProfile VirtualMachineScaleSetStorageProfile
    Specifies the storage settings for the virtual machine disks.
    UserData string
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    applicationProfile ApplicationProfile
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacityReservation CapacityReservationProfile
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnosticsProfile DiagnosticsProfile
    Specifies the boot diagnostic settings state.
    extensionProfile VirtualMachineScaleSetExtensionProfile
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardwareProfile VirtualMachineScaleSetHardwareProfile
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    licenseType String
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    networkProfile VirtualMachineScaleSetNetworkProfile
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    osProfile VirtualMachineScaleSetOSProfile
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduledEventsProfile ScheduledEventsProfile
    Specifies Scheduled Event related configurations.
    securityPostureReference SecurityPostureReference
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    securityProfile SecurityProfile
    Specifies the Security related profile settings for the virtual machines in the scale set.
    serviceArtifactReference ServiceArtifactReference
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storageProfile VirtualMachineScaleSetStorageProfile
    Specifies the storage settings for the virtual machine disks.
    userData String
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    applicationProfile ApplicationProfile
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacityReservation CapacityReservationProfile
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnosticsProfile DiagnosticsProfile
    Specifies the boot diagnostic settings state.
    extensionProfile VirtualMachineScaleSetExtensionProfile
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardwareProfile VirtualMachineScaleSetHardwareProfile
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    licenseType string
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    networkProfile VirtualMachineScaleSetNetworkProfile
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    osProfile VirtualMachineScaleSetOSProfile
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduledEventsProfile ScheduledEventsProfile
    Specifies Scheduled Event related configurations.
    securityPostureReference SecurityPostureReference
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    securityProfile SecurityProfile
    Specifies the Security related profile settings for the virtual machines in the scale set.
    serviceArtifactReference ServiceArtifactReference
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storageProfile VirtualMachineScaleSetStorageProfile
    Specifies the storage settings for the virtual machine disks.
    userData string
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    application_profile ApplicationProfile
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacity_reservation CapacityReservationProfile
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnostics_profile DiagnosticsProfile
    Specifies the boot diagnostic settings state.
    extension_profile VirtualMachineScaleSetExtensionProfile
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardware_profile VirtualMachineScaleSetHardwareProfile
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    license_type str
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    network_profile VirtualMachineScaleSetNetworkProfile
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    os_profile VirtualMachineScaleSetOSProfile
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduled_events_profile ScheduledEventsProfile
    Specifies Scheduled Event related configurations.
    security_posture_reference SecurityPostureReference
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    security_profile SecurityProfile
    Specifies the Security related profile settings for the virtual machines in the scale set.
    service_artifact_reference ServiceArtifactReference
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storage_profile VirtualMachineScaleSetStorageProfile
    Specifies the storage settings for the virtual machine disks.
    user_data str
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    applicationProfile Property Map
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacityReservation Property Map
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnosticsProfile Property Map
    Specifies the boot diagnostic settings state.
    extensionProfile Property Map
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardwareProfile Property Map
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    licenseType String
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    networkProfile Property Map
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    osProfile Property Map
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduledEventsProfile Property Map
    Specifies Scheduled Event related configurations.
    securityPostureReference Property Map
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    securityProfile Property Map
    Specifies the Security related profile settings for the virtual machines in the scale set.
    serviceArtifactReference Property Map
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storageProfile Property Map
    Specifies the storage settings for the virtual machine disks.
    userData String
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.

    BaseVirtualMachineProfileResponse, BaseVirtualMachineProfileResponseArgs

    TimeCreated string
    Specifies the time in which this VM profile for the Virtual Machine Scale Set was created. Minimum API version for this property is 2023-09-01. This value will be added to VMSS Flex VM tags when creating/updating the VMSS VM Profile with minimum api-version 2023-09-01. Examples: "2024-07-01T00:00:01.1234567+00:00"
    ApplicationProfile Pulumi.AzureNative.AzureFleet.Inputs.ApplicationProfileResponse
    Specifies the gallery applications that should be made available to the VM/VMSS
    CapacityReservation Pulumi.AzureNative.AzureFleet.Inputs.CapacityReservationProfileResponse
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    DiagnosticsProfile Pulumi.AzureNative.AzureFleet.Inputs.DiagnosticsProfileResponse
    Specifies the boot diagnostic settings state.
    ExtensionProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetExtensionProfileResponse
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    HardwareProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetHardwareProfileResponse
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    LicenseType string
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    NetworkProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetNetworkProfileResponse
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    OsProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetOSProfileResponse
    Specifies the operating system settings for the virtual machines in the scale set.
    ScheduledEventsProfile Pulumi.AzureNative.AzureFleet.Inputs.ScheduledEventsProfileResponse
    Specifies Scheduled Event related configurations.
    SecurityPostureReference Pulumi.AzureNative.AzureFleet.Inputs.SecurityPostureReferenceResponse
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    SecurityProfile Pulumi.AzureNative.AzureFleet.Inputs.SecurityProfileResponse
    Specifies the Security related profile settings for the virtual machines in the scale set.
    ServiceArtifactReference Pulumi.AzureNative.AzureFleet.Inputs.ServiceArtifactReferenceResponse
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    StorageProfile Pulumi.AzureNative.AzureFleet.Inputs.VirtualMachineScaleSetStorageProfileResponse
    Specifies the storage settings for the virtual machine disks.
    UserData string
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    TimeCreated string
    Specifies the time in which this VM profile for the Virtual Machine Scale Set was created. Minimum API version for this property is 2023-09-01. This value will be added to VMSS Flex VM tags when creating/updating the VMSS VM Profile with minimum api-version 2023-09-01. Examples: "2024-07-01T00:00:01.1234567+00:00"
    ApplicationProfile ApplicationProfileResponse
    Specifies the gallery applications that should be made available to the VM/VMSS
    CapacityReservation CapacityReservationProfileResponse
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    DiagnosticsProfile DiagnosticsProfileResponse
    Specifies the boot diagnostic settings state.
    ExtensionProfile VirtualMachineScaleSetExtensionProfileResponse
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    HardwareProfile VirtualMachineScaleSetHardwareProfileResponse
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    LicenseType string
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    NetworkProfile VirtualMachineScaleSetNetworkProfileResponse
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    OsProfile VirtualMachineScaleSetOSProfileResponse
    Specifies the operating system settings for the virtual machines in the scale set.
    ScheduledEventsProfile ScheduledEventsProfileResponse
    Specifies Scheduled Event related configurations.
    SecurityPostureReference SecurityPostureReferenceResponse
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    SecurityProfile SecurityProfileResponse
    Specifies the Security related profile settings for the virtual machines in the scale set.
    ServiceArtifactReference ServiceArtifactReferenceResponse
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    StorageProfile VirtualMachineScaleSetStorageProfileResponse
    Specifies the storage settings for the virtual machine disks.
    UserData string
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    timeCreated String
    Specifies the time in which this VM profile for the Virtual Machine Scale Set was created. Minimum API version for this property is 2023-09-01. This value will be added to VMSS Flex VM tags when creating/updating the VMSS VM Profile with minimum api-version 2023-09-01. Examples: "2024-07-01T00:00:01.1234567+00:00"
    applicationProfile ApplicationProfileResponse
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacityReservation CapacityReservationProfileResponse
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnosticsProfile DiagnosticsProfileResponse
    Specifies the boot diagnostic settings state.
    extensionProfile VirtualMachineScaleSetExtensionProfileResponse
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardwareProfile VirtualMachineScaleSetHardwareProfileResponse
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    licenseType String
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    networkProfile VirtualMachineScaleSetNetworkProfileResponse
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    osProfile VirtualMachineScaleSetOSProfileResponse
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduledEventsProfile ScheduledEventsProfileResponse
    Specifies Scheduled Event related configurations.
    securityPostureReference SecurityPostureReferenceResponse
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    securityProfile SecurityProfileResponse
    Specifies the Security related profile settings for the virtual machines in the scale set.
    serviceArtifactReference ServiceArtifactReferenceResponse
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storageProfile VirtualMachineScaleSetStorageProfileResponse
    Specifies the storage settings for the virtual machine disks.
    userData String
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    timeCreated string
    Specifies the time in which this VM profile for the Virtual Machine Scale Set was created. Minimum API version for this property is 2023-09-01. This value will be added to VMSS Flex VM tags when creating/updating the VMSS VM Profile with minimum api-version 2023-09-01. Examples: "2024-07-01T00:00:01.1234567+00:00"
    applicationProfile ApplicationProfileResponse
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacityReservation CapacityReservationProfileResponse
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnosticsProfile DiagnosticsProfileResponse
    Specifies the boot diagnostic settings state.
    extensionProfile VirtualMachineScaleSetExtensionProfileResponse
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardwareProfile VirtualMachineScaleSetHardwareProfileResponse
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    licenseType string
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    networkProfile VirtualMachineScaleSetNetworkProfileResponse
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    osProfile VirtualMachineScaleSetOSProfileResponse
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduledEventsProfile ScheduledEventsProfileResponse
    Specifies Scheduled Event related configurations.
    securityPostureReference SecurityPostureReferenceResponse
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    securityProfile SecurityProfileResponse
    Specifies the Security related profile settings for the virtual machines in the scale set.
    serviceArtifactReference ServiceArtifactReferenceResponse
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storageProfile VirtualMachineScaleSetStorageProfileResponse
    Specifies the storage settings for the virtual machine disks.
    userData string
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    time_created str
    Specifies the time in which this VM profile for the Virtual Machine Scale Set was created. Minimum API version for this property is 2023-09-01. This value will be added to VMSS Flex VM tags when creating/updating the VMSS VM Profile with minimum api-version 2023-09-01. Examples: "2024-07-01T00:00:01.1234567+00:00"
    application_profile ApplicationProfileResponse
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacity_reservation CapacityReservationProfileResponse
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnostics_profile DiagnosticsProfileResponse
    Specifies the boot diagnostic settings state.
    extension_profile VirtualMachineScaleSetExtensionProfileResponse
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardware_profile VirtualMachineScaleSetHardwareProfileResponse
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    license_type str
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    network_profile VirtualMachineScaleSetNetworkProfileResponse
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    os_profile VirtualMachineScaleSetOSProfileResponse
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduled_events_profile ScheduledEventsProfileResponse
    Specifies Scheduled Event related configurations.
    security_posture_reference SecurityPostureReferenceResponse
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    security_profile SecurityProfileResponse
    Specifies the Security related profile settings for the virtual machines in the scale set.
    service_artifact_reference ServiceArtifactReferenceResponse
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storage_profile VirtualMachineScaleSetStorageProfileResponse
    Specifies the storage settings for the virtual machine disks.
    user_data str
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
    timeCreated String
    Specifies the time in which this VM profile for the Virtual Machine Scale Set was created. Minimum API version for this property is 2023-09-01. This value will be added to VMSS Flex VM tags when creating/updating the VMSS VM Profile with minimum api-version 2023-09-01. Examples: "2024-07-01T00:00:01.1234567+00:00"
    applicationProfile Property Map
    Specifies the gallery applications that should be made available to the VM/VMSS
    capacityReservation Property Map
    Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
    diagnosticsProfile Property Map
    Specifies the boot diagnostic settings state.
    extensionProfile Property Map
    Specifies a collection of settings for extensions installed on virtual machines in the scale set.
    hardwareProfile Property Map
    Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
    licenseType String
    Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
    networkProfile Property Map
    Specifies properties of the network interfaces of the virtual machines in the scale set.
    osProfile Property Map
    Specifies the operating system settings for the virtual machines in the scale set.
    scheduledEventsProfile Property Map
    Specifies Scheduled Event related configurations.
    securityPostureReference Property Map
    Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
    securityProfile Property Map
    Specifies the Security related profile settings for the virtual machines in the scale set.
    serviceArtifactReference Property Map
    Specifies the service artifact reference id used to set same image version for all virtual machines in the scale set when using 'latest' image version. Minimum api-version: 2022-11-01
    storageProfile Property Map
    Specifies the storage settings for the virtual machine disks.
    userData String
    UserData for the virtual machines in the scale set, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.

    BootDiagnostics, BootDiagnosticsArgs

    Enabled bool
    Whether boot diagnostics should be enabled on the Virtual Machine.
    StorageUri string
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    Enabled bool
    Whether boot diagnostics should be enabled on the Virtual Machine.
    StorageUri string
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled Boolean
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storageUri String
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled boolean
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storageUri string
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled bool
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storage_uri str
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled Boolean
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storageUri String
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.

    BootDiagnosticsResponse, BootDiagnosticsResponseArgs

    Enabled bool
    Whether boot diagnostics should be enabled on the Virtual Machine.
    StorageUri string
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    Enabled bool
    Whether boot diagnostics should be enabled on the Virtual Machine.
    StorageUri string
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled Boolean
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storageUri String
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled boolean
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storageUri string
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled bool
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storage_uri str
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
    enabled Boolean
    Whether boot diagnostics should be enabled on the Virtual Machine.
    storageUri String
    Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.

    CachingTypes, CachingTypesArgs

    None
    None'None' is default for Standard Storage
    ReadOnly
    ReadOnly'ReadOnly' is default for Premium Storage
    ReadWrite
    ReadWrite'ReadWrite' is default for OS Disk
    CachingTypesNone
    None'None' is default for Standard Storage
    CachingTypesReadOnly
    ReadOnly'ReadOnly' is default for Premium Storage
    CachingTypesReadWrite
    ReadWrite'ReadWrite' is default for OS Disk
    None
    None'None' is default for Standard Storage
    ReadOnly
    ReadOnly'ReadOnly' is default for Premium Storage
    ReadWrite
    ReadWrite'ReadWrite' is default for OS Disk
    None
    None'None' is default for Standard Storage
    ReadOnly
    ReadOnly'ReadOnly' is default for Premium Storage
    ReadWrite
    ReadWrite'ReadWrite' is default for OS Disk
    NONE
    None'None' is default for Standard Storage
    READ_ONLY
    ReadOnly'ReadOnly' is default for Premium Storage
    READ_WRITE
    ReadWrite'ReadWrite' is default for OS Disk
    "None"
    None'None' is default for Standard Storage
    "ReadOnly"
    ReadOnly'ReadOnly' is default for Premium Storage
    "ReadWrite"
    ReadWrite'ReadWrite' is default for OS Disk

    CapacityReservationProfile, CapacityReservationProfileArgs

    CapacityReservationGroup Pulumi.AzureNative.AzureFleet.Inputs.SubResource
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    CapacityReservationGroup SubResource
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacityReservationGroup SubResource
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacityReservationGroup SubResource
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacity_reservation_group SubResource
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacityReservationGroup Property Map
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.

    CapacityReservationProfileResponse, CapacityReservationProfileResponseArgs

    CapacityReservationGroup Pulumi.AzureNative.AzureFleet.Inputs.SubResourceResponse
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    CapacityReservationGroup SubResourceResponse
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacityReservationGroup SubResourceResponse
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacityReservationGroup SubResourceResponse
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacity_reservation_group SubResourceResponse
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
    capacityReservationGroup Property Map
    Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.

    ComponentName, ComponentNameArgs

    Microsoft_Windows_Shell_Setup
    Microsoft-Windows-Shell-Setup
    ComponentName_Microsoft_Windows_Shell_Setup
    Microsoft-Windows-Shell-Setup
    MicrosoftWindowsShellSetup
    Microsoft-Windows-Shell-Setup
    Microsoft_Windows_Shell_Setup
    Microsoft-Windows-Shell-Setup
    MICROSOFT_WINDOWS_SHELL_SETUP
    Microsoft-Windows-Shell-Setup
    "Microsoft-Windows-Shell-Setup"
    Microsoft-Windows-Shell-Setup

    ComputeProfile, ComputeProfileArgs

    BaseVirtualMachineProfile Pulumi.AzureNative.AzureFleet.Inputs.BaseVirtualMachineProfile
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    ComputeApiVersion string
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    PlatformFaultDomainCount int
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    BaseVirtualMachineProfile BaseVirtualMachineProfile
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    ComputeApiVersion string
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    PlatformFaultDomainCount int
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    baseVirtualMachineProfile BaseVirtualMachineProfile
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    computeApiVersion String
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platformFaultDomainCount Integer
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    baseVirtualMachineProfile BaseVirtualMachineProfile
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    computeApiVersion string
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platformFaultDomainCount number
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    base_virtual_machine_profile BaseVirtualMachineProfile
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    compute_api_version str
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platform_fault_domain_count int
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    baseVirtualMachineProfile Property Map
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    computeApiVersion String
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platformFaultDomainCount Number
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.

    ComputeProfileResponse, ComputeProfileResponseArgs

    BaseVirtualMachineProfile Pulumi.AzureNative.AzureFleet.Inputs.BaseVirtualMachineProfileResponse
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    ComputeApiVersion string
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    PlatformFaultDomainCount int
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    BaseVirtualMachineProfile BaseVirtualMachineProfileResponse
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    ComputeApiVersion string
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    PlatformFaultDomainCount int
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    baseVirtualMachineProfile BaseVirtualMachineProfileResponse
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    computeApiVersion String
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platformFaultDomainCount Integer
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    baseVirtualMachineProfile BaseVirtualMachineProfileResponse
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    computeApiVersion string
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platformFaultDomainCount number
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    base_virtual_machine_profile BaseVirtualMachineProfileResponse
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    compute_api_version str
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platform_fault_domain_count int
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.
    baseVirtualMachineProfile Property Map
    Base Virtual Machine Profile Properties to be specified according to "specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/{computeApiVersion}/virtualMachineScaleSet.json#/definitions/VirtualMachineScaleSetVMProfile"
    computeApiVersion String
    Specifies the Microsoft.Compute API version to use when creating underlying Virtual Machine scale sets and Virtual Machines. The default value will be the latest supported computeApiVersion by Compute Fleet.
    platformFaultDomainCount Number
    Specifies the number of fault domains to use when creating the underlying VMSS. A fault domain is a logical group of hardware within an Azure datacenter. VMs in the same fault domain share a common power source and network switch. If not specified, defaults to 1, which represents "Max Spreading" (using as many fault domains as possible). This property cannot be updated.

    DeleteOptions, DeleteOptionsArgs

    Delete
    DeleteDelete Option
    Detach
    DetachDetach Option
    DeleteOptionsDelete
    DeleteDelete Option
    DeleteOptionsDetach
    DetachDetach Option
    Delete
    DeleteDelete Option
    Detach
    DetachDetach Option
    Delete
    DeleteDelete Option
    Detach
    DetachDetach Option
    DELETE
    DeleteDelete Option
    DETACH
    DetachDetach Option
    "Delete"
    DeleteDelete Option
    "Detach"
    DetachDetach Option

    DiagnosticsProfile, DiagnosticsProfileArgs

    BootDiagnostics Pulumi.AzureNative.AzureFleet.Inputs.BootDiagnostics
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    BootDiagnostics BootDiagnostics
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    bootDiagnostics BootDiagnostics
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    bootDiagnostics BootDiagnostics
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    boot_diagnostics BootDiagnostics
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    bootDiagnostics Property Map
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.

    DiagnosticsProfileResponse, DiagnosticsProfileResponseArgs

    BootDiagnostics Pulumi.AzureNative.AzureFleet.Inputs.BootDiagnosticsResponse
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    BootDiagnostics BootDiagnosticsResponse
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    bootDiagnostics BootDiagnosticsResponse
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    bootDiagnostics BootDiagnosticsResponse
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    boot_diagnostics BootDiagnosticsResponse
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
    bootDiagnostics Property Map
    Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.

    DiffDiskOptions, DiffDiskOptionsArgs

    Local
    LocalLocal Option.
    DiffDiskOptionsLocal
    LocalLocal Option.
    Local
    LocalLocal Option.
    Local
    LocalLocal Option.
    LOCAL
    LocalLocal Option.
    "Local"
    LocalLocal Option.

    DiffDiskPlacement, DiffDiskPlacementArgs

    CacheDisk
    CacheDiskCacheDisk option.
    ResourceDisk
    ResourceDiskResource Disk option.
    NvmeDisk
    NvmeDiskNvmeDisk option.
    DiffDiskPlacementCacheDisk
    CacheDiskCacheDisk option.
    DiffDiskPlacementResourceDisk
    ResourceDiskResource Disk option.
    DiffDiskPlacementNvmeDisk
    NvmeDiskNvmeDisk option.
    CacheDisk
    CacheDiskCacheDisk option.
    ResourceDisk
    ResourceDiskResource Disk option.
    NvmeDisk
    NvmeDiskNvmeDisk option.
    CacheDisk
    CacheDiskCacheDisk option.
    ResourceDisk
    ResourceDiskResource Disk option.
    NvmeDisk
    NvmeDiskNvmeDisk option.
    CACHE_DISK
    CacheDiskCacheDisk option.
    RESOURCE_DISK
    ResourceDiskResource Disk option.
    NVME_DISK
    NvmeDiskNvmeDisk option.
    "CacheDisk"
    CacheDiskCacheDisk option.
    "ResourceDisk"
    ResourceDiskResource Disk option.
    "NvmeDisk"
    NvmeDiskNvmeDisk option.

    DiffDiskSettings, DiffDiskSettingsArgs

    Option string | Pulumi.AzureNative.AzureFleet.DiffDiskOptions
    Specifies the ephemeral disk settings for operating system disk.
    Placement string | Pulumi.AzureNative.AzureFleet.DiffDiskPlacement
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    Option string | DiffDiskOptions
    Specifies the ephemeral disk settings for operating system disk.
    Placement string | DiffDiskPlacement
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option String | DiffDiskOptions
    Specifies the ephemeral disk settings for operating system disk.
    placement String | DiffDiskPlacement
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option string | DiffDiskOptions
    Specifies the ephemeral disk settings for operating system disk.
    placement string | DiffDiskPlacement
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option str | DiffDiskOptions
    Specifies the ephemeral disk settings for operating system disk.
    placement str | DiffDiskPlacement
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option String | "Local"
    Specifies the ephemeral disk settings for operating system disk.
    placement String | "CacheDisk" | "ResourceDisk" | "NvmeDisk"
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.

    DiffDiskSettingsResponse, DiffDiskSettingsResponseArgs

    Option string
    Specifies the ephemeral disk settings for operating system disk.
    Placement string
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    Option string
    Specifies the ephemeral disk settings for operating system disk.
    Placement string
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option String
    Specifies the ephemeral disk settings for operating system disk.
    placement String
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option string
    Specifies the ephemeral disk settings for operating system disk.
    placement string
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option str
    Specifies the ephemeral disk settings for operating system disk.
    placement str
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
    option String
    Specifies the ephemeral disk settings for operating system disk.
    placement String
    Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.

    DiskControllerTypes, DiskControllerTypesArgs

    SCSI
    SCSISCSI disk type
    NVMe
    NVMeNVMe disk type
    DiskControllerTypesSCSI
    SCSISCSI disk type
    DiskControllerTypesNVMe
    NVMeNVMe disk type
    SCSI
    SCSISCSI disk type
    NVMe
    NVMeNVMe disk type
    SCSI
    SCSISCSI disk type
    NVMe
    NVMeNVMe disk type
    SCSI
    SCSISCSI disk type
    NV_ME
    NVMeNVMe disk type
    "SCSI"
    SCSISCSI disk type
    "NVMe"
    NVMeNVMe disk type

    DiskCreateOptionTypes, DiskCreateOptionTypesArgs

    FromImage
    FromImageThis value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
    Empty
    EmptyThis value is used when creating an empty data disk.
    Attach
    AttachThis value is used when you are using a specialized disk to create the virtual machine.
    Copy
    CopyThis value is used to create a data disk from a snapshot or another disk.
    Restore
    RestoreThis value is used to create a data disk from a disk restore point.
    DiskCreateOptionTypesFromImage
    FromImageThis value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
    DiskCreateOptionTypesEmpty
    EmptyThis value is used when creating an empty data disk.
    DiskCreateOptionTypesAttach
    AttachThis value is used when you are using a specialized disk to create the virtual machine.
    DiskCreateOptionTypesCopy
    CopyThis value is used to create a data disk from a snapshot or another disk.
    DiskCreateOptionTypesRestore
    RestoreThis value is used to create a data disk from a disk restore point.
    FromImage
    FromImageThis value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
    Empty
    EmptyThis value is used when creating an empty data disk.
    Attach
    AttachThis value is used when you are using a specialized disk to create the virtual machine.
    Copy
    CopyThis value is used to create a data disk from a snapshot or another disk.
    Restore
    RestoreThis value is used to create a data disk from a disk restore point.
    FromImage
    FromImageThis value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
    Empty
    EmptyThis value is used when creating an empty data disk.
    Attach
    AttachThis value is used when you are using a specialized disk to create the virtual machine.
    Copy
    CopyThis value is used to create a data disk from a snapshot or another disk.
    Restore
    RestoreThis value is used to create a data disk from a disk restore point.
    FROM_IMAGE
    FromImageThis value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
    EMPTY
    EmptyThis value is used when creating an empty data disk.
    ATTACH
    AttachThis value is used when you are using a specialized disk to create the virtual machine.
    COPY
    CopyThis value is used to create a data disk from a snapshot or another disk.
    RESTORE
    RestoreThis value is used to create a data disk from a disk restore point.
    "FromImage"
    FromImageThis value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
    "Empty"
    EmptyThis value is used when creating an empty data disk.
    "Attach"
    AttachThis value is used when you are using a specialized disk to create the virtual machine.
    "Copy"
    CopyThis value is used to create a data disk from a snapshot or another disk.
    "Restore"
    RestoreThis value is used to create a data disk from a disk restore point.

    DiskDeleteOptionTypes, DiskDeleteOptionTypesArgs

    Delete
    DeleteIf this value is used, the managed disk is deleted when VM gets deleted.
    Detach
    DetachIf this value is used, the managed disk is retained after VM gets deleted.
    DiskDeleteOptionTypesDelete
    DeleteIf this value is used, the managed disk is deleted when VM gets deleted.
    DiskDeleteOptionTypesDetach
    DetachIf this value is used, the managed disk is retained after VM gets deleted.
    Delete
    DeleteIf this value is used, the managed disk is deleted when VM gets deleted.
    Detach
    DetachIf this value is used, the managed disk is retained after VM gets deleted.
    Delete
    DeleteIf this value is used, the managed disk is deleted when VM gets deleted.
    Detach
    DetachIf this value is used, the managed disk is retained after VM gets deleted.
    DELETE
    DeleteIf this value is used, the managed disk is deleted when VM gets deleted.
    DETACH
    DetachIf this value is used, the managed disk is retained after VM gets deleted.
    "Delete"
    DeleteIf this value is used, the managed disk is deleted when VM gets deleted.
    "Detach"
    DetachIf this value is used, the managed disk is retained after VM gets deleted.

    DiskEncryptionSetParameters, DiskEncryptionSetParametersArgs

    Id string
    Resource Id
    Id string
    Resource Id
    id String
    Resource Id
    id string
    Resource Id
    id str
    Resource Id
    id String
    Resource Id

    DiskEncryptionSetParametersResponse, DiskEncryptionSetParametersResponseArgs

    Id string
    Resource Id
    Id string
    Resource Id
    id String
    Resource Id
    id string
    Resource Id
    id str
    Resource Id
    id String
    Resource Id

    DomainNameLabelScopeTypes, DomainNameLabelScopeTypesArgs

    TenantReuse
    TenantReuseTenantReuse type
    SubscriptionReuse
    SubscriptionReuseSubscriptionReuse type
    ResourceGroupReuse
    ResourceGroupReuseResourceGroupReuse type
    NoReuse
    NoReuseNoReuse type
    DomainNameLabelScopeTypesTenantReuse
    TenantReuseTenantReuse type
    DomainNameLabelScopeTypesSubscriptionReuse
    SubscriptionReuseSubscriptionReuse type
    DomainNameLabelScopeTypesResourceGroupReuse
    ResourceGroupReuseResourceGroupReuse type
    DomainNameLabelScopeTypesNoReuse
    NoReuseNoReuse type
    TenantReuse
    TenantReuseTenantReuse type
    SubscriptionReuse
    SubscriptionReuseSubscriptionReuse type
    ResourceGroupReuse
    ResourceGroupReuseResourceGroupReuse type
    NoReuse
    NoReuseNoReuse type
    TenantReuse
    TenantReuseTenantReuse type
    SubscriptionReuse
    SubscriptionReuseSubscriptionReuse type
    ResourceGroupReuse
    ResourceGroupReuseResourceGroupReuse type
    NoReuse
    NoReuseNoReuse type
    TENANT_REUSE
    TenantReuseTenantReuse type
    SUBSCRIPTION_REUSE
    SubscriptionReuseSubscriptionReuse type
    RESOURCE_GROUP_REUSE
    ResourceGroupReuseResourceGroupReuse type
    NO_REUSE
    NoReuseNoReuse type
    "TenantReuse"
    TenantReuseTenantReuse type
    "SubscriptionReuse"
    SubscriptionReuseSubscriptionReuse type
    "ResourceGroupReuse"
    ResourceGroupReuseResourceGroupReuse type
    "NoReuse"
    NoReuseNoReuse type

    EncryptionIdentity, EncryptionIdentityArgs

    UserAssignedIdentityResourceId string
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    UserAssignedIdentityResourceId string
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    userAssignedIdentityResourceId String
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    userAssignedIdentityResourceId string
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    user_assigned_identity_resource_id str
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    userAssignedIdentityResourceId String
    Specifies ARM Resource ID of one of the user identities associated with the VM.

    EncryptionIdentityResponse, EncryptionIdentityResponseArgs

    UserAssignedIdentityResourceId string
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    UserAssignedIdentityResourceId string
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    userAssignedIdentityResourceId String
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    userAssignedIdentityResourceId string
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    user_assigned_identity_resource_id str
    Specifies ARM Resource ID of one of the user identities associated with the VM.
    userAssignedIdentityResourceId String
    Specifies ARM Resource ID of one of the user identities associated with the VM.

    EvictionPolicy, EvictionPolicyArgs

    Delete
    DeleteWhen evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
    Deallocate
    DeallocateWhen evicted, the Spot VM will be deallocated/stopped
    EvictionPolicyDelete
    DeleteWhen evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
    EvictionPolicyDeallocate
    DeallocateWhen evicted, the Spot VM will be deallocated/stopped
    Delete
    DeleteWhen evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
    Deallocate
    DeallocateWhen evicted, the Spot VM will be deallocated/stopped
    Delete
    DeleteWhen evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
    Deallocate
    DeallocateWhen evicted, the Spot VM will be deallocated/stopped
    DELETE
    DeleteWhen evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
    DEALLOCATE
    DeallocateWhen evicted, the Spot VM will be deallocated/stopped
    "Delete"
    DeleteWhen evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
    "Deallocate"
    DeallocateWhen evicted, the Spot VM will be deallocated/stopped

    IPVersion, IPVersionArgs

    IPv4
    IPv4IPv4 version
    IPv6
    IPv6IPv6 version
    IPVersionIPv4
    IPv4IPv4 version
    IPVersionIPv6
    IPv6IPv6 version
    IPv4
    IPv4IPv4 version
    IPv6
    IPv6IPv6 version
    IPv4
    IPv4IPv4 version
    IPv6
    IPv6IPv6 version
    I_PV4
    IPv4IPv4 version
    I_PV6
    IPv6IPv6 version
    "IPv4"
    IPv4IPv4 version
    "IPv6"
    IPv6IPv6 version

    ImageReference, ImageReferenceArgs

    CommunityGalleryImageId string
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    Id string
    Resource Id
    Offer string
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    Publisher string
    The image publisher.
    SharedGalleryImageId string
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    Sku string
    The image SKU.
    Version string
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    CommunityGalleryImageId string
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    Id string
    Resource Id
    Offer string
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    Publisher string
    The image publisher.
    SharedGalleryImageId string
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    Sku string
    The image SKU.
    Version string
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    communityGalleryImageId String
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id String
    Resource Id
    offer String
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher String
    The image publisher.
    sharedGalleryImageId String
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku String
    The image SKU.
    version String
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    communityGalleryImageId string
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id string
    Resource Id
    offer string
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher string
    The image publisher.
    sharedGalleryImageId string
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku string
    The image SKU.
    version string
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    community_gallery_image_id str
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id str
    Resource Id
    offer str
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher str
    The image publisher.
    shared_gallery_image_id str
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku str
    The image SKU.
    version str
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    communityGalleryImageId String
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id String
    Resource Id
    offer String
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher String
    The image publisher.
    sharedGalleryImageId String
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku String
    The image SKU.
    version String
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.

    ImageReferenceResponse, ImageReferenceResponseArgs

    ExactVersion string
    Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
    CommunityGalleryImageId string
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    Id string
    Resource Id
    Offer string
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    Publisher string
    The image publisher.
    SharedGalleryImageId string
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    Sku string
    The image SKU.
    Version string
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    ExactVersion string
    Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
    CommunityGalleryImageId string
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    Id string
    Resource Id
    Offer string
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    Publisher string
    The image publisher.
    SharedGalleryImageId string
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    Sku string
    The image SKU.
    Version string
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    exactVersion String
    Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
    communityGalleryImageId String
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id String
    Resource Id
    offer String
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher String
    The image publisher.
    sharedGalleryImageId String
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku String
    The image SKU.
    version String
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    exactVersion string
    Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
    communityGalleryImageId string
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id string
    Resource Id
    offer string
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher string
    The image publisher.
    sharedGalleryImageId string
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku string
    The image SKU.
    version string
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    exact_version str
    Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
    community_gallery_image_id str
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id str
    Resource Id
    offer str
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher str
    The image publisher.
    shared_gallery_image_id str
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku str
    The image SKU.
    version str
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
    exactVersion String
    Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
    communityGalleryImageId String
    Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
    id String
    Resource Id
    offer String
    Specifies the offer of the platform image or marketplace image used to create the virtual machine.
    publisher String
    The image publisher.
    sharedGalleryImageId String
    Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
    sku String
    The image SKU.
    version String
    Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.

    KeyVaultSecretReference, KeyVaultSecretReferenceArgs

    SecretUrl string
    The URL referencing a secret in a Key Vault.
    SourceVault Pulumi.AzureNative.AzureFleet.Inputs.SubResource
    The relative URL of the Key Vault containing the secret.
    SecretUrl string
    The URL referencing a secret in a Key Vault.
    SourceVault SubResource
    The relative URL of the Key Vault containing the secret.
    secretUrl String
    The URL referencing a secret in a Key Vault.
    sourceVault SubResource
    The relative URL of the Key Vault containing the secret.
    secretUrl string
    The URL referencing a secret in a Key Vault.
    sourceVault SubResource
    The relative URL of the Key Vault containing the secret.
    secret_url str
    The URL referencing a secret in a Key Vault.
    source_vault SubResource
    The relative URL of the Key Vault containing the secret.
    secretUrl String
    The URL referencing a secret in a Key Vault.
    sourceVault Property Map
    The relative URL of the Key Vault containing the secret.

    KeyVaultSecretReferenceResponse, KeyVaultSecretReferenceResponseArgs

    SecretUrl string
    The URL referencing a secret in a Key Vault.
    SourceVault Pulumi.AzureNative.AzureFleet.Inputs.SubResourceResponse
    The relative URL of the Key Vault containing the secret.
    SecretUrl string
    The URL referencing a secret in a Key Vault.
    SourceVault SubResourceResponse
    The relative URL of the Key Vault containing the secret.
    secretUrl String
    The URL referencing a secret in a Key Vault.
    sourceVault SubResourceResponse
    The relative URL of the Key Vault containing the secret.
    secretUrl string
    The URL referencing a secret in a Key Vault.
    sourceVault SubResourceResponse
    The relative URL of the Key Vault containing the secret.
    secret_url str
    The URL referencing a secret in a Key Vault.
    source_vault SubResourceResponse
    The relative URL of the Key Vault containing the secret.
    secretUrl String
    The URL referencing a secret in a Key Vault.
    sourceVault Property Map
    The relative URL of the Key Vault containing the secret.

    LinuxConfiguration, LinuxConfigurationArgs

    DisablePasswordAuthentication bool
    Specifies whether password authentication should be disabled.
    EnableVMAgentPlatformUpdates bool
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    PatchSettings Pulumi.AzureNative.AzureFleet.Inputs.LinuxPatchSettings
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    ProvisionVMAgent bool
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    Ssh Pulumi.AzureNative.AzureFleet.Inputs.SshConfiguration
    Specifies the ssh key configuration for a Linux OS.
    DisablePasswordAuthentication bool
    Specifies whether password authentication should be disabled.
    EnableVMAgentPlatformUpdates bool
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    PatchSettings LinuxPatchSettings
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    ProvisionVMAgent bool
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    Ssh SshConfiguration
    Specifies the ssh key configuration for a Linux OS.
    disablePasswordAuthentication Boolean
    Specifies whether password authentication should be disabled.
    enableVMAgentPlatformUpdates Boolean
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patchSettings LinuxPatchSettings
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provisionVMAgent Boolean
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh SshConfiguration
    Specifies the ssh key configuration for a Linux OS.
    disablePasswordAuthentication boolean
    Specifies whether password authentication should be disabled.
    enableVMAgentPlatformUpdates boolean
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patchSettings LinuxPatchSettings
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provisionVMAgent boolean
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh SshConfiguration
    Specifies the ssh key configuration for a Linux OS.
    disable_password_authentication bool
    Specifies whether password authentication should be disabled.
    enable_vm_agent_platform_updates bool
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patch_settings LinuxPatchSettings
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provision_vm_agent bool
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh SshConfiguration
    Specifies the ssh key configuration for a Linux OS.
    disablePasswordAuthentication Boolean
    Specifies whether password authentication should be disabled.
    enableVMAgentPlatformUpdates Boolean
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patchSettings Property Map
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provisionVMAgent Boolean
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh Property Map
    Specifies the ssh key configuration for a Linux OS.

    LinuxConfigurationResponse, LinuxConfigurationResponseArgs

    DisablePasswordAuthentication bool
    Specifies whether password authentication should be disabled.
    EnableVMAgentPlatformUpdates bool
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    PatchSettings Pulumi.AzureNative.AzureFleet.Inputs.LinuxPatchSettingsResponse
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    ProvisionVMAgent bool
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    Ssh Pulumi.AzureNative.AzureFleet.Inputs.SshConfigurationResponse
    Specifies the ssh key configuration for a Linux OS.
    DisablePasswordAuthentication bool
    Specifies whether password authentication should be disabled.
    EnableVMAgentPlatformUpdates bool
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    PatchSettings LinuxPatchSettingsResponse
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    ProvisionVMAgent bool
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    Ssh SshConfigurationResponse
    Specifies the ssh key configuration for a Linux OS.
    disablePasswordAuthentication Boolean
    Specifies whether password authentication should be disabled.
    enableVMAgentPlatformUpdates Boolean
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patchSettings LinuxPatchSettingsResponse
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provisionVMAgent Boolean
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh SshConfigurationResponse
    Specifies the ssh key configuration for a Linux OS.
    disablePasswordAuthentication boolean
    Specifies whether password authentication should be disabled.
    enableVMAgentPlatformUpdates boolean
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patchSettings LinuxPatchSettingsResponse
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provisionVMAgent boolean
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh SshConfigurationResponse
    Specifies the ssh key configuration for a Linux OS.
    disable_password_authentication bool
    Specifies whether password authentication should be disabled.
    enable_vm_agent_platform_updates bool
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patch_settings LinuxPatchSettingsResponse
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provision_vm_agent bool
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh SshConfigurationResponse
    Specifies the ssh key configuration for a Linux OS.
    disablePasswordAuthentication Boolean
    Specifies whether password authentication should be disabled.
    enableVMAgentPlatformUpdates Boolean
    Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
    patchSettings Property Map
    [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
    provisionVMAgent Boolean
    Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
    ssh Property Map
    Specifies the ssh key configuration for a Linux OS.

    LinuxPatchAssessmentMode, LinuxPatchAssessmentModeArgs

    ImageDefault
    ImageDefaultYou control the timing of patch assessments on a virtual machine.
    AutomaticByPlatform
    AutomaticByPlatformThe platform will trigger periodic patch assessments.The property provisionVMAgent must be true.
    LinuxPatchAssessmentModeImageDefault
    ImageDefaultYou control the timing of patch assessments on a virtual machine.
    LinuxPatchAssessmentModeAutomaticByPlatform
    AutomaticByPlatformThe platform will trigger periodic patch assessments.The property provisionVMAgent must be true.
    ImageDefault
    ImageDefaultYou control the timing of patch assessments on a virtual machine.
    AutomaticByPlatform
    AutomaticByPlatformThe platform will trigger periodic patch assessments.The property provisionVMAgent must be true.
    ImageDefault
    ImageDefaultYou control the timing of patch assessments on a virtual machine.
    AutomaticByPlatform
    AutomaticByPlatformThe platform will trigger periodic patch assessments.The property provisionVMAgent must be true.
    IMAGE_DEFAULT
    ImageDefaultYou control the timing of patch assessments on a virtual machine.
    AUTOMATIC_BY_PLATFORM
    AutomaticByPlatformThe platform will trigger periodic patch assessments.The property provisionVMAgent must be true.
    "ImageDefault"
    ImageDefaultYou control the timing of patch assessments on a virtual machine.
    "AutomaticByPlatform"
    AutomaticByPlatformThe platform will trigger periodic patch assessments.The property provisionVMAgent must be true.

    LinuxPatchSettings, LinuxPatchSettingsArgs

    AssessmentMode string | Pulumi.AzureNative.AzureFleet.LinuxPatchAssessmentMode
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings Pulumi.AzureNative.AzureFleet.Inputs.LinuxVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    PatchMode string | Pulumi.AzureNative.AzureFleet.LinuxVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    AssessmentMode string | LinuxPatchAssessmentMode
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings LinuxVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    PatchMode string | LinuxVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessmentMode String | LinuxPatchAssessmentMode
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings LinuxVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patchMode String | LinuxVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessmentMode string | LinuxPatchAssessmentMode
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings LinuxVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patchMode string | LinuxVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessment_mode str | LinuxPatchAssessmentMode
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automatic_by_platform_settings LinuxVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patch_mode str | LinuxVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessmentMode String | "ImageDefault" | "AutomaticByPlatform"
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings Property Map
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patchMode String | "ImageDefault" | "AutomaticByPlatform"
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true

    LinuxPatchSettingsResponse, LinuxPatchSettingsResponseArgs

    AssessmentMode string
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings Pulumi.AzureNative.AzureFleet.Inputs.LinuxVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    PatchMode string
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    AssessmentMode string
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings LinuxVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    PatchMode string
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessmentMode String
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings LinuxVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patchMode String
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessmentMode string
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings LinuxVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patchMode string
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessment_mode str
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automatic_by_platform_settings LinuxVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patch_mode str
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
    assessmentMode String
    Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings Property Map
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
    patchMode String
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true

    LinuxVMGuestPatchAutomaticByPlatformRebootSetting, LinuxVMGuestPatchAutomaticByPlatformRebootSettingArgs

    Unknown
    UnknownUnknown Reboot setting
    IfRequired
    IfRequiredIfRequired Reboot setting
    Never
    NeverNever Reboot setting
    Always
    AlwaysAlways Reboot setting
    LinuxVMGuestPatchAutomaticByPlatformRebootSettingUnknown
    UnknownUnknown Reboot setting
    LinuxVMGuestPatchAutomaticByPlatformRebootSettingIfRequired
    IfRequiredIfRequired Reboot setting
    LinuxVMGuestPatchAutomaticByPlatformRebootSettingNever
    NeverNever Reboot setting
    LinuxVMGuestPatchAutomaticByPlatformRebootSettingAlways
    AlwaysAlways Reboot setting
    Unknown
    UnknownUnknown Reboot setting
    IfRequired
    IfRequiredIfRequired Reboot setting
    Never
    NeverNever Reboot setting
    Always
    AlwaysAlways Reboot setting
    Unknown
    UnknownUnknown Reboot setting
    IfRequired
    IfRequiredIfRequired Reboot setting
    Never
    NeverNever Reboot setting
    Always
    AlwaysAlways Reboot setting
    UNKNOWN
    UnknownUnknown Reboot setting
    IF_REQUIRED
    IfRequiredIfRequired Reboot setting
    NEVER
    NeverNever Reboot setting
    ALWAYS
    AlwaysAlways Reboot setting
    "Unknown"
    UnknownUnknown Reboot setting
    "IfRequired"
    IfRequiredIfRequired Reboot setting
    "Never"
    NeverNever Reboot setting
    "Always"
    AlwaysAlways Reboot setting

    LinuxVMGuestPatchAutomaticByPlatformSettings, LinuxVMGuestPatchAutomaticByPlatformSettingsArgs

    BypassPlatformSafetyChecksOnUserSchedule bool
    Enables customer to schedule patching without accidental upgrades
    RebootSetting string | Pulumi.AzureNative.AzureFleet.LinuxVMGuestPatchAutomaticByPlatformRebootSetting
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    BypassPlatformSafetyChecksOnUserSchedule bool
    Enables customer to schedule patching without accidental upgrades
    RebootSetting string | LinuxVMGuestPatchAutomaticByPlatformRebootSetting
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypassPlatformSafetyChecksOnUserSchedule Boolean
    Enables customer to schedule patching without accidental upgrades
    rebootSetting String | LinuxVMGuestPatchAutomaticByPlatformRebootSetting
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypassPlatformSafetyChecksOnUserSchedule boolean
    Enables customer to schedule patching without accidental upgrades
    rebootSetting string | LinuxVMGuestPatchAutomaticByPlatformRebootSetting
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypass_platform_safety_checks_on_user_schedule bool
    Enables customer to schedule patching without accidental upgrades
    reboot_setting str | LinuxVMGuestPatchAutomaticByPlatformRebootSetting
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypassPlatformSafetyChecksOnUserSchedule Boolean
    Enables customer to schedule patching without accidental upgrades
    rebootSetting String | "Unknown" | "IfRequired" | "Never" | "Always"
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.

    LinuxVMGuestPatchAutomaticByPlatformSettingsResponse, LinuxVMGuestPatchAutomaticByPlatformSettingsResponseArgs

    BypassPlatformSafetyChecksOnUserSchedule bool
    Enables customer to schedule patching without accidental upgrades
    RebootSetting string
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    BypassPlatformSafetyChecksOnUserSchedule bool
    Enables customer to schedule patching without accidental upgrades
    RebootSetting string
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypassPlatformSafetyChecksOnUserSchedule Boolean
    Enables customer to schedule patching without accidental upgrades
    rebootSetting String
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypassPlatformSafetyChecksOnUserSchedule boolean
    Enables customer to schedule patching without accidental upgrades
    rebootSetting string
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypass_platform_safety_checks_on_user_schedule bool
    Enables customer to schedule patching without accidental upgrades
    reboot_setting str
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
    bypassPlatformSafetyChecksOnUserSchedule Boolean
    Enables customer to schedule patching without accidental upgrades
    rebootSetting String
    Specifies the reboot setting for all AutomaticByPlatform patch installation operations.

    LinuxVMGuestPatchMode, LinuxVMGuestPatchModeArgs

    ImageDefault
    ImageDefaultThe virtual machine's default patching configuration is used.
    AutomaticByPlatform
    AutomaticByPlatformThe virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true.
    LinuxVMGuestPatchModeImageDefault
    ImageDefaultThe virtual machine's default patching configuration is used.
    LinuxVMGuestPatchModeAutomaticByPlatform
    AutomaticByPlatformThe virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true.
    ImageDefault
    ImageDefaultThe virtual machine's default patching configuration is used.
    AutomaticByPlatform
    AutomaticByPlatformThe virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true.
    ImageDefault
    ImageDefaultThe virtual machine's default patching configuration is used.
    AutomaticByPlatform
    AutomaticByPlatformThe virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true.
    IMAGE_DEFAULT
    ImageDefaultThe virtual machine's default patching configuration is used.
    AUTOMATIC_BY_PLATFORM
    AutomaticByPlatformThe virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true.
    "ImageDefault"
    ImageDefaultThe virtual machine's default patching configuration is used.
    "AutomaticByPlatform"
    AutomaticByPlatformThe virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.AzureFleet.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.AzureFleet.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

    Mode, ModeArgs

    Audit
    AuditAudit Mode
    Enforce
    EnforceEnforce Mode
    ModeAudit
    AuditAudit Mode
    ModeEnforce
    EnforceEnforce Mode
    Audit
    AuditAudit Mode
    Enforce
    EnforceEnforce Mode
    Audit
    AuditAudit Mode
    Enforce
    EnforceEnforce Mode
    AUDIT
    AuditAudit Mode
    ENFORCE
    EnforceEnforce Mode
    "Audit"
    AuditAudit Mode
    "Enforce"
    EnforceEnforce Mode

    NetworkApiVersion, NetworkApiVersionArgs

    V2020_11_01
    2020-11-01Initial version supported. Later versions are supported as well.
    NetworkApiVersion_V2020_11_01
    2020-11-01Initial version supported. Later versions are supported as well.
    V2020_11_01
    2020-11-01Initial version supported. Later versions are supported as well.
    V2020_11_01
    2020-11-01Initial version supported. Later versions are supported as well.
    V2020_11_01
    2020-11-01Initial version supported. Later versions are supported as well.
    "2020-11-01"
    2020-11-01Initial version supported. Later versions are supported as well.

    NetworkInterfaceAuxiliaryMode, NetworkInterfaceAuxiliaryModeArgs

    None
    NoneNone Mode
    AcceleratedConnections
    AcceleratedConnectionsAcceleratedConnections Mode
    Floating
    FloatingFloating Mode
    NetworkInterfaceAuxiliaryModeNone
    NoneNone Mode
    NetworkInterfaceAuxiliaryModeAcceleratedConnections
    AcceleratedConnectionsAcceleratedConnections Mode
    NetworkInterfaceAuxiliaryModeFloating
    FloatingFloating Mode
    None
    NoneNone Mode
    AcceleratedConnections
    AcceleratedConnectionsAcceleratedConnections Mode
    Floating
    FloatingFloating Mode
    None
    NoneNone Mode
    AcceleratedConnections
    AcceleratedConnectionsAcceleratedConnections Mode
    Floating
    FloatingFloating Mode
    NONE
    NoneNone Mode
    ACCELERATED_CONNECTIONS
    AcceleratedConnectionsAcceleratedConnections Mode
    FLOATING
    FloatingFloating Mode
    "None"
    NoneNone Mode
    "AcceleratedConnections"
    AcceleratedConnectionsAcceleratedConnections Mode
    "Floating"
    FloatingFloating Mode

    NetworkInterfaceAuxiliarySku, NetworkInterfaceAuxiliarySkuArgs

    None
    Noneno sku
    A1
    A1A1 sku
    A2
    A2A2 sku
    A4
    A4A4 sku
    A8
    A8A8 sku
    NetworkInterfaceAuxiliarySkuNone
    Noneno sku
    NetworkInterfaceAuxiliarySkuA1
    A1A1 sku
    NetworkInterfaceAuxiliarySkuA2
    A2A2 sku
    NetworkInterfaceAuxiliarySkuA4
    A4A4 sku
    NetworkInterfaceAuxiliarySkuA8
    A8A8 sku
    None
    Noneno sku
    A1
    A1A1 sku
    A2
    A2A2 sku
    A4
    A4A4 sku
    A8
    A8A8 sku
    None
    Noneno sku
    A1
    A1A1 sku
    A2
    A2A2 sku
    A4
    A4A4 sku
    A8
    A8A8 sku
    NONE
    Noneno sku
    A1
    A1A1 sku
    A2
    A2A2 sku
    A4
    A4A4 sku
    A8
    A8A8 sku
    "None"
    Noneno sku
    "A1"
    A1A1 sku
    "A2"
    A2A2 sku
    "A4"
    A4A4 sku
    "A8"
    A8A8 sku

    OSImageNotificationProfile, OSImageNotificationProfileArgs

    Enable bool
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    NotBeforeTimeout string
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    Enable bool
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    NotBeforeTimeout string
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable Boolean
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    notBeforeTimeout String
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable boolean
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    notBeforeTimeout string
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable bool
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    not_before_timeout str
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable Boolean
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    notBeforeTimeout String
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)

    OSImageNotificationProfileResponse, OSImageNotificationProfileResponseArgs

    Enable bool
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    NotBeforeTimeout string
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    Enable bool
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    NotBeforeTimeout string
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable Boolean
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    notBeforeTimeout String
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable boolean
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    notBeforeTimeout string
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable bool
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    not_before_timeout str
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)
    enable Boolean
    Specifies whether the OS Image Scheduled event is enabled or disabled.
    notBeforeTimeout String
    Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must not exceed 15 minutes (PT15M)

    OperatingSystemTypes, OperatingSystemTypesArgs

    Windows
    WindowsWindows OS type
    Linux
    LinuxLinux OS type
    OperatingSystemTypesWindows
    WindowsWindows OS type
    OperatingSystemTypesLinux
    LinuxLinux OS type
    Windows
    WindowsWindows OS type
    Linux
    LinuxLinux OS type
    Windows
    WindowsWindows OS type
    Linux
    LinuxLinux OS type
    WINDOWS
    WindowsWindows OS type
    LINUX
    LinuxLinux OS type
    "Windows"
    WindowsWindows OS type
    "Linux"
    LinuxLinux OS type

    PassName, PassNameArgs

    OobeSystem
    OobeSystem
    PassNameOobeSystem
    OobeSystem
    OobeSystem
    OobeSystem
    OobeSystem
    OobeSystem
    OOBE_SYSTEM
    OobeSystem
    "OobeSystem"
    OobeSystem

    PatchSettings, PatchSettingsArgs

    AssessmentMode string | Pulumi.AzureNative.AzureFleet.WindowsPatchAssessmentMode
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings Pulumi.AzureNative.AzureFleet.Inputs.WindowsVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    EnableHotpatching bool
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    PatchMode string | Pulumi.AzureNative.AzureFleet.WindowsVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    AssessmentMode string | WindowsPatchAssessmentMode
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings WindowsVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    EnableHotpatching bool
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    PatchMode string | WindowsVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessmentMode String | WindowsPatchAssessmentMode
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings WindowsVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enableHotpatching Boolean
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patchMode String | WindowsVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessmentMode string | WindowsPatchAssessmentMode
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings WindowsVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enableHotpatching boolean
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patchMode string | WindowsVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessment_mode str | WindowsPatchAssessmentMode
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automatic_by_platform_settings WindowsVMGuestPatchAutomaticByPlatformSettings
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enable_hotpatching bool
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patch_mode str | WindowsVMGuestPatchMode
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessmentMode String | "ImageDefault" | "AutomaticByPlatform"
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings Property Map
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enableHotpatching Boolean
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patchMode String | "Manual" | "AutomaticByOS" | "AutomaticByPlatform"
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true

    PatchSettingsResponse, PatchSettingsResponseArgs

    AssessmentMode string
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings Pulumi.AzureNative.AzureFleet.Inputs.WindowsVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    EnableHotpatching bool
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    PatchMode string
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    AssessmentMode string
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    AutomaticByPlatformSettings WindowsVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    EnableHotpatching bool
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    PatchMode string
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessmentMode String
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings WindowsVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enableHotpatching Boolean
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patchMode String
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessmentMode string
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings WindowsVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enableHotpatching boolean
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patchMode string
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessment_mode str
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automatic_by_platform_settings WindowsVMGuestPatchAutomaticByPlatformSettingsResponse
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enable_hotpatching bool
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patch_mode str
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
    assessmentMode String
    Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
    automaticByPlatformSettings Property Map
    Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
    enableHotpatching Boolean
    Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
    patchMode String
    Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true

    Plan, PlanArgs

    Name string
    A user defined name of the 3rd Party Artifact that is being procured.
    Product string
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    Publisher string
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    PromotionCode string
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    Version string
    The version of the desired product/artifact.
    Name string
    A user defined name of the 3rd Party Artifact that is being procured.
    Product string
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    Publisher string
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    PromotionCode string
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    Version string
    The version of the desired product/artifact.
    name String
    A user defined name of the 3rd Party Artifact that is being procured.
    product String
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    publisher String
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    promotionCode String
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    version String
    The version of the desired product/artifact.
    name string
    A user defined name of the 3rd Party Artifact that is being procured.
    product string
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    publisher string
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    promotionCode string
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    version string
    The version of the desired product/artifact.
    name str
    A user defined name of the 3rd Party Artifact that is being procured.
    product str
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    publisher str
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    promotion_code str
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    version str
    The version of the desired product/artifact.
    name String
    A user defined name of the 3rd Party Artifact that is being procured.
    product String
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    publisher String
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    promotionCode String
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    version String
    The version of the desired product/artifact.

    PlanResponse, PlanResponseArgs

    Name string
    A user defined name of the 3rd Party Artifact that is being procured.
    Product string
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    Publisher string
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    PromotionCode string
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    Version string
    The version of the desired product/artifact.
    Name string
    A user defined name of the 3rd Party Artifact that is being procured.
    Product string
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    Publisher string
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    PromotionCode string
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    Version string
    The version of the desired product/artifact.
    name String
    A user defined name of the 3rd Party Artifact that is being procured.
    product String
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    publisher String
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    promotionCode String
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    version String
    The version of the desired product/artifact.
    name string
    A user defined name of the 3rd Party Artifact that is being procured.
    product string
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    publisher string
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    promotionCode string
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    version string
    The version of the desired product/artifact.
    name str
    A user defined name of the 3rd Party Artifact that is being procured.
    product str
    The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
    publisher str
    The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
    promotion_code str
    A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
    version str
    The version of th