class Google::Apis::ComposerV1beta1::CheckUpgradeResponse
Message containing information about the result of an upgrade check operation.
Attributes
Output only. Url for a docker build log of an upgraded image. Corresponds to the JSON property `buildLogUri` @return [String]
Output only. Whether build has succeeded or failed on modules conflicts. Corresponds to the JSON property `containsPypiModulesConflict` @return [String]
Composer image for which the build was happening. Corresponds to the JSON property `imageVersion` @return [String]
Output only. Extract from a docker image build log containing information about pypi modules conflicts. Corresponds to the JSON property `pypiConflictBuildLogExtract` @return [String]
Pypi dependencies specified in the environment configuration, at the time when the build was triggered. Corresponds to the JSON property `pypiDependencies` @return [Hash<String,String>]
Public Class Methods
# File lib/google/apis/composer_v1beta1/classes.rb, line 117 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/composer_v1beta1/classes.rb, line 122 def update!(**args) @build_log_uri = args[:build_log_uri] if args.key?(:build_log_uri) @contains_pypi_modules_conflict = args[:contains_pypi_modules_conflict] if args.key?(:contains_pypi_modules_conflict) @image_version = args[:image_version] if args.key?(:image_version) @pypi_conflict_build_log_extract = args[:pypi_conflict_build_log_extract] if args.key?(:pypi_conflict_build_log_extract) @pypi_dependencies = args[:pypi_dependencies] if args.key?(:pypi_dependencies) end