google-apis-composer_v1 0.9.0 → 0.10.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca04d9d1124c28756168eb7fbd03e886a4ae9c0f14e8f0aa462606d41075ea62
|
|
4
|
+
data.tar.gz: 5bc4278357f2de36a02f7437359e665cbe45c0cec2570cfa6c771ae9c83904b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cdec5e811388c1df0c75d4cb6b4a9b1297d6382f3f96026065b4d168abc8ecaac7a4963f61f177bfe57192e7c8ec0e3a8387662d7815340cfa3f5179836b623c
|
|
7
|
+
data.tar.gz: 1c34e8b2b95d6460e575e71f5e88f81c4d739974fdc21f2053b0f96f3affa24537327f3c202d5364b1fa0768b1c38ff65988d534648acb10462fd97d6ddd1b51
|
data/CHANGELOG.md
CHANGED
|
@@ -65,12 +65,23 @@ module Google
|
|
|
65
65
|
# @return [String]
|
|
66
66
|
attr_accessor :contains_pypi_modules_conflict
|
|
67
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
|
+
|
|
68
73
|
# Output only. Extract from a docker image build log containing information
|
|
69
74
|
# about pypi modules conflicts.
|
|
70
75
|
# Corresponds to the JSON property `pypiConflictBuildLogExtract`
|
|
71
76
|
# @return [String]
|
|
72
77
|
attr_accessor :pypi_conflict_build_log_extract
|
|
73
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
|
+
|
|
74
85
|
def initialize(**args)
|
|
75
86
|
update!(**args)
|
|
76
87
|
end
|
|
@@ -79,7 +90,9 @@ module Google
|
|
|
79
90
|
def update!(**args)
|
|
80
91
|
@build_log_uri = args[:build_log_uri] if args.key?(:build_log_uri)
|
|
81
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)
|
|
82
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)
|
|
83
96
|
end
|
|
84
97
|
end
|
|
85
98
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.10.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210625"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -167,7 +167,9 @@ module Google
|
|
|
167
167
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
168
168
|
property :build_log_uri, as: 'buildLogUri'
|
|
169
169
|
property :contains_pypi_modules_conflict, as: 'containsPypiModulesConflict'
|
|
170
|
+
property :image_version, as: 'imageVersion'
|
|
170
171
|
property :pypi_conflict_build_log_extract, as: 'pypiConflictBuildLogExtract'
|
|
172
|
+
hash :pypi_dependencies, as: 'pypiDependencies'
|
|
171
173
|
end
|
|
172
174
|
end
|
|
173
175
|
|
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.
|
|
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-07-
|
|
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
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.10.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-composer_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|