Interface ListPythonPackagesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPythonPackagesResponse
,ListPythonPackagesResponse.Builder
public interface ListPythonPackagesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.com.google.protobuf.ByteString
getNextPageTokenBytes()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.PythonPackage
getPythonPackages(int index)
The python packages returned.int
getPythonPackagesCount()
The python packages returned.List<PythonPackage>
getPythonPackagesList()
The python packages returned.PythonPackageOrBuilder
getPythonPackagesOrBuilder(int index)
The python packages returned.List<? extends PythonPackageOrBuilder>
getPythonPackagesOrBuilderList()
The python packages returned.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPythonPackagesList
List<PythonPackage> getPythonPackagesList()
The python packages returned.
repeated .google.devtools.artifactregistry.v1.PythonPackage python_packages = 1;
-
getPythonPackages
PythonPackage getPythonPackages(int index)
The python packages returned.
repeated .google.devtools.artifactregistry.v1.PythonPackage python_packages = 1;
-
getPythonPackagesCount
int getPythonPackagesCount()
The python packages returned.
repeated .google.devtools.artifactregistry.v1.PythonPackage python_packages = 1;
-
getPythonPackagesOrBuilderList
List<? extends PythonPackageOrBuilder> getPythonPackagesOrBuilderList()
The python packages returned.
repeated .google.devtools.artifactregistry.v1.PythonPackage python_packages = 1;
-
getPythonPackagesOrBuilder
PythonPackageOrBuilder getPythonPackagesOrBuilder(int index)
The python packages returned.
repeated .google.devtools.artifactregistry.v1.PythonPackage python_packages = 1;
-
getNextPageToken
String getNextPageToken()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-