Show / Hide Table of Contents

Class ImageOsDiskArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ImageOsDiskArgs
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 ImageOsDiskArgs : ResourceArgs

Constructors

View Source

ImageOsDiskArgs()

Declaration
public ImageOsDiskArgs()

Properties

View Source

BlobUri

Specifies the URI in Azure storage of the blob that you want to use to create the image.

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

Caching

Specifies the caching mode as ReadWrite, ReadOnly, or None. The default is None.

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

ManagedDiskId

Specifies the ID of the managed disk resource that you want to use to create the image.

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

OsState

Specifies the state of the operating system contained in the blob. Currently, the only value is Generalized.

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

OsType

Specifies the type of operating system contained in the virtual machine image. Possible values are: Windows or Linux.

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

SizeGb

Specifies the size of the image to be created. The target size can't be smaller than the source size.

Declaration
public Input<int> SizeGb { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.