ConnectionProfile Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ConnectionProfile() |
Initializes a new instance of the ConnectionProfile class. |
ConnectionProfile(Nullable<ConnectionType>, Nullable<ConnectionType>, Nullable<ConnectionType>, Nullable<ConnectionType>) |
Initializes a new instance of the ConnectionProfile class. |
ConnectionProfile()
Initializes a new instance of the ConnectionProfile class.
public ConnectionProfile ();
Public Sub New ()
Applies to
ConnectionProfile(Nullable<ConnectionType>, Nullable<ConnectionType>, Nullable<ConnectionType>, Nullable<ConnectionType>)
Initializes a new instance of the ConnectionProfile class.
public ConnectionProfile (Microsoft.Azure.Management.LabServices.Models.ConnectionType? webSshAccess = default, Microsoft.Azure.Management.LabServices.Models.ConnectionType? webRdpAccess = default, Microsoft.Azure.Management.LabServices.Models.ConnectionType? clientSshAccess = default, Microsoft.Azure.Management.LabServices.Models.ConnectionType? clientRdpAccess = default);
new Microsoft.Azure.Management.LabServices.Models.ConnectionProfile : Nullable<Microsoft.Azure.Management.LabServices.Models.ConnectionType> * Nullable<Microsoft.Azure.Management.LabServices.Models.ConnectionType> * Nullable<Microsoft.Azure.Management.LabServices.Models.ConnectionType> * Nullable<Microsoft.Azure.Management.LabServices.Models.ConnectionType> -> Microsoft.Azure.Management.LabServices.Models.ConnectionProfile
Public Sub New (Optional webSshAccess As Nullable(Of ConnectionType) = Nothing, Optional webRdpAccess As Nullable(Of ConnectionType) = Nothing, Optional clientSshAccess As Nullable(Of ConnectionType) = Nothing, Optional clientRdpAccess As Nullable(Of ConnectionType) = Nothing)
Parameters
- webSshAccess
- Nullable<ConnectionType>
The enabled access level for Web Access over SSH. Possible values include: 'Public', 'Private', 'None'
- webRdpAccess
- Nullable<ConnectionType>
The enabled access level for Web Access over RDP. Possible values include: 'Public', 'Private', 'None'
- clientSshAccess
- Nullable<ConnectionType>
The enabled access level for Client Access over SSH. Possible values include: 'Public', 'Private', 'None'
- clientRdpAccess
- Nullable<ConnectionType>
The enabled access level for Client Access over RDP. Possible values include: 'Public', 'Private', 'None'
Applies to
Azure SDK for .NET