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 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.boolean
hasKey()
Key for the guest attribute entry.boolean
hasNamespace()
Namespace for the guest attribute entry.boolean
hasValue()
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.
-
-