aws-sdk-redshift 1.59.0 → 1.64.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +323 -8
- data/lib/aws-sdk-redshift/client_api.rb +143 -0
- data/lib/aws-sdk-redshift/errors.rb +22 -0
- data/lib/aws-sdk-redshift/types.rb +361 -10
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80216a41083def1206c647c9d62d775aacee7085d01a264ec4e84424b7c1a4d6
|
4
|
+
data.tar.gz: e0e95d17a17480bc1831118a6a948228e67993fb7d609ee93ba411b0e16e2b5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0618d9fd202b5fb6a45fcf793c15f737718bad4af39d7871b765704bf43875c87642e89db3a2b0b54107af858c15b385c6f9340be930974ae231b2a94e580266'
|
7
|
+
data.tar.gz: ffe5a34a1d0cad5af7ace157ac131bd095ae4445f1654ff0dfeffdf1c3c5cb1b83262c75ac68fab9a53ed147b785ffd60e03b702a8aafcdc31ee9e17020dac0c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.64.0 (2021-06-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added InvalidClusterStateFault to the DisableLogging API, thrown when calling the API on a non available cluster.
|
8
|
+
|
9
|
+
1.63.0 (2021-06-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added InvalidClusterStateFault to the ModifyAquaConfiguration API, thrown when calling the API on a non available cluster.
|
13
|
+
|
14
|
+
1.62.0 (2021-04-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Add operations: AddPartner, DescribePartners, DeletePartner, and UpdatePartnerStatus to support tracking integration status with data partners.
|
18
|
+
|
19
|
+
1.61.0 (2021-04-13)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Added support to enable AQUA in Amazon Redshift clusters.
|
23
|
+
|
24
|
+
1.60.0 (2021-04-09)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Add support for case sensitive table level restore
|
28
|
+
|
4
29
|
1.59.0 (2021-03-31)
|
5
30
|
------------------
|
6
31
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.0
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -378,6 +378,52 @@ module Aws::Redshift
|
|
378
378
|
req.send_request(options)
|
379
379
|
end
|
380
380
|
|
381
|
+
# Adds a partner integration to a cluster. This operation authorizes a
|
382
|
+
# partner to push status updates for the specified database. To complete
|
383
|
+
# the integration, you also set up the integration on the partner
|
384
|
+
# website.
|
385
|
+
#
|
386
|
+
# @option params [required, String] :account_id
|
387
|
+
# The AWS account ID that owns the cluster.
|
388
|
+
#
|
389
|
+
# @option params [required, String] :cluster_identifier
|
390
|
+
# The cluster identifier of the cluster that receives data from the
|
391
|
+
# partner.
|
392
|
+
#
|
393
|
+
# @option params [required, String] :database_name
|
394
|
+
# The name of the database that receives data from the partner.
|
395
|
+
#
|
396
|
+
# @option params [required, String] :partner_name
|
397
|
+
# The name of the partner that is authorized to send data.
|
398
|
+
#
|
399
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
400
|
+
#
|
401
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
402
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
403
|
+
#
|
404
|
+
# @example Request syntax with placeholder values
|
405
|
+
#
|
406
|
+
# resp = client.add_partner({
|
407
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
408
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
409
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
410
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
411
|
+
# })
|
412
|
+
#
|
413
|
+
# @example Response structure
|
414
|
+
#
|
415
|
+
# resp.database_name #=> String
|
416
|
+
# resp.partner_name #=> String
|
417
|
+
#
|
418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AddPartner AWS API Documentation
|
419
|
+
#
|
420
|
+
# @overload add_partner(params = {})
|
421
|
+
# @param [Hash] params ({})
|
422
|
+
def add_partner(params = {}, options = {})
|
423
|
+
req = build_request(:add_partner, params)
|
424
|
+
req.send_request(options)
|
425
|
+
end
|
426
|
+
|
381
427
|
# Adds an inbound (ingress) rule to an Amazon Redshift security group.
|
382
428
|
# Depending on whether the application accessing your cluster is running
|
383
429
|
# on the Internet or an Amazon EC2 instance, you can authorize inbound
|
@@ -1225,6 +1271,18 @@ module Aws::Redshift
|
|
1225
1271
|
# The option to enable relocation for an Amazon Redshift cluster between
|
1226
1272
|
# Availability Zones after the cluster is created.
|
1227
1273
|
#
|
1274
|
+
# @option params [String] :aqua_configuration_status
|
1275
|
+
# The value represents how the cluster is configured to use AQUA
|
1276
|
+
# (Advanced Query Accelerator) when it is created. Possible values
|
1277
|
+
# include the following.
|
1278
|
+
#
|
1279
|
+
# * enabled - Use AQUA if it is available for the current AWS Region and
|
1280
|
+
# Amazon Redshift node type.
|
1281
|
+
#
|
1282
|
+
# * disabled - Don't use AQUA.
|
1283
|
+
#
|
1284
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
1285
|
+
#
|
1228
1286
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1229
1287
|
#
|
1230
1288
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1268,6 +1326,7 @@ module Aws::Redshift
|
|
1268
1326
|
# maintenance_track_name: "String",
|
1269
1327
|
# snapshot_schedule_identifier: "String",
|
1270
1328
|
# availability_zone_relocation: false,
|
1329
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1271
1330
|
# })
|
1272
1331
|
#
|
1273
1332
|
# @example Response structure
|
@@ -1378,6 +1437,8 @@ module Aws::Redshift
|
|
1378
1437
|
# resp.cluster.availability_zone_relocation_status #=> String
|
1379
1438
|
# resp.cluster.cluster_namespace_arn #=> String
|
1380
1439
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
1440
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
1441
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
1381
1442
|
#
|
1382
1443
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
1383
1444
|
#
|
@@ -1963,12 +2024,12 @@ module Aws::Redshift
|
|
1963
2024
|
# addition to creating the HSM certificate, you must create an Amazon
|
1964
2025
|
# Redshift HSM configuration that provides a cluster the information
|
1965
2026
|
# needed to store and use encryption keys in the HSM. For more
|
1966
|
-
# information, go to [Hardware Security Modules][1] in the Amazon
|
1967
|
-
# Redshift Cluster Management Guide
|
2027
|
+
# information, go to [Hardware Security Modules][1] in the *Amazon
|
2028
|
+
# Redshift Cluster Management Guide*.
|
1968
2029
|
#
|
1969
2030
|
#
|
1970
2031
|
#
|
1971
|
-
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-
|
2032
|
+
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html#working-with-HSM
|
1972
2033
|
#
|
1973
2034
|
# @option params [required, String] :hsm_client_certificate_identifier
|
1974
2035
|
# The identifier to be assigned to the new HSM client certificate that
|
@@ -2658,6 +2719,8 @@ module Aws::Redshift
|
|
2658
2719
|
# resp.cluster.availability_zone_relocation_status #=> String
|
2659
2720
|
# resp.cluster.cluster_namespace_arn #=> String
|
2660
2721
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
2722
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
2723
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
2661
2724
|
#
|
2662
2725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
2663
2726
|
#
|
@@ -2966,6 +3029,51 @@ module Aws::Redshift
|
|
2966
3029
|
req.send_request(options)
|
2967
3030
|
end
|
2968
3031
|
|
3032
|
+
# Deletes a partner integration from a cluster. Data can still flow to
|
3033
|
+
# the cluster until the integration is deleted at the partner's
|
3034
|
+
# website.
|
3035
|
+
#
|
3036
|
+
# @option params [required, String] :account_id
|
3037
|
+
# The AWS account ID that owns the cluster.
|
3038
|
+
#
|
3039
|
+
# @option params [required, String] :cluster_identifier
|
3040
|
+
# The cluster identifier of the cluster that receives data from the
|
3041
|
+
# partner.
|
3042
|
+
#
|
3043
|
+
# @option params [required, String] :database_name
|
3044
|
+
# The name of the database that receives data from the partner.
|
3045
|
+
#
|
3046
|
+
# @option params [required, String] :partner_name
|
3047
|
+
# The name of the partner that is authorized to send data.
|
3048
|
+
#
|
3049
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3050
|
+
#
|
3051
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
3052
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
3053
|
+
#
|
3054
|
+
# @example Request syntax with placeholder values
|
3055
|
+
#
|
3056
|
+
# resp = client.delete_partner({
|
3057
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
3058
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
3059
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
3060
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
3061
|
+
# })
|
3062
|
+
#
|
3063
|
+
# @example Response structure
|
3064
|
+
#
|
3065
|
+
# resp.database_name #=> String
|
3066
|
+
# resp.partner_name #=> String
|
3067
|
+
#
|
3068
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeletePartner AWS API Documentation
|
3069
|
+
#
|
3070
|
+
# @overload delete_partner(params = {})
|
3071
|
+
# @param [Hash] params ({})
|
3072
|
+
def delete_partner(params = {}, options = {})
|
3073
|
+
req = build_request(:delete_partner, params)
|
3074
|
+
req.send_request(options)
|
3075
|
+
end
|
3076
|
+
|
2969
3077
|
# Deletes a scheduled action.
|
2970
3078
|
#
|
2971
3079
|
# @option params [required, String] :scheduled_action_name
|
@@ -4129,6 +4237,8 @@ module Aws::Redshift
|
|
4129
4237
|
# resp.clusters[0].availability_zone_relocation_status #=> String
|
4130
4238
|
# resp.clusters[0].cluster_namespace_arn #=> String
|
4131
4239
|
# resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
|
4240
|
+
# resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
4241
|
+
# resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
4132
4242
|
#
|
4133
4243
|
#
|
4134
4244
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4233,16 +4343,24 @@ module Aws::Redshift
|
|
4233
4343
|
# The virtual private cloud (VPC) identifier with access to the cluster.
|
4234
4344
|
#
|
4235
4345
|
# @option params [Integer] :max_records
|
4236
|
-
#
|
4346
|
+
# The maximum number of records to include in the response. If more
|
4347
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4348
|
+
# token called a `Marker` is included in the response so that the
|
4349
|
+
# remaining results can be retrieved.
|
4237
4350
|
#
|
4238
4351
|
# @option params [String] :marker
|
4239
|
-
#
|
4352
|
+
# An optional pagination token provided by a previous
|
4353
|
+
# `DescribeEndpointAccess` request. If this parameter is specified, the
|
4354
|
+
# response includes only records beyond the marker, up to the value
|
4355
|
+
# specified by the `MaxRecords` parameter.
|
4240
4356
|
#
|
4241
4357
|
# @return [Types::EndpointAccessList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4242
4358
|
#
|
4243
4359
|
# * {Types::EndpointAccessList#endpoint_access_list #endpoint_access_list} => Array<Types::EndpointAccess>
|
4244
4360
|
# * {Types::EndpointAccessList#marker #marker} => String
|
4245
4361
|
#
|
4362
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4363
|
+
#
|
4246
4364
|
# @example Request syntax with placeholder values
|
4247
4365
|
#
|
4248
4366
|
# resp = client.describe_endpoint_access({
|
@@ -4303,16 +4421,24 @@ module Aws::Redshift
|
|
4303
4421
|
# authorization from a grantor point of view.
|
4304
4422
|
#
|
4305
4423
|
# @option params [Integer] :max_records
|
4306
|
-
#
|
4424
|
+
# The maximum number of records to include in the response. If more
|
4425
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4426
|
+
# token called a `Marker` is included in the response so that the
|
4427
|
+
# remaining results can be retrieved.
|
4307
4428
|
#
|
4308
4429
|
# @option params [String] :marker
|
4309
|
-
#
|
4430
|
+
# An optional pagination token provided by a previous
|
4431
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
4432
|
+
# specified, the response includes only records beyond the marker, up to
|
4433
|
+
# the value specified by the `MaxRecords` parameter.
|
4310
4434
|
#
|
4311
4435
|
# @return [Types::EndpointAuthorizationList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4312
4436
|
#
|
4313
4437
|
# * {Types::EndpointAuthorizationList#endpoint_authorization_list #endpoint_authorization_list} => Array<Types::EndpointAuthorization>
|
4314
4438
|
# * {Types::EndpointAuthorizationList#marker #marker} => String
|
4315
4439
|
#
|
4440
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4441
|
+
#
|
4316
4442
|
# @example Request syntax with placeholder values
|
4317
4443
|
#
|
4318
4444
|
# resp = client.describe_endpoint_authorization({
|
@@ -5036,6 +5162,57 @@ module Aws::Redshift
|
|
5036
5162
|
req.send_request(options)
|
5037
5163
|
end
|
5038
5164
|
|
5165
|
+
# Returns information about the partner integrations defined for a
|
5166
|
+
# cluster.
|
5167
|
+
#
|
5168
|
+
# @option params [required, String] :account_id
|
5169
|
+
# The AWS account ID that owns the cluster.
|
5170
|
+
#
|
5171
|
+
# @option params [required, String] :cluster_identifier
|
5172
|
+
# The cluster identifier of the cluster whose partner integration is
|
5173
|
+
# being described.
|
5174
|
+
#
|
5175
|
+
# @option params [String] :database_name
|
5176
|
+
# The name of the database whose partner integration is being described.
|
5177
|
+
# If database name is not specified, then all databases in the cluster
|
5178
|
+
# are described.
|
5179
|
+
#
|
5180
|
+
# @option params [String] :partner_name
|
5181
|
+
# The name of the partner that is being described. If partner name is
|
5182
|
+
# not specified, then all partner integrations are described.
|
5183
|
+
#
|
5184
|
+
# @return [Types::DescribePartnersOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5185
|
+
#
|
5186
|
+
# * {Types::DescribePartnersOutputMessage#partner_integration_info_list #partner_integration_info_list} => Array<Types::PartnerIntegrationInfo>
|
5187
|
+
#
|
5188
|
+
# @example Request syntax with placeholder values
|
5189
|
+
#
|
5190
|
+
# resp = client.describe_partners({
|
5191
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
5192
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
5193
|
+
# database_name: "PartnerIntegrationDatabaseName",
|
5194
|
+
# partner_name: "PartnerIntegrationPartnerName",
|
5195
|
+
# })
|
5196
|
+
#
|
5197
|
+
# @example Response structure
|
5198
|
+
#
|
5199
|
+
# resp.partner_integration_info_list #=> Array
|
5200
|
+
# resp.partner_integration_info_list[0].database_name #=> String
|
5201
|
+
# resp.partner_integration_info_list[0].partner_name #=> String
|
5202
|
+
# resp.partner_integration_info_list[0].status #=> String, one of "Active", "Inactive", "RuntimeFailure", "ConnectionFailure"
|
5203
|
+
# resp.partner_integration_info_list[0].status_message #=> String
|
5204
|
+
# resp.partner_integration_info_list[0].created_at #=> Time
|
5205
|
+
# resp.partner_integration_info_list[0].updated_at #=> Time
|
5206
|
+
#
|
5207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartners AWS API Documentation
|
5208
|
+
#
|
5209
|
+
# @overload describe_partners(params = {})
|
5210
|
+
# @param [Hash] params ({})
|
5211
|
+
def describe_partners(params = {}, options = {})
|
5212
|
+
req = build_request(:describe_partners, params)
|
5213
|
+
req.send_request(options)
|
5214
|
+
end
|
5215
|
+
|
5039
5216
|
# Returns a list of the available reserved node offerings by Amazon
|
5040
5217
|
# Redshift with their descriptions including the node type, the fixed
|
5041
5218
|
# and recurring costs of reserving the node and duration the node will
|
@@ -6024,6 +6201,8 @@ module Aws::Redshift
|
|
6024
6201
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6025
6202
|
# resp.cluster.cluster_namespace_arn #=> String
|
6026
6203
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6204
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6205
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6027
6206
|
#
|
6028
6207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
6029
6208
|
#
|
@@ -6269,6 +6448,8 @@ module Aws::Redshift
|
|
6269
6448
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6270
6449
|
# resp.cluster.cluster_namespace_arn #=> String
|
6271
6450
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6451
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6452
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6272
6453
|
#
|
6273
6454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
6274
6455
|
#
|
@@ -6494,6 +6675,47 @@ module Aws::Redshift
|
|
6494
6675
|
req.send_request(options)
|
6495
6676
|
end
|
6496
6677
|
|
6678
|
+
# Modifies whether a cluster can use AQUA (Advanced Query Accelerator).
|
6679
|
+
#
|
6680
|
+
# @option params [required, String] :cluster_identifier
|
6681
|
+
# The identifier of the cluster to be modified.
|
6682
|
+
#
|
6683
|
+
# @option params [String] :aqua_configuration_status
|
6684
|
+
# The new value of AQUA configuration status. Possible values include
|
6685
|
+
# the following.
|
6686
|
+
#
|
6687
|
+
# * enabled - Use AQUA if it is available for the current AWS Region and
|
6688
|
+
# Amazon Redshift node type.
|
6689
|
+
#
|
6690
|
+
# * disabled - Don't use AQUA.
|
6691
|
+
#
|
6692
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
6693
|
+
#
|
6694
|
+
# @return [Types::ModifyAquaOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6695
|
+
#
|
6696
|
+
# * {Types::ModifyAquaOutputMessage#aqua_configuration #aqua_configuration} => Types::AquaConfiguration
|
6697
|
+
#
|
6698
|
+
# @example Request syntax with placeholder values
|
6699
|
+
#
|
6700
|
+
# resp = client.modify_aqua_configuration({
|
6701
|
+
# cluster_identifier: "String", # required
|
6702
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
6703
|
+
# })
|
6704
|
+
#
|
6705
|
+
# @example Response structure
|
6706
|
+
#
|
6707
|
+
# resp.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6708
|
+
# resp.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6709
|
+
#
|
6710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaConfiguration AWS API Documentation
|
6711
|
+
#
|
6712
|
+
# @overload modify_aqua_configuration(params = {})
|
6713
|
+
# @param [Hash] params ({})
|
6714
|
+
def modify_aqua_configuration(params = {}, options = {})
|
6715
|
+
req = build_request(:modify_aqua_configuration, params)
|
6716
|
+
req.send_request(options)
|
6717
|
+
end
|
6718
|
+
|
6497
6719
|
# Modifies the settings for a cluster.
|
6498
6720
|
#
|
6499
6721
|
# You can also change node type and the number of nodes to scale up or
|
@@ -6917,6 +7139,8 @@ module Aws::Redshift
|
|
6917
7139
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6918
7140
|
# resp.cluster.cluster_namespace_arn #=> String
|
6919
7141
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7142
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7143
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6920
7144
|
#
|
6921
7145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
6922
7146
|
#
|
@@ -7059,6 +7283,8 @@ module Aws::Redshift
|
|
7059
7283
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7060
7284
|
# resp.cluster.cluster_namespace_arn #=> String
|
7061
7285
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7286
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7287
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7062
7288
|
#
|
7063
7289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
7064
7290
|
#
|
@@ -7208,6 +7434,8 @@ module Aws::Redshift
|
|
7208
7434
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7209
7435
|
# resp.cluster.cluster_namespace_arn #=> String
|
7210
7436
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7437
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7438
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7211
7439
|
#
|
7212
7440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
7213
7441
|
#
|
@@ -7366,6 +7594,8 @@ module Aws::Redshift
|
|
7366
7594
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7367
7595
|
# resp.cluster.cluster_namespace_arn #=> String
|
7368
7596
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7597
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7598
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7369
7599
|
#
|
7370
7600
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
7371
7601
|
#
|
@@ -8019,6 +8249,8 @@ module Aws::Redshift
|
|
8019
8249
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8020
8250
|
# resp.cluster.cluster_namespace_arn #=> String
|
8021
8251
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8252
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8253
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8022
8254
|
#
|
8023
8255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
8024
8256
|
#
|
@@ -8260,6 +8492,8 @@ module Aws::Redshift
|
|
8260
8492
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8261
8493
|
# resp.cluster.cluster_namespace_arn #=> String
|
8262
8494
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8495
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8496
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8263
8497
|
#
|
8264
8498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
8265
8499
|
#
|
@@ -8464,6 +8698,8 @@ module Aws::Redshift
|
|
8464
8698
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8465
8699
|
# resp.cluster.cluster_namespace_arn #=> String
|
8466
8700
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8701
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8702
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8467
8703
|
#
|
8468
8704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
8469
8705
|
#
|
@@ -8707,6 +8943,8 @@ module Aws::Redshift
|
|
8707
8943
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8708
8944
|
# resp.cluster.cluster_namespace_arn #=> String
|
8709
8945
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8946
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8947
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8710
8948
|
#
|
8711
8949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
8712
8950
|
#
|
@@ -8959,6 +9197,18 @@ module Aws::Redshift
|
|
8959
9197
|
# The option to enable relocation for an Amazon Redshift cluster between
|
8960
9198
|
# Availability Zones after the cluster is restored.
|
8961
9199
|
#
|
9200
|
+
# @option params [String] :aqua_configuration_status
|
9201
|
+
# The value represents how the cluster is configured to use AQUA
|
9202
|
+
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9203
|
+
# values include the following.
|
9204
|
+
#
|
9205
|
+
# * enabled - Use AQUA if it is available for the current AWS Region and
|
9206
|
+
# Amazon Redshift node type.
|
9207
|
+
#
|
9208
|
+
# * disabled - Don't use AQUA.
|
9209
|
+
#
|
9210
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
9211
|
+
#
|
8962
9212
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8963
9213
|
#
|
8964
9214
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
@@ -8993,6 +9243,7 @@ module Aws::Redshift
|
|
8993
9243
|
# snapshot_schedule_identifier: "String",
|
8994
9244
|
# number_of_nodes: 1,
|
8995
9245
|
# availability_zone_relocation: false,
|
9246
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
8996
9247
|
# })
|
8997
9248
|
#
|
8998
9249
|
# @example Response structure
|
@@ -9103,6 +9354,8 @@ module Aws::Redshift
|
|
9103
9354
|
# resp.cluster.availability_zone_relocation_status #=> String
|
9104
9355
|
# resp.cluster.cluster_namespace_arn #=> String
|
9105
9356
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9357
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9358
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9106
9359
|
#
|
9107
9360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
9108
9361
|
#
|
@@ -9157,6 +9410,11 @@ module Aws::Redshift
|
|
9157
9410
|
# @option params [required, String] :new_table_name
|
9158
9411
|
# The name of the table to create as a result of the current request.
|
9159
9412
|
#
|
9413
|
+
# @option params [Boolean] :enable_case_sensitive_identifier
|
9414
|
+
# Indicates whether name identifiers for database, schema, and table are
|
9415
|
+
# case sensitive. If `true`, the names are case sensitive. If `false`
|
9416
|
+
# (default), the names are not case sensitive.
|
9417
|
+
#
|
9160
9418
|
# @return [Types::RestoreTableFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9161
9419
|
#
|
9162
9420
|
# * {Types::RestoreTableFromClusterSnapshotResult#table_restore_status #table_restore_status} => Types::TableRestoreStatus
|
@@ -9172,6 +9430,7 @@ module Aws::Redshift
|
|
9172
9430
|
# target_database_name: "String",
|
9173
9431
|
# target_schema_name: "String",
|
9174
9432
|
# new_table_name: "String", # required
|
9433
|
+
# enable_case_sensitive_identifier: false,
|
9175
9434
|
# })
|
9176
9435
|
#
|
9177
9436
|
# @example Response structure
|
@@ -9323,6 +9582,8 @@ module Aws::Redshift
|
|
9323
9582
|
# resp.cluster.availability_zone_relocation_status #=> String
|
9324
9583
|
# resp.cluster.cluster_namespace_arn #=> String
|
9325
9584
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9585
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9586
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9326
9587
|
#
|
9327
9588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
9328
9589
|
#
|
@@ -9685,6 +9946,8 @@ module Aws::Redshift
|
|
9685
9946
|
# resp.cluster.availability_zone_relocation_status #=> String
|
9686
9947
|
# resp.cluster.cluster_namespace_arn #=> String
|
9687
9948
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9949
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9950
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9688
9951
|
#
|
9689
9952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
9690
9953
|
#
|
@@ -9695,6 +9958,58 @@ module Aws::Redshift
|
|
9695
9958
|
req.send_request(options)
|
9696
9959
|
end
|
9697
9960
|
|
9961
|
+
# Updates the status of a partner integration.
|
9962
|
+
#
|
9963
|
+
# @option params [required, String] :account_id
|
9964
|
+
# The AWS account ID that owns the cluster.
|
9965
|
+
#
|
9966
|
+
# @option params [required, String] :cluster_identifier
|
9967
|
+
# The cluster identifier of the cluster whose partner integration status
|
9968
|
+
# is being updated.
|
9969
|
+
#
|
9970
|
+
# @option params [required, String] :database_name
|
9971
|
+
# The name of the database whose partner integration status is being
|
9972
|
+
# updated.
|
9973
|
+
#
|
9974
|
+
# @option params [required, String] :partner_name
|
9975
|
+
# The name of the partner whose integration status is being updated.
|
9976
|
+
#
|
9977
|
+
# @option params [required, String] :status
|
9978
|
+
# The value of the updated status.
|
9979
|
+
#
|
9980
|
+
# @option params [String] :status_message
|
9981
|
+
# The status message provided by the partner.
|
9982
|
+
#
|
9983
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9984
|
+
#
|
9985
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
9986
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
9987
|
+
#
|
9988
|
+
# @example Request syntax with placeholder values
|
9989
|
+
#
|
9990
|
+
# resp = client.update_partner_status({
|
9991
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
9992
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
9993
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
9994
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
9995
|
+
# status: "Active", # required, accepts Active, Inactive, RuntimeFailure, ConnectionFailure
|
9996
|
+
# status_message: "PartnerIntegrationStatusMessage",
|
9997
|
+
# })
|
9998
|
+
#
|
9999
|
+
# @example Response structure
|
10000
|
+
#
|
10001
|
+
# resp.database_name #=> String
|
10002
|
+
# resp.partner_name #=> String
|
10003
|
+
#
|
10004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UpdatePartnerStatus AWS API Documentation
|
10005
|
+
#
|
10006
|
+
# @overload update_partner_status(params = {})
|
10007
|
+
# @param [Hash] params ({})
|
10008
|
+
def update_partner_status(params = {}, options = {})
|
10009
|
+
req = build_request(:update_partner_status, params)
|
10010
|
+
req.send_request(options)
|
10011
|
+
end
|
10012
|
+
|
9698
10013
|
# @!endgroup
|
9699
10014
|
|
9700
10015
|
# @param params ({})
|
@@ -9708,7 +10023,7 @@ module Aws::Redshift
|
|
9708
10023
|
params: params,
|
9709
10024
|
config: config)
|
9710
10025
|
context[:gem_name] = 'aws-sdk-redshift'
|
9711
|
-
context[:gem_version] = '1.
|
10026
|
+
context[:gem_version] = '1.64.0'
|
9712
10027
|
Seahorse::Client::Request.new(handlers, context)
|
9713
10028
|
end
|
9714
10029
|
|