Show / Hide Table of Contents

Class Authentication

Authentication defines the authentication configuration for an API. Example for an API targeted for external use: 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

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

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.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
System.Collections.Generic.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
System.Collections.Generic.IList<AuthenticationRule>

Implements

IDirectResponseSchema
In This Article
Back to top