Share via


ConnectionTypeCreateOrUpdateParameters Constructors

Definition

Overloads

ConnectionTypeCreateOrUpdateParameters()

Initializes a new instance of the ConnectionTypeCreateOrUpdateParameters class.

ConnectionTypeCreateOrUpdateParameters(String, ConnectionTypeCreateOrUpdateProperties)
ConnectionTypeCreateOrUpdateParameters(String, IDictionary<String,FieldDefinition>, Nullable<Boolean>)

Initializes a new instance of the ConnectionTypeCreateOrUpdateParameters class.

ConnectionTypeCreateOrUpdateParameters()

Initializes a new instance of the ConnectionTypeCreateOrUpdateParameters class.

public ConnectionTypeCreateOrUpdateParameters ();
Public Sub New ()

Applies to

ConnectionTypeCreateOrUpdateParameters(String, ConnectionTypeCreateOrUpdateProperties)

public ConnectionTypeCreateOrUpdateParameters (string name, Microsoft.Azure.Management.Automation.Models.ConnectionTypeCreateOrUpdateProperties properties);
new Microsoft.Azure.Management.Automation.Models.ConnectionTypeCreateOrUpdateParameters : string * Microsoft.Azure.Management.Automation.Models.ConnectionTypeCreateOrUpdateProperties -> Microsoft.Azure.Management.Automation.Models.ConnectionTypeCreateOrUpdateParameters
Public Sub New (name As String, properties As ConnectionTypeCreateOrUpdateProperties)

Parameters

name
String

Applies to

ConnectionTypeCreateOrUpdateParameters(String, IDictionary<String,FieldDefinition>, Nullable<Boolean>)

Initializes a new instance of the ConnectionTypeCreateOrUpdateParameters class.

public ConnectionTypeCreateOrUpdateParameters (string name, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Automation.Models.FieldDefinition> fieldDefinitions, bool? isGlobal = default);
new Microsoft.Azure.Management.Automation.Models.ConnectionTypeCreateOrUpdateParameters : string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Automation.Models.FieldDefinition> * Nullable<bool> -> Microsoft.Azure.Management.Automation.Models.ConnectionTypeCreateOrUpdateParameters
Public Sub New (name As String, fieldDefinitions As IDictionary(Of String, FieldDefinition), Optional isGlobal As Nullable(Of Boolean) = Nothing)

Parameters

name
String

Gets or sets the name of the connection type.

fieldDefinitions
IDictionary<String,FieldDefinition>

Gets or sets the field definitions of the connection type.

isGlobal
Nullable<Boolean>

Gets or sets a Boolean value to indicate if the connection type is global.

Applies to