google-apis-memcache_v1 0.3.0 → 0.4.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: c40fedb8ff40a44d81f549ad86de20d8e809f3c9093cabdddc9cdcee328ff43f
|
4
|
+
data.tar.gz: f8d8ba37f7cb0a1bddc6b1cbae35d669282821e2dd5f49def2bea5d2d70839d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ea45df4da8f22eabcd3aa2426ef80bdbf219bf644874fa1c47ef124663042a0d1f998ce5f1664e097f549186f966408897a2171c3471fe46c1c7610a476c566
|
7
|
+
data.tar.gz: 735c30a9ebe818cd64566b1bbdde26cabae764c67ef641404a1577ca2fa1304d6d3779e993b077cdab207d552f7c73e593d833cc9a237873e8283b2c857371b5
|
data/CHANGELOG.md
CHANGED
@@ -27,14 +27,14 @@ module Google
|
|
27
27
|
include Google::Apis::Core::Hashable
|
28
28
|
|
29
29
|
# Whether to apply instance-level parameter group to all nodes. If set to true,
|
30
|
-
#
|
31
|
-
#
|
30
|
+
# users are restricted from specifying individual nodes, and `ApplyParameters`
|
31
|
+
# updates all nodes within the instance.
|
32
32
|
# Corresponds to the JSON property `applyAll`
|
33
33
|
# @return [Boolean]
|
34
34
|
attr_accessor :apply_all
|
35
35
|
alias_method :apply_all?, :apply_all
|
36
36
|
|
37
|
-
# Nodes to which
|
37
|
+
# Nodes to which the instance-level parameter group is applied.
|
38
38
|
# Corresponds to the JSON property `nodeIds`
|
39
39
|
# @return [Array<String>]
|
40
40
|
attr_accessor :node_ids
|
@@ -196,6 +196,27 @@ module Google
|
|
196
196
|
end
|
197
197
|
end
|
198
198
|
|
199
|
+
# Metadata for the given google.cloud.location.Location.
|
200
|
+
class GoogleCloudMemcacheV1LocationMetadata
|
201
|
+
include Google::Apis::Core::Hashable
|
202
|
+
|
203
|
+
# Output only. The set of available zones in the location. The map is keyed by
|
204
|
+
# the lowercase ID of each zone, as defined by GCE. These keys can be specified
|
205
|
+
# in the `zones` field when creating a Memcached instance.
|
206
|
+
# Corresponds to the JSON property `availableZones`
|
207
|
+
# @return [Hash<String,Google::Apis::MemcacheV1::GoogleCloudMemcacheV1ZoneMetadata>]
|
208
|
+
attr_accessor :available_zones
|
209
|
+
|
210
|
+
def initialize(**args)
|
211
|
+
update!(**args)
|
212
|
+
end
|
213
|
+
|
214
|
+
# Update properties of this object
|
215
|
+
def update!(**args)
|
216
|
+
@available_zones = args[:available_zones] if args.key?(:available_zones)
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
199
220
|
# Represents the metadata of a long-running operation.
|
200
221
|
class GoogleCloudMemcacheV1OperationMetadata
|
201
222
|
include Google::Apis::Core::Hashable
|
@@ -255,6 +276,19 @@ module Google
|
|
255
276
|
end
|
256
277
|
end
|
257
278
|
|
279
|
+
#
|
280
|
+
class GoogleCloudMemcacheV1ZoneMetadata
|
281
|
+
include Google::Apis::Core::Hashable
|
282
|
+
|
283
|
+
def initialize(**args)
|
284
|
+
update!(**args)
|
285
|
+
end
|
286
|
+
|
287
|
+
# Update properties of this object
|
288
|
+
def update!(**args)
|
289
|
+
end
|
290
|
+
end
|
291
|
+
|
258
292
|
#
|
259
293
|
class GoogleCloudSaasacceleratorManagementProvidersV1Instance
|
260
294
|
include Google::Apis::Core::Hashable
|
@@ -383,9 +417,8 @@ module Google
|
|
383
417
|
class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule
|
384
418
|
include Google::Apis::Core::Hashable
|
385
419
|
|
386
|
-
#
|
387
|
-
#
|
388
|
-
# false
|
420
|
+
# This field will be deprecated, and will be always set to true since reschedule
|
421
|
+
# can happen multiple times now.
|
389
422
|
# Corresponds to the JSON property `canReschedule`
|
390
423
|
# @return [Boolean]
|
391
424
|
attr_accessor :can_reschedule
|
@@ -405,9 +438,8 @@ module Google
|
|
405
438
|
|
406
439
|
# schedule_deadline_time is the time deadline any schedule start time cannot go
|
407
440
|
# beyond, including reschedule. It's normally the initial schedule start time
|
408
|
-
# plus
|
409
|
-
#
|
410
|
-
# time cannot go beyond this deadline.
|
441
|
+
# plus maintenance window length (1 day or 1 week). Maintenance cannot be
|
442
|
+
# scheduled to start beyond this deadline.
|
411
443
|
# Corresponds to the JSON property `scheduleDeadlineTime`
|
412
444
|
# @return [String]
|
413
445
|
attr_accessor :schedule_deadline_time
|
@@ -509,6 +541,35 @@ module Google
|
|
509
541
|
end
|
510
542
|
end
|
511
543
|
|
544
|
+
# PerSliSloEligibility is a mapping from an SLI name to eligibility.
|
545
|
+
class GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility
|
546
|
+
include Google::Apis::Core::Hashable
|
547
|
+
|
548
|
+
# An entry in the eligibilities map specifies an eligibility for a particular
|
549
|
+
# SLI for the given instance. The SLI key in the name must be a valid SLI name
|
550
|
+
# specified in the Eligibility Exporter binary flags otherwise an error will be
|
551
|
+
# emitted by Eligibility Exporter and the oncaller will be alerted. If an SLI
|
552
|
+
# has been defined in the binary flags but the eligibilities map does not
|
553
|
+
# contain it, the corresponding SLI time series will not be emitted by the
|
554
|
+
# Eligibility Exporter. This ensures a smooth rollout and compatibility between
|
555
|
+
# the data produced by different versions of the Eligibility Exporters. If
|
556
|
+
# eligibilities map contains a key for an SLI which has not been declared in the
|
557
|
+
# binary flags, there will be an error message emitted in the Eligibility
|
558
|
+
# Exporter log and the metric for the SLI in question will not be emitted.
|
559
|
+
# Corresponds to the JSON property `eligibilities`
|
560
|
+
# @return [Hash<String,Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility>]
|
561
|
+
attr_accessor :eligibilities
|
562
|
+
|
563
|
+
def initialize(**args)
|
564
|
+
update!(**args)
|
565
|
+
end
|
566
|
+
|
567
|
+
# Update properties of this object
|
568
|
+
def update!(**args)
|
569
|
+
@eligibilities = args[:eligibilities] if args.key?(:eligibilities)
|
570
|
+
end
|
571
|
+
end
|
572
|
+
|
512
573
|
# Describes provisioned dataplane resources.
|
513
574
|
class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
|
514
575
|
include Google::Apis::Core::Hashable
|
@@ -591,8 +652,7 @@ module Google
|
|
591
652
|
attr_accessor :reason
|
592
653
|
|
593
654
|
# Name of an SLI that this exclusion applies to. Can be left empty, signaling
|
594
|
-
# that the instance should be excluded from all SLIs
|
595
|
-
# configuration.
|
655
|
+
# that the instance should be excluded from all SLIs.
|
596
656
|
# Corresponds to the JSON property `sliName`
|
597
657
|
# @return [String]
|
598
658
|
attr_accessor :sli_name
|
@@ -649,6 +709,11 @@ module Google
|
|
649
709
|
# @return [Array<Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata>]
|
650
710
|
attr_accessor :nodes
|
651
711
|
|
712
|
+
# PerSliSloEligibility is a mapping from an SLI name to eligibility.
|
713
|
+
# Corresponds to the JSON property `perSliEligibility`
|
714
|
+
# @return [Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility]
|
715
|
+
attr_accessor :per_sli_eligibility
|
716
|
+
|
652
717
|
# Name of the SLO tier the Instance belongs to. This name will be expected to
|
653
718
|
# match the tiers specified in the service SLO configuration. Field is mandatory
|
654
719
|
# and must not be empty.
|
@@ -665,11 +730,12 @@ module Google
|
|
665
730
|
@eligibility = args[:eligibility] if args.key?(:eligibility)
|
666
731
|
@exclusions = args[:exclusions] if args.key?(:exclusions)
|
667
732
|
@nodes = args[:nodes] if args.key?(:nodes)
|
733
|
+
@per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
|
668
734
|
@tier = args[:tier] if args.key?(:tier)
|
669
735
|
end
|
670
736
|
end
|
671
737
|
|
672
|
-
#
|
738
|
+
# A Memorystore for Memcached instance
|
673
739
|
class Instance
|
674
740
|
include Google::Apis::Core::Hashable
|
675
741
|
|
@@ -685,18 +751,18 @@ module Google
|
|
685
751
|
# @return [String]
|
686
752
|
attr_accessor :create_time
|
687
753
|
|
688
|
-
# Output only. Endpoint for Discovery API
|
754
|
+
# Output only. Endpoint for the Discovery API.
|
689
755
|
# Corresponds to the JSON property `discoveryEndpoint`
|
690
756
|
# @return [String]
|
691
757
|
attr_accessor :discovery_endpoint
|
692
758
|
|
693
|
-
# User provided name for the instance only used for display purposes.
|
694
|
-
# more than 80 characters.
|
759
|
+
# User provided name for the instance, which is only used for display purposes.
|
760
|
+
# Cannot be more than 80 characters.
|
695
761
|
# Corresponds to the JSON property `displayName`
|
696
762
|
# @return [String]
|
697
763
|
attr_accessor :display_name
|
698
764
|
|
699
|
-
# List of messages that describe current
|
765
|
+
# List of messages that describe the current state of the Memcached instance.
|
700
766
|
# Corresponds to the JSON property `instanceMessages`
|
701
767
|
# @return [Array<Google::Apis::MemcacheV1::InstanceMessage>]
|
702
768
|
attr_accessor :instance_messages
|
@@ -716,15 +782,15 @@ module Google
|
|
716
782
|
# @return [String]
|
717
783
|
attr_accessor :memcache_full_version
|
718
784
|
|
719
|
-
# Output only. List of Memcached nodes. Refer to
|
785
|
+
# Output only. List of Memcached nodes. Refer to Node message for more details.
|
720
786
|
# Corresponds to the JSON property `memcacheNodes`
|
721
787
|
# @return [Array<Google::Apis::MemcacheV1::Node>]
|
722
788
|
attr_accessor :memcache_nodes
|
723
789
|
|
724
790
|
# The major version of Memcached software. If not provided, latest supported
|
725
|
-
# version will be used. Currently the latest supported major version is
|
726
|
-
# MEMCACHE_1_5
|
727
|
-
# based on the latest supported minor version.
|
791
|
+
# version will be used. Currently the latest supported major version is `
|
792
|
+
# MEMCACHE_1_5`. The minor version will be automatically determined by our
|
793
|
+
# system based on the latest supported minor version.
|
728
794
|
# Corresponds to the JSON property `memcacheVersion`
|
729
795
|
# @return [String]
|
730
796
|
attr_accessor :memcache_version
|
@@ -732,9 +798,9 @@ module Google
|
|
732
798
|
# Required. Unique name of the resource in this scope including project and
|
733
799
|
# location using the form: `projects/`project_id`/locations/`location_id`/
|
734
800
|
# instances/`instance_id`` Note: Memcached instances are managed and addressed
|
735
|
-
# at regional level so location_id here refers to a
|
736
|
-
# may choose which zones Memcached nodes
|
737
|
-
#
|
801
|
+
# at the regional level so `location_id` here refers to a Google Cloud region;
|
802
|
+
# however, users may choose which zones Memcached nodes should be provisioned in
|
803
|
+
# within an instance. Refer to zones field for more details.
|
738
804
|
# Corresponds to the JSON property `name`
|
739
805
|
# @return [String]
|
740
806
|
attr_accessor :name
|
@@ -749,8 +815,10 @@ module Google
|
|
749
815
|
# @return [Fixnum]
|
750
816
|
attr_accessor :node_count
|
751
817
|
|
752
|
-
#
|
753
|
-
#
|
818
|
+
# The unique ID associated with this set of parameters. Users can use this id to
|
819
|
+
# determine if the parameters associated with the instance differ from the
|
820
|
+
# parameters associated with the nodes. A discrepancy between parameter ids can
|
821
|
+
# inform users that they may need to take action to apply parameters on nodes.
|
754
822
|
# Corresponds to the JSON property `parameters`
|
755
823
|
# @return [Google::Apis::MemcacheV1::MemcacheParameters]
|
756
824
|
attr_accessor :parameters
|
@@ -765,7 +833,7 @@ module Google
|
|
765
833
|
# @return [String]
|
766
834
|
attr_accessor :update_time
|
767
835
|
|
768
|
-
# Zones
|
836
|
+
# Zones in which Memcached nodes should be provisioned. Memcached nodes will be
|
769
837
|
# equally distributed across these zones. If not provided, the service will by
|
770
838
|
# default create nodes in all zones in the region for the instance.
|
771
839
|
# Corresponds to the JSON property `zones`
|
@@ -1062,14 +1130,14 @@ module Google
|
|
1062
1130
|
end
|
1063
1131
|
end
|
1064
1132
|
|
1065
|
-
#
|
1133
|
+
# The unique ID associated with this set of parameters. Users can use this id to
|
1134
|
+
# determine if the parameters associated with the instance differ from the
|
1135
|
+
# parameters associated with the nodes. A discrepancy between parameter ids can
|
1136
|
+
# inform users that they may need to take action to apply parameters on nodes.
|
1066
1137
|
class MemcacheParameters
|
1067
1138
|
include Google::Apis::Core::Hashable
|
1068
1139
|
|
1069
|
-
# Output only.
|
1070
|
-
# use this id to determine if the parameters associated with the instance differ
|
1071
|
-
# from the parameters associated with the nodes and any action needs to be taken
|
1072
|
-
# to apply parameters on nodes.
|
1140
|
+
# Output only.
|
1073
1141
|
# Corresponds to the JSON property `id`
|
1074
1142
|
# @return [String]
|
1075
1143
|
attr_accessor :id
|
@@ -1106,7 +1174,10 @@ module Google
|
|
1106
1174
|
# @return [String]
|
1107
1175
|
attr_accessor :node_id
|
1108
1176
|
|
1109
|
-
#
|
1177
|
+
# The unique ID associated with this set of parameters. Users can use this id to
|
1178
|
+
# determine if the parameters associated with the instance differ from the
|
1179
|
+
# parameters associated with the nodes. A discrepancy between parameter ids can
|
1180
|
+
# inform users that they may need to take action to apply parameters on nodes.
|
1110
1181
|
# Corresponds to the JSON property `parameters`
|
1111
1182
|
# @return [Google::Apis::MemcacheV1::MemcacheParameters]
|
1112
1183
|
attr_accessor :parameters
|
@@ -1404,7 +1475,10 @@ module Google
|
|
1404
1475
|
class UpdateParametersRequest
|
1405
1476
|
include Google::Apis::Core::Hashable
|
1406
1477
|
|
1407
|
-
# The parameters
|
1478
|
+
# The unique ID associated with this set of parameters. Users can use this id to
|
1479
|
+
# determine if the parameters associated with the instance differ from the
|
1480
|
+
# parameters associated with the nodes. A discrepancy between parameter ids can
|
1481
|
+
# inform users that they may need to take action to apply parameters on nodes.
|
1408
1482
|
# Corresponds to the JSON property `parameters`
|
1409
1483
|
# @return [Google::Apis::MemcacheV1::MemcacheParameters]
|
1410
1484
|
attr_accessor :parameters
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MemcacheV1
|
18
18
|
# Version of the google-apis-memcache_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210324"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,12 +58,24 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
+
class GoogleCloudMemcacheV1LocationMetadata
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
61
67
|
class GoogleCloudMemcacheV1OperationMetadata
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
69
|
|
64
70
|
include Google::Apis::Core::JsonObjectSupport
|
65
71
|
end
|
66
72
|
|
73
|
+
class GoogleCloudMemcacheV1ZoneMetadata
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class GoogleCloudSaasacceleratorManagementProvidersV1Instance
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -88,6 +100,12 @@ module Google
|
|
88
100
|
include Google::Apis::Core::JsonObjectSupport
|
89
101
|
end
|
90
102
|
|
103
|
+
class GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
91
109
|
class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
|
92
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
111
|
|
@@ -288,6 +306,14 @@ module Google
|
|
288
306
|
end
|
289
307
|
end
|
290
308
|
|
309
|
+
class GoogleCloudMemcacheV1LocationMetadata
|
310
|
+
# @private
|
311
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
312
|
+
hash :available_zones, as: 'availableZones', class: Google::Apis::MemcacheV1::GoogleCloudMemcacheV1ZoneMetadata, decorator: Google::Apis::MemcacheV1::GoogleCloudMemcacheV1ZoneMetadata::Representation
|
313
|
+
|
314
|
+
end
|
315
|
+
end
|
316
|
+
|
291
317
|
class GoogleCloudMemcacheV1OperationMetadata
|
292
318
|
# @private
|
293
319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -301,6 +327,12 @@ module Google
|
|
301
327
|
end
|
302
328
|
end
|
303
329
|
|
330
|
+
class GoogleCloudMemcacheV1ZoneMetadata
|
331
|
+
# @private
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
304
336
|
class GoogleCloudSaasacceleratorManagementProvidersV1Instance
|
305
337
|
# @private
|
306
338
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -357,6 +389,14 @@ module Google
|
|
357
389
|
end
|
358
390
|
end
|
359
391
|
|
392
|
+
class GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility
|
393
|
+
# @private
|
394
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
395
|
+
hash :eligibilities, as: 'eligibilities', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility::Representation
|
396
|
+
|
397
|
+
end
|
398
|
+
end
|
399
|
+
|
360
400
|
class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
|
361
401
|
# @private
|
362
402
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -392,6 +432,8 @@ module Google
|
|
392
432
|
|
393
433
|
collection :nodes, as: 'nodes', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
|
394
434
|
|
435
|
+
property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::MemcacheV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
|
436
|
+
|
395
437
|
property :tier, as: 'tier'
|
396
438
|
end
|
397
439
|
end
|
@@ -84,11 +84,15 @@ module Google
|
|
84
84
|
# @param [String] name
|
85
85
|
# The resource that owns the locations collection, if applicable.
|
86
86
|
# @param [String] filter
|
87
|
-
#
|
87
|
+
# A filter to narrow down results to a preferred subset. The filtering language
|
88
|
+
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
89
|
+
# AIP-160](https://google.aip.dev/160).
|
88
90
|
# @param [Fixnum] page_size
|
89
|
-
# The
|
91
|
+
# The maximum number of results to return. If not set, the service will select a
|
92
|
+
# default.
|
90
93
|
# @param [String] page_token
|
91
|
-
#
|
94
|
+
# A page token received from the `next_page_token` field in the response. Send
|
95
|
+
# that page token to receive the subsequent page.
|
92
96
|
# @param [String] fields
|
93
97
|
# Selector specifying which fields to include in a partial response.
|
94
98
|
# @param [String] quota_user
|
@@ -119,8 +123,8 @@ module Google
|
|
119
123
|
execute_or_queue_command(command, &block)
|
120
124
|
end
|
121
125
|
|
122
|
-
# ApplyParameters
|
123
|
-
#
|
126
|
+
# `ApplyParameters` restarts the set of specified nodes in order to update them
|
127
|
+
# to the current set of parameters for the Memcached Instance.
|
124
128
|
# @param [String] name
|
125
129
|
# Required. Resource name of the Memcached instance for which parameter group
|
126
130
|
# updates should be applied.
|
@@ -165,7 +169,8 @@ module Google
|
|
165
169
|
# the following restrictions: * Must contain only lowercase letters, numbers,
|
166
170
|
# and hyphens. * Must start with a letter. * Must be between 1-40 characters. *
|
167
171
|
# Must end with a number or a letter. * Must be unique within the user project /
|
168
|
-
# location If any of the above are not met,
|
172
|
+
# location. If any of the above are not met, the API raises an invalid argument
|
173
|
+
# error.
|
169
174
|
# @param [String] fields
|
170
175
|
# Selector specifying which fields to include in a partial response.
|
171
176
|
# @param [String] quota_user
|
@@ -267,16 +272,17 @@ module Google
|
|
267
272
|
# region
|
268
273
|
# @param [String] filter
|
269
274
|
# List filter. For example, exclude all Memcached instances with name as my-
|
270
|
-
# instance by specifying "name != my-instance"
|
275
|
+
# instance by specifying `"name != my-instance"`.
|
271
276
|
# @param [String] order_by
|
272
277
|
# Sort results. Supported values are "name", "name desc" or "" (unsorted).
|
273
278
|
# @param [Fixnum] page_size
|
274
279
|
# The maximum number of items to return. If not specified, a default value of
|
275
|
-
# 1000 will be used by the service. Regardless of the page_size value, the
|
280
|
+
# 1000 will be used by the service. Regardless of the `page_size` value, the
|
276
281
|
# response may include a partial list and a caller should only rely on response'
|
277
|
-
# s next_page_token to determine if there are more instances left to be
|
282
|
+
# s `next_page_token` to determine if there are more instances left to be
|
283
|
+
# queried.
|
278
284
|
# @param [String] page_token
|
279
|
-
# The next_page_token value returned from a previous List request, if any.
|
285
|
+
# The `next_page_token` value returned from a previous List request, if any.
|
280
286
|
# @param [String] fields
|
281
287
|
# Selector specifying which fields to include in a partial response.
|
282
288
|
# @param [String] quota_user
|
@@ -313,9 +319,9 @@ module Google
|
|
313
319
|
# Required. Unique name of the resource in this scope including project and
|
314
320
|
# location using the form: `projects/`project_id`/locations/`location_id`/
|
315
321
|
# instances/`instance_id`` Note: Memcached instances are managed and addressed
|
316
|
-
# at regional level so location_id here refers to a
|
317
|
-
# may choose which zones Memcached nodes
|
318
|
-
#
|
322
|
+
# at the regional level so `location_id` here refers to a Google Cloud region;
|
323
|
+
# however, users may choose which zones Memcached nodes should be provisioned in
|
324
|
+
# within an instance. Refer to zones field for more details.
|
319
325
|
# @param [Google::Apis::MemcacheV1::Instance] instance_object
|
320
326
|
# @param [String] update_mask
|
321
327
|
# Required. Mask of fields to update. * `displayName`
|
@@ -349,9 +355,9 @@ module Google
|
|
349
355
|
execute_or_queue_command(command, &block)
|
350
356
|
end
|
351
357
|
|
352
|
-
# Updates the defined Memcached
|
353
|
-
# only stages the parameters, it must be followed by ApplyParameters to apply
|
354
|
-
# the parameters to nodes of the Memcached
|
358
|
+
# Updates the defined Memcached parameters for an existing instance. This method
|
359
|
+
# only stages the parameters, it must be followed by `ApplyParameters` to apply
|
360
|
+
# the parameters to nodes of the Memcached instance.
|
355
361
|
# @param [String] name
|
356
362
|
# Required. Resource name of the Memcached instance for which the parameters
|
357
363
|
# should be updated.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-memcache_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.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: 2021-03-
|
11
|
+
date: 2021-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-memcache_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.4.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-memcache_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|