aws-sdk-elasticache 1.115.0 → 1.117.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticache/client.rb +329 -281
- data/lib/aws-sdk-elasticache/client_api.rb +6 -0
- data/lib/aws-sdk-elasticache/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-elasticache/endpoints.rb +2 -823
- data/lib/aws-sdk-elasticache/plugins/endpoints.rb +1 -156
- data/lib/aws-sdk-elasticache/types.rb +446 -396
- data/lib/aws-sdk-elasticache.rb +1 -1
- data/sig/client.rbs +6 -1
- data/sig/types.rbs +6 -0
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::ElastiCache::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,161 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :add_tags_to_resource
|
74
|
-
Aws::ElastiCache::Endpoints::AddTagsToResource.build(context)
|
75
|
-
when :authorize_cache_security_group_ingress
|
76
|
-
Aws::ElastiCache::Endpoints::AuthorizeCacheSecurityGroupIngress.build(context)
|
77
|
-
when :batch_apply_update_action
|
78
|
-
Aws::ElastiCache::Endpoints::BatchApplyUpdateAction.build(context)
|
79
|
-
when :batch_stop_update_action
|
80
|
-
Aws::ElastiCache::Endpoints::BatchStopUpdateAction.build(context)
|
81
|
-
when :complete_migration
|
82
|
-
Aws::ElastiCache::Endpoints::CompleteMigration.build(context)
|
83
|
-
when :copy_serverless_cache_snapshot
|
84
|
-
Aws::ElastiCache::Endpoints::CopyServerlessCacheSnapshot.build(context)
|
85
|
-
when :copy_snapshot
|
86
|
-
Aws::ElastiCache::Endpoints::CopySnapshot.build(context)
|
87
|
-
when :create_cache_cluster
|
88
|
-
Aws::ElastiCache::Endpoints::CreateCacheCluster.build(context)
|
89
|
-
when :create_cache_parameter_group
|
90
|
-
Aws::ElastiCache::Endpoints::CreateCacheParameterGroup.build(context)
|
91
|
-
when :create_cache_security_group
|
92
|
-
Aws::ElastiCache::Endpoints::CreateCacheSecurityGroup.build(context)
|
93
|
-
when :create_cache_subnet_group
|
94
|
-
Aws::ElastiCache::Endpoints::CreateCacheSubnetGroup.build(context)
|
95
|
-
when :create_global_replication_group
|
96
|
-
Aws::ElastiCache::Endpoints::CreateGlobalReplicationGroup.build(context)
|
97
|
-
when :create_replication_group
|
98
|
-
Aws::ElastiCache::Endpoints::CreateReplicationGroup.build(context)
|
99
|
-
when :create_serverless_cache
|
100
|
-
Aws::ElastiCache::Endpoints::CreateServerlessCache.build(context)
|
101
|
-
when :create_serverless_cache_snapshot
|
102
|
-
Aws::ElastiCache::Endpoints::CreateServerlessCacheSnapshot.build(context)
|
103
|
-
when :create_snapshot
|
104
|
-
Aws::ElastiCache::Endpoints::CreateSnapshot.build(context)
|
105
|
-
when :create_user
|
106
|
-
Aws::ElastiCache::Endpoints::CreateUser.build(context)
|
107
|
-
when :create_user_group
|
108
|
-
Aws::ElastiCache::Endpoints::CreateUserGroup.build(context)
|
109
|
-
when :decrease_node_groups_in_global_replication_group
|
110
|
-
Aws::ElastiCache::Endpoints::DecreaseNodeGroupsInGlobalReplicationGroup.build(context)
|
111
|
-
when :decrease_replica_count
|
112
|
-
Aws::ElastiCache::Endpoints::DecreaseReplicaCount.build(context)
|
113
|
-
when :delete_cache_cluster
|
114
|
-
Aws::ElastiCache::Endpoints::DeleteCacheCluster.build(context)
|
115
|
-
when :delete_cache_parameter_group
|
116
|
-
Aws::ElastiCache::Endpoints::DeleteCacheParameterGroup.build(context)
|
117
|
-
when :delete_cache_security_group
|
118
|
-
Aws::ElastiCache::Endpoints::DeleteCacheSecurityGroup.build(context)
|
119
|
-
when :delete_cache_subnet_group
|
120
|
-
Aws::ElastiCache::Endpoints::DeleteCacheSubnetGroup.build(context)
|
121
|
-
when :delete_global_replication_group
|
122
|
-
Aws::ElastiCache::Endpoints::DeleteGlobalReplicationGroup.build(context)
|
123
|
-
when :delete_replication_group
|
124
|
-
Aws::ElastiCache::Endpoints::DeleteReplicationGroup.build(context)
|
125
|
-
when :delete_serverless_cache
|
126
|
-
Aws::ElastiCache::Endpoints::DeleteServerlessCache.build(context)
|
127
|
-
when :delete_serverless_cache_snapshot
|
128
|
-
Aws::ElastiCache::Endpoints::DeleteServerlessCacheSnapshot.build(context)
|
129
|
-
when :delete_snapshot
|
130
|
-
Aws::ElastiCache::Endpoints::DeleteSnapshot.build(context)
|
131
|
-
when :delete_user
|
132
|
-
Aws::ElastiCache::Endpoints::DeleteUser.build(context)
|
133
|
-
when :delete_user_group
|
134
|
-
Aws::ElastiCache::Endpoints::DeleteUserGroup.build(context)
|
135
|
-
when :describe_cache_clusters
|
136
|
-
Aws::ElastiCache::Endpoints::DescribeCacheClusters.build(context)
|
137
|
-
when :describe_cache_engine_versions
|
138
|
-
Aws::ElastiCache::Endpoints::DescribeCacheEngineVersions.build(context)
|
139
|
-
when :describe_cache_parameter_groups
|
140
|
-
Aws::ElastiCache::Endpoints::DescribeCacheParameterGroups.build(context)
|
141
|
-
when :describe_cache_parameters
|
142
|
-
Aws::ElastiCache::Endpoints::DescribeCacheParameters.build(context)
|
143
|
-
when :describe_cache_security_groups
|
144
|
-
Aws::ElastiCache::Endpoints::DescribeCacheSecurityGroups.build(context)
|
145
|
-
when :describe_cache_subnet_groups
|
146
|
-
Aws::ElastiCache::Endpoints::DescribeCacheSubnetGroups.build(context)
|
147
|
-
when :describe_engine_default_parameters
|
148
|
-
Aws::ElastiCache::Endpoints::DescribeEngineDefaultParameters.build(context)
|
149
|
-
when :describe_events
|
150
|
-
Aws::ElastiCache::Endpoints::DescribeEvents.build(context)
|
151
|
-
when :describe_global_replication_groups
|
152
|
-
Aws::ElastiCache::Endpoints::DescribeGlobalReplicationGroups.build(context)
|
153
|
-
when :describe_replication_groups
|
154
|
-
Aws::ElastiCache::Endpoints::DescribeReplicationGroups.build(context)
|
155
|
-
when :describe_reserved_cache_nodes
|
156
|
-
Aws::ElastiCache::Endpoints::DescribeReservedCacheNodes.build(context)
|
157
|
-
when :describe_reserved_cache_nodes_offerings
|
158
|
-
Aws::ElastiCache::Endpoints::DescribeReservedCacheNodesOfferings.build(context)
|
159
|
-
when :describe_serverless_cache_snapshots
|
160
|
-
Aws::ElastiCache::Endpoints::DescribeServerlessCacheSnapshots.build(context)
|
161
|
-
when :describe_serverless_caches
|
162
|
-
Aws::ElastiCache::Endpoints::DescribeServerlessCaches.build(context)
|
163
|
-
when :describe_service_updates
|
164
|
-
Aws::ElastiCache::Endpoints::DescribeServiceUpdates.build(context)
|
165
|
-
when :describe_snapshots
|
166
|
-
Aws::ElastiCache::Endpoints::DescribeSnapshots.build(context)
|
167
|
-
when :describe_update_actions
|
168
|
-
Aws::ElastiCache::Endpoints::DescribeUpdateActions.build(context)
|
169
|
-
when :describe_user_groups
|
170
|
-
Aws::ElastiCache::Endpoints::DescribeUserGroups.build(context)
|
171
|
-
when :describe_users
|
172
|
-
Aws::ElastiCache::Endpoints::DescribeUsers.build(context)
|
173
|
-
when :disassociate_global_replication_group
|
174
|
-
Aws::ElastiCache::Endpoints::DisassociateGlobalReplicationGroup.build(context)
|
175
|
-
when :export_serverless_cache_snapshot
|
176
|
-
Aws::ElastiCache::Endpoints::ExportServerlessCacheSnapshot.build(context)
|
177
|
-
when :failover_global_replication_group
|
178
|
-
Aws::ElastiCache::Endpoints::FailoverGlobalReplicationGroup.build(context)
|
179
|
-
when :increase_node_groups_in_global_replication_group
|
180
|
-
Aws::ElastiCache::Endpoints::IncreaseNodeGroupsInGlobalReplicationGroup.build(context)
|
181
|
-
when :increase_replica_count
|
182
|
-
Aws::ElastiCache::Endpoints::IncreaseReplicaCount.build(context)
|
183
|
-
when :list_allowed_node_type_modifications
|
184
|
-
Aws::ElastiCache::Endpoints::ListAllowedNodeTypeModifications.build(context)
|
185
|
-
when :list_tags_for_resource
|
186
|
-
Aws::ElastiCache::Endpoints::ListTagsForResource.build(context)
|
187
|
-
when :modify_cache_cluster
|
188
|
-
Aws::ElastiCache::Endpoints::ModifyCacheCluster.build(context)
|
189
|
-
when :modify_cache_parameter_group
|
190
|
-
Aws::ElastiCache::Endpoints::ModifyCacheParameterGroup.build(context)
|
191
|
-
when :modify_cache_subnet_group
|
192
|
-
Aws::ElastiCache::Endpoints::ModifyCacheSubnetGroup.build(context)
|
193
|
-
when :modify_global_replication_group
|
194
|
-
Aws::ElastiCache::Endpoints::ModifyGlobalReplicationGroup.build(context)
|
195
|
-
when :modify_replication_group
|
196
|
-
Aws::ElastiCache::Endpoints::ModifyReplicationGroup.build(context)
|
197
|
-
when :modify_replication_group_shard_configuration
|
198
|
-
Aws::ElastiCache::Endpoints::ModifyReplicationGroupShardConfiguration.build(context)
|
199
|
-
when :modify_serverless_cache
|
200
|
-
Aws::ElastiCache::Endpoints::ModifyServerlessCache.build(context)
|
201
|
-
when :modify_user
|
202
|
-
Aws::ElastiCache::Endpoints::ModifyUser.build(context)
|
203
|
-
when :modify_user_group
|
204
|
-
Aws::ElastiCache::Endpoints::ModifyUserGroup.build(context)
|
205
|
-
when :purchase_reserved_cache_nodes_offering
|
206
|
-
Aws::ElastiCache::Endpoints::PurchaseReservedCacheNodesOffering.build(context)
|
207
|
-
when :rebalance_slots_in_global_replication_group
|
208
|
-
Aws::ElastiCache::Endpoints::RebalanceSlotsInGlobalReplicationGroup.build(context)
|
209
|
-
when :reboot_cache_cluster
|
210
|
-
Aws::ElastiCache::Endpoints::RebootCacheCluster.build(context)
|
211
|
-
when :remove_tags_from_resource
|
212
|
-
Aws::ElastiCache::Endpoints::RemoveTagsFromResource.build(context)
|
213
|
-
when :reset_cache_parameter_group
|
214
|
-
Aws::ElastiCache::Endpoints::ResetCacheParameterGroup.build(context)
|
215
|
-
when :revoke_cache_security_group_ingress
|
216
|
-
Aws::ElastiCache::Endpoints::RevokeCacheSecurityGroupIngress.build(context)
|
217
|
-
when :start_migration
|
218
|
-
Aws::ElastiCache::Endpoints::StartMigration.build(context)
|
219
|
-
when :test_failover
|
220
|
-
Aws::ElastiCache::Endpoints::TestFailover.build(context)
|
221
|
-
when :test_migration
|
222
|
-
Aws::ElastiCache::Endpoints::TestMigration.build(context)
|
223
|
-
end
|
224
|
-
end
|
225
70
|
end
|
226
71
|
|
227
72
|
def add_handlers(handlers, _config)
|