google-apis-alloydb_v1alpha 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: afe18367d617189897e7cd34df9fac4307877f230b9e4179e71d9c531491d7f0
4
- data.tar.gz: 1e03bd19aa3954fe41c17dff0d0d7514fbde1273075ccb79e3173ac51aad2b15
3
+ metadata.gz: 5a5f4f5df5e68d65909c466336a405179345b922aef204966d47f08220dece4c
4
+ data.tar.gz: 7f20dc599d3c75873a7939bcbde0099fe15cc55e8bc71d58e4018c89b7821ed3
5
5
  SHA512:
6
- metadata.gz: c873745907dd7e46b6163e42456dd1569889458c3edcd97221cc84a5403b532e3bbdb4c4f787a1121b09e6efb14ec69e9bd0efa564cf9fab9c6a7c1e458a682e
7
- data.tar.gz: ba53a7dd74f88c5e26ee3c3568d7d16ec9b75b3a9adc9bb1ea6cd5c5be2ac160b822e2d00345eadc1d61780173e667232703d6582fd5e56b8716e146fac1da35
6
+ metadata.gz: a8ecb5b5868d8209c6daf9f70b42eb371ff58442eae07d1c8124bfd46ff25f6c6548ad3f0243abc726a16db5dcf79d68dbf2c4e9f7119890157365c17ac6d627
7
+ data.tar.gz: 473cdcac27f5e5b0db0943a627d7c1fb922a097e911b9b142dddfd53764d7b823f5b1b59f0f419aeb1c090e46ee656616707db901900ab5ccd0d9b050651a6e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
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
 
@@ -953,8 +953,16 @@ module Google
953
953
  class ContinuousBackupInfo
954
954
  include Google::Apis::Core::Hashable
955
955
 
956
- # Output only. The earliest restorable time that can be restored to. Output only
957
- # field.
956
+ # Output only. The earliest restorable time that can be restored to. If
957
+ # continuous backups and recovery was recently enabled, the earliest restorable
958
+ # time is the creation time of the earliest eligible backup within this cluster'
959
+ # s continuous backup recovery window. After a cluster has had continuous
960
+ # backups enabled for the duration of its recovery window, the earliest
961
+ # restorable time becomes "now minus the recovery window". For example, assuming
962
+ # a point in time recovery is attempted at 04/16/2025 3:23:00PM with a 14d
963
+ # recovery window, the earliest restorable time would be 04/02/2025 3:23:00PM.
964
+ # This field is only visible if the CLUSTER_VIEW_CONTINUOUS_BACKUP cluster view
965
+ # is provided.
958
966
  # Corresponds to the JSON property `earliestRestorableTime`
959
967
  # @return [String]
960
968
  attr_accessor :earliest_restorable_time
@@ -970,8 +978,7 @@ module Google
970
978
  # @return [Google::Apis::AlloydbV1alpha::EncryptionInfo]
971
979
  attr_accessor :encryption_info
972
980
 
973
- # Output only. Days of the week on which a continuous backup is taken. Output
974
- # only field. Ignored if passed into the request.
981
+ # Output only. Days of the week on which a continuous backup is taken.
975
982
  # Corresponds to the JSON property `schedule`
976
983
  # @return [Array<String>]
977
984
  attr_accessor :schedule
@@ -1635,6 +1642,16 @@ module Google
1635
1642
  class Instance
1636
1643
  include Google::Apis::Core::Hashable
1637
1644
 
1645
+ # Optional. Specifies whether an instance needs to spin up. Once the instance is
1646
+ # active, the activation policy can be updated to the `NEVER` to stop the
1647
+ # instance. Likewise, the activation policy can be updated to `ALWAYS` to start
1648
+ # the instance. There are restrictions around when an instance can/cannot be
1649
+ # activated (for example, a read pool instance should be stopped before stopping
1650
+ # primary etc.). Please refer to the API documentation for more details.
1651
+ # Corresponds to the JSON property `activationPolicy`
1652
+ # @return [String]
1653
+ attr_accessor :activation_policy
1654
+
1638
1655
  # Annotations to allow client tools to store small amount of arbitrary data.
1639
1656
  # This is distinct from labels. https://google.aip.dev/128
1640
1657
  # Corresponds to the JSON property `annotations`
@@ -1847,6 +1864,7 @@ module Google
1847
1864
 
1848
1865
  # Update properties of this object
1849
1866
  def update!(**args)
1867
+ @activation_policy = args[:activation_policy] if args.key?(:activation_policy)
1850
1868
  @annotations = args[:annotations] if args.key?(:annotations)
1851
1869
  @availability_type = args[:availability_type] if args.key?(:availability_type)
1852
1870
  @client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
@@ -1887,6 +1905,16 @@ module Google
1887
1905
  class InstanceNetworkConfig
1888
1906
  include Google::Apis::Core::Hashable
1889
1907
 
1908
+ # Optional. Name of the allocated IP range for the private IP AlloyDB instance,
1909
+ # for example: "google-managed-services-default". If set, the instance IPs will
1910
+ # be created from this allocated range and will override the IP range used by
1911
+ # the parent cluster. The range name must comply with [RFC 1035](http://go/rfc/
1912
+ # 1035). Specifically, the name must be 1-63 characters long and match the
1913
+ # regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
1914
+ # Corresponds to the JSON property `allocatedIpRangeOverride`
1915
+ # @return [String]
1916
+ attr_accessor :allocated_ip_range_override
1917
+
1890
1918
  # Optional. A list of external network authorized to access this instance.
1891
1919
  # Corresponds to the JSON property `authorizedExternalNetworks`
1892
1920
  # @return [Array<Google::Apis::AlloydbV1alpha::AuthorizedNetwork>]
@@ -1919,6 +1947,7 @@ module Google
1919
1947
 
1920
1948
  # Update properties of this object
1921
1949
  def update!(**args)
1950
+ @allocated_ip_range_override = args[:allocated_ip_range_override] if args.key?(:allocated_ip_range_override)
1922
1951
  @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
1923
1952
  @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
1924
1953
  @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 AlloydbV1alpha
18
18
  # Version of the google-apis-alloydb_v1alpha 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
@@ -1069,6 +1069,7 @@ module Google
1069
1069
  class Instance
1070
1070
  # @private
1071
1071
  class Representation < Google::Apis::Core::JsonRepresentation
1072
+ property :activation_policy, as: 'activationPolicy'
1072
1073
  hash :annotations, as: 'annotations'
1073
1074
  property :availability_type, as: 'availabilityType'
1074
1075
  property :client_connection_config, as: 'clientConnectionConfig', class: Google::Apis::AlloydbV1alpha::ClientConnectionConfig, decorator: Google::Apis::AlloydbV1alpha::ClientConnectionConfig::Representation
@@ -1121,6 +1122,7 @@ module Google
1121
1122
  class InstanceNetworkConfig
1122
1123
  # @private
1123
1124
  class Representation < Google::Apis::Core::JsonRepresentation
1125
+ property :allocated_ip_range_override, as: 'allocatedIpRangeOverride'
1124
1126
  collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::AlloydbV1alpha::AuthorizedNetwork, decorator: Google::Apis::AlloydbV1alpha::AuthorizedNetwork::Representation
1125
1127
 
1126
1128
  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_v1alpha
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_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.27.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.28.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
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 V1alpha
79
79
  test_files: []