Package com.google.cloud.tpu.v2
Interface GuestAttributesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GuestAttributes
,GuestAttributes.Builder
public interface GuestAttributesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getQueryPath()
The path to be queried.com.google.protobuf.ByteString
getQueryPathBytes()
The path to be queried.GuestAttributesValue
getQueryValue()
The value of the requested queried path.GuestAttributesValueOrBuilder
getQueryValueOrBuilder()
The value of the requested queried path.boolean
hasQueryValue()
The value of the requested queried path.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getQueryPath
String getQueryPath()
The path to be queried. This can be the default namespace ('/') or a nested namespace ('/\<namespace\>/') or a specified key ('/\<namespace\>/\<key\>')
string query_path = 1;
- Returns:
- The queryPath.
-
getQueryPathBytes
com.google.protobuf.ByteString getQueryPathBytes()
The path to be queried. This can be the default namespace ('/') or a nested namespace ('/\<namespace\>/') or a specified key ('/\<namespace\>/\<key\>')
string query_path = 1;
- Returns:
- The bytes for queryPath.
-
hasQueryValue
boolean hasQueryValue()
The value of the requested queried path.
.google.cloud.tpu.v2.GuestAttributesValue query_value = 2;
- Returns:
- Whether the queryValue field is set.
-
getQueryValue
GuestAttributesValue getQueryValue()
The value of the requested queried path.
.google.cloud.tpu.v2.GuestAttributesValue query_value = 2;
- Returns:
- The queryValue.
-
getQueryValueOrBuilder
GuestAttributesValueOrBuilder getQueryValueOrBuilder()
The value of the requested queried path.
.google.cloud.tpu.v2.GuestAttributesValue query_value = 2;
-
-