google-apis-composer_v1 0.2.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec122c11ba79390ea698af58e84e6cc8dfb2175903628b867c870802ccc47e29
4
- data.tar.gz: dbd6556e078f2351996d05c96e15c725be149cb7566a340d6929f6ef8b81f9e0
3
+ metadata.gz: 6fd62ceec21bf39ae28a1d66759968ce30fc765b520d332733032f3f3e443282
4
+ data.tar.gz: 1a1d4db450c2b7cf91931ef39bf75e593b57a6a617f03e8eca4957afed9b7113
5
5
  SHA512:
6
- metadata.gz: 4d7bc7d62a8f4b4b169ad02b0d51152d852999907710c47aea4da068555fc8dc5db617f5a963c679546b802b9b784f750529706aa2f6950f055307dafb4bfad0
7
- data.tar.gz: 318ea0e0f0150bf75be9f100db263f57741c9cb4b26c6e306e0147ce86c08751a34c48a3292d7739b52fada71011436e85735ca072ece5075b052017f3abc8da
6
+ metadata.gz: fbc69e3e34ceaed61ab764a8e9fa3928eddb1ccd65469001a9661a64e805a752fba91df1adedf7e7dd52ae9c184d330fbd36450a4821adcbf6f54a034cbe5309
7
+ data.tar.gz: 64ddcc56aa0f182dc418371ecf9b8169aa95e83d3de735b2582f74aa280bb366bb1d9b5ec97f9dacf03751304325cd27f253d68a2d11d2e29af63724716a968c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
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
+
7
+ ### v0.6.0 (2021-05-19)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.5.0 (2021-04-16)
12
+
13
+ * Regenerated from discovery document revision 20210407
14
+
15
+ ### v0.4.0 (2021-03-27)
16
+
17
+ * Regenerated from discovery document revision 20210319
18
+ * Regenerated using generator version 0.2.0
19
+
20
+ ### v0.3.0 (2021-03-04)
21
+
22
+ * Unspecified changes
23
+
3
24
  ### v0.2.0 (2021-02-04)
4
25
 
5
26
  * Regenerated from discovery document revision 20210126
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
32
+ # See, edit, configure, and delete your Google Cloud Platform data
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
@@ -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
@@ -876,7 +908,7 @@ module Google
876
908
 
877
909
  # Optional. The major version of Python used to run the Apache Airflow scheduler,
878
910
  # worker, and webserver processes. Can be set to '2' or '3'. If not specified,
879
- # the default is '2'. Cannot be updated.
911
+ # the default is '3'. Cannot be updated.
880
912
  # Corresponds to the JSON property `pythonVersion`
881
913
  # @return [String]
882
914
  attr_accessor :python_version
@@ -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.2.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210126"
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.2.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-02-08 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.2.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: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Composer API V1