google-apis-alloydb_v1 0.36.0 → 0.38.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: d30633664dca37463daa97626d4406e25dc48e3ec566c2f6abf1043b47cd6adf
4
- data.tar.gz: abbea93c643f4571724c3b47a7abb4afcc8a0f617c5ae1ba9a506f0a91d9726e
3
+ metadata.gz: ad271bf0f48c826e60e8bbc54d2e09664c031d001fb3dbd252e42cd4f18a0850
4
+ data.tar.gz: 6c2304d58c721ba8b8a3299be2466498a4d8dfa18c55b81de0e137633b08ae4a
5
5
  SHA512:
6
- metadata.gz: 89f5bd73ed00f6ab590c2f34577de02dcc4d2fa9118bed572ad939017386170a8366daab04a2e9baf4eb450978d488f9a99015e8ad5efaf5bb1fc714cbf815bf
7
- data.tar.gz: e7c4d82a5ead856f3505d641274c96e23bde30295cbc9ce2383ff55fe0638b07f620f84e59519baadeb408e5a9ef69655a403a0cbbe064111fa9cb709b1a5a09
6
+ metadata.gz: fd1e8415fd750f71280c258e2810746a723b8f71dcde63c2c9171e396424923da73d879b765aea3ac13b38e13d960933bab97695cbb0583fff0738f1d69383e8
7
+ data.tar.gz: 58218c6ed421f20229e587332ea1ce1429d3f661e32b615cf4b6620f55197b95e0224f607bdaf7949e80c9966932d937095346527d9c199ff15bac38c5c562e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-alloydb_v1
2
2
 
3
+ ### v0.38.0 (2025-06-01)
4
+
5
+ * Regenerated from discovery document revision 20250522
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.37.0 (2025-05-18)
9
+
10
+ * Regenerated from discovery document revision 20250508
11
+
3
12
  ### v0.36.0 (2025-05-11)
4
13
 
5
14
  * Regenerated from discovery document revision 20250417
@@ -820,8 +820,16 @@ module Google
820
820
  class ContinuousBackupInfo
821
821
  include Google::Apis::Core::Hashable
822
822
 
823
- # Output only. The earliest restorable time that can be restored to. Output only
824
- # field.
823
+ # Output only. The earliest restorable time that can be restored to. If
824
+ # continuous backups and recovery was recently enabled, the earliest restorable
825
+ # time is the creation time of the earliest eligible backup within this cluster'
826
+ # s continuous backup recovery window. After a cluster has had continuous
827
+ # backups enabled for the duration of its recovery window, the earliest
828
+ # restorable time becomes "now minus the recovery window". For example, assuming
829
+ # a point in time recovery is attempted at 04/16/2025 3:23:00PM with a 14d
830
+ # recovery window, the earliest restorable time would be 04/02/2025 3:23:00PM.
831
+ # This field is only visible if the CLUSTER_VIEW_CONTINUOUS_BACKUP cluster view
832
+ # is provided.
825
833
  # Corresponds to the JSON property `earliestRestorableTime`
826
834
  # @return [String]
827
835
  attr_accessor :earliest_restorable_time
@@ -837,8 +845,7 @@ module Google
837
845
  # @return [Google::Apis::AlloydbV1::EncryptionInfo]
838
846
  attr_accessor :encryption_info
839
847
 
840
- # Output only. Days of the week on which a continuous backup is taken. Output
841
- # only field. Ignored if passed into the request.
848
+ # Output only. Days of the week on which a continuous backup is taken.
842
849
  # Corresponds to the JSON property `schedule`
843
850
  # @return [Array<String>]
844
851
  attr_accessor :schedule
@@ -1709,6 +1716,16 @@ module Google
1709
1716
  class InstanceNetworkConfig
1710
1717
  include Google::Apis::Core::Hashable
1711
1718
 
1719
+ # Optional. Name of the allocated IP range for the private IP AlloyDB instance,
1720
+ # for example: "google-managed-services-default". If set, the instance IPs will
1721
+ # be created from this allocated range and will override the IP range used by
1722
+ # the parent cluster. The range name must comply with [RFC 1035](http://go/rfc/
1723
+ # 1035). Specifically, the name must be 1-63 characters long and match the
1724
+ # regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
1725
+ # Corresponds to the JSON property `allocatedIpRangeOverride`
1726
+ # @return [String]
1727
+ attr_accessor :allocated_ip_range_override
1728
+
1712
1729
  # Optional. A list of external network authorized to access this instance.
1713
1730
  # Corresponds to the JSON property `authorizedExternalNetworks`
1714
1731
  # @return [Array<Google::Apis::AlloydbV1::AuthorizedNetwork>]
@@ -1741,6 +1758,7 @@ module Google
1741
1758
 
1742
1759
  # Update properties of this object
1743
1760
  def update!(**args)
1761
+ @allocated_ip_range_override = args[:allocated_ip_range_override] if args.key?(:allocated_ip_range_override)
1744
1762
  @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
1745
1763
  @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
1746
1764
  @enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
@@ -1748,7 +1766,7 @@ module Google
1748
1766
  end
1749
1767
  end
1750
1768
 
1751
- # Details regarding the upgrade of instaces associated with a cluster.
1769
+ # Details regarding the upgrade of instances associated with a cluster.
1752
1770
  class InstanceUpgradeDetails
1753
1771
  include Google::Apis::Core::Hashable
1754
1772
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1
18
18
  # Version of the google-apis-alloydb_v1 gem
19
- GEM_VERSION = "0.36.0"
19
+ GEM_VERSION = "0.38.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250417"
25
+ REVISION = "20250522"
26
26
  end
27
27
  end
28
28
  end
@@ -1065,6 +1065,7 @@ module Google
1065
1065
  class InstanceNetworkConfig
1066
1066
  # @private
1067
1067
  class Representation < Google::Apis::Core::JsonRepresentation
1068
+ property :allocated_ip_range_override, as: 'allocatedIpRangeOverride'
1068
1069
  collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::AlloydbV1::AuthorizedNetwork, decorator: Google::Apis::AlloydbV1::AuthorizedNetwork::Representation
1069
1070
 
1070
1071
  property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.38.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for AlloyDB API V1
79
79
  test_files: []