aws-sdk-redshift 1.103.0 → 1.105.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 +267 -1
- data/lib/aws-sdk-redshift/client_api.rb +166 -0
- data/lib/aws-sdk-redshift/endpoints.rb +56 -0
- data/lib/aws-sdk-redshift/errors.rb +44 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-redshift/types.rb +369 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c9d18bd70376c6a7c995f73c90c97d9ba061151cfd06716a93798deddfeb03f
|
4
|
+
data.tar.gz: 5dbe5cf1c438a6f6701810e0413fb235d76c9103873a44a01553eff5991e59a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3acc24c2b4b66a76c22d2e0658e5cee817bf5444ffe0c0d880cf8730c1a338622db91f51add50f09f5f243acdd40c8d9a48911f198715de176262db870b0041e
|
7
|
+
data.tar.gz: 94035257a0b1d87fbb12fc079b6c17699a49b160debb83ef9f0af6a1d9a3ee25d9711f28c8945c2b4b32dc6d5a3e432e3f0a6655407bc39b008a1677bfae638c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.105.0 (2023-11-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.104.0 (2023-11-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updated SDK for Amazon Redshift, which you can use to configure a connection with IAM Identity Center to manage access to databases. With these, you can create a connection through a managed application. You can also change a managed application, delete it, or get information about an existing one.
|
13
|
+
|
4
14
|
1.103.0 (2023-11-15)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.105.0
|
@@ -1537,6 +1537,10 @@ module Aws::Redshift
|
|
1537
1537
|
# If true, Amazon Redshift will deploy the cluster in two Availability
|
1538
1538
|
# Zones (AZ).
|
1539
1539
|
#
|
1540
|
+
# @option params [String] :redshift_idc_application_arn
|
1541
|
+
# The Amazon resource name (ARN) of the Amazon Redshift IAM Identity
|
1542
|
+
# Center application.
|
1543
|
+
#
|
1540
1544
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1541
1545
|
#
|
1542
1546
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1587,6 +1591,7 @@ module Aws::Redshift
|
|
1587
1591
|
# master_password_secret_kms_key_id: "String",
|
1588
1592
|
# ip_address_type: "String",
|
1589
1593
|
# multi_az: false,
|
1594
|
+
# redshift_idc_application_arn: "String",
|
1590
1595
|
# })
|
1591
1596
|
#
|
1592
1597
|
# @example Response structure
|
@@ -2488,6 +2493,96 @@ module Aws::Redshift
|
|
2488
2493
|
req.send_request(options)
|
2489
2494
|
end
|
2490
2495
|
|
2496
|
+
# Creates an Amazon Redshift application for use with IAM Identity
|
2497
|
+
# Center.
|
2498
|
+
#
|
2499
|
+
# @option params [required, String] :idc_instance_arn
|
2500
|
+
# The Amazon resource name (ARN) of the IAM Identity Center instance
|
2501
|
+
# where Amazon Redshift creates a new managed application.
|
2502
|
+
#
|
2503
|
+
# @option params [required, String] :redshift_idc_application_name
|
2504
|
+
# The name of the Redshift application in IAM Identity Center.
|
2505
|
+
#
|
2506
|
+
# @option params [String] :identity_namespace
|
2507
|
+
# The namespace for the Amazon Redshift IAM Identity Center application
|
2508
|
+
# instance. It determines which managed application verifies the
|
2509
|
+
# connection token.
|
2510
|
+
#
|
2511
|
+
# @option params [required, String] :idc_display_name
|
2512
|
+
# The display name for the Amazon Redshift IAM Identity Center
|
2513
|
+
# application instance. It appears in the console.
|
2514
|
+
#
|
2515
|
+
# @option params [required, String] :iam_role_arn
|
2516
|
+
# The IAM role ARN for the Amazon Redshift IAM Identity Center
|
2517
|
+
# application instance. It has the required permissions to be assumed
|
2518
|
+
# and invoke the IDC Identity Center API.
|
2519
|
+
#
|
2520
|
+
# @option params [Array<Types::AuthorizedTokenIssuer>] :authorized_token_issuer_list
|
2521
|
+
# The token issuer list for the Amazon Redshift IAM Identity Center
|
2522
|
+
# application instance.
|
2523
|
+
#
|
2524
|
+
# @option params [Array<Types::ServiceIntegrationsUnion>] :service_integrations
|
2525
|
+
# A collection of service integrations for the Redshift IAM Identity
|
2526
|
+
# Center application.
|
2527
|
+
#
|
2528
|
+
# @return [Types::CreateRedshiftIdcApplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2529
|
+
#
|
2530
|
+
# * {Types::CreateRedshiftIdcApplicationResult#redshift_idc_application #redshift_idc_application} => Types::RedshiftIdcApplication
|
2531
|
+
#
|
2532
|
+
# @example Request syntax with placeholder values
|
2533
|
+
#
|
2534
|
+
# resp = client.create_redshift_idc_application({
|
2535
|
+
# idc_instance_arn: "String", # required
|
2536
|
+
# redshift_idc_application_name: "RedshiftIdcApplicationName", # required
|
2537
|
+
# identity_namespace: "IdentityNamespaceString",
|
2538
|
+
# idc_display_name: "IdcDisplayNameString", # required
|
2539
|
+
# iam_role_arn: "String", # required
|
2540
|
+
# authorized_token_issuer_list: [
|
2541
|
+
# {
|
2542
|
+
# trusted_token_issuer_arn: "String",
|
2543
|
+
# authorized_audiences_list: ["String"],
|
2544
|
+
# },
|
2545
|
+
# ],
|
2546
|
+
# service_integrations: [
|
2547
|
+
# {
|
2548
|
+
# lake_formation: [
|
2549
|
+
# {
|
2550
|
+
# lake_formation_query: {
|
2551
|
+
# authorization: "Enabled", # required, accepts Enabled, Disabled
|
2552
|
+
# },
|
2553
|
+
# },
|
2554
|
+
# ],
|
2555
|
+
# },
|
2556
|
+
# ],
|
2557
|
+
# })
|
2558
|
+
#
|
2559
|
+
# @example Response structure
|
2560
|
+
#
|
2561
|
+
# resp.redshift_idc_application.idc_instance_arn #=> String
|
2562
|
+
# resp.redshift_idc_application.redshift_idc_application_name #=> String
|
2563
|
+
# resp.redshift_idc_application.redshift_idc_application_arn #=> String
|
2564
|
+
# resp.redshift_idc_application.identity_namespace #=> String
|
2565
|
+
# resp.redshift_idc_application.idc_display_name #=> String
|
2566
|
+
# resp.redshift_idc_application.iam_role_arn #=> String
|
2567
|
+
# resp.redshift_idc_application.idc_managed_application_arn #=> String
|
2568
|
+
# resp.redshift_idc_application.idc_onboard_status #=> String
|
2569
|
+
# resp.redshift_idc_application.authorized_token_issuer_list #=> Array
|
2570
|
+
# resp.redshift_idc_application.authorized_token_issuer_list[0].trusted_token_issuer_arn #=> String
|
2571
|
+
# resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list #=> Array
|
2572
|
+
# resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list[0] #=> String
|
2573
|
+
# resp.redshift_idc_application.service_integrations #=> Array
|
2574
|
+
# resp.redshift_idc_application.service_integrations[0].lake_formation #=> Array
|
2575
|
+
# resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
|
2576
|
+
#
|
2577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateRedshiftIdcApplication AWS API Documentation
|
2578
|
+
#
|
2579
|
+
# @overload create_redshift_idc_application(params = {})
|
2580
|
+
# @param [Hash] params ({})
|
2581
|
+
def create_redshift_idc_application(params = {}, options = {})
|
2582
|
+
req = build_request(:create_redshift_idc_application, params)
|
2583
|
+
req.send_request(options)
|
2584
|
+
end
|
2585
|
+
|
2491
2586
|
# Creates a scheduled action. A scheduled action contains a schedule and
|
2492
2587
|
# an Amazon Redshift API action. For example, you can create a schedule
|
2493
2588
|
# of when to run the `ResizeCluster` API operation.
|
@@ -3549,6 +3644,28 @@ module Aws::Redshift
|
|
3549
3644
|
req.send_request(options)
|
3550
3645
|
end
|
3551
3646
|
|
3647
|
+
# Deletes an Amazon Redshift IAM Identity Center application.
|
3648
|
+
#
|
3649
|
+
# @option params [required, String] :redshift_idc_application_arn
|
3650
|
+
# The ARN for a deleted Amazon Redshift IAM Identity Center application.
|
3651
|
+
#
|
3652
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3653
|
+
#
|
3654
|
+
# @example Request syntax with placeholder values
|
3655
|
+
#
|
3656
|
+
# resp = client.delete_redshift_idc_application({
|
3657
|
+
# redshift_idc_application_arn: "String", # required
|
3658
|
+
# })
|
3659
|
+
#
|
3660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteRedshiftIdcApplication AWS API Documentation
|
3661
|
+
#
|
3662
|
+
# @overload delete_redshift_idc_application(params = {})
|
3663
|
+
# @param [Hash] params ({})
|
3664
|
+
def delete_redshift_idc_application(params = {}, options = {})
|
3665
|
+
req = build_request(:delete_redshift_idc_application, params)
|
3666
|
+
req.send_request(options)
|
3667
|
+
end
|
3668
|
+
|
3552
3669
|
# Deletes the resource policy for a specified resource.
|
3553
3670
|
#
|
3554
3671
|
# @option params [required, String] :resource_arn
|
@@ -6103,6 +6220,71 @@ module Aws::Redshift
|
|
6103
6220
|
req.send_request(options)
|
6104
6221
|
end
|
6105
6222
|
|
6223
|
+
# Lists the Amazon Redshift IAM Identity Center applications.
|
6224
|
+
#
|
6225
|
+
# @option params [String] :redshift_idc_application_arn
|
6226
|
+
# The ARN for the Redshift application that integrates with IAM Identity
|
6227
|
+
# Center.
|
6228
|
+
#
|
6229
|
+
# @option params [Integer] :max_records
|
6230
|
+
# The maximum number of response records to return in each call. If the
|
6231
|
+
# number of remaining response records exceeds the specified MaxRecords
|
6232
|
+
# value, a value is returned in a marker field of the response. You can
|
6233
|
+
# retrieve the next set of records by retrying the command with the
|
6234
|
+
# returned marker value.
|
6235
|
+
#
|
6236
|
+
# @option params [String] :marker
|
6237
|
+
# A value that indicates the starting point for the next set of response
|
6238
|
+
# records in a subsequent request. If a value is returned in a response,
|
6239
|
+
# you can retrieve the next set of records by providing this returned
|
6240
|
+
# marker value in the Marker parameter and retrying the command. If the
|
6241
|
+
# Marker field is empty, all response records have been retrieved for
|
6242
|
+
# the request.
|
6243
|
+
#
|
6244
|
+
# @return [Types::DescribeRedshiftIdcApplicationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6245
|
+
#
|
6246
|
+
# * {Types::DescribeRedshiftIdcApplicationsResult#redshift_idc_applications #redshift_idc_applications} => Array<Types::RedshiftIdcApplication>
|
6247
|
+
# * {Types::DescribeRedshiftIdcApplicationsResult#marker #marker} => String
|
6248
|
+
#
|
6249
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6250
|
+
#
|
6251
|
+
# @example Request syntax with placeholder values
|
6252
|
+
#
|
6253
|
+
# resp = client.describe_redshift_idc_applications({
|
6254
|
+
# redshift_idc_application_arn: "String",
|
6255
|
+
# max_records: 1,
|
6256
|
+
# marker: "String",
|
6257
|
+
# })
|
6258
|
+
#
|
6259
|
+
# @example Response structure
|
6260
|
+
#
|
6261
|
+
# resp.redshift_idc_applications #=> Array
|
6262
|
+
# resp.redshift_idc_applications[0].idc_instance_arn #=> String
|
6263
|
+
# resp.redshift_idc_applications[0].redshift_idc_application_name #=> String
|
6264
|
+
# resp.redshift_idc_applications[0].redshift_idc_application_arn #=> String
|
6265
|
+
# resp.redshift_idc_applications[0].identity_namespace #=> String
|
6266
|
+
# resp.redshift_idc_applications[0].idc_display_name #=> String
|
6267
|
+
# resp.redshift_idc_applications[0].iam_role_arn #=> String
|
6268
|
+
# resp.redshift_idc_applications[0].idc_managed_application_arn #=> String
|
6269
|
+
# resp.redshift_idc_applications[0].idc_onboard_status #=> String
|
6270
|
+
# resp.redshift_idc_applications[0].authorized_token_issuer_list #=> Array
|
6271
|
+
# resp.redshift_idc_applications[0].authorized_token_issuer_list[0].trusted_token_issuer_arn #=> String
|
6272
|
+
# resp.redshift_idc_applications[0].authorized_token_issuer_list[0].authorized_audiences_list #=> Array
|
6273
|
+
# resp.redshift_idc_applications[0].authorized_token_issuer_list[0].authorized_audiences_list[0] #=> String
|
6274
|
+
# resp.redshift_idc_applications[0].service_integrations #=> Array
|
6275
|
+
# resp.redshift_idc_applications[0].service_integrations[0].lake_formation #=> Array
|
6276
|
+
# resp.redshift_idc_applications[0].service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
|
6277
|
+
# resp.marker #=> String
|
6278
|
+
#
|
6279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeRedshiftIdcApplications AWS API Documentation
|
6280
|
+
#
|
6281
|
+
# @overload describe_redshift_idc_applications(params = {})
|
6282
|
+
# @param [Hash] params ({})
|
6283
|
+
def describe_redshift_idc_applications(params = {}, options = {})
|
6284
|
+
req = build_request(:describe_redshift_idc_applications, params)
|
6285
|
+
req.send_request(options)
|
6286
|
+
end
|
6287
|
+
|
6106
6288
|
# Returns exchange status details and associated metadata for a
|
6107
6289
|
# reserved-node exchange. Statuses include such values as in progress
|
6108
6290
|
# and requested.
|
@@ -9637,6 +9819,90 @@ module Aws::Redshift
|
|
9637
9819
|
req.send_request(options)
|
9638
9820
|
end
|
9639
9821
|
|
9822
|
+
# Changes an existing Amazon Redshift IAM Identity Center application.
|
9823
|
+
#
|
9824
|
+
# @option params [required, String] :redshift_idc_application_arn
|
9825
|
+
# The ARN for the Redshift application that integrates with IAM Identity
|
9826
|
+
# Center.
|
9827
|
+
#
|
9828
|
+
# @option params [String] :identity_namespace
|
9829
|
+
# The namespace for the Amazon Redshift IAM Identity Center application
|
9830
|
+
# to change. It determines which managed application verifies the
|
9831
|
+
# connection token.
|
9832
|
+
#
|
9833
|
+
# @option params [String] :iam_role_arn
|
9834
|
+
# The IAM role ARN associated with the Amazon Redshift IAM Identity
|
9835
|
+
# Center application to change. It has the required permissions to be
|
9836
|
+
# assumed and invoke the IDC Identity Center API.
|
9837
|
+
#
|
9838
|
+
# @option params [String] :idc_display_name
|
9839
|
+
# The display name for the Amazon Redshift IAM Identity Center
|
9840
|
+
# application to change. It appears on the console.
|
9841
|
+
#
|
9842
|
+
# @option params [Array<Types::AuthorizedTokenIssuer>] :authorized_token_issuer_list
|
9843
|
+
# The authorized token issuer list for the Amazon Redshift IAM Identity
|
9844
|
+
# Center application to change.
|
9845
|
+
#
|
9846
|
+
# @option params [Array<Types::ServiceIntegrationsUnion>] :service_integrations
|
9847
|
+
# A collection of service integrations associated with the application.
|
9848
|
+
#
|
9849
|
+
# @return [Types::ModifyRedshiftIdcApplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9850
|
+
#
|
9851
|
+
# * {Types::ModifyRedshiftIdcApplicationResult#redshift_idc_application #redshift_idc_application} => Types::RedshiftIdcApplication
|
9852
|
+
#
|
9853
|
+
# @example Request syntax with placeholder values
|
9854
|
+
#
|
9855
|
+
# resp = client.modify_redshift_idc_application({
|
9856
|
+
# redshift_idc_application_arn: "String", # required
|
9857
|
+
# identity_namespace: "IdentityNamespaceString",
|
9858
|
+
# iam_role_arn: "String",
|
9859
|
+
# idc_display_name: "IdcDisplayNameString",
|
9860
|
+
# authorized_token_issuer_list: [
|
9861
|
+
# {
|
9862
|
+
# trusted_token_issuer_arn: "String",
|
9863
|
+
# authorized_audiences_list: ["String"],
|
9864
|
+
# },
|
9865
|
+
# ],
|
9866
|
+
# service_integrations: [
|
9867
|
+
# {
|
9868
|
+
# lake_formation: [
|
9869
|
+
# {
|
9870
|
+
# lake_formation_query: {
|
9871
|
+
# authorization: "Enabled", # required, accepts Enabled, Disabled
|
9872
|
+
# },
|
9873
|
+
# },
|
9874
|
+
# ],
|
9875
|
+
# },
|
9876
|
+
# ],
|
9877
|
+
# })
|
9878
|
+
#
|
9879
|
+
# @example Response structure
|
9880
|
+
#
|
9881
|
+
# resp.redshift_idc_application.idc_instance_arn #=> String
|
9882
|
+
# resp.redshift_idc_application.redshift_idc_application_name #=> String
|
9883
|
+
# resp.redshift_idc_application.redshift_idc_application_arn #=> String
|
9884
|
+
# resp.redshift_idc_application.identity_namespace #=> String
|
9885
|
+
# resp.redshift_idc_application.idc_display_name #=> String
|
9886
|
+
# resp.redshift_idc_application.iam_role_arn #=> String
|
9887
|
+
# resp.redshift_idc_application.idc_managed_application_arn #=> String
|
9888
|
+
# resp.redshift_idc_application.idc_onboard_status #=> String
|
9889
|
+
# resp.redshift_idc_application.authorized_token_issuer_list #=> Array
|
9890
|
+
# resp.redshift_idc_application.authorized_token_issuer_list[0].trusted_token_issuer_arn #=> String
|
9891
|
+
# resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list #=> Array
|
9892
|
+
# resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list[0] #=> String
|
9893
|
+
# resp.redshift_idc_application.service_integrations #=> Array
|
9894
|
+
# resp.redshift_idc_application.service_integrations[0].lake_formation #=> Array
|
9895
|
+
# resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
|
9896
|
+
#
|
9897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyRedshiftIdcApplication AWS API Documentation
|
9898
|
+
#
|
9899
|
+
# @overload modify_redshift_idc_application(params = {})
|
9900
|
+
# @param [Hash] params ({})
|
9901
|
+
def modify_redshift_idc_application(params = {}, options = {})
|
9902
|
+
req = build_request(:modify_redshift_idc_application, params)
|
9903
|
+
req.send_request(options)
|
9904
|
+
end
|
9905
|
+
|
9640
9906
|
# Modifies a scheduled action.
|
9641
9907
|
#
|
9642
9908
|
# @option params [required, String] :scheduled_action_name
|
@@ -11995,7 +12261,7 @@ module Aws::Redshift
|
|
11995
12261
|
params: params,
|
11996
12262
|
config: config)
|
11997
12263
|
context[:gem_name] = 'aws-sdk-redshift'
|
11998
|
-
context[:gem_version] = '1.
|
12264
|
+
context[:gem_version] = '1.105.0'
|
11999
12265
|
Seahorse::Client::Request.new(handlers, context)
|
12000
12266
|
end
|
12001
12267
|
|