google-apis-composer_v1beta1 0.26.0 → 0.28.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: abdf36da597aa3802ca0516afcc586a612f0af0de9926c68d1f4b83e4ad904b2
4
- data.tar.gz: 1c6bf480dfc6af70192a3c2e89a430084c8bad4caa400c56bf5061d46382ec15
3
+ metadata.gz: acb1a4d61e49946e8c227480c27c2524a421fcf4d05179308bd8fc5dae1f40a2
4
+ data.tar.gz: 5bd5c8b35795a24b244026216247f0cd30e7c50c2148b72ec27b2d88f70e4d07
5
5
  SHA512:
6
- metadata.gz: d0d76f982a2eaff9cdc67ca92c95440c9ec3d983c756a2d44ceed03730dec4acfe05b006cfb72adf872b4faaa3a6735c3f42b3ce2c9c3bf8e4e8e9a7011cc3a8
7
- data.tar.gz: 17dbc73dc9d7f0ed61753217a622c3c8bba23bd1d787a1894d6cf860cee37be351cae08acb857c95d04f8f475cd587620a4013f5f5dc29fddb98c2e9db5ab842
6
+ metadata.gz: 665d3a98f0f5650316fa5f52b0f05682ac317b995c57a52b6f83e5d86d2fb487edbc765414efb62c09fae04fe2cfc93ddbd819d368e853dd611a35f320d66b30
7
+ data.tar.gz: 718fc8491088df6f2c582ee0b96c862487a8ff3f4a27b9f4f5bd1883296754049a345fb668e138e3b76a5bad1ec469a0732d1fe386dc761f4c3dc59048918ff9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
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
+
8
+ ### v0.27.0 (2022-09-24)
9
+
10
+ * Regenerated from discovery document revision 20220920
11
+ * Regenerated using generator version 0.10.0
12
+
3
13
  ### v0.26.0 (2022-08-03)
4
14
 
5
15
  * Regenerated from discovery document revision 20220727
@@ -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
@@ -769,6 +813,27 @@ module Google
769
813
  end
770
814
  end
771
815
 
816
+ # Configuration options for networking connections in the Composer 2 environment.
817
+ class NetworkingConfig
818
+ include Google::Apis::Core::Hashable
819
+
820
+ # Optional. Indicates the user requested specifc connection type between Tenant
821
+ # and Customer projects. You cannot set networking connection type in public IP
822
+ # environment.
823
+ # Corresponds to the JSON property `connectionType`
824
+ # @return [String]
825
+ attr_accessor :connection_type
826
+
827
+ def initialize(**args)
828
+ update!(**args)
829
+ end
830
+
831
+ # Update properties of this object
832
+ def update!(**args)
833
+ @connection_type = args[:connection_type] if args.key?(:connection_type)
834
+ end
835
+ end
836
+
772
837
  # The configuration information for the Kubernetes Engine nodes running the
773
838
  # Apache Airflow software.
774
839
  class NodeConfig
@@ -1113,6 +1178,11 @@ module Google
1113
1178
  attr_accessor :enable_privately_used_public_ips
1114
1179
  alias_method :enable_privately_used_public_ips?, :enable_privately_used_public_ips
1115
1180
 
1181
+ # Configuration options for networking connections in the Composer 2 environment.
1182
+ # Corresponds to the JSON property `networkingConfig`
1183
+ # @return [Google::Apis::ComposerV1beta1::NetworkingConfig]
1184
+ attr_accessor :networking_config
1185
+
1116
1186
  # Configuration options for the private GKE cluster in a Cloud Composer
1117
1187
  # environment.
1118
1188
  # Corresponds to the JSON property `privateClusterConfig`
@@ -1146,6 +1216,7 @@ module Google
1146
1216
  @cloud_sql_ipv4_cidr_block = args[:cloud_sql_ipv4_cidr_block] if args.key?(:cloud_sql_ipv4_cidr_block)
1147
1217
  @enable_private_environment = args[:enable_private_environment] if args.key?(:enable_private_environment)
1148
1218
  @enable_privately_used_public_ips = args[:enable_privately_used_public_ips] if args.key?(:enable_privately_used_public_ips)
1219
+ @networking_config = args[:networking_config] if args.key?(:networking_config)
1149
1220
  @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
1150
1221
  @web_server_ipv4_cidr_block = args[:web_server_ipv4_cidr_block] if args.key?(:web_server_ipv4_cidr_block)
1151
1222
  @web_server_ipv4_reserved_range = args[:web_server_ipv4_reserved_range] if args.key?(:web_server_ipv4_reserved_range)
@@ -1263,6 +1334,11 @@ module Google
1263
1334
  # @return [Hash<String,String>]
1264
1335
  attr_accessor :airflow_config_overrides
1265
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
+
1266
1342
  # Optional. Additional environment variables to provide to the Apache Airflow
1267
1343
  # scheduler, worker, and webserver processes. Environment variable names must
1268
1344
  # match the regular expression `a-zA-Z_*`. They cannot specify Apache Airflow
@@ -1329,6 +1405,7 @@ module Google
1329
1405
  # Update properties of this object
1330
1406
  def update!(**args)
1331
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)
1332
1409
  @env_variables = args[:env_variables] if args.key?(:env_variables)
1333
1410
  @image_version = args[:image_version] if args.key?(:image_version)
1334
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.26.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.9.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220727"
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
 
@@ -136,6 +142,12 @@ module Google
136
142
  include Google::Apis::Core::JsonObjectSupport
137
143
  end
138
144
 
145
+ class NetworkingConfig
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
139
151
  class NodeConfig
140
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
153
 
@@ -266,6 +278,13 @@ module Google
266
278
  end
267
279
  end
268
280
 
281
+ class CloudDataLineageIntegration
282
+ # @private
283
+ class Representation < Google::Apis::Core::JsonRepresentation
284
+ property :enabled, as: 'enabled'
285
+ end
286
+ end
287
+
269
288
  class DatabaseConfig
270
289
  # @private
271
290
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -394,6 +413,9 @@ module Google
394
413
  class LoadSnapshotRequest
395
414
  # @private
396
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'
397
419
  property :skip_pypi_packages_installation, as: 'skipPypiPackagesInstallation'
398
420
  property :snapshot_path, as: 'snapshotPath'
399
421
  end
@@ -423,6 +445,13 @@ module Google
423
445
  end
424
446
  end
425
447
 
448
+ class NetworkingConfig
449
+ # @private
450
+ class Representation < Google::Apis::Core::JsonRepresentation
451
+ property :connection_type, as: 'connectionType'
452
+ end
453
+ end
454
+
426
455
  class NodeConfig
427
456
  # @private
428
457
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -483,6 +512,8 @@ module Google
483
512
  property :cloud_sql_ipv4_cidr_block, as: 'cloudSqlIpv4CidrBlock'
484
513
  property :enable_private_environment, as: 'enablePrivateEnvironment'
485
514
  property :enable_privately_used_public_ips, as: 'enablePrivatelyUsedPublicIps'
515
+ property :networking_config, as: 'networkingConfig', class: Google::Apis::ComposerV1beta1::NetworkingConfig, decorator: Google::Apis::ComposerV1beta1::NetworkingConfig::Representation
516
+
486
517
  property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ComposerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ComposerV1beta1::PrivateClusterConfig::Representation
487
518
 
488
519
  property :web_server_ipv4_cidr_block, as: 'webServerIpv4CidrBlock'
@@ -524,6 +555,8 @@ module Google
524
555
  # @private
525
556
  class Representation < Google::Apis::Core::JsonRepresentation
526
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
+
527
560
  hash :env_variables, as: 'envVariables'
528
561
  property :image_version, as: 'imageVersion'
529
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.26.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-08-08 00:00:00.000000000 Z
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.7'
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.7'
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.26.0
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: []