google-apis-composer_v1 0.7.0 → 0.11.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: 6fd62ceec21bf39ae28a1d66759968ce30fc765b520d332733032f3f3e443282
4
- data.tar.gz: 1a1d4db450c2b7cf91931ef39bf75e593b57a6a617f03e8eca4957afed9b7113
3
+ metadata.gz: e238218cbbb645906bac89cfc4aad51af91dcc81dac236df65f8e9c157e7a00f
4
+ data.tar.gz: dc4f408f38c61bf3a0e806ee76ced314d82ad64d9626ae47f98487ec1e86ea1e
5
5
  SHA512:
6
- metadata.gz: fbc69e3e34ceaed61ab764a8e9fa3928eddb1ccd65469001a9661a64e805a752fba91df1adedf7e7dd52ae9c184d330fbd36450a4821adcbf6f54a034cbe5309
7
- data.tar.gz: 64ddcc56aa0f182dc418371ecf9b8169aa95e83d3de735b2582f74aa280bb366bb1d9b5ec97f9dacf03751304325cd27f253d68a2d11d2e29af63724716a968c
6
+ metadata.gz: 046cb03752f95848e115ea934f811ede35c78be925af3f6e8d37a40c934a63c25b116702cbd886dd31fe1d6a1246a80c41b676d95735b6df7ac8d140987f3ba6
7
+ data.tar.gz: 586a0aabc6cd57dbb7f7e445740e67af2b492dc06364cf1655b666c2662769ef52951c486e307707977cbf95fba531c1ab06a98cc839546a715c82043cdf8af8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-composer_v1
2
2
 
3
+ ### v0.11.0 (2021-07-14)
4
+
5
+ * Regenerated from discovery document revision 20210705
6
+
7
+ ### v0.10.0 (2021-07-06)
8
+
9
+ * Regenerated from discovery document revision 20210625
10
+
11
+ ### v0.9.0 (2021-06-29)
12
+
13
+ * Regenerated using generator version 0.4.0
14
+
15
+ ### v0.8.0 (2021-06-24)
16
+
17
+ * Regenerated using generator version 0.3.0
18
+
3
19
  ### v0.7.0 (2021-05-26)
4
20
 
5
21
  * Regenerated from discovery document revision 20210518
@@ -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.7.0"
19
+ GEM_VERSION = "0.11.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 = "20210518"
25
+ REVISION = "20210705"
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
 
@@ -212,40 +212,41 @@ module Google
212
212
  # updateMask` would contain the path "config.softwareConfig.pypiPackages", and
213
213
  # the patch environment would be the following: ` "config":` "softwareConfig":` "
214
214
  # pypiPackages":` "botocore":"==1.7.14" ` ` ` ` **Note:** Only the following
215
- # fields can be updated: *Mask* *Purpose* config.softwareConfig.pypiPackages
216
- # Replace all custom custom PyPI packages. If a replacement package map is not
217
- # included in `environment`, all custom PyPI packages are cleared. It is an
218
- # error to provide both this mask and a mask specifying an individual package.
219
- # config.softwareConfig.pypiPackages.packagename Update the custom PyPI package
220
- # packagename, preserving other packages. To delete the package, include it in `
215
+ # fields can be updated: * `config.softwareConfig.pypiPackages` * Replace all
216
+ # custom custom PyPI packages. If a replacement package map is not included in `
217
+ # environment`, all custom PyPI packages are cleared. It is an error to provide
218
+ # both this mask and a mask specifying an individual package. * `config.
219
+ # softwareConfig.pypiPackages.`packagename * Update the custom PyPI package *
220
+ # packagename*, preserving other packages. To delete the package, include it in `
221
221
  # updateMask`, and omit the mapping for it in `environment.config.softwareConfig.
222
- # pypiPackages`. It is an error to provide both a mask of this form and the "
223
- # config.softwareConfig.pypiPackages" mask. labels Replace all environment
222
+ # pypiPackages`. It is an error to provide both a mask of this form and the `
223
+ # config.softwareConfig.pypiPackages` mask. * `labels` * Replace all environment
224
224
  # labels. If a replacement labels map is not included in `environment`, all
225
225
  # labels are cleared. It is an error to provide both this mask and a mask
226
- # specifying one or more individual labels. labels.labelName Set the label named
227
- # labelName, while preserving other labels. To delete the label, include it in `
228
- # updateMask` and omit its mapping in `environment.labels`. It is an error to
229
- # provide both a mask of this form and the "labels" mask. config.nodeCount
230
- # Horizontally scale the number of nodes in the environment. An integer greater
231
- # than or equal to 3 must be provided in the `config.nodeCount` field. config.
232
- # webServerNetworkAccessControl Replace the environment's current
233
- # WebServerNetworkAccessControl. config.databaseConfig Replace the environment's
234
- # current DatabaseConfig. config.webServerConfig Replace the environment's
235
- # current WebServerConfig. config.softwareConfig.airflowConfigOverrides Replace
236
- # all Apache Airflow config overrides. If a replacement config overrides map is
237
- # not included in `environment`, all config overrides are cleared. It is an
238
- # error to provide both this mask and a mask specifying one or more individual
239
- # config overrides. config.softwareConfig.airflowConfigOverrides.section-name
240
- # Override the Apache Airflow config property name in the section named section,
241
- # preserving other properties. To delete the property override, include it in `
242
- # updateMask` and omit its mapping in `environment.config.softwareConfig.
243
- # airflowConfigOverrides`. It is an error to provide both a mask of this form
244
- # and the "config.softwareConfig.airflowConfigOverrides" mask. config.
245
- # softwareConfig.envVariables Replace all environment variables. If a
246
- # replacement environment variable map is not included in `environment`, all
247
- # custom environment variables are cleared. It is an error to provide both this
248
- # mask and a mask specifying one or more individual environment variables.
226
+ # specifying one or more individual labels. * `labels.`labelName * Set the label
227
+ # named *labelName*, while preserving other labels. To delete the label, include
228
+ # it in `updateMask` and omit its mapping in `environment.labels`. It is an
229
+ # error to provide both a mask of this form and the `labels` mask. * `config.
230
+ # nodeCount` * Horizontally scale the number of nodes in the environment. An
231
+ # integer greater than or equal to 3 must be provided in the `config.nodeCount`
232
+ # field. * `config.webServerNetworkAccessControl` * Replace the environment's
233
+ # current `WebServerNetworkAccessControl`. * `config.databaseConfig` * Replace
234
+ # the environment's current `DatabaseConfig`. * `config.webServerConfig` *
235
+ # Replace the environment's current `WebServerConfig`. * `config.softwareConfig.
236
+ # airflowConfigOverrides` * Replace all Apache Airflow config overrides. If a
237
+ # replacement config overrides map is not included in `environment`, all config
238
+ # overrides are cleared. It is an error to provide both this mask and a mask
239
+ # specifying one or more individual config overrides. * `config.softwareConfig.
240
+ # airflowConfigOverrides.`section-name * Override the Apache Airflow config
241
+ # property *name* in the section named *section*, preserving other properties.
242
+ # To delete the property override, include it in `updateMask` and omit its
243
+ # mapping in `environment.config.softwareConfig.airflowConfigOverrides`. It is
244
+ # an error to provide both a mask of this form and the `config.softwareConfig.
245
+ # airflowConfigOverrides` mask. * `config.softwareConfig.envVariables` * Replace
246
+ # all environment variables. If a replacement environment variable map is not
247
+ # included in `environment`, all custom environment variables are cleared. It is
248
+ # an error to provide both this mask and a mask specifying one or more
249
+ # individual environment variables.
249
250
  # @param [String] fields
250
251
  # Selector specifying which fields to include in a partial response.
251
252
  # @param [String] quota_user
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.7.0
4
+ version: 0.11.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-31 00:00:00.000000000 Z
11
+ date: 2021-07-19 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.7.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.11.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: []