Share via


Connection Constructors

Definition

Overloads

Connection()

Initializes a new instance of the Connection class.

Connection(String, String, String, ConnectionTypeAssociationProperty, IDictionary<String,String>, DateTimeOffset, DateTimeOffset, String)

Initializes a new instance of the Connection class.

Connection()

Initializes a new instance of the Connection class.

public Connection ();
Public Sub New ()

Applies to

Connection(String, String, String, ConnectionTypeAssociationProperty, IDictionary<String,String>, DateTimeOffset, DateTimeOffset, String)

Initializes a new instance of the Connection class.

public Connection (string id = default, string name = default, string type = default, Microsoft.Azure.Management.Automation.Models.ConnectionTypeAssociationProperty connectionType = default, System.Collections.Generic.IDictionary<string,string> fieldDefinitionValues = default, DateTimeOffset creationTime = default, DateTimeOffset lastModifiedTime = default, string description = default);
new Microsoft.Azure.Management.Automation.Models.Connection : string * string * string * Microsoft.Azure.Management.Automation.Models.ConnectionTypeAssociationProperty * System.Collections.Generic.IDictionary<string, string> * DateTimeOffset * DateTimeOffset * string -> Microsoft.Azure.Management.Automation.Models.Connection
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional connectionType As ConnectionTypeAssociationProperty = Nothing, Optional fieldDefinitionValues As IDictionary(Of String, String) = Nothing, Optional creationTime As DateTimeOffset = Nothing, Optional lastModifiedTime As DateTimeOffset = Nothing, Optional description As String = Nothing)

Parameters

id
String

Fully qualified resource Id for the resource

name
String

The name of the resource

type
String

The type of the resource.

connectionType
ConnectionTypeAssociationProperty

Gets or sets the connectionType of the connection.

fieldDefinitionValues
IDictionary<String,String>

Gets the field definition values of the connection.

creationTime
DateTimeOffset

Gets the creation time.

lastModifiedTime
DateTimeOffset

Gets the last modified time.

description
String

Gets or sets the description.

Applies to