google-apis-redis_v1 0.90.0 → 0.91.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: 16a15c3b65077e8ba632cedbbcc06e43e700c521ecffff1dce9afbb608122c60
4
- data.tar.gz: e508eb6db358468ef830169ef1afa15f5b9b7851e7f468e21f83bf19702f4d21
3
+ metadata.gz: a6c584a035958058a87cb6829427ca84213b285bc5d037a6e01d3eee3d852dba
4
+ data.tar.gz: 2ff8e4e1e5b63f82107af2b13719b32b082acd48caf86c702f99caaf875a5803
5
5
  SHA512:
6
- metadata.gz: 43294fc23403b81e3e70c97268d75f563b3531ddd3f393228c8166b388731404e7a9267bbb84d04c71d3f5e136c9dd0bd4e10cc7c7372b3dfd561c3fa8287945
7
- data.tar.gz: aab7e97e30b7351999f10770a33fe252b1e24143a7b2191c0afd832ac83e134af25a484c0b3bd5f5b00759da704d96c2662b6dbeb6f2942d8a93f0c81aa220ac
6
+ metadata.gz: 5afe3a035d75c2b37aee901113dc8c2907c710a39a7765fe500b2bdc58c238f1b73a195b415a704682adb95f2011d35dfb601d3fed0e70b5b198c97e367f9dd6
7
+ data.tar.gz: 2191f96f15cbaebdfa8bfb11a61a372e7a6e54189a4e464ea937cffcf720e0966e057922c4994b7029b78826b14ad1fa70b881d961bfac464381e9c10f322e67
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.91.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260526
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.90.0 (2026-05-03)
4
9
 
5
10
  * Regenerated from discovery document revision 20260423
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/memorystore/docs/redis/) ma
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1380,7 +1380,7 @@ module Google
1380
1380
  # @return [Google::Apis::RedisV1::DatabaseResourceId]
1381
1381
  attr_accessor :resource_id
1382
1382
 
1383
- # Common model for database resource instance metadata. Next ID: 32
1383
+ # Common model for database resource instance metadata. Next ID: 35
1384
1384
  # Corresponds to the JSON property `resourceMetadata`
1385
1385
  # @return [Google::Apis::RedisV1::DatabaseResourceMetadata]
1386
1386
  attr_accessor :resource_metadata
@@ -1578,10 +1578,15 @@ module Google
1578
1578
  end
1579
1579
  end
1580
1580
 
1581
- # Common model for database resource instance metadata. Next ID: 32
1581
+ # Common model for database resource instance metadata. Next ID: 35
1582
1582
  class DatabaseResourceMetadata
1583
1583
  include Google::Apis::Core::Hashable
1584
1584
 
1585
+ # Field to ingest additional metadata whichd does not support proto format.
1586
+ # Corresponds to the JSON property `additionalMetadata`
1587
+ # @return [Hash<String,Object>]
1588
+ attr_accessor :additional_metadata
1589
+
1585
1590
  # Configuration for availability of database instance
1586
1591
  # Corresponds to the JSON property `availabilityConfiguration`
1587
1592
  # @return [Google::Apis::RedisV1::AvailabilityConfiguration]
@@ -1655,6 +1660,16 @@ module Google
1655
1660
  # @return [String]
1656
1661
  attr_accessor :instance_type
1657
1662
 
1663
+ # Field to ingest additional metadata which support proto format.
1664
+ # Corresponds to the JSON property `internalAdditionalMetadata`
1665
+ # @return [Hash<String,Object>]
1666
+ attr_accessor :internal_additional_metadata
1667
+
1668
+ # Used to send IP address information for a database resource.
1669
+ # Corresponds to the JSON property `ipAddress`
1670
+ # @return [Google::Apis::RedisV1::IpAddress]
1671
+ attr_accessor :ip_address
1672
+
1658
1673
  # Optional. Whether deletion protection is enabled for this resource.
1659
1674
  # Corresponds to the JSON property `isDeletionProtectionEnabled`
1660
1675
  # @return [Boolean]
@@ -1755,6 +1770,7 @@ module Google
1755
1770
 
1756
1771
  # Update properties of this object
1757
1772
  def update!(**args)
1773
+ @additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
1758
1774
  @availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
1759
1775
  @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
1760
1776
  @backup_run = args[:backup_run] if args.key?(:backup_run)
@@ -1768,6 +1784,8 @@ module Google
1768
1784
  @gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
1769
1785
  @id = args[:id] if args.key?(:id)
1770
1786
  @instance_type = args[:instance_type] if args.key?(:instance_type)
1787
+ @internal_additional_metadata = args[:internal_additional_metadata] if args.key?(:internal_additional_metadata)
1788
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
1771
1789
  @is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
1772
1790
  @location = args[:location] if args.key?(:location)
1773
1791
  @machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
@@ -2753,6 +2771,34 @@ module Google
2753
2771
  end
2754
2772
  end
2755
2773
 
2774
+ # Used to send IP address information for a database resource.
2775
+ class IpAddress
2776
+ include Google::Apis::Core::Hashable
2777
+
2778
+ # The private IP address assigned to the resource within a Virtual Private Cloud
2779
+ # (VPC). This IP is only reachable from within the same VPC network. Stored in
2780
+ # standard string format (e.g., "10.0.0.2").
2781
+ # Corresponds to the JSON property `privateIp`
2782
+ # @return [String]
2783
+ attr_accessor :private_ip
2784
+
2785
+ # The public IP address assigned to the resource. This IP is reachable from the
2786
+ # internet. Stored in standard string format (e.g., "34.72.1.1").
2787
+ # Corresponds to the JSON property `publicIp`
2788
+ # @return [String]
2789
+ attr_accessor :public_ip
2790
+
2791
+ def initialize(**args)
2792
+ update!(**args)
2793
+ end
2794
+
2795
+ # Update properties of this object
2796
+ def update!(**args)
2797
+ @private_ip = args[:private_ip] if args.key?(:private_ip)
2798
+ @public_ip = args[:public_ip] if args.key?(:public_ip)
2799
+ end
2800
+ end
2801
+
2756
2802
  # Response for `ListAclPolicies`.
2757
2803
  class ListAclPoliciesResponse
2758
2804
  include Google::Apis::Core::Hashable
@@ -4133,6 +4179,11 @@ module Google
4133
4179
  # @return [String]
4134
4180
  attr_accessor :maintenance_version
4135
4181
 
4182
+ # Optional. List of next available maintenance versions.
4183
+ # Corresponds to the JSON property `nextAvailableMaintenanceVersions`
4184
+ # @return [Array<String>]
4185
+ attr_accessor :next_available_maintenance_versions
4186
+
4136
4187
  # Upcoming maintenance for the database resource. This is generated by SLM once
4137
4188
  # the upcoming maintenance schedule is published.
4138
4189
  # Corresponds to the JSON property `upcomingMaintenance`
@@ -4151,6 +4202,7 @@ module Google
4151
4202
  @maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
4152
4203
  @maintenance_state = args[:maintenance_state] if args.key?(:maintenance_state)
4153
4204
  @maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
4205
+ @next_available_maintenance_versions = args[:next_available_maintenance_versions] if args.key?(:next_available_maintenance_versions)
4154
4206
  @upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
4155
4207
  end
4156
4208
  end
@@ -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.90.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260423"
25
+ REVISION = "20260526"
26
26
  end
27
27
  end
28
28
  end
@@ -358,6 +358,12 @@ module Google
358
358
  include Google::Apis::Core::JsonObjectSupport
359
359
  end
360
360
 
361
+ class IpAddress
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
361
367
  class ListAclPoliciesResponse
362
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
369
 
@@ -1100,6 +1106,7 @@ module Google
1100
1106
  class DatabaseResourceMetadata
1101
1107
  # @private
1102
1108
  class Representation < Google::Apis::Core::JsonRepresentation
1109
+ hash :additional_metadata, as: 'additionalMetadata'
1103
1110
  property :availability_configuration, as: 'availabilityConfiguration', class: Google::Apis::RedisV1::AvailabilityConfiguration, decorator: Google::Apis::RedisV1::AvailabilityConfiguration::Representation
1104
1111
 
1105
1112
  property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::RedisV1::BackupConfiguration, decorator: Google::Apis::RedisV1::BackupConfiguration::Representation
@@ -1121,6 +1128,9 @@ module Google
1121
1128
  property :id, as: 'id', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
1122
1129
 
1123
1130
  property :instance_type, as: 'instanceType'
1131
+ hash :internal_additional_metadata, as: 'internalAdditionalMetadata'
1132
+ property :ip_address, as: 'ipAddress', class: Google::Apis::RedisV1::IpAddress, decorator: Google::Apis::RedisV1::IpAddress::Representation
1133
+
1124
1134
  property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
1125
1135
  property :location, as: 'location'
1126
1136
  property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::RedisV1::MachineConfiguration, decorator: Google::Apis::RedisV1::MachineConfiguration::Representation
@@ -1395,6 +1405,14 @@ module Google
1395
1405
  end
1396
1406
  end
1397
1407
 
1408
+ class IpAddress
1409
+ # @private
1410
+ class Representation < Google::Apis::Core::JsonRepresentation
1411
+ property :private_ip, as: 'privateIp'
1412
+ property :public_ip, as: 'publicIp'
1413
+ end
1414
+ end
1415
+
1398
1416
  class ListAclPoliciesResponse
1399
1417
  # @private
1400
1418
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1766,6 +1784,7 @@ module Google
1766
1784
 
1767
1785
  property :maintenance_state, as: 'maintenanceState'
1768
1786
  property :maintenance_version, as: 'maintenanceVersion'
1787
+ collection :next_available_maintenance_versions, as: 'nextAvailableMaintenanceVersions'
1769
1788
  property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::RedisV1::UpcomingMaintenance, decorator: Google::Apis::RedisV1::UpcomingMaintenance::Representation
1770
1789
 
1771
1790
  end
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.90.0
4
+ version: 0.91.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.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.91.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:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="