google-apis-composer_v1 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c53af09adc77e37cbde237a3b19764d3881e68835e38d41eae845089d0e9a6f
4
- data.tar.gz: e803544312e3a7d5cf482a3893e6064f14c6b8a88b17209e821edc469da9f8f9
3
+ metadata.gz: 6fd62ceec21bf39ae28a1d66759968ce30fc765b520d332733032f3f3e443282
4
+ data.tar.gz: 1a1d4db450c2b7cf91931ef39bf75e593b57a6a617f03e8eca4957afed9b7113
5
5
  SHA512:
6
- metadata.gz: 3f0e2051ac98ef3a79ccf8e5e7bd29a9946cfcd361c1e2d0c71b8e41fbe7868260a8980467da9d2b8c57d534b1c3b72dc22070eb40c765f47fdfc79afab67942
7
- data.tar.gz: 69693571d3f6199edb7dc57c08342baa4159ea3ccd625cef3711c7a2b189bac99de9596cea0f09e4df924704dd9a28f66279ef8edd01bc3676f534a916380dd2
6
+ metadata.gz: fbc69e3e34ceaed61ab764a8e9fa3928eddb1ccd65469001a9661a64e805a752fba91df1adedf7e7dd52ae9c184d330fbd36450a4821adcbf6f54a034cbe5309
7
+ data.tar.gz: 64ddcc56aa0f182dc418371ecf9b8169aa95e83d3de735b2582f74aa280bb366bb1d9b5ec97f9dacf03751304325cd27f253d68a2d11d2e29af63724716a968c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-composer_v1
2
2
 
3
+ ### v0.7.0 (2021-05-26)
4
+
5
+ * Regenerated from discovery document revision 20210518
6
+
3
7
  ### v0.6.0 (2021-05-19)
4
8
 
5
9
  * Unspecified changes
@@ -51,6 +51,38 @@ module Google
51
51
  end
52
52
  end
53
53
 
54
+ # Message containing information about the result of an upgrade check operation.
55
+ class CheckUpgradeResponse
56
+ include Google::Apis::Core::Hashable
57
+
58
+ # Output only. Url for a docker build log of an upgraded image.
59
+ # Corresponds to the JSON property `buildLogUri`
60
+ # @return [String]
61
+ attr_accessor :build_log_uri
62
+
63
+ # Output only. Whether build has succeeded or failed on modules conflicts.
64
+ # Corresponds to the JSON property `containsPypiModulesConflict`
65
+ # @return [String]
66
+ attr_accessor :contains_pypi_modules_conflict
67
+
68
+ # Output only. Extract from a docker image build log containing information
69
+ # about pypi modules conflicts.
70
+ # Corresponds to the JSON property `pypiConflictBuildLogExtract`
71
+ # @return [String]
72
+ attr_accessor :pypi_conflict_build_log_extract
73
+
74
+ def initialize(**args)
75
+ update!(**args)
76
+ end
77
+
78
+ # Update properties of this object
79
+ def update!(**args)
80
+ @build_log_uri = args[:build_log_uri] if args.key?(:build_log_uri)
81
+ @contains_pypi_modules_conflict = args[:contains_pypi_modules_conflict] if args.key?(:contains_pypi_modules_conflict)
82
+ @pypi_conflict_build_log_extract = args[:pypi_conflict_build_log_extract] if args.key?(:pypi_conflict_build_log_extract)
83
+ end
84
+ end
85
+
54
86
  # The configuration of Cloud SQL instance that is used by the Apache Airflow
55
87
  # software.
56
88
  class DatabaseConfig
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComposerV1
18
18
  # Version of the google-apis-composer_v1 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210407"
25
+ REVISION = "20210518"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class CheckUpgradeResponse
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class DatabaseConfig
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -156,6 +162,15 @@ module Google
156
162
  end
157
163
  end
158
164
 
165
+ class CheckUpgradeResponse
166
+ # @private
167
+ class Representation < Google::Apis::Core::JsonRepresentation
168
+ property :build_log_uri, as: 'buildLogUri'
169
+ property :contains_pypi_modules_conflict, as: 'containsPypiModulesConflict'
170
+ property :pypi_conflict_build_log_extract, as: 'pypiConflictBuildLogExtract'
171
+ end
172
+ end
173
+
159
174
  class DatabaseConfig
160
175
  # @private
161
176
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-composer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-24 00:00:00.000000000 Z
11
+ date: 2021-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.6.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1
57
57
  post_install_message:
58
58
  rdoc_options: []