AuthenticationArgs

data class AuthenticationArgs(val providers: Output<List<AuthProviderArgs>>? = null, val rules: Output<List<AuthenticationRuleArgs>>? = null) : ConvertibleToJava<AuthenticationArgs>

Authentication defines the authentication configuration for API methods provided by an API service. Example: name: calendar.googleapis.com authentication: providers: - id: google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: - selector: "*" requirements: provider_id: google_calendar_auth - selector: google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/auth/calendar.read

Constructors

Link copied to clipboard
fun AuthenticationArgs(providers: Output<List<AuthProviderArgs>>? = null, rules: Output<List<AuthenticationRuleArgs>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): AuthenticationArgs

Properties

Link copied to clipboard
val providers: Output<List<AuthProviderArgs>>? = null

Defines a set of authentication providers that a service supports.

Link copied to clipboard
val rules: Output<List<AuthenticationRuleArgs>>? = null

A list of authentication rules that apply to individual API methods. NOTE: All service configuration rules follow "last one wins" order.