Machine Constructors

Definition

Overloads

Name Description
Machine()

Initializes a new instance of the Machine class.

Machine(String, String, String, IList<String>, MachineProperties)

Initializes a new instance of the Machine class.

Machine()

Initializes a new instance of the Machine class.

public Machine();
Public Sub New ()

Applies to

Machine(String, String, String, IList<String>, MachineProperties)

Initializes a new instance of the Machine class.

public Machine(string id = default, string name = default, string type = default, System.Collections.Generic.IList<string> zones = default, Microsoft.Azure.Management.ContainerService.Models.MachineProperties properties = default);
new Microsoft.Azure.Management.ContainerService.Models.Machine : string * string * string * System.Collections.Generic.IList<string> * Microsoft.Azure.Management.ContainerService.Models.MachineProperties -> Microsoft.Azure.Management.ContainerService.Models.Machine
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional zones As IList(Of String) = Nothing, Optional properties As MachineProperties = Nothing)

Parameters

id
String

Resource ID.

name
String

The name of the resource that is unique within a resource group. This name can be used to access the resource.

type
String

Resource type

zones
IList<String>

The Availability zone in which machine is located.

properties
MachineProperties

The properties of the machine

Applies to