aws-sdk-redshift 1.126.0 → 1.127.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -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/endpoints.rb +44 -0
- data/lib/aws-sdk-redshift/errors.rb +66 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +8 -0
- 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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 828aa210ed64086dfd86d117d2e0652c50a1c6d8a210dde7dcdbaea6a7df23bd
|
4
|
+
data.tar.gz: 77a264ed145c50350a8e3db7f9c40d3b37d9e13d4eb1e05e990cbe74390f3e3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac788939ed224ca710909c43a439d91f1cc0dd143ad46dbf6aad9a8850d1cd84c1ba31d2742bb80695c97fd4e745fa79b33e018a407bc08a022aef5136f34232
|
7
|
+
data.tar.gz: 70f43df08bbd0e82620c835076cd1455a56929df84a469316c59ad3663027b13b3d1d138073b88448220e09224a05427c4d81b36c6b1bad941487cb81612d354
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.127.0 (2024-10-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release launches the CreateIntegration, DeleteIntegration, DescribeIntegrations and ModifyIntegration APIs to create and manage Amazon Redshift Zero-ETL Integrations.
|
8
|
+
|
4
9
|
1.126.0 (2024-10-07)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.127.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.127.0'
|
12437
12735
|
Seahorse::Client::Request.new(handlers, context)
|
12438
12736
|
end
|
12439
12737
|
|