Class ImageVersion (1.42.0)

public final class ImageVersion extends GeneratedMessageV3 implements ImageVersionOrBuilder

ImageVersion information

Protobuf type google.cloud.orchestration.airflow.service.v1.ImageVersion

Static Fields

CREATION_DISABLED_FIELD_NUMBER

public static final int CREATION_DISABLED_FIELD_NUMBER
Field Value
Type Description
int

IMAGE_VERSION_ID_FIELD_NUMBER

public static final int IMAGE_VERSION_ID_FIELD_NUMBER
Field Value
Type Description
int

IS_DEFAULT_FIELD_NUMBER

public static final int IS_DEFAULT_FIELD_NUMBER
Field Value
Type Description
int

RELEASE_DATE_FIELD_NUMBER

public static final int RELEASE_DATE_FIELD_NUMBER
Field Value
Type Description
int

SUPPORTED_PYTHON_VERSIONS_FIELD_NUMBER

public static final int SUPPORTED_PYTHON_VERSIONS_FIELD_NUMBER
Field Value
Type Description
int

UPGRADE_DISABLED_FIELD_NUMBER

public static final int UPGRADE_DISABLED_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static ImageVersion getDefaultInstance()
Returns
Type Description
ImageVersion

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static ImageVersion.Builder newBuilder()
Returns
Type Description
ImageVersion.Builder

newBuilder(ImageVersion prototype)

public static ImageVersion.Builder newBuilder(ImageVersion prototype)
Parameter
Name Description
prototype ImageVersion
Returns
Type Description
ImageVersion.Builder

parseDelimitedFrom(InputStream input)

public static ImageVersion parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
ImageVersion
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static ImageVersion parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ImageVersion
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static ImageVersion parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
ImageVersion
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static ImageVersion parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ImageVersion
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static ImageVersion parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
ImageVersion
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static ImageVersion parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ImageVersion
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static ImageVersion parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
ImageVersion
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static ImageVersion parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ImageVersion
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static ImageVersion parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
ImageVersion
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static ImageVersion parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ImageVersion
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static ImageVersion parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
ImageVersion
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static ImageVersion parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ImageVersion
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<ImageVersion> parser()
Returns
Type Description
Parser<ImageVersion>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getCreationDisabled()

public boolean getCreationDisabled()

Whether it is impossible to create an environment with the image version.

bool creation_disabled = 5;

Returns
Type Description
boolean

The creationDisabled.

getDefaultInstanceForType()

public ImageVersion getDefaultInstanceForType()
Returns
Type Description
ImageVersion

getImageVersionId()

public String getImageVersionId()

The string identifier of the ImageVersion, in the form: "composer-x.y.z-airflow-a.b.c"

string image_version_id = 1;

Returns
Type Description
String

The imageVersionId.

getImageVersionIdBytes()

public ByteString getImageVersionIdBytes()

The string identifier of the ImageVersion, in the form: "composer-x.y.z-airflow-a.b.c"

string image_version_id = 1;

Returns
Type Description
ByteString

The bytes for imageVersionId.

getIsDefault()

public boolean getIsDefault()

Whether this is the default ImageVersion used by Composer during environment creation if no input ImageVersion is specified.

bool is_default = 2;

Returns
Type Description
boolean

The isDefault.

getParserForType()

public Parser<ImageVersion> getParserForType()
Returns
Type Description
Parser<ImageVersion>
Overrides

getReleaseDate()

public Date getReleaseDate()

The date of the version release.

.google.type.Date release_date = 4;

Returns
Type Description
com.google.type.Date

The releaseDate.

getReleaseDateOrBuilder()

public DateOrBuilder getReleaseDateOrBuilder()

The date of the version release.

.google.type.Date release_date = 4;

Returns
Type Description
com.google.type.DateOrBuilder

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

getSupportedPythonVersions(int index)

public String getSupportedPythonVersions(int index)

supported python versions

repeated string supported_python_versions = 3;

Parameter
Name Description
index int

The index of the element to return.

Returns
Type Description
String

The supportedPythonVersions at the given index.

getSupportedPythonVersionsBytes(int index)

public ByteString getSupportedPythonVersionsBytes(int index)

supported python versions

repeated string supported_python_versions = 3;

Parameter
Name Description
index int

The index of the value to return.

Returns
Type Description
ByteString

The bytes of the supportedPythonVersions at the given index.

getSupportedPythonVersionsCount()

public int getSupportedPythonVersionsCount()

supported python versions

repeated string supported_python_versions = 3;

Returns
Type Description
int

The count of supportedPythonVersions.

getSupportedPythonVersionsList()

public ProtocolStringList getSupportedPythonVersionsList()

supported python versions

repeated string supported_python_versions = 3;

Returns
Type Description
ProtocolStringList

A list containing the supportedPythonVersions.

getUpgradeDisabled()

public boolean getUpgradeDisabled()

Whether it is impossible to upgrade an environment running with the image version.

bool upgrade_disabled = 6;

Returns
Type Description
boolean

The upgradeDisabled.

hasReleaseDate()

public boolean hasReleaseDate()

The date of the version release.

.google.type.Date release_date = 4;

Returns
Type Description
boolean

Whether the releaseDate field is set.

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public ImageVersion.Builder newBuilderForType()
Returns
Type Description
ImageVersion.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected ImageVersion.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
ImageVersion.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder()

public ImageVersion.Builder toBuilder()
Returns
Type Description
ImageVersion.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException