Show / Hide Table of Contents

Class BackendServiceIAP

Identity-Aware Proxy

Inheritance
System.Object
BackendServiceIAP
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.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class BackendServiceIAP : IDirectResponseSchema

Properties

Enabled

Whether the serving infrastructure will authenticate and authorize all incoming requests. If true, the oauth2ClientId and oauth2ClientSecret fields must be non-empty.

Declaration
[JsonProperty("enabled")]
public virtual bool? Enabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

Oauth2ClientId

OAuth2 client ID to use for the authentication flow.

Declaration
[JsonProperty("oauth2ClientId")]
public virtual string Oauth2ClientId { get; set; }
Property Value
Type Description
System.String

Oauth2ClientSecret

OAuth2 client secret to use for the authentication flow. For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2ClientSecretSha256 field. @InputOnly

Declaration
[JsonProperty("oauth2ClientSecret")]
public virtual string Oauth2ClientSecret { get; set; }
Property Value
Type Description
System.String

Oauth2ClientSecretSha256

[Output Only] SHA256 hash value for the field oauth2_client_secret above.

Declaration
[JsonProperty("oauth2ClientSecretSha256")]
public virtual string Oauth2ClientSecretSha256 { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top