Package com.google.cloud.notebooks.v2
Interface CheckInstanceUpgradabilityResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CheckInstanceUpgradabilityResponse
,CheckInstanceUpgradabilityResponse.Builder
public interface CheckInstanceUpgradabilityResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getUpgradeable()
If an instance is upgradeable.String
getUpgradeImage()
The new image self link this instance will be upgraded to if calling the upgrade endpoint.com.google.protobuf.ByteString
getUpgradeImageBytes()
The new image self link this instance will be upgraded to if calling the upgrade endpoint.String
getUpgradeInfo()
Additional information about upgrade.com.google.protobuf.ByteString
getUpgradeInfoBytes()
Additional information about upgrade.String
getUpgradeVersion()
The version this instance will be upgraded to if calling the upgrade endpoint.com.google.protobuf.ByteString
getUpgradeVersionBytes()
The version this instance will be upgraded to if calling the upgrade endpoint.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUpgradeable
boolean getUpgradeable()
If an instance is upgradeable.
bool upgradeable = 1;
- Returns:
- The upgradeable.
-
getUpgradeVersion
String getUpgradeVersion()
The version this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true.
string upgrade_version = 2;
- Returns:
- The upgradeVersion.
-
getUpgradeVersionBytes
com.google.protobuf.ByteString getUpgradeVersionBytes()
The version this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true.
string upgrade_version = 2;
- Returns:
- The bytes for upgradeVersion.
-
getUpgradeInfo
String getUpgradeInfo()
Additional information about upgrade.
string upgrade_info = 3;
- Returns:
- The upgradeInfo.
-
getUpgradeInfoBytes
com.google.protobuf.ByteString getUpgradeInfoBytes()
Additional information about upgrade.
string upgrade_info = 3;
- Returns:
- The bytes for upgradeInfo.
-
getUpgradeImage
String getUpgradeImage()
The new image self link this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true.
string upgrade_image = 4;
- Returns:
- The upgradeImage.
-
getUpgradeImageBytes
com.google.protobuf.ByteString getUpgradeImageBytes()
The new image self link this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true.
string upgrade_image = 4;
- Returns:
- The bytes for upgradeImage.
-
-