google-apis-redis_v1beta1 0.55.0 → 0.56.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9067d94c648863849ab39ee6bfd81fcef7f1bb187c71df415007556136b37628
|
4
|
+
data.tar.gz: 40ff62bc2909793abfc299fd7b71571b1137bb4185cc1400d7d78f174451b404
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86e60a98ecae1a003a7ac70b5e0dd67d02f3e91a075bfc06ffc0ce3dfe1924bccef7328c10fc2bd72395da869b8f59d0146d3e768d5a6fec0c18551f572b8905
|
7
|
+
data.tar.gz: d27bad1fde84f13ebe215683e0449ed360c441b0aa8a3509a493c185ff0fc0b977c9425742a9825cb5cb488bdf0bb4bc68a0dae182831bb0267cf83d6ed2f3f8
|
data/CHANGELOG.md
CHANGED
@@ -58,8 +58,8 @@ module Google
|
|
58
58
|
attr_accessor :fixed_frequency_schedule
|
59
59
|
|
60
60
|
# Optional. How long to keep automated backups before the backups are deleted.
|
61
|
-
#
|
62
|
-
# value
|
61
|
+
# The value should be between 1 day and 365 days. If not specified, the default
|
62
|
+
# value is 35 days.
|
63
63
|
# Corresponds to the JSON property `retention`
|
64
64
|
# @return [String]
|
65
65
|
attr_accessor :retention
|
@@ -200,6 +200,11 @@ module Google
|
|
200
200
|
# @return [Fixnum]
|
201
201
|
attr_accessor :total_size_bytes
|
202
202
|
|
203
|
+
# Output only. System assigned unique identifier of the backup.
|
204
|
+
# Corresponds to the JSON property `uid`
|
205
|
+
# @return [String]
|
206
|
+
attr_accessor :uid
|
207
|
+
|
203
208
|
def initialize(**args)
|
204
209
|
update!(**args)
|
205
210
|
end
|
@@ -219,6 +224,7 @@ module Google
|
|
219
224
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
220
225
|
@state = args[:state] if args.key?(:state)
|
221
226
|
@total_size_bytes = args[:total_size_bytes] if args.key?(:total_size_bytes)
|
227
|
+
@uid = args[:uid] if args.key?(:uid)
|
222
228
|
end
|
223
229
|
end
|
224
230
|
|
@@ -269,6 +275,11 @@ module Google
|
|
269
275
|
# @return [String]
|
270
276
|
attr_accessor :name
|
271
277
|
|
278
|
+
# Output only. System assigned unique identifier of the backup collection.
|
279
|
+
# Corresponds to the JSON property `uid`
|
280
|
+
# @return [String]
|
281
|
+
attr_accessor :uid
|
282
|
+
|
272
283
|
def initialize(**args)
|
273
284
|
update!(**args)
|
274
285
|
end
|
@@ -278,6 +289,7 @@ module Google
|
|
278
289
|
@cluster = args[:cluster] if args.key?(:cluster)
|
279
290
|
@cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
|
280
291
|
@name = args[:name] if args.key?(:name)
|
292
|
+
@uid = args[:uid] if args.key?(:uid)
|
281
293
|
end
|
282
294
|
end
|
283
295
|
|
@@ -797,6 +809,12 @@ module Google
|
|
797
809
|
class ConnectionDetail
|
798
810
|
include Google::Apis::Core::Hashable
|
799
811
|
|
812
|
+
# Details of consumer resources in a PSC connection that is created through
|
813
|
+
# Service Connectivity Automation.
|
814
|
+
# Corresponds to the JSON property `pscAutoConnection`
|
815
|
+
# @return [Google::Apis::RedisV1beta1::PscAutoConnection]
|
816
|
+
attr_accessor :psc_auto_connection
|
817
|
+
|
800
818
|
# Details of consumer resources in a PSC connection.
|
801
819
|
# Corresponds to the JSON property `pscConnection`
|
802
820
|
# @return [Google::Apis::RedisV1beta1::PscConnection]
|
@@ -808,6 +826,7 @@ module Google
|
|
808
826
|
|
809
827
|
# Update properties of this object
|
810
828
|
def update!(**args)
|
829
|
+
@psc_auto_connection = args[:psc_auto_connection] if args.key?(:psc_auto_connection)
|
811
830
|
@psc_connection = args[:psc_connection] if args.key?(:psc_connection)
|
812
831
|
end
|
813
832
|
end
|
@@ -2793,6 +2812,76 @@ module Google
|
|
2793
2812
|
end
|
2794
2813
|
end
|
2795
2814
|
|
2815
|
+
# Details of consumer resources in a PSC connection that is created through
|
2816
|
+
# Service Connectivity Automation.
|
2817
|
+
class PscAutoConnection
|
2818
|
+
include Google::Apis::Core::Hashable
|
2819
|
+
|
2820
|
+
# Output only. The IP allocated on the consumer network for the PSC forwarding
|
2821
|
+
# rule.
|
2822
|
+
# Corresponds to the JSON property `address`
|
2823
|
+
# @return [String]
|
2824
|
+
attr_accessor :address
|
2825
|
+
|
2826
|
+
# Output only. Type of the PSC connection.
|
2827
|
+
# Corresponds to the JSON property `connectionType`
|
2828
|
+
# @return [String]
|
2829
|
+
attr_accessor :connection_type
|
2830
|
+
|
2831
|
+
# Output only. The URI of the consumer side forwarding rule. Example: projects/`
|
2832
|
+
# projectNumOrId`/regions/us-east1/forwardingRules/`resourceId`.
|
2833
|
+
# Corresponds to the JSON property `forwardingRule`
|
2834
|
+
# @return [String]
|
2835
|
+
attr_accessor :forwarding_rule
|
2836
|
+
|
2837
|
+
# Required. The consumer network where the IP address resides, in the form of
|
2838
|
+
# projects/`project_id`/global/networks/`network_id`.
|
2839
|
+
# Corresponds to the JSON property `network`
|
2840
|
+
# @return [String]
|
2841
|
+
attr_accessor :network
|
2842
|
+
|
2843
|
+
# Required. The consumer project_id where the forwarding rule is created from.
|
2844
|
+
# Corresponds to the JSON property `projectId`
|
2845
|
+
# @return [String]
|
2846
|
+
attr_accessor :project_id
|
2847
|
+
|
2848
|
+
# Output only. The PSC connection id of the forwarding rule connected to the
|
2849
|
+
# service attachment.
|
2850
|
+
# Corresponds to the JSON property `pscConnectionId`
|
2851
|
+
# @return [String]
|
2852
|
+
attr_accessor :psc_connection_id
|
2853
|
+
|
2854
|
+
# Output only. The status of the PSC connection. Please note that this value is
|
2855
|
+
# updated periodically. Please use Private Service Connect APIs for the latest
|
2856
|
+
# status.
|
2857
|
+
# Corresponds to the JSON property `pscConnectionStatus`
|
2858
|
+
# @return [String]
|
2859
|
+
attr_accessor :psc_connection_status
|
2860
|
+
|
2861
|
+
# Output only. The service attachment which is the target of the PSC connection,
|
2862
|
+
# in the form of projects/`project-id`/regions/`region`/serviceAttachments/`
|
2863
|
+
# service-attachment-id`.
|
2864
|
+
# Corresponds to the JSON property `serviceAttachment`
|
2865
|
+
# @return [String]
|
2866
|
+
attr_accessor :service_attachment
|
2867
|
+
|
2868
|
+
def initialize(**args)
|
2869
|
+
update!(**args)
|
2870
|
+
end
|
2871
|
+
|
2872
|
+
# Update properties of this object
|
2873
|
+
def update!(**args)
|
2874
|
+
@address = args[:address] if args.key?(:address)
|
2875
|
+
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
2876
|
+
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
2877
|
+
@network = args[:network] if args.key?(:network)
|
2878
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
2879
|
+
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
2880
|
+
@psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
|
2881
|
+
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
2882
|
+
end
|
2883
|
+
end
|
2884
|
+
|
2796
2885
|
#
|
2797
2886
|
class PscConfig
|
2798
2887
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RedisV1beta1
|
18
18
|
# Version of the google-apis-redis_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.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 = "20241203"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -412,6 +412,12 @@ module Google
|
|
412
412
|
include Google::Apis::Core::JsonObjectSupport
|
413
413
|
end
|
414
414
|
|
415
|
+
class PscAutoConnection
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
415
421
|
class PscConfig
|
416
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
423
|
|
@@ -577,6 +583,7 @@ module Google
|
|
577
583
|
property :shard_count, as: 'shardCount'
|
578
584
|
property :state, as: 'state'
|
579
585
|
property :total_size_bytes, :numeric_string => true, as: 'totalSizeBytes'
|
586
|
+
property :uid, as: 'uid'
|
580
587
|
end
|
581
588
|
end
|
582
589
|
|
@@ -594,6 +601,7 @@ module Google
|
|
594
601
|
property :cluster, as: 'cluster'
|
595
602
|
property :cluster_uid, as: 'clusterUid'
|
596
603
|
property :name, as: 'name'
|
604
|
+
property :uid, as: 'uid'
|
597
605
|
end
|
598
606
|
end
|
599
607
|
|
@@ -748,6 +756,8 @@ module Google
|
|
748
756
|
class ConnectionDetail
|
749
757
|
# @private
|
750
758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
759
|
+
property :psc_auto_connection, as: 'pscAutoConnection', class: Google::Apis::RedisV1beta1::PscAutoConnection, decorator: Google::Apis::RedisV1beta1::PscAutoConnection::Representation
|
760
|
+
|
751
761
|
property :psc_connection, as: 'pscConnection', class: Google::Apis::RedisV1beta1::PscConnection, decorator: Google::Apis::RedisV1beta1::PscConnection::Representation
|
752
762
|
|
753
763
|
end
|
@@ -1270,6 +1280,20 @@ module Google
|
|
1270
1280
|
end
|
1271
1281
|
end
|
1272
1282
|
|
1283
|
+
class PscAutoConnection
|
1284
|
+
# @private
|
1285
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1286
|
+
property :address, as: 'address'
|
1287
|
+
property :connection_type, as: 'connectionType'
|
1288
|
+
property :forwarding_rule, as: 'forwardingRule'
|
1289
|
+
property :network, as: 'network'
|
1290
|
+
property :project_id, as: 'projectId'
|
1291
|
+
property :psc_connection_id, as: 'pscConnectionId'
|
1292
|
+
property :psc_connection_status, as: 'pscConnectionStatus'
|
1293
|
+
property :service_attachment, as: 'serviceAttachment'
|
1294
|
+
end
|
1295
|
+
end
|
1296
|
+
|
1273
1297
|
class PscConfig
|
1274
1298
|
# @private
|
1275
1299
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -351,7 +351,12 @@ module Google
|
|
351
351
|
# this collection. Both collection and backup will have a resource name. Backup
|
352
352
|
# will be executed for each shard. A replica (primary if nonHA) will be selected
|
353
353
|
# to perform the execution. Backup call will be rejected if there is an ongoing
|
354
|
-
# backup or update operation.
|
354
|
+
# backup or update operation. Be aware that during preview, if the cluster's
|
355
|
+
# internal software version is too old, critical update will be performed before
|
356
|
+
# actual backup. Once the internal software version is updated to the minimum
|
357
|
+
# version required by the backup feature, subsequent backups will not require
|
358
|
+
# critical update. After preview, there will be no critical update needed for
|
359
|
+
# backup.
|
355
360
|
# @param [String] name
|
356
361
|
# Required. Redis cluster resource name using the form: `projects/`project_id`/
|
357
362
|
# locations/`location_id`/clusters/`cluster_id`` where `location_id` refers to a
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-redis_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.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-12-
|
11
|
+
date: 2024-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -59,7 +59,7 @@ licenses:
|
|
59
59
|
metadata:
|
60
60
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
61
61
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1/CHANGELOG.md
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.56.0
|
63
63
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1
|
64
64
|
post_install_message:
|
65
65
|
rdoc_options: []
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
rubygems_version: 3.5.
|
79
|
+
rubygems_version: 3.5.23
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: Simple REST client for Google Cloud Memorystore for Redis API V1beta1
|