Interface GetVersionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GetVersionRequest
,GetVersionRequest.Builder
public interface GetVersionRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
The name of the version to retrieve.com.google.protobuf.ByteString
getNameBytes()
The name of the version to retrieve.VersionView
getView()
The view that should be returned in the response.int
getViewValue()
The view that should be returned in the response.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The name of the version to retrieve.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the version to retrieve.
string name = 1;
- Returns:
- The bytes for name.
-
getViewValue
int getViewValue()
The view that should be returned in the response.
.google.devtools.artifactregistry.v1.VersionView view = 2;
- Returns:
- The enum numeric value on the wire for view.
-
getView
VersionView getView()
The view that should be returned in the response.
.google.devtools.artifactregistry.v1.VersionView view = 2;
- Returns:
- The view.
-
-