Interface ImageVersionOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ImageVersion, ImageVersion.Builder

    public interface ImageVersionOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getCreationDisabled()
      Whether it is impossible to create an environment with the image version.
      String getImageVersionId()
      The string identifier of the ImageVersion, in the form: "composer-x.y.z-airflow-a.b.c"
      com.google.protobuf.ByteString getImageVersionIdBytes()
      The string identifier of the ImageVersion, in the form: "composer-x.y.z-airflow-a.b.c"
      boolean getIsDefault()
      Whether this is the default ImageVersion used by Composer during environment creation if no input ImageVersion is specified.
      com.google.type.Date getReleaseDate()
      The date of the version release.
      com.google.type.DateOrBuilder getReleaseDateOrBuilder()
      The date of the version release.
      String getSupportedPythonVersions​(int index)
      supported python versions
      com.google.protobuf.ByteString getSupportedPythonVersionsBytes​(int index)
      supported python versions
      int getSupportedPythonVersionsCount()
      supported python versions
      List<String> getSupportedPythonVersionsList()
      supported python versions
      boolean getUpgradeDisabled()
      Whether it is impossible to upgrade an environment running with the image version.
      boolean hasReleaseDate()
      The date of the version release.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getImageVersionId

        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:
        The imageVersionId.
      • getImageVersionIdBytes

        com.google.protobuf.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:
        The bytes for imageVersionId.
      • getIsDefault

        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:
        The isDefault.
      • getSupportedPythonVersionsList

        List<String> getSupportedPythonVersionsList()
         supported python versions
         
        repeated string supported_python_versions = 3;
        Returns:
        A list containing the supportedPythonVersions.
      • getSupportedPythonVersionsCount

        int getSupportedPythonVersionsCount()
         supported python versions
         
        repeated string supported_python_versions = 3;
        Returns:
        The count of supportedPythonVersions.
      • getSupportedPythonVersions

        String getSupportedPythonVersions​(int index)
         supported python versions
         
        repeated string supported_python_versions = 3;
        Parameters:
        index - The index of the element to return.
        Returns:
        The supportedPythonVersions at the given index.
      • getSupportedPythonVersionsBytes

        com.google.protobuf.ByteString getSupportedPythonVersionsBytes​(int index)
         supported python versions
         
        repeated string supported_python_versions = 3;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the supportedPythonVersions at the given index.
      • hasReleaseDate

        boolean hasReleaseDate()
         The date of the version release.
         
        .google.type.Date release_date = 4;
        Returns:
        Whether the releaseDate field is set.
      • getReleaseDate

        com.google.type.Date getReleaseDate()
         The date of the version release.
         
        .google.type.Date release_date = 4;
        Returns:
        The releaseDate.
      • getReleaseDateOrBuilder

        com.google.type.DateOrBuilder getReleaseDateOrBuilder()
         The date of the version release.
         
        .google.type.Date release_date = 4;
      • getCreationDisabled

        boolean getCreationDisabled()
         Whether it is impossible to create an environment with the image version.
         
        bool creation_disabled = 5;
        Returns:
        The creationDisabled.
      • getUpgradeDisabled

        boolean getUpgradeDisabled()
         Whether it is impossible to upgrade an environment running with the image
         version.
         
        bool upgrade_disabled = 6;
        Returns:
        The upgradeDisabled.