google-apis-alloydb_v1alpha 0.10.0 → 0.12.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: a7f36e1dba594837fc0e1cffe15a925264b788d683671659764501a65b98ea70
4
- data.tar.gz: 325564db6b1d335563ca0cb3a88a587a27b213bd48a3eb0913a7e0119798a76a
3
+ metadata.gz: 7904598948401294a0206e2bbfd815734091fe9a56531a5da7523dcfee03e48c
4
+ data.tar.gz: 9208639126b373fd81a3bc34b0b242140ed76ac2eb6a49e7f14433addbd93820
5
5
  SHA512:
6
- metadata.gz: 41fdfe314a5e1e1715054f4e19185676f5c90d761c28ecd9901d5613028a8fde1470426a4c01097e94c681016eea0aa6ac3936ba0db2273b7441fe7ad49fa00b
7
- data.tar.gz: 299540330cf01ba10042689b859bbb96f7dde24767115376dab5f301fed7f34010797345ca1de50598185773aa1f17b17bc67f6c16b8e8e36c449537b1912b12
6
+ metadata.gz: 4813ab76e636adf7d06b30e63e24d82210f27af12f3385270e6adf830e135b4d0797b119737bf8099c3f06182df38464d06f1099914c8d29de8ccb7d7aecee90
7
+ data.tar.gz: 87449d8fcef3e9394a830aac0021020b8bf10d8332ef74aa2eda078cfa667174423dca5eaf225a114e7eb0779c4070c2ab39b33d63bb5fd1789f8df2c6fec901
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
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
@@ -488,6 +488,15 @@ module Google
488
488
  # @return [Hash<String,String>]
489
489
  attr_accessor :labels
490
490
 
491
+ # MaintenanceSchedule stores the maintenance schedule generated from the
492
+ # MaintenanceUpdatePolicy, once a maintenance rollout is triggered, if
493
+ # MaintenanceWindow is set, and if there is no conflicting DenyPeriod. The
494
+ # schedule is cleared once the update takes place. This field cannot be manually
495
+ # changed; modify the MaintenanceUpdatePolicy instead.
496
+ # Corresponds to the JSON property `maintenanceSchedule`
497
+ # @return [Google::Apis::AlloydbV1alpha::MaintenanceSchedule]
498
+ attr_accessor :maintenance_schedule
499
+
491
500
  # MaintenanceUpdatePolicy defines the policy for system updates.
492
501
  # Corresponds to the JSON property `maintenanceUpdatePolicy`
493
502
  # @return [Google::Apis::AlloydbV1alpha::MaintenanceUpdatePolicy]
@@ -605,6 +614,7 @@ module Google
605
614
  @gemini_config = args[:gemini_config] if args.key?(:gemini_config)
606
615
  @initial_user = args[:initial_user] if args.key?(:initial_user)
607
616
  @labels = args[:labels] if args.key?(:labels)
617
+ @maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
608
618
  @maintenance_update_policy = args[:maintenance_update_policy] if args.key?(:maintenance_update_policy)
609
619
  @migration_source = args[:migration_source] if args.key?(:migration_source)
610
620
  @name = args[:name] if args.key?(:name)
@@ -782,55 +792,6 @@ module Google
782
792
  end
783
793
  end
784
794
 
785
- # DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
786
- # be scheduled to start within this deny period. The start_date must be less
787
- # than the end_date.
788
- class DenyMaintenancePeriod
789
- include Google::Apis::Core::Hashable
790
-
791
- # Represents a whole or partial calendar date, such as a birthday. The time of
792
- # day and time zone are either specified elsewhere or are insignificant. The
793
- # date is relative to the Gregorian Calendar. This can represent one of the
794
- # following: * A full date, with non-zero year, month, and day values. * A month
795
- # and day, with a zero year (for example, an anniversary). * A year on its own,
796
- # with a zero month and a zero day. * A year and month, with a zero day (for
797
- # example, a credit card expiration date). Related types: * google.type.
798
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
799
- # Corresponds to the JSON property `endDate`
800
- # @return [Google::Apis::AlloydbV1alpha::GoogleTypeDate]
801
- attr_accessor :end_date
802
-
803
- # Represents a whole or partial calendar date, such as a birthday. The time of
804
- # day and time zone are either specified elsewhere or are insignificant. The
805
- # date is relative to the Gregorian Calendar. This can represent one of the
806
- # following: * A full date, with non-zero year, month, and day values. * A month
807
- # and day, with a zero year (for example, an anniversary). * A year on its own,
808
- # with a zero month and a zero day. * A year and month, with a zero day (for
809
- # example, a credit card expiration date). Related types: * google.type.
810
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
811
- # Corresponds to the JSON property `startDate`
812
- # @return [Google::Apis::AlloydbV1alpha::GoogleTypeDate]
813
- attr_accessor :start_date
814
-
815
- # Represents a time of day. The date and time zone are either not significant or
816
- # are specified elsewhere. An API may choose to allow leap seconds. Related
817
- # types are google.type.Date and `google.protobuf.Timestamp`.
818
- # Corresponds to the JSON property `time`
819
- # @return [Google::Apis::AlloydbV1alpha::GoogleTypeTimeOfDay]
820
- attr_accessor :time
821
-
822
- def initialize(**args)
823
- update!(**args)
824
- end
825
-
826
- # Update properties of this object
827
- def update!(**args)
828
- @end_date = args[:end_date] if args.key?(:end_date)
829
- @start_date = args[:start_date] if args.key?(:start_date)
830
- @time = args[:time] if args.key?(:time)
831
- end
832
- end
833
-
834
795
  # A generic empty message that you can re-use to avoid defining duplicated empty
835
796
  # messages in your APIs. A typical example is to use it as the request or the
836
797
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1051,47 +1012,6 @@ module Google
1051
1012
  end
1052
1013
  end
1053
1014
 
1054
- # Represents a whole or partial calendar date, such as a birthday. The time of
1055
- # day and time zone are either specified elsewhere or are insignificant. The
1056
- # date is relative to the Gregorian Calendar. This can represent one of the
1057
- # following: * A full date, with non-zero year, month, and day values. * A month
1058
- # and day, with a zero year (for example, an anniversary). * A year on its own,
1059
- # with a zero month and a zero day. * A year and month, with a zero day (for
1060
- # example, a credit card expiration date). Related types: * google.type.
1061
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1062
- class GoogleTypeDate
1063
- include Google::Apis::Core::Hashable
1064
-
1065
- # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
1066
- # specify a year by itself or a year and month where the day isn't significant.
1067
- # Corresponds to the JSON property `day`
1068
- # @return [Fixnum]
1069
- attr_accessor :day
1070
-
1071
- # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
1072
- # and day.
1073
- # Corresponds to the JSON property `month`
1074
- # @return [Fixnum]
1075
- attr_accessor :month
1076
-
1077
- # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
1078
- # year.
1079
- # Corresponds to the JSON property `year`
1080
- # @return [Fixnum]
1081
- attr_accessor :year
1082
-
1083
- def initialize(**args)
1084
- update!(**args)
1085
- end
1086
-
1087
- # Update properties of this object
1088
- def update!(**args)
1089
- @day = args[:day] if args.key?(:day)
1090
- @month = args[:month] if args.key?(:month)
1091
- @year = args[:year] if args.key?(:year)
1092
- end
1093
- end
1094
-
1095
1015
  # Represents a time of day. The date and time zone are either not significant or
1096
1016
  # are specified elsewhere. An API may choose to allow leap seconds. Related
1097
1017
  # types are google.type.Date and `google.protobuf.Timestamp`.
@@ -1653,15 +1573,33 @@ module Google
1653
1573
  end
1654
1574
  end
1655
1575
 
1576
+ # MaintenanceSchedule stores the maintenance schedule generated from the
1577
+ # MaintenanceUpdatePolicy, once a maintenance rollout is triggered, if
1578
+ # MaintenanceWindow is set, and if there is no conflicting DenyPeriod. The
1579
+ # schedule is cleared once the update takes place. This field cannot be manually
1580
+ # changed; modify the MaintenanceUpdatePolicy instead.
1581
+ class MaintenanceSchedule
1582
+ include Google::Apis::Core::Hashable
1583
+
1584
+ # Output only. The scheduled start time for the maintenance.
1585
+ # Corresponds to the JSON property `startTime`
1586
+ # @return [String]
1587
+ attr_accessor :start_time
1588
+
1589
+ def initialize(**args)
1590
+ update!(**args)
1591
+ end
1592
+
1593
+ # Update properties of this object
1594
+ def update!(**args)
1595
+ @start_time = args[:start_time] if args.key?(:start_time)
1596
+ end
1597
+ end
1598
+
1656
1599
  # MaintenanceUpdatePolicy defines the policy for system updates.
1657
1600
  class MaintenanceUpdatePolicy
1658
1601
  include Google::Apis::Core::Hashable
1659
1602
 
1660
- # Periods to deny maintenance. Currently limited to 1.
1661
- # Corresponds to the JSON property `denyMaintenancePeriods`
1662
- # @return [Array<Google::Apis::AlloydbV1alpha::DenyMaintenancePeriod>]
1663
- attr_accessor :deny_maintenance_periods
1664
-
1665
1603
  # Preferred windows to perform maintenance. Currently limited to 1.
1666
1604
  # Corresponds to the JSON property `maintenanceWindows`
1667
1605
  # @return [Array<Google::Apis::AlloydbV1alpha::MaintenanceWindow>]
@@ -1673,7 +1611,6 @@ module Google
1673
1611
 
1674
1612
  # Update properties of this object
1675
1613
  def update!(**args)
1676
- @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
1677
1614
  @maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
1678
1615
  end
1679
1616
  end
@@ -2102,46 +2039,18 @@ module Google
2102
2039
  class PscInstanceConfig
2103
2040
  include Google::Apis::Core::Hashable
2104
2041
 
2105
- # Optional. List of consumer networks that are allowed to create PSC endpoints
2106
- # to service-attachments to this instance.
2107
- # Corresponds to the JSON property `allowedConsumerNetworks`
2108
- # @return [Array<String>]
2109
- attr_accessor :allowed_consumer_networks
2110
-
2111
2042
  # Optional. List of consumer projects that are allowed to create PSC endpoints
2112
2043
  # to service-attachments to this instance.
2113
2044
  # Corresponds to the JSON property `allowedConsumerProjects`
2114
2045
  # @return [Array<String>]
2115
2046
  attr_accessor :allowed_consumer_projects
2116
2047
 
2117
- # Optional. List of service attachments that this instance has created endpoints
2118
- # to connect with. Currently, only a single outgoing service attachment is
2119
- # supported per instance.
2120
- # Corresponds to the JSON property `outgoingServiceAttachmentLinks`
2121
- # @return [Array<String>]
2122
- attr_accessor :outgoing_service_attachment_links
2123
-
2124
2048
  # Output only. The DNS name of the instance for PSC connectivity. Name
2125
2049
  # convention: ...alloydb-psc.goog
2126
2050
  # Corresponds to the JSON property `pscDnsName`
2127
2051
  # @return [String]
2128
2052
  attr_accessor :psc_dns_name
2129
2053
 
2130
- # Optional. Whether PSC connectivity is enabled for this instance. This is
2131
- # populated by referencing the value from the parent cluster.
2132
- # Corresponds to the JSON property `pscEnabled`
2133
- # @return [Boolean]
2134
- attr_accessor :psc_enabled
2135
- alias_method :psc_enabled?, :psc_enabled
2136
-
2137
- # Optional. Configurations for setting up PSC interfaces attached to the
2138
- # instance which are used for outbound connectivity. Only primary instances can
2139
- # have PSC interface attached. All the VMs created for the primary instance will
2140
- # share the same configurations. Currently we only support 0 or 1 PSC interface.
2141
- # Corresponds to the JSON property `pscInterfaceConfigs`
2142
- # @return [Array<Google::Apis::AlloydbV1alpha::PscInterfaceConfig>]
2143
- attr_accessor :psc_interface_configs
2144
-
2145
2054
  # Output only. The service attachment created when Private Service Connect (PSC)
2146
2055
  # is enabled for the instance. The name of the resource will be in the format of
2147
2056
  # `projects//regions//serviceAttachments/`
@@ -2155,48 +2064,12 @@ module Google
2155
2064
 
2156
2065
  # Update properties of this object
2157
2066
  def update!(**args)
2158
- @allowed_consumer_networks = args[:allowed_consumer_networks] if args.key?(:allowed_consumer_networks)
2159
2067
  @allowed_consumer_projects = args[:allowed_consumer_projects] if args.key?(:allowed_consumer_projects)
2160
- @outgoing_service_attachment_links = args[:outgoing_service_attachment_links] if args.key?(:outgoing_service_attachment_links)
2161
2068
  @psc_dns_name = args[:psc_dns_name] if args.key?(:psc_dns_name)
2162
- @psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
2163
- @psc_interface_configs = args[:psc_interface_configs] if args.key?(:psc_interface_configs)
2164
2069
  @service_attachment_link = args[:service_attachment_link] if args.key?(:service_attachment_link)
2165
2070
  end
2166
2071
  end
2167
2072
 
2168
- # Configuration for setting up a PSC interface. This information needs to be
2169
- # provided by the customer. PSC interfaces will be created and added to VMs via
2170
- # SLM (adding a network interface will require recreating the VM). For HA
2171
- # instances this will be done via LDTM.
2172
- class PscInterfaceConfig
2173
- include Google::Apis::Core::Hashable
2174
-
2175
- # A list of endpoints in the consumer VPC the interface might initiate outbound
2176
- # connections to. This list has to be provided when the PSC interface is created.
2177
- # Corresponds to the JSON property `consumerEndpointIps`
2178
- # @return [Array<String>]
2179
- attr_accessor :consumer_endpoint_ips
2180
-
2181
- # The NetworkAttachment resource created in the consumer VPC to which the PSC
2182
- # interface will be linked, in the form of: `projects/$`CONSUMER_PROJECT`/
2183
- # regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME``.
2184
- # NetworkAttachment has to be provided when the PSC interface is created.
2185
- # Corresponds to the JSON property `networkAttachment`
2186
- # @return [String]
2187
- attr_accessor :network_attachment
2188
-
2189
- def initialize(**args)
2190
- update!(**args)
2191
- end
2192
-
2193
- # Update properties of this object
2194
- def update!(**args)
2195
- @consumer_endpoint_ips = args[:consumer_endpoint_ips] if args.key?(:consumer_endpoint_ips)
2196
- @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
2197
- end
2198
- end
2199
-
2200
2073
  # A backup's position in a quantity-based retention queue, of backups with the
2201
2074
  # same source cluster and type, with length, retention, specified by the backup'
2202
2075
  # 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 AlloydbV1alpha
18
18
  # Version of the google-apis-alloydb_v1alpha 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
@@ -94,12 +94,6 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
- class DenyMaintenancePeriod
98
- class Representation < Google::Apis::Core::JsonRepresentation; end
99
-
100
- include Google::Apis::Core::JsonObjectSupport
101
- end
102
-
103
97
  class Empty
104
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
99
 
@@ -148,12 +142,6 @@ module Google
148
142
  include Google::Apis::Core::JsonObjectSupport
149
143
  end
150
144
 
151
- class GoogleTypeDate
152
- class Representation < Google::Apis::Core::JsonRepresentation; end
153
-
154
- include Google::Apis::Core::JsonObjectSupport
155
- end
156
-
157
145
  class GoogleTypeTimeOfDay
158
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
147
 
@@ -226,6 +214,12 @@ module Google
226
214
  include Google::Apis::Core::JsonObjectSupport
227
215
  end
228
216
 
217
+ class MaintenanceSchedule
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
229
223
  class MaintenanceUpdatePolicy
230
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
225
 
@@ -298,12 +292,6 @@ module Google
298
292
  include Google::Apis::Core::JsonObjectSupport
299
293
  end
300
294
 
301
- class PscInterfaceConfig
302
- class Representation < Google::Apis::Core::JsonRepresentation; end
303
-
304
- include Google::Apis::Core::JsonObjectSupport
305
- end
306
-
307
295
  class QuantityBasedExpiry
308
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
297
 
@@ -611,6 +599,8 @@ module Google
611
599
  property :initial_user, as: 'initialUser', class: Google::Apis::AlloydbV1alpha::UserPassword, decorator: Google::Apis::AlloydbV1alpha::UserPassword::Representation
612
600
 
613
601
  hash :labels, as: 'labels'
602
+ property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::AlloydbV1alpha::MaintenanceSchedule, decorator: Google::Apis::AlloydbV1alpha::MaintenanceSchedule::Representation
603
+
614
604
  property :maintenance_update_policy, as: 'maintenanceUpdatePolicy', class: Google::Apis::AlloydbV1alpha::MaintenanceUpdatePolicy, decorator: Google::Apis::AlloydbV1alpha::MaintenanceUpdatePolicy::Representation
615
605
 
616
606
  property :migration_source, as: 'migrationSource', class: Google::Apis::AlloydbV1alpha::MigrationSource, decorator: Google::Apis::AlloydbV1alpha::MigrationSource::Representation
@@ -677,18 +667,6 @@ module Google
677
667
  end
678
668
  end
679
669
 
680
- class DenyMaintenancePeriod
681
- # @private
682
- class Representation < Google::Apis::Core::JsonRepresentation
683
- property :end_date, as: 'endDate', class: Google::Apis::AlloydbV1alpha::GoogleTypeDate, decorator: Google::Apis::AlloydbV1alpha::GoogleTypeDate::Representation
684
-
685
- property :start_date, as: 'startDate', class: Google::Apis::AlloydbV1alpha::GoogleTypeDate, decorator: Google::Apis::AlloydbV1alpha::GoogleTypeDate::Representation
686
-
687
- property :time, as: 'time', class: Google::Apis::AlloydbV1alpha::GoogleTypeTimeOfDay, decorator: Google::Apis::AlloydbV1alpha::GoogleTypeTimeOfDay::Representation
688
-
689
- end
690
- end
691
-
692
670
  class Empty
693
671
  # @private
694
672
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -752,15 +730,6 @@ module Google
752
730
  end
753
731
  end
754
732
 
755
- class GoogleTypeDate
756
- # @private
757
- class Representation < Google::Apis::Core::JsonRepresentation
758
- property :day, as: 'day'
759
- property :month, as: 'month'
760
- property :year, as: 'year'
761
- end
762
- end
763
-
764
733
  class GoogleTypeTimeOfDay
765
734
  # @private
766
735
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -909,11 +878,16 @@ module Google
909
878
  end
910
879
  end
911
880
 
912
- class MaintenanceUpdatePolicy
881
+ class MaintenanceSchedule
913
882
  # @private
914
883
  class Representation < Google::Apis::Core::JsonRepresentation
915
- collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::AlloydbV1alpha::DenyMaintenancePeriod, decorator: Google::Apis::AlloydbV1alpha::DenyMaintenancePeriod::Representation
884
+ property :start_time, as: 'startTime'
885
+ end
886
+ end
916
887
 
888
+ class MaintenanceUpdatePolicy
889
+ # @private
890
+ class Representation < Google::Apis::Core::JsonRepresentation
917
891
  collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::AlloydbV1alpha::MaintenanceWindow, decorator: Google::Apis::AlloydbV1alpha::MaintenanceWindow::Representation
918
892
 
919
893
  end
@@ -1020,25 +994,12 @@ module Google
1020
994
  class PscInstanceConfig
1021
995
  # @private
1022
996
  class Representation < Google::Apis::Core::JsonRepresentation
1023
- collection :allowed_consumer_networks, as: 'allowedConsumerNetworks'
1024
997
  collection :allowed_consumer_projects, as: 'allowedConsumerProjects'
1025
- collection :outgoing_service_attachment_links, as: 'outgoingServiceAttachmentLinks'
1026
998
  property :psc_dns_name, as: 'pscDnsName'
1027
- property :psc_enabled, as: 'pscEnabled'
1028
- collection :psc_interface_configs, as: 'pscInterfaceConfigs', class: Google::Apis::AlloydbV1alpha::PscInterfaceConfig, decorator: Google::Apis::AlloydbV1alpha::PscInterfaceConfig::Representation
1029
-
1030
999
  property :service_attachment_link, as: 'serviceAttachmentLink'
1031
1000
  end
1032
1001
  end
1033
1002
 
1034
- class PscInterfaceConfig
1035
- # @private
1036
- class Representation < Google::Apis::Core::JsonRepresentation
1037
- collection :consumer_endpoint_ips, as: 'consumerEndpointIps'
1038
- property :network_attachment, as: 'networkAttachment'
1039
- end
1040
- end
1041
-
1042
1003
  class QuantityBasedExpiry
1043
1004
  # @private
1044
1005
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1alpha
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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []