Package flyteidl.core
Interface Security.OAuth2ClientOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Security.OAuth2Client,Security.OAuth2Client.Builder
- Enclosing class:
- Security
public static interface Security.OAuth2ClientOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetClientId()client_id is the public id for the client to use.com.google.protobuf.ByteStringgetClientIdBytes()client_id is the public id for the client to use.Security.SecretgetClientSecret()client_secret is a reference to the secret used to authenticate the OAuth2 client.Security.SecretOrBuildergetClientSecretOrBuilder()client_secret is a reference to the secret used to authenticate the OAuth2 client.booleanhasClientSecret()client_secret is a reference to the secret used to authenticate the OAuth2 client.-
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 is the public id for the client to use. The system will not perform any pre-auth validation that the secret requested matches the client_id indicated here. +required
string client_id = 1;- Returns:
- The clientId.
-
getClientIdBytes
com.google.protobuf.ByteString getClientIdBytes()
client_id is the public id for the client to use. The system will not perform any pre-auth validation that the secret requested matches the client_id indicated here. +required
string client_id = 1;- Returns:
- The bytes for clientId.
-
hasClientSecret
boolean hasClientSecret()
client_secret is a reference to the secret used to authenticate the OAuth2 client. +required
.flyteidl.core.Secret client_secret = 2;- Returns:
- Whether the clientSecret field is set.
-
getClientSecret
Security.Secret getClientSecret()
client_secret is a reference to the secret used to authenticate the OAuth2 client. +required
.flyteidl.core.Secret client_secret = 2;- Returns:
- The clientSecret.
-
getClientSecretOrBuilder
Security.SecretOrBuilder getClientSecretOrBuilder()
client_secret is a reference to the secret used to authenticate the OAuth2 client. +required
.flyteidl.core.Secret client_secret = 2;
-
-