GalleryScriptProperties Constructors

Definition

Overloads

Name Description
GalleryScriptProperties()

Initializes a new instance of the GalleryScriptProperties class.

GalleryScriptProperties(OperatingSystemTypes, String, String, String, String, Nullable<DateTime>, String)

Initializes a new instance of the GalleryScriptProperties class.

GalleryScriptProperties()

Initializes a new instance of the GalleryScriptProperties class.

public GalleryScriptProperties();
Public Sub New ()

Applies to

GalleryScriptProperties(OperatingSystemTypes, String, String, String, String, Nullable<DateTime>, String)

Initializes a new instance of the GalleryScriptProperties class.

public GalleryScriptProperties(Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes supportedOSType, string description = default, string eula = default, string privacyStatementUri = default, string releaseNoteUri = default, DateTime? endOfLifeDate = default, string provisioningState = default);
new Microsoft.Azure.Management.Compute.Models.GalleryScriptProperties : Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes * string * string * string * string * Nullable<DateTime> * string -> Microsoft.Azure.Management.Compute.Models.GalleryScriptProperties
Public Sub New (supportedOSType As OperatingSystemTypes, Optional description As String = Nothing, Optional eula As String = Nothing, Optional privacyStatementUri As String = Nothing, Optional releaseNoteUri As String = Nothing, Optional endOfLifeDate As Nullable(Of DateTime) = Nothing, Optional provisioningState As String = Nothing)

Parameters

supportedOSType
OperatingSystemTypes

This property allows you to specify the supported type of the OS that application is built for. Possible values are: Windows, Linux. Possible values include: 'Windows', 'Linux'

description
String

The description of this gallery script definition resource. This property is updatable.

eula
String

The Eula agreement (End User License Agreement) for the gallery Script Definition.

privacyStatementUri
String

The privacy statement uri.

releaseNoteUri
String

The release note uri.

endOfLifeDate
Nullable<DateTime>

The end of life date of the gallery Script Definition. This property can be used for decommissioning purposes. This property is updatable.

provisioningState
String

The provisioning state, which only appears in the response. Possible values include: 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating'

Applies to