google-apis-composer_v1beta1 0.28.0 → 0.30.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: acb1a4d61e49946e8c227480c27c2524a421fcf4d05179308bd8fc5dae1f40a2
4
- data.tar.gz: 5bd5c8b35795a24b244026216247f0cd30e7c50c2148b72ec27b2d88f70e4d07
3
+ metadata.gz: '08c9a30a4a8d8de7d87868b874d540bcc75b80449b5c430365af3bbfe934b6d0'
4
+ data.tar.gz: a1e1f5e7ff597e81e8be04f379fc0ab60bde4d63c5ca96444dda30d1c26c1cfd
5
5
  SHA512:
6
- metadata.gz: 665d3a98f0f5650316fa5f52b0f05682ac317b995c57a52b6f83e5d86d2fb487edbc765414efb62c09fae04fe2cfc93ddbd819d368e853dd611a35f320d66b30
7
- data.tar.gz: 718fc8491088df6f2c582ee0b96c862487a8ff3f4a27b9f4f5bd1883296754049a345fb668e138e3b76a5bad1ec469a0732d1fe386dc761f4c3dc59048918ff9
6
+ metadata.gz: c41b265caf9f5eab2d4b8317b160f464bf39a31244a0c6c26af1bb0a9e17631f9cf633d67976e0143b5d7553d2239406fa93636f9024e78f73cc129ba08fe1f7
7
+ data.tar.gz: f9a6b6e0383b8117f754b5d3100ff7ec00fb71e12476800acb320d6aa03d8d364845a729149ba6b3ae746c125fb96a3b21da53a571cad9af42abd19c1f2a2f5a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.30.0 (2023-01-29)
4
+
5
+ * Regenerated from discovery document revision 20230124
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.29.0 (2022-11-22)
9
+
10
+ * Regenerated from discovery document revision 20221114
11
+
3
12
  ### v0.28.0 (2022-11-03)
4
13
 
5
14
  * 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
@@ -949,8 +1042,7 @@ module Google
949
1042
  # Optional. The list of instance tags applied to all node VMs. Tags are used to
950
1043
  # identify valid sources or targets for network firewalls. Each tag within the
951
1044
  # list must comply with [RFC1035](https://www.ietf.org/rfc/rfc1035.txt). Cannot
952
- # be updated. This field is supported for Cloud Composer environments in
953
- # versions composer-1.*.*-airflow-*.*.*.
1045
+ # be updated.
954
1046
  # Corresponds to the JSON property `tags`
955
1047
  # @return [Array<String>]
956
1048
  attr_accessor :tags
@@ -1088,6 +1180,39 @@ module Google
1088
1180
  end
1089
1181
  end
1090
1182
 
1183
+ # Response to PollAirflowCommandRequest.
1184
+ class PollAirflowCommandResponse
1185
+ include Google::Apis::Core::Hashable
1186
+
1187
+ # Information about how a command ended.
1188
+ # Corresponds to the JSON property `exitInfo`
1189
+ # @return [Google::Apis::ComposerV1beta1::ExitInfo]
1190
+ attr_accessor :exit_info
1191
+
1192
+ # Output from the command execution. It may not contain the full output and the
1193
+ # caller may need to poll for more lines.
1194
+ # Corresponds to the JSON property `output`
1195
+ # @return [Array<Google::Apis::ComposerV1beta1::Line>]
1196
+ attr_accessor :output
1197
+
1198
+ # Whether the command execution has finished and there is no more output.
1199
+ # Corresponds to the JSON property `outputEnd`
1200
+ # @return [Boolean]
1201
+ attr_accessor :output_end
1202
+ alias_method :output_end?, :output_end
1203
+
1204
+ def initialize(**args)
1205
+ update!(**args)
1206
+ end
1207
+
1208
+ # Update properties of this object
1209
+ def update!(**args)
1210
+ @exit_info = args[:exit_info] if args.key?(:exit_info)
1211
+ @output = args[:output] if args.key?(:output)
1212
+ @output_end = args[:output_end] if args.key?(:output_end)
1213
+ end
1214
+ end
1215
+
1091
1216
  # Configuration options for the private GKE cluster in a Cloud Composer
1092
1217
  # environment.
1093
1218
  class PrivateClusterConfig
@@ -1223,6 +1348,25 @@ module Google
1223
1348
  end
1224
1349
  end
1225
1350
 
1351
+ # The Recovery settings of an environment.
1352
+ class RecoveryConfig
1353
+ include Google::Apis::Core::Hashable
1354
+
1355
+ # The configuration for scheduled snapshot creation mechanism.
1356
+ # Corresponds to the JSON property `scheduledSnapshotsConfig`
1357
+ # @return [Google::Apis::ComposerV1beta1::ScheduledSnapshotsConfig]
1358
+ attr_accessor :scheduled_snapshots_config
1359
+
1360
+ def initialize(**args)
1361
+ update!(**args)
1362
+ end
1363
+
1364
+ # Update properties of this object
1365
+ def update!(**args)
1366
+ @scheduled_snapshots_config = args[:scheduled_snapshots_config] if args.key?(:scheduled_snapshots_config)
1367
+ end
1368
+ end
1369
+
1226
1370
  # Restart Airflow web server.
1227
1371
  class RestartWebServerRequest
1228
1372
  include Google::Apis::Core::Hashable
@@ -1277,6 +1421,48 @@ module Google
1277
1421
  end
1278
1422
  end
1279
1423
 
1424
+ # The configuration for scheduled snapshot creation mechanism.
1425
+ class ScheduledSnapshotsConfig
1426
+ include Google::Apis::Core::Hashable
1427
+
1428
+ # Optional. Whether scheduled snapshots creation is enabled.
1429
+ # Corresponds to the JSON property `enabled`
1430
+ # @return [Boolean]
1431
+ attr_accessor :enabled
1432
+ alias_method :enabled?, :enabled
1433
+
1434
+ # Optional. The cron expression representing the time when snapshots creation
1435
+ # mechanism runs. This field is subject to additional validation around
1436
+ # frequency of execution.
1437
+ # Corresponds to the JSON property `snapshotCreationSchedule`
1438
+ # @return [String]
1439
+ attr_accessor :snapshot_creation_schedule
1440
+
1441
+ # Optional. The Cloud Storage location for storing automatically created
1442
+ # snapshots.
1443
+ # Corresponds to the JSON property `snapshotLocation`
1444
+ # @return [String]
1445
+ attr_accessor :snapshot_location
1446
+
1447
+ # Optional. Time zone that sets the context to interpret
1448
+ # snapshot_creation_schedule.
1449
+ # Corresponds to the JSON property `timeZone`
1450
+ # @return [String]
1451
+ attr_accessor :time_zone
1452
+
1453
+ def initialize(**args)
1454
+ update!(**args)
1455
+ end
1456
+
1457
+ # Update properties of this object
1458
+ def update!(**args)
1459
+ @enabled = args[:enabled] if args.key?(:enabled)
1460
+ @snapshot_creation_schedule = args[:snapshot_creation_schedule] if args.key?(:snapshot_creation_schedule)
1461
+ @snapshot_location = args[:snapshot_location] if args.key?(:snapshot_location)
1462
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
1463
+ end
1464
+ end
1465
+
1280
1466
  # Configuration for resources used by Airflow schedulers.
1281
1467
  class SchedulerResource
1282
1468
  include Google::Apis::Core::Hashable
@@ -1453,6 +1639,37 @@ module Google
1453
1639
  end
1454
1640
  end
1455
1641
 
1642
+ # Configuration for resources used by Airflow triggerers.
1643
+ class TriggererResource
1644
+ include Google::Apis::Core::Hashable
1645
+
1646
+ # Optional. The number of triggerers.
1647
+ # Corresponds to the JSON property `count`
1648
+ # @return [Fixnum]
1649
+ attr_accessor :count
1650
+
1651
+ # Optional. CPU request and limit for a single Airflow triggerer replica.
1652
+ # Corresponds to the JSON property `cpu`
1653
+ # @return [Float]
1654
+ attr_accessor :cpu
1655
+
1656
+ # Optional. Memory (GB) request and limit for a single Airflow triggerer replica.
1657
+ # Corresponds to the JSON property `memoryGb`
1658
+ # @return [Float]
1659
+ attr_accessor :memory_gb
1660
+
1661
+ def initialize(**args)
1662
+ update!(**args)
1663
+ end
1664
+
1665
+ # Update properties of this object
1666
+ def update!(**args)
1667
+ @count = args[:count] if args.key?(:count)
1668
+ @cpu = args[:cpu] if args.key?(:cpu)
1669
+ @memory_gb = args[:memory_gb] if args.key?(:memory_gb)
1670
+ end
1671
+ end
1672
+
1456
1673
  # The configuration settings for the Airflow web server App Engine instance.
1457
1674
  # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.
1458
1675
  # *.*.
@@ -1582,6 +1799,11 @@ module Google
1582
1799
  # @return [Google::Apis::ComposerV1beta1::SchedulerResource]
1583
1800
  attr_accessor :scheduler
1584
1801
 
1802
+ # Configuration for resources used by Airflow triggerers.
1803
+ # Corresponds to the JSON property `triggerer`
1804
+ # @return [Google::Apis::ComposerV1beta1::TriggererResource]
1805
+ attr_accessor :triggerer
1806
+
1585
1807
  # Configuration for resources used by Airflow web server.
1586
1808
  # Corresponds to the JSON property `webServer`
1587
1809
  # @return [Google::Apis::ComposerV1beta1::WebServerResource]
@@ -1599,6 +1821,7 @@ module Google
1599
1821
  # Update properties of this object
1600
1822
  def update!(**args)
1601
1823
  @scheduler = args[:scheduler] if args.key?(:scheduler)
1824
+ @triggerer = args[:triggerer] if args.key?(:triggerer)
1602
1825
  @web_server = args[:web_server] if args.key?(:web_server)
1603
1826
  @worker = args[:worker] if args.key?(:worker)
1604
1827
  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.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221028"
25
+ REVISION = "20230124"
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.30.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: 2023-01-29 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.30.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Composer API V1beta1