Show / Hide Table of Contents

Class ScaleSetStorageProfileOsDiskGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ScaleSetStorageProfileOsDiskGetArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Compute.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ScaleSetStorageProfileOsDiskGetArgs : ResourceArgs

Constructors

View Source

ScaleSetStorageProfileOsDiskGetArgs()

Declaration
public ScaleSetStorageProfileOsDiskGetArgs()

Properties

View Source

Caching

Specifies the caching requirements. Possible values include: None (default), ReadOnly, ReadWrite.

Declaration
public Input<string> Caching { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CreateOption

Specifies how the virtual machine should be created. The only possible option is FromImage.

Declaration
public Input<string> CreateOption { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Image

Specifies the blob uri for user image. A virtual machine scale set creates an os disk in the same container as the user image. Updating the osDisk image causes the existing disk to be deleted and a new one created with the new image. If the VM scale set is in Manual upgrade mode then the virtual machines are not updated until they have manualUpgrade applied to them. When setting this field os_type needs to be specified. Cannot be used when vhd_containers, managed_disk_type or storage_profile_image_reference are specified.

Declaration
public Input<string> Image { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ManagedDiskType

Specifies the type of managed disk to create. Value you must be either Standard_LRS, StandardSSD_LRS or Premium_LRS. Cannot be used when vhd_containers or image is specified.

Declaration
public Input<string> ManagedDiskType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the disk name. Must be specified when using unmanaged disk ('managed_disk_type' property not set).

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

OsType

Specifies the operating system Type, valid values are windows, linux.

Declaration
public Input<string> OsType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VhdContainers

Specifies the vhd uri. Cannot be used when image or managed_disk_type is specified.

Declaration
public InputList<string> VhdContainers { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.