google-apis-redis_v1 0.64.0 → 0.65.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: b3581cfb863ce6874b63839850301f2e0ac9f40a3154dad84b3971c01cc7df0f
4
- data.tar.gz: 2e658cdd234f6103503ea8dd14faae08ac3cc818d29ff1c770f4ce3bf4c67f76
3
+ metadata.gz: 7e81c41ce07cd4bdab46c16a91c43916d0434f76d61be430e20bc9b6a1263c41
4
+ data.tar.gz: 8bbdcd7c4e230fc607d7e5657a8d1694a6a00bf8223d6c4e12fc48c2d1583ab7
5
5
  SHA512:
6
- metadata.gz: 743aa3d75ae81e75b7e6af1aa98512c37eb178d8cd068b4deae107f666f4edd6cabe9b9667f99c6ac5fd5592a09dc45060c700e61e7306f97d036fcb9fa38258
7
- data.tar.gz: e4b7e6e32a53e3afea815ee4f36d0d785a22e87cb92575d9aa6a09f885fcf4a5a81c1d6ddf6ce567dd476c97f2004ce6c1a4a3da51d991fd24385e53075192d4
6
+ metadata.gz: 50730f176dccd0b6cf78fce3722e5a006dcfdf3d320be94f8b6574e53606bf53044e4d708d278582fa5edd2f98e2c42bfd47812954bfccf2be20f99df1472875
7
+ data.tar.gz: 93081ae42c7a26924ce7b569497bb952e53be5be0d81ad2615f82fe60d2e0d8ef7b3be97b194689933127bd6cfb9f2b11200edf9de9eb8040f48247c96a7fe31
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.65.0 (2024-12-08)
4
+
5
+ * Regenerated from discovery document revision 20241203
6
+
3
7
  ### v0.64.0 (2024-11-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20241114
@@ -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
- # If not specified, the default value is 100 years which is also the maximum
62
- # value supported. The minimum value is 1 day.
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::RedisV1::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::RedisV1::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
@@ -2790,6 +2809,76 @@ module Google
2790
2809
  end
2791
2810
  end
2792
2811
 
2812
+ # Details of consumer resources in a PSC connection that is created through
2813
+ # Service Connectivity Automation.
2814
+ class PscAutoConnection
2815
+ include Google::Apis::Core::Hashable
2816
+
2817
+ # Output only. The IP allocated on the consumer network for the PSC forwarding
2818
+ # rule.
2819
+ # Corresponds to the JSON property `address`
2820
+ # @return [String]
2821
+ attr_accessor :address
2822
+
2823
+ # Output only. Type of the PSC connection.
2824
+ # Corresponds to the JSON property `connectionType`
2825
+ # @return [String]
2826
+ attr_accessor :connection_type
2827
+
2828
+ # Output only. The URI of the consumer side forwarding rule. Example: projects/`
2829
+ # projectNumOrId`/regions/us-east1/forwardingRules/`resourceId`.
2830
+ # Corresponds to the JSON property `forwardingRule`
2831
+ # @return [String]
2832
+ attr_accessor :forwarding_rule
2833
+
2834
+ # Required. The consumer network where the IP address resides, in the form of
2835
+ # projects/`project_id`/global/networks/`network_id`.
2836
+ # Corresponds to the JSON property `network`
2837
+ # @return [String]
2838
+ attr_accessor :network
2839
+
2840
+ # Required. The consumer project_id where the forwarding rule is created from.
2841
+ # Corresponds to the JSON property `projectId`
2842
+ # @return [String]
2843
+ attr_accessor :project_id
2844
+
2845
+ # Output only. The PSC connection id of the forwarding rule connected to the
2846
+ # service attachment.
2847
+ # Corresponds to the JSON property `pscConnectionId`
2848
+ # @return [String]
2849
+ attr_accessor :psc_connection_id
2850
+
2851
+ # Output only. The status of the PSC connection. Please note that this value is
2852
+ # updated periodically. Please use Private Service Connect APIs for the latest
2853
+ # status.
2854
+ # Corresponds to the JSON property `pscConnectionStatus`
2855
+ # @return [String]
2856
+ attr_accessor :psc_connection_status
2857
+
2858
+ # Output only. The service attachment which is the target of the PSC connection,
2859
+ # in the form of projects/`project-id`/regions/`region`/serviceAttachments/`
2860
+ # service-attachment-id`.
2861
+ # Corresponds to the JSON property `serviceAttachment`
2862
+ # @return [String]
2863
+ attr_accessor :service_attachment
2864
+
2865
+ def initialize(**args)
2866
+ update!(**args)
2867
+ end
2868
+
2869
+ # Update properties of this object
2870
+ def update!(**args)
2871
+ @address = args[:address] if args.key?(:address)
2872
+ @connection_type = args[:connection_type] if args.key?(:connection_type)
2873
+ @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
2874
+ @network = args[:network] if args.key?(:network)
2875
+ @project_id = args[:project_id] if args.key?(:project_id)
2876
+ @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
2877
+ @psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
2878
+ @service_attachment = args[:service_attachment] if args.key?(:service_attachment)
2879
+ end
2880
+ end
2881
+
2793
2882
  #
2794
2883
  class PscConfig
2795
2884
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RedisV1
18
18
  # Version of the google-apis-redis_v1 gem
19
- GEM_VERSION = "0.64.0"
19
+ GEM_VERSION = "0.65.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 = "20241114"
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::RedisV1::PscAutoConnection, decorator: Google::Apis::RedisV1::PscAutoConnection::Representation
760
+
751
761
  property :psc_connection, as: 'pscConnection', class: Google::Apis::RedisV1::PscConnection, decorator: Google::Apis::RedisV1::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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.65.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-04 00:00:00.000000000 Z
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
@@ -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-redis_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.65.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.22
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Cloud Memorystore for Redis API V1