google-apis-memcache_v1beta2 0.49.0 → 0.50.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: 0f3ea3921f7f1b8f861b4eb49b4f3439f20e5f7dd6e098cc6b2785a8c2f3db68
|
|
4
|
+
data.tar.gz: 23c7946c78e8a3c0e01dd71935741772553273c5f45bf9b6d061d9c78d615604
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a383b8031d9f789b551c84e0199052fb750abef67f616cf0a0f2c845584fa3e76257406d65de14dcf2c75fec98a7dc5d8255ca8454517f5cf30e6ac36d474c3d
|
|
7
|
+
data.tar.gz: 0e04a03b6d85e622b210b96ba6bc23863ffda93673fe851a5a3c6f5cf6a31e487226ea7a0fc871c34de2411ce0637fbf21bb87a935a430af96bb6dc0c24e7eed
|
data/CHANGELOG.md
CHANGED
|
@@ -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.50.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 = "20260205"
|
|
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
|
|
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.50.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.50.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:
|