Share via


Transform Constructors

Definition

Overloads

Transform()

Initializes a new instance of the Transform class.

Transform(IList<TransformOutput>, String, String, String, DateTime, String, DateTime, SystemData)

Initializes a new instance of the Transform class.

Transform()

Initializes a new instance of the Transform class.

public Transform ();
Public Sub New ()

Applies to

Transform(IList<TransformOutput>, String, String, String, DateTime, String, DateTime, SystemData)

Initializes a new instance of the Transform class.

public Transform (System.Collections.Generic.IList<Microsoft.Azure.Management.Media.Models.TransformOutput> outputs, string id = default, string name = default, string type = default, DateTime created = default, string description = default, DateTime lastModified = default, Microsoft.Azure.Management.Media.Models.SystemData systemData = default);
new Microsoft.Azure.Management.Media.Models.Transform : System.Collections.Generic.IList<Microsoft.Azure.Management.Media.Models.TransformOutput> * string * string * string * DateTime * string * DateTime * Microsoft.Azure.Management.Media.Models.SystemData -> Microsoft.Azure.Management.Media.Models.Transform
Public Sub New (outputs As IList(Of TransformOutput), Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional created As DateTime = Nothing, Optional description As String = Nothing, Optional lastModified As DateTime = Nothing, Optional systemData As SystemData = Nothing)

Parameters

outputs
IList<TransformOutput>

An array of one or more TransformOutputs that the Transform should generate.

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

created
DateTime

The UTC date and time when the Transform was created, in 'YYYY-MM-DDThh:mm:ssZ' format.

description
String

An optional verbose description of the Transform.

lastModified
DateTime

The UTC date and time when the Transform was last updated, in 'YYYY-MM-DDThh:mm:ssZ' format.

systemData
SystemData

The system metadata relating to this resource.

Applies to