Share via


ConnectionType Constructors

Definition

Overloads

ConnectionType()

Initializes a new instance of the ConnectionType class.

ConnectionType(String, String, String, Nullable<Boolean>, IDictionary<String,FieldDefinition>, DateTimeOffset, DateTimeOffset, String)

Initializes a new instance of the ConnectionType class.

ConnectionType()

Initializes a new instance of the ConnectionType class.

public ConnectionType ();
Public Sub New ()

Applies to

ConnectionType(String, String, String, Nullable<Boolean>, IDictionary<String,FieldDefinition>, DateTimeOffset, DateTimeOffset, String)

Initializes a new instance of the ConnectionType class.

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

Parameters

id
String

Gets the id of the resource.

name
String

Gets the name of the connection type.

type
String

Resource type

isGlobal
Nullable<Boolean>

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

fieldDefinitions
IDictionary<String,FieldDefinition>

Gets the field definitions of the connection type.

creationTime
DateTimeOffset

Gets the creation time.

lastModifiedTime
DateTimeOffset

Gets or sets the last modified time.

description
String

Gets or sets the description.

Applies to