azure-native.azurefleet.Fleet
Explore with Pulumi AI
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)
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:
- Compute
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Compute Profile - Compute Profile to use for running user's workloads.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Vm
Sizes List<Pulumi.Profile Azure Native. Azure Fleet. Inputs. Vm Size Profile> - List of VM sizes supported for Compute Fleet
- Fleet
Name string - The name of the Compute Fleet
- Identity
Pulumi.
Azure Native. Azure Fleet. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Plan
Pulumi.
Azure Native. Azure Fleet. Inputs. Plan - Details of the resource plan.
- Regular
Priority Pulumi.Profile Azure Native. Azure Fleet. Inputs. Regular Priority Profile - Configuration Options for Regular instances in Compute Fleet.
- Spot
Priority Pulumi.Profile Azure Native. Azure Fleet. Inputs. Spot Priority Profile - Configuration Options for Spot instances in Compute Fleet.
- Dictionary<string, string>
- Resource tags.
- Zones List<string>
- Zones in which the Compute Fleet is available
- Compute
Profile ComputeProfile Args - Compute Profile to use for running user's workloads.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Vm
Sizes []VmProfile Size Profile Args - List of VM sizes supported for Compute Fleet
- Fleet
Name string - The name of the Compute Fleet
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Plan
Plan
Args - Details of the resource plan.
- Regular
Priority RegularProfile Priority Profile Args - Configuration Options for Regular instances in Compute Fleet.
- Spot
Priority SpotProfile Priority Profile Args - Configuration Options for Spot instances in Compute Fleet.
- map[string]string
- Resource tags.
- Zones []string
- Zones in which the Compute Fleet is available
- compute
Profile ComputeProfile - Compute Profile to use for running user's workloads.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- vm
Sizes List<VmProfile Size Profile> - List of VM sizes supported for Compute Fleet
- fleet
Name String - The name of the Compute Fleet
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- plan Plan
- Details of the resource plan.
- regular
Priority RegularProfile Priority Profile - Configuration Options for Regular instances in Compute Fleet.
- spot
Priority SpotProfile Priority Profile - Configuration Options for Spot instances in Compute Fleet.
- Map<String,String>
- Resource tags.
- zones List<String>
- Zones in which the Compute Fleet is available
- compute
Profile ComputeProfile - Compute Profile to use for running user's workloads.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- vm
Sizes VmProfile Size Profile[] - List of VM sizes supported for Compute Fleet
- fleet
Name string - The name of the Compute Fleet
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- plan Plan
- Details of the resource plan.
- regular
Priority RegularProfile Priority Profile - Configuration Options for Regular instances in Compute Fleet.
- spot
Priority SpotProfile Priority Profile - Configuration Options for Spot instances in Compute Fleet.
- {[key: string]: string}
- Resource tags.
- zones string[]
- Zones in which the Compute Fleet is available
- compute_
profile ComputeProfile Args - Compute Profile to use for running user's workloads.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- vm_
sizes_ Sequence[Vmprofile Size Profile Args] - List of VM sizes supported for Compute Fleet
- fleet_
name str - The name of the Compute Fleet
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- plan
Plan
Args - Details of the resource plan.
- regular_
priority_ Regularprofile Priority Profile Args - Configuration Options for Regular instances in Compute Fleet.
- spot_
priority_ Spotprofile Priority Profile Args - Configuration Options for Spot instances in Compute Fleet.
- Mapping[str, str]
- Resource tags.
- zones Sequence[str]
- Zones in which the Compute Fleet is available
- compute
Profile Property Map - Compute Profile to use for running user's workloads.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- vm
Sizes List<Property Map>Profile - List of VM sizes supported for Compute Fleet
- fleet
Name 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.
- regular
Priority Property MapProfile - Configuration Options for Regular instances in Compute Fleet.
- spot
Priority Property MapProfile - Configuration Options for Spot instances in Compute Fleet.
- 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
- Provisioning
State string - The status of the last operation.
- System
Data Pulumi.Azure Native. Azure Fleet. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Time
Created 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"
- Unique
Id 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
- Provisioning
State string - The status of the last operation.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Time
Created 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"
- Unique
Id 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
- provisioning
State String - The status of the last operation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- time
Created 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"
- unique
Id 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
- provisioning
State string - The status of the last operation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- time
Created 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"
- unique
Id 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 SystemData Response - 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
- provisioning
State String - The status of the last operation.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- time
Created 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"
- unique
Id String - Specifies the ID which uniquely identifies a Compute Fleet.
Supporting Types
AdditionalUnattendContent, AdditionalUnattendContentArgs
- Component
Name Pulumi.Azure Native. Azure Fleet. Component Name - 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.
- Pass
Name Pulumi.Azure Native. Azure Fleet. Pass Name - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name string | Pulumi.Azure Native. Azure Fleet. Setting Names - 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 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.
- Pass
Name PassName - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name 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 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.
- pass
Name PassName - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name 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 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.
- pass
Name PassName - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name 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.
- component
Name "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.
- pass
Name "OobeSystem" - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name String | "AutoLogon" | "First Logon Commands" - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
AdditionalUnattendContentResponse, AdditionalUnattendContentResponseArgs
- Component
Name string - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Pass
Name string - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name string - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- Component
Name string - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Pass
Name string - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name string - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name String - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- pass
Name String - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name String - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name string - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- pass
Name string - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name 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.
- component
Name String - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- pass
Name String - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name 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
- Gallery
Applications List<Pulumi.Azure Native. Azure Fleet. Inputs. VMGallery Application> - Specifies the gallery applications that should be made available to the VM/VMSS
- Gallery
Applications []VMGalleryApplication - Specifies the gallery applications that should be made available to the VM/VMSS
- gallery
Applications List<VMGalleryApplication> - Specifies the gallery applications that should be made available to the VM/VMSS
- gallery
Applications 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
- gallery
Applications List<Property Map> - Specifies the gallery applications that should be made available to the VM/VMSS
ApplicationProfileResponse, ApplicationProfileResponseArgs
- Gallery
Applications List<Pulumi.Azure Native. Azure Fleet. Inputs. VMGallery Application Response> - Specifies the gallery applications that should be made available to the VM/VMSS
- Gallery
Applications []VMGalleryApplication Response - Specifies the gallery applications that should be made available to the VM/VMSS
- gallery
Applications List<VMGalleryApplication Response> - Specifies the gallery applications that should be made available to the VM/VMSS
- gallery
Applications VMGalleryApplication Response[] - Specifies the gallery applications that should be made available to the VM/VMSS
- gallery_
applications Sequence[VMGalleryApplication Response] - Specifies the gallery applications that should be made available to the VM/VMSS
- gallery
Applications List<Property Map> - Specifies the gallery applications that should be made available to the VM/VMSS
BaseVirtualMachineProfile, BaseVirtualMachineProfileArgs
- Application
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Application Profile - Specifies the gallery applications that should be made available to the VM/VMSS
- Capacity
Reservation Pulumi.Azure Native. Azure Fleet. Inputs. Capacity Reservation Profile - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- Diagnostics
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Diagnostics Profile - Specifies the boot diagnostic settings state.
- Extension
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Extension Profile - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- Hardware
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Hardware Profile - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- License
Type 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
- Network
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Profile - Specifies properties of the network interfaces of the virtual machines in the scale set.
- Os
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set OSProfile - Specifies the operating system settings for the virtual machines in the scale set.
- Scheduled
Events Pulumi.Profile Azure Native. Azure Fleet. Inputs. Scheduled Events Profile - Specifies Scheduled Event related configurations.
- Security
Posture Pulumi.Reference Azure Native. Azure Fleet. Inputs. Security Posture Reference - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- Security
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Security Profile - Specifies the Security related profile settings for the virtual machines in the scale set.
- Service
Artifact Pulumi.Reference Azure Native. Azure Fleet. Inputs. Service Artifact Reference - 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 Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Storage Profile - Specifies the storage settings for the virtual machine disks.
- User
Data 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 CapacityReservation Profile - 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 VirtualMachine Scale Set Extension Profile - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- Hardware
Profile VirtualMachine Scale Set Hardware Profile - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- License
Type 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
- Network
Profile VirtualMachine Scale Set Network Profile - Specifies properties of the network interfaces of the virtual machines in the scale set.
- Os
Profile VirtualMachine Scale Set OSProfile - Specifies the operating system settings for the virtual machines in the scale set.
- Scheduled
Events ScheduledProfile Events Profile - Specifies Scheduled Event related configurations.
- Security
Posture SecurityReference Posture Reference - 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 ServiceReference Artifact Reference - 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 VirtualMachine Scale Set Storage Profile - Specifies the storage settings for the virtual machine disks.
- User
Data 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 CapacityReservation Profile - 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 VirtualMachine Scale Set Extension Profile - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware
Profile VirtualMachine Scale Set Hardware Profile - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- license
Type 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
- network
Profile VirtualMachine Scale Set Network Profile - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os
Profile VirtualMachine Scale Set OSProfile - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled
Events ScheduledProfile Events Profile - Specifies Scheduled Event related configurations.
- security
Posture SecurityReference Posture Reference - 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 ServiceReference Artifact Reference - 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 VirtualMachine Scale Set Storage Profile - Specifies the storage settings for the virtual machine disks.
- user
Data 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 CapacityReservation Profile - 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 VirtualMachine Scale Set Extension Profile - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware
Profile VirtualMachine Scale Set Hardware Profile - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- license
Type 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
- network
Profile VirtualMachine Scale Set Network Profile - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os
Profile VirtualMachine Scale Set OSProfile - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled
Events ScheduledProfile Events Profile - Specifies Scheduled Event related configurations.
- security
Posture SecurityReference Posture Reference - 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 ServiceReference Artifact Reference - 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 VirtualMachine Scale Set Storage Profile - Specifies the storage settings for the virtual machine disks.
- user
Data 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 CapacityReservation Profile - 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 VirtualMachine Scale Set Extension Profile - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware_
profile VirtualMachine Scale Set Hardware Profile - 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 VirtualMachine Scale Set Network Profile - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os_
profile VirtualMachine Scale Set OSProfile - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled_
events_ Scheduledprofile Events Profile - Specifies Scheduled Event related configurations.
- security_
posture_ Securityreference Posture Reference - 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_ Servicereference Artifact Reference - 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 VirtualMachine Scale Set Storage Profile - 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.
- application
Profile Property Map - Specifies the gallery applications that should be made available to the VM/VMSS
- capacity
Reservation Property Map - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- diagnostics
Profile Property Map - Specifies the boot diagnostic settings state.
- extension
Profile Property Map - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware
Profile Property Map - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- license
Type 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
- network
Profile Property Map - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os
Profile Property Map - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled
Events Property MapProfile - Specifies Scheduled Event related configurations.
- security
Posture Property MapReference - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- security
Profile Property Map - Specifies the Security related profile settings for the virtual machines in the scale set.
- service
Artifact Property MapReference - 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 Property Map - Specifies the storage settings for the virtual machine disks.
- user
Data 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
- Time
Created 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"
- Application
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Application Profile Response - Specifies the gallery applications that should be made available to the VM/VMSS
- Capacity
Reservation Pulumi.Azure Native. Azure Fleet. Inputs. Capacity Reservation Profile Response - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- Diagnostics
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Diagnostics Profile Response - Specifies the boot diagnostic settings state.
- Extension
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Extension Profile Response - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- Hardware
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Hardware Profile Response - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- License
Type 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
- Network
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Profile Response - Specifies properties of the network interfaces of the virtual machines in the scale set.
- Os
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set OSProfile Response - Specifies the operating system settings for the virtual machines in the scale set.
- Scheduled
Events Pulumi.Profile Azure Native. Azure Fleet. Inputs. Scheduled Events Profile Response - Specifies Scheduled Event related configurations.
- Security
Posture Pulumi.Reference Azure Native. Azure Fleet. Inputs. Security Posture Reference Response - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- Security
Profile Pulumi.Azure Native. Azure Fleet. Inputs. Security Profile Response - Specifies the Security related profile settings for the virtual machines in the scale set.
- Service
Artifact Pulumi.Reference Azure Native. Azure Fleet. Inputs. Service Artifact Reference Response - 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 Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Storage Profile Response - Specifies the storage settings for the virtual machine disks.
- User
Data 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 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"
- Application
Profile ApplicationProfile Response - Specifies the gallery applications that should be made available to the VM/VMSS
- Capacity
Reservation CapacityReservation Profile Response - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- Diagnostics
Profile DiagnosticsProfile Response - Specifies the boot diagnostic settings state.
- Extension
Profile VirtualMachine Scale Set Extension Profile Response - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- Hardware
Profile VirtualMachine Scale Set Hardware Profile Response - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- License
Type 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
- Network
Profile VirtualMachine Scale Set Network Profile Response - Specifies properties of the network interfaces of the virtual machines in the scale set.
- Os
Profile VirtualMachine Scale Set OSProfile Response - Specifies the operating system settings for the virtual machines in the scale set.
- Scheduled
Events ScheduledProfile Events Profile Response - Specifies Scheduled Event related configurations.
- Security
Posture SecurityReference Posture Reference Response - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- Security
Profile SecurityProfile Response - Specifies the Security related profile settings for the virtual machines in the scale set.
- Service
Artifact ServiceReference Artifact Reference Response - 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 VirtualMachine Scale Set Storage Profile Response - Specifies the storage settings for the virtual machine disks.
- User
Data 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 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"
- application
Profile ApplicationProfile Response - Specifies the gallery applications that should be made available to the VM/VMSS
- capacity
Reservation CapacityReservation Profile Response - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- diagnostics
Profile DiagnosticsProfile Response - Specifies the boot diagnostic settings state.
- extension
Profile VirtualMachine Scale Set Extension Profile Response - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware
Profile VirtualMachine Scale Set Hardware Profile Response - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- license
Type 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
- network
Profile VirtualMachine Scale Set Network Profile Response - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os
Profile VirtualMachine Scale Set OSProfile Response - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled
Events ScheduledProfile Events Profile Response - Specifies Scheduled Event related configurations.
- security
Posture SecurityReference Posture Reference Response - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- security
Profile SecurityProfile Response - Specifies the Security related profile settings for the virtual machines in the scale set.
- service
Artifact ServiceReference Artifact Reference Response - 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 VirtualMachine Scale Set Storage Profile Response - Specifies the storage settings for the virtual machine disks.
- user
Data 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 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"
- application
Profile ApplicationProfile Response - Specifies the gallery applications that should be made available to the VM/VMSS
- capacity
Reservation CapacityReservation Profile Response - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- diagnostics
Profile DiagnosticsProfile Response - Specifies the boot diagnostic settings state.
- extension
Profile VirtualMachine Scale Set Extension Profile Response - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware
Profile VirtualMachine Scale Set Hardware Profile Response - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- license
Type 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
- network
Profile VirtualMachine Scale Set Network Profile Response - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os
Profile VirtualMachine Scale Set OSProfile Response - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled
Events ScheduledProfile Events Profile Response - Specifies Scheduled Event related configurations.
- security
Posture SecurityReference Posture Reference Response - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- security
Profile SecurityProfile Response - Specifies the Security related profile settings for the virtual machines in the scale set.
- service
Artifact ServiceReference Artifact Reference Response - 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 VirtualMachine Scale Set Storage Profile Response - Specifies the storage settings for the virtual machine disks.
- user
Data 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 ApplicationProfile Response - Specifies the gallery applications that should be made available to the VM/VMSS
- capacity_
reservation CapacityReservation Profile Response - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- diagnostics_
profile DiagnosticsProfile Response - Specifies the boot diagnostic settings state.
- extension_
profile VirtualMachine Scale Set Extension Profile Response - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware_
profile VirtualMachine Scale Set Hardware Profile Response - 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 VirtualMachine Scale Set Network Profile Response - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os_
profile VirtualMachine Scale Set OSProfile Response - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled_
events_ Scheduledprofile Events Profile Response - Specifies Scheduled Event related configurations.
- security_
posture_ Securityreference Posture Reference Response - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- security_
profile SecurityProfile Response - Specifies the Security related profile settings for the virtual machines in the scale set.
- service_
artifact_ Servicereference Artifact Reference Response - 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 VirtualMachine Scale Set Storage Profile Response - 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.
- time
Created 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"
- application
Profile Property Map - Specifies the gallery applications that should be made available to the VM/VMSS
- capacity
Reservation Property Map - Specifies the capacity reservation related details of a scale set. Minimum api-version: 2021-04-01.
- diagnostics
Profile Property Map - Specifies the boot diagnostic settings state.
- extension
Profile Property Map - Specifies a collection of settings for extensions installed on virtual machines in the scale set.
- hardware
Profile Property Map - Specifies the hardware profile related details of a scale set. Minimum api-version: 2021-11-01.
- license
Type 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
- network
Profile Property Map - Specifies properties of the network interfaces of the virtual machines in the scale set.
- os
Profile Property Map - Specifies the operating system settings for the virtual machines in the scale set.
- scheduled
Events Property MapProfile - Specifies Scheduled Event related configurations.
- security
Posture Property MapReference - Specifies the security posture to be used for all virtual machines in the scale set. Minimum api-version: 2023-03-01
- security
Profile Property Map - Specifies the Security related profile settings for the virtual machines in the scale set.
- service
Artifact Property MapReference - 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 Property Map - Specifies the storage settings for the virtual machine disks.
- user
Data 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.
- Storage
Uri 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 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.
- storage
Uri 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.
- storage
Uri 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.
- storage
Uri 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.
- Storage
Uri 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 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.
- storage
Uri 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.
- storage
Uri 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.
- storage
Uri 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
- Read
Only - ReadOnly'ReadOnly' is default for Premium Storage
- Read
Write - ReadWrite'ReadWrite' is default for OS Disk
- Caching
Types None - None'None' is default for Standard Storage
- Caching
Types Read Only - ReadOnly'ReadOnly' is default for Premium Storage
- Caching
Types Read Write - 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
- 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
- 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
- "Read
Only" - ReadOnly'ReadOnly' is default for Premium Storage
- "Read
Write" - ReadWrite'ReadWrite' is default for OS Disk
CapacityReservationProfile, CapacityReservationProfileArgs
- Capacity
Reservation Pulumi.Group Azure Native. Azure Fleet. Inputs. Sub Resource - 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 SubGroup Resource - 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 SubGroup Resource - 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 SubGroup Resource - 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_ Subgroup Resource - 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 Property MapGroup - 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
- Capacity
Reservation Pulumi.Group Azure Native. Azure Fleet. Inputs. Sub Resource Response - 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 SubGroup Resource Response - 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 SubGroup Resource Response - 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 SubGroup Resource Response - 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_ Subgroup Resource Response - 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 Property MapGroup - 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
- Component
Name_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
- Microsoft-Windows-Shell-Setup
- "Microsoft-Windows-Shell-Setup"
- Microsoft-Windows-Shell-Setup
ComputeProfile, ComputeProfileArgs
- Base
Virtual Pulumi.Machine Profile Azure Native. Azure Fleet. Inputs. Base Virtual Machine Profile - 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 stringVersion - 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 intDomain Count - 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 BaseMachine Profile Virtual Machine Profile - 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 stringVersion - 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 intDomain Count - 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 BaseMachine Profile Virtual Machine Profile - 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 StringVersion - 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 IntegerDomain Count - 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 BaseMachine Profile Virtual Machine Profile - 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 stringVersion - 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 numberDomain Count - 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_ Basemachine_ profile Virtual Machine Profile - 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_ strversion - 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_ intdomain_ count - 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 Property MapMachine Profile - 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 StringVersion - 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 NumberDomain Count - 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
- Base
Virtual Pulumi.Machine Profile Azure Native. Azure Fleet. Inputs. Base Virtual Machine Profile Response - 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 stringVersion - 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 intDomain Count - 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 BaseMachine Profile Virtual Machine Profile Response - 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 stringVersion - 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 intDomain Count - 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 BaseMachine Profile Virtual Machine Profile Response - 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 StringVersion - 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 IntegerDomain Count - 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 BaseMachine Profile Virtual Machine Profile Response - 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 stringVersion - 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 numberDomain Count - 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_ Basemachine_ profile Virtual Machine Profile Response - 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_ strversion - 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_ intdomain_ count - 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 Property MapMachine Profile - 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 StringVersion - 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 NumberDomain Count - 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
- Delete
Options Delete - DeleteDelete Option
- Delete
Options Detach - 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
- Boot
Diagnostics Pulumi.Azure Native. Azure Fleet. Inputs. Boot Diagnostics - 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.
- 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.
- 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.
- 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.
- boot
Diagnostics 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
- Boot
Diagnostics Pulumi.Azure Native. Azure Fleet. Inputs. Boot Diagnostics Response - 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 Response - 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 Response - 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 Response - 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 Response - 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 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.
- Diff
Disk Options Local - LocalLocal Option.
- Local
- LocalLocal Option.
- Local
- LocalLocal Option.
- LOCAL
- LocalLocal Option.
- "Local"
- LocalLocal Option.
DiffDiskPlacement, DiffDiskPlacementArgs
- Cache
Disk - CacheDiskCacheDisk option.
- Resource
Disk - ResourceDiskResource Disk option.
- Nvme
Disk - NvmeDiskNvmeDisk option.
- Diff
Disk Placement Cache Disk - CacheDiskCacheDisk option.
- Diff
Disk Placement Resource Disk - ResourceDiskResource Disk option.
- Diff
Disk Placement Nvme Disk - NvmeDiskNvmeDisk option.
- Cache
Disk - CacheDiskCacheDisk option.
- Resource
Disk - ResourceDiskResource Disk option.
- Nvme
Disk - NvmeDiskNvmeDisk option.
- Cache
Disk - CacheDiskCacheDisk option.
- Resource
Disk - ResourceDiskResource Disk option.
- Nvme
Disk - NvmeDiskNvmeDisk option.
- CACHE_DISK
- CacheDiskCacheDisk option.
- RESOURCE_DISK
- ResourceDiskResource Disk option.
- NVME_DISK
- NvmeDiskNvmeDisk option.
- "Cache
Disk" - CacheDiskCacheDisk option.
- "Resource
Disk" - ResourceDiskResource Disk option.
- "Nvme
Disk" - NvmeDiskNvmeDisk option.
DiffDiskSettings, DiffDiskSettingsArgs
- Option
string | Pulumi.
Azure Native. Azure Fleet. Diff Disk Options - Specifies the ephemeral disk settings for operating system disk.
- Placement
string | Pulumi.
Azure Native. Azure Fleet. Diff Disk Placement - 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 | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- Placement
string | Diff
Disk Placement - 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 | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- placement
String | Diff
Disk Placement - 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 | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- placement
string | Diff
Disk Placement - 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 | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- placement
str | Diff
Disk Placement - 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 | "Cache
Disk" | "Resource Disk" | "Nvme Disk" - 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
- Disk
Controller Types SCSI - SCSISCSI disk type
- Disk
Controller Types NVMe - 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
- 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.
- Disk
Create Option Types 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.
- Disk
Create Option Types Empty - EmptyThis value is used when creating an empty data disk.
- Disk
Create Option Types Attach - AttachThis value is used when you are using a specialized disk to create the virtual machine.
- Disk
Create Option Types Copy - CopyThis value is used to create a data disk from a snapshot or another disk.
- Disk
Create Option Types 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.
- 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.
- 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.
- "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.
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.
- Disk
Delete Option Types Delete - DeleteIf this value is used, the managed disk is deleted when VM gets deleted.
- Disk
Delete Option Types 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.
- "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
- Tenant
Reuse - TenantReuseTenantReuse type
- Subscription
Reuse - SubscriptionReuseSubscriptionReuse type
- Resource
Group Reuse - ResourceGroupReuseResourceGroupReuse type
- No
Reuse - NoReuseNoReuse type
- Domain
Name Label Scope Types Tenant Reuse - TenantReuseTenantReuse type
- Domain
Name Label Scope Types Subscription Reuse - SubscriptionReuseSubscriptionReuse type
- Domain
Name Label Scope Types Resource Group Reuse - ResourceGroupReuseResourceGroupReuse type
- Domain
Name Label Scope Types No Reuse - NoReuseNoReuse type
- Tenant
Reuse - TenantReuseTenantReuse type
- Subscription
Reuse - SubscriptionReuseSubscriptionReuse type
- Resource
Group Reuse - ResourceGroupReuseResourceGroupReuse type
- No
Reuse - NoReuseNoReuse type
- Tenant
Reuse - TenantReuseTenantReuse type
- Subscription
Reuse - SubscriptionReuseSubscriptionReuse type
- Resource
Group Reuse - ResourceGroupReuseResourceGroupReuse type
- No
Reuse - NoReuseNoReuse type
- TENANT_REUSE
- TenantReuseTenantReuse type
- SUBSCRIPTION_REUSE
- SubscriptionReuseSubscriptionReuse type
- RESOURCE_GROUP_REUSE
- ResourceGroupReuseResourceGroupReuse type
- NO_REUSE
- NoReuseNoReuse type
- "Tenant
Reuse" - TenantReuseTenantReuse type
- "Subscription
Reuse" - SubscriptionReuseSubscriptionReuse type
- "Resource
Group Reuse" - ResourceGroupReuseResourceGroupReuse type
- "No
Reuse" - NoReuseNoReuse type
EncryptionIdentity, EncryptionIdentityArgs
- User
Assigned stringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- User
Assigned stringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user
Assigned StringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user
Assigned stringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user_
assigned_ stridentity_ resource_ id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user
Assigned StringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
EncryptionIdentityResponse, EncryptionIdentityResponseArgs
- User
Assigned stringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- User
Assigned stringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user
Assigned StringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user
Assigned stringIdentity Resource Id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user_
assigned_ stridentity_ resource_ id - Specifies ARM Resource ID of one of the user identities associated with the VM.
- user
Assigned StringIdentity Resource Id - 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
- Eviction
Policy Delete - DeleteWhen evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
- Eviction
Policy 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
- "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
- IPVersion
IPv4 - IPv4IPv4 version
- IPVersion
IPv6 - 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
- Community
Gallery stringImage Id - 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.
- 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 stringImage Id - 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.
- 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 StringImage Id - 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.
- 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 stringImage Id - 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.
- 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_ strimage_ id - 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.
- 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.
- community
Gallery StringImage Id - 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.
- 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
- Exact
Version 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'.
- Community
Gallery stringImage Id - 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.
- 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 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'.
- Community
Gallery stringImage Id - 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.
- 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 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'.
- community
Gallery StringImage Id - 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.
- 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 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'.
- community
Gallery stringImage Id - 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.
- 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_ strimage_ id - 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.
- 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.
- exact
Version 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'.
- community
Gallery StringImage Id - 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.
- 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
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault Pulumi.Azure Native. Azure Fleet. Inputs. Sub Resource - The relative URL of the Key Vault containing the secret.
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url string - The URL referencing a secret in a Key Vault.
- source
Vault 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.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the secret.
KeyVaultSecretReferenceResponse, KeyVaultSecretReferenceResponseArgs
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault Pulumi.Azure Native. Azure Fleet. Inputs. Sub Resource Response - The relative URL of the Key Vault containing the secret.
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url string - The URL referencing a secret in a Key Vault.
- source
Vault SubResource Response - 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 Response - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the secret.
LinuxConfiguration, LinuxConfigurationArgs
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- Patch
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Linux Patch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent 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.
Azure Native. Azure Fleet. Inputs. Ssh Configuration - Specifies the ssh key configuration for a Linux OS.
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- Patch
Settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent 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
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch
Settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent 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
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password booleanAuthentication - Specifies whether password authentication should be disabled.
- enable
VMAgent booleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch
Settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent 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
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable_
password_ boolauthentication - Specifies whether password authentication should be disabled.
- enable_
vm_ boolagent_ platform_ updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch_
settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision_
vm_ boolagent - 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
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent 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
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- Patch
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Linux Patch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent 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.
Azure Native. Azure Fleet. Inputs. Ssh Configuration Response - Specifies the ssh key configuration for a Linux OS.
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- Patch
Settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent 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
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch
Settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent 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
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password booleanAuthentication - Specifies whether password authentication should be disabled.
- enable
VMAgent booleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch
Settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent 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
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable_
password_ boolauthentication - Specifies whether password authentication should be disabled.
- enable_
vm_ boolagent_ platform_ updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch_
settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision_
vm_ boolagent - 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
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent 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
- 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.
- Linux
Patch Assessment Mode Image Default - ImageDefaultYou control the timing of patch assessments on a virtual machine.
- Linux
Patch Assessment Mode Automatic By Platform - 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.
- 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.
- 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.
- "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.
LinuxPatchSettings, LinuxPatchSettingsArgs
- Assessment
Mode string | Pulumi.Azure Native. Azure Fleet. Linux Patch Assessment Mode - 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 Pulumi.Platform Settings Azure Native. Azure Fleet. Inputs. Linux VMGuest Patch Automatic By Platform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- Patch
Mode string | Pulumi.Azure Native. Azure Fleet. Linux VMGuest Patch Mode - 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 string | LinuxPatch Assessment Mode - 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 LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- Patch
Mode string | LinuxVMGuest Patch Mode - 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 String | LinuxPatch Assessment Mode - 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 LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch
Mode String | LinuxVMGuest Patch Mode - 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 string | LinuxPatch Assessment Mode - 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 LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch
Mode string | LinuxVMGuest Patch Mode - 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 | LinuxPatch Assessment Mode - 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_ Linuxplatform_ settings VMGuest Patch Automatic By Platform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch_
mode str | LinuxVMGuest Patch Mode - 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 String | "ImageDefault" | "Automatic By Platform" - 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 Property MapPlatform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch
Mode String | "ImageDefault" | "Automatic By Platform" - 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
- Assessment
Mode 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.
- Automatic
By Pulumi.Platform Settings Azure Native. Azure Fleet. Inputs. Linux VMGuest Patch Automatic By Platform Settings Response - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- Patch
Mode 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 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.
- Automatic
By LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings Response - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- Patch
Mode 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 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.
- automatic
By LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings Response - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch
Mode 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 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.
- automatic
By LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings Response - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch
Mode 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_ Linuxplatform_ settings VMGuest Patch Automatic By Platform Settings Response - 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
- assessment
Mode 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.
- automatic
By Property MapPlatform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch
Mode 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
- If
Required - IfRequiredIfRequired Reboot setting
- Never
- NeverNever Reboot setting
- Always
- AlwaysAlways Reboot setting
- Linux
VMGuest Patch Automatic By Platform Reboot Setting Unknown - UnknownUnknown Reboot setting
- Linux
VMGuest Patch Automatic By Platform Reboot Setting If Required - IfRequiredIfRequired Reboot setting
- Linux
VMGuest Patch Automatic By Platform Reboot Setting Never - NeverNever Reboot setting
- Linux
VMGuest Patch Automatic By Platform 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
- If
Required - 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
- "If
Required" - IfRequiredIfRequired Reboot setting
- "Never"
- NeverNever Reboot setting
- "Always"
- AlwaysAlways Reboot setting
LinuxVMGuestPatchAutomaticByPlatformSettings, LinuxVMGuestPatchAutomaticByPlatformSettingsArgs
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string | Pulumi.Azure Native. Azure Fleet. Linux VMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string | LinuxVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String | LinuxVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform booleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting string | LinuxVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_
platform_ boolsafety_ checks_ on_ user_ schedule - Enables customer to schedule patching without accidental upgrades
- reboot_
setting str | LinuxVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String | "Unknown" | "IfRequired" | "Never" | "Always" - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
LinuxVMGuestPatchAutomaticByPlatformSettingsResponse, LinuxVMGuestPatchAutomaticByPlatformSettingsResponseArgs
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform booleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting string - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_
platform_ boolsafety_ checks_ on_ user_ schedule - Enables customer to schedule patching without accidental upgrades
- reboot_
setting str - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
LinuxVMGuestPatchMode, LinuxVMGuestPatchModeArgs
- 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.
- Linux
VMGuest Patch Mode Image Default - ImageDefaultThe virtual machine's default patching configuration is used.
- Linux
VMGuest Patch Mode Automatic By Platform - 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.
- 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.
- 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.
- "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.
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Azure Fleet. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - 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" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Azure Fleet. Inputs. User Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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_ Mapping[str, Useridentities Assigned Identity Response] - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<Property Map>Identities - 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
Mode, ModeArgs
- Audit
- AuditAudit Mode
- Enforce
- EnforceEnforce Mode
- Mode
Audit - AuditAudit Mode
- Mode
Enforce - 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.
- Network
Api Version_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
- Accelerated
Connections - AcceleratedConnectionsAcceleratedConnections Mode
- Floating
- FloatingFloating Mode
- Network
Interface Auxiliary Mode None - NoneNone Mode
- Network
Interface Auxiliary Mode Accelerated Connections - AcceleratedConnectionsAcceleratedConnections Mode
- Network
Interface Auxiliary Mode Floating - FloatingFloating Mode
- None
- NoneNone Mode
- Accelerated
Connections - AcceleratedConnectionsAcceleratedConnections Mode
- Floating
- FloatingFloating Mode
- None
- NoneNone Mode
- Accelerated
Connections - AcceleratedConnectionsAcceleratedConnections Mode
- Floating
- FloatingFloating Mode
- NONE
- NoneNone Mode
- ACCELERATED_CONNECTIONS
- AcceleratedConnectionsAcceleratedConnections Mode
- FLOATING
- FloatingFloating Mode
- "None"
- NoneNone Mode
- "Accelerated
Connections" - AcceleratedConnectionsAcceleratedConnections Mode
- "Floating"
- FloatingFloating Mode
NetworkInterfaceAuxiliarySku, NetworkInterfaceAuxiliarySkuArgs
- None
- Noneno sku
- A1
- A1A1 sku
- A2
- A2A2 sku
- A4
- A4A4 sku
- A8
- A8A8 sku
- Network
Interface Auxiliary Sku None - Noneno sku
- Network
Interface Auxiliary Sku A1 - A1A1 sku
- Network
Interface Auxiliary Sku A2 - A2A2 sku
- Network
Interface Auxiliary Sku A4 - A4A4 sku
- Network
Interface Auxiliary 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
- "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.
- Not
Before stringTimeout - 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 stringTimeout - 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.
- not
Before StringTimeout - 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.
- not
Before stringTimeout - 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_ strtimeout - 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.
- not
Before StringTimeout - 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.
- Not
Before stringTimeout - 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 stringTimeout - 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.
- not
Before StringTimeout - 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.
- not
Before stringTimeout - 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_ strtimeout - 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.
- not
Before StringTimeout - 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
- Operating
System Types Windows - WindowsWindows OS type
- Operating
System Types 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
- "Windows"
- WindowsWindows OS type
- "Linux"
- LinuxLinux OS type
PassName, PassNameArgs
- Oobe
System - OobeSystem
- Pass
Name Oobe System - OobeSystem
- Oobe
System - OobeSystem
- Oobe
System - OobeSystem
- OOBE_SYSTEM
- OobeSystem
- "Oobe
System" - OobeSystem
PatchSettings, PatchSettingsArgs
- Assessment
Mode string | Pulumi.Azure Native. Azure Fleet. Windows Patch Assessment Mode - 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 Pulumi.Platform Settings Azure Native. Azure Fleet. Inputs. Windows VMGuest Patch Automatic By Platform Settings - 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 string | Pulumi.Azure Native. Azure Fleet. Windows VMGuest Patch Mode - 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 string | WindowsPatch Assessment Mode - 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 WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings - 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 string | WindowsVMGuest Patch Mode - 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 String | WindowsPatch Assessment Mode - 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 WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable
Hotpatching 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'.
- patch
Mode String | WindowsVMGuest Patch Mode - 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 string | WindowsPatch Assessment Mode - 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 WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable
Hotpatching 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'.
- patch
Mode string | WindowsVMGuest Patch Mode - 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 | WindowsPatch Assessment Mode - 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_ Windowsplatform_ settings VMGuest Patch Automatic By Platform Settings - 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 | WindowsVMGuest Patch Mode - 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 String | "ImageDefault" | "Automatic By Platform" - 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 Property MapPlatform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable
Hotpatching 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'.
- patch
Mode String | "Manual" | "AutomaticBy OS" | "Automatic By Platform" - 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
- Assessment
Mode 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.
- Automatic
By Pulumi.Platform Settings Azure Native. Azure Fleet. Inputs. Windows VMGuest Patch Automatic By Platform Settings Response - 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 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 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.
- Automatic
By WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings Response - 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 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 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.
- automatic
By WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings Response - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable
Hotpatching 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'.
- patch
Mode 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 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.
- automatic
By WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings Response - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable
Hotpatching 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'.
- patch
Mode 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_ Windowsplatform_ settings VMGuest Patch Automatic By Platform Settings Response - 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
- assessment
Mode 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.
- automatic
By Property MapPlatform Settings - Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable
Hotpatching 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'.
- patch
Mode 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
- Promotion
Code 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
- Promotion
Code 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
- promotion
Code 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
- promotion
Code 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
- promotion
Code 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
- Promotion
Code 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
- Promotion
Code 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
- promotion
Code 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
- promotion
Code 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
- promotion
Code 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.
ProtocolTypes, ProtocolTypesArgs
- Http
- HttpHttp protocol
- Https
- HttpsHttps protocol
- Protocol
Types Http - HttpHttp protocol
- Protocol
Types Https - HttpsHttps protocol
- Http
- HttpHttp protocol
- Https
- HttpsHttps protocol
- Http
- HttpHttp protocol
- Https
- HttpsHttps protocol
- HTTP
- HttpHttp protocol
- HTTPS
- HttpsHttps protocol
- "Http"
- HttpHttp protocol
- "Https"
- HttpsHttps protocol
ProxyAgentSettings, ProxyAgentSettingsArgs
- Enabled bool
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- Key
Incarnation intId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- Mode
string | Pulumi.
Azure Native. Azure Fleet. Mode - Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- Enabled bool
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- Key
Incarnation intId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- Mode string | Mode
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled Boolean
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key
Incarnation IntegerId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode String | Mode
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled boolean
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key
Incarnation numberId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode string | Mode
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled bool
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key_
incarnation_ intid - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode str | Mode
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled Boolean
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key
Incarnation NumberId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode String | "Audit" | "Enforce"
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
ProxyAgentSettingsResponse, ProxyAgentSettingsResponseArgs
- Enabled bool
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- Key
Incarnation intId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- Mode string
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- Enabled bool
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- Key
Incarnation intId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- Mode string
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled Boolean
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key
Incarnation IntegerId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode String
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled boolean
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key
Incarnation numberId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode string
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled bool
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key_
incarnation_ intid - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode str
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
- enabled Boolean
- Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.
- key
Incarnation NumberId - Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.
- mode String
- Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.
PublicIPAddressSku, PublicIPAddressSkuArgs
- Name
string | Pulumi.
Azure Native. Azure Fleet. Public IPAddress Sku Name - Specify public IP sku name
- Tier
string | Pulumi.
Azure Native. Azure Fleet. Public IPAddress Sku Tier - Specify public IP sku tier
- Name
string | Public
IPAddress Sku Name - Specify public IP sku name
- Tier
string | Public
IPAddress Sku Tier - Specify public IP sku tier
- name
String | Public
IPAddress Sku Name - Specify public IP sku name
- tier
String | Public
IPAddress Sku Tier - Specify public IP sku tier
- name
string | Public
IPAddress Sku Name - Specify public IP sku name
- tier
string | Public
IPAddress Sku Tier - Specify public IP sku tier
- name
str | Public
IPAddress Sku Name - Specify public IP sku name
- tier
str | Public
IPAddress Sku Tier - Specify public IP sku tier
- name String | "Basic" | "Standard"
- Specify public IP sku name
- tier String | "Regional" | "Global"
- Specify public IP sku tier
PublicIPAddressSkuName, PublicIPAddressSkuNameArgs
- Basic
- BasicBasic sku name
- Standard
- StandardStandard sku name
- Public
IPAddress Sku Name Basic - BasicBasic sku name
- Public
IPAddress Sku Name Standard - StandardStandard sku name
- Basic
- BasicBasic sku name
- Standard
- StandardStandard sku name
- Basic
- BasicBasic sku name
- Standard
- StandardStandard sku name
- BASIC
- BasicBasic sku name
- STANDARD
- StandardStandard sku name
- "Basic"
- BasicBasic sku name
- "Standard"
- StandardStandard sku name
PublicIPAddressSkuResponse, PublicIPAddressSkuResponseArgs
PublicIPAddressSkuTier, PublicIPAddressSkuTierArgs
- Regional
- RegionalRegional sku tier
- Global
- GlobalGlobal sku tier
- Public
IPAddress Sku Tier Regional - RegionalRegional sku tier
- Public
IPAddress Sku Tier Global - GlobalGlobal sku tier
- Regional
- RegionalRegional sku tier
- Global
- GlobalGlobal sku tier
- Regional
- RegionalRegional sku tier
- Global
- GlobalGlobal sku tier
- REGIONAL
- RegionalRegional sku tier
- GLOBAL_
- GlobalGlobal sku tier
- "Regional"
- RegionalRegional sku tier
- "Global"
- GlobalGlobal sku tier
RegularPriorityAllocationStrategy, RegularPriorityAllocationStrategyArgs
- Lowest
Price - LowestPriceDefault. VM sizes distribution will be determined to optimize for price.
- Prioritized
- PrioritizedVM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
- Regular
Priority Allocation Strategy Lowest Price - LowestPriceDefault. VM sizes distribution will be determined to optimize for price.
- Regular
Priority Allocation Strategy Prioritized - PrioritizedVM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
- Lowest
Price - LowestPriceDefault. VM sizes distribution will be determined to optimize for price.
- Prioritized
- PrioritizedVM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
- Lowest
Price - LowestPriceDefault. VM sizes distribution will be determined to optimize for price.
- Prioritized
- PrioritizedVM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
- LOWEST_PRICE
- LowestPriceDefault. VM sizes distribution will be determined to optimize for price.
- PRIORITIZED
- PrioritizedVM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
- "Lowest
Price" - LowestPriceDefault. VM sizes distribution will be determined to optimize for price.
- "Prioritized"
- PrioritizedVM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
RegularPriorityProfile, RegularPriorityProfileArgs
- Allocation
Strategy string | Pulumi.Azure Native. Azure Fleet. Regular Priority Allocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- Allocation
Strategy string | RegularPriority Allocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String | RegularPriority Allocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity Integer
- Total capacity to achieve. It is currently in terms of number of VMs.
- min
Capacity Integer - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy string | RegularPriority Allocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity number
- Total capacity to achieve. It is currently in terms of number of VMs.
- min
Capacity number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation_
strategy str | RegularPriority Allocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- min_
capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String | "LowestPrice" | "Prioritized" - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity Number
- Total capacity to achieve. It is currently in terms of number of VMs.
- min
Capacity Number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
RegularPriorityProfileResponse, RegularPriorityProfileResponseArgs
- Allocation
Strategy string - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- Allocation
Strategy string - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity Integer
- Total capacity to achieve. It is currently in terms of number of VMs.
- min
Capacity Integer - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy string - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity number
- Total capacity to achieve. It is currently in terms of number of VMs.
- min
Capacity number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation_
strategy str - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- min_
capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String - Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
- capacity Number
- Total capacity to achieve. It is currently in terms of number of VMs.
- min
Capacity Number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
ScheduledEventsProfile, ScheduledEventsProfileArgs
- Os
Image Pulumi.Notification Profile Azure Native. Azure Fleet. Inputs. OSImage Notification Profile - Specifies OS Image Scheduled Event related configurations.
- Terminate
Notification Pulumi.Profile Azure Native. Azure Fleet. Inputs. Terminate Notification Profile - Specifies Terminate Scheduled Event related configurations.
- Os
Image OSImageNotification Profile Notification Profile - Specifies OS Image Scheduled Event related configurations.
- Terminate
Notification TerminateProfile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- os
Image OSImageNotification Profile Notification Profile - Specifies OS Image Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- os
Image OSImageNotification Profile Notification Profile - Specifies OS Image Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- os_
image_ OSImagenotification_ profile Notification Profile - Specifies OS Image Scheduled Event related configurations.
- terminate_
notification_ Terminateprofile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- os
Image Property MapNotification Profile - Specifies OS Image Scheduled Event related configurations.
- terminate
Notification Property MapProfile - Specifies Terminate Scheduled Event related configurations.
ScheduledEventsProfileResponse, ScheduledEventsProfileResponseArgs
- Os
Image Pulumi.Notification Profile Azure Native. Azure Fleet. Inputs. OSImage Notification Profile Response - Specifies OS Image Scheduled Event related configurations.
- Terminate
Notification Pulumi.Profile Azure Native. Azure Fleet. Inputs. Terminate Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- Os
Image OSImageNotification Profile Notification Profile Response - Specifies OS Image Scheduled Event related configurations.
- Terminate
Notification TerminateProfile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- os
Image OSImageNotification Profile Notification Profile Response - Specifies OS Image Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- os
Image OSImageNotification Profile Notification Profile Response - Specifies OS Image Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- os_
image_ OSImagenotification_ profile Notification Profile Response - Specifies OS Image Scheduled Event related configurations.
- terminate_
notification_ Terminateprofile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- os
Image Property MapNotification Profile - Specifies OS Image Scheduled Event related configurations.
- terminate
Notification Property MapProfile - Specifies Terminate Scheduled Event related configurations.
SecurityEncryptionTypes, SecurityEncryptionTypesArgs
- VMGuest
State Only - VMGuestStateOnlyEncryptionType of the managed disk is set to VMGuestStateOnly for encryption of just the VMGuestState blob.
- Disk
With VMGuest State - DiskWithVMGuestStateEncryptionType of the managed disk is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob.
- Non
Persisted TPM - NonPersistedTPMEncryptionType of the managed disk is set to NonPersistedTPM for not persisting firmware state in the VMGuestState blob.
- Security
Encryption Types VMGuest State Only - VMGuestStateOnlyEncryptionType of the managed disk is set to VMGuestStateOnly for encryption of just the VMGuestState blob.
- Security
Encryption Types Disk With VMGuest State - DiskWithVMGuestStateEncryptionType of the managed disk is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob.
- Security
Encryption Types Non Persisted TPM - NonPersistedTPMEncryptionType of the managed disk is set to NonPersistedTPM for not persisting firmware state in the VMGuestState blob.
- VMGuest
State Only - VMGuestStateOnlyEncryptionType of the managed disk is set to VMGuestStateOnly for encryption of just the VMGuestState blob.
- Disk
With VMGuest State - DiskWithVMGuestStateEncryptionType of the managed disk is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob.
- Non
Persisted TPM - NonPersistedTPMEncryptionType of the managed disk is set to NonPersistedTPM for not persisting firmware state in the VMGuestState blob.
- VMGuest
State Only - VMGuestStateOnlyEncryptionType of the managed disk is set to VMGuestStateOnly for encryption of just the VMGuestState blob.
- Disk
With VMGuest State - DiskWithVMGuestStateEncryptionType of the managed disk is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob.
- Non
Persisted TPM - NonPersistedTPMEncryptionType of the managed disk is set to NonPersistedTPM for not persisting firmware state in the VMGuestState blob.
- VM_GUEST_STATE_ONLY
- VMGuestStateOnlyEncryptionType of the managed disk is set to VMGuestStateOnly for encryption of just the VMGuestState blob.
- DISK_WITH_VM_GUEST_STATE
- DiskWithVMGuestStateEncryptionType of the managed disk is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob.
- NON_PERSISTED_TPM
- NonPersistedTPMEncryptionType of the managed disk is set to NonPersistedTPM for not persisting firmware state in the VMGuestState blob.
- "VMGuest
State Only" - VMGuestStateOnlyEncryptionType of the managed disk is set to VMGuestStateOnly for encryption of just the VMGuestState blob.
- "Disk
With VMGuest State" - DiskWithVMGuestStateEncryptionType of the managed disk is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob.
- "Non
Persisted TPM" - NonPersistedTPMEncryptionType of the managed disk is set to NonPersistedTPM for not persisting firmware state in the VMGuestState blob.
SecurityPostureReference, SecurityPostureReferenceArgs
- Exclude
Extensions List<string> - List of virtual machine extension names to exclude when applying the security posture.
- Id string
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- Is
Overridable bool - Whether the security posture can be overridden by the user.
- Exclude
Extensions []string - List of virtual machine extension names to exclude when applying the security posture.
- Id string
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- Is
Overridable bool - Whether the security posture can be overridden by the user.
- exclude
Extensions List<String> - List of virtual machine extension names to exclude when applying the security posture.
- id String
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is
Overridable Boolean - Whether the security posture can be overridden by the user.
- exclude
Extensions string[] - List of virtual machine extension names to exclude when applying the security posture.
- id string
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is
Overridable boolean - Whether the security posture can be overridden by the user.
- exclude_
extensions Sequence[str] - List of virtual machine extension names to exclude when applying the security posture.
- id str
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is_
overridable bool - Whether the security posture can be overridden by the user.
- exclude
Extensions List<String> - List of virtual machine extension names to exclude when applying the security posture.
- id String
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is
Overridable Boolean - Whether the security posture can be overridden by the user.
SecurityPostureReferenceResponse, SecurityPostureReferenceResponseArgs
- Exclude
Extensions List<string> - List of virtual machine extension names to exclude when applying the security posture.
- Id string
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- Is
Overridable bool - Whether the security posture can be overridden by the user.
- Exclude
Extensions []string - List of virtual machine extension names to exclude when applying the security posture.
- Id string
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- Is
Overridable bool - Whether the security posture can be overridden by the user.
- exclude
Extensions List<String> - List of virtual machine extension names to exclude when applying the security posture.
- id String
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is
Overridable Boolean - Whether the security posture can be overridden by the user.
- exclude
Extensions string[] - List of virtual machine extension names to exclude when applying the security posture.
- id string
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is
Overridable boolean - Whether the security posture can be overridden by the user.
- exclude_
extensions Sequence[str] - List of virtual machine extension names to exclude when applying the security posture.
- id str
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is_
overridable bool - Whether the security posture can be overridden by the user.
- exclude
Extensions List<String> - List of virtual machine extension names to exclude when applying the security posture.
- id String
- The security posture reference id in the form of /CommunityGalleries/{communityGalleryName}/securityPostures/{securityPostureName}/versions/{major.minor.patch}|{major.*}|latest
- is
Overridable Boolean - Whether the security posture can be overridden by the user.
SecurityProfile, SecurityProfileArgs
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- Encryption
Identity Pulumi.Azure Native. Azure Fleet. Inputs. Encryption Identity - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- Proxy
Agent Pulumi.Settings Azure Native. Azure Fleet. Inputs. Proxy Agent Settings - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- Security
Type string | Pulumi.Azure Native. Azure Fleet. Security Types - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- Uefi
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Uefi Settings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- Encryption
Identity EncryptionIdentity - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- Proxy
Agent ProxySettings Agent Settings - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- Security
Type string | SecurityTypes - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- Uefi
Settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption
Identity EncryptionIdentity - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy
Agent ProxySettings Agent Settings - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security
Type String | SecurityTypes - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi
Settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption
At booleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption
Identity EncryptionIdentity - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy
Agent ProxySettings Agent Settings - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security
Type string | SecurityTypes - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi
Settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption_
at_ boolhost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption_
identity EncryptionIdentity - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy_
agent_ Proxysettings Agent Settings - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security_
type str | SecurityTypes - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi_
settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption
Identity Property Map - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy
Agent Property MapSettings - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security
Type String | "TrustedLaunch" | "Confidential VM" - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi
Settings Property Map - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
SecurityProfileResponse, SecurityProfileResponseArgs
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- Encryption
Identity Pulumi.Azure Native. Azure Fleet. Inputs. Encryption Identity Response - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- Proxy
Agent Pulumi.Settings Azure Native. Azure Fleet. Inputs. Proxy Agent Settings Response - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- Security
Type string - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- Uefi
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Uefi Settings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- Encryption
Identity EncryptionIdentity Response - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- Proxy
Agent ProxySettings Agent Settings Response - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- Security
Type string - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- Uefi
Settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption
Identity EncryptionIdentity Response - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy
Agent ProxySettings Agent Settings Response - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security
Type String - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi
Settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption
At booleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption
Identity EncryptionIdentity Response - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy
Agent ProxySettings Agent Settings Response - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security
Type string - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi
Settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption_
at_ boolhost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption_
identity EncryptionIdentity Response - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy_
agent_ Proxysettings Agent Settings Response - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security_
type str - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi_
settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- encryption
Identity Property Map - Specifies the Managed Identity used by ADE to get access token for keyvault operations.
- proxy
Agent Property MapSettings - Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.
- security
Type String - Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi
Settings Property Map - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
SecurityTypes, SecurityTypesArgs
- Trusted
Launch - TrustedLaunchTrustedLaunch security type
- Confidential
VM - ConfidentialVMConfidentialVM security type
- Security
Types Trusted Launch - TrustedLaunchTrustedLaunch security type
- Security
Types Confidential VM - ConfidentialVMConfidentialVM security type
- Trusted
Launch - TrustedLaunchTrustedLaunch security type
- Confidential
VM - ConfidentialVMConfidentialVM security type
- Trusted
Launch - TrustedLaunchTrustedLaunch security type
- Confidential
VM - ConfidentialVMConfidentialVM security type
- TRUSTED_LAUNCH
- TrustedLaunchTrustedLaunch security type
- CONFIDENTIAL_VM
- ConfidentialVMConfidentialVM security type
- "Trusted
Launch" - TrustedLaunchTrustedLaunch security type
- "Confidential
VM" - ConfidentialVMConfidentialVM security type
ServiceArtifactReference, ServiceArtifactReferenceArgs
- Id string
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- Id string
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id String
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id string
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id str
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id String
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
ServiceArtifactReferenceResponse, ServiceArtifactReferenceResponseArgs
- Id string
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- Id string
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id String
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id string
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id str
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
- id String
- The service artifact reference id in the form of /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/serviceArtifacts/{serviceArtifactName}/vmArtifactsProfiles/{vmArtifactsProfilesName}
SettingNames, SettingNamesArgs
- Auto
Logon - AutoLogonAutoLogon setting
- First
Logon Commands - FirstLogonCommandsFirstLogonCommands setting
- Setting
Names Auto Logon - AutoLogonAutoLogon setting
- Setting
Names First Logon Commands - FirstLogonCommandsFirstLogonCommands setting
- Auto
Logon - AutoLogonAutoLogon setting
- First
Logon Commands - FirstLogonCommandsFirstLogonCommands setting
- Auto
Logon - AutoLogonAutoLogon setting
- First
Logon Commands - FirstLogonCommandsFirstLogonCommands setting
- AUTO_LOGON
- AutoLogonAutoLogon setting
- FIRST_LOGON_COMMANDS
- FirstLogonCommandsFirstLogonCommands setting
- "Auto
Logon" - AutoLogonAutoLogon setting
- "First
Logon Commands" - FirstLogonCommandsFirstLogonCommands setting
SpotAllocationStrategy, SpotAllocationStrategyArgs
- Price
Capacity Optimized - PriceCapacityOptimizedDefault. VM sizes distribution will be determined to optimize for both price and capacity.
- Lowest
Price - LowestPriceVM sizes distribution will be determined to optimize for price. Note: Capacity will still be considered here but will be given much less weight.
- Capacity
Optimized - CapacityOptimizedVM sizes distribution will be determined to optimize for capacity.
- Spot
Allocation Strategy Price Capacity Optimized - PriceCapacityOptimizedDefault. VM sizes distribution will be determined to optimize for both price and capacity.
- Spot
Allocation Strategy Lowest Price - LowestPriceVM sizes distribution will be determined to optimize for price. Note: Capacity will still be considered here but will be given much less weight.
- Spot
Allocation Strategy Capacity Optimized - CapacityOptimizedVM sizes distribution will be determined to optimize for capacity.
- Price
Capacity Optimized - PriceCapacityOptimizedDefault. VM sizes distribution will be determined to optimize for both price and capacity.
- Lowest
Price - LowestPriceVM sizes distribution will be determined to optimize for price. Note: Capacity will still be considered here but will be given much less weight.
- Capacity
Optimized - CapacityOptimizedVM sizes distribution will be determined to optimize for capacity.
- Price
Capacity Optimized - PriceCapacityOptimizedDefault. VM sizes distribution will be determined to optimize for both price and capacity.
- Lowest
Price - LowestPriceVM sizes distribution will be determined to optimize for price. Note: Capacity will still be considered here but will be given much less weight.
- Capacity
Optimized - CapacityOptimizedVM sizes distribution will be determined to optimize for capacity.
- PRICE_CAPACITY_OPTIMIZED
- PriceCapacityOptimizedDefault. VM sizes distribution will be determined to optimize for both price and capacity.
- LOWEST_PRICE
- LowestPriceVM sizes distribution will be determined to optimize for price. Note: Capacity will still be considered here but will be given much less weight.
- CAPACITY_OPTIMIZED
- CapacityOptimizedVM sizes distribution will be determined to optimize for capacity.
- "Price
Capacity Optimized" - PriceCapacityOptimizedDefault. VM sizes distribution will be determined to optimize for both price and capacity.
- "Lowest
Price" - LowestPriceVM sizes distribution will be determined to optimize for price. Note: Capacity will still be considered here but will be given much less weight.
- "Capacity
Optimized" - CapacityOptimizedVM sizes distribution will be determined to optimize for capacity.
SpotPriorityProfile, SpotPriorityProfileArgs
- Allocation
Strategy string | Pulumi.Azure Native. Azure Fleet. Spot Allocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Eviction
Policy string | Pulumi.Azure Native. Azure Fleet. Eviction Policy - Eviction Policy to follow when evicting Spot VMs.
- Maintain bool
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- Max
Price doublePer VM - Price per hour of each Spot VM will never exceed this.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- Allocation
Strategy string | SpotAllocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Eviction
Policy string | EvictionPolicy - Eviction Policy to follow when evicting Spot VMs.
- Maintain bool
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- Max
Price float64Per VM - Price per hour of each Spot VM will never exceed this.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String | SpotAllocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity Integer
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction
Policy String | EvictionPolicy - Eviction Policy to follow when evicting Spot VMs.
- maintain Boolean
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max
Price DoublePer VM - Price per hour of each Spot VM will never exceed this.
- min
Capacity Integer - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy string | SpotAllocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity number
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction
Policy string | EvictionPolicy - Eviction Policy to follow when evicting Spot VMs.
- maintain boolean
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max
Price numberPer VM - Price per hour of each Spot VM will never exceed this.
- min
Capacity number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation_
strategy str | SpotAllocation Strategy - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction_
policy str | EvictionPolicy - Eviction Policy to follow when evicting Spot VMs.
- maintain bool
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max_
price_ floatper_ vm - Price per hour of each Spot VM will never exceed this.
- min_
capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String | "PriceCapacity Optimized" | "Lowest Price" | "Capacity Optimized" - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity Number
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction
Policy String | "Delete" | "Deallocate" - Eviction Policy to follow when evicting Spot VMs.
- maintain Boolean
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max
Price NumberPer VM - Price per hour of each Spot VM will never exceed this.
- min
Capacity Number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
SpotPriorityProfileResponse, SpotPriorityProfileResponseArgs
- Allocation
Strategy string - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Eviction
Policy string - Eviction Policy to follow when evicting Spot VMs.
- Maintain bool
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- Max
Price doublePer VM - Price per hour of each Spot VM will never exceed this.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- Allocation
Strategy string - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- Capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- Eviction
Policy string - Eviction Policy to follow when evicting Spot VMs.
- Maintain bool
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- Max
Price float64Per VM - Price per hour of each Spot VM will never exceed this.
- Min
Capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity Integer
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction
Policy String - Eviction Policy to follow when evicting Spot VMs.
- maintain Boolean
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max
Price DoublePer VM - Price per hour of each Spot VM will never exceed this.
- min
Capacity Integer - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy string - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity number
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction
Policy string - Eviction Policy to follow when evicting Spot VMs.
- maintain boolean
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max
Price numberPer VM - Price per hour of each Spot VM will never exceed this.
- min
Capacity number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation_
strategy str - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity int
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction_
policy str - Eviction Policy to follow when evicting Spot VMs.
- maintain bool
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max_
price_ floatper_ vm - Price per hour of each Spot VM will never exceed this.
- min_
capacity int - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
- allocation
Strategy String - Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
- capacity Number
- Total capacity to achieve. It is currently in terms of number of VMs.
- eviction
Policy String - Eviction Policy to follow when evicting Spot VMs.
- maintain Boolean
- Flag to enable/disable continuous goal seeking for the desired capacity and restoration of evicted Spot VMs. If maintain is enabled, AzureFleetRP will use all VM sizes in vmSizesProfile to create new VMs (if VMs are evicted deleted) or update existing VMs with new VM sizes (if VMs are evicted deallocated or failed to allocate due to capacity constraint) in order to achieve the desired capacity. Maintain is enabled by default.
- max
Price NumberPer VM - Price per hour of each Spot VM will never exceed this.
- min
Capacity Number - Minimum capacity to achieve which cannot be updated. If we will not be able to "guarantee" minimum capacity, we will reject the request in the sync path itself.
SshConfiguration, SshConfigurationArgs
- Public
Keys List<Pulumi.Azure Native. Azure Fleet. Inputs. Ssh Public Key> - The list of SSH public keys used to authenticate with linux based VMs.
- Public
Keys []SshPublic Key - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys List<SshPublic Key> - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys SshPublic Key[] - The list of SSH public keys used to authenticate with linux based VMs.
- public_
keys Sequence[SshPublic Key] - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys List<Property Map> - The list of SSH public keys used to authenticate with linux based VMs.
SshConfigurationResponse, SshConfigurationResponseArgs
- Public
Keys List<Pulumi.Azure Native. Azure Fleet. Inputs. Ssh Public Key Response> - The list of SSH public keys used to authenticate with linux based VMs.
- Public
Keys []SshPublic Key Response - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys List<SshPublic Key Response> - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys SshPublic Key Response[] - The list of SSH public keys used to authenticate with linux based VMs.
- public_
keys Sequence[SshPublic Key Response] - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys List<Property Map> - The list of SSH public keys used to authenticate with linux based VMs.
SshPublicKey, SshPublicKeyArgs
- Key
Data string - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- Key
Data string - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key
Data String - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key
Data string - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key_
data str - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path str
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key
Data String - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
SshPublicKeyResponse, SshPublicKeyResponseArgs
- Key
Data string - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- Key
Data string - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key
Data String - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key
Data string - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key_
data str - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path str
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key
Data String - SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
StorageAccountTypes, StorageAccountTypesArgs
- Standard_LRS
- Standard_LRSStandard_LRS option.
- Premium_LRS
- Premium_LRSPremium_LRS option.
- Standard
SSD_LRS - StandardSSD_LRSStandardSSD_LRS option.
- Ultra
SSD_LRS - UltraSSD_LRSUltraSSD_LRS option.
- Premium_ZRS
- Premium_ZRSPremium_ZRS option.
- Standard
SSD_ZRS - StandardSSD_ZRSStandardSSD_ZRS option.
- Premium
V2_LRS - PremiumV2_LRSPremiumV2_LRS option.
- Storage
Account Types_Standard_LRS - Standard_LRSStandard_LRS option.
- Storage
Account Types_Premium_LRS - Premium_LRSPremium_LRS option.
- Storage
Account Types_Standard SSD_LRS - StandardSSD_LRSStandardSSD_LRS option.
- Storage
Account Types_Ultra SSD_LRS - UltraSSD_LRSUltraSSD_LRS option.
- Storage
Account Types_Premium_ZRS - Premium_ZRSPremium_ZRS option.
- Storage
Account Types_Standard SSD_ZRS - StandardSSD_ZRSStandardSSD_ZRS option.
- Storage
Account Types_Premium V2_LRS - PremiumV2_LRSPremiumV2_LRS option.
- Standard_LRS
- Standard_LRSStandard_LRS option.
- Premium_LRS
- Premium_LRSPremium_LRS option.
- Standard
SSD_LRS - StandardSSD_LRSStandardSSD_LRS option.
- Ultra
SSD_LRS - UltraSSD_LRSUltraSSD_LRS option.
- Premium_ZRS
- Premium_ZRSPremium_ZRS option.
- Standard
SSD_ZRS - StandardSSD_ZRSStandardSSD_ZRS option.
- Premium
V2_LRS - PremiumV2_LRSPremiumV2_LRS option.
- Standard_LRS
- Standard_LRSStandard_LRS option.
- Premium_LRS
- Premium_LRSPremium_LRS option.
- Standard
SSD_LRS - StandardSSD_LRSStandardSSD_LRS option.
- Ultra
SSD_LRS - UltraSSD_LRSUltraSSD_LRS option.
- Premium_ZRS
- Premium_ZRSPremium_ZRS option.
- Standard
SSD_ZRS - StandardSSD_ZRSStandardSSD_ZRS option.
- Premium
V2_LRS - PremiumV2_LRSPremiumV2_LRS option.
- STANDARD_LRS
- Standard_LRSStandard_LRS option.
- PREMIUM_LRS
- Premium_LRSPremium_LRS option.
- STANDARD_SS_D_LRS
- StandardSSD_LRSStandardSSD_LRS option.
- ULTRA_SS_D_LRS
- UltraSSD_LRSUltraSSD_LRS option.
- PREMIUM_ZRS
- Premium_ZRSPremium_ZRS option.
- STANDARD_SS_D_ZRS
- StandardSSD_ZRSStandardSSD_ZRS option.
- PREMIUM_V2_LRS
- PremiumV2_LRSPremiumV2_LRS option.
- "Standard_LRS"
- Standard_LRSStandard_LRS option.
- "Premium_LRS"
- Premium_LRSPremium_LRS option.
- "Standard
SSD_LRS" - StandardSSD_LRSStandardSSD_LRS option.
- "Ultra
SSD_LRS" - UltraSSD_LRSUltraSSD_LRS option.
- "Premium_ZRS"
- Premium_ZRSPremium_ZRS option.
- "Standard
SSD_ZRS" - StandardSSD_ZRSStandardSSD_ZRS option.
- "Premium
V2_LRS" - PremiumV2_LRSPremiumV2_LRS option.
SubResource, SubResourceArgs
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id str
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
SubResourceResponse, SubResourceResponseArgs
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TerminateNotificationProfile, TerminateNotificationProfileArgs
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not_
before_ strtimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
TerminateNotificationProfileResponse, TerminateNotificationProfileResponseArgs
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not_
before_ strtimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
UefiSettings, UefiSettingsArgs
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure
Boot booleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v
Tpm booleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure_
boot_ boolenabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v_
tpm_ boolenabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
UefiSettingsResponse, UefiSettingsResponseArgs
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure
Boot booleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v
Tpm booleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure_
boot_ boolenabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v_
tpm_ boolenabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
VMDiskSecurityProfile, VMDiskSecurityProfileArgs
- Disk
Encryption Pulumi.Set Azure Native. Azure Fleet. Inputs. Disk Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- Security
Encryption string | Pulumi.Type Azure Native. Azure Fleet. Security Encryption Types - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- Disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- Security
Encryption string | SecurityType Encryption Types - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security
Encryption String | SecurityType Encryption Types - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security
Encryption string | SecurityType Encryption Types - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk_
encryption_ Diskset Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security_
encryption_ str | Securitytype Encryption Types - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk
Encryption Property MapSet - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security
Encryption String | "VMGuestType State Only" | "Disk With VMGuest State" | "Non Persisted TPM" - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
VMDiskSecurityProfileResponse, VMDiskSecurityProfileResponseArgs
- Disk
Encryption Pulumi.Set Azure Native. Azure Fleet. Inputs. Disk Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- Security
Encryption stringType - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- Disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- Security
Encryption stringType - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security
Encryption StringType - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security
Encryption stringType - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk_
encryption_ Diskset Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security_
encryption_ strtype - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
- disk
Encryption Property MapSet - Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security
Encryption StringType - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. Note: It can be set for only Confidential VMs.
VMGalleryApplication, VMGalleryApplicationArgs
- Package
Reference stringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- Configuration
Reference string - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- Enable
Automatic boolUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- Treat
Failure boolAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- Package
Reference stringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- Configuration
Reference string - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- Enable
Automatic boolUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- Treat
Failure boolAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package
Reference StringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration
Reference String - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable
Automatic BooleanUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Integer
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treat
Failure BooleanAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package
Reference stringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration
Reference string - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable
Automatic booleanUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order number
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- treat
Failure booleanAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package_
reference_ strid - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration_
reference str - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable_
automatic_ boolupgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order int
- Optional, Specifies the order in which the packages have to be installed
- str
- Optional, Specifies a passthrough value for more generic context.
- treat_
failure_ boolas_ deployment_ failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package
Reference StringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration
Reference String - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable
Automatic BooleanUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Number
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treat
Failure BooleanAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
VMGalleryApplicationResponse, VMGalleryApplicationResponseArgs
- Package
Reference stringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- Configuration
Reference string - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- Enable
Automatic boolUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- Treat
Failure boolAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- Package
Reference stringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- Configuration
Reference string - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- Enable
Automatic boolUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- Treat
Failure boolAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package
Reference StringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration
Reference String - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable
Automatic BooleanUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Integer
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treat
Failure BooleanAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package
Reference stringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration
Reference string - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable
Automatic booleanUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order number
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- treat
Failure booleanAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package_
reference_ strid - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration_
reference str - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable_
automatic_ boolupgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order int
- Optional, Specifies the order in which the packages have to be installed
- str
- Optional, Specifies a passthrough value for more generic context.
- treat_
failure_ boolas_ deployment_ failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package
Reference StringId - Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration
Reference String - Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable
Automatic BooleanUpgrade - If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Number
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treat
Failure BooleanAs Deployment Failure - Optional, If true, any failure for any operation in the VmApplication will fail the deployment
VMSizeProperties, VMSizePropertiesArgs
- VCPUs
Available int - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUs
Per intCore - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- VCPUs
Available int - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUs
Per intCore - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v
CPUs IntegerAvailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v
CPUs IntegerPer Core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v
CPUs numberAvailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v
CPUs numberPer Core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v_
cpus_ intavailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v_
cpus_ intper_ core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v
CPUs NumberAvailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v
CPUs NumberPer Core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
VMSizePropertiesResponse, VMSizePropertiesResponseArgs
- VCPUs
Available int - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUs
Per intCore - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- VCPUs
Available int - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUs
Per intCore - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v
CPUs IntegerAvailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v
CPUs IntegerPer Core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v
CPUs numberAvailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v
CPUs numberPer Core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v_
cpus_ intavailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v_
cpus_ intper_ core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v
CPUs NumberAvailable - Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v
CPUs NumberPer Core - Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
VaultCertificate, VaultCertificateArgs
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate_
store str - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
VaultCertificateResponse, VaultCertificateResponseArgs
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate_
store str - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
VaultSecretGroup, VaultSecretGroupArgs
- Source
Vault Pulumi.Azure Native. Azure Fleet. Inputs. Sub Resource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates List<Pulumi.Azure Native. Azure Fleet. Inputs. Vault Certificate> - The list of key vault references in SourceVault which contain certificates.
- Source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates []VaultCertificate - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<VaultCertificate> - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates VaultCertificate[] - The list of key vault references in SourceVault which contain certificates.
- source_
vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_
certificates Sequence[VaultCertificate] - The list of key vault references in SourceVault which contain certificates.
- source
Vault Property Map - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<Property Map> - The list of key vault references in SourceVault which contain certificates.
VaultSecretGroupResponse, VaultSecretGroupResponseArgs
- Source
Vault Pulumi.Azure Native. Azure Fleet. Inputs. Sub Resource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates List<Pulumi.Azure Native. Azure Fleet. Inputs. Vault Certificate Response> - The list of key vault references in SourceVault which contain certificates.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates []VaultCertificate Response - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<VaultCertificate Response> - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates VaultCertificate Response[] - The list of key vault references in SourceVault which contain certificates.
- source_
vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_
certificates Sequence[VaultCertificate Response] - The list of key vault references in SourceVault which contain certificates.
- source
Vault Property Map - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<Property Map> - The list of key vault references in SourceVault which contain certificates.
VirtualHardDisk, VirtualHardDiskArgs
- Uri string
- Specifies the virtual hard disk's uri.
- Uri string
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
- uri string
- Specifies the virtual hard disk's uri.
- uri str
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
VirtualHardDiskResponse, VirtualHardDiskResponseArgs
- Uri string
- Specifies the virtual hard disk's uri.
- Uri string
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
- uri string
- Specifies the virtual hard disk's uri.
- uri str
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
VirtualMachineScaleSetDataDisk, VirtualMachineScaleSetDataDiskArgs
- Create
Option string | Pulumi.Azure Native. Azure Fleet. Disk Create Option Types - The create option.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching
string | Pulumi.
Azure Native. Azure Fleet. Caching Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string | Pulumi.Azure Native. Azure Fleet. Disk Delete Option Types - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- Disk
IOPSRead doubleWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
MBps doubleRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Managed
Disk Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Managed Disk Parameters - The managed disk parameters.
- Name string
- The disk name.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string | DiskCreate Option Types - The create option.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching
string | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- Disk
IOPSRead float64Write - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
MBps float64Read Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Managed
Disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- Name string
- The disk name.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | DiskCreate Option Types - The create option.
- lun Integer
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
String | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk
IOPSRead DoubleWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
MBps DoubleRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- name String
- The disk name.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string | DiskCreate Option Types - The create option.
- lun number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
string | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option string | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk
IOPSRead numberWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
MBps numberRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- name string
- The disk name.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str | DiskCreate Option Types - The create option.
- lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
str | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete_
option str | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk_
iops_ floatread_ write - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk_
m_ floatbps_ read_ write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed_
disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- name str
- The disk name.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | "FromImage" | "Empty" | "Attach" | "Copy" | "Restore" - The create option.
- lun Number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
String | "None" | "Read
Only" | "Read Write" - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String | "Delete" | "Detach" - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk
IOPSRead NumberWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
MBps NumberRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
VirtualMachineScaleSetDataDiskResponse, VirtualMachineScaleSetDataDiskResponseArgs
- Create
Option string - The create option.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- Disk
IOPSRead doubleWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
MBps doubleRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Managed
Disk Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string - The create option.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- Disk
IOPSRead float64Write - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
MBps float64Read Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Managed
Disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - The create option.
- lun Integer
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk
IOPSRead DoubleWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
MBps DoubleRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- name String
- The disk name.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string - The create option.
- lun number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option string - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk
IOPSRead numberWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
MBps numberRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- name string
- The disk name.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str - The create option.
- lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching str
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete_
option str - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk_
iops_ floatread_ write - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk_
m_ floatbps_ read_ write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed_
disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- name str
- The disk name.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - The create option.
- lun Number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String - Specifies whether data disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the data disk is deleted when the VMSS Flex VM is deleted. Detach If this value is used, the data disk is retained after VMSS Flex VM is deleted. The default value is set to Delete.
- disk
IOPSRead NumberWrite - Specifies the Read-Write IOPS for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
MBps NumberRead Write - Specifies the bandwidth in MB per second for the managed disk. Should be used only when StorageAccountType is UltraSSD_LRS. If not specified, a default value would be assigned based on diskSizeGB.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property diskSizeGB is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
VirtualMachineScaleSetExtension, VirtualMachineScaleSetExtensionArgs
- Name string
- The name of the extension.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Extension Properties - Describes the properties of a Virtual Machine Scale Set Extension.
- Name string
- The name of the extension.
- Properties
Virtual
Machine Scale Set Extension Properties - Describes the properties of a Virtual Machine Scale Set Extension.
- name String
- The name of the extension.
- properties
Virtual
Machine Scale Set Extension Properties - Describes the properties of a Virtual Machine Scale Set Extension.
- name string
- The name of the extension.
- properties
Virtual
Machine Scale Set Extension Properties - Describes the properties of a Virtual Machine Scale Set Extension.
- name str
- The name of the extension.
- properties
Virtual
Machine Scale Set Extension Properties - Describes the properties of a Virtual Machine Scale Set Extension.
- name String
- The name of the extension.
- properties Property Map
- Describes the properties of a Virtual Machine Scale Set Extension.
VirtualMachineScaleSetExtensionProfile, VirtualMachineScaleSetExtensionProfileArgs
- Extensions
List<Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Extension> - The virtual machine scale set child extension resources.
- Extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- Extensions
[]Virtual
Machine Scale Set Extension - The virtual machine scale set child extension resources.
- Extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions
List<Virtual
Machine Scale Set Extension> - The virtual machine scale set child extension resources.
- extensions
Time StringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions
Virtual
Machine Scale Set Extension[] - The virtual machine scale set child extension resources.
- extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions
Sequence[Virtual
Machine Scale Set Extension] - The virtual machine scale set child extension resources.
- extensions_
time_ strbudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions List<Property Map>
- The virtual machine scale set child extension resources.
- extensions
Time StringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
VirtualMachineScaleSetExtensionProfileResponse, VirtualMachineScaleSetExtensionProfileResponseArgs
- Extensions
List<Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Extension Response> - The virtual machine scale set child extension resources.
- Extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- Extensions
[]Virtual
Machine Scale Set Extension Response - The virtual machine scale set child extension resources.
- Extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions
List<Virtual
Machine Scale Set Extension Response> - The virtual machine scale set child extension resources.
- extensions
Time StringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions
Virtual
Machine Scale Set Extension Response[] - The virtual machine scale set child extension resources.
- extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions
Sequence[Virtual
Machine Scale Set Extension Response] - The virtual machine scale set child extension resources.
- extensions_
time_ strbudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- extensions List<Property Map>
- The virtual machine scale set child extension resources.
- extensions
Time StringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
VirtualMachineScaleSetExtensionProperties, VirtualMachineScaleSetExtensionPropertiesArgs
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- Protected
Settings object - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- Protected
Settings Pulumi.From Key Vault Azure Native. Azure Fleet. Inputs. Key Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- Provision
After List<string>Extensions - Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings object
- Json formatted public settings for the extension.
- Suppress
Failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- Protected
Settings interface{} - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- Protected
Settings KeyFrom Key Vault Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- Provision
After []stringExtensions - Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings interface{}
- Json formatted public settings for the extension.
- Suppress
Failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected
Settings Object - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected
Settings KeyFrom Key Vault Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After List<String>Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Object
- Json formatted public settings for the extension.
- suppress
Failures Boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- auto
Upgrade booleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic booleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update stringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected
Settings any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected
Settings KeyFrom Key Vault Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After string[]Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher string
- The name of the extension handler publisher.
- settings any
- Json formatted public settings for the extension.
- suppress
Failures boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- auto_
upgrade_ boolminor_ version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable_
automatic_ boolupgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force_
update_ strtag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected_
settings Any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected_
settings_ Keyfrom_ key_ vault Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- provision_
after_ Sequence[str]extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher str
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppress_
failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected
Settings Any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected
Settings Property MapFrom Key Vault - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After List<String>Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppress
Failures Boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
VirtualMachineScaleSetExtensionPropertiesResponse, VirtualMachineScaleSetExtensionPropertiesResponseArgs
- Provisioning
State string - The provisioning state, which only appears in the response.
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- Protected
Settings Pulumi.From Key Vault Azure Native. Azure Fleet. Inputs. Key Vault Secret Reference Response - The extensions protected settings that are passed by reference, and consumed from key vault
- Provision
After List<string>Extensions - Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings object
- Json formatted public settings for the extension.
- Suppress
Failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Provisioning
State string - The provisioning state, which only appears in the response.
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- Protected
Settings KeyFrom Key Vault Vault Secret Reference Response - The extensions protected settings that are passed by reference, and consumed from key vault
- Provision
After []stringExtensions - Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings interface{}
- Json formatted public settings for the extension.
- Suppress
Failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- provisioning
State String - The provisioning state, which only appears in the response.
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected
Settings KeyFrom Key Vault Vault Secret Reference Response - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After List<String>Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Object
- Json formatted public settings for the extension.
- suppress
Failures Boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- provisioning
State string - The provisioning state, which only appears in the response.
- auto
Upgrade booleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic booleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update stringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected
Settings KeyFrom Key Vault Vault Secret Reference Response - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After string[]Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher string
- The name of the extension handler publisher.
- settings any
- Json formatted public settings for the extension.
- suppress
Failures boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- provisioning_
state str - The provisioning state, which only appears in the response.
- auto_
upgrade_ boolminor_ version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable_
automatic_ boolupgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force_
update_ strtag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected_
settings_ Keyfrom_ key_ vault Vault Secret Reference Response - The extensions protected settings that are passed by reference, and consumed from key vault
- provision_
after_ Sequence[str]extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher str
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppress_
failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- provisioning
State String - The provisioning state, which only appears in the response.
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
- protected
Settings Property MapFrom Key Vault - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After List<String>Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppress
Failures Boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
VirtualMachineScaleSetExtensionResponse, VirtualMachineScaleSetExtensionResponseArgs
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- The name of the extension.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Extension Properties Response - Describes the properties of a Virtual Machine Scale Set Extension.
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- The name of the extension.
- Properties
Virtual
Machine Scale Set Extension Properties Response - Describes the properties of a Virtual Machine Scale Set Extension.
- id String
- Resource Id
- type String
- Resource type
- name String
- The name of the extension.
- properties
Virtual
Machine Scale Set Extension Properties Response - Describes the properties of a Virtual Machine Scale Set Extension.
- id string
- Resource Id
- type string
- Resource type
- name string
- The name of the extension.
- properties
Virtual
Machine Scale Set Extension Properties Response - Describes the properties of a Virtual Machine Scale Set Extension.
- id str
- Resource Id
- type str
- Resource type
- name str
- The name of the extension.
- properties
Virtual
Machine Scale Set Extension Properties Response - Describes the properties of a Virtual Machine Scale Set Extension.
- id String
- Resource Id
- type String
- Resource type
- name String
- The name of the extension.
- properties Property Map
- Describes the properties of a Virtual Machine Scale Set Extension.
VirtualMachineScaleSetHardwareProfile, VirtualMachineScaleSetHardwareProfileArgs
- Vm
Size Pulumi.Properties Azure Native. Azure Fleet. Inputs. VMSize Properties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- Vm
Size VMSizeProperties Properties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm
Size VMSizeProperties Properties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm
Size VMSizeProperties Properties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm_
size_ VMSizeproperties Properties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm
Size Property MapProperties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
VirtualMachineScaleSetHardwareProfileResponse, VirtualMachineScaleSetHardwareProfileResponseArgs
- Vm
Size Pulumi.Properties Azure Native. Azure Fleet. Inputs. VMSize Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- Vm
Size VMSizeProperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm
Size VMSizeProperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm
Size VMSizeProperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm_
size_ VMSizeproperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
- vm
Size Property MapProperties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-11-01. Please follow the instructions in VM Customization for more details.
VirtualMachineScaleSetIPConfiguration, VirtualMachineScaleSetIPConfigurationArgs
- Name string
- The IP configuration name.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set IPConfiguration Properties - Describes a virtual machine scale set network profile's IP configuration properties.
- Name string
- The IP configuration name.
- Properties
Virtual
Machine Scale Set IPConfiguration Properties - Describes a virtual machine scale set network profile's IP configuration properties.
- name String
- The IP configuration name.
- properties
Virtual
Machine Scale Set IPConfiguration Properties - Describes a virtual machine scale set network profile's IP configuration properties.
- name string
- The IP configuration name.
- properties
Virtual
Machine Scale Set IPConfiguration Properties - Describes a virtual machine scale set network profile's IP configuration properties.
- name str
- The IP configuration name.
- properties
Virtual
Machine Scale Set IPConfiguration Properties - Describes a virtual machine scale set network profile's IP configuration properties.
- name String
- The IP configuration name.
- properties Property Map
- Describes a virtual machine scale set network profile's IP configuration properties.
VirtualMachineScaleSetIPConfigurationProperties, VirtualMachineScaleSetIPConfigurationPropertiesArgs
- Application
Gateway List<Pulumi.Backend Address Pools Azure Native. Azure Fleet. Inputs. Sub Resource> - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- Application
Security List<Pulumi.Groups Azure Native. Azure Fleet. Inputs. Sub Resource> - Specifies an array of references to application security group.
- Load
Balancer List<Pulumi.Backend Address Pools Azure Native. Azure Fleet. Inputs. Sub Resource> - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Load
Balancer List<Pulumi.Inbound Nat Pools Azure Native. Azure Fleet. Inputs. Sub Resource> - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress string | Pulumi.Version Azure Native. Azure Fleet. IPVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress Pulumi.Configuration Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Public IPAddress Configuration - The publicIPAddressConfiguration.
- Subnet
Pulumi.
Azure Native. Azure Fleet. Inputs. Api Entity Reference - Specifies the identifier of the subnet.
- Application
Gateway []SubBackend Address Pools Resource - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- Application
Security []SubGroups Resource - Specifies an array of references to application security group.
- Load
Balancer []SubBackend Address Pools Resource - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Load
Balancer []SubInbound Nat Pools Resource - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress string | IPVersionVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress VirtualConfiguration Machine Scale Set Public IPAddress Configuration - The publicIPAddressConfiguration.
- Subnet
Api
Entity Reference - Specifies the identifier of the subnet.
- application
Gateway List<SubBackend Address Pools Resource> - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application
Security List<SubGroups Resource> - Specifies an array of references to application security group.
- load
Balancer List<SubBackend Address Pools Resource> - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load
Balancer List<SubInbound Nat Pools Resource> - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress String | IPVersionVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Scale Set Public IPAddress Configuration - The publicIPAddressConfiguration.
- subnet
Api
Entity Reference - Specifies the identifier of the subnet.
- application
Gateway SubBackend Address Pools Resource[] - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application
Security SubGroups Resource[] - Specifies an array of references to application security group.
- load
Balancer SubBackend Address Pools Resource[] - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load
Balancer SubInbound Nat Pools Resource[] - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress string | IPVersionVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Scale Set Public IPAddress Configuration - The publicIPAddressConfiguration.
- subnet
Api
Entity Reference - Specifies the identifier of the subnet.
- application_
gateway_ Sequence[Subbackend_ address_ pools Resource] - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application_
security_ Sequence[Subgroups Resource] - Specifies an array of references to application security group.
- load_
balancer_ Sequence[Subbackend_ address_ pools Resource] - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load_
balancer_ Sequence[Subinbound_ nat_ pools Resource] - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private_
ip_ str | IPVersionaddress_ version - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ Virtualaddress_ configuration Machine Scale Set Public IPAddress Configuration - The publicIPAddressConfiguration.
- subnet
Api
Entity Reference - Specifies the identifier of the subnet.
- application
Gateway List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application
Security List<Property Map>Groups - Specifies an array of references to application security group.
- load
Balancer List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load
Balancer List<Property Map>Inbound Nat Pools - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress String | "IPv4" | "IPv6"Version - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress Property MapConfiguration - The publicIPAddressConfiguration.
- subnet Property Map
- Specifies the identifier of the subnet.
VirtualMachineScaleSetIPConfigurationPropertiesResponse, VirtualMachineScaleSetIPConfigurationPropertiesResponseArgs
- Application
Gateway List<Pulumi.Backend Address Pools Azure Native. Azure Fleet. Inputs. Sub Resource Response> - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- Application
Security List<Pulumi.Groups Azure Native. Azure Fleet. Inputs. Sub Resource Response> - Specifies an array of references to application security group.
- Load
Balancer List<Pulumi.Backend Address Pools Azure Native. Azure Fleet. Inputs. Sub Resource Response> - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Load
Balancer List<Pulumi.Inbound Nat Pools Azure Native. Azure Fleet. Inputs. Sub Resource Response> - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress stringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress Pulumi.Configuration Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- Subnet
Pulumi.
Azure Native. Azure Fleet. Inputs. Api Entity Reference Response - Specifies the identifier of the subnet.
- Application
Gateway []SubBackend Address Pools Resource Response - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- Application
Security []SubGroups Resource Response - Specifies an array of references to application security group.
- Load
Balancer []SubBackend Address Pools Resource Response - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Load
Balancer []SubInbound Nat Pools Resource Response - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress stringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress VirtualConfiguration Machine Scale Set Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- Subnet
Api
Entity Reference Response - Specifies the identifier of the subnet.
- application
Gateway List<SubBackend Address Pools Resource Response> - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application
Security List<SubGroups Resource Response> - Specifies an array of references to application security group.
- load
Balancer List<SubBackend Address Pools Resource Response> - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load
Balancer List<SubInbound Nat Pools Resource Response> - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress StringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Scale Set Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- subnet
Api
Entity Reference Response - Specifies the identifier of the subnet.
- application
Gateway SubBackend Address Pools Resource Response[] - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application
Security SubGroups Resource Response[] - Specifies an array of references to application security group.
- load
Balancer SubBackend Address Pools Resource Response[] - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load
Balancer SubInbound Nat Pools Resource Response[] - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress stringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Scale Set Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- subnet
Api
Entity Reference Response - Specifies the identifier of the subnet.
- application_
gateway_ Sequence[Subbackend_ address_ pools Resource Response] - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application_
security_ Sequence[Subgroups Resource Response] - Specifies an array of references to application security group.
- load_
balancer_ Sequence[Subbackend_ address_ pools Resource Response] - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load_
balancer_ Sequence[Subinbound_ nat_ pools Resource Response] - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private_
ip_ straddress_ version - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ Virtualaddress_ configuration Machine Scale Set Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- subnet
Api
Entity Reference Response - Specifies the identifier of the subnet.
- application
Gateway List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of application gateways. A scale set can reference backend address pools of multiple application gateways. Multiple scale sets cannot use the same application gateway.
- application
Security List<Property Map>Groups - Specifies an array of references to application security group.
- load
Balancer List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of load balancers. A scale set can reference backend address pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- load
Balancer List<Property Map>Inbound Nat Pools - Specifies an array of references to inbound Nat pools of the load balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple scale sets cannot use the same basic sku load balancer.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress StringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress Property MapConfiguration - The publicIPAddressConfiguration.
- subnet Property Map
- Specifies the identifier of the subnet.
VirtualMachineScaleSetIPConfigurationResponse, VirtualMachineScaleSetIPConfigurationResponseArgs
- Name string
- The IP configuration name.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set IPConfiguration Properties Response - Describes a virtual machine scale set network profile's IP configuration properties.
- Name string
- The IP configuration name.
- Properties
Virtual
Machine Scale Set IPConfiguration Properties Response - Describes a virtual machine scale set network profile's IP configuration properties.
- name String
- The IP configuration name.
- properties
Virtual
Machine Scale Set IPConfiguration Properties Response - Describes a virtual machine scale set network profile's IP configuration properties.
- name string
- The IP configuration name.
- properties
Virtual
Machine Scale Set IPConfiguration Properties Response - Describes a virtual machine scale set network profile's IP configuration properties.
- name str
- The IP configuration name.
- properties
Virtual
Machine Scale Set IPConfiguration Properties Response - Describes a virtual machine scale set network profile's IP configuration properties.
- name String
- The IP configuration name.
- properties Property Map
- Describes a virtual machine scale set network profile's IP configuration properties.
VirtualMachineScaleSetIpTag, VirtualMachineScaleSetIpTagArgs
- ip_
tag_ strtype - IP tag type. Example: FirstPartyUsage.
- tag str
- IP tag associated with the public IP. Example: SQL, Storage etc.
VirtualMachineScaleSetIpTagResponse, VirtualMachineScaleSetIpTagResponseArgs
- ip_
tag_ strtype - IP tag type. Example: FirstPartyUsage.
- tag str
- IP tag associated with the public IP. Example: SQL, Storage etc.
VirtualMachineScaleSetManagedDiskParameters, VirtualMachineScaleSetManagedDiskParametersArgs
- Disk
Encryption Pulumi.Set Azure Native. Azure Fleet. Inputs. Disk Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- Security
Profile Pulumi.Azure Native. Azure Fleet. Inputs. VMDisk Security Profile - Specifies the security profile for the managed disk.
- Storage
Account string | Pulumi.Type Azure Native. Azure Fleet. Storage Account Types - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- Disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- Security
Profile VMDiskSecurity Profile - Specifies the security profile for the managed disk.
- Storage
Account string | StorageType Account Types - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- security
Profile VMDiskSecurity Profile - Specifies the security profile for the managed disk.
- storage
Account String | StorageType Account Types - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- security
Profile VMDiskSecurity Profile - Specifies the security profile for the managed disk.
- storage
Account string | StorageType Account Types - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk_
encryption_ Diskset Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- security_
profile VMDiskSecurity Profile - Specifies the security profile for the managed disk.
- storage_
account_ str | Storagetype Account Types - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption Property MapSet - Specifies the customer managed disk encryption set resource id for the managed disk.
- security
Profile Property Map - Specifies the security profile for the managed disk.
- storage
Account String | "Standard_LRS" | "Premium_LRS" | "StandardType SSD_LRS" | "Ultra SSD_LRS" | "Premium_ZRS" | "Standard SSD_ZRS" | "Premium V2_LRS" - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
VirtualMachineScaleSetManagedDiskParametersResponse, VirtualMachineScaleSetManagedDiskParametersResponseArgs
- Disk
Encryption Pulumi.Set Azure Native. Azure Fleet. Inputs. Disk Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- Security
Profile Pulumi.Azure Native. Azure Fleet. Inputs. VMDisk Security Profile Response - Specifies the security profile for the managed disk.
- Storage
Account stringType - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- Disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- Security
Profile VMDiskSecurity Profile Response - Specifies the security profile for the managed disk.
- Storage
Account stringType - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- security
Profile VMDiskSecurity Profile Response - Specifies the security profile for the managed disk.
- storage
Account StringType - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- security
Profile VMDiskSecurity Profile Response - Specifies the security profile for the managed disk.
- storage
Account stringType - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk_
encryption_ Diskset Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- security_
profile VMDiskSecurity Profile Response - Specifies the security profile for the managed disk.
- storage_
account_ strtype - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption Property MapSet - Specifies the customer managed disk encryption set resource id for the managed disk.
- security
Profile Property Map - Specifies the security profile for the managed disk.
- storage
Account StringType - Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
VirtualMachineScaleSetNetworkConfiguration, VirtualMachineScaleSetNetworkConfigurationArgs
- Name string
- The network configuration name.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Configuration Properties - Describes a virtual machine scale set network profile's IP configuration.
- Name string
- The network configuration name.
- Properties
Virtual
Machine Scale Set Network Configuration Properties - Describes a virtual machine scale set network profile's IP configuration.
- name String
- The network configuration name.
- properties
Virtual
Machine Scale Set Network Configuration Properties - Describes a virtual machine scale set network profile's IP configuration.
- name string
- The network configuration name.
- properties
Virtual
Machine Scale Set Network Configuration Properties - Describes a virtual machine scale set network profile's IP configuration.
- name str
- The network configuration name.
- properties
Virtual
Machine Scale Set Network Configuration Properties - Describes a virtual machine scale set network profile's IP configuration.
- name String
- The network configuration name.
- properties Property Map
- Describes a virtual machine scale set network profile's IP configuration.
VirtualMachineScaleSetNetworkConfigurationDnsSettings, VirtualMachineScaleSetNetworkConfigurationDnsSettingsArgs
- Dns
Servers List<string> - List of DNS servers IP addresses
- Dns
Servers []string - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
- dns
Servers string[] - List of DNS servers IP addresses
- dns_
servers Sequence[str] - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
VirtualMachineScaleSetNetworkConfigurationDnsSettingsResponse, VirtualMachineScaleSetNetworkConfigurationDnsSettingsResponseArgs
- Dns
Servers List<string> - List of DNS servers IP addresses
- Dns
Servers []string - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
- dns
Servers string[] - List of DNS servers IP addresses
- dns_
servers Sequence[str] - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
VirtualMachineScaleSetNetworkConfigurationProperties, VirtualMachineScaleSetNetworkConfigurationPropertiesArgs
- Ip
Configurations List<Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set IPConfiguration> - Specifies the IP configurations of the network interface.
- Auxiliary
Mode string | Pulumi.Azure Native. Azure Fleet. Network Interface Auxiliary Mode - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- Auxiliary
Sku string | Pulumi.Azure Native. Azure Fleet. Network Interface Auxiliary Sku - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- Delete
Option string | Pulumi.Azure Native. Azure Fleet. Delete Options - Specify what happens to the network interface when the VM is deleted
- Disable
Tcp boolState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- Dns
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Configuration Dns Settings - The dns settings to be applied on the network interfaces.
- Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security Pulumi.Group Azure Native. Azure Fleet. Inputs. Sub Resource - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Ip
Configurations []VirtualMachine Scale Set IPConfiguration - Specifies the IP configurations of the network interface.
- Auxiliary
Mode string | NetworkInterface Auxiliary Mode - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- Auxiliary
Sku string | NetworkInterface Auxiliary Sku - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- Delete
Option string | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- Disable
Tcp boolState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- Dns
Settings VirtualMachine Scale Set Network Configuration Dns Settings - The dns settings to be applied on the network interfaces.
- Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security SubGroup Resource - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<VirtualMachine Scale Set IPConfiguration> - Specifies the IP configurations of the network interface.
- auxiliary
Mode String | NetworkInterface Auxiliary Mode - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary
Sku String | NetworkInterface Auxiliary Sku - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete
Option String | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- disable
Tcp BooleanState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns
Settings VirtualMachine Scale Set Network Configuration Dns Settings - The dns settings to be applied on the network interfaces.
- enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations VirtualMachine Scale Set IPConfiguration[] - Specifies the IP configurations of the network interface.
- auxiliary
Mode string | NetworkInterface Auxiliary Mode - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary
Sku string | NetworkInterface Auxiliary Sku - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete
Option string | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- disable
Tcp booleanState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns
Settings VirtualMachine Scale Set Network Configuration Dns Settings - The dns settings to be applied on the network interfaces.
- enable
Accelerated booleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource - The network security group.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip_
configurations Sequence[VirtualMachine Scale Set IPConfiguration] - Specifies the IP configurations of the network interface.
- auxiliary_
mode str | NetworkInterface Auxiliary Mode - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary_
sku str | NetworkInterface Auxiliary Sku - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete_
option str | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- disable_
tcp_ boolstate_ tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns_
settings VirtualMachine Scale Set Network Configuration Dns Settings - The dns settings to be applied on the network interfaces.
- enable_
accelerated_ boolnetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable_
fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- enable_
ip_ boolforwarding - Whether IP forwarding enabled on this NIC.
- network_
security_ Subgroup Resource - The network security group.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<Property Map> - Specifies the IP configurations of the network interface.
- auxiliary
Mode String | "None" | "AcceleratedConnections" | "Floating" - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary
Sku String | "None" | "A1" | "A2" | "A4" | "A8" - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete
Option String | "Delete" | "Detach" - Specify what happens to the network interface when the VM is deleted
- disable
Tcp BooleanState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns
Settings Property Map - The dns settings to be applied on the network interfaces.
- enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security Property MapGroup - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
VirtualMachineScaleSetNetworkConfigurationPropertiesResponse, VirtualMachineScaleSetNetworkConfigurationPropertiesResponseArgs
- Ip
Configurations List<Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set IPConfiguration Response> - Specifies the IP configurations of the network interface.
- Auxiliary
Mode string - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- Auxiliary
Sku string - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- Delete
Option string - Specify what happens to the network interface when the VM is deleted
- Disable
Tcp boolState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- Dns
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Configuration Dns Settings Response - The dns settings to be applied on the network interfaces.
- Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security Pulumi.Group Azure Native. Azure Fleet. Inputs. Sub Resource Response - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Ip
Configurations []VirtualMachine Scale Set IPConfiguration Response - Specifies the IP configurations of the network interface.
- Auxiliary
Mode string - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- Auxiliary
Sku string - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- Delete
Option string - Specify what happens to the network interface when the VM is deleted
- Disable
Tcp boolState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- Dns
Settings VirtualMachine Scale Set Network Configuration Dns Settings Response - The dns settings to be applied on the network interfaces.
- Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security SubGroup Resource Response - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<VirtualMachine Scale Set IPConfiguration Response> - Specifies the IP configurations of the network interface.
- auxiliary
Mode String - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary
Sku String - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete
Option String - Specify what happens to the network interface when the VM is deleted
- disable
Tcp BooleanState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns
Settings VirtualMachine Scale Set Network Configuration Dns Settings Response - The dns settings to be applied on the network interfaces.
- enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource Response - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations VirtualMachine Scale Set IPConfiguration Response[] - Specifies the IP configurations of the network interface.
- auxiliary
Mode string - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary
Sku string - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete
Option string - Specify what happens to the network interface when the VM is deleted
- disable
Tcp booleanState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns
Settings VirtualMachine Scale Set Network Configuration Dns Settings Response - The dns settings to be applied on the network interfaces.
- enable
Accelerated booleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource Response - The network security group.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip_
configurations Sequence[VirtualMachine Scale Set IPConfiguration Response] - Specifies the IP configurations of the network interface.
- auxiliary_
mode str - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary_
sku str - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete_
option str - Specify what happens to the network interface when the VM is deleted
- disable_
tcp_ boolstate_ tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns_
settings VirtualMachine Scale Set Network Configuration Dns Settings Response - The dns settings to be applied on the network interfaces.
- enable_
accelerated_ boolnetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable_
fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- enable_
ip_ boolforwarding - Whether IP forwarding enabled on this NIC.
- network_
security_ Subgroup Resource Response - The network security group.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<Property Map> - Specifies the IP configurations of the network interface.
- auxiliary
Mode String - Specifies whether the Auxiliary mode is enabled for the Network Interface resource.
- auxiliary
Sku String - Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
- delete
Option String - Specify what happens to the network interface when the VM is deleted
- disable
Tcp BooleanState Tracking - Specifies whether the network interface is disabled for tcp state tracking.
- dns
Settings Property Map - The dns settings to be applied on the network interfaces.
- enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security Property MapGroup - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
VirtualMachineScaleSetNetworkConfigurationResponse, VirtualMachineScaleSetNetworkConfigurationResponseArgs
- Name string
- The network configuration name.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Configuration Properties Response - Describes a virtual machine scale set network profile's IP configuration.
- Name string
- The network configuration name.
- Properties
Virtual
Machine Scale Set Network Configuration Properties Response - Describes a virtual machine scale set network profile's IP configuration.
- name String
- The network configuration name.
- properties
Virtual
Machine Scale Set Network Configuration Properties Response - Describes a virtual machine scale set network profile's IP configuration.
- name string
- The network configuration name.
- properties
Virtual
Machine Scale Set Network Configuration Properties Response - Describes a virtual machine scale set network profile's IP configuration.
- name str
- The network configuration name.
- properties
Virtual
Machine Scale Set Network Configuration Properties Response - Describes a virtual machine scale set network profile's IP configuration.
- name String
- The network configuration name.
- properties Property Map
- Describes a virtual machine scale set network profile's IP configuration.
VirtualMachineScaleSetNetworkProfile, VirtualMachineScaleSetNetworkProfileArgs
- Health
Probe Pulumi.Azure Native. Azure Fleet. Inputs. Api Entity Reference - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- Network
Api string | Pulumi.Version Azure Native. Azure Fleet. Network Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- Network
Interface List<Pulumi.Configurations Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Configuration> - The list of network configurations.
- Health
Probe ApiEntity Reference - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- Network
Api string | NetworkVersion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- Network
Interface []VirtualConfigurations Machine Scale Set Network Configuration - The list of network configurations.
- health
Probe ApiEntity Reference - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network
Api String | NetworkVersion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network
Interface List<VirtualConfigurations Machine Scale Set Network Configuration> - The list of network configurations.
- health
Probe ApiEntity Reference - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network
Api string | NetworkVersion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network
Interface VirtualConfigurations Machine Scale Set Network Configuration[] - The list of network configurations.
- health_
probe ApiEntity Reference - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network_
api_ str | Networkversion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network_
interface_ Sequence[Virtualconfigurations Machine Scale Set Network Configuration] - The list of network configurations.
- health
Probe Property Map - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network
Api String | "2020-11-01"Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network
Interface List<Property Map>Configurations - The list of network configurations.
VirtualMachineScaleSetNetworkProfileResponse, VirtualMachineScaleSetNetworkProfileResponseArgs
- Health
Probe Pulumi.Azure Native. Azure Fleet. Inputs. Api Entity Reference Response - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- Network
Api stringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- Network
Interface List<Pulumi.Configurations Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Network Configuration Response> - The list of network configurations.
- Health
Probe ApiEntity Reference Response - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- Network
Api stringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- Network
Interface []VirtualConfigurations Machine Scale Set Network Configuration Response - The list of network configurations.
- health
Probe ApiEntity Reference Response - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network
Api StringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network
Interface List<VirtualConfigurations Machine Scale Set Network Configuration Response> - The list of network configurations.
- health
Probe ApiEntity Reference Response - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network
Api stringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network
Interface VirtualConfigurations Machine Scale Set Network Configuration Response[] - The list of network configurations.
- health_
probe ApiEntity Reference Response - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network_
api_ strversion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network_
interface_ Sequence[Virtualconfigurations Machine Scale Set Network Configuration Response] - The list of network configurations.
- health
Probe Property Map - A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.
- network
Api StringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'
- network
Interface List<Property Map>Configurations - The list of network configurations.
VirtualMachineScaleSetOSDisk, VirtualMachineScaleSetOSDiskArgs
- Create
Option string | Pulumi.Azure Native. Azure Fleet. Disk Create Option Types - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- Caching
string | Pulumi.
Azure Native. Azure Fleet. Caching Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string | Pulumi.Azure Native. Azure Fleet. Disk Delete Option Types - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- Diff
Disk Pulumi.Settings Azure Native. Azure Fleet. Inputs. Diff Disk Settings - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Hard Disk - Specifies information about the unmanaged user image to base the scale set on.
- Managed
Disk Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Managed Disk Parameters - The managed disk parameters.
- Name string
- The disk name.
- Os
Type string | Pulumi.Azure Native. Azure Fleet. Operating System Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
Containers List<string> - Specifies the container urls that are used to store operating system disks for the scale set.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string | DiskCreate Option Types - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- Caching
string | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- Diff
Disk DiffSettings Disk Settings - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
Virtual
Hard Disk - Specifies information about the unmanaged user image to base the scale set on.
- Managed
Disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- Name string
- The disk name.
- Os
Type string | OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
Containers []string - Specifies the container urls that are used to store operating system disks for the scale set.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | DiskCreate Option Types - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching
String | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
Virtual
Hard Disk - Specifies information about the unmanaged user image to base the scale set on.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- name String
- The disk name.
- os
Type String | OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
Containers List<String> - Specifies the container urls that are used to store operating system disks for the scale set.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string | DiskCreate Option Types - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching
string | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option string | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
Virtual
Hard Disk - Specifies information about the unmanaged user image to base the scale set on.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- name string
- The disk name.
- os
Type string | OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
Containers string[] - Specifies the container urls that are used to store operating system disks for the scale set.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str | DiskCreate Option Types - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching
str | Caching
Types - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete_
option str | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff_
disk_ Diffsettings Disk Settings - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
Virtual
Hard Disk - Specifies information about the unmanaged user image to base the scale set on.
- managed_
disk VirtualMachine Scale Set Managed Disk Parameters - The managed disk parameters.
- name str
- The disk name.
- os_
type str | OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd_
containers Sequence[str] - Specifies the container urls that are used to store operating system disks for the scale set.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | "FromImage" | "Empty" | "Attach" | "Copy" | "Restore" - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching
String | "None" | "Read
Only" | "Read Write" - Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String | "Delete" | "Detach" - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff
Disk Property MapSettings - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image Property Map
- Specifies information about the unmanaged user image to base the scale set on.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- os
Type String | "Windows" | "Linux" - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
Containers List<String> - Specifies the container urls that are used to store operating system disks for the scale set.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
VirtualMachineScaleSetOSDiskResponse, VirtualMachineScaleSetOSDiskResponseArgs
- Create
Option string - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- Diff
Disk Pulumi.Settings Azure Native. Azure Fleet. Inputs. Diff Disk Settings Response - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Hard Disk Response - Specifies information about the unmanaged user image to base the scale set on.
- Managed
Disk Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- Os
Type string - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
Containers List<string> - Specifies the container urls that are used to store operating system disks for the scale set.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- Diff
Disk DiffSettings Disk Settings Response - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
Virtual
Hard Disk Response - Specifies information about the unmanaged user image to base the scale set on.
- Managed
Disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- Os
Type string - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
Containers []string - Specifies the container urls that are used to store operating system disks for the scale set.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings Response - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
Virtual
Hard Disk Response - Specifies information about the unmanaged user image to base the scale set on.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- name String
- The disk name.
- os
Type String - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
Containers List<String> - Specifies the container urls that are used to store operating system disks for the scale set.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option string - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings Response - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
Virtual
Hard Disk Response - Specifies information about the unmanaged user image to base the scale set on.
- managed
Disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- name string
- The disk name.
- os
Type string - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
Containers string[] - Specifies the container urls that are used to store operating system disks for the scale set.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching str
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete_
option str - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff_
disk_ Diffsettings Disk Settings Response - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
Virtual
Hard Disk Response - Specifies information about the unmanaged user image to base the scale set on.
- managed_
disk VirtualMachine Scale Set Managed Disk Parameters Response - The managed disk parameters.
- name str
- The disk name.
- os_
type str - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd_
containers Sequence[str] - Specifies the container urls that are used to store operating system disks for the scale set.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - Specifies how the virtual machines in the scale set should be created. The only allowed value is: FromImage. This 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.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The default values are: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String - Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion (This feature is available for VMSS with Flexible OrchestrationMode only). Possible values: Delete If this value is used, the OS disk is deleted when VMSS Flex VM is deleted. Detach If this value is used, the OS disk is retained after VMSS Flex VM is deleted. The default value is set to Delete. For an Ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for Ephemeral OS Disk.
- diff
Disk Property MapSettings - Specifies the ephemeral disk Settings for the operating system disk used by the virtual machine scale set.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image Property Map
- Specifies information about the unmanaged user image to base the scale set on.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- os
Type String - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
Containers List<String> - Specifies the container urls that are used to store operating system disks for the scale set.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
VirtualMachineScaleSetOSProfile, VirtualMachineScaleSetOSProfileArgs
- Admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- Admin
Username string - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- Computer
Name stringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- Custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. For using cloud-init for your VM, see Using cloud-init to customize a Linux VM during creation
- Linux
Configuration Pulumi.Azure Native. Azure Fleet. Inputs. Linux Configuration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Optional property which must either be set to True or omitted.
- Secrets
List<Pulumi.
Azure Native. Azure Fleet. Inputs. Vault Secret Group> - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration Pulumi.Azure Native. Azure Fleet. Inputs. Windows Configuration - Specifies Windows operating system settings on the virtual machine.
- Admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- Admin
Username string - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- Computer
Name stringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- Custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. For using cloud-init for your VM, see Using cloud-init to customize a Linux VM during creation
- Linux
Configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Optional property which must either be set to True or omitted.
- Secrets
[]Vault
Secret Group - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin
Password String - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username String - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer
Name StringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- custom
Data String - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. For using cloud-init for your VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Optional property which must either be set to True or omitted.
- secrets
List<Vault
Secret Group> - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username string - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow
Extension booleanOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer
Name stringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. For using cloud-init for your VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest booleanProvision Signal - Optional property which must either be set to True or omitted.
- secrets
Vault
Secret Group[] - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin_
password str - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin_
username str - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow_
extension_ booloperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer_
name_ strprefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- custom_
data str - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. For using cloud-init for your VM, see Using cloud-init to customize a Linux VM during creation
- linux_
configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require_
guest_ boolprovision_ signal - Optional property which must either be set to True or omitted.
- secrets
Sequence[Vault
Secret Group] - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows_
configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin
Password String - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username String - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer
Name StringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- custom
Data String - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. For using cloud-init for your VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration Property Map - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Optional property which must either be set to True or omitted.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration Property Map - Specifies Windows operating system settings on the virtual machine.
VirtualMachineScaleSetOSProfileResponse, VirtualMachineScaleSetOSProfileResponseArgs
- Admin
Username string - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- Computer
Name stringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- Linux
Configuration Pulumi.Azure Native. Azure Fleet. Inputs. Linux Configuration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Optional property which must either be set to True or omitted.
- Secrets
List<Pulumi.
Azure Native. Azure Fleet. Inputs. Vault Secret Group Response> - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration Pulumi.Azure Native. Azure Fleet. Inputs. Windows Configuration Response - Specifies Windows operating system settings on the virtual machine.
- Admin
Username string - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- Computer
Name stringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- Linux
Configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Optional property which must either be set to True or omitted.
- Secrets
[]Vault
Secret Group Response - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin
Username String - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer
Name StringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- linux
Configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Optional property which must either be set to True or omitted.
- secrets
List<Vault
Secret Group Response> - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin
Username string - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow
Extension booleanOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer
Name stringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- linux
Configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest booleanProvision Signal - Optional property which must either be set to True or omitted.
- secrets
Vault
Secret Group Response[] - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin_
username str - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow_
extension_ booloperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer_
name_ strprefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- linux_
configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require_
guest_ boolprovision_ signal - Optional property which must either be set to True or omitted.
- secrets
Sequence[Vault
Secret Group Response] - Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows_
configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin
Username String - Specifies the name of the administrator account. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine scale set. This may only be set to False when no extensions are present on the virtual machine scale set.
- computer
Name StringPrefix - Specifies the computer name prefix for all of the virtual machines in the scale set. Computer name prefixes must be 1 to 15 characters long.
- linux
Configuration Property Map - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Optional property which must either be set to True or omitted.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the virtual machines in the scale set. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration Property Map - Specifies Windows operating system settings on the virtual machine.
VirtualMachineScaleSetPublicIPAddressConfiguration, VirtualMachineScaleSetPublicIPAddressConfigurationArgs
- Name string
- The publicIP address configuration name.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Public IPAddress Configuration Properties - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- Sku
Pulumi.
Azure Native. Azure Fleet. Inputs. Public IPAddress Sku - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- Name string
- The publicIP address configuration name.
- Properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- Sku
Public
IPAddress Sku - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku
Public
IPAddress Sku - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name string
- The publicIP address configuration name.
- properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku
Public
IPAddress Sku - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name str
- The publicIP address configuration name.
- properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku
Public
IPAddress Sku - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- properties Property Map
- Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku Property Map
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsArgs
- Domain
Name stringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- Domain
Name string | Pulumi.Label Scope Azure Native. Azure Fleet. Domain Name Label Scope Types - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- Domain
Name stringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- Domain
Name string | DomainLabel Scope Name Label Scope Types - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name StringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name String | DomainLabel Scope Name Label Scope Types - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name stringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name string | DomainLabel Scope Name Label Scope Types - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain_
name_ strlabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain_
name_ str | Domainlabel_ scope Name Label Scope Types - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name StringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name String | "TenantLabel Scope Reuse" | "Subscription Reuse" | "Resource Group Reuse" | "No Reuse" - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponse, VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettingsResponseArgs
- Domain
Name stringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- Domain
Name stringLabel Scope - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- Domain
Name stringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- Domain
Name stringLabel Scope - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name StringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name StringLabel Scope - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name stringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name stringLabel Scope - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain_
name_ strlabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain_
name_ strlabel_ scope - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name StringLabel - The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created
- domain
Name StringLabel Scope - The Domain name label scope.The concatenation of the hashed domain name label that generated according to the policy from domain name label scope and vm index will be the domain name labels of the PublicIPAddress resources that will be created
VirtualMachineScaleSetPublicIPAddressConfigurationProperties, VirtualMachineScaleSetPublicIPAddressConfigurationPropertiesArgs
- Delete
Option string | Pulumi.Azure Native. Azure Fleet. Delete Options - Specify what happens to the public IP when the VM is deleted
- Dns
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Public IPAddress Configuration Dns Settings - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- List<Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Ip Tag> - The list of IP tags associated with the public IP address.
- Public
IPAddress string | Pulumi.Version Azure Native. Azure Fleet. IPVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPPrefix Pulumi.Azure Native. Azure Fleet. Inputs. Sub Resource - The PublicIPPrefix from which to allocate publicIP addresses.
- Delete
Option string | DeleteOptions - Specify what happens to the public IP when the VM is deleted
- Dns
Settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- []Virtual
Machine Scale Set Ip Tag - The list of IP tags associated with the public IP address.
- Public
IPAddress string | IPVersionVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPPrefix SubResource - The PublicIPPrefix from which to allocate publicIP addresses.
- delete
Option String | DeleteOptions - Specify what happens to the public IP when the VM is deleted
- dns
Settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings - The dns settings to be applied on the publicIP addresses .
- idle
Timeout IntegerIn Minutes - The idle timeout of the public IP address.
- List<Virtual
Machine Scale Set Ip Tag> - The list of IP tags associated with the public IP address.
- public
IPAddress String | IPVersionVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPPrefix SubResource - The PublicIPPrefix from which to allocate publicIP addresses.
- delete
Option string | DeleteOptions - Specify what happens to the public IP when the VM is deleted
- dns
Settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings - The dns settings to be applied on the publicIP addresses .
- idle
Timeout numberIn Minutes - The idle timeout of the public IP address.
- Virtual
Machine Scale Set Ip Tag[] - The list of IP tags associated with the public IP address.
- public
IPAddress string | IPVersionVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPPrefix SubResource - The PublicIPPrefix from which to allocate publicIP addresses.
- delete_
option str | DeleteOptions - Specify what happens to the public IP when the VM is deleted
- dns_
settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings - The dns settings to be applied on the publicIP addresses .
- idle_
timeout_ intin_ minutes - The idle timeout of the public IP address.
- Sequence[Virtual
Machine Scale Set Ip Tag] - The list of IP tags associated with the public IP address.
- public_
ip_ str | IPVersionaddress_ version - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ Subprefix Resource - The PublicIPPrefix from which to allocate publicIP addresses.
- delete
Option String | "Delete" | "Detach" - Specify what happens to the public IP when the VM is deleted
- dns
Settings Property Map - The dns settings to be applied on the publicIP addresses .
- idle
Timeout NumberIn Minutes - The idle timeout of the public IP address.
- List<Property Map>
- The list of IP tags associated with the public IP address.
- public
IPAddress String | "IPv4" | "IPv6"Version - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPPrefix Property Map - The PublicIPPrefix from which to allocate publicIP addresses.
VirtualMachineScaleSetPublicIPAddressConfigurationPropertiesResponse, VirtualMachineScaleSetPublicIPAddressConfigurationPropertiesResponseArgs
- Delete
Option string - Specify what happens to the public IP when the VM is deleted
- Dns
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Public IPAddress Configuration Dns Settings Response - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- List<Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Ip Tag Response> - The list of IP tags associated with the public IP address.
- Public
IPAddress stringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPPrefix Pulumi.Azure Native. Azure Fleet. Inputs. Sub Resource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- Delete
Option string - Specify what happens to the public IP when the VM is deleted
- Dns
Settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings Response - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- []Virtual
Machine Scale Set Ip Tag Response - The list of IP tags associated with the public IP address.
- Public
IPAddress stringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPPrefix SubResource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- delete
Option String - Specify what happens to the public IP when the VM is deleted
- dns
Settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings Response - The dns settings to be applied on the publicIP addresses .
- idle
Timeout IntegerIn Minutes - The idle timeout of the public IP address.
- List<Virtual
Machine Scale Set Ip Tag Response> - The list of IP tags associated with the public IP address.
- public
IPAddress StringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPPrefix SubResource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- delete
Option string - Specify what happens to the public IP when the VM is deleted
- dns
Settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings Response - The dns settings to be applied on the publicIP addresses .
- idle
Timeout numberIn Minutes - The idle timeout of the public IP address.
- Virtual
Machine Scale Set Ip Tag Response[] - The list of IP tags associated with the public IP address.
- public
IPAddress stringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPPrefix SubResource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- delete_
option str - Specify what happens to the public IP when the VM is deleted
- dns_
settings VirtualMachine Scale Set Public IPAddress Configuration Dns Settings Response - The dns settings to be applied on the publicIP addresses .
- idle_
timeout_ intin_ minutes - The idle timeout of the public IP address.
- Sequence[Virtual
Machine Scale Set Ip Tag Response] - The list of IP tags associated with the public IP address.
- public_
ip_ straddress_ version - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ Subprefix Resource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- delete
Option String - Specify what happens to the public IP when the VM is deleted
- dns
Settings Property Map - The dns settings to be applied on the publicIP addresses .
- idle
Timeout NumberIn Minutes - The idle timeout of the public IP address.
- List<Property Map>
- The list of IP tags associated with the public IP address.
- public
IPAddress StringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPPrefix Property Map - The PublicIPPrefix from which to allocate publicIP addresses.
VirtualMachineScaleSetPublicIPAddressConfigurationResponse, VirtualMachineScaleSetPublicIPAddressConfigurationResponseArgs
- Name string
- The publicIP address configuration name.
- Properties
Pulumi.
Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Public IPAddress Configuration Properties Response - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- Sku
Pulumi.
Azure Native. Azure Fleet. Inputs. Public IPAddress Sku Response - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- Name string
- The publicIP address configuration name.
- Properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties Response - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- Sku
Public
IPAddress Sku Response - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties Response - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku
Public
IPAddress Sku Response - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name string
- The publicIP address configuration name.
- properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties Response - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku
Public
IPAddress Sku Response - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name str
- The publicIP address configuration name.
- properties
Virtual
Machine Scale Set Public IPAddress Configuration Properties Response - Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku
Public
IPAddress Sku Response - Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- properties Property Map
- Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration
- sku Property Map
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
VirtualMachineScaleSetStorageProfile, VirtualMachineScaleSetStorageProfileArgs
- Data
Disks List<Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Data Disk> - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Disk
Controller string | Pulumi.Type Azure Native. Azure Fleet. Disk Controller Types - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- Image
Reference Pulumi.Azure Native. Azure Fleet. Inputs. Image Reference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set OSDisk - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Data
Disks []VirtualMachine Scale Set Data Disk - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Disk
Controller string | DiskType Controller Types - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- Image
Reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk VirtualMachine Scale Set OSDisk - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<VirtualMachine Scale Set Data Disk> - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk
Controller String | DiskType Controller Types - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image
Reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk VirtualMachine Scale Set OSDisk - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks VirtualMachine Scale Set Data Disk[] - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk
Controller string | DiskType Controller Types - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image
Reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk VirtualMachine Scale Set OSDisk - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data_
disks Sequence[VirtualMachine Scale Set Data Disk] - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk_
controller_ str | Disktype Controller Types - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image_
reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os_
disk VirtualMachine Scale Set OSDisk - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<Property Map> - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk
Controller String | "SCSI" | "NVMe"Type - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image
Reference Property Map - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk Property Map - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
VirtualMachineScaleSetStorageProfileResponse, VirtualMachineScaleSetStorageProfileResponseArgs
- Data
Disks List<Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set Data Disk Response> - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Disk
Controller stringType - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- Image
Reference Pulumi.Azure Native. Azure Fleet. Inputs. Image Reference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk Pulumi.Azure Native. Azure Fleet. Inputs. Virtual Machine Scale Set OSDisk Response - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Data
Disks []VirtualMachine Scale Set Data Disk Response - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Disk
Controller stringType - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- Image
Reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk VirtualMachine Scale Set OSDisk Response - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<VirtualMachine Scale Set Data Disk Response> - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk
Controller StringType - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image
Reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk VirtualMachine Scale Set OSDisk Response - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks VirtualMachine Scale Set Data Disk Response[] - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk
Controller stringType - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image
Reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk VirtualMachine Scale Set OSDisk Response - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data_
disks Sequence[VirtualMachine Scale Set Data Disk Response] - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk_
controller_ strtype - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image_
reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os_
disk VirtualMachine Scale Set OSDisk Response - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<Property Map> - Specifies the parameters that are used to add data disks to the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk
Controller StringType - Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
- image
Reference Property Map - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk Property Map - Specifies information about the operating system disk used by the virtual machines in the scale set. For more information about disks, see About disks and VHDs for Azure virtual machines.
VmSizeProfile, VmSizeProfileArgs
VmSizeProfileResponse, VmSizeProfileResponseArgs
WinRMConfiguration, WinRMConfigurationArgs
- Listeners
List<Pulumi.
Azure Native. Azure Fleet. Inputs. Win RMListener> - The list of Windows Remote Management listeners
- Listeners
[]Win
RMListener - The list of Windows Remote Management listeners
- listeners
List<Win
RMListener> - The list of Windows Remote Management listeners
- listeners
Win
RMListener[] - The list of Windows Remote Management listeners
- listeners
Sequence[Win
RMListener] - The list of Windows Remote Management listeners
- listeners List<Property Map>
- The list of Windows Remote Management listeners
WinRMConfigurationResponse, WinRMConfigurationResponseArgs
- Listeners
List<Pulumi.
Azure Native. Azure Fleet. Inputs. Win RMListener Response> - The list of Windows Remote Management listeners
- Listeners
[]Win
RMListener Response - The list of Windows Remote Management listeners
- listeners
List<Win
RMListener Response> - The list of Windows Remote Management listeners
- listeners
Win
RMListener Response[] - The list of Windows Remote Management listeners
- listeners
Sequence[Win
RMListener Response] - The list of Windows Remote Management listeners
- listeners List<Property Map>
- The list of Windows Remote Management listeners
WinRMListener, WinRMListenerArgs
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol
string | Pulumi.
Azure Native. Azure Fleet. Protocol Types - Specifies the protocol of WinRM listener. Possible values are: http, https.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol
string | Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
String | Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
string | Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
str | Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol String | "Http" | "Https"
- Specifies the protocol of WinRM listener. Possible values are: http, https.
WinRMListenerResponse, WinRMListenerResponseArgs
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol string
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol string
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol String
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol string
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol str
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol String
- Specifies the protocol of WinRM listener. Possible values are: http, https.
WindowsConfiguration, WindowsConfigurationArgs
- Additional
Unattend List<Pulumi.Content Azure Native. Azure Fleet. Inputs. Additional Unattend Content> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- Patch
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Patch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM Pulumi.Azure Native. Azure Fleet. Inputs. Win RMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- Additional
Unattend []AdditionalContent Unattend Content - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- Patch
Settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<AdditionalContent Unattend Content> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch
Settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend AdditionalContent Unattend Content[] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic booleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable
VMAgent booleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch
Settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional_
unattend_ Sequence[Additionalcontent Unattend Content] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable_
automatic_ boolupdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable_
vm_ boolagent_ platform_ updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch_
settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision_
vm_ boolagent - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time_
zone str - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win_
rm WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<Property Map>Content - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM Property Map - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
WindowsConfigurationResponse, WindowsConfigurationResponseArgs
- Additional
Unattend List<Pulumi.Content Azure Native. Azure Fleet. Inputs. Additional Unattend Content Response> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- Patch
Settings Pulumi.Azure Native. Azure Fleet. Inputs. Patch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM Pulumi.Azure Native. Azure Fleet. Inputs. Win RMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- Additional
Unattend []AdditionalContent Unattend Content Response - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Enable
VMAgent boolPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- Patch
Settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<AdditionalContent Unattend Content Response> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch
Settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend AdditionalContent Unattend Content Response[] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic booleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable
VMAgent booleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch
Settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional_
unattend_ Sequence[Additionalcontent Unattend Content Response] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable_
automatic_ boolupdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable_
vm_ boolagent_ platform_ updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch_
settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision_
vm_ boolagent - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time_
zone str - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win_
rm WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<Property Map>Content - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable
VMAgent BooleanPlatform Updates - Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM Property Map - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
WindowsPatchAssessmentMode, WindowsPatchAssessmentModeArgs
- 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.
- Windows
Patch Assessment Mode Image Default - ImageDefaultYou control the timing of patch assessments on a virtual machine.
- Windows
Patch Assessment Mode Automatic By Platform - 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.
- 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.
- 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.
- "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.
WindowsVMGuestPatchAutomaticByPlatformRebootSetting, WindowsVMGuestPatchAutomaticByPlatformRebootSettingArgs
- Unknown
- UnknownUnknown Reboot setting
- If
Required - IfRequiredIfRequired Reboot setting
- Never
- NeverNever Reboot setting
- Always
- AlwaysAlways Reboot setting
- Windows
VMGuest Patch Automatic By Platform Reboot Setting Unknown - UnknownUnknown Reboot setting
- Windows
VMGuest Patch Automatic By Platform Reboot Setting If Required - IfRequiredIfRequired Reboot setting
- Windows
VMGuest Patch Automatic By Platform Reboot Setting Never - NeverNever Reboot setting
- Windows
VMGuest Patch Automatic By Platform 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
- If
Required - 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
- "If
Required" - IfRequiredIfRequired Reboot setting
- "Never"
- NeverNever Reboot setting
- "Always"
- AlwaysAlways Reboot setting
WindowsVMGuestPatchAutomaticByPlatformSettings, WindowsVMGuestPatchAutomaticByPlatformSettingsArgs
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string | Pulumi.Azure Native. Azure Fleet. Windows VMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string | WindowsVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String | WindowsVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform booleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting string | WindowsVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_
platform_ boolsafety_ checks_ on_ user_ schedule - Enables customer to schedule patching without accidental upgrades
- reboot_
setting str | WindowsVMGuest Patch Automatic By Platform Reboot Setting - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String | "Unknown" | "IfRequired" | "Never" | "Always" - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
WindowsVMGuestPatchAutomaticByPlatformSettingsResponse, WindowsVMGuestPatchAutomaticByPlatformSettingsResponseArgs
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- Bypass
Platform boolSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- Reboot
Setting string - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform booleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting string - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_
platform_ boolsafety_ checks_ on_ user_ schedule - Enables customer to schedule patching without accidental upgrades
- reboot_
setting str - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass
Platform BooleanSafety Checks On User Schedule - Enables customer to schedule patching without accidental upgrades
- reboot
Setting String - Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
WindowsVMGuestPatchMode, WindowsVMGuestPatchModeArgs
- Manual
- ManualYou 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
- Automatic
By OS - AutomaticByOSThe virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.
- Automatic
By Platform - AutomaticByPlatformThe virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true.
- Windows
VMGuest Patch Mode Manual - ManualYou 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
- Windows
VMGuest Patch Mode Automatic By OS - AutomaticByOSThe virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.
- Windows
VMGuest Patch Mode Automatic By Platform - AutomaticByPlatformThe virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true.
- Manual
- ManualYou 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
- Automatic
By OS - AutomaticByOSThe virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.
- Automatic
By Platform - AutomaticByPlatformThe virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true.
- Manual
- ManualYou 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
- Automatic
By OS - AutomaticByOSThe virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.
- Automatic
By Platform - AutomaticByPlatformThe virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true.
- MANUAL
- ManualYou 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
- AUTOMATIC_BY_OS
- AutomaticByOSThe virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatformThe virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true.
- "Manual"
- ManualYou 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
- "Automatic
By OS" - AutomaticByOSThe virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.
- "Automatic
By Platform" - AutomaticByPlatformThe virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurefleet:Fleet testFleet /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureFleet/fleets/{fleetName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0