Class Application.IdentityAwareProxy (2.3.3)

public static final class Application.IdentityAwareProxy extends GeneratedMessageV3 implements Application.IdentityAwareProxyOrBuilder

Identity-Aware Proxy

Protobuf type google.appengine.v1.Application.IdentityAwareProxy

Inheritance

Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > Application.IdentityAwareProxy

Static Fields

ENABLED_FIELD_NUMBER

public static final int ENABLED_FIELD_NUMBER
Field Value
TypeDescription
int

OAUTH2_CLIENT_ID_FIELD_NUMBER

public static final int OAUTH2_CLIENT_ID_FIELD_NUMBER
Field Value
TypeDescription
int

OAUTH2_CLIENT_SECRET_FIELD_NUMBER

public static final int OAUTH2_CLIENT_SECRET_FIELD_NUMBER
Field Value
TypeDescription
int

OAUTH2_CLIENT_SECRET_SHA256_FIELD_NUMBER

public static final int OAUTH2_CLIENT_SECRET_SHA256_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static Application.IdentityAwareProxy getDefaultInstance()
Returns
TypeDescription
Application.IdentityAwareProxy

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static Application.IdentityAwareProxy.Builder newBuilder()
Returns
TypeDescription
Application.IdentityAwareProxy.Builder

newBuilder(Application.IdentityAwareProxy prototype)

public static Application.IdentityAwareProxy.Builder newBuilder(Application.IdentityAwareProxy prototype)
Parameter
NameDescription
prototypeApplication.IdentityAwareProxy
Returns
TypeDescription
Application.IdentityAwareProxy.Builder

parseDelimitedFrom(InputStream input)

public static Application.IdentityAwareProxy parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static Application.IdentityAwareProxy parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static Application.IdentityAwareProxy parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static Application.IdentityAwareProxy parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static Application.IdentityAwareProxy parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static Application.IdentityAwareProxy parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static Application.IdentityAwareProxy parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static Application.IdentityAwareProxy parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static Application.IdentityAwareProxy parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static Application.IdentityAwareProxy parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static Application.IdentityAwareProxy parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static Application.IdentityAwareProxy parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Application.IdentityAwareProxy
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<Application.IdentityAwareProxy> parser()
Returns
TypeDescription
Parser<IdentityAwareProxy>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getDefaultInstanceForType()

public Application.IdentityAwareProxy getDefaultInstanceForType()
Returns
TypeDescription
Application.IdentityAwareProxy

getEnabled()

public boolean getEnabled()

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

bool enabled = 1;

Returns
TypeDescription
boolean

The enabled.

getOauth2ClientId()

public String getOauth2ClientId()

OAuth2 client ID to use for the authentication flow.

string oauth2_client_id = 2;

Returns
TypeDescription
String

The oauth2ClientId.

getOauth2ClientIdBytes()

public ByteString getOauth2ClientIdBytes()

OAuth2 client ID to use for the authentication flow.

string oauth2_client_id = 2;

Returns
TypeDescription
ByteString

The bytes for oauth2ClientId.

getOauth2ClientSecret()

public String getOauth2ClientSecret()

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 oauth2_client_secret_sha256 field. @InputOnly

string oauth2_client_secret = 3;

Returns
TypeDescription
String

The oauth2ClientSecret.

getOauth2ClientSecretBytes()

public ByteString getOauth2ClientSecretBytes()

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 oauth2_client_secret_sha256 field. @InputOnly

string oauth2_client_secret = 3;

Returns
TypeDescription
ByteString

The bytes for oauth2ClientSecret.

getOauth2ClientSecretSha256()

public String getOauth2ClientSecretSha256()

Hex-encoded SHA-256 hash of the client secret. @OutputOnly

string oauth2_client_secret_sha256 = 4;

Returns
TypeDescription
String

The oauth2ClientSecretSha256.

getOauth2ClientSecretSha256Bytes()

public ByteString getOauth2ClientSecretSha256Bytes()

Hex-encoded SHA-256 hash of the client secret. @OutputOnly

string oauth2_client_secret_sha256 = 4;

Returns
TypeDescription
ByteString

The bytes for oauth2ClientSecretSha256.

getParserForType()

public Parser<Application.IdentityAwareProxy> getParserForType()
Returns
TypeDescription
Parser<IdentityAwareProxy>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getUnknownFields()

public final UnknownFieldSet getUnknownFields()
Returns
TypeDescription
UnknownFieldSet
Overrides

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public Application.IdentityAwareProxy.Builder newBuilderForType()
Returns
TypeDescription
Application.IdentityAwareProxy.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected Application.IdentityAwareProxy.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
Application.IdentityAwareProxy.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public Application.IdentityAwareProxy.Builder toBuilder()
Returns
TypeDescription
Application.IdentityAwareProxy.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides Exceptions
TypeDescription
IOException