google-apis-composer_v1beta1 0.27.0 → 0.29.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: 8608f0f06e201e71dc952ca10b9daedf4e949b371696db5590327fffd0f1c079
4
- data.tar.gz: 642c75b6b32e3d2fc24599fb87cfba57be56aa089fcefc7d029c32870a22dfe9
3
+ metadata.gz: edd49673f16cd9cd1e10bad37b9637fcd2a5a7f710ccb1d25b6e21214568e2ae
4
+ data.tar.gz: 53787cf33962175488c7d8e07b73c1a6b1e84990fb31865a78d4074ee7e4a731
5
5
  SHA512:
6
- metadata.gz: 3f39c2ba4a2e5429f401e5743e84bb76c9bd81cd052739884c9ae80cd0405f51607a3289f4f15b3c9e708483a7d7685226154ddf2c27568c450f4431e43b9efc
7
- data.tar.gz: e181fa5d5e048de6a03d353dce7dd7dbacadf22784e78cb05388745daf36917a159b3196c4203c21e317e002e682f373a0f650f96fba090d3b7b89a7051f7431
6
+ metadata.gz: 58eb281ba6238c6839a7715a635fdc11afdce474c620d706ca52319cf0e18c1928cc5119b74419798af7758d293e483c3c216aa7752bcde5bfde2160027c77ed
7
+ data.tar.gz: d734da535fb5cf75f808fe169ebf77269c623f593a68d6a80595c90c393ed044e3222a3ec76051bdc5eb8d9fadaf33d3f7bdb47f412677822707566e99f8964d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.29.0 (2022-11-22)
4
+
5
+ * Regenerated from discovery document revision 20221114
6
+
7
+ ### v0.28.0 (2022-11-03)
8
+
9
+ * Regenerated from discovery document revision 20221028
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.27.0 (2022-09-24)
4
13
 
5
14
  * 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
@@ -403,6 +423,11 @@ module Google
403
423
  # @return [Google::Apis::ComposerV1beta1::PrivateEnvironmentConfig]
404
424
  attr_accessor :private_environment_config
405
425
 
426
+ # The Recovery settings of an environment.
427
+ # Corresponds to the JSON property `recoveryConfig`
428
+ # @return [Google::Apis::ComposerV1beta1::RecoveryConfig]
429
+ attr_accessor :recovery_config
430
+
406
431
  # Specifies the selection and configuration of software inside the environment.
407
432
  # Corresponds to the JSON property `softwareConfig`
408
433
  # @return [Google::Apis::ComposerV1beta1::SoftwareConfig]
@@ -444,6 +469,7 @@ module Google
444
469
  @node_config = args[:node_config] if args.key?(:node_config)
445
470
  @node_count = args[:node_count] if args.key?(:node_count)
446
471
  @private_environment_config = args[:private_environment_config] if args.key?(:private_environment_config)
472
+ @recovery_config = args[:recovery_config] if args.key?(:recovery_config)
447
473
  @software_config = args[:software_config] if args.key?(:software_config)
448
474
  @web_server_config = args[:web_server_config] if args.key?(:web_server_config)
449
475
  @web_server_network_access_control = args[:web_server_network_access_control] if args.key?(:web_server_network_access_control)
@@ -451,6 +477,68 @@ module Google
451
477
  end
452
478
  end
453
479
 
480
+ # Response to ExecuteAirflowCommandRequest.
481
+ class ExecuteAirflowCommandResponse
482
+ include Google::Apis::Core::Hashable
483
+
484
+ # Error message. Empty if there was no error.
485
+ # Corresponds to the JSON property `error`
486
+ # @return [String]
487
+ attr_accessor :error
488
+
489
+ # The unique ID of the command execution for polling.
490
+ # Corresponds to the JSON property `executionId`
491
+ # @return [String]
492
+ attr_accessor :execution_id
493
+
494
+ # The name of the pod where the command is executed.
495
+ # Corresponds to the JSON property `pod`
496
+ # @return [String]
497
+ attr_accessor :pod
498
+
499
+ # The namespace of the pod where the command is executed.
500
+ # Corresponds to the JSON property `podNamespace`
501
+ # @return [String]
502
+ attr_accessor :pod_namespace
503
+
504
+ def initialize(**args)
505
+ update!(**args)
506
+ end
507
+
508
+ # Update properties of this object
509
+ def update!(**args)
510
+ @error = args[:error] if args.key?(:error)
511
+ @execution_id = args[:execution_id] if args.key?(:execution_id)
512
+ @pod = args[:pod] if args.key?(:pod)
513
+ @pod_namespace = args[:pod_namespace] if args.key?(:pod_namespace)
514
+ end
515
+ end
516
+
517
+ # Information about how a command ended.
518
+ class ExitInfo
519
+ include Google::Apis::Core::Hashable
520
+
521
+ # Error message. Empty if there was no error.
522
+ # Corresponds to the JSON property `error`
523
+ # @return [String]
524
+ attr_accessor :error
525
+
526
+ # The exit code from the command execution.
527
+ # Corresponds to the JSON property `exitCode`
528
+ # @return [Fixnum]
529
+ attr_accessor :exit_code
530
+
531
+ def initialize(**args)
532
+ update!(**args)
533
+ end
534
+
535
+ # Update properties of this object
536
+ def update!(**args)
537
+ @error = args[:error] if args.key?(:error)
538
+ @exit_code = args[:exit_code] if args.key?(:exit_code)
539
+ end
540
+ end
541
+
454
542
  # Configuration for controlling how IPs are allocated in the GKE cluster.
455
543
  class IpAllocationPolicy
456
544
  include Google::Apis::Core::Hashable
@@ -584,6 +672,31 @@ module Google
584
672
  end
585
673
  end
586
674
 
675
+ # Contains information about a single line from logs.
676
+ class Line
677
+ include Google::Apis::Core::Hashable
678
+
679
+ # Text content of the log line.
680
+ # Corresponds to the JSON property `content`
681
+ # @return [String]
682
+ attr_accessor :content
683
+
684
+ # Number of the line.
685
+ # Corresponds to the JSON property `lineNumber`
686
+ # @return [Fixnum]
687
+ attr_accessor :line_number
688
+
689
+ def initialize(**args)
690
+ update!(**args)
691
+ end
692
+
693
+ # Update properties of this object
694
+ def update!(**args)
695
+ @content = args[:content] if args.key?(:content)
696
+ @line_number = args[:line_number] if args.key?(:line_number)
697
+ end
698
+ end
699
+
587
700
  # The environments in a project and location.
588
701
  class ListEnvironmentsResponse
589
702
  include Google::Apis::Core::Hashable
@@ -663,6 +776,27 @@ module Google
663
776
  class LoadSnapshotRequest
664
777
  include Google::Apis::Core::Hashable
665
778
 
779
+ # Whether or not to skip setting Airflow overrides when loading the environment'
780
+ # s state.
781
+ # Corresponds to the JSON property `skipAirflowOverridesSetting`
782
+ # @return [Boolean]
783
+ attr_accessor :skip_airflow_overrides_setting
784
+ alias_method :skip_airflow_overrides_setting?, :skip_airflow_overrides_setting
785
+
786
+ # Whether or not to skip setting environment variables when loading the
787
+ # environment's state.
788
+ # Corresponds to the JSON property `skipEnvironmentVariablesSetting`
789
+ # @return [Boolean]
790
+ attr_accessor :skip_environment_variables_setting
791
+ alias_method :skip_environment_variables_setting?, :skip_environment_variables_setting
792
+
793
+ # Whether or not to skip copying Cloud Storage data when loading the environment'
794
+ # s state.
795
+ # Corresponds to the JSON property `skipGcsDataCopying`
796
+ # @return [Boolean]
797
+ attr_accessor :skip_gcs_data_copying
798
+ alias_method :skip_gcs_data_copying?, :skip_gcs_data_copying
799
+
666
800
  # Whether or not to skip installing Pypi packages when loading the environment's
667
801
  # state.
668
802
  # Corresponds to the JSON property `skipPypiPackagesInstallation`
@@ -682,6 +816,9 @@ module Google
682
816
 
683
817
  # Update properties of this object
684
818
  def update!(**args)
819
+ @skip_airflow_overrides_setting = args[:skip_airflow_overrides_setting] if args.key?(:skip_airflow_overrides_setting)
820
+ @skip_environment_variables_setting = args[:skip_environment_variables_setting] if args.key?(:skip_environment_variables_setting)
821
+ @skip_gcs_data_copying = args[:skip_gcs_data_copying] if args.key?(:skip_gcs_data_copying)
685
822
  @skip_pypi_packages_installation = args[:skip_pypi_packages_installation] if args.key?(:skip_pypi_packages_installation)
686
823
  @snapshot_path = args[:snapshot_path] if args.key?(:snapshot_path)
687
824
  end
@@ -1044,6 +1181,39 @@ module Google
1044
1181
  end
1045
1182
  end
1046
1183
 
1184
+ # Response to PollAirflowCommandRequest.
1185
+ class PollAirflowCommandResponse
1186
+ include Google::Apis::Core::Hashable
1187
+
1188
+ # Information about how a command ended.
1189
+ # Corresponds to the JSON property `exitInfo`
1190
+ # @return [Google::Apis::ComposerV1beta1::ExitInfo]
1191
+ attr_accessor :exit_info
1192
+
1193
+ # Output from the command execution. It may not contain the full output and the
1194
+ # caller may need to poll for more lines.
1195
+ # Corresponds to the JSON property `output`
1196
+ # @return [Array<Google::Apis::ComposerV1beta1::Line>]
1197
+ attr_accessor :output
1198
+
1199
+ # Whether the command execution has finished and there is no more output.
1200
+ # Corresponds to the JSON property `outputEnd`
1201
+ # @return [Boolean]
1202
+ attr_accessor :output_end
1203
+ alias_method :output_end?, :output_end
1204
+
1205
+ def initialize(**args)
1206
+ update!(**args)
1207
+ end
1208
+
1209
+ # Update properties of this object
1210
+ def update!(**args)
1211
+ @exit_info = args[:exit_info] if args.key?(:exit_info)
1212
+ @output = args[:output] if args.key?(:output)
1213
+ @output_end = args[:output_end] if args.key?(:output_end)
1214
+ end
1215
+ end
1216
+
1047
1217
  # Configuration options for the private GKE cluster in a Cloud Composer
1048
1218
  # environment.
1049
1219
  class PrivateClusterConfig
@@ -1179,6 +1349,25 @@ module Google
1179
1349
  end
1180
1350
  end
1181
1351
 
1352
+ # The Recovery settings of an environment.
1353
+ class RecoveryConfig
1354
+ include Google::Apis::Core::Hashable
1355
+
1356
+ # The configuration for scheduled snapshot creation mechanism.
1357
+ # Corresponds to the JSON property `scheduledSnapshotsConfig`
1358
+ # @return [Google::Apis::ComposerV1beta1::ScheduledSnapshotsConfig]
1359
+ attr_accessor :scheduled_snapshots_config
1360
+
1361
+ def initialize(**args)
1362
+ update!(**args)
1363
+ end
1364
+
1365
+ # Update properties of this object
1366
+ def update!(**args)
1367
+ @scheduled_snapshots_config = args[:scheduled_snapshots_config] if args.key?(:scheduled_snapshots_config)
1368
+ end
1369
+ end
1370
+
1182
1371
  # Restart Airflow web server.
1183
1372
  class RestartWebServerRequest
1184
1373
  include Google::Apis::Core::Hashable
@@ -1233,6 +1422,48 @@ module Google
1233
1422
  end
1234
1423
  end
1235
1424
 
1425
+ # The configuration for scheduled snapshot creation mechanism.
1426
+ class ScheduledSnapshotsConfig
1427
+ include Google::Apis::Core::Hashable
1428
+
1429
+ # Optional. Whether scheduled snapshots creation is enabled.
1430
+ # Corresponds to the JSON property `enabled`
1431
+ # @return [Boolean]
1432
+ attr_accessor :enabled
1433
+ alias_method :enabled?, :enabled
1434
+
1435
+ # Optional. The cron expression representing the time when snapshots creation
1436
+ # mechanism runs. This field is subject to additional validation around
1437
+ # frequency of execution.
1438
+ # Corresponds to the JSON property `snapshotCreationSchedule`
1439
+ # @return [String]
1440
+ attr_accessor :snapshot_creation_schedule
1441
+
1442
+ # Optional. The Cloud Storage location for storing automatically created
1443
+ # snapshots.
1444
+ # Corresponds to the JSON property `snapshotLocation`
1445
+ # @return [String]
1446
+ attr_accessor :snapshot_location
1447
+
1448
+ # Optional. Time zone that sets the context to interpret
1449
+ # snapshot_creation_schedule.
1450
+ # Corresponds to the JSON property `timeZone`
1451
+ # @return [String]
1452
+ attr_accessor :time_zone
1453
+
1454
+ def initialize(**args)
1455
+ update!(**args)
1456
+ end
1457
+
1458
+ # Update properties of this object
1459
+ def update!(**args)
1460
+ @enabled = args[:enabled] if args.key?(:enabled)
1461
+ @snapshot_creation_schedule = args[:snapshot_creation_schedule] if args.key?(:snapshot_creation_schedule)
1462
+ @snapshot_location = args[:snapshot_location] if args.key?(:snapshot_location)
1463
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
1464
+ end
1465
+ end
1466
+
1236
1467
  # Configuration for resources used by Airflow schedulers.
1237
1468
  class SchedulerResource
1238
1469
  include Google::Apis::Core::Hashable
@@ -1290,6 +1521,11 @@ module Google
1290
1521
  # @return [Hash<String,String>]
1291
1522
  attr_accessor :airflow_config_overrides
1292
1523
 
1524
+ # Configuration for Cloud Data Lineage integration.
1525
+ # Corresponds to the JSON property `cloudDataLineageIntegration`
1526
+ # @return [Google::Apis::ComposerV1beta1::CloudDataLineageIntegration]
1527
+ attr_accessor :cloud_data_lineage_integration
1528
+
1293
1529
  # Optional. Additional environment variables to provide to the Apache Airflow
1294
1530
  # scheduler, worker, and webserver processes. Environment variable names must
1295
1531
  # match the regular expression `a-zA-Z_*`. They cannot specify Apache Airflow
@@ -1356,6 +1592,7 @@ module Google
1356
1592
  # Update properties of this object
1357
1593
  def update!(**args)
1358
1594
  @airflow_config_overrides = args[:airflow_config_overrides] if args.key?(:airflow_config_overrides)
1595
+ @cloud_data_lineage_integration = args[:cloud_data_lineage_integration] if args.key?(:cloud_data_lineage_integration)
1359
1596
  @env_variables = args[:env_variables] if args.key?(:env_variables)
1360
1597
  @image_version = args[:image_version] if args.key?(:image_version)
1361
1598
  @pypi_packages = args[:pypi_packages] if args.key?(:pypi_packages)
@@ -1403,6 +1640,37 @@ module Google
1403
1640
  end
1404
1641
  end
1405
1642
 
1643
+ # Configuration for resources used by Airflow triggerers.
1644
+ class TriggererResource
1645
+ include Google::Apis::Core::Hashable
1646
+
1647
+ # Optional. The number of triggerers.
1648
+ # Corresponds to the JSON property `count`
1649
+ # @return [Fixnum]
1650
+ attr_accessor :count
1651
+
1652
+ # Optional. CPU request and limit for a single Airflow triggerer replica.
1653
+ # Corresponds to the JSON property `cpu`
1654
+ # @return [Float]
1655
+ attr_accessor :cpu
1656
+
1657
+ # Optional. Memory (GB) request and limit for a single Airflow triggerer replica.
1658
+ # Corresponds to the JSON property `memoryGb`
1659
+ # @return [Float]
1660
+ attr_accessor :memory_gb
1661
+
1662
+ def initialize(**args)
1663
+ update!(**args)
1664
+ end
1665
+
1666
+ # Update properties of this object
1667
+ def update!(**args)
1668
+ @count = args[:count] if args.key?(:count)
1669
+ @cpu = args[:cpu] if args.key?(:cpu)
1670
+ @memory_gb = args[:memory_gb] if args.key?(:memory_gb)
1671
+ end
1672
+ end
1673
+
1406
1674
  # The configuration settings for the Airflow web server App Engine instance.
1407
1675
  # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.
1408
1676
  # *.*.
@@ -1532,6 +1800,11 @@ module Google
1532
1800
  # @return [Google::Apis::ComposerV1beta1::SchedulerResource]
1533
1801
  attr_accessor :scheduler
1534
1802
 
1803
+ # Configuration for resources used by Airflow triggerers.
1804
+ # Corresponds to the JSON property `triggerer`
1805
+ # @return [Google::Apis::ComposerV1beta1::TriggererResource]
1806
+ attr_accessor :triggerer
1807
+
1535
1808
  # Configuration for resources used by Airflow web server.
1536
1809
  # Corresponds to the JSON property `webServer`
1537
1810
  # @return [Google::Apis::ComposerV1beta1::WebServerResource]
@@ -1549,6 +1822,7 @@ module Google
1549
1822
  # Update properties of this object
1550
1823
  def update!(**args)
1551
1824
  @scheduler = args[:scheduler] if args.key?(:scheduler)
1825
+ @triggerer = args[:triggerer] if args.key?(:triggerer)
1552
1826
  @web_server = args[:web_server] if args.key?(:web_server)
1553
1827
  @worker = args[:worker] if args.key?(:worker)
1554
1828
  end
@@ -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.27.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220920"
25
+ REVISION = "20221114"
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
 
@@ -82,6 +88,18 @@ module Google
82
88
  include Google::Apis::Core::JsonObjectSupport
83
89
  end
84
90
 
91
+ class ExecuteAirflowCommandResponse
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
97
+ class ExitInfo
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
85
103
  class IpAllocationPolicy
86
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
105
 
@@ -94,6 +112,12 @@ module Google
94
112
  include Google::Apis::Core::JsonObjectSupport
95
113
  end
96
114
 
115
+ class Line
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
97
121
  class ListEnvironmentsResponse
98
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
123
 
@@ -160,6 +184,12 @@ module Google
160
184
  include Google::Apis::Core::JsonObjectSupport
161
185
  end
162
186
 
187
+ class PollAirflowCommandResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
163
193
  class PrivateClusterConfig
164
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
195
 
@@ -172,6 +202,12 @@ module Google
172
202
  include Google::Apis::Core::JsonObjectSupport
173
203
  end
174
204
 
205
+ class RecoveryConfig
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
175
211
  class RestartWebServerRequest
176
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
213
 
@@ -190,6 +226,12 @@ module Google
190
226
  include Google::Apis::Core::JsonObjectSupport
191
227
  end
192
228
 
229
+ class ScheduledSnapshotsConfig
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
193
235
  class SchedulerResource
194
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
237
 
@@ -208,6 +250,12 @@ module Google
208
250
  include Google::Apis::Core::JsonObjectSupport
209
251
  end
210
252
 
253
+ class TriggererResource
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
211
259
  class WebServerConfig
212
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
261
 
@@ -272,6 +320,13 @@ module Google
272
320
  end
273
321
  end
274
322
 
323
+ class CloudDataLineageIntegration
324
+ # @private
325
+ class Representation < Google::Apis::Core::JsonRepresentation
326
+ property :enabled, as: 'enabled'
327
+ end
328
+ end
329
+
275
330
  class DatabaseConfig
276
331
  # @private
277
332
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -335,6 +390,8 @@ module Google
335
390
  property :node_count, as: 'nodeCount'
336
391
  property :private_environment_config, as: 'privateEnvironmentConfig', class: Google::Apis::ComposerV1beta1::PrivateEnvironmentConfig, decorator: Google::Apis::ComposerV1beta1::PrivateEnvironmentConfig::Representation
337
392
 
393
+ property :recovery_config, as: 'recoveryConfig', class: Google::Apis::ComposerV1beta1::RecoveryConfig, decorator: Google::Apis::ComposerV1beta1::RecoveryConfig::Representation
394
+
338
395
  property :software_config, as: 'softwareConfig', class: Google::Apis::ComposerV1beta1::SoftwareConfig, decorator: Google::Apis::ComposerV1beta1::SoftwareConfig::Representation
339
396
 
340
397
  property :web_server_config, as: 'webServerConfig', class: Google::Apis::ComposerV1beta1::WebServerConfig, decorator: Google::Apis::ComposerV1beta1::WebServerConfig::Representation
@@ -346,6 +403,24 @@ module Google
346
403
  end
347
404
  end
348
405
 
406
+ class ExecuteAirflowCommandResponse
407
+ # @private
408
+ class Representation < Google::Apis::Core::JsonRepresentation
409
+ property :error, as: 'error'
410
+ property :execution_id, as: 'executionId'
411
+ property :pod, as: 'pod'
412
+ property :pod_namespace, as: 'podNamespace'
413
+ end
414
+ end
415
+
416
+ class ExitInfo
417
+ # @private
418
+ class Representation < Google::Apis::Core::JsonRepresentation
419
+ property :error, as: 'error'
420
+ property :exit_code, as: 'exitCode'
421
+ end
422
+ end
423
+
349
424
  class IpAllocationPolicy
350
425
  # @private
351
426
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -370,6 +445,14 @@ module Google
370
445
  end
371
446
  end
372
447
 
448
+ class Line
449
+ # @private
450
+ class Representation < Google::Apis::Core::JsonRepresentation
451
+ property :content, as: 'content'
452
+ property :line_number, as: 'lineNumber'
453
+ end
454
+ end
455
+
373
456
  class ListEnvironmentsResponse
374
457
  # @private
375
458
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -400,6 +483,9 @@ module Google
400
483
  class LoadSnapshotRequest
401
484
  # @private
402
485
  class Representation < Google::Apis::Core::JsonRepresentation
486
+ property :skip_airflow_overrides_setting, as: 'skipAirflowOverridesSetting'
487
+ property :skip_environment_variables_setting, as: 'skipEnvironmentVariablesSetting'
488
+ property :skip_gcs_data_copying, as: 'skipGcsDataCopying'
403
489
  property :skip_pypi_packages_installation, as: 'skipPypiPackagesInstallation'
404
490
  property :snapshot_path, as: 'snapshotPath'
405
491
  end
@@ -478,6 +564,17 @@ module Google
478
564
  end
479
565
  end
480
566
 
567
+ class PollAirflowCommandResponse
568
+ # @private
569
+ class Representation < Google::Apis::Core::JsonRepresentation
570
+ property :exit_info, as: 'exitInfo', class: Google::Apis::ComposerV1beta1::ExitInfo, decorator: Google::Apis::ComposerV1beta1::ExitInfo::Representation
571
+
572
+ collection :output, as: 'output', class: Google::Apis::ComposerV1beta1::Line, decorator: Google::Apis::ComposerV1beta1::Line::Representation
573
+
574
+ property :output_end, as: 'outputEnd'
575
+ end
576
+ end
577
+
481
578
  class PrivateClusterConfig
482
579
  # @private
483
580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -505,6 +602,14 @@ module Google
505
602
  end
506
603
  end
507
604
 
605
+ class RecoveryConfig
606
+ # @private
607
+ class Representation < Google::Apis::Core::JsonRepresentation
608
+ property :scheduled_snapshots_config, as: 'scheduledSnapshotsConfig', class: Google::Apis::ComposerV1beta1::ScheduledSnapshotsConfig, decorator: Google::Apis::ComposerV1beta1::ScheduledSnapshotsConfig::Representation
609
+
610
+ end
611
+ end
612
+
508
613
  class RestartWebServerRequest
509
614
  # @private
510
615
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -525,6 +630,16 @@ module Google
525
630
  end
526
631
  end
527
632
 
633
+ class ScheduledSnapshotsConfig
634
+ # @private
635
+ class Representation < Google::Apis::Core::JsonRepresentation
636
+ property :enabled, as: 'enabled'
637
+ property :snapshot_creation_schedule, as: 'snapshotCreationSchedule'
638
+ property :snapshot_location, as: 'snapshotLocation'
639
+ property :time_zone, as: 'timeZone'
640
+ end
641
+ end
642
+
528
643
  class SchedulerResource
529
644
  # @private
530
645
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -539,6 +654,8 @@ module Google
539
654
  # @private
540
655
  class Representation < Google::Apis::Core::JsonRepresentation
541
656
  hash :airflow_config_overrides, as: 'airflowConfigOverrides'
657
+ property :cloud_data_lineage_integration, as: 'cloudDataLineageIntegration', class: Google::Apis::ComposerV1beta1::CloudDataLineageIntegration, decorator: Google::Apis::ComposerV1beta1::CloudDataLineageIntegration::Representation
658
+
542
659
  hash :env_variables, as: 'envVariables'
543
660
  property :image_version, as: 'imageVersion'
544
661
  hash :pypi_packages, as: 'pypiPackages'
@@ -556,6 +673,15 @@ module Google
556
673
  end
557
674
  end
558
675
 
676
+ class TriggererResource
677
+ # @private
678
+ class Representation < Google::Apis::Core::JsonRepresentation
679
+ property :count, as: 'count'
680
+ property :cpu, as: 'cpu'
681
+ property :memory_gb, as: 'memoryGb'
682
+ end
683
+ end
684
+
559
685
  class WebServerConfig
560
686
  # @private
561
687
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -596,6 +722,8 @@ module Google
596
722
  class Representation < Google::Apis::Core::JsonRepresentation
597
723
  property :scheduler, as: 'scheduler', class: Google::Apis::ComposerV1beta1::SchedulerResource, decorator: Google::Apis::ComposerV1beta1::SchedulerResource::Representation
598
724
 
725
+ property :triggerer, as: 'triggerer', class: Google::Apis::ComposerV1beta1::TriggererResource, decorator: Google::Apis::ComposerV1beta1::TriggererResource::Representation
726
+
599
727
  property :web_server, as: 'webServer', class: Google::Apis::ComposerV1beta1::WebServerResource, decorator: Google::Apis::ComposerV1beta1::WebServerResource::Representation
600
728
 
601
729
  property :worker, as: 'worker', class: Google::Apis::ComposerV1beta1::WorkerResource, decorator: Google::Apis::ComposerV1beta1::WorkerResource::Representation
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.27.0
4
+ version: 0.29.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-09-26 00:00:00.000000000 Z
11
+ date: 2022-12-12 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.0
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.0
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.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.29.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: []