google-apis-alloydb_v1beta 0.10.0 → 0.12.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: 9b4b5264bb50eb15b372a4cfddfa92cfb05d13087e2dbe1f690681cc9b5cb538
4
- data.tar.gz: 40e021c54bfad6ce2252a46136c88d51d5210dc4fedb3adef2083b76fafa7d45
3
+ metadata.gz: 219d1a087658fec450ff7ee53f7b8ed6995d26c261e4916df7c1fc583ea5feec
4
+ data.tar.gz: 13abb6acbd89b6c2c56550bcb48365250ee46312bd893212c87fe0acadc12036
5
5
  SHA512:
6
- metadata.gz: 4c63b444a5398e229efff33135084f6b08f06872d80fe24fd8f1f2478bd4f3714553da7e5c7046e636fbbd2a8fba3b3825bf53c0acbf2974236b3b173db1fd74
7
- data.tar.gz: 0b6ca6f03ad152b7d93b2b66e31c2da74f8f7f9ac8d19e84709806caea70aec7d3b924dd5a3fd97d8ac6254cea46bee890ef96e4fa3ef09d60b3845c08392f7a
6
+ metadata.gz: 7c086fe0cd267cbe4ea2bfe8dababd2b37156fa95d5a05239c2385c138c9f16f692813e565d6da697f9db8af0059c7a84ac8072afeb0cb8192926127ef635816
7
+ data.tar.gz: 4652f165a095804897494a06b8b925b33797160fead7dd829a43ee1beae8526b72401b8ae4499963748f2087d0e0cd099dabc66e896e4104154edc14d8a7b156
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1beta
2
2
 
3
+ ### v0.12.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240410
6
+
7
+ ### v0.11.0 (2024-03-31)
8
+
9
+ * Regenerated from discovery document revision 20240320
10
+
3
11
  ### v0.10.0 (2024-03-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20240306
@@ -468,6 +468,15 @@ module Google
468
468
  # @return [Hash<String,String>]
469
469
  attr_accessor :labels
470
470
 
471
+ # MaintenanceSchedule stores the maintenance schedule generated from the
472
+ # MaintenanceUpdatePolicy, once a maintenance rollout is triggered, if
473
+ # MaintenanceWindow is set, and if there is no conflicting DenyPeriod. The
474
+ # schedule is cleared once the update takes place. This field cannot be manually
475
+ # changed; modify the MaintenanceUpdatePolicy instead.
476
+ # Corresponds to the JSON property `maintenanceSchedule`
477
+ # @return [Google::Apis::AlloydbV1beta::MaintenanceSchedule]
478
+ attr_accessor :maintenance_schedule
479
+
471
480
  # MaintenanceUpdatePolicy defines the policy for system updates.
472
481
  # Corresponds to the JSON property `maintenanceUpdatePolicy`
473
482
  # @return [Google::Apis::AlloydbV1beta::MaintenanceUpdatePolicy]
@@ -579,6 +588,7 @@ module Google
579
588
  @gemini_config = args[:gemini_config] if args.key?(:gemini_config)
580
589
  @initial_user = args[:initial_user] if args.key?(:initial_user)
581
590
  @labels = args[:labels] if args.key?(:labels)
591
+ @maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
582
592
  @maintenance_update_policy = args[:maintenance_update_policy] if args.key?(:maintenance_update_policy)
583
593
  @migration_source = args[:migration_source] if args.key?(:migration_source)
584
594
  @name = args[:name] if args.key?(:name)
@@ -755,55 +765,6 @@ module Google
755
765
  end
756
766
  end
757
767
 
758
- # DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
759
- # be scheduled to start within this deny period. The start_date must be less
760
- # than the end_date.
761
- class DenyMaintenancePeriod
762
- include Google::Apis::Core::Hashable
763
-
764
- # Represents a whole or partial calendar date, such as a birthday. The time of
765
- # day and time zone are either specified elsewhere or are insignificant. The
766
- # date is relative to the Gregorian Calendar. This can represent one of the
767
- # following: * A full date, with non-zero year, month, and day values. * A month
768
- # and day, with a zero year (for example, an anniversary). * A year on its own,
769
- # with a zero month and a zero day. * A year and month, with a zero day (for
770
- # example, a credit card expiration date). Related types: * google.type.
771
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
772
- # Corresponds to the JSON property `endDate`
773
- # @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
774
- attr_accessor :end_date
775
-
776
- # Represents a whole or partial calendar date, such as a birthday. The time of
777
- # day and time zone are either specified elsewhere or are insignificant. The
778
- # date is relative to the Gregorian Calendar. This can represent one of the
779
- # following: * A full date, with non-zero year, month, and day values. * A month
780
- # and day, with a zero year (for example, an anniversary). * A year on its own,
781
- # with a zero month and a zero day. * A year and month, with a zero day (for
782
- # example, a credit card expiration date). Related types: * google.type.
783
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
784
- # Corresponds to the JSON property `startDate`
785
- # @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
786
- attr_accessor :start_date
787
-
788
- # Represents a time of day. The date and time zone are either not significant or
789
- # are specified elsewhere. An API may choose to allow leap seconds. Related
790
- # types are google.type.Date and `google.protobuf.Timestamp`.
791
- # Corresponds to the JSON property `time`
792
- # @return [Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay]
793
- attr_accessor :time
794
-
795
- def initialize(**args)
796
- update!(**args)
797
- end
798
-
799
- # Update properties of this object
800
- def update!(**args)
801
- @end_date = args[:end_date] if args.key?(:end_date)
802
- @start_date = args[:start_date] if args.key?(:start_date)
803
- @time = args[:time] if args.key?(:time)
804
- end
805
- end
806
-
807
768
  # A generic empty message that you can re-use to avoid defining duplicated empty
808
769
  # messages in your APIs. A typical example is to use it as the request or the
809
770
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1024,47 +985,6 @@ module Google
1024
985
  end
1025
986
  end
1026
987
 
1027
- # Represents a whole or partial calendar date, such as a birthday. The time of
1028
- # day and time zone are either specified elsewhere or are insignificant. The
1029
- # date is relative to the Gregorian Calendar. This can represent one of the
1030
- # following: * A full date, with non-zero year, month, and day values. * A month
1031
- # and day, with a zero year (for example, an anniversary). * A year on its own,
1032
- # with a zero month and a zero day. * A year and month, with a zero day (for
1033
- # example, a credit card expiration date). Related types: * google.type.
1034
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1035
- class GoogleTypeDate
1036
- include Google::Apis::Core::Hashable
1037
-
1038
- # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
1039
- # specify a year by itself or a year and month where the day isn't significant.
1040
- # Corresponds to the JSON property `day`
1041
- # @return [Fixnum]
1042
- attr_accessor :day
1043
-
1044
- # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
1045
- # and day.
1046
- # Corresponds to the JSON property `month`
1047
- # @return [Fixnum]
1048
- attr_accessor :month
1049
-
1050
- # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
1051
- # year.
1052
- # Corresponds to the JSON property `year`
1053
- # @return [Fixnum]
1054
- attr_accessor :year
1055
-
1056
- def initialize(**args)
1057
- update!(**args)
1058
- end
1059
-
1060
- # Update properties of this object
1061
- def update!(**args)
1062
- @day = args[:day] if args.key?(:day)
1063
- @month = args[:month] if args.key?(:month)
1064
- @year = args[:year] if args.key?(:year)
1065
- end
1066
- end
1067
-
1068
988
  # Represents a time of day. The date and time zone are either not significant or
1069
989
  # are specified elsewhere. An API may choose to allow leap seconds. Related
1070
990
  # types are google.type.Date and `google.protobuf.Timestamp`.
@@ -1619,15 +1539,33 @@ module Google
1619
1539
  end
1620
1540
  end
1621
1541
 
1542
+ # MaintenanceSchedule stores the maintenance schedule generated from the
1543
+ # MaintenanceUpdatePolicy, once a maintenance rollout is triggered, if
1544
+ # MaintenanceWindow is set, and if there is no conflicting DenyPeriod. The
1545
+ # schedule is cleared once the update takes place. This field cannot be manually
1546
+ # changed; modify the MaintenanceUpdatePolicy instead.
1547
+ class MaintenanceSchedule
1548
+ include Google::Apis::Core::Hashable
1549
+
1550
+ # Output only. The scheduled start time for the maintenance.
1551
+ # Corresponds to the JSON property `startTime`
1552
+ # @return [String]
1553
+ attr_accessor :start_time
1554
+
1555
+ def initialize(**args)
1556
+ update!(**args)
1557
+ end
1558
+
1559
+ # Update properties of this object
1560
+ def update!(**args)
1561
+ @start_time = args[:start_time] if args.key?(:start_time)
1562
+ end
1563
+ end
1564
+
1622
1565
  # MaintenanceUpdatePolicy defines the policy for system updates.
1623
1566
  class MaintenanceUpdatePolicy
1624
1567
  include Google::Apis::Core::Hashable
1625
1568
 
1626
- # Periods to deny maintenance. Currently limited to 1.
1627
- # Corresponds to the JSON property `denyMaintenancePeriods`
1628
- # @return [Array<Google::Apis::AlloydbV1beta::DenyMaintenancePeriod>]
1629
- attr_accessor :deny_maintenance_periods
1630
-
1631
1569
  # Preferred windows to perform maintenance. Currently limited to 1.
1632
1570
  # Corresponds to the JSON property `maintenanceWindows`
1633
1571
  # @return [Array<Google::Apis::AlloydbV1beta::MaintenanceWindow>]
@@ -1639,7 +1577,6 @@ module Google
1639
1577
 
1640
1578
  # Update properties of this object
1641
1579
  def update!(**args)
1642
- @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
1643
1580
  @maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
1644
1581
  end
1645
1582
  end
@@ -2068,46 +2005,18 @@ module Google
2068
2005
  class PscInstanceConfig
2069
2006
  include Google::Apis::Core::Hashable
2070
2007
 
2071
- # Optional. List of consumer networks that are allowed to create PSC endpoints
2072
- # to service-attachments to this instance.
2073
- # Corresponds to the JSON property `allowedConsumerNetworks`
2074
- # @return [Array<String>]
2075
- attr_accessor :allowed_consumer_networks
2076
-
2077
2008
  # Optional. List of consumer projects that are allowed to create PSC endpoints
2078
2009
  # to service-attachments to this instance.
2079
2010
  # Corresponds to the JSON property `allowedConsumerProjects`
2080
2011
  # @return [Array<String>]
2081
2012
  attr_accessor :allowed_consumer_projects
2082
2013
 
2083
- # Optional. List of service attachments that this instance has created endpoints
2084
- # to connect with. Currently, only a single outgoing service attachment is
2085
- # supported per instance.
2086
- # Corresponds to the JSON property `outgoingServiceAttachmentLinks`
2087
- # @return [Array<String>]
2088
- attr_accessor :outgoing_service_attachment_links
2089
-
2090
2014
  # Output only. The DNS name of the instance for PSC connectivity. Name
2091
2015
  # convention: ...alloydb-psc.goog
2092
2016
  # Corresponds to the JSON property `pscDnsName`
2093
2017
  # @return [String]
2094
2018
  attr_accessor :psc_dns_name
2095
2019
 
2096
- # Optional. Whether PSC connectivity is enabled for this instance. This is
2097
- # populated by referencing the value from the parent cluster.
2098
- # Corresponds to the JSON property `pscEnabled`
2099
- # @return [Boolean]
2100
- attr_accessor :psc_enabled
2101
- alias_method :psc_enabled?, :psc_enabled
2102
-
2103
- # Optional. Configurations for setting up PSC interfaces attached to the
2104
- # instance which are used for outbound connectivity. Only primary instances can
2105
- # have PSC interface attached. All the VMs created for the primary instance will
2106
- # share the same configurations. Currently we only support 0 or 1 PSC interface.
2107
- # Corresponds to the JSON property `pscInterfaceConfigs`
2108
- # @return [Array<Google::Apis::AlloydbV1beta::PscInterfaceConfig>]
2109
- attr_accessor :psc_interface_configs
2110
-
2111
2020
  # Output only. The service attachment created when Private Service Connect (PSC)
2112
2021
  # is enabled for the instance. The name of the resource will be in the format of
2113
2022
  # `projects//regions//serviceAttachments/`
@@ -2121,48 +2030,12 @@ module Google
2121
2030
 
2122
2031
  # Update properties of this object
2123
2032
  def update!(**args)
2124
- @allowed_consumer_networks = args[:allowed_consumer_networks] if args.key?(:allowed_consumer_networks)
2125
2033
  @allowed_consumer_projects = args[:allowed_consumer_projects] if args.key?(:allowed_consumer_projects)
2126
- @outgoing_service_attachment_links = args[:outgoing_service_attachment_links] if args.key?(:outgoing_service_attachment_links)
2127
2034
  @psc_dns_name = args[:psc_dns_name] if args.key?(:psc_dns_name)
2128
- @psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
2129
- @psc_interface_configs = args[:psc_interface_configs] if args.key?(:psc_interface_configs)
2130
2035
  @service_attachment_link = args[:service_attachment_link] if args.key?(:service_attachment_link)
2131
2036
  end
2132
2037
  end
2133
2038
 
2134
- # Configuration for setting up a PSC interface. This information needs to be
2135
- # provided by the customer. PSC interfaces will be created and added to VMs via
2136
- # SLM (adding a network interface will require recreating the VM). For HA
2137
- # instances this will be done via LDTM.
2138
- class PscInterfaceConfig
2139
- include Google::Apis::Core::Hashable
2140
-
2141
- # A list of endpoints in the consumer VPC the interface might initiate outbound
2142
- # connections to. This list has to be provided when the PSC interface is created.
2143
- # Corresponds to the JSON property `consumerEndpointIps`
2144
- # @return [Array<String>]
2145
- attr_accessor :consumer_endpoint_ips
2146
-
2147
- # The NetworkAttachment resource created in the consumer VPC to which the PSC
2148
- # interface will be linked, in the form of: `projects/$`CONSUMER_PROJECT`/
2149
- # regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME``.
2150
- # NetworkAttachment has to be provided when the PSC interface is created.
2151
- # Corresponds to the JSON property `networkAttachment`
2152
- # @return [String]
2153
- attr_accessor :network_attachment
2154
-
2155
- def initialize(**args)
2156
- update!(**args)
2157
- end
2158
-
2159
- # Update properties of this object
2160
- def update!(**args)
2161
- @consumer_endpoint_ips = args[:consumer_endpoint_ips] if args.key?(:consumer_endpoint_ips)
2162
- @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
2163
- end
2164
- end
2165
-
2166
2039
  # A backup's position in a quantity-based retention queue, of backups with the
2167
2040
  # same source cluster and type, with length, retention, specified by the backup'
2168
2041
  # s retention policy. Once the position is greater than the retention, the
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1beta
18
18
  # Version of the google-apis-alloydb_v1beta gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240306"
25
+ REVISION = "20240410"
26
26
  end
27
27
  end
28
28
  end
@@ -88,12 +88,6 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
- class DenyMaintenancePeriod
92
- class Representation < Google::Apis::Core::JsonRepresentation; end
93
-
94
- include Google::Apis::Core::JsonObjectSupport
95
- end
96
-
97
91
  class Empty
98
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
93
 
@@ -142,12 +136,6 @@ module Google
142
136
  include Google::Apis::Core::JsonObjectSupport
143
137
  end
144
138
 
145
- class GoogleTypeDate
146
- class Representation < Google::Apis::Core::JsonRepresentation; end
147
-
148
- include Google::Apis::Core::JsonObjectSupport
149
- end
150
-
151
139
  class GoogleTypeTimeOfDay
152
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
141
 
@@ -220,6 +208,12 @@ module Google
220
208
  include Google::Apis::Core::JsonObjectSupport
221
209
  end
222
210
 
211
+ class MaintenanceSchedule
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
223
217
  class MaintenanceUpdatePolicy
224
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
219
 
@@ -292,12 +286,6 @@ module Google
292
286
  include Google::Apis::Core::JsonObjectSupport
293
287
  end
294
288
 
295
- class PscInterfaceConfig
296
- class Representation < Google::Apis::Core::JsonRepresentation; end
297
-
298
- include Google::Apis::Core::JsonObjectSupport
299
- end
300
-
301
289
  class QuantityBasedExpiry
302
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
291
 
@@ -598,6 +586,8 @@ module Google
598
586
  property :initial_user, as: 'initialUser', class: Google::Apis::AlloydbV1beta::UserPassword, decorator: Google::Apis::AlloydbV1beta::UserPassword::Representation
599
587
 
600
588
  hash :labels, as: 'labels'
589
+ property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::AlloydbV1beta::MaintenanceSchedule, decorator: Google::Apis::AlloydbV1beta::MaintenanceSchedule::Representation
590
+
601
591
  property :maintenance_update_policy, as: 'maintenanceUpdatePolicy', class: Google::Apis::AlloydbV1beta::MaintenanceUpdatePolicy, decorator: Google::Apis::AlloydbV1beta::MaintenanceUpdatePolicy::Representation
602
592
 
603
593
  property :migration_source, as: 'migrationSource', class: Google::Apis::AlloydbV1beta::MigrationSource, decorator: Google::Apis::AlloydbV1beta::MigrationSource::Representation
@@ -663,18 +653,6 @@ module Google
663
653
  end
664
654
  end
665
655
 
666
- class DenyMaintenancePeriod
667
- # @private
668
- class Representation < Google::Apis::Core::JsonRepresentation
669
- property :end_date, as: 'endDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
670
-
671
- property :start_date, as: 'startDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
672
-
673
- property :time, as: 'time', class: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay, decorator: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay::Representation
674
-
675
- end
676
- end
677
-
678
656
  class Empty
679
657
  # @private
680
658
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -738,15 +716,6 @@ module Google
738
716
  end
739
717
  end
740
718
 
741
- class GoogleTypeDate
742
- # @private
743
- class Representation < Google::Apis::Core::JsonRepresentation
744
- property :day, as: 'day'
745
- property :month, as: 'month'
746
- property :year, as: 'year'
747
- end
748
- end
749
-
750
719
  class GoogleTypeTimeOfDay
751
720
  # @private
752
721
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -894,11 +863,16 @@ module Google
894
863
  end
895
864
  end
896
865
 
897
- class MaintenanceUpdatePolicy
866
+ class MaintenanceSchedule
898
867
  # @private
899
868
  class Representation < Google::Apis::Core::JsonRepresentation
900
- collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod, decorator: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod::Representation
869
+ property :start_time, as: 'startTime'
870
+ end
871
+ end
901
872
 
873
+ class MaintenanceUpdatePolicy
874
+ # @private
875
+ class Representation < Google::Apis::Core::JsonRepresentation
902
876
  collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::AlloydbV1beta::MaintenanceWindow, decorator: Google::Apis::AlloydbV1beta::MaintenanceWindow::Representation
903
877
 
904
878
  end
@@ -1005,25 +979,12 @@ module Google
1005
979
  class PscInstanceConfig
1006
980
  # @private
1007
981
  class Representation < Google::Apis::Core::JsonRepresentation
1008
- collection :allowed_consumer_networks, as: 'allowedConsumerNetworks'
1009
982
  collection :allowed_consumer_projects, as: 'allowedConsumerProjects'
1010
- collection :outgoing_service_attachment_links, as: 'outgoingServiceAttachmentLinks'
1011
983
  property :psc_dns_name, as: 'pscDnsName'
1012
- property :psc_enabled, as: 'pscEnabled'
1013
- collection :psc_interface_configs, as: 'pscInterfaceConfigs', class: Google::Apis::AlloydbV1beta::PscInterfaceConfig, decorator: Google::Apis::AlloydbV1beta::PscInterfaceConfig::Representation
1014
-
1015
984
  property :service_attachment_link, as: 'serviceAttachmentLink'
1016
985
  end
1017
986
  end
1018
987
 
1019
- class PscInterfaceConfig
1020
- # @private
1021
- class Representation < Google::Apis::Core::JsonRepresentation
1022
- collection :consumer_endpoint_ips, as: 'consumerEndpointIps'
1023
- property :network_attachment, as: 'networkAttachment'
1024
- end
1025
- end
1026
-
1027
988
  class QuantityBasedExpiry
1028
989
  # @private
1029
990
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.12.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: 2024-03-17 00:00:00.000000000 Z
11
+ date: 2024-04-21 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-alloydb_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []