google-apis-alloydb_v1 0.24.0 → 0.26.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84355936c244b5b1b3855caf7da54a4f9e73119e70b205d72c8981afa5c0be47
|
4
|
+
data.tar.gz: e59aa0897bff6ecfb9c662a70b3d4b17ee3cb176970058018c724654b3453bde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e1403b003f06f1a749f861b053ac62779cbbf932225f91e60d7952b271d74ded45dbcf2729981fb63551cf4436c32e6d6e7b43930744269f0bef892b2fd5544
|
7
|
+
data.tar.gz: 9999152da0d421dd0e350d5b15c84dffc1ca7262a59fee229d75f8b1a0df63d442f27d2059f640142c29118e2998b1fae5b7be136b87222688c7d9b75f428f9e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1
|
2
2
|
|
3
|
+
### v0.26.0 (2024-11-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241023
|
6
|
+
|
7
|
+
### v0.25.0 (2024-10-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241015
|
10
|
+
|
3
11
|
### v0.24.0 (2024-10-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241002
|
@@ -1128,16 +1128,17 @@ module Google
|
|
1128
1128
|
# @return [String]
|
1129
1129
|
attr_accessor :create_time
|
1130
1130
|
|
1131
|
-
# Database flags. Set at instance level.
|
1132
|
-
# on
|
1133
|
-
#
|
1134
|
-
#
|
1135
|
-
#
|
1136
|
-
#
|
1137
|
-
#
|
1138
|
-
#
|
1139
|
-
#
|
1140
|
-
# value.
|
1131
|
+
# Database flags. Set at the instance level. They are copied from the primary
|
1132
|
+
# instance on secondary instance creation. Flags that have restrictions default
|
1133
|
+
# to the value at primary instance on read instances during creation. Read
|
1134
|
+
# instances can set new flags or override existing flags that are relevant for
|
1135
|
+
# reads, for example, for enabling columnar cache on a read instance. Flags set
|
1136
|
+
# on read instance might or might not be present on the primary instance. This
|
1137
|
+
# is a list of "key": "value" pairs. "key": The name of the flag. These flags
|
1138
|
+
# are passed at instance setup time, so include both server options and system
|
1139
|
+
# variables for Postgres. Flags are specified with underscores, not hyphens. "
|
1140
|
+
# value": The value of the flag. Booleans are set to **on** for true and **off**
|
1141
|
+
# for false. This field must be omitted if the flag doesn't take a value.
|
1141
1142
|
# Corresponds to the JSON property `databaseFlags`
|
1142
1143
|
# @return [Hash<String,String>]
|
1143
1144
|
attr_accessor :database_flags
|
@@ -3179,6 +3180,11 @@ module Google
|
|
3179
3180
|
# @return [String]
|
3180
3181
|
attr_accessor :time_based_retention
|
3181
3182
|
|
3183
|
+
# Timestamp based retention period i.e. 2024-05-01T00:00:00Z
|
3184
|
+
# Corresponds to the JSON property `timestampBasedRetentionTime`
|
3185
|
+
# @return [String]
|
3186
|
+
attr_accessor :timestamp_based_retention_time
|
3187
|
+
|
3182
3188
|
def initialize(**args)
|
3183
3189
|
update!(**args)
|
3184
3190
|
end
|
@@ -3189,6 +3195,7 @@ module Google
|
|
3189
3195
|
@quantity_based_retention = args[:quantity_based_retention] if args.key?(:quantity_based_retention)
|
3190
3196
|
@retention_unit = args[:retention_unit] if args.key?(:retention_unit)
|
3191
3197
|
@time_based_retention = args[:time_based_retention] if args.key?(:time_based_retention)
|
3198
|
+
@timestamp_based_retention_time = args[:timestamp_based_retention_time] if args.key?(:timestamp_based_retention_time)
|
3192
3199
|
end
|
3193
3200
|
end
|
3194
3201
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241023"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1329,6 +1329,7 @@ module Google
|
|
1329
1329
|
property :quantity_based_retention, as: 'quantityBasedRetention'
|
1330
1330
|
property :retention_unit, as: 'retentionUnit'
|
1331
1331
|
property :time_based_retention, as: 'timeBasedRetention'
|
1332
|
+
property :timestamp_based_retention_time, as: 'timestampBasedRetentionTime'
|
1332
1333
|
end
|
1333
1334
|
end
|
1334
1335
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-alloydb_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.26.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-
|
11
|
+
date: 2024-11-03 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.26.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|