google-apis-composer_v1beta1 0.27.0 → 0.28.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: acb1a4d61e49946e8c227480c27c2524a421fcf4d05179308bd8fc5dae1f40a2
|
4
|
+
data.tar.gz: 5bd5c8b35795a24b244026216247f0cd30e7c50c2148b72ec27b2d88f70e4d07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 665d3a98f0f5650316fa5f52b0f05682ac317b995c57a52b6f83e5d86d2fb487edbc765414efb62c09fae04fe2cfc93ddbd819d368e853dd611a35f320d66b30
|
7
|
+
data.tar.gz: 718fc8491088df6f2c582ee0b96c862487a8ff3f4a27b9f4f5bd1883296754049a345fb668e138e3b76a5bad1ec469a0732d1fe386dc761f4c3dc59048918ff9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-composer_v1beta1
|
2
2
|
|
3
|
+
### v0.28.0 (2022-11-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221028
|
6
|
+
* Regenerated using generator version 0.11.0
|
7
|
+
|
3
8
|
### v0.27.0 (2022-09-24)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220920
|
@@ -157,6 +157,26 @@ module Google
|
|
157
157
|
end
|
158
158
|
end
|
159
159
|
|
160
|
+
# Configuration for Cloud Data Lineage integration.
|
161
|
+
class CloudDataLineageIntegration
|
162
|
+
include Google::Apis::Core::Hashable
|
163
|
+
|
164
|
+
# Optional. Whether or not Cloud Data Lineage integration is enabled.
|
165
|
+
# Corresponds to the JSON property `enabled`
|
166
|
+
# @return [Boolean]
|
167
|
+
attr_accessor :enabled
|
168
|
+
alias_method :enabled?, :enabled
|
169
|
+
|
170
|
+
def initialize(**args)
|
171
|
+
update!(**args)
|
172
|
+
end
|
173
|
+
|
174
|
+
# Update properties of this object
|
175
|
+
def update!(**args)
|
176
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
160
180
|
# The configuration of Cloud SQL instance that is used by the Apache Airflow
|
161
181
|
# software.
|
162
182
|
class DatabaseConfig
|
@@ -663,6 +683,27 @@ module Google
|
|
663
683
|
class LoadSnapshotRequest
|
664
684
|
include Google::Apis::Core::Hashable
|
665
685
|
|
686
|
+
# Whether or not to skip setting Airflow overrides when loading the environment'
|
687
|
+
# s state.
|
688
|
+
# Corresponds to the JSON property `skipAirflowOverridesSetting`
|
689
|
+
# @return [Boolean]
|
690
|
+
attr_accessor :skip_airflow_overrides_setting
|
691
|
+
alias_method :skip_airflow_overrides_setting?, :skip_airflow_overrides_setting
|
692
|
+
|
693
|
+
# Whether or not to skip setting environment variables when loading the
|
694
|
+
# environment's state.
|
695
|
+
# Corresponds to the JSON property `skipEnvironmentVariablesSetting`
|
696
|
+
# @return [Boolean]
|
697
|
+
attr_accessor :skip_environment_variables_setting
|
698
|
+
alias_method :skip_environment_variables_setting?, :skip_environment_variables_setting
|
699
|
+
|
700
|
+
# Whether or not to skip copying Cloud Storage data when loading the environment'
|
701
|
+
# s state.
|
702
|
+
# Corresponds to the JSON property `skipGcsDataCopying`
|
703
|
+
# @return [Boolean]
|
704
|
+
attr_accessor :skip_gcs_data_copying
|
705
|
+
alias_method :skip_gcs_data_copying?, :skip_gcs_data_copying
|
706
|
+
|
666
707
|
# Whether or not to skip installing Pypi packages when loading the environment's
|
667
708
|
# state.
|
668
709
|
# Corresponds to the JSON property `skipPypiPackagesInstallation`
|
@@ -682,6 +723,9 @@ module Google
|
|
682
723
|
|
683
724
|
# Update properties of this object
|
684
725
|
def update!(**args)
|
726
|
+
@skip_airflow_overrides_setting = args[:skip_airflow_overrides_setting] if args.key?(:skip_airflow_overrides_setting)
|
727
|
+
@skip_environment_variables_setting = args[:skip_environment_variables_setting] if args.key?(:skip_environment_variables_setting)
|
728
|
+
@skip_gcs_data_copying = args[:skip_gcs_data_copying] if args.key?(:skip_gcs_data_copying)
|
685
729
|
@skip_pypi_packages_installation = args[:skip_pypi_packages_installation] if args.key?(:skip_pypi_packages_installation)
|
686
730
|
@snapshot_path = args[:snapshot_path] if args.key?(:snapshot_path)
|
687
731
|
end
|
@@ -1290,6 +1334,11 @@ module Google
|
|
1290
1334
|
# @return [Hash<String,String>]
|
1291
1335
|
attr_accessor :airflow_config_overrides
|
1292
1336
|
|
1337
|
+
# Configuration for Cloud Data Lineage integration.
|
1338
|
+
# Corresponds to the JSON property `cloudDataLineageIntegration`
|
1339
|
+
# @return [Google::Apis::ComposerV1beta1::CloudDataLineageIntegration]
|
1340
|
+
attr_accessor :cloud_data_lineage_integration
|
1341
|
+
|
1293
1342
|
# Optional. Additional environment variables to provide to the Apache Airflow
|
1294
1343
|
# scheduler, worker, and webserver processes. Environment variable names must
|
1295
1344
|
# match the regular expression `a-zA-Z_*`. They cannot specify Apache Airflow
|
@@ -1356,6 +1405,7 @@ module Google
|
|
1356
1405
|
# Update properties of this object
|
1357
1406
|
def update!(**args)
|
1358
1407
|
@airflow_config_overrides = args[:airflow_config_overrides] if args.key?(:airflow_config_overrides)
|
1408
|
+
@cloud_data_lineage_integration = args[:cloud_data_lineage_integration] if args.key?(:cloud_data_lineage_integration)
|
1359
1409
|
@env_variables = args[:env_variables] if args.key?(:env_variables)
|
1360
1410
|
@image_version = args[:image_version] if args.key?(:image_version)
|
1361
1411
|
@pypi_packages = args[:pypi_packages] if args.key?(:pypi_packages)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComposerV1beta1
|
18
18
|
# Version of the google-apis-composer_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221028"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class CloudDataLineageIntegration
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class DatabaseConfig
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -272,6 +278,13 @@ module Google
|
|
272
278
|
end
|
273
279
|
end
|
274
280
|
|
281
|
+
class CloudDataLineageIntegration
|
282
|
+
# @private
|
283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
284
|
+
property :enabled, as: 'enabled'
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
275
288
|
class DatabaseConfig
|
276
289
|
# @private
|
277
290
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -400,6 +413,9 @@ module Google
|
|
400
413
|
class LoadSnapshotRequest
|
401
414
|
# @private
|
402
415
|
class Representation < Google::Apis::Core::JsonRepresentation
|
416
|
+
property :skip_airflow_overrides_setting, as: 'skipAirflowOverridesSetting'
|
417
|
+
property :skip_environment_variables_setting, as: 'skipEnvironmentVariablesSetting'
|
418
|
+
property :skip_gcs_data_copying, as: 'skipGcsDataCopying'
|
403
419
|
property :skip_pypi_packages_installation, as: 'skipPypiPackagesInstallation'
|
404
420
|
property :snapshot_path, as: 'snapshotPath'
|
405
421
|
end
|
@@ -539,6 +555,8 @@ module Google
|
|
539
555
|
# @private
|
540
556
|
class Representation < Google::Apis::Core::JsonRepresentation
|
541
557
|
hash :airflow_config_overrides, as: 'airflowConfigOverrides'
|
558
|
+
property :cloud_data_lineage_integration, as: 'cloudDataLineageIntegration', class: Google::Apis::ComposerV1beta1::CloudDataLineageIntegration, decorator: Google::Apis::ComposerV1beta1::CloudDataLineageIntegration::Representation
|
559
|
+
|
542
560
|
hash :env_variables, as: 'envVariables'
|
543
561
|
property :image_version, as: 'imageVersion'
|
544
562
|
hash :pypi_packages, as: 'pypiPackages'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-composer_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.28.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: 2022-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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/main/generated/google-apis-composer_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.28.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|