google-apis-alloydb_v1beta 0.27.0 → 0.29.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7fc34337a88c7cff847a6280ef5aeb3102021ec7452e76a16b4e25689fdc374
|
4
|
+
data.tar.gz: c235fcf06d11e0cfffa28e3744d1379986a5c189cda37d10e840a80db9cc9662
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3236189af1a71abf9978013a78a2b52ad9772a988f2c525a2d01285ac4a24651d08f00b54291174878378fbe67fa9f820df379ee012cb3b9025c2f2f69cc1c1
|
7
|
+
data.tar.gz: ea7b842c309eaa5a4897140440adc23ae483f1ad3d04a9f281f7bbbab1fe1a40f8ee640d0644690baeebea7837a493174c308d652e1fefb77f23fccade0d27c1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
2
2
|
|
3
|
+
### v0.29.0 (2025-06-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250522
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.28.0 (2025-05-18)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250508
|
11
|
+
* Regenerated using generator version 0.17.0
|
12
|
+
|
3
13
|
### v0.27.0 (2025-04-20)
|
4
14
|
|
5
15
|
* 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
|
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
|
|
@@ -597,6 +597,14 @@ module Google
|
|
597
597
|
# @return [Google::Apis::AlloydbV1beta::SecondaryConfig]
|
598
598
|
attr_accessor :secondary_config
|
599
599
|
|
600
|
+
# Output only. AlloyDB per-cluster service agent email. This service account is
|
601
|
+
# created per-cluster per-project, and is different from that of the primary
|
602
|
+
# service agent which is created per-project. The service account naming format
|
603
|
+
# is subject to change.
|
604
|
+
# Corresponds to the JSON property `serviceAccountEmail`
|
605
|
+
# @return [String]
|
606
|
+
attr_accessor :service_account_email
|
607
|
+
|
600
608
|
# SSL configuration.
|
601
609
|
# Corresponds to the JSON property `sslConfig`
|
602
610
|
# @return [Google::Apis::AlloydbV1beta::SslConfig]
|
@@ -669,6 +677,7 @@ module Google
|
|
669
677
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
670
678
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
671
679
|
@secondary_config = args[:secondary_config] if args.key?(:secondary_config)
|
680
|
+
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
672
681
|
@ssl_config = args[:ssl_config] if args.key?(:ssl_config)
|
673
682
|
@state = args[:state] if args.key?(:state)
|
674
683
|
@subscription_type = args[:subscription_type] if args.key?(:subscription_type)
|
@@ -926,8 +935,16 @@ module Google
|
|
926
935
|
class ContinuousBackupInfo
|
927
936
|
include Google::Apis::Core::Hashable
|
928
937
|
|
929
|
-
# Output only. The earliest restorable time that can be restored to.
|
930
|
-
#
|
938
|
+
# Output only. The earliest restorable time that can be restored to. If
|
939
|
+
# continuous backups and recovery was recently enabled, the earliest restorable
|
940
|
+
# time is the creation time of the earliest eligible backup within this cluster'
|
941
|
+
# s continuous backup recovery window. After a cluster has had continuous
|
942
|
+
# backups enabled for the duration of its recovery window, the earliest
|
943
|
+
# restorable time becomes "now minus the recovery window". For example, assuming
|
944
|
+
# a point in time recovery is attempted at 04/16/2025 3:23:00PM with a 14d
|
945
|
+
# recovery window, the earliest restorable time would be 04/02/2025 3:23:00PM.
|
946
|
+
# This field is only visible if the CLUSTER_VIEW_CONTINUOUS_BACKUP cluster view
|
947
|
+
# is provided.
|
931
948
|
# Corresponds to the JSON property `earliestRestorableTime`
|
932
949
|
# @return [String]
|
933
950
|
attr_accessor :earliest_restorable_time
|
@@ -943,8 +960,7 @@ module Google
|
|
943
960
|
# @return [Google::Apis::AlloydbV1beta::EncryptionInfo]
|
944
961
|
attr_accessor :encryption_info
|
945
962
|
|
946
|
-
# Output only. Days of the week on which a continuous backup is taken.
|
947
|
-
# only field. Ignored if passed into the request.
|
963
|
+
# Output only. Days of the week on which a continuous backup is taken.
|
948
964
|
# Corresponds to the JSON property `schedule`
|
949
965
|
# @return [Array<String>]
|
950
966
|
attr_accessor :schedule
|
@@ -1608,6 +1624,16 @@ module Google
|
|
1608
1624
|
class Instance
|
1609
1625
|
include Google::Apis::Core::Hashable
|
1610
1626
|
|
1627
|
+
# Optional. Specifies whether an instance needs to spin up. Once the instance is
|
1628
|
+
# active, the activation policy can be updated to the `NEVER` to stop the
|
1629
|
+
# instance. Likewise, the activation policy can be updated to `ALWAYS` to start
|
1630
|
+
# the instance. There are restrictions around when an instance can/cannot be
|
1631
|
+
# activated (for example, a read pool instance should be stopped before stopping
|
1632
|
+
# primary etc.). Please refer to the API documentation for more details.
|
1633
|
+
# Corresponds to the JSON property `activationPolicy`
|
1634
|
+
# @return [String]
|
1635
|
+
attr_accessor :activation_policy
|
1636
|
+
|
1611
1637
|
# Annotations to allow client tools to store small amount of arbitrary data.
|
1612
1638
|
# This is distinct from labels. https://google.aip.dev/128
|
1613
1639
|
# Corresponds to the JSON property `annotations`
|
@@ -1814,6 +1840,7 @@ module Google
|
|
1814
1840
|
|
1815
1841
|
# Update properties of this object
|
1816
1842
|
def update!(**args)
|
1843
|
+
@activation_policy = args[:activation_policy] if args.key?(:activation_policy)
|
1817
1844
|
@annotations = args[:annotations] if args.key?(:annotations)
|
1818
1845
|
@availability_type = args[:availability_type] if args.key?(:availability_type)
|
1819
1846
|
@client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
|
@@ -1853,6 +1880,16 @@ module Google
|
|
1853
1880
|
class InstanceNetworkConfig
|
1854
1881
|
include Google::Apis::Core::Hashable
|
1855
1882
|
|
1883
|
+
# Optional. Name of the allocated IP range for the private IP AlloyDB instance,
|
1884
|
+
# for example: "google-managed-services-default". If set, the instance IPs will
|
1885
|
+
# be created from this allocated range and will override the IP range used by
|
1886
|
+
# the parent cluster. The range name must comply with [RFC 1035](http://go/rfc/
|
1887
|
+
# 1035). Specifically, the name must be 1-63 characters long and match the
|
1888
|
+
# regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
|
1889
|
+
# Corresponds to the JSON property `allocatedIpRangeOverride`
|
1890
|
+
# @return [String]
|
1891
|
+
attr_accessor :allocated_ip_range_override
|
1892
|
+
|
1856
1893
|
# Optional. A list of external network authorized to access this instance.
|
1857
1894
|
# Corresponds to the JSON property `authorizedExternalNetworks`
|
1858
1895
|
# @return [Array<Google::Apis::AlloydbV1beta::AuthorizedNetwork>]
|
@@ -1885,6 +1922,7 @@ module Google
|
|
1885
1922
|
|
1886
1923
|
# Update properties of this object
|
1887
1924
|
def update!(**args)
|
1925
|
+
@allocated_ip_range_override = args[:allocated_ip_range_override] if args.key?(:allocated_ip_range_override)
|
1888
1926
|
@authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
|
1889
1927
|
@enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
|
1890
1928
|
@enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
|
@@ -1892,7 +1930,7 @@ module Google
|
|
1892
1930
|
end
|
1893
1931
|
end
|
1894
1932
|
|
1895
|
-
# Details regarding the upgrade of
|
1933
|
+
# Details regarding the upgrade of instances associated with a cluster.
|
1896
1934
|
class InstanceUpgradeDetails
|
1897
1935
|
include Google::Apis::Core::Hashable
|
1898
1936
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250522"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -803,6 +803,7 @@ module Google
|
|
803
803
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
804
804
|
property :secondary_config, as: 'secondaryConfig', class: Google::Apis::AlloydbV1beta::SecondaryConfig, decorator: Google::Apis::AlloydbV1beta::SecondaryConfig::Representation
|
805
805
|
|
806
|
+
property :service_account_email, as: 'serviceAccountEmail'
|
806
807
|
property :ssl_config, as: 'sslConfig', class: Google::Apis::AlloydbV1beta::SslConfig, decorator: Google::Apis::AlloydbV1beta::SslConfig::Representation
|
807
808
|
|
808
809
|
property :state, as: 'state'
|
@@ -1055,6 +1056,7 @@ module Google
|
|
1055
1056
|
class Instance
|
1056
1057
|
# @private
|
1057
1058
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1059
|
+
property :activation_policy, as: 'activationPolicy'
|
1058
1060
|
hash :annotations, as: 'annotations'
|
1059
1061
|
property :availability_type, as: 'availabilityType'
|
1060
1062
|
property :client_connection_config, as: 'clientConnectionConfig', class: Google::Apis::AlloydbV1beta::ClientConnectionConfig, decorator: Google::Apis::AlloydbV1beta::ClientConnectionConfig::Representation
|
@@ -1106,6 +1108,7 @@ module Google
|
|
1106
1108
|
class InstanceNetworkConfig
|
1107
1109
|
# @private
|
1108
1110
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1111
|
+
property :allocated_ip_range_override, as: 'allocatedIpRangeOverride'
|
1109
1112
|
collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::AlloydbV1beta::AuthorizedNetwork, decorator: Google::Apis::AlloydbV1beta::AuthorizedNetwork::Representation
|
1110
1113
|
|
1111
1114
|
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.
|
4
|
+
version: 0.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.29.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: '
|
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.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for AlloyDB API V1beta
|
79
79
|
test_files: []
|