google-apis-memcache_v1beta2 0.27.0 → 0.28.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/memcache_v1beta2/classes.rb +23 -6
- data/lib/google/apis/memcache_v1beta2/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a21258a01d8f008ddbaaaee28f8060cbd5037e7f3d43d8d586d3265d03575541
|
|
4
|
+
data.tar.gz: 39fe7631d8466fe13619cebfb87aaab5dbb3ed251b69027c704c1667aff10605
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b25d9d316befa277ad0284efecae9b19ce51401a2c9ea87ff44cac3352dbe64275f00d0ba86441b3e573e28f878c22070e22c5a3b7584e09a531cdbde0fa51b8
|
|
7
|
+
data.tar.gz: '039546f1263c3ecfa6d95afe4a5d93766e2436ebf22a8e29ff547660140bc315503bdffd3df379055944899286ddeb0d8011d1968c1767ff6e4934bf0f73cea6'
|
data/CHANGELOG.md
CHANGED
|
@@ -357,7 +357,22 @@ module Google
|
|
|
357
357
|
end
|
|
358
358
|
end
|
|
359
359
|
|
|
360
|
-
#
|
|
360
|
+
# Instance represents the interface for SLM services to actuate the state of
|
|
361
|
+
# control plane resources. Example Instance in JSON, where consumer-project-
|
|
362
|
+
# number=123456, producer-project-id=cloud-sql: ```json Instance: ` "name": "
|
|
363
|
+
# projects/123456/locations/us-east1/instances/prod-instance", "create_time": ` "
|
|
364
|
+
# seconds": 1526406431, `, "labels": ` "env": "prod", "foo": "bar" `, "state":
|
|
365
|
+
# READY, "software_versions": ` "software_update": "cloud-sql-09-28-2018", `, "
|
|
366
|
+
# maintenance_policy_names": ` "UpdatePolicy": "projects/123456/locations/us-
|
|
367
|
+
# east1/maintenancePolicies/prod-update-policy", ` "tenant_project_id": "cloud-
|
|
368
|
+
# sql-test-tenant", "producer_metadata": ` "cloud-sql-tier": "basic", "cloud-sql-
|
|
369
|
+
# instance-size": "1G", `, "provisioned_resources": [ ` "resource-type": "
|
|
370
|
+
# compute-instance", "resource-url": "https://www.googleapis.com/compute/v1/
|
|
371
|
+
# projects/cloud-sql/zones/us-east1-b/instances/vm-1", ` ], "
|
|
372
|
+
# maintenance_schedules": ` "csa_rollout": ` "start_time": ` "seconds":
|
|
373
|
+
# 1526406431, `, "end_time": ` "seconds": 1535406431, `, `, "ncsa_rollout": ` "
|
|
374
|
+
# start_time": ` "seconds": 1526406431, `, "end_time": ` "seconds": 1535406431, `
|
|
375
|
+
# , ` `, "consumer_defined_name": "my-sql-instance1", ` ``` LINT.IfChange
|
|
361
376
|
class GoogleCloudSaasacceleratorManagementProvidersV1Instance
|
|
362
377
|
include Google::Apis::Core::Hashable
|
|
363
378
|
|
|
@@ -391,10 +406,11 @@ module Google
|
|
|
391
406
|
# @return [Hash<String,String>]
|
|
392
407
|
attr_accessor :labels
|
|
393
408
|
|
|
394
|
-
# Optional.
|
|
395
|
-
#
|
|
409
|
+
# Optional. The MaintenancePolicies that have been attached to the instance. The
|
|
410
|
+
# key must be of the type name of the oneof policy name defined in
|
|
396
411
|
# MaintenancePolicy, and the referenced policy must define the same policy type.
|
|
397
|
-
# For
|
|
412
|
+
# For details, please refer to go/cloud-saas-mw-ug. Should not be set if
|
|
413
|
+
# maintenance_settings.maintenance_policies is set.
|
|
398
414
|
# Corresponds to the JSON property `maintenancePolicyNames`
|
|
399
415
|
# @return [Hash<String,String>]
|
|
400
416
|
attr_accessor :maintenance_policy_names
|
|
@@ -577,8 +593,9 @@ module Google
|
|
|
577
593
|
# Optional. The MaintenancePolicies that have been attached to the instance. The
|
|
578
594
|
# key must be of the type name of the oneof policy name defined in
|
|
579
595
|
# MaintenancePolicy, and the embedded policy must define the same policy type.
|
|
580
|
-
# For
|
|
581
|
-
# If only the name is needed, then only
|
|
596
|
+
# For details, please refer to go/cloud-saas-mw-ug. Should not be set if
|
|
597
|
+
# maintenance_policy_names is set. If only the name is needed, then only
|
|
598
|
+
# populate MaintenancePolicy.name.
|
|
582
599
|
# Corresponds to the JSON property `maintenancePolicies`
|
|
583
600
|
# @return [Hash<String,Google::Apis::MemcacheV1beta2::MaintenancePolicy>]
|
|
584
601
|
attr_accessor :maintenance_policies
|
|
@@ -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.28.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230111"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.28.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: 2023-01-
|
|
11
|
+
date: 2023-01-29 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-memcache_v1beta2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.28.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1beta2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|