Package com.google.cloud.shell.v1
Interface RemovePublicKeyRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RemovePublicKeyRequest
,RemovePublicKeyRequest.Builder
public interface RemovePublicKeyRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEnvironment()
Environment this key should be removed from, e.g.com.google.protobuf.ByteString
getEnvironmentBytes()
Environment this key should be removed from, e.g.String
getKey()
Key that should be removed from the environment.com.google.protobuf.ByteString
getKeyBytes()
Key that should be removed from the environment.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEnvironment
String getEnvironment()
Environment this key should be removed from, e.g. `users/me/environments/default`.
string environment = 1;
- Returns:
- The environment.
-
getEnvironmentBytes
com.google.protobuf.ByteString getEnvironmentBytes()
Environment this key should be removed from, e.g. `users/me/environments/default`.
string environment = 1;
- Returns:
- The bytes for environment.
-
getKey
String getKey()
Key that should be removed from the environment.
string key = 2;
- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
Key that should be removed from the environment.
string key = 2;
- Returns:
- The bytes for key.
-
-