google-apis-composer_v1beta1 0.28.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: acb1a4d61e49946e8c227480c27c2524a421fcf4d05179308bd8fc5dae1f40a2
4
- data.tar.gz: 5bd5c8b35795a24b244026216247f0cd30e7c50c2148b72ec27b2d88f70e4d07
3
+ metadata.gz: edd49673f16cd9cd1e10bad37b9637fcd2a5a7f710ccb1d25b6e21214568e2ae
4
+ data.tar.gz: 53787cf33962175488c7d8e07b73c1a6b1e84990fb31865a78d4074ee7e4a731
5
5
  SHA512:
6
- metadata.gz: 665d3a98f0f5650316fa5f52b0f05682ac317b995c57a52b6f83e5d86d2fb487edbc765414efb62c09fae04fe2cfc93ddbd819d368e853dd611a35f320d66b30
7
- data.tar.gz: 718fc8491088df6f2c582ee0b96c862487a8ff3f4a27b9f4f5bd1883296754049a345fb668e138e3b76a5bad1ec469a0732d1fe386dc761f4c3dc59048918ff9
6
+ metadata.gz: 58eb281ba6238c6839a7715a635fdc11afdce474c620d706ca52319cf0e18c1928cc5119b74419798af7758d293e483c3c216aa7752bcde5bfde2160027c77ed
7
+ data.tar.gz: d734da535fb5cf75f808fe169ebf77269c623f593a68d6a80595c90c393ed044e3222a3ec76051bdc5eb8d9fadaf33d3f7bdb47f412677822707566e99f8964d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.28.0 (2022-11-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20221028
@@ -423,6 +423,11 @@ module Google
423
423
  # @return [Google::Apis::ComposerV1beta1::PrivateEnvironmentConfig]
424
424
  attr_accessor :private_environment_config
425
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
+
426
431
  # Specifies the selection and configuration of software inside the environment.
427
432
  # Corresponds to the JSON property `softwareConfig`
428
433
  # @return [Google::Apis::ComposerV1beta1::SoftwareConfig]
@@ -464,6 +469,7 @@ module Google
464
469
  @node_config = args[:node_config] if args.key?(:node_config)
465
470
  @node_count = args[:node_count] if args.key?(:node_count)
466
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)
467
473
  @software_config = args[:software_config] if args.key?(:software_config)
468
474
  @web_server_config = args[:web_server_config] if args.key?(:web_server_config)
469
475
  @web_server_network_access_control = args[:web_server_network_access_control] if args.key?(:web_server_network_access_control)
@@ -471,6 +477,68 @@ module Google
471
477
  end
472
478
  end
473
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
+
474
542
  # Configuration for controlling how IPs are allocated in the GKE cluster.
475
543
  class IpAllocationPolicy
476
544
  include Google::Apis::Core::Hashable
@@ -604,6 +672,31 @@ module Google
604
672
  end
605
673
  end
606
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
+
607
700
  # The environments in a project and location.
608
701
  class ListEnvironmentsResponse
609
702
  include Google::Apis::Core::Hashable
@@ -1088,6 +1181,39 @@ module Google
1088
1181
  end
1089
1182
  end
1090
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
+
1091
1217
  # Configuration options for the private GKE cluster in a Cloud Composer
1092
1218
  # environment.
1093
1219
  class PrivateClusterConfig
@@ -1223,6 +1349,25 @@ module Google
1223
1349
  end
1224
1350
  end
1225
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
+
1226
1371
  # Restart Airflow web server.
1227
1372
  class RestartWebServerRequest
1228
1373
  include Google::Apis::Core::Hashable
@@ -1277,6 +1422,48 @@ module Google
1277
1422
  end
1278
1423
  end
1279
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
+
1280
1467
  # Configuration for resources used by Airflow schedulers.
1281
1468
  class SchedulerResource
1282
1469
  include Google::Apis::Core::Hashable
@@ -1453,6 +1640,37 @@ module Google
1453
1640
  end
1454
1641
  end
1455
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
+
1456
1674
  # The configuration settings for the Airflow web server App Engine instance.
1457
1675
  # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.
1458
1676
  # *.*.
@@ -1582,6 +1800,11 @@ module Google
1582
1800
  # @return [Google::Apis::ComposerV1beta1::SchedulerResource]
1583
1801
  attr_accessor :scheduler
1584
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
+
1585
1808
  # Configuration for resources used by Airflow web server.
1586
1809
  # Corresponds to the JSON property `webServer`
1587
1810
  # @return [Google::Apis::ComposerV1beta1::WebServerResource]
@@ -1599,6 +1822,7 @@ module Google
1599
1822
  # Update properties of this object
1600
1823
  def update!(**args)
1601
1824
  @scheduler = args[:scheduler] if args.key?(:scheduler)
1825
+ @triggerer = args[:triggerer] if args.key?(:triggerer)
1602
1826
  @web_server = args[:web_server] if args.key?(:web_server)
1603
1827
  @worker = args[:worker] if args.key?(:worker)
1604
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.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221028"
25
+ REVISION = "20221114"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,18 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
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
+
91
103
  class IpAllocationPolicy
92
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
105
 
@@ -100,6 +112,12 @@ module Google
100
112
  include Google::Apis::Core::JsonObjectSupport
101
113
  end
102
114
 
115
+ class Line
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
103
121
  class ListEnvironmentsResponse
104
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
123
 
@@ -166,6 +184,12 @@ module Google
166
184
  include Google::Apis::Core::JsonObjectSupport
167
185
  end
168
186
 
187
+ class PollAirflowCommandResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
169
193
  class PrivateClusterConfig
170
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
195
 
@@ -178,6 +202,12 @@ module Google
178
202
  include Google::Apis::Core::JsonObjectSupport
179
203
  end
180
204
 
205
+ class RecoveryConfig
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
181
211
  class RestartWebServerRequest
182
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
213
 
@@ -196,6 +226,12 @@ module Google
196
226
  include Google::Apis::Core::JsonObjectSupport
197
227
  end
198
228
 
229
+ class ScheduledSnapshotsConfig
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
199
235
  class SchedulerResource
200
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
237
 
@@ -214,6 +250,12 @@ module Google
214
250
  include Google::Apis::Core::JsonObjectSupport
215
251
  end
216
252
 
253
+ class TriggererResource
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
217
259
  class WebServerConfig
218
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
261
 
@@ -348,6 +390,8 @@ module Google
348
390
  property :node_count, as: 'nodeCount'
349
391
  property :private_environment_config, as: 'privateEnvironmentConfig', class: Google::Apis::ComposerV1beta1::PrivateEnvironmentConfig, decorator: Google::Apis::ComposerV1beta1::PrivateEnvironmentConfig::Representation
350
392
 
393
+ property :recovery_config, as: 'recoveryConfig', class: Google::Apis::ComposerV1beta1::RecoveryConfig, decorator: Google::Apis::ComposerV1beta1::RecoveryConfig::Representation
394
+
351
395
  property :software_config, as: 'softwareConfig', class: Google::Apis::ComposerV1beta1::SoftwareConfig, decorator: Google::Apis::ComposerV1beta1::SoftwareConfig::Representation
352
396
 
353
397
  property :web_server_config, as: 'webServerConfig', class: Google::Apis::ComposerV1beta1::WebServerConfig, decorator: Google::Apis::ComposerV1beta1::WebServerConfig::Representation
@@ -359,6 +403,24 @@ module Google
359
403
  end
360
404
  end
361
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
+
362
424
  class IpAllocationPolicy
363
425
  # @private
364
426
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -383,6 +445,14 @@ module Google
383
445
  end
384
446
  end
385
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
+
386
456
  class ListEnvironmentsResponse
387
457
  # @private
388
458
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -494,6 +564,17 @@ module Google
494
564
  end
495
565
  end
496
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
+
497
578
  class PrivateClusterConfig
498
579
  # @private
499
580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -521,6 +602,14 @@ module Google
521
602
  end
522
603
  end
523
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
+
524
613
  class RestartWebServerRequest
525
614
  # @private
526
615
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -541,6 +630,16 @@ module Google
541
630
  end
542
631
  end
543
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
+
544
643
  class SchedulerResource
545
644
  # @private
546
645
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -574,6 +673,15 @@ module Google
574
673
  end
575
674
  end
576
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
+
577
685
  class WebServerConfig
578
686
  # @private
579
687
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -614,6 +722,8 @@ module Google
614
722
  class Representation < Google::Apis::Core::JsonRepresentation
615
723
  property :scheduler, as: 'scheduler', class: Google::Apis::ComposerV1beta1::SchedulerResource, decorator: Google::Apis::ComposerV1beta1::SchedulerResource::Representation
616
724
 
725
+ property :triggerer, as: 'triggerer', class: Google::Apis::ComposerV1beta1::TriggererResource, decorator: Google::Apis::ComposerV1beta1::TriggererResource::Representation
726
+
617
727
  property :web_server, as: 'webServer', class: Google::Apis::ComposerV1beta1::WebServerResource, decorator: Google::Apis::ComposerV1beta1::WebServerResource::Representation
618
728
 
619
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.28.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-11-07 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
@@ -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.28.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: []