Package com.google.cloud.tpu.v2
Interface GuestAttributesEntryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GuestAttributesEntry
,GuestAttributesEntry.Builder
public interface GuestAttributesEntryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKey()
Key for the guest attribute entry.com.google.protobuf.ByteString
getKeyBytes()
Key for the guest attribute entry.String
getNamespace()
Namespace for the guest attribute entry.com.google.protobuf.ByteString
getNamespaceBytes()
Namespace for the guest attribute entry.String
getValue()
Value for the guest attribute entry.com.google.protobuf.ByteString
getValueBytes()
Value for the guest attribute entry.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNamespace
String getNamespace()
Namespace for the guest attribute entry.
string namespace = 1;
- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()
Namespace for the guest attribute entry.
string namespace = 1;
- Returns:
- The bytes for namespace.
-
getKey
String getKey()
Key for the guest attribute entry.
string key = 2;
- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
Key for the guest attribute entry.
string key = 2;
- Returns:
- The bytes for key.
-
getValue
String getValue()
Value for the guest attribute entry.
string value = 3;
- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()
Value for the guest attribute entry.
string value = 3;
- Returns:
- The bytes for value.
-
-