azure-native.compute.RestorePoint
Explore with Pulumi AI
Restore Point details. Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2021-03-01.
Other available API versions: 2021-11-01, 2022-11-01, 2023-07-01, 2023-09-01, 2024-03-01, 2024-07-01.
Example Usage
Copy a restore point to a different region
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var restorePoint = new AzureNative.Compute.RestorePoint("restorePoint", new()
{
ResourceGroupName = "myResourceGroup",
RestorePointCollectionName = "rpcName",
RestorePointName = "rpName",
SourceRestorePoint = new AzureNative.Compute.Inputs.ApiEntityReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/restorePointCollections/sourceRpcName/restorePoints/sourceRpName",
},
});
});
package main
import (
compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewRestorePoint(ctx, "restorePoint", &compute.RestorePointArgs{
ResourceGroupName: pulumi.String("myResourceGroup"),
RestorePointCollectionName: pulumi.String("rpcName"),
RestorePointName: pulumi.String("rpName"),
SourceRestorePoint: &compute.ApiEntityReferenceArgs{
Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/restorePointCollections/sourceRpcName/restorePoints/sourceRpName"),
},
})
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.compute.RestorePoint;
import com.pulumi.azurenative.compute.RestorePointArgs;
import com.pulumi.azurenative.compute.inputs.ApiEntityReferenceArgs;
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 restorePoint = new RestorePoint("restorePoint", RestorePointArgs.builder()
.resourceGroupName("myResourceGroup")
.restorePointCollectionName("rpcName")
.restorePointName("rpName")
.sourceRestorePoint(ApiEntityReferenceArgs.builder()
.id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/restorePointCollections/sourceRpcName/restorePoints/sourceRpName")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
restore_point = azure_native.compute.RestorePoint("restorePoint",
resource_group_name="myResourceGroup",
restore_point_collection_name="rpcName",
restore_point_name="rpName",
source_restore_point={
"id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/restorePointCollections/sourceRpcName/restorePoints/sourceRpName",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const restorePoint = new azure_native.compute.RestorePoint("restorePoint", {
resourceGroupName: "myResourceGroup",
restorePointCollectionName: "rpcName",
restorePointName: "rpName",
sourceRestorePoint: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/restorePointCollections/sourceRpcName/restorePoints/sourceRpName",
},
});
resources:
restorePoint:
type: azure-native:compute:RestorePoint
properties:
resourceGroupName: myResourceGroup
restorePointCollectionName: rpcName
restorePointName: rpName
sourceRestorePoint:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/restorePointCollections/sourceRpcName/restorePoints/sourceRpName
Create a restore point
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var restorePoint = new AzureNative.Compute.RestorePoint("restorePoint", new()
{
ExcludeDisks = new[]
{
new AzureNative.Compute.Inputs.ApiEntityReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/disk123",
},
},
ResourceGroupName = "myResourceGroup",
RestorePointCollectionName = "rpcName",
RestorePointName = "rpName",
});
});
package main
import (
compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewRestorePoint(ctx, "restorePoint", &compute.RestorePointArgs{
ExcludeDisks: compute.ApiEntityReferenceArray{
&compute.ApiEntityReferenceArgs{
Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/disk123"),
},
},
ResourceGroupName: pulumi.String("myResourceGroup"),
RestorePointCollectionName: pulumi.String("rpcName"),
RestorePointName: pulumi.String("rpName"),
})
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.compute.RestorePoint;
import com.pulumi.azurenative.compute.RestorePointArgs;
import com.pulumi.azurenative.compute.inputs.ApiEntityReferenceArgs;
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 restorePoint = new RestorePoint("restorePoint", RestorePointArgs.builder()
.excludeDisks(ApiEntityReferenceArgs.builder()
.id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/disk123")
.build())
.resourceGroupName("myResourceGroup")
.restorePointCollectionName("rpcName")
.restorePointName("rpName")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
restore_point = azure_native.compute.RestorePoint("restorePoint",
exclude_disks=[{
"id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/disk123",
}],
resource_group_name="myResourceGroup",
restore_point_collection_name="rpcName",
restore_point_name="rpName")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const restorePoint = new azure_native.compute.RestorePoint("restorePoint", {
excludeDisks: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/disk123",
}],
resourceGroupName: "myResourceGroup",
restorePointCollectionName: "rpcName",
restorePointName: "rpName",
});
resources:
restorePoint:
type: azure-native:compute:RestorePoint
properties:
excludeDisks:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/disk123
resourceGroupName: myResourceGroup
restorePointCollectionName: rpcName
restorePointName: rpName
Create RestorePoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RestorePoint(name: string, args: RestorePointArgs, opts?: CustomResourceOptions);
@overload
def RestorePoint(resource_name: str,
args: RestorePointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RestorePoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
restore_point_collection_name: Optional[str] = None,
consistency_mode: Optional[Union[str, ConsistencyModeTypes]] = None,
exclude_disks: Optional[Sequence[ApiEntityReferenceArgs]] = None,
restore_point_name: Optional[str] = None,
source_metadata: Optional[RestorePointSourceMetadataArgs] = None,
source_restore_point: Optional[ApiEntityReferenceArgs] = None,
time_created: Optional[str] = None)
func NewRestorePoint(ctx *Context, name string, args RestorePointArgs, opts ...ResourceOption) (*RestorePoint, error)
public RestorePoint(string name, RestorePointArgs args, CustomResourceOptions? opts = null)
public RestorePoint(String name, RestorePointArgs args)
public RestorePoint(String name, RestorePointArgs args, CustomResourceOptions options)
type: azure-native:compute:RestorePoint
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 RestorePointArgs
- 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 RestorePointArgs
- 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 RestorePointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RestorePointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RestorePointArgs
- 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 restorePointResource = new AzureNative.Compute.RestorePoint("restorePointResource", new()
{
ResourceGroupName = "string",
RestorePointCollectionName = "string",
ConsistencyMode = "string",
ExcludeDisks = new[]
{
new AzureNative.Compute.Inputs.ApiEntityReferenceArgs
{
Id = "string",
},
},
RestorePointName = "string",
SourceMetadata = new AzureNative.Compute.Inputs.RestorePointSourceMetadataArgs
{
StorageProfile = new AzureNative.Compute.Inputs.RestorePointSourceVMStorageProfileArgs
{
DataDisks = new[]
{
new AzureNative.Compute.Inputs.RestorePointSourceVMDataDiskArgs
{
DiskRestorePoint = new AzureNative.Compute.Inputs.DiskRestorePointAttributesArgs
{
Encryption = new AzureNative.Compute.Inputs.RestorePointEncryptionArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "string",
},
Type = "string",
},
SourceDiskRestorePoint = new AzureNative.Compute.Inputs.ApiEntityReferenceArgs
{
Id = "string",
},
},
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "string",
},
Id = "string",
SecurityProfile = new AzureNative.Compute.Inputs.VMDiskSecurityProfileArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "string",
},
SecurityEncryptionType = "string",
},
StorageAccountType = "string",
},
},
},
OsDisk = new AzureNative.Compute.Inputs.RestorePointSourceVMOSDiskArgs
{
DiskRestorePoint = new AzureNative.Compute.Inputs.DiskRestorePointAttributesArgs
{
Encryption = new AzureNative.Compute.Inputs.RestorePointEncryptionArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "string",
},
Type = "string",
},
SourceDiskRestorePoint = new AzureNative.Compute.Inputs.ApiEntityReferenceArgs
{
Id = "string",
},
},
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "string",
},
Id = "string",
SecurityProfile = new AzureNative.Compute.Inputs.VMDiskSecurityProfileArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "string",
},
SecurityEncryptionType = "string",
},
StorageAccountType = "string",
},
},
},
},
SourceRestorePoint = new AzureNative.Compute.Inputs.ApiEntityReferenceArgs
{
Id = "string",
},
TimeCreated = "string",
});
example, err := compute.NewRestorePoint(ctx, "restorePointResource", &compute.RestorePointArgs{
ResourceGroupName: pulumi.String("string"),
RestorePointCollectionName: pulumi.String("string"),
ConsistencyMode: pulumi.String("string"),
ExcludeDisks: compute.ApiEntityReferenceArray{
&compute.ApiEntityReferenceArgs{
Id: pulumi.String("string"),
},
},
RestorePointName: pulumi.String("string"),
SourceMetadata: &compute.RestorePointSourceMetadataArgs{
StorageProfile: &compute.RestorePointSourceVMStorageProfileArgs{
DataDisks: compute.RestorePointSourceVMDataDiskArray{
&compute.RestorePointSourceVMDataDiskArgs{
DiskRestorePoint: &compute.DiskRestorePointAttributesArgs{
Encryption: &compute.RestorePointEncryptionArgs{
DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
Id: pulumi.String("string"),
},
Type: pulumi.String("string"),
},
SourceDiskRestorePoint: &compute.ApiEntityReferenceArgs{
Id: pulumi.String("string"),
},
},
ManagedDisk: &compute.ManagedDiskParametersArgs{
DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
Id: pulumi.String("string"),
},
Id: pulumi.String("string"),
SecurityProfile: &compute.VMDiskSecurityProfileArgs{
DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
Id: pulumi.String("string"),
},
SecurityEncryptionType: pulumi.String("string"),
},
StorageAccountType: pulumi.String("string"),
},
},
},
OsDisk: &compute.RestorePointSourceVMOSDiskArgs{
DiskRestorePoint: &compute.DiskRestorePointAttributesArgs{
Encryption: &compute.RestorePointEncryptionArgs{
DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
Id: pulumi.String("string"),
},
Type: pulumi.String("string"),
},
SourceDiskRestorePoint: &compute.ApiEntityReferenceArgs{
Id: pulumi.String("string"),
},
},
ManagedDisk: &compute.ManagedDiskParametersArgs{
DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
Id: pulumi.String("string"),
},
Id: pulumi.String("string"),
SecurityProfile: &compute.VMDiskSecurityProfileArgs{
DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
Id: pulumi.String("string"),
},
SecurityEncryptionType: pulumi.String("string"),
},
StorageAccountType: pulumi.String("string"),
},
},
},
},
SourceRestorePoint: &compute.ApiEntityReferenceArgs{
Id: pulumi.String("string"),
},
TimeCreated: pulumi.String("string"),
})
var restorePointResource = new RestorePoint("restorePointResource", RestorePointArgs.builder()
.resourceGroupName("string")
.restorePointCollectionName("string")
.consistencyMode("string")
.excludeDisks(ApiEntityReferenceArgs.builder()
.id("string")
.build())
.restorePointName("string")
.sourceMetadata(RestorePointSourceMetadataArgs.builder()
.storageProfile(RestorePointSourceVMStorageProfileArgs.builder()
.dataDisks(RestorePointSourceVMDataDiskArgs.builder()
.diskRestorePoint(DiskRestorePointAttributesArgs.builder()
.encryption(RestorePointEncryptionArgs.builder()
.diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
.id("string")
.build())
.type("string")
.build())
.sourceDiskRestorePoint(ApiEntityReferenceArgs.builder()
.id("string")
.build())
.build())
.managedDisk(ManagedDiskParametersArgs.builder()
.diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
.id("string")
.build())
.id("string")
.securityProfile(VMDiskSecurityProfileArgs.builder()
.diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
.id("string")
.build())
.securityEncryptionType("string")
.build())
.storageAccountType("string")
.build())
.build())
.osDisk(RestorePointSourceVMOSDiskArgs.builder()
.diskRestorePoint(DiskRestorePointAttributesArgs.builder()
.encryption(RestorePointEncryptionArgs.builder()
.diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
.id("string")
.build())
.type("string")
.build())
.sourceDiskRestorePoint(ApiEntityReferenceArgs.builder()
.id("string")
.build())
.build())
.managedDisk(ManagedDiskParametersArgs.builder()
.diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
.id("string")
.build())
.id("string")
.securityProfile(VMDiskSecurityProfileArgs.builder()
.diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
.id("string")
.build())
.securityEncryptionType("string")
.build())
.storageAccountType("string")
.build())
.build())
.build())
.build())
.sourceRestorePoint(ApiEntityReferenceArgs.builder()
.id("string")
.build())
.timeCreated("string")
.build());
restore_point_resource = azure_native.compute.RestorePoint("restorePointResource",
resource_group_name="string",
restore_point_collection_name="string",
consistency_mode="string",
exclude_disks=[{
"id": "string",
}],
restore_point_name="string",
source_metadata={
"storageProfile": {
"dataDisks": [{
"diskRestorePoint": {
"encryption": {
"diskEncryptionSet": {
"id": "string",
},
"type": "string",
},
"sourceDiskRestorePoint": {
"id": "string",
},
},
"managedDisk": {
"diskEncryptionSet": {
"id": "string",
},
"id": "string",
"securityProfile": {
"diskEncryptionSet": {
"id": "string",
},
"securityEncryptionType": "string",
},
"storageAccountType": "string",
},
}],
"osDisk": {
"diskRestorePoint": {
"encryption": {
"diskEncryptionSet": {
"id": "string",
},
"type": "string",
},
"sourceDiskRestorePoint": {
"id": "string",
},
},
"managedDisk": {
"diskEncryptionSet": {
"id": "string",
},
"id": "string",
"securityProfile": {
"diskEncryptionSet": {
"id": "string",
},
"securityEncryptionType": "string",
},
"storageAccountType": "string",
},
},
},
},
source_restore_point={
"id": "string",
},
time_created="string")
const restorePointResource = new azure_native.compute.RestorePoint("restorePointResource", {
resourceGroupName: "string",
restorePointCollectionName: "string",
consistencyMode: "string",
excludeDisks: [{
id: "string",
}],
restorePointName: "string",
sourceMetadata: {
storageProfile: {
dataDisks: [{
diskRestorePoint: {
encryption: {
diskEncryptionSet: {
id: "string",
},
type: "string",
},
sourceDiskRestorePoint: {
id: "string",
},
},
managedDisk: {
diskEncryptionSet: {
id: "string",
},
id: "string",
securityProfile: {
diskEncryptionSet: {
id: "string",
},
securityEncryptionType: "string",
},
storageAccountType: "string",
},
}],
osDisk: {
diskRestorePoint: {
encryption: {
diskEncryptionSet: {
id: "string",
},
type: "string",
},
sourceDiskRestorePoint: {
id: "string",
},
},
managedDisk: {
diskEncryptionSet: {
id: "string",
},
id: "string",
securityProfile: {
diskEncryptionSet: {
id: "string",
},
securityEncryptionType: "string",
},
storageAccountType: "string",
},
},
},
},
sourceRestorePoint: {
id: "string",
},
timeCreated: "string",
});
type: azure-native:compute:RestorePoint
properties:
consistencyMode: string
excludeDisks:
- id: string
resourceGroupName: string
restorePointCollectionName: string
restorePointName: string
sourceMetadata:
storageProfile:
dataDisks:
- diskRestorePoint:
encryption:
diskEncryptionSet:
id: string
type: string
sourceDiskRestorePoint:
id: string
managedDisk:
diskEncryptionSet:
id: string
id: string
securityProfile:
diskEncryptionSet:
id: string
securityEncryptionType: string
storageAccountType: string
osDisk:
diskRestorePoint:
encryption:
diskEncryptionSet:
id: string
type: string
sourceDiskRestorePoint:
id: string
managedDisk:
diskEncryptionSet:
id: string
id: string
securityProfile:
diskEncryptionSet:
id: string
securityEncryptionType: string
storageAccountType: string
sourceRestorePoint:
id: string
timeCreated: string
RestorePoint 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 RestorePoint resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Restore
Point stringCollection Name - The name of the restore point collection.
- Consistency
Mode string | Pulumi.Azure Native. Compute. Consistency Mode Types - ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.
- Exclude
Disks List<Pulumi.Azure Native. Compute. Inputs. Api Entity Reference> - List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.
- Restore
Point stringName - The name of the restore point.
- Source
Metadata Pulumi.Azure Native. Compute. Inputs. Restore Point Source Metadata - Gets the details of the VM captured at the time of the restore point creation.
- Source
Restore Pulumi.Point Azure Native. Compute. Inputs. Api Entity Reference - Resource Id of the source restore point from which a copy needs to be created.
- Time
Created string - Gets the creation time of the restore point.
- Resource
Group stringName - The name of the resource group.
- Restore
Point stringCollection Name - The name of the restore point collection.
- Consistency
Mode string | ConsistencyMode Types - ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.
- Exclude
Disks []ApiEntity Reference Args - List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.
- Restore
Point stringName - The name of the restore point.
- Source
Metadata RestorePoint Source Metadata Args - Gets the details of the VM captured at the time of the restore point creation.
- Source
Restore ApiPoint Entity Reference Args - Resource Id of the source restore point from which a copy needs to be created.
- Time
Created string - Gets the creation time of the restore point.
- resource
Group StringName - The name of the resource group.
- restore
Point StringCollection Name - The name of the restore point collection.
- consistency
Mode String | ConsistencyMode Types - ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.
- exclude
Disks List<ApiEntity Reference> - List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.
- restore
Point StringName - The name of the restore point.
- source
Metadata RestorePoint Source Metadata - Gets the details of the VM captured at the time of the restore point creation.
- source
Restore ApiPoint Entity Reference - Resource Id of the source restore point from which a copy needs to be created.
- time
Created String - Gets the creation time of the restore point.
- resource
Group stringName - The name of the resource group.
- restore
Point stringCollection Name - The name of the restore point collection.
- consistency
Mode string | ConsistencyMode Types - ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.
- exclude
Disks ApiEntity Reference[] - List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.
- restore
Point stringName - The name of the restore point.
- source
Metadata RestorePoint Source Metadata - Gets the details of the VM captured at the time of the restore point creation.
- source
Restore ApiPoint Entity Reference - Resource Id of the source restore point from which a copy needs to be created.
- time
Created string - Gets the creation time of the restore point.
- resource_
group_ strname - The name of the resource group.
- restore_
point_ strcollection_ name - The name of the restore point collection.
- consistency_
mode str | ConsistencyMode Types - ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.
- exclude_
disks Sequence[ApiEntity Reference Args] - List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.
- restore_
point_ strname - The name of the restore point.
- source_
metadata RestorePoint Source Metadata Args - Gets the details of the VM captured at the time of the restore point creation.
- source_
restore_ Apipoint Entity Reference Args - Resource Id of the source restore point from which a copy needs to be created.
- time_
created str - Gets the creation time of the restore point.
- resource
Group StringName - The name of the resource group.
- restore
Point StringCollection Name - The name of the restore point collection.
- consistency
Mode String | "CrashConsistent" | "File System Consistent" | "Application Consistent" - ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.
- exclude
Disks List<Property Map> - List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.
- restore
Point StringName - The name of the restore point.
- source
Metadata Property Map - Gets the details of the VM captured at the time of the restore point creation.
- source
Restore Property MapPoint - Resource Id of the source restore point from which a copy needs to be created.
- time
Created String - Gets the creation time of the restore point.
Outputs
All input properties are implicitly available as output properties. Additionally, the RestorePoint resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
View Pulumi.Azure Native. Compute. Outputs. Restore Point Instance View Response - The restore point instance view.
- Name string
- Resource name
- Provisioning
State string - Gets the provisioning state of the restore point.
- Type string
- Resource type
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
View RestorePoint Instance View Response - The restore point instance view.
- Name string
- Resource name
- Provisioning
State string - Gets the provisioning state of the restore point.
- Type string
- Resource type
- id String
- The provider-assigned unique ID for this managed resource.
- instance
View RestorePoint Instance View Response - The restore point instance view.
- name String
- Resource name
- provisioning
State String - Gets the provisioning state of the restore point.
- type String
- Resource type
- id string
- The provider-assigned unique ID for this managed resource.
- instance
View RestorePoint Instance View Response - The restore point instance view.
- name string
- Resource name
- provisioning
State string - Gets the provisioning state of the restore point.
- type string
- Resource type
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
view RestorePoint Instance View Response - The restore point instance view.
- name str
- Resource name
- provisioning_
state str - Gets the provisioning state of the restore point.
- type str
- Resource type
- id String
- The provider-assigned unique ID for this managed resource.
- instance
View Property Map - The restore point instance view.
- name String
- Resource name
- provisioning
State String - Gets the provisioning state of the restore point.
- type String
- Resource type
Supporting Types
AdditionalUnattendContentResponse, AdditionalUnattendContentResponseArgs
- Component
Name string - 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 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.
- 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 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.
- 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 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.
- 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 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.
- 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 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.
- 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 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}/...
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.
ConsistencyModeTypes, ConsistencyModeTypesArgs
- Crash
Consistent - CrashConsistent
- File
System Consistent - FileSystemConsistent
- Application
Consistent - ApplicationConsistent
- Consistency
Mode Types Crash Consistent - CrashConsistent
- Consistency
Mode Types File System Consistent - FileSystemConsistent
- Consistency
Mode Types Application Consistent - ApplicationConsistent
- Crash
Consistent - CrashConsistent
- File
System Consistent - FileSystemConsistent
- Application
Consistent - ApplicationConsistent
- Crash
Consistent - CrashConsistent
- File
System Consistent - FileSystemConsistent
- Application
Consistent - ApplicationConsistent
- CRASH_CONSISTENT
- CrashConsistent
- FILE_SYSTEM_CONSISTENT
- FileSystemConsistent
- APPLICATION_CONSISTENT
- ApplicationConsistent
- "Crash
Consistent" - CrashConsistent
- "File
System Consistent" - FileSystemConsistent
- "Application
Consistent" - ApplicationConsistent
DiagnosticsProfileResponse, DiagnosticsProfileResponseArgs
- Boot
Diagnostics Pulumi.Azure Native. Compute. 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.
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
DiskEncryptionSettingsResponse, DiskEncryptionSettingsResponseArgs
- Disk
Encryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- Key
Encryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- Disk
Encryption KeyKey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- Key
Encryption KeyKey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption KeyKey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption KeyKey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption KeyKey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption KeyKey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk_
encryption_ Keykey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- key_
encryption_ Keykey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption Property MapKey - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption Property MapKey - Specifies the location of the key encryption key in Key Vault.
DiskRestorePointAttributes, DiskRestorePointAttributesArgs
- Encryption
Pulumi.
Azure Native. Compute. Inputs. Restore Point Encryption - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- Source
Disk Pulumi.Restore Point Azure Native. Compute. Inputs. Api Entity Reference - Resource Id of the source disk restore point.
- Encryption
Restore
Point Encryption - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- Source
Disk ApiRestore Point Entity Reference - Resource Id of the source disk restore point.
- encryption
Restore
Point Encryption - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source
Disk ApiRestore Point Entity Reference - Resource Id of the source disk restore point.
- encryption
Restore
Point Encryption - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source
Disk ApiRestore Point Entity Reference - Resource Id of the source disk restore point.
- encryption
Restore
Point Encryption - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source_
disk_ Apirestore_ point Entity Reference - Resource Id of the source disk restore point.
- encryption Property Map
- Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source
Disk Property MapRestore Point - Resource Id of the source disk restore point.
DiskRestorePointAttributesResponse, DiskRestorePointAttributesResponseArgs
- Id string
- Resource Id
- Encryption
Pulumi.
Azure Native. Compute. Inputs. Restore Point Encryption Response - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- Source
Disk Pulumi.Restore Point Azure Native. Compute. Inputs. Api Entity Reference Response - Resource Id of the source disk restore point.
- Id string
- Resource Id
- Encryption
Restore
Point Encryption Response - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- Source
Disk ApiRestore Point Entity Reference Response - Resource Id of the source disk restore point.
- id String
- Resource Id
- encryption
Restore
Point Encryption Response - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source
Disk ApiRestore Point Entity Reference Response - Resource Id of the source disk restore point.
- id string
- Resource Id
- encryption
Restore
Point Encryption Response - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source
Disk ApiRestore Point Entity Reference Response - Resource Id of the source disk restore point.
- id str
- Resource Id
- encryption
Restore
Point Encryption Response - Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source_
disk_ Apirestore_ point Entity Reference Response - Resource Id of the source disk restore point.
- id String
- Resource Id
- encryption Property Map
- Encryption at rest settings for disk restore point. It is an optional property that can be specified in the input while creating a restore point.
- source
Disk Property MapRestore Point - Resource Id of the source disk restore point.
DiskRestorePointInstanceViewResponse, DiskRestorePointInstanceViewResponseArgs
- Id string
- Disk restore point Id.
- Replication
Status Pulumi.Azure Native. Compute. Inputs. Disk Restore Point Replication Status Response - The disk restore point replication status information.
- Id string
- Disk restore point Id.
- Replication
Status DiskRestore Point Replication Status Response - The disk restore point replication status information.
- id String
- Disk restore point Id.
- replication
Status DiskRestore Point Replication Status Response - The disk restore point replication status information.
- id string
- Disk restore point Id.
- replication
Status DiskRestore Point Replication Status Response - The disk restore point replication status information.
- id str
- Disk restore point Id.
- replication_
status DiskRestore Point Replication Status Response - The disk restore point replication status information.
- id String
- Disk restore point Id.
- replication
Status Property Map - The disk restore point replication status information.
DiskRestorePointReplicationStatusResponse, DiskRestorePointReplicationStatusResponseArgs
- Completion
Percent int - Replication completion percentage.
- Status
Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response - The resource status information.
- Completion
Percent int - Replication completion percentage.
- Status
Instance
View Status Response - The resource status information.
- completion
Percent Integer - Replication completion percentage.
- status
Instance
View Status Response - The resource status information.
- completion
Percent number - Replication completion percentage.
- status
Instance
View Status Response - The resource status information.
- completion_
percent int - Replication completion percentage.
- status
Instance
View Status Response - The resource status information.
- completion
Percent Number - Replication completion percentage.
- status Property Map
- The resource status information.
HardwareProfileResponse, HardwareProfileResponseArgs
- Vm
Size string - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- Vm
Size Pulumi.Properties Azure Native. Compute. Inputs. VMSize Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- Vm
Size string - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- Vm
Size VMSizeProperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vm
Size String - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size VMSizeProperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vm
Size string - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size VMSizeProperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vm_
size str - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm_
size_ VMSizeproperties Properties Response - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vm
Size String - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size Property MapProperties - Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
InstanceViewStatusResponse, InstanceViewStatusResponseArgs
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
- code string
- The status code.
- display
Status string - The short localizable label for the status.
- level string
- The level code.
- message string
- The detailed status message, including for alerts and error messages.
- time string
- The time of the status.
- code str
- The status code.
- display_
status str - The short localizable label for the status.
- level str
- The level code.
- message str
- The detailed status message, including for alerts and error messages.
- time str
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
KeyVaultKeyReferenceResponse, KeyVaultKeyReferenceResponseArgs
- Key
Url string - The URL referencing a key encryption key in Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The relative URL of the Key Vault containing the key.
- Key
Url string - The URL referencing a key encryption key in Key Vault.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing the key.
- key
Url String - The URL referencing a key encryption key in Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the key.
- key
Url string - The URL referencing a key encryption key in Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the key.
- key_
url str - The URL referencing a key encryption key in Key Vault.
- source_
vault SubResource Response - The relative URL of the Key Vault containing the key.
- key
Url String - The URL referencing a key encryption key in Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the key.
KeyVaultSecretReferenceResponse, KeyVaultSecretReferenceResponseArgs
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. 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.
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. Compute. 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. Compute. 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.
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. Compute. 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
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.
ManagedDiskParameters, ManagedDiskParametersArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- Security
Profile Pulumi.Azure Native. Compute. Inputs. VMDisk Security Profile - Specifies the security profile for the managed disk.
- Storage
Account string | Pulumi.Type Azure Native. Compute. 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.
- Id string
- Resource Id
- 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.
- id String
- Resource Id
- 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.
- id string
- Resource Id
- 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.
- id str
- Resource Id
- 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.
- id String
- Resource Id
- 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.
ManagedDiskParametersResponse, ManagedDiskParametersResponseArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- Security
Profile Pulumi.Azure Native. Compute. 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.
- Id string
- Resource Id
- 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.
- id String
- Resource Id
- 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.
- id string
- Resource Id
- 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.
- id str
- Resource Id
- 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.
- id String
- Resource Id
- 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.
OSProfileResponse, OSProfileResponseArgs
- 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. This property cannot be updated after the VM is created. 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. This may only be set to False when no extensions are present on the virtual machine.
- Computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- 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. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- Linux
Configuration Pulumi.Azure Native. Compute. 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. Compute. Inputs. Vault Secret Group Response> - Specifies set of certificates that should be installed onto the virtual machine. 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. Compute. Inputs. Windows Configuration Response - 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. This property cannot be updated after the VM is created. 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. This may only be set to False when no extensions are present on the virtual machine.
- Computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- 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. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- 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 machine. 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
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. This property cannot be updated after the VM is created. 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. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name String - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- 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. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- 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 machine. 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
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. This property cannot be updated after the VM is created. 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. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- 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. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- 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 machine. 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_
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. This property cannot be updated after the VM is created. 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. This may only be set to False when no extensions are present on the virtual machine.
- computer_
name str - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- 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. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- 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 machine. 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
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. This property cannot be updated after the VM is created. 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. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name String - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- 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. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux 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 machine. 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.
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. Compute. 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
RestorePointEncryption, RestorePointEncryptionArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- Type
string | Pulumi.
Azure Native. Compute. Restore Point Encryption Type - The type of key used to encrypt the data of the disk restore point.
- Disk
Encryption DiskSet Encryption Set Parameters - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- Type
string | Restore
Point Encryption Type - The type of key used to encrypt the data of the disk restore point.
- disk
Encryption DiskSet Encryption Set Parameters - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type
String | Restore
Point Encryption Type - The type of key used to encrypt the data of the disk restore point.
- disk
Encryption DiskSet Encryption Set Parameters - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type
string | Restore
Point Encryption Type - The type of key used to encrypt the data of the disk restore point.
- disk_
encryption_ Diskset Encryption Set Parameters - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type
str | Restore
Point Encryption Type - The type of key used to encrypt the data of the disk restore point.
- disk
Encryption Property MapSet - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type
String | "Encryption
At Rest With Platform Key" | "Encryption At Rest With Customer Key" | "Encryption At Rest With Platform And Customer Keys" - The type of key used to encrypt the data of the disk restore point.
RestorePointEncryptionResponse, RestorePointEncryptionResponseArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters Response - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- Type string
- The type of key used to encrypt the data of the disk restore point.
- Disk
Encryption DiskSet Encryption Set Parameters Response - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- Type string
- The type of key used to encrypt the data of the disk restore point.
- disk
Encryption DiskSet Encryption Set Parameters Response - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type String
- The type of key used to encrypt the data of the disk restore point.
- disk
Encryption DiskSet Encryption Set Parameters Response - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type string
- The type of key used to encrypt the data of the disk restore point.
- disk_
encryption_ Diskset Encryption Set Parameters Response - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type str
- The type of key used to encrypt the data of the disk restore point.
- disk
Encryption Property MapSet - Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. Note: The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
- type String
- The type of key used to encrypt the data of the disk restore point.
RestorePointEncryptionType, RestorePointEncryptionTypeArgs
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyDisk Restore Point is encrypted at rest with Platform managed key.
- Encryption
At Rest With Customer Key - EncryptionAtRestWithCustomerKeyDisk Restore Point is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- Encryption
At Rest With Platform And Customer Keys - EncryptionAtRestWithPlatformAndCustomerKeysDisk Restore Point is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
- Restore
Point Encryption Type Encryption At Rest With Platform Key - EncryptionAtRestWithPlatformKeyDisk Restore Point is encrypted at rest with Platform managed key.
- Restore
Point Encryption Type Encryption At Rest With Customer Key - EncryptionAtRestWithCustomerKeyDisk Restore Point is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- Restore
Point Encryption Type Encryption At Rest With Platform And Customer Keys - EncryptionAtRestWithPlatformAndCustomerKeysDisk Restore Point is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyDisk Restore Point is encrypted at rest with Platform managed key.
- Encryption
At Rest With Customer Key - EncryptionAtRestWithCustomerKeyDisk Restore Point is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- Encryption
At Rest With Platform And Customer Keys - EncryptionAtRestWithPlatformAndCustomerKeysDisk Restore Point is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyDisk Restore Point is encrypted at rest with Platform managed key.
- Encryption
At Rest With Customer Key - EncryptionAtRestWithCustomerKeyDisk Restore Point is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- Encryption
At Rest With Platform And Customer Keys - EncryptionAtRestWithPlatformAndCustomerKeysDisk Restore Point is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
- ENCRYPTION_AT_REST_WITH_PLATFORM_KEY
- EncryptionAtRestWithPlatformKeyDisk Restore Point is encrypted at rest with Platform managed key.
- ENCRYPTION_AT_REST_WITH_CUSTOMER_KEY
- EncryptionAtRestWithCustomerKeyDisk Restore Point is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- ENCRYPTION_AT_REST_WITH_PLATFORM_AND_CUSTOMER_KEYS
- EncryptionAtRestWithPlatformAndCustomerKeysDisk Restore Point is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
- "Encryption
At Rest With Platform Key" - EncryptionAtRestWithPlatformKeyDisk Restore Point is encrypted at rest with Platform managed key.
- "Encryption
At Rest With Customer Key" - EncryptionAtRestWithCustomerKeyDisk Restore Point is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- "Encryption
At Rest With Platform And Customer Keys" - EncryptionAtRestWithPlatformAndCustomerKeysDisk Restore Point is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
RestorePointInstanceViewResponse, RestorePointInstanceViewResponseArgs
- Disk
Restore List<Pulumi.Points Azure Native. Compute. Inputs. Disk Restore Point Instance View Response> - The disk restore points information.
- Statuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Disk
Restore []DiskPoints Restore Point Instance View Response - The disk restore points information.
- Statuses
[]Instance
View Status Response - The resource status information.
- disk
Restore List<DiskPoints Restore Point Instance View Response> - The disk restore points information.
- statuses
List<Instance
View Status Response> - The resource status information.
- disk
Restore DiskPoints Restore Point Instance View Response[] - The disk restore points information.
- statuses
Instance
View Status Response[] - The resource status information.
- disk_
restore_ Sequence[Diskpoints Restore Point Instance View Response] - The disk restore points information.
- statuses
Sequence[Instance
View Status Response] - The resource status information.
- disk
Restore List<Property Map>Points - The disk restore points information.
- statuses List<Property Map>
- The resource status information.
RestorePointSourceMetadata, RestorePointSourceMetadataArgs
- Storage
Profile Pulumi.Azure Native. Compute. Inputs. Restore Point Source VMStorage Profile - Gets the storage profile.
- Storage
Profile RestorePoint Source VMStorage Profile - Gets the storage profile.
- storage
Profile RestorePoint Source VMStorage Profile - Gets the storage profile.
- storage
Profile RestorePoint Source VMStorage Profile - Gets the storage profile.
- storage_
profile RestorePoint Source VMStorage Profile - Gets the storage profile.
- storage
Profile Property Map - Gets the storage profile.
RestorePointSourceMetadataResponse, RestorePointSourceMetadataResponseArgs
- Diagnostics
Profile Pulumi.Azure Native. Compute. Inputs. Diagnostics Profile Response - Gets the diagnostics profile.
- Hardware
Profile Pulumi.Azure Native. Compute. Inputs. Hardware Profile Response - Gets the hardware profile.
- Hyper
VGeneration string - HyperVGeneration of the source VM for which restore point is captured.
- License
Type string - Gets the license type, which is for bring your own license scenario.
- Location string
- Location of the VM from which the restore point was created.
- Os
Profile Pulumi.Azure Native. Compute. Inputs. OSProfile Response - Gets the OS profile.
- Security
Profile Pulumi.Azure Native. Compute. Inputs. Security Profile Response - Gets the security profile.
- User
Data string - UserData associated with the source VM for which restore point is captured, which is a base-64 encoded value.
- Vm
Id string - Gets the virtual machine unique id.
- Storage
Profile Pulumi.Azure Native. Compute. Inputs. Restore Point Source VMStorage Profile Response - Gets the storage profile.
- Diagnostics
Profile DiagnosticsProfile Response - Gets the diagnostics profile.
- Hardware
Profile HardwareProfile Response - Gets the hardware profile.
- Hyper
VGeneration string - HyperVGeneration of the source VM for which restore point is captured.
- License
Type string - Gets the license type, which is for bring your own license scenario.
- Location string
- Location of the VM from which the restore point was created.
- Os
Profile OSProfileResponse - Gets the OS profile.
- Security
Profile SecurityProfile Response - Gets the security profile.
- User
Data string - UserData associated with the source VM for which restore point is captured, which is a base-64 encoded value.
- Vm
Id string - Gets the virtual machine unique id.
- Storage
Profile RestorePoint Source VMStorage Profile Response - Gets the storage profile.
- diagnostics
Profile DiagnosticsProfile Response - Gets the diagnostics profile.
- hardware
Profile HardwareProfile Response - Gets the hardware profile.
- hyper
VGeneration String - HyperVGeneration of the source VM for which restore point is captured.
- license
Type String - Gets the license type, which is for bring your own license scenario.
- location String
- Location of the VM from which the restore point was created.
- os
Profile OSProfileResponse - Gets the OS profile.
- security
Profile SecurityProfile Response - Gets the security profile.
- user
Data String - UserData associated with the source VM for which restore point is captured, which is a base-64 encoded value.
- vm
Id String - Gets the virtual machine unique id.
- storage
Profile RestorePoint Source VMStorage Profile Response - Gets the storage profile.
- diagnostics
Profile DiagnosticsProfile Response - Gets the diagnostics profile.
- hardware
Profile HardwareProfile Response - Gets the hardware profile.
- hyper
VGeneration string - HyperVGeneration of the source VM for which restore point is captured.
- license
Type string - Gets the license type, which is for bring your own license scenario.
- location string
- Location of the VM from which the restore point was created.
- os
Profile OSProfileResponse - Gets the OS profile.
- security
Profile SecurityProfile Response - Gets the security profile.
- user
Data string - UserData associated with the source VM for which restore point is captured, which is a base-64 encoded value.
- vm
Id string - Gets the virtual machine unique id.
- storage
Profile RestorePoint Source VMStorage Profile Response - Gets the storage profile.
- diagnostics_
profile DiagnosticsProfile Response - Gets the diagnostics profile.
- hardware_
profile HardwareProfile Response - Gets the hardware profile.
- hyper_
v_ strgeneration - HyperVGeneration of the source VM for which restore point is captured.
- license_
type str - Gets the license type, which is for bring your own license scenario.
- location str
- Location of the VM from which the restore point was created.
- os_
profile OSProfileResponse - Gets the OS profile.
- security_
profile SecurityProfile Response - Gets the security profile.
- user_
data str - UserData associated with the source VM for which restore point is captured, which is a base-64 encoded value.
- vm_
id str - Gets the virtual machine unique id.
- storage_
profile RestorePoint Source VMStorage Profile Response - Gets the storage profile.
- diagnostics
Profile Property Map - Gets the diagnostics profile.
- hardware
Profile Property Map - Gets the hardware profile.
- hyper
VGeneration String - HyperVGeneration of the source VM for which restore point is captured.
- license
Type String - Gets the license type, which is for bring your own license scenario.
- location String
- Location of the VM from which the restore point was created.
- os
Profile Property Map - Gets the OS profile.
- security
Profile Property Map - Gets the security profile.
- user
Data String - UserData associated with the source VM for which restore point is captured, which is a base-64 encoded value.
- vm
Id String - Gets the virtual machine unique id.
- storage
Profile Property Map - Gets the storage profile.
RestorePointSourceVMDataDisk, RestorePointSourceVMDataDiskArgs
- Disk
Restore Pulumi.Point Azure Native. Compute. Inputs. Disk Restore Point Attributes - Contains Disk Restore Point properties.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters - Contains the managed disk details.
- Disk
Restore DiskPoint Restore Point Attributes - Contains Disk Restore Point properties.
- Managed
Disk ManagedDisk Parameters - Contains the managed disk details.
- disk
Restore DiskPoint Restore Point Attributes - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters - Contains the managed disk details.
- disk
Restore DiskPoint Restore Point Attributes - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters - Contains the managed disk details.
- disk_
restore_ Diskpoint Restore Point Attributes - Contains Disk Restore Point properties.
- managed_
disk ManagedDisk Parameters - Contains the managed disk details.
- disk
Restore Property MapPoint - Contains Disk Restore Point properties.
- managed
Disk Property Map - Contains the managed disk details.
RestorePointSourceVMDataDiskResponse, RestorePointSourceVMDataDiskResponseArgs
- Caching string
- Gets the caching type.
- Disk
Size intGB - Gets the initial disk size in GB for blank data disks, and the new desired size for existing OS and Data disks.
- Lun int
- Gets the logical unit number.
- Name string
- Gets the disk name.
- Write
Accelerator boolEnabled - Shows true if the disk is write-accelerator enabled.
- Disk
Restore Pulumi.Point Azure Native. Compute. Inputs. Disk Restore Point Attributes Response - Contains Disk Restore Point properties.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters Response - Contains the managed disk details.
- Caching string
- Gets the caching type.
- Disk
Size intGB - Gets the initial disk size in GB for blank data disks, and the new desired size for existing OS and Data disks.
- Lun int
- Gets the logical unit number.
- Name string
- Gets the disk name.
- Write
Accelerator boolEnabled - Shows true if the disk is write-accelerator enabled.
- Disk
Restore DiskPoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- Managed
Disk ManagedDisk Parameters Response - Contains the managed disk details.
- caching String
- Gets the caching type.
- disk
Size IntegerGB - Gets the initial disk size in GB for blank data disks, and the new desired size for existing OS and Data disks.
- lun Integer
- Gets the logical unit number.
- name String
- Gets the disk name.
- write
Accelerator BooleanEnabled - Shows true if the disk is write-accelerator enabled.
- disk
Restore DiskPoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters Response - Contains the managed disk details.
- caching string
- Gets the caching type.
- disk
Size numberGB - Gets the initial disk size in GB for blank data disks, and the new desired size for existing OS and Data disks.
- lun number
- Gets the logical unit number.
- name string
- Gets the disk name.
- write
Accelerator booleanEnabled - Shows true if the disk is write-accelerator enabled.
- disk
Restore DiskPoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters Response - Contains the managed disk details.
- caching str
- Gets the caching type.
- disk_
size_ intgb - Gets the initial disk size in GB for blank data disks, and the new desired size for existing OS and Data disks.
- lun int
- Gets the logical unit number.
- name str
- Gets the disk name.
- write_
accelerator_ boolenabled - Shows true if the disk is write-accelerator enabled.
- disk_
restore_ Diskpoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- managed_
disk ManagedDisk Parameters Response - Contains the managed disk details.
- caching String
- Gets the caching type.
- disk
Size NumberGB - Gets the initial disk size in GB for blank data disks, and the new desired size for existing OS and Data disks.
- lun Number
- Gets the logical unit number.
- name String
- Gets the disk name.
- write
Accelerator BooleanEnabled - Shows true if the disk is write-accelerator enabled.
- disk
Restore Property MapPoint - Contains Disk Restore Point properties.
- managed
Disk Property Map - Contains the managed disk details.
RestorePointSourceVMOSDisk, RestorePointSourceVMOSDiskArgs
- Disk
Restore Pulumi.Point Azure Native. Compute. Inputs. Disk Restore Point Attributes - Contains Disk Restore Point properties.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters - Gets the managed disk details
- Disk
Restore DiskPoint Restore Point Attributes - Contains Disk Restore Point properties.
- Managed
Disk ManagedDisk Parameters - Gets the managed disk details
- disk
Restore DiskPoint Restore Point Attributes - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters - Gets the managed disk details
- disk
Restore DiskPoint Restore Point Attributes - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters - Gets the managed disk details
- disk_
restore_ Diskpoint Restore Point Attributes - Contains Disk Restore Point properties.
- managed_
disk ManagedDisk Parameters - Gets the managed disk details
- disk
Restore Property MapPoint - Contains Disk Restore Point properties.
- managed
Disk Property Map - Gets the managed disk details
RestorePointSourceVMOSDiskResponse, RestorePointSourceVMOSDiskResponseArgs
- Caching string
- Gets the caching type.
- Disk
Size intGB - Gets the disk size in GB.
- Encryption
Settings Pulumi.Azure Native. Compute. Inputs. Disk Encryption Settings Response - Gets the disk encryption settings.
- Name string
- Gets the disk name.
- Os
Type string - Gets the Operating System type.
- Write
Accelerator boolEnabled - Shows true if the disk is write-accelerator enabled.
- Disk
Restore Pulumi.Point Azure Native. Compute. Inputs. Disk Restore Point Attributes Response - Contains Disk Restore Point properties.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters Response - Gets the managed disk details
- Caching string
- Gets the caching type.
- Disk
Size intGB - Gets the disk size in GB.
- Encryption
Settings DiskEncryption Settings Response - Gets the disk encryption settings.
- Name string
- Gets the disk name.
- Os
Type string - Gets the Operating System type.
- Write
Accelerator boolEnabled - Shows true if the disk is write-accelerator enabled.
- Disk
Restore DiskPoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- Managed
Disk ManagedDisk Parameters Response - Gets the managed disk details
- caching String
- Gets the caching type.
- disk
Size IntegerGB - Gets the disk size in GB.
- encryption
Settings DiskEncryption Settings Response - Gets the disk encryption settings.
- name String
- Gets the disk name.
- os
Type String - Gets the Operating System type.
- write
Accelerator BooleanEnabled - Shows true if the disk is write-accelerator enabled.
- disk
Restore DiskPoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters Response - Gets the managed disk details
- caching string
- Gets the caching type.
- disk
Size numberGB - Gets the disk size in GB.
- encryption
Settings DiskEncryption Settings Response - Gets the disk encryption settings.
- name string
- Gets the disk name.
- os
Type string - Gets the Operating System type.
- write
Accelerator booleanEnabled - Shows true if the disk is write-accelerator enabled.
- disk
Restore DiskPoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- managed
Disk ManagedDisk Parameters Response - Gets the managed disk details
- caching str
- Gets the caching type.
- disk_
size_ intgb - Gets the disk size in GB.
- encryption_
settings DiskEncryption Settings Response - Gets the disk encryption settings.
- name str
- Gets the disk name.
- os_
type str - Gets the Operating System type.
- write_
accelerator_ boolenabled - Shows true if the disk is write-accelerator enabled.
- disk_
restore_ Diskpoint Restore Point Attributes Response - Contains Disk Restore Point properties.
- managed_
disk ManagedDisk Parameters Response - Gets the managed disk details
- caching String
- Gets the caching type.
- disk
Size NumberGB - Gets the disk size in GB.
- encryption
Settings Property Map - Gets the disk encryption settings.
- name String
- Gets the disk name.
- os
Type String - Gets the Operating System type.
- write
Accelerator BooleanEnabled - Shows true if the disk is write-accelerator enabled.
- disk
Restore Property MapPoint - Contains Disk Restore Point properties.
- managed
Disk Property Map - Gets the managed disk details
RestorePointSourceVMStorageProfile, RestorePointSourceVMStorageProfileArgs
- Data
Disks List<Pulumi.Azure Native. Compute. Inputs. Restore Point Source VMData Disk> - Gets the data disks of the VM captured at the time of the restore point creation.
- Os
Disk Pulumi.Azure Native. Compute. Inputs. Restore Point Source VMOSDisk - Gets the OS disk of the VM captured at the time of the restore point creation.
- Data
Disks []RestorePoint Source VMData Disk - Gets the data disks of the VM captured at the time of the restore point creation.
- Os
Disk RestorePoint Source VMOSDisk - Gets the OS disk of the VM captured at the time of the restore point creation.
- data
Disks List<RestorePoint Source VMData Disk> - Gets the data disks of the VM captured at the time of the restore point creation.
- os
Disk RestorePoint Source VMOSDisk - Gets the OS disk of the VM captured at the time of the restore point creation.
- data
Disks RestorePoint Source VMData Disk[] - Gets the data disks of the VM captured at the time of the restore point creation.
- os
Disk RestorePoint Source VMOSDisk - Gets the OS disk of the VM captured at the time of the restore point creation.
- data_
disks Sequence[RestorePoint Source VMData Disk] - Gets the data disks of the VM captured at the time of the restore point creation.
- os_
disk RestorePoint Source VMOSDisk - Gets the OS disk of the VM captured at the time of the restore point creation.
- data
Disks List<Property Map> - Gets the data disks of the VM captured at the time of the restore point creation.
- os
Disk Property Map - Gets the OS disk of the VM captured at the time of the restore point creation.
RestorePointSourceVMStorageProfileResponse, RestorePointSourceVMStorageProfileResponseArgs
- Data
Disks List<Pulumi.Azure Native. Compute. Inputs. Restore Point Source VMData Disk Response> - Gets the data disks of the VM captured at the time of the restore point creation.
- Os
Disk Pulumi.Azure Native. Compute. Inputs. Restore Point Source VMOSDisk Response - Gets the OS disk of the VM captured at the time of the restore point creation.
- Data
Disks []RestorePoint Source VMData Disk Response - Gets the data disks of the VM captured at the time of the restore point creation.
- Os
Disk RestorePoint Source VMOSDisk Response - Gets the OS disk of the VM captured at the time of the restore point creation.
- data
Disks List<RestorePoint Source VMData Disk Response> - Gets the data disks of the VM captured at the time of the restore point creation.
- os
Disk RestorePoint Source VMOSDisk Response - Gets the OS disk of the VM captured at the time of the restore point creation.
- data
Disks RestorePoint Source VMData Disk Response[] - Gets the data disks of the VM captured at the time of the restore point creation.
- os
Disk RestorePoint Source VMOSDisk Response - Gets the OS disk of the VM captured at the time of the restore point creation.
- data_
disks Sequence[RestorePoint Source VMData Disk Response] - Gets the data disks of the VM captured at the time of the restore point creation.
- os_
disk RestorePoint Source VMOSDisk Response - Gets the OS disk of the VM captured at the time of the restore point creation.
- data
Disks List<Property Map> - Gets the data disks of the VM captured at the time of the restore point creation.
- os
Disk Property Map - Gets the OS disk of the VM captured at the time of the restore point creation.
SecurityEncryptionTypes, SecurityEncryptionTypesArgs
- VMGuest
State Only - VMGuestStateOnly
- Disk
With VMGuest State - DiskWithVMGuestState
- Security
Encryption Types VMGuest State Only - VMGuestStateOnly
- Security
Encryption Types Disk With VMGuest State - DiskWithVMGuestState
- VMGuest
State Only - VMGuestStateOnly
- Disk
With VMGuest State - DiskWithVMGuestState
- VMGuest
State Only - VMGuestStateOnly
- Disk
With VMGuest State - DiskWithVMGuestState
- VM_GUEST_STATE_ONLY
- VMGuestStateOnly
- DISK_WITH_VM_GUEST_STATE
- DiskWithVMGuestState
- "VMGuest
State Only" - VMGuestStateOnly
- "Disk
With VMGuest State" - DiskWithVMGuestState
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.
- 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. Compute. 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.
- 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.
- 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.
- 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.
- 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.
- 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.
SshConfigurationResponse, SshConfigurationResponseArgs
- Public
Keys List<Pulumi.Azure Native. Compute. 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.
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_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Premium
V2_LRS - PremiumV2_LRS
- Storage
Account Types_Standard_LRS - Standard_LRS
- Storage
Account Types_Premium_LRS - Premium_LRS
- Storage
Account Types_Standard SSD_LRS - StandardSSD_LRS
- Storage
Account Types_Ultra SSD_LRS - UltraSSD_LRS
- Storage
Account Types_Premium_ZRS - Premium_ZRS
- Storage
Account Types_Standard SSD_ZRS - StandardSSD_ZRS
- Storage
Account Types_Premium V2_LRS - PremiumV2_LRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Premium
V2_LRS - PremiumV2_LRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Premium
V2_LRS - PremiumV2_LRS
- STANDARD_LRS
- Standard_LRS
- PREMIUM_LRS
- Premium_LRS
- STANDARD_SS_D_LRS
- StandardSSD_LRS
- ULTRA_SS_D_LRS
- UltraSSD_LRS
- PREMIUM_ZRS
- Premium_ZRS
- STANDARD_SS_D_ZRS
- StandardSSD_ZRS
- PREMIUM_V2_LRS
- PremiumV2_LRS
- "Standard_LRS"
- Standard_LRS
- "Premium_LRS"
- Premium_LRS
- "Standard
SSD_LRS" - StandardSSD_LRS
- "Ultra
SSD_LRS" - UltraSSD_LRS
- "Premium_ZRS"
- Premium_ZRS
- "Standard
SSD_ZRS" - StandardSSD_ZRS
- "Premium
V2_LRS" - PremiumV2_LRS
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
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.
VMDiskSecurityProfile, VMDiskSecurityProfileArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. 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. Compute. 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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" - Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
VMDiskSecurityProfileResponse, VMDiskSecurityProfileResponseArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just 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, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
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.
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.
VaultSecretGroupResponse, VaultSecretGroupResponseArgs
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates List<Pulumi.Azure Native. Compute. 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.
WinRMConfigurationResponse, WinRMConfigurationResponseArgs
- Listeners
List<Pulumi.
Azure Native. Compute. 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
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.
WindowsConfigurationResponse, WindowsConfigurationResponseArgs
- Additional
Unattend List<Pulumi.Content Azure Native. Compute. 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. Compute. 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. Compute. 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.
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:RestorePoint rpName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/restorePointCollections/{restorePointCollectionName}/restorePoints/{restorePointName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0