AgentPoolSecurityProfile Constructors

Definition

Overloads

Name Description
AgentPoolSecurityProfile()

Initializes a new instance of the AgentPoolSecurityProfile class.

AgentPoolSecurityProfile(Nullable<Boolean>, Nullable<Boolean>, String)

Initializes a new instance of the AgentPoolSecurityProfile class.

AgentPoolSecurityProfile()

Initializes a new instance of the AgentPoolSecurityProfile class.

public AgentPoolSecurityProfile();
Public Sub New ()

Applies to

AgentPoolSecurityProfile(Nullable<Boolean>, Nullable<Boolean>, String)

Initializes a new instance of the AgentPoolSecurityProfile class.

public AgentPoolSecurityProfile(bool? enableVtpm = default, bool? enableSecureBoot = default, string sshAccess = default);
new Microsoft.Azure.Management.ContainerService.Models.AgentPoolSecurityProfile : Nullable<bool> * Nullable<bool> * string -> Microsoft.Azure.Management.ContainerService.Models.AgentPoolSecurityProfile
Public Sub New (Optional enableVtpm As Nullable(Of Boolean) = Nothing, Optional enableSecureBoot As Nullable(Of Boolean) = Nothing, Optional sshAccess As String = Nothing)

Parameters

enableVtpm
Nullable<Boolean>

vTPM is a Trusted Launch feature for configuring a dedicated secure vault for keys and measurements held locally on the node. For more details, see aka.ms/aks/trustedlaunch. If not specified, the default is false.

enableSecureBoot
Nullable<Boolean>

Secure Boot is a feature of Trusted Launch which ensures that only signed operating systems and drivers can boot. For more details, see aka.ms/aks/trustedlaunch. If not specified, the default is false.

sshAccess
String

SSH access method of an agent pool. Possible values include: 'LocalUser', 'Disabled'

Applies to