google-apis-alloydb_v1 0.21.0 → 0.22.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: d7c05d4c58946e96224d4e9540cca503a146e25061276727beb23a2017c13ba4
|
4
|
+
data.tar.gz: 502a8f5409afade31987ca3892c88a2a622a7b4ba0fee1051ba154a98e89fb65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 151f5502bcfb6a5405745faefcbd524f02c82cb91b2109f74f96eb4bc5e5ced2414fad060d0d7fe6ba1a8c69b5f308f5eabef818c551b47500c75e3a78fba6ca
|
7
|
+
data.tar.gz: aa2fc87691caa8c3cae306bb8d243aa7e1941b34b7f29010705dba0d234850b2c3d9e1d64342240935c789ce6a274abd4f8188ee5fb239590b568c9b6e6caf64
|
data/CHANGELOG.md
CHANGED
@@ -2542,7 +2542,7 @@ module Google
|
|
2542
2542
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
2543
2543
|
attr_accessor :resource_id
|
2544
2544
|
|
2545
|
-
# Common model for database resource instance metadata.
|
2545
|
+
# Common model for database resource instance metadata. Next ID: 21
|
2546
2546
|
# Corresponds to the JSON property `resourceMetadata`
|
2547
2547
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
2548
2548
|
attr_accessor :resource_metadata
|
@@ -2717,7 +2717,7 @@ module Google
|
|
2717
2717
|
end
|
2718
2718
|
end
|
2719
2719
|
|
2720
|
-
# Common model for database resource instance metadata.
|
2720
|
+
# Common model for database resource instance metadata. Next ID: 21
|
2721
2721
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
2722
2722
|
include Google::Apis::Core::Hashable
|
2723
2723
|
|
@@ -2813,6 +2813,13 @@ module Google
|
|
2813
2813
|
# @return [String]
|
2814
2814
|
attr_accessor :resource_name
|
2815
2815
|
|
2816
|
+
# Message type for storing tags. Tags provide a way to create annotations for
|
2817
|
+
# resources, and in some cases conditionally allow or deny policies based on
|
2818
|
+
# whether a resource has a specific tag.
|
2819
|
+
# Corresponds to the JSON property `tagsSet`
|
2820
|
+
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainTags]
|
2821
|
+
attr_accessor :tags_set
|
2822
|
+
|
2816
2823
|
# The time at which the resource was updated and recorded at partner service.
|
2817
2824
|
# Corresponds to the JSON property `updationTime`
|
2818
2825
|
# @return [String]
|
@@ -2847,6 +2854,7 @@ module Google
|
|
2847
2854
|
@product = args[:product] if args.key?(:product)
|
2848
2855
|
@resource_container = args[:resource_container] if args.key?(:resource_container)
|
2849
2856
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
2857
|
+
@tags_set = args[:tags_set] if args.key?(:tags_set)
|
2850
2858
|
@updation_time = args[:updation_time] if args.key?(:updation_time)
|
2851
2859
|
@user_label_set = args[:user_label_set] if args.key?(:user_label_set)
|
2852
2860
|
end
|
@@ -3014,6 +3022,11 @@ module Google
|
|
3014
3022
|
# @return [Fixnum]
|
3015
3023
|
attr_accessor :memory_size_in_bytes
|
3016
3024
|
|
3025
|
+
# Optional. Number of shards (if applicable).
|
3026
|
+
# Corresponds to the JSON property `shardCount`
|
3027
|
+
# @return [Fixnum]
|
3028
|
+
attr_accessor :shard_count
|
3029
|
+
|
3017
3030
|
def initialize(**args)
|
3018
3031
|
update!(**args)
|
3019
3032
|
end
|
@@ -3022,6 +3035,7 @@ module Google
|
|
3022
3035
|
def update!(**args)
|
3023
3036
|
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
3024
3037
|
@memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
|
3038
|
+
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
3025
3039
|
end
|
3026
3040
|
end
|
3027
3041
|
|
@@ -3132,6 +3146,27 @@ module Google
|
|
3132
3146
|
end
|
3133
3147
|
end
|
3134
3148
|
|
3149
|
+
# Message type for storing tags. Tags provide a way to create annotations for
|
3150
|
+
# resources, and in some cases conditionally allow or deny policies based on
|
3151
|
+
# whether a resource has a specific tag.
|
3152
|
+
class StorageDatabasecenterPartnerapiV1mainTags
|
3153
|
+
include Google::Apis::Core::Hashable
|
3154
|
+
|
3155
|
+
# The Tag key/value mappings.
|
3156
|
+
# Corresponds to the JSON property `tags`
|
3157
|
+
# @return [Hash<String,String>]
|
3158
|
+
attr_accessor :tags
|
3159
|
+
|
3160
|
+
def initialize(**args)
|
3161
|
+
update!(**args)
|
3162
|
+
end
|
3163
|
+
|
3164
|
+
# Update properties of this object
|
3165
|
+
def update!(**args)
|
3166
|
+
@tags = args[:tags] if args.key?(:tags)
|
3167
|
+
end
|
3168
|
+
end
|
3169
|
+
|
3135
3170
|
# Message type for storing user labels. User labels are used to tag App Engine
|
3136
3171
|
# resources, allowing users to search for resources matching a set of labels and
|
3137
3172
|
# to aggregate usage data by labels.
|
@@ -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.22.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 = "20240909"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -442,6 +442,12 @@ module Google
|
|
442
442
|
include Google::Apis::Core::JsonObjectSupport
|
443
443
|
end
|
444
444
|
|
445
|
+
class StorageDatabasecenterPartnerapiV1mainTags
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
445
451
|
class StorageDatabasecenterPartnerapiV1mainUserLabels
|
446
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
453
|
|
@@ -1237,6 +1243,8 @@ module Google
|
|
1237
1243
|
|
1238
1244
|
property :resource_container, as: 'resourceContainer'
|
1239
1245
|
property :resource_name, as: 'resourceName'
|
1246
|
+
property :tags_set, as: 'tagsSet', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainTags, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainTags::Representation
|
1247
|
+
|
1240
1248
|
property :updation_time, as: 'updationTime'
|
1241
1249
|
property :user_label_set, as: 'userLabelSet', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels::Representation
|
1242
1250
|
|
@@ -1285,6 +1293,7 @@ module Google
|
|
1285
1293
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1286
1294
|
property :cpu_count, as: 'cpuCount'
|
1287
1295
|
property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
|
1296
|
+
property :shard_count, as: 'shardCount'
|
1288
1297
|
end
|
1289
1298
|
end
|
1290
1299
|
|
@@ -1318,6 +1327,13 @@ module Google
|
|
1318
1327
|
end
|
1319
1328
|
end
|
1320
1329
|
|
1330
|
+
class StorageDatabasecenterPartnerapiV1mainTags
|
1331
|
+
# @private
|
1332
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1333
|
+
hash :tags, as: 'tags'
|
1334
|
+
end
|
1335
|
+
end
|
1336
|
+
|
1321
1337
|
class StorageDatabasecenterPartnerapiV1mainUserLabels
|
1322
1338
|
# @private
|
1323
1339
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.22.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-09-
|
11
|
+
date: 2024-09-22 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.22.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: []
|