google-apis-alloydb_v1beta 0.27.0 → 0.28.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: 1542b8bf1e5a15eb541c9f8708d6c8bd0a38dc5b06e776eb6b7ee1e9cce74337
4
- data.tar.gz: b212b05ca58aa8b2103f87df3f1fbb44112e134268efe7f4f65315c11e909a1c
3
+ metadata.gz: db79bedbb53631976684a0786bf12e44f22c1728402beca2b5018d84bba79e68
4
+ data.tar.gz: 3c25370a9171f636ff098048e152c9b946b60044cc763ab00d6d0a8d3a7423a7
5
5
  SHA512:
6
- metadata.gz: a7c4868a1eeea801969b94e93465621330c088163f17e6a3ee9c5489a7822a07a3545aa5c0e0c9576836abdf64c215f74d03a3fd31a8db9774ddbe9a1b31fef5
7
- data.tar.gz: 5661fb446bbec74526d9407b11203b1573172c3a52af806d18e12f08bc14a0203af8d85a2689318d150a45090bbaecc74a53b079c90b42fccc11e1cb159f620f
6
+ metadata.gz: d66f9c09aaeebca11391eb3a0aa9a2000448075a7883c55d395e84a4d464b41292b4109b1607a2de2def4e88f131ca3cfe636177beb05ad140e37a9c2bad8ce3
7
+ data.tar.gz: 2de873eada438167425709ae48cecfd6a237097579e8bdfb33bae5149eb8d6207fb7a1b236ac5d292c44442960190b4b5a2e459a915dbca7e7bf3c59fb50af3d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-alloydb_v1beta
2
2
 
3
+ ### v0.28.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250508
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.27.0 (2025-04-20)
4
9
 
5
10
  * Regenerated from discovery document revision 20250410
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/alloydb/) may provide guida
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -926,8 +926,16 @@ module Google
926
926
  class ContinuousBackupInfo
927
927
  include Google::Apis::Core::Hashable
928
928
 
929
- # Output only. The earliest restorable time that can be restored to. Output only
930
- # field.
929
+ # Output only. The earliest restorable time that can be restored to. If
930
+ # continuous backups and recovery was recently enabled, the earliest restorable
931
+ # time is the creation time of the earliest eligible backup within this cluster'
932
+ # s continuous backup recovery window. After a cluster has had continuous
933
+ # backups enabled for the duration of its recovery window, the earliest
934
+ # restorable time becomes "now minus the recovery window". For example, assuming
935
+ # a point in time recovery is attempted at 04/16/2025 3:23:00PM with a 14d
936
+ # recovery window, the earliest restorable time would be 04/02/2025 3:23:00PM.
937
+ # This field is only visible if the CLUSTER_VIEW_CONTINUOUS_BACKUP cluster view
938
+ # is provided.
931
939
  # Corresponds to the JSON property `earliestRestorableTime`
932
940
  # @return [String]
933
941
  attr_accessor :earliest_restorable_time
@@ -943,8 +951,7 @@ module Google
943
951
  # @return [Google::Apis::AlloydbV1beta::EncryptionInfo]
944
952
  attr_accessor :encryption_info
945
953
 
946
- # Output only. Days of the week on which a continuous backup is taken. Output
947
- # only field. Ignored if passed into the request.
954
+ # Output only. Days of the week on which a continuous backup is taken.
948
955
  # Corresponds to the JSON property `schedule`
949
956
  # @return [Array<String>]
950
957
  attr_accessor :schedule
@@ -1608,6 +1615,16 @@ module Google
1608
1615
  class Instance
1609
1616
  include Google::Apis::Core::Hashable
1610
1617
 
1618
+ # Optional. Specifies whether an instance needs to spin up. Once the instance is
1619
+ # active, the activation policy can be updated to the `NEVER` to stop the
1620
+ # instance. Likewise, the activation policy can be updated to `ALWAYS` to start
1621
+ # the instance. There are restrictions around when an instance can/cannot be
1622
+ # activated (for example, a read pool instance should be stopped before stopping
1623
+ # primary etc.). Please refer to the API documentation for more details.
1624
+ # Corresponds to the JSON property `activationPolicy`
1625
+ # @return [String]
1626
+ attr_accessor :activation_policy
1627
+
1611
1628
  # Annotations to allow client tools to store small amount of arbitrary data.
1612
1629
  # This is distinct from labels. https://google.aip.dev/128
1613
1630
  # Corresponds to the JSON property `annotations`
@@ -1814,6 +1831,7 @@ module Google
1814
1831
 
1815
1832
  # Update properties of this object
1816
1833
  def update!(**args)
1834
+ @activation_policy = args[:activation_policy] if args.key?(:activation_policy)
1817
1835
  @annotations = args[:annotations] if args.key?(:annotations)
1818
1836
  @availability_type = args[:availability_type] if args.key?(:availability_type)
1819
1837
  @client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
@@ -1853,6 +1871,16 @@ module Google
1853
1871
  class InstanceNetworkConfig
1854
1872
  include Google::Apis::Core::Hashable
1855
1873
 
1874
+ # Optional. Name of the allocated IP range for the private IP AlloyDB instance,
1875
+ # for example: "google-managed-services-default". If set, the instance IPs will
1876
+ # be created from this allocated range and will override the IP range used by
1877
+ # the parent cluster. The range name must comply with [RFC 1035](http://go/rfc/
1878
+ # 1035). Specifically, the name must be 1-63 characters long and match the
1879
+ # regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
1880
+ # Corresponds to the JSON property `allocatedIpRangeOverride`
1881
+ # @return [String]
1882
+ attr_accessor :allocated_ip_range_override
1883
+
1856
1884
  # Optional. A list of external network authorized to access this instance.
1857
1885
  # Corresponds to the JSON property `authorizedExternalNetworks`
1858
1886
  # @return [Array<Google::Apis::AlloydbV1beta::AuthorizedNetwork>]
@@ -1885,6 +1913,7 @@ module Google
1885
1913
 
1886
1914
  # Update properties of this object
1887
1915
  def update!(**args)
1916
+ @allocated_ip_range_override = args[:allocated_ip_range_override] if args.key?(:allocated_ip_range_override)
1888
1917
  @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
1889
1918
  @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
1890
1919
  @enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
@@ -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.27.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250410"
25
+ REVISION = "20250508"
26
26
  end
27
27
  end
28
28
  end
@@ -1055,6 +1055,7 @@ module Google
1055
1055
  class Instance
1056
1056
  # @private
1057
1057
  class Representation < Google::Apis::Core::JsonRepresentation
1058
+ property :activation_policy, as: 'activationPolicy'
1058
1059
  hash :annotations, as: 'annotations'
1059
1060
  property :availability_type, as: 'availabilityType'
1060
1061
  property :client_connection_config, as: 'clientConnectionConfig', class: Google::Apis::AlloydbV1beta::ClientConnectionConfig, decorator: Google::Apis::AlloydbV1beta::ClientConnectionConfig::Representation
@@ -1106,6 +1107,7 @@ module Google
1106
1107
  class InstanceNetworkConfig
1107
1108
  # @private
1108
1109
  class Representation < Google::Apis::Core::JsonRepresentation
1110
+ property :allocated_ip_range_override, as: 'allocatedIpRangeOverride'
1109
1111
  collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::AlloydbV1beta::AuthorizedNetwork, decorator: Google::Apis::AlloydbV1beta::AuthorizedNetwork::Representation
1110
1112
 
1111
1113
  property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.27.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.28.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for AlloyDB API V1beta
79
79
  test_files: []