Authentication Rule Args
data class AuthenticationRuleArgs(val allowWithoutCredential: Output<Boolean>? = null, val oauth: Output<OAuthRequirementsArgs>? = null, val requirements: Output<List<AuthRequirementArgs>>? = null, val selector: Output<String>? = null) : ConvertibleToJava<AuthenticationRuleArgs>
Authentication rules for the service. By default, if a method has any authentication requirements, every request must include a valid credential matching one of the requirements. It's an error to include more than one kind of credential in a single request. If a method doesn't have any auth requirements, request credentials will be ignored.
Constructors
Link copied to clipboard
fun AuthenticationRuleArgs(allowWithoutCredential: Output<Boolean>? = null, oauth: Output<OAuthRequirementsArgs>? = null, requirements: Output<List<AuthRequirementArgs>>? = null, selector: Output<String>? = null)