Show / Hide Table of Contents

Class Authentication

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

Inheritance
object
Authentication
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.ServiceUsage.v1beta1.Data
Assembly: Google.Apis.ServiceUsage.v1beta1.dll
Syntax
public class Authentication : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Providers

Defines a set of authentication providers that a service supports.

Declaration
[JsonProperty("providers")]
public virtual IList<AuthProvider> Providers { get; set; }
Property Value
Type Description
IList<AuthProvider>

Rules

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

Declaration
[JsonProperty("rules")]
public virtual IList<AuthenticationRule> Rules { get; set; }
Property Value
Type Description
IList<AuthenticationRule>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX