google-apis-composer_v1 0.5.0 → 0.10.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: 4679ed7a8365fb6a82154df097afed2d52b3aa0a8b0d0921dc50037feb5bfc22
4
- data.tar.gz: cd3ad2b5687638681fbd3218e17b805ab04a5ea278d0c8a5d4961066a898956a
3
+ metadata.gz: ca04d9d1124c28756168eb7fbd03e886a4ae9c0f14e8f0aa462606d41075ea62
4
+ data.tar.gz: 5bc4278357f2de36a02f7437359e665cbe45c0cec2570cfa6c771ae9c83904b6
5
5
  SHA512:
6
- metadata.gz: 4cc827d4298b90c5ec17b82d018f712029f01e9b3eaafc8ff1e6a3bb6f2ee74b6cf0bd10eb191f52e5f7b3e5013ab1b7dee9c4cdd0bba8a0d5f98f5bf0f7c7b2
7
- data.tar.gz: 71b5f2f6ede7fd7791aa7b17c6855c6e54aad4e6303a1b0626e7303a5c74a4a8ec32dcadca9e3d3265194c17e471dade6ad22122f15ca6832cdea8f8906913c4
6
+ metadata.gz: cdec5e811388c1df0c75d4cb6b4a9b1297d6382f3f96026065b4d168abc8ecaac7a4963f61f177bfe57192e7c8ec0e3a8387662d7815340cfa3f5179836b623c
7
+ data.tar.gz: 1c34e8b2b95d6460e575e71f5e88f81c4d739974fdc21f2053b0f96f3affa24537327f3c202d5364b1fa0768b1c38ff65988d534648acb10462fd97d6ddd1b51
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Release history for google-apis-composer_v1
2
2
 
3
+ ### v0.10.0 (2021-07-06)
4
+
5
+ * Regenerated from discovery document revision 20210625
6
+
7
+ ### v0.9.0 (2021-06-29)
8
+
9
+ * Regenerated using generator version 0.4.0
10
+
11
+ ### v0.8.0 (2021-06-24)
12
+
13
+ * Regenerated using generator version 0.3.0
14
+
15
+ ### v0.7.0 (2021-05-26)
16
+
17
+ * Regenerated from discovery document revision 20210518
18
+
19
+ ### v0.6.0 (2021-05-19)
20
+
21
+ * Unspecified changes
22
+
3
23
  ### v0.5.0 (2021-04-16)
4
24
 
5
25
  * Regenerated from discovery document revision 20210407
@@ -51,6 +51,51 @@ 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
+ # Composer image for which the build was happening.
69
+ # Corresponds to the JSON property `imageVersion`
70
+ # @return [String]
71
+ attr_accessor :image_version
72
+
73
+ # Output only. Extract from a docker image build log containing information
74
+ # about pypi modules conflicts.
75
+ # Corresponds to the JSON property `pypiConflictBuildLogExtract`
76
+ # @return [String]
77
+ attr_accessor :pypi_conflict_build_log_extract
78
+
79
+ # Pypi dependencies specified in the environment configuration, at the time when
80
+ # the build was triggered.
81
+ # Corresponds to the JSON property `pypiDependencies`
82
+ # @return [Hash<String,String>]
83
+ attr_accessor :pypi_dependencies
84
+
85
+ def initialize(**args)
86
+ update!(**args)
87
+ end
88
+
89
+ # Update properties of this object
90
+ def update!(**args)
91
+ @build_log_uri = args[:build_log_uri] if args.key?(:build_log_uri)
92
+ @contains_pypi_modules_conflict = args[:contains_pypi_modules_conflict] if args.key?(:contains_pypi_modules_conflict)
93
+ @image_version = args[:image_version] if args.key?(:image_version)
94
+ @pypi_conflict_build_log_extract = args[:pypi_conflict_build_log_extract] if args.key?(:pypi_conflict_build_log_extract)
95
+ @pypi_dependencies = args[:pypi_dependencies] if args.key?(:pypi_dependencies)
96
+ end
97
+ end
98
+
54
99
  # The configuration of Cloud SQL instance that is used by the Apache Airflow
55
100
  # software.
56
101
  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.5.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210407"
25
+ REVISION = "20210625"
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,17 @@ 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 :image_version, as: 'imageVersion'
171
+ property :pypi_conflict_build_log_extract, as: 'pypiConflictBuildLogExtract'
172
+ hash :pypi_dependencies, as: 'pypiDependencies'
173
+ end
174
+ end
175
+
159
176
  class DatabaseConfig
160
177
  # @private
161
178
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-composer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.10.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-18 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Cloud Composer API V1. Simple REST
28
34
  clients are Ruby client libraries that provide access to Google services via their
29
35
  HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  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.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.10.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1
57
63
  post_install_message:
58
64
  rdoc_options: []