Interface OperationMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OperationMetadata,OperationMetadata.Builder
public interface OperationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetResourceNames(int index)The full name of the resources that this operation is directly associated with.com.google.protobuf.ByteStringgetResourceNamesBytes(int index)The full name of the resources that this operation is directly associated with.intgetResourceNamesCount()The full name of the resources that this operation is directly associated with.List<String>getResourceNamesList()The full name of the resources that this operation is directly associated with.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourceNamesList
List<String> getResourceNamesList()
The full name of the resources that this operation is directly associated with.
repeated string resource_names = 2;- Returns:
- A list containing the resourceNames.
-
getResourceNamesCount
int getResourceNamesCount()
The full name of the resources that this operation is directly associated with.
repeated string resource_names = 2;- Returns:
- The count of resourceNames.
-
getResourceNames
String getResourceNames(int index)
The full name of the resources that this operation is directly associated with.
repeated string resource_names = 2;- Parameters:
index- The index of the element to return.- Returns:
- The resourceNames at the given index.
-
getResourceNamesBytes
com.google.protobuf.ByteString getResourceNamesBytes(int index)
The full name of the resources that this operation is directly associated with.
repeated string resource_names = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the resourceNames at the given index.
-
-