ManagedClusterJwtAuthenticatorIssuer Constructor
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.
Initializes a new instance of ManagedClusterJwtAuthenticatorIssuer.
public ManagedClusterJwtAuthenticatorIssuer(string uri, System.Collections.Generic.IEnumerable<string> audiences);
new Azure.ResourceManager.ContainerService.Models.ManagedClusterJwtAuthenticatorIssuer : string * seq<string> -> Azure.ResourceManager.ContainerService.Models.ManagedClusterJwtAuthenticatorIssuer
Public Sub New (uri As String, audiences As IEnumerable(Of String))
Parameters
- uri
- String
The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
- audiences
- IEnumerable<String>
The set of acceptable audiences the JWT must be issued to. At least one is required. When multiple is set, AudienceMatchPolicy is used in API Server configuration.
Exceptions
uri or audiences is null.