Package com.google.cloud.compute.v1
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.booleanhasKey()Key for the guest attribute entry.booleanhasNamespace()Namespace for the guest attribute entry.booleanhasValue()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
-
hasKey
boolean hasKey()
Key for the guest attribute entry.
optional string key = 106079;- Returns:
- Whether the key field is set.
-
getKey
String getKey()
Key for the guest attribute entry.
optional string key = 106079;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
Key for the guest attribute entry.
optional string key = 106079;- Returns:
- The bytes for key.
-
hasNamespace
boolean hasNamespace()
Namespace for the guest attribute entry.
optional string namespace = 178476379;- Returns:
- Whether the namespace field is set.
-
getNamespace
String getNamespace()
Namespace for the guest attribute entry.
optional string namespace = 178476379;- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()
Namespace for the guest attribute entry.
optional string namespace = 178476379;- Returns:
- The bytes for namespace.
-
hasValue
boolean hasValue()
Value for the guest attribute entry.
optional string value = 111972721;- Returns:
- Whether the value field is set.
-
getValue
String getValue()
Value for the guest attribute entry.
optional string value = 111972721;- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()
Value for the guest attribute entry.
optional string value = 111972721;- Returns:
- The bytes for value.
-
-