TrustedAccessRoleRule Constructors

Definition

Overloads

Name Description
TrustedAccessRoleRule()

Initializes a new instance of the TrustedAccessRoleRule class.

TrustedAccessRoleRule(IList<String>, IList<String>, IList<String>, IList<String>, IList<String>)

Initializes a new instance of the TrustedAccessRoleRule class.

TrustedAccessRoleRule()

Initializes a new instance of the TrustedAccessRoleRule class.

public TrustedAccessRoleRule();
Public Sub New ()

Applies to

TrustedAccessRoleRule(IList<String>, IList<String>, IList<String>, IList<String>, IList<String>)

Initializes a new instance of the TrustedAccessRoleRule class.

public TrustedAccessRoleRule(System.Collections.Generic.IList<string> verbs = default, System.Collections.Generic.IList<string> apiGroups = default, System.Collections.Generic.IList<string> resources = default, System.Collections.Generic.IList<string> resourceNames = default, System.Collections.Generic.IList<string> nonResourceUrLs = default);
new Microsoft.Azure.Management.ContainerService.Models.TrustedAccessRoleRule : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.ContainerService.Models.TrustedAccessRoleRule
Public Sub New (Optional verbs As IList(Of String) = Nothing, Optional apiGroups As IList(Of String) = Nothing, Optional resources As IList(Of String) = Nothing, Optional resourceNames As IList(Of String) = Nothing, Optional nonResourceUrLs As IList(Of String) = Nothing)

Parameters

verbs
IList<String>

List of allowed verbs

apiGroups
IList<String>

List of allowed apiGroups

resources
IList<String>

List of allowed resources

resourceNames
IList<String>

List of allowed names

nonResourceUrLs
IList<String>

List of allowed nonResourceURLs

Applies to