aws-sdk-redshift 1.126.0 → 1.128.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-redshift/client.rb +303 -5
- data/lib/aws-sdk-redshift/client_api.rb +145 -0
- data/lib/aws-sdk-redshift/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-redshift/endpoints.rb +2 -1461
- data/lib/aws-sdk-redshift/errors.rb +66 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +1 -272
- data/lib/aws-sdk-redshift/types.rb +293 -4
- data/lib/aws-sdk-redshift.rb +1 -1
- data/sig/client.rbs +92 -0
- data/sig/errors.rbs +12 -0
- data/sig/types.rbs +76 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30c1ec8b6e0dd8649a51a3846c8b1ee249ff47e07b4ca88f9d837ba02d82eeb7
|
4
|
+
data.tar.gz: f2c04ba2c97fa13627de08d3e545c5c4817595b284174573dc78928e67c98e6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a92671e33e37f24d3817d4ac4e42f9a3c56acb8af90c01e8edd3a0bc7022d4ce357c5d27a2249f2c08e504c59899b27129cf9f1d5a5b0ae11b61a9b3d2eef10
|
7
|
+
data.tar.gz: 7dddb4e2f765dc595de1dc44d72554649a4c42f9f7f1ccb8153946011d0f12327bfe6e6a5a1520ae9b4815efa03b6380635f11d2c5060ef0791e06fa606bb95e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.128.0 (2024-10-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.127.0 (2024-10-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release launches the CreateIntegration, DeleteIntegration, DescribeIntegrations and ModifyIntegration APIs to create and manage Amazon Redshift Zero-ETL Integrations.
|
13
|
+
|
4
14
|
1.126.0 (2024-10-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.128.0
|
@@ -1307,8 +1307,8 @@ module Aws::Redshift
|
|
1307
1307
|
# node types, go to [ Working with Clusters][1] in the *Amazon Redshift
|
1308
1308
|
# Cluster Management Guide*.
|
1309
1309
|
#
|
1310
|
-
# Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.
|
1311
|
-
# `ra3.4xlarge` \| `ra3.16xlarge`
|
1310
|
+
# Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.large` \|
|
1311
|
+
# `ra3.xlplus` \| `ra3.4xlarge` \| `ra3.16xlarge`
|
1312
1312
|
#
|
1313
1313
|
#
|
1314
1314
|
#
|
@@ -2580,6 +2580,104 @@ module Aws::Redshift
|
|
2580
2580
|
req.send_request(options)
|
2581
2581
|
end
|
2582
2582
|
|
2583
|
+
# Creates a zero-ETL integration with Amazon Redshift.
|
2584
|
+
#
|
2585
|
+
# @option params [required, String] :source_arn
|
2586
|
+
# The Amazon Resource Name (ARN) of the database to use as the source
|
2587
|
+
# for replication.
|
2588
|
+
#
|
2589
|
+
# @option params [required, String] :target_arn
|
2590
|
+
# The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse
|
2591
|
+
# to use as the target for replication.
|
2592
|
+
#
|
2593
|
+
# @option params [required, String] :integration_name
|
2594
|
+
# The name of the integration.
|
2595
|
+
#
|
2596
|
+
# @option params [String] :kms_key_id
|
2597
|
+
# An Key Management Service (KMS) key identifier for the key to use to
|
2598
|
+
# encrypt the integration. If you don't specify an encryption key, the
|
2599
|
+
# default Amazon Web Services owned key is used.
|
2600
|
+
#
|
2601
|
+
# @option params [Array<Types::Tag>] :tag_list
|
2602
|
+
# A list of tags.
|
2603
|
+
#
|
2604
|
+
# @option params [Hash<String,String>] :additional_encryption_context
|
2605
|
+
# An optional set of non-secret key–value pairs that contains additional
|
2606
|
+
# contextual information about the data. For more information, see
|
2607
|
+
# [Encryption context][1] in the *Amazon Web Services Key Management
|
2608
|
+
# Service Developer Guide*.
|
2609
|
+
#
|
2610
|
+
# You can only include this parameter if you specify the `KMSKeyId`
|
2611
|
+
# parameter.
|
2612
|
+
#
|
2613
|
+
#
|
2614
|
+
#
|
2615
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
2616
|
+
#
|
2617
|
+
# @option params [String] :description
|
2618
|
+
# A description of the integration.
|
2619
|
+
#
|
2620
|
+
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2621
|
+
#
|
2622
|
+
# * {Types::Integration#integration_arn #integration_arn} => String
|
2623
|
+
# * {Types::Integration#integration_name #integration_name} => String
|
2624
|
+
# * {Types::Integration#source_arn #source_arn} => String
|
2625
|
+
# * {Types::Integration#target_arn #target_arn} => String
|
2626
|
+
# * {Types::Integration#status #status} => String
|
2627
|
+
# * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
|
2628
|
+
# * {Types::Integration#create_time #create_time} => Time
|
2629
|
+
# * {Types::Integration#description #description} => String
|
2630
|
+
# * {Types::Integration#kms_key_id #kms_key_id} => String
|
2631
|
+
# * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash<String,String>
|
2632
|
+
# * {Types::Integration#tags #tags} => Array<Types::Tag>
|
2633
|
+
#
|
2634
|
+
# @example Request syntax with placeholder values
|
2635
|
+
#
|
2636
|
+
# resp = client.create_integration({
|
2637
|
+
# source_arn: "String", # required
|
2638
|
+
# target_arn: "String", # required
|
2639
|
+
# integration_name: "IntegrationName", # required
|
2640
|
+
# kms_key_id: "String",
|
2641
|
+
# tag_list: [
|
2642
|
+
# {
|
2643
|
+
# key: "String",
|
2644
|
+
# value: "String",
|
2645
|
+
# },
|
2646
|
+
# ],
|
2647
|
+
# additional_encryption_context: {
|
2648
|
+
# "String" => "String",
|
2649
|
+
# },
|
2650
|
+
# description: "IntegrationDescription",
|
2651
|
+
# })
|
2652
|
+
#
|
2653
|
+
# @example Response structure
|
2654
|
+
#
|
2655
|
+
# resp.integration_arn #=> String
|
2656
|
+
# resp.integration_name #=> String
|
2657
|
+
# resp.source_arn #=> String
|
2658
|
+
# resp.target_arn #=> String
|
2659
|
+
# resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
|
2660
|
+
# resp.errors #=> Array
|
2661
|
+
# resp.errors[0].error_code #=> String
|
2662
|
+
# resp.errors[0].error_message #=> String
|
2663
|
+
# resp.create_time #=> Time
|
2664
|
+
# resp.description #=> String
|
2665
|
+
# resp.kms_key_id #=> String
|
2666
|
+
# resp.additional_encryption_context #=> Hash
|
2667
|
+
# resp.additional_encryption_context["String"] #=> String
|
2668
|
+
# resp.tags #=> Array
|
2669
|
+
# resp.tags[0].key #=> String
|
2670
|
+
# resp.tags[0].value #=> String
|
2671
|
+
#
|
2672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateIntegration AWS API Documentation
|
2673
|
+
#
|
2674
|
+
# @overload create_integration(params = {})
|
2675
|
+
# @param [Hash] params ({})
|
2676
|
+
def create_integration(params = {}, options = {})
|
2677
|
+
req = build_request(:create_integration, params)
|
2678
|
+
req.send_request(options)
|
2679
|
+
end
|
2680
|
+
|
2583
2681
|
# Creates an Amazon Redshift application for use with IAM Identity
|
2584
2682
|
# Center.
|
2585
2683
|
#
|
@@ -3689,6 +3787,59 @@ module Aws::Redshift
|
|
3689
3787
|
req.send_request(options)
|
3690
3788
|
end
|
3691
3789
|
|
3790
|
+
# Deletes a zero-ETL integration with Amazon Redshift.
|
3791
|
+
#
|
3792
|
+
# @option params [required, String] :integration_arn
|
3793
|
+
# The unique identifier of the integration to delete.
|
3794
|
+
#
|
3795
|
+
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3796
|
+
#
|
3797
|
+
# * {Types::Integration#integration_arn #integration_arn} => String
|
3798
|
+
# * {Types::Integration#integration_name #integration_name} => String
|
3799
|
+
# * {Types::Integration#source_arn #source_arn} => String
|
3800
|
+
# * {Types::Integration#target_arn #target_arn} => String
|
3801
|
+
# * {Types::Integration#status #status} => String
|
3802
|
+
# * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
|
3803
|
+
# * {Types::Integration#create_time #create_time} => Time
|
3804
|
+
# * {Types::Integration#description #description} => String
|
3805
|
+
# * {Types::Integration#kms_key_id #kms_key_id} => String
|
3806
|
+
# * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash<String,String>
|
3807
|
+
# * {Types::Integration#tags #tags} => Array<Types::Tag>
|
3808
|
+
#
|
3809
|
+
# @example Request syntax with placeholder values
|
3810
|
+
#
|
3811
|
+
# resp = client.delete_integration({
|
3812
|
+
# integration_arn: "IntegrationArn", # required
|
3813
|
+
# })
|
3814
|
+
#
|
3815
|
+
# @example Response structure
|
3816
|
+
#
|
3817
|
+
# resp.integration_arn #=> String
|
3818
|
+
# resp.integration_name #=> String
|
3819
|
+
# resp.source_arn #=> String
|
3820
|
+
# resp.target_arn #=> String
|
3821
|
+
# resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
|
3822
|
+
# resp.errors #=> Array
|
3823
|
+
# resp.errors[0].error_code #=> String
|
3824
|
+
# resp.errors[0].error_message #=> String
|
3825
|
+
# resp.create_time #=> Time
|
3826
|
+
# resp.description #=> String
|
3827
|
+
# resp.kms_key_id #=> String
|
3828
|
+
# resp.additional_encryption_context #=> Hash
|
3829
|
+
# resp.additional_encryption_context["String"] #=> String
|
3830
|
+
# resp.tags #=> Array
|
3831
|
+
# resp.tags[0].key #=> String
|
3832
|
+
# resp.tags[0].value #=> String
|
3833
|
+
#
|
3834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteIntegration AWS API Documentation
|
3835
|
+
#
|
3836
|
+
# @overload delete_integration(params = {})
|
3837
|
+
# @param [Hash] params ({})
|
3838
|
+
def delete_integration(params = {}, options = {})
|
3839
|
+
req = build_request(:delete_integration, params)
|
3840
|
+
req.send_request(options)
|
3841
|
+
end
|
3842
|
+
|
3692
3843
|
# Deletes a partner integration from a cluster. Data can still flow to
|
3693
3844
|
# the cluster until the integration is deleted at the partner's
|
3694
3845
|
# website.
|
@@ -6041,6 +6192,82 @@ module Aws::Redshift
|
|
6041
6192
|
req.send_request(options)
|
6042
6193
|
end
|
6043
6194
|
|
6195
|
+
# Describes one or more zero-ETL integrations with Amazon Redshift.
|
6196
|
+
#
|
6197
|
+
# @option params [String] :integration_arn
|
6198
|
+
# The unique identifier of the integration.
|
6199
|
+
#
|
6200
|
+
# @option params [Integer] :max_records
|
6201
|
+
# The maximum number of response records to return in each call. If the
|
6202
|
+
# number of remaining response records exceeds the specified
|
6203
|
+
# `MaxRecords` value, a value is returned in a `marker` field of the
|
6204
|
+
# response. You can retrieve the next set of records by retrying the
|
6205
|
+
# command with the returned marker value.
|
6206
|
+
#
|
6207
|
+
# Default: `100`
|
6208
|
+
#
|
6209
|
+
# Constraints: minimum 20, maximum 100.
|
6210
|
+
#
|
6211
|
+
# @option params [String] :marker
|
6212
|
+
# An optional pagination token provided by a previous
|
6213
|
+
# `DescribeIntegrations` request. If this parameter is specified, the
|
6214
|
+
# response includes only records beyond the marker, up to the value
|
6215
|
+
# specified by `MaxRecords`.
|
6216
|
+
#
|
6217
|
+
# @option params [Array<Types::DescribeIntegrationsFilter>] :filters
|
6218
|
+
# A filter that specifies one or more resources to return.
|
6219
|
+
#
|
6220
|
+
# @return [Types::IntegrationsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6221
|
+
#
|
6222
|
+
# * {Types::IntegrationsMessage#marker #marker} => String
|
6223
|
+
# * {Types::IntegrationsMessage#integrations #integrations} => Array<Types::Integration>
|
6224
|
+
#
|
6225
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6226
|
+
#
|
6227
|
+
# @example Request syntax with placeholder values
|
6228
|
+
#
|
6229
|
+
# resp = client.describe_integrations({
|
6230
|
+
# integration_arn: "IntegrationArn",
|
6231
|
+
# max_records: 1,
|
6232
|
+
# marker: "String",
|
6233
|
+
# filters: [
|
6234
|
+
# {
|
6235
|
+
# name: "integration-arn", # required, accepts integration-arn, source-arn, source-types, status
|
6236
|
+
# values: ["String"], # required
|
6237
|
+
# },
|
6238
|
+
# ],
|
6239
|
+
# })
|
6240
|
+
#
|
6241
|
+
# @example Response structure
|
6242
|
+
#
|
6243
|
+
# resp.marker #=> String
|
6244
|
+
# resp.integrations #=> Array
|
6245
|
+
# resp.integrations[0].integration_arn #=> String
|
6246
|
+
# resp.integrations[0].integration_name #=> String
|
6247
|
+
# resp.integrations[0].source_arn #=> String
|
6248
|
+
# resp.integrations[0].target_arn #=> String
|
6249
|
+
# resp.integrations[0].status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
|
6250
|
+
# resp.integrations[0].errors #=> Array
|
6251
|
+
# resp.integrations[0].errors[0].error_code #=> String
|
6252
|
+
# resp.integrations[0].errors[0].error_message #=> String
|
6253
|
+
# resp.integrations[0].create_time #=> Time
|
6254
|
+
# resp.integrations[0].description #=> String
|
6255
|
+
# resp.integrations[0].kms_key_id #=> String
|
6256
|
+
# resp.integrations[0].additional_encryption_context #=> Hash
|
6257
|
+
# resp.integrations[0].additional_encryption_context["String"] #=> String
|
6258
|
+
# resp.integrations[0].tags #=> Array
|
6259
|
+
# resp.integrations[0].tags[0].key #=> String
|
6260
|
+
# resp.integrations[0].tags[0].value #=> String
|
6261
|
+
#
|
6262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeIntegrations AWS API Documentation
|
6263
|
+
#
|
6264
|
+
# @overload describe_integrations(params = {})
|
6265
|
+
# @param [Hash] params ({})
|
6266
|
+
def describe_integrations(params = {}, options = {})
|
6267
|
+
req = build_request(:describe_integrations, params)
|
6268
|
+
req.send_request(options)
|
6269
|
+
end
|
6270
|
+
|
6044
6271
|
# Describes whether information, such as queries and connection
|
6045
6272
|
# attempts, is being logged for the specified Amazon Redshift cluster.
|
6046
6273
|
#
|
@@ -7081,6 +7308,14 @@ module Aws::Redshift
|
|
7081
7308
|
#
|
7082
7309
|
# * Snapshot copy grant
|
7083
7310
|
#
|
7311
|
+
# * Integration (zero-ETL integration)
|
7312
|
+
#
|
7313
|
+
# <note markdown="1"> To describe the tags associated with an `integration`, don't
|
7314
|
+
# specify `ResourceType`, instead specify the `ResourceName` of the
|
7315
|
+
# integration.
|
7316
|
+
#
|
7317
|
+
# </note>
|
7318
|
+
#
|
7084
7319
|
# For more information about Amazon Redshift resource types and
|
7085
7320
|
# constructing ARNs, go to [Specifying Policy Elements: Actions,
|
7086
7321
|
# Effects, Resources, and Principals][1] in the Amazon Redshift Cluster
|
@@ -8580,8 +8815,8 @@ module Aws::Redshift
|
|
8580
8815
|
# in Amazon Redshift][1] in the *Amazon Redshift Cluster Management
|
8581
8816
|
# Guide*.
|
8582
8817
|
#
|
8583
|
-
# Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.
|
8584
|
-
# `ra3.4xlarge` \| `ra3.16xlarge`
|
8818
|
+
# Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.large` \|
|
8819
|
+
# `ra3.xlplus` \| `ra3.4xlarge` \| `ra3.16xlarge`
|
8585
8820
|
#
|
8586
8821
|
#
|
8587
8822
|
#
|
@@ -9996,6 +10231,67 @@ module Aws::Redshift
|
|
9996
10231
|
req.send_request(options)
|
9997
10232
|
end
|
9998
10233
|
|
10234
|
+
# Modifies a zero-ETL integration with Amazon Redshift.
|
10235
|
+
#
|
10236
|
+
# @option params [required, String] :integration_arn
|
10237
|
+
# The unique identifier of the integration to modify.
|
10238
|
+
#
|
10239
|
+
# @option params [String] :description
|
10240
|
+
# A new description for the integration.
|
10241
|
+
#
|
10242
|
+
# @option params [String] :integration_name
|
10243
|
+
# A new name for the integration.
|
10244
|
+
#
|
10245
|
+
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10246
|
+
#
|
10247
|
+
# * {Types::Integration#integration_arn #integration_arn} => String
|
10248
|
+
# * {Types::Integration#integration_name #integration_name} => String
|
10249
|
+
# * {Types::Integration#source_arn #source_arn} => String
|
10250
|
+
# * {Types::Integration#target_arn #target_arn} => String
|
10251
|
+
# * {Types::Integration#status #status} => String
|
10252
|
+
# * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
|
10253
|
+
# * {Types::Integration#create_time #create_time} => Time
|
10254
|
+
# * {Types::Integration#description #description} => String
|
10255
|
+
# * {Types::Integration#kms_key_id #kms_key_id} => String
|
10256
|
+
# * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash<String,String>
|
10257
|
+
# * {Types::Integration#tags #tags} => Array<Types::Tag>
|
10258
|
+
#
|
10259
|
+
# @example Request syntax with placeholder values
|
10260
|
+
#
|
10261
|
+
# resp = client.modify_integration({
|
10262
|
+
# integration_arn: "IntegrationArn", # required
|
10263
|
+
# description: "IntegrationDescription",
|
10264
|
+
# integration_name: "IntegrationName",
|
10265
|
+
# })
|
10266
|
+
#
|
10267
|
+
# @example Response structure
|
10268
|
+
#
|
10269
|
+
# resp.integration_arn #=> String
|
10270
|
+
# resp.integration_name #=> String
|
10271
|
+
# resp.source_arn #=> String
|
10272
|
+
# resp.target_arn #=> String
|
10273
|
+
# resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
|
10274
|
+
# resp.errors #=> Array
|
10275
|
+
# resp.errors[0].error_code #=> String
|
10276
|
+
# resp.errors[0].error_message #=> String
|
10277
|
+
# resp.create_time #=> Time
|
10278
|
+
# resp.description #=> String
|
10279
|
+
# resp.kms_key_id #=> String
|
10280
|
+
# resp.additional_encryption_context #=> Hash
|
10281
|
+
# resp.additional_encryption_context["String"] #=> String
|
10282
|
+
# resp.tags #=> Array
|
10283
|
+
# resp.tags[0].key #=> String
|
10284
|
+
# resp.tags[0].value #=> String
|
10285
|
+
#
|
10286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyIntegration AWS API Documentation
|
10287
|
+
#
|
10288
|
+
# @overload modify_integration(params = {})
|
10289
|
+
# @param [Hash] params ({})
|
10290
|
+
def modify_integration(params = {}, options = {})
|
10291
|
+
req = build_request(:modify_integration, params)
|
10292
|
+
req.send_request(options)
|
10293
|
+
end
|
10294
|
+
|
9999
10295
|
# Changes an existing Amazon Redshift IAM Identity Center application.
|
10000
10296
|
#
|
10001
10297
|
# @option params [required, String] :redshift_idc_application_arn
|
@@ -11033,6 +11329,8 @@ module Aws::Redshift
|
|
11033
11329
|
#
|
11034
11330
|
# * dc2.8xlarge
|
11035
11331
|
#
|
11332
|
+
# * ra3.large
|
11333
|
+
#
|
11036
11334
|
# * ra3.xlplus
|
11037
11335
|
#
|
11038
11336
|
# * ra3.4xlarge
|
@@ -12433,7 +12731,7 @@ module Aws::Redshift
|
|
12433
12731
|
tracer: tracer
|
12434
12732
|
)
|
12435
12733
|
context[:gem_name] = 'aws-sdk-redshift'
|
12436
|
-
context[:gem_version] = '1.
|
12734
|
+
context[:gem_version] = '1.128.0'
|
12437
12735
|
Seahorse::Client::Request.new(handlers, context)
|
12438
12736
|
end
|
12439
12737
|
|