google-apis-memcache_v1beta2 0.49.0 → 0.51.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: f13367ef6a5208d2d4f73808253b6b17bdb1ce3b197bdffd24332d6c819f3e3f
|
|
4
|
+
data.tar.gz: 8d0b93537a7aadb0bb38d32188c38803e695e407cb6dcf13e7c51502aba6ab38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f39bf24be89b552ce0b2d1f236cdadfd28dec910678053be005463ea5a7979c5f651bc364f701e1cf0afcb73c6ce0137e6e2dfbf2f5422d805930dcc527629a0
|
|
7
|
+
data.tar.gz: f2c3bc2e1e245b58552e5a1a22837161a765e51453c97e1fcac5c3ec766e58d1eab66bf6d5c9f4e0c77999780778b9d6e031f40f29ba3bf5d76fecd835cbad29
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-memcache_v1beta2
|
|
2
2
|
|
|
3
|
+
### v0.51.0 (2026-05-24)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260517
|
|
6
|
+
|
|
7
|
+
### v0.50.0 (2026-03-08)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260205
|
|
10
|
+
|
|
3
11
|
### v0.49.0 (2026-02-08)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260129
|
|
@@ -886,6 +886,12 @@ module Google
|
|
|
886
886
|
# @return [String]
|
|
887
887
|
attr_accessor :authorized_network
|
|
888
888
|
|
|
889
|
+
# Output only. The available maintenance versions that can be applied to the
|
|
890
|
+
# instance.
|
|
891
|
+
# Corresponds to the JSON property `availableMaintenanceVersions`
|
|
892
|
+
# @return [Array<String>]
|
|
893
|
+
attr_accessor :available_maintenance_versions
|
|
894
|
+
|
|
889
895
|
# Output only. The time the instance was created.
|
|
890
896
|
# Corresponds to the JSON property `createTime`
|
|
891
897
|
# @return [String]
|
|
@@ -902,6 +908,11 @@ module Google
|
|
|
902
908
|
# @return [String]
|
|
903
909
|
attr_accessor :display_name
|
|
904
910
|
|
|
911
|
+
# Output only. The effective maintenance version of the instance.
|
|
912
|
+
# Corresponds to the JSON property `effectiveMaintenanceVersion`
|
|
913
|
+
# @return [String]
|
|
914
|
+
attr_accessor :effective_maintenance_version
|
|
915
|
+
|
|
905
916
|
# List of messages that describe the current state of the Memcached instance.
|
|
906
917
|
# Corresponds to the JSON property `instanceMessages`
|
|
907
918
|
# @return [Array<Google::Apis::MemcacheV1beta2::InstanceMessage>]
|
|
@@ -924,6 +935,13 @@ module Google
|
|
|
924
935
|
# @return [Google::Apis::MemcacheV1beta2::MaintenanceSchedule]
|
|
925
936
|
attr_accessor :maintenance_schedule
|
|
926
937
|
|
|
938
|
+
# Optional. Last self service update maintenance version triggered by the
|
|
939
|
+
# customer. If it is empty, it means that the maintenance version is not set by
|
|
940
|
+
# the user.
|
|
941
|
+
# Corresponds to the JSON property `maintenanceVersion`
|
|
942
|
+
# @return [String]
|
|
943
|
+
attr_accessor :maintenance_version
|
|
944
|
+
|
|
927
945
|
# Output only. The full version of memcached server running on this instance.
|
|
928
946
|
# System automatically determines the full memcached version for an instance
|
|
929
947
|
# based on the input MemcacheVersion. The full version format will be "memcached-
|
|
@@ -1019,13 +1037,16 @@ module Google
|
|
|
1019
1037
|
# Update properties of this object
|
|
1020
1038
|
def update!(**args)
|
|
1021
1039
|
@authorized_network = args[:authorized_network] if args.key?(:authorized_network)
|
|
1040
|
+
@available_maintenance_versions = args[:available_maintenance_versions] if args.key?(:available_maintenance_versions)
|
|
1022
1041
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1023
1042
|
@discovery_endpoint = args[:discovery_endpoint] if args.key?(:discovery_endpoint)
|
|
1024
1043
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1044
|
+
@effective_maintenance_version = args[:effective_maintenance_version] if args.key?(:effective_maintenance_version)
|
|
1025
1045
|
@instance_messages = args[:instance_messages] if args.key?(:instance_messages)
|
|
1026
1046
|
@labels = args[:labels] if args.key?(:labels)
|
|
1027
1047
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
|
1028
1048
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
1049
|
+
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
1029
1050
|
@memcache_full_version = args[:memcache_full_version] if args.key?(:memcache_full_version)
|
|
1030
1051
|
@memcache_nodes = args[:memcache_nodes] if args.key?(:memcache_nodes)
|
|
1031
1052
|
@memcache_version = args[:memcache_version] if args.key?(:memcache_version)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module MemcacheV1beta2
|
|
18
18
|
# Version of the google-apis-memcache_v1beta2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.51.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260517"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -541,9 +541,11 @@ module Google
|
|
|
541
541
|
# @private
|
|
542
542
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
543
543
|
property :authorized_network, as: 'authorizedNetwork'
|
|
544
|
+
collection :available_maintenance_versions, as: 'availableMaintenanceVersions'
|
|
544
545
|
property :create_time, as: 'createTime'
|
|
545
546
|
property :discovery_endpoint, as: 'discoveryEndpoint'
|
|
546
547
|
property :display_name, as: 'displayName'
|
|
548
|
+
property :effective_maintenance_version, as: 'effectiveMaintenanceVersion'
|
|
547
549
|
collection :instance_messages, as: 'instanceMessages', class: Google::Apis::MemcacheV1beta2::InstanceMessage, decorator: Google::Apis::MemcacheV1beta2::InstanceMessage::Representation
|
|
548
550
|
|
|
549
551
|
hash :labels, as: 'labels'
|
|
@@ -551,6 +553,7 @@ module Google
|
|
|
551
553
|
|
|
552
554
|
property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::MemcacheV1beta2::MaintenanceSchedule, decorator: Google::Apis::MemcacheV1beta2::MaintenanceSchedule::Representation
|
|
553
555
|
|
|
556
|
+
property :maintenance_version, as: 'maintenanceVersion'
|
|
554
557
|
property :memcache_full_version, as: 'memcacheFullVersion'
|
|
555
558
|
collection :memcache_nodes, as: 'memcacheNodes', class: Google::Apis::MemcacheV1beta2::Node, decorator: Google::Apis::MemcacheV1beta2::Node::Representation
|
|
556
559
|
|
|
@@ -83,15 +83,20 @@ module Google
|
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
# Lists information about the supported locations for this service. This method
|
|
86
|
-
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
89
|
-
#
|
|
86
|
+
# lists locations based on the resource scope provided in the
|
|
87
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
88
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
89
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
90
|
+
# method lists locations visible to that specific project. This includes public,
|
|
91
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
92
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
93
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
94
|
+
# request path based on the specific service implementation and version.
|
|
90
95
|
# @param [String] name
|
|
91
96
|
# The resource that owns the locations collection, if applicable.
|
|
92
97
|
# @param [Array<String>, String] extra_location_types
|
|
93
|
-
# Optional. Do not use this field
|
|
94
|
-
#
|
|
98
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
99
|
+
# is primarily for internal usage.
|
|
95
100
|
# @param [String] filter
|
|
96
101
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
97
102
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-memcache_v1beta2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.51.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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-memcache_v1beta2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.51.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1beta2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|