Package com.google.api
Interface SelectiveGapicGenerationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SelectiveGapicGeneration
,SelectiveGapicGeneration.Builder
public interface SelectiveGapicGenerationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getMethods(int index)
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.com.google.protobuf.ByteString
getMethodsBytes(int index)
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.int
getMethodsCount()
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.java.util.List<java.lang.String>
getMethodsList()
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMethodsList
java.util.List<java.lang.String> getMethodsList()
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.
repeated string methods = 1;
- Returns:
- A list containing the methods.
-
getMethodsCount
int getMethodsCount()
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.
repeated string methods = 1;
- Returns:
- The count of methods.
-
getMethods
java.lang.String getMethods(int index)
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.
repeated string methods = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The methods at the given index.
-
getMethodsBytes
com.google.protobuf.ByteString getMethodsBytes(int index)
An allowlist of the fully qualified names of RPCs that should be included on public client surfaces.
repeated string methods = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the methods at the given index.
-
-