Package com.google.cloud.tpu.v2alpha1
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 StringgetKey()Key for the guest attribute entry.com.google.protobuf.ByteStringgetKeyBytes()Key for the guest attribute entry.StringgetNamespace()Namespace for the guest attribute entry.com.google.protobuf.ByteStringgetNamespaceBytes()Namespace for the guest attribute entry.StringgetValue()Value for the guest attribute entry.com.google.protobuf.ByteStringgetValueBytes()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.
-
-