Package flyteidl.service
Interface Auth.PublicClientAuthConfigResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Auth.PublicClientAuthConfigResponse,Auth.PublicClientAuthConfigResponse.Builder
- Enclosing class:
- Auth
public static interface Auth.PublicClientAuthConfigResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthorizationMetadataKey()Authorization Header to use when passing Access Tokens to the server.com.google.protobuf.ByteStringgetAuthorizationMetadataKeyBytes()Authorization Header to use when passing Access Tokens to the server.StringgetClientId()client_id to use when initiating OAuth2 authorization requests.com.google.protobuf.ByteStringgetClientIdBytes()client_id to use when initiating OAuth2 authorization requests.StringgetRedirectUri()redirect uri to use when initiating OAuth2 authorization requests.com.google.protobuf.ByteStringgetRedirectUriBytes()redirect uri to use when initiating OAuth2 authorization requests.StringgetScopes(int index)scopes to request when initiating OAuth2 authorization requests.com.google.protobuf.ByteStringgetScopesBytes(int index)scopes to request when initiating OAuth2 authorization requests.intgetScopesCount()scopes to request when initiating OAuth2 authorization requests.List<String>getScopesList()scopes to request when initiating OAuth2 authorization requests.StringgetServiceHttpEndpoint()ServiceHttpEndpoint points to the http endpoint for the backend.com.google.protobuf.ByteStringgetServiceHttpEndpointBytes()ServiceHttpEndpoint points to the http endpoint for the backend.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getClientId
String getClientId()
client_id to use when initiating OAuth2 authorization requests.
string client_id = 1;- Returns:
- The clientId.
-
getClientIdBytes
com.google.protobuf.ByteString getClientIdBytes()
client_id to use when initiating OAuth2 authorization requests.
string client_id = 1;- Returns:
- The bytes for clientId.
-
getRedirectUri
String getRedirectUri()
redirect uri to use when initiating OAuth2 authorization requests.
string redirect_uri = 2;- Returns:
- The redirectUri.
-
getRedirectUriBytes
com.google.protobuf.ByteString getRedirectUriBytes()
redirect uri to use when initiating OAuth2 authorization requests.
string redirect_uri = 2;- Returns:
- The bytes for redirectUri.
-
getScopesList
List<String> getScopesList()
scopes to request when initiating OAuth2 authorization requests.
repeated string scopes = 3;- Returns:
- A list containing the scopes.
-
getScopesCount
int getScopesCount()
scopes to request when initiating OAuth2 authorization requests.
repeated string scopes = 3;- Returns:
- The count of scopes.
-
getScopes
String getScopes(int index)
scopes to request when initiating OAuth2 authorization requests.
repeated string scopes = 3;- Parameters:
index- The index of the element to return.- Returns:
- The scopes at the given index.
-
getScopesBytes
com.google.protobuf.ByteString getScopesBytes(int index)
scopes to request when initiating OAuth2 authorization requests.
repeated string scopes = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the scopes at the given index.
-
getAuthorizationMetadataKey
String getAuthorizationMetadataKey()
Authorization Header to use when passing Access Tokens to the server. If not provided, the client should use the default http `Authorization` header.
string authorization_metadata_key = 4;- Returns:
- The authorizationMetadataKey.
-
getAuthorizationMetadataKeyBytes
com.google.protobuf.ByteString getAuthorizationMetadataKeyBytes()
Authorization Header to use when passing Access Tokens to the server. If not provided, the client should use the default http `Authorization` header.
string authorization_metadata_key = 4;- Returns:
- The bytes for authorizationMetadataKey.
-
getServiceHttpEndpoint
String getServiceHttpEndpoint()
ServiceHttpEndpoint points to the http endpoint for the backend. If empty, clients can assume the endpoint used to configure the gRPC connection can be used for the http one respecting the insecure flag to choose between SSL or no SSL connections.
string service_http_endpoint = 5;- Returns:
- The serviceHttpEndpoint.
-
getServiceHttpEndpointBytes
com.google.protobuf.ByteString getServiceHttpEndpointBytes()
ServiceHttpEndpoint points to the http endpoint for the backend. If empty, clients can assume the endpoint used to configure the gRPC connection can be used for the http one respecting the insecure flag to choose between SSL or no SSL connections.
string service_http_endpoint = 5;- Returns:
- The bytes for serviceHttpEndpoint.
-
-