Interface CreateApiKeyResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateApiKeyResponse,CreateApiKeyResponse.Builder
@Generated(value="protoc", comments="annotations:CreateApiKeyResponseOrBuilder.java.pb.meta") public interface CreateApiKeyResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AsyncOperationgetAsyncOperation()The async operation.AsyncOperationOrBuildergetAsyncOperationOrBuilder()The async operation.java.lang.StringgetKeyId()The id of the api key created.com.google.protobuf.ByteStringgetKeyIdBytes()The id of the api key created.java.lang.StringgetToken()The token of the api key created.com.google.protobuf.ByteStringgetTokenBytes()The token of the api key created.booleanhasAsyncOperation()The async operation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKeyId
java.lang.String getKeyId()
The id of the api key created.
string key_id = 1;- Returns:
- The keyId.
-
getKeyIdBytes
com.google.protobuf.ByteString getKeyIdBytes()
The id of the api key created.
string key_id = 1;- Returns:
- The bytes for keyId.
-
getToken
java.lang.String getToken()
The token of the api key created. This is a secret and should be stored securely. It will not be retrievable after this response.
string token = 2;- Returns:
- The token.
-
getTokenBytes
com.google.protobuf.ByteString getTokenBytes()
The token of the api key created. This is a secret and should be stored securely. It will not be retrievable after this response.
string token = 2;- Returns:
- The bytes for token.
-
hasAsyncOperation
boolean hasAsyncOperation()
The async operation.
.temporal.api.cloud.operation.v1.AsyncOperation async_operation = 3;- Returns:
- Whether the asyncOperation field is set.
-
getAsyncOperation
AsyncOperation getAsyncOperation()
The async operation.
.temporal.api.cloud.operation.v1.AsyncOperation async_operation = 3;- Returns:
- The asyncOperation.
-
getAsyncOperationOrBuilder
AsyncOperationOrBuilder getAsyncOperationOrBuilder()
The async operation.
.temporal.api.cloud.operation.v1.AsyncOperation async_operation = 3;
-
-