google-apis-redis_v1 0.80.0 → 0.82.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: 52aaf88e5d9ae490e36d13634315c558ff4247025b0049767b9b5ee5c521dffe
4
- data.tar.gz: e01b99a54b7d06da538cccc7fdcf4c1b8c3a88276eada91d0c0bce777cfc84a8
3
+ metadata.gz: b0033d43e619677b1c972e279ea33d7de56305ab45883a28a5a77bec22b6c39c
4
+ data.tar.gz: b0510e7db716c50fd26f35712f798ef255066be15e1d6fdb4c53badf2893cf8a
5
5
  SHA512:
6
- metadata.gz: 908f5b29ad77f417d2f2e43971b64974c1643a2da44ecb47bed04c730c663ff1f6ab136db690372686812c918910fba7dbff1ba78bba47337c9973d87715de6a
7
- data.tar.gz: 11b4ceddeddb2e1e3ee7082117df4aba19d25512d8686c4ff18eef4896d124100275361e51b07e6fca2e63734512aa857355925700ea25bb48380d531d734ea7
6
+ metadata.gz: b7b36fb1c67a1163546f1b37a2213f40f48f90b0baa6478996558ca55347af34f20b8d065bf0e8f70482413c8792a2d213957bd3f7b80e986ed8b798901b900f
7
+ data.tar.gz: 85be2192fbcca900f51f5457a3f3ec23f93c904172a8537a783b068fb7bc4cd31ccf4017474210a1b72e89189d9026947bc0a2b2a0941f032f379c89b1891c30
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.82.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251009
6
+
7
+ ### v0.81.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251007
10
+
3
11
  ### v0.80.0 (2025-10-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20250930
@@ -581,6 +581,12 @@ module Google
581
581
  # @return [Google::Apis::RedisV1::AutomatedBackupConfig]
582
582
  attr_accessor :automated_backup_config
583
583
 
584
+ # Output only. This field is used to determine the available maintenance
585
+ # versions for the self service update.
586
+ # Corresponds to the JSON property `availableMaintenanceVersions`
587
+ # @return [Array<String>]
588
+ attr_accessor :available_maintenance_versions
589
+
584
590
  # Optional. Output only. The backup collection full resource name. Example:
585
591
  # projects/`project`/locations/`location`/backupCollections/`collection`
586
592
  # Corresponds to the JSON property `backupCollection`
@@ -614,6 +620,12 @@ module Google
614
620
  # @return [Array<Google::Apis::RedisV1::DiscoveryEndpoint>]
615
621
  attr_accessor :discovery_endpoints
616
622
 
623
+ # Output only. This field represents the actual maintenance version of the
624
+ # cluster.
625
+ # Corresponds to the JSON property `effectiveMaintenanceVersion`
626
+ # @return [String]
627
+ attr_accessor :effective_maintenance_version
628
+
617
629
  # EncryptionInfo describes the encryption information of a cluster or a backup.
618
630
  # Corresponds to the JSON property `encryptionInfo`
619
631
  # @return [Google::Apis::RedisV1::EncryptionInfo]
@@ -781,12 +793,14 @@ module Google
781
793
  @async_cluster_endpoints_deletion_enabled = args[:async_cluster_endpoints_deletion_enabled] if args.key?(:async_cluster_endpoints_deletion_enabled)
782
794
  @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
783
795
  @automated_backup_config = args[:automated_backup_config] if args.key?(:automated_backup_config)
796
+ @available_maintenance_versions = args[:available_maintenance_versions] if args.key?(:available_maintenance_versions)
784
797
  @backup_collection = args[:backup_collection] if args.key?(:backup_collection)
785
798
  @cluster_endpoints = args[:cluster_endpoints] if args.key?(:cluster_endpoints)
786
799
  @create_time = args[:create_time] if args.key?(:create_time)
787
800
  @cross_cluster_replication_config = args[:cross_cluster_replication_config] if args.key?(:cross_cluster_replication_config)
788
801
  @deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
789
802
  @discovery_endpoints = args[:discovery_endpoints] if args.key?(:discovery_endpoints)
803
+ @effective_maintenance_version = args[:effective_maintenance_version] if args.key?(:effective_maintenance_version)
790
804
  @encryption_info = args[:encryption_info] if args.key?(:encryption_info)
791
805
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
792
806
  @kms_key = args[:kms_key] if args.key?(:kms_key)
@@ -2703,6 +2717,13 @@ module Google
2703
2717
  # @return [Array<Google::Apis::RedisV1::Operation>]
2704
2718
  attr_accessor :operations
2705
2719
 
2720
+ # Unordered list. Unreachable resources. Populated when the request sets `
2721
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2722
+ # when attempting to list all resources across all supported locations.
2723
+ # Corresponds to the JSON property `unreachable`
2724
+ # @return [Array<String>]
2725
+ attr_accessor :unreachable
2726
+
2706
2727
  def initialize(**args)
2707
2728
  update!(**args)
2708
2729
  end
@@ -2711,6 +2732,7 @@ module Google
2711
2732
  def update!(**args)
2712
2733
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2713
2734
  @operations = args[:operations] if args.key?(:operations)
2735
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2714
2736
  end
2715
2737
  end
2716
2738
 
@@ -3713,7 +3735,8 @@ module Google
3713
3735
  # maintenance. For example, for Cloud SQL resources, this can be used to capture
3714
3736
  # if the maintenance window is in Week1, Week2, Week5, etc. Non production
3715
3737
  # resources are usually part of early phase. For more details, refer to Cloud
3716
- # SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
3738
+ # SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance Deprecated.
3739
+ # Use phase instead.
3717
3740
  # Corresponds to the JSON property `phase`
3718
3741
  # @return [String]
3719
3742
  attr_accessor :phase
@@ -3725,6 +3748,15 @@ module Google
3725
3748
  # @return [Google::Apis::RedisV1::TimeOfDay]
3726
3749
  attr_accessor :time
3727
3750
 
3751
+ # Optional. Phase of the maintenance window. This is to capture order of
3752
+ # maintenance. For example, for Cloud SQL resources, this can be used to capture
3753
+ # if the maintenance window is in Week1, Week2, Week5, etc. Non production
3754
+ # resources are usually part of early phase. For more details, refer to Cloud
3755
+ # SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
3756
+ # Corresponds to the JSON property `week`
3757
+ # @return [String]
3758
+ attr_accessor :week
3759
+
3728
3760
  def initialize(**args)
3729
3761
  update!(**args)
3730
3762
  end
@@ -3734,6 +3766,7 @@ module Google
3734
3766
  @day = args[:day] if args.key?(:day)
3735
3767
  @phase = args[:phase] if args.key?(:phase)
3736
3768
  @time = args[:time] if args.key?(:time)
3769
+ @week = args[:week] if args.key?(:week)
3737
3770
  end
3738
3771
  end
3739
3772
 
@@ -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.80.0"
19
+ GEM_VERSION = "0.82.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 = "20250930"
25
+ REVISION = "20251009"
26
26
  end
27
27
  end
28
28
  end
@@ -749,6 +749,7 @@ module Google
749
749
  property :authorization_mode, as: 'authorizationMode'
750
750
  property :automated_backup_config, as: 'automatedBackupConfig', class: Google::Apis::RedisV1::AutomatedBackupConfig, decorator: Google::Apis::RedisV1::AutomatedBackupConfig::Representation
751
751
 
752
+ collection :available_maintenance_versions, as: 'availableMaintenanceVersions'
752
753
  property :backup_collection, as: 'backupCollection'
753
754
  collection :cluster_endpoints, as: 'clusterEndpoints', class: Google::Apis::RedisV1::ClusterEndpoint, decorator: Google::Apis::RedisV1::ClusterEndpoint::Representation
754
755
 
@@ -758,6 +759,7 @@ module Google
758
759
  property :deletion_protection_enabled, as: 'deletionProtectionEnabled'
759
760
  collection :discovery_endpoints, as: 'discoveryEndpoints', class: Google::Apis::RedisV1::DiscoveryEndpoint, decorator: Google::Apis::RedisV1::DiscoveryEndpoint::Representation
760
761
 
762
+ property :effective_maintenance_version, as: 'effectiveMaintenanceVersion'
761
763
  property :encryption_info, as: 'encryptionInfo', class: Google::Apis::RedisV1::EncryptionInfo, decorator: Google::Apis::RedisV1::EncryptionInfo::Representation
762
764
 
763
765
  property :gcs_source, as: 'gcsSource', class: Google::Apis::RedisV1::GcsBackupSource, decorator: Google::Apis::RedisV1::GcsBackupSource::Representation
@@ -1299,6 +1301,7 @@ module Google
1299
1301
  property :next_page_token, as: 'nextPageToken'
1300
1302
  collection :operations, as: 'operations', class: Google::Apis::RedisV1::Operation, decorator: Google::Apis::RedisV1::Operation::Representation
1301
1303
 
1304
+ collection :unreachable, as: 'unreachable'
1302
1305
  end
1303
1306
  end
1304
1307
 
@@ -1565,6 +1568,7 @@ module Google
1565
1568
  property :phase, as: 'phase'
1566
1569
  property :time, as: 'time', class: Google::Apis::RedisV1::TimeOfDay, decorator: Google::Apis::RedisV1::TimeOfDay::Representation
1567
1570
 
1571
+ property :week, as: 'week'
1568
1572
  end
1569
1573
  end
1570
1574
 
@@ -1207,6 +1207,13 @@ module Google
1207
1207
  # The standard list page size.
1208
1208
  # @param [String] page_token
1209
1209
  # The standard list page token.
1210
+ # @param [Boolean] return_partial_success
1211
+ # When set to `true`, operations that are reachable are returned as normal, and
1212
+ # those that are unreachable are returned in the [ListOperationsResponse.
1213
+ # unreachable] field. This can only be `true` when reading across collections e.
1214
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1215
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1216
+ # explicitly documented otherwise in service or product specific documentation.
1210
1217
  # @param [String] fields
1211
1218
  # Selector specifying which fields to include in a partial response.
1212
1219
  # @param [String] quota_user
@@ -1224,7 +1231,7 @@ module Google
1224
1231
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1225
1232
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1226
1233
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1227
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1234
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1228
1235
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1229
1236
  command.response_representation = Google::Apis::RedisV1::ListOperationsResponse::Representation
1230
1237
  command.response_class = Google::Apis::RedisV1::ListOperationsResponse
@@ -1232,6 +1239,7 @@ module Google
1232
1239
  command.query['filter'] = filter unless filter.nil?
1233
1240
  command.query['pageSize'] = page_size unless page_size.nil?
1234
1241
  command.query['pageToken'] = page_token unless page_token.nil?
1242
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1235
1243
  command.query['fields'] = fields unless fields.nil?
1236
1244
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1237
1245
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.80.0
4
+ version: 0.82.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-redis_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.80.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.82.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
62
62
  rdoc_options: []
63
63
  require_paths: