google-apis-redis_v1 0.82.0 → 0.84.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c67333165e1d3cc02c941db90599c7e044b11b80c45da7def32c6336f1ee886
|
|
4
|
+
data.tar.gz: 2fe75e0c6b4e222a29551ea5fc12586164e142ff2267a015adfad693119fae26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 045c9ce11f41d361e1458fff6f5ba4e2083160a1a63a7820d9aca14c52cc716bcf479a30cce27f03202ebb5955985a0730400e18081784cafdb08af0f8ce284d
|
|
7
|
+
data.tar.gz: 99d7f96e7fda923b02937bf4fac82ccb56b7d189c695717340ce2921d2357052f6cdb370a5b46e86da2cebd63f3a8166f0e59caab3f5fef176d745f456de027b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-redis_v1
|
|
2
2
|
|
|
3
|
+
### v0.84.0 (2025-11-09)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251104
|
|
6
|
+
|
|
7
|
+
### v0.83.0 (2025-11-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251021
|
|
10
|
+
|
|
3
11
|
### v0.82.0 (2025-10-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251009
|
|
@@ -1195,7 +1195,7 @@ module Google
|
|
|
1195
1195
|
# @return [Google::Apis::RedisV1::DatabaseResourceId]
|
|
1196
1196
|
attr_accessor :resource_id
|
|
1197
1197
|
|
|
1198
|
-
# Common model for database resource instance metadata. Next ID:
|
|
1198
|
+
# Common model for database resource instance metadata. Next ID: 30
|
|
1199
1199
|
# Corresponds to the JSON property `resourceMetadata`
|
|
1200
1200
|
# @return [Google::Apis::RedisV1::DatabaseResourceMetadata]
|
|
1201
1201
|
attr_accessor :resource_metadata
|
|
@@ -1393,7 +1393,7 @@ module Google
|
|
|
1393
1393
|
end
|
|
1394
1394
|
end
|
|
1395
1395
|
|
|
1396
|
-
# Common model for database resource instance metadata. Next ID:
|
|
1396
|
+
# Common model for database resource instance metadata. Next ID: 30
|
|
1397
1397
|
class DatabaseResourceMetadata
|
|
1398
1398
|
include Google::Apis::Core::Hashable
|
|
1399
1399
|
|
|
@@ -1470,6 +1470,12 @@ module Google
|
|
|
1470
1470
|
# @return [String]
|
|
1471
1471
|
attr_accessor :instance_type
|
|
1472
1472
|
|
|
1473
|
+
# Optional. Whether deletion protection is enabled for this resource.
|
|
1474
|
+
# Corresponds to the JSON property `isDeletionProtectionEnabled`
|
|
1475
|
+
# @return [Boolean]
|
|
1476
|
+
attr_accessor :is_deletion_protection_enabled
|
|
1477
|
+
alias_method :is_deletion_protection_enabled?, :is_deletion_protection_enabled
|
|
1478
|
+
|
|
1473
1479
|
# The resource location. REQUIRED
|
|
1474
1480
|
# Corresponds to the JSON property `location`
|
|
1475
1481
|
# @return [String]
|
|
@@ -1567,6 +1573,7 @@ module Google
|
|
|
1567
1573
|
@gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
|
|
1568
1574
|
@id = args[:id] if args.key?(:id)
|
|
1569
1575
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
|
1576
|
+
@is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
|
|
1570
1577
|
@location = args[:location] if args.key?(:location)
|
|
1571
1578
|
@machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
|
|
1572
1579
|
@maintenance_info = args[:maintenance_info] if args.key?(:maintenance_info)
|
|
@@ -3735,8 +3742,7 @@ module Google
|
|
|
3735
3742
|
# maintenance. For example, for Cloud SQL resources, this can be used to capture
|
|
3736
3743
|
# if the maintenance window is in Week1, Week2, Week5, etc. Non production
|
|
3737
3744
|
# resources are usually part of early phase. For more details, refer to Cloud
|
|
3738
|
-
# SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
|
|
3739
|
-
# Use phase instead.
|
|
3745
|
+
# SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
|
|
3740
3746
|
# Corresponds to the JSON property `phase`
|
|
3741
3747
|
# @return [String]
|
|
3742
3748
|
attr_accessor :phase
|
|
@@ -3748,15 +3754,6 @@ module Google
|
|
|
3748
3754
|
# @return [Google::Apis::RedisV1::TimeOfDay]
|
|
3749
3755
|
attr_accessor :time
|
|
3750
3756
|
|
|
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
|
-
|
|
3760
3757
|
def initialize(**args)
|
|
3761
3758
|
update!(**args)
|
|
3762
3759
|
end
|
|
@@ -3766,7 +3763,6 @@ module Google
|
|
|
3766
3763
|
@day = args[:day] if args.key?(:day)
|
|
3767
3764
|
@phase = args[:phase] if args.key?(:phase)
|
|
3768
3765
|
@time = args[:time] if args.key?(:time)
|
|
3769
|
-
@week = args[:week] if args.key?(:week)
|
|
3770
3766
|
end
|
|
3771
3767
|
end
|
|
3772
3768
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.84.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 = "
|
|
25
|
+
REVISION = "20251104"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -981,6 +981,7 @@ module Google
|
|
|
981
981
|
property :id, as: 'id', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
|
|
982
982
|
|
|
983
983
|
property :instance_type, as: 'instanceType'
|
|
984
|
+
property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
|
|
984
985
|
property :location, as: 'location'
|
|
985
986
|
property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::RedisV1::MachineConfiguration, decorator: Google::Apis::RedisV1::MachineConfiguration::Representation
|
|
986
987
|
|
|
@@ -1568,7 +1569,6 @@ module Google
|
|
|
1568
1569
|
property :phase, as: 'phase'
|
|
1569
1570
|
property :time, as: 'time', class: Google::Apis::RedisV1::TimeOfDay, decorator: Google::Apis::RedisV1::TimeOfDay::Representation
|
|
1570
1571
|
|
|
1571
|
-
property :week, as: 'week'
|
|
1572
1572
|
end
|
|
1573
1573
|
end
|
|
1574
1574
|
|
|
@@ -85,8 +85,8 @@ module Google
|
|
|
85
85
|
# @param [String] name
|
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
|
88
|
-
# Optional.
|
|
89
|
-
#
|
|
88
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
|
89
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
|
90
90
|
# @param [String] filter
|
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
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.
|
|
4
|
+
version: 0.84.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.84.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:
|