aws-sdk-redshift 1.163.0 → 1.164.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +188 -1
- data/lib/aws-sdk-redshift/client_api.rb +109 -0
- data/lib/aws-sdk-redshift/errors.rb +28 -0
- data/lib/aws-sdk-redshift/types.rb +217 -0
- data/lib/aws-sdk-redshift.rb +1 -1
- data/sig/client.rbs +48 -0
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +59 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da8938691ba423b6b7b8acbc24e053d62a92bca274d0fc8fce842d3b595d983d
|
|
4
|
+
data.tar.gz: e9fadbabe7e8f6ba371f9bfc943152eb91d9a5399266e2e0857457224545989e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef2481520c0af26a54afb0e5ce7d4092d8293c825cd0b87c0a437d3cbdff371ae8e59d0396f57ce6322fcdb53139529411a6baae87f93fff82182ed6d78e547c
|
|
7
|
+
data.tar.gz: 9c9708c23802ac82ca5d3d7bd5091d37a51fbd237e6021e31168efc0628bd532054e74e3251d10a8eb6b90c835f712025ae548e993ba1e14ca10d309f4927a8a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.164.0 (2026-07-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Redshift - Added support for managing Query Editor V2 IAM Identity Center applications via new CreateQev2IdcApplication, DescribeQev2IdcApplications, ModifyQev2IdcApplication, and DeleteQev2IdcApplication API operations.
|
|
8
|
+
|
|
4
9
|
1.163.0 (2026-07-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.164.0
|
|
@@ -2759,6 +2759,65 @@ module Aws::Redshift
|
|
|
2759
2759
|
req.send_request(options)
|
|
2760
2760
|
end
|
|
2761
2761
|
|
|
2762
|
+
# Creates an Amazon Redshift Query Editor (QEV2) IAM Identity Center
|
|
2763
|
+
# application.
|
|
2764
|
+
#
|
|
2765
|
+
# @option params [required, String] :idc_instance_arn
|
|
2766
|
+
# The Amazon Resource Name (ARN) of the IAM Identity Center instance
|
|
2767
|
+
# used to create the Amazon Redshift Query Editor (QEV2) managed
|
|
2768
|
+
# application.
|
|
2769
|
+
#
|
|
2770
|
+
# @option params [required, String] :qev_2_idc_application_name
|
|
2771
|
+
# The name of the Amazon Redshift Query Editor (QEV2) application in IAM
|
|
2772
|
+
# Identity Center.
|
|
2773
|
+
#
|
|
2774
|
+
# @option params [required, String] :idc_display_name
|
|
2775
|
+
# The display name for the Amazon Redshift Query Editor (QEV2) IAM
|
|
2776
|
+
# Identity Center application. It appears in the console.
|
|
2777
|
+
#
|
|
2778
|
+
# @option params [Array<Types::Tag>] :tags
|
|
2779
|
+
# A list of tags to associate with the application. Tags are key-value
|
|
2780
|
+
# pairs that you can use to organize and identify your resources.
|
|
2781
|
+
#
|
|
2782
|
+
# @return [Types::CreateQev2IdcApplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2783
|
+
#
|
|
2784
|
+
# * {Types::CreateQev2IdcApplicationResult#qev_2_idc_application #qev_2_idc_application} => Types::Qev2IdcApplication
|
|
2785
|
+
#
|
|
2786
|
+
# @example Request syntax with placeholder values
|
|
2787
|
+
#
|
|
2788
|
+
# resp = client.create_qev_2_idc_application({
|
|
2789
|
+
# idc_instance_arn: "String", # required
|
|
2790
|
+
# qev_2_idc_application_name: "Qev2IdcApplicationName", # required
|
|
2791
|
+
# idc_display_name: "IdcDisplayNameString", # required
|
|
2792
|
+
# tags: [
|
|
2793
|
+
# {
|
|
2794
|
+
# key: "String",
|
|
2795
|
+
# value: "String",
|
|
2796
|
+
# },
|
|
2797
|
+
# ],
|
|
2798
|
+
# })
|
|
2799
|
+
#
|
|
2800
|
+
# @example Response structure
|
|
2801
|
+
#
|
|
2802
|
+
# resp.qev_2_idc_application.idc_instance_arn #=> String
|
|
2803
|
+
# resp.qev_2_idc_application.qev_2_idc_application_name #=> String
|
|
2804
|
+
# resp.qev_2_idc_application.qev_2_idc_application_arn #=> String
|
|
2805
|
+
# resp.qev_2_idc_application.idc_managed_application_arn #=> String
|
|
2806
|
+
# resp.qev_2_idc_application.idc_onboard_status #=> String
|
|
2807
|
+
# resp.qev_2_idc_application.idc_display_name #=> String
|
|
2808
|
+
# resp.qev_2_idc_application.tags #=> Array
|
|
2809
|
+
# resp.qev_2_idc_application.tags[0].key #=> String
|
|
2810
|
+
# resp.qev_2_idc_application.tags[0].value #=> String
|
|
2811
|
+
#
|
|
2812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateQev2IdcApplication AWS API Documentation
|
|
2813
|
+
#
|
|
2814
|
+
# @overload create_qev_2_idc_application(params = {})
|
|
2815
|
+
# @param [Hash] params ({})
|
|
2816
|
+
def create_qev_2_idc_application(params = {}, options = {})
|
|
2817
|
+
req = build_request(:create_qev_2_idc_application, params)
|
|
2818
|
+
req.send_request(options)
|
|
2819
|
+
end
|
|
2820
|
+
|
|
2762
2821
|
# Creates an Amazon Redshift application for use with IAM Identity
|
|
2763
2822
|
# Center.
|
|
2764
2823
|
#
|
|
@@ -4019,6 +4078,30 @@ module Aws::Redshift
|
|
|
4019
4078
|
req.send_request(options)
|
|
4020
4079
|
end
|
|
4021
4080
|
|
|
4081
|
+
# Deletes an Amazon Redshift Query Editor (QEV2) IAM Identity Center
|
|
4082
|
+
# application.
|
|
4083
|
+
#
|
|
4084
|
+
# @option params [required, String] :qev_2_idc_application_arn
|
|
4085
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
4086
|
+
# (QEV2) IAM Identity Center application to delete.
|
|
4087
|
+
#
|
|
4088
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
4089
|
+
#
|
|
4090
|
+
# @example Request syntax with placeholder values
|
|
4091
|
+
#
|
|
4092
|
+
# resp = client.delete_qev_2_idc_application({
|
|
4093
|
+
# qev_2_idc_application_arn: "String", # required
|
|
4094
|
+
# })
|
|
4095
|
+
#
|
|
4096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteQev2IdcApplication AWS API Documentation
|
|
4097
|
+
#
|
|
4098
|
+
# @overload delete_qev_2_idc_application(params = {})
|
|
4099
|
+
# @param [Hash] params ({})
|
|
4100
|
+
def delete_qev_2_idc_application(params = {}, options = {})
|
|
4101
|
+
req = build_request(:delete_qev_2_idc_application, params)
|
|
4102
|
+
req.send_request(options)
|
|
4103
|
+
end
|
|
4104
|
+
|
|
4022
4105
|
# Deletes an Amazon Redshift IAM Identity Center application.
|
|
4023
4106
|
#
|
|
4024
4107
|
# @option params [required, String] :redshift_idc_application_arn
|
|
@@ -6729,6 +6812,67 @@ module Aws::Redshift
|
|
|
6729
6812
|
req.send_request(options)
|
|
6730
6813
|
end
|
|
6731
6814
|
|
|
6815
|
+
# Lists the Amazon Redshift Query Editor (QEV2) IAM Identity Center
|
|
6816
|
+
# applications. To retrieve additional results, use the MaxRecords and
|
|
6817
|
+
# Marker parameters.
|
|
6818
|
+
#
|
|
6819
|
+
# @option params [String] :qev_2_idc_application_arn
|
|
6820
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
6821
|
+
# (QEV2) application that integrates with IAM Identity Center.
|
|
6822
|
+
#
|
|
6823
|
+
# @option params [Integer] :max_records
|
|
6824
|
+
# The maximum number of response records to return in each call. If the
|
|
6825
|
+
# number of remaining response records exceeds the specified MaxRecords
|
|
6826
|
+
# value, a value is returned in a marker field of the response. You can
|
|
6827
|
+
# retrieve the next set of records by retrying the command with the
|
|
6828
|
+
# returned marker value.
|
|
6829
|
+
#
|
|
6830
|
+
# @option params [String] :marker
|
|
6831
|
+
# A value that indicates the starting point for the next set of response
|
|
6832
|
+
# records in a subsequent request. If a value is returned in a response,
|
|
6833
|
+
# you can retrieve the next set of records by providing this returned
|
|
6834
|
+
# marker value in the Marker parameter and retrying the command. If the
|
|
6835
|
+
# Marker field is empty, all response records have been retrieved for
|
|
6836
|
+
# the request.
|
|
6837
|
+
#
|
|
6838
|
+
# @return [Types::DescribeQev2IdcApplicationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6839
|
+
#
|
|
6840
|
+
# * {Types::DescribeQev2IdcApplicationsResult#qev_2_idc_applications #qev_2_idc_applications} => Array<Types::Qev2IdcApplication>
|
|
6841
|
+
# * {Types::DescribeQev2IdcApplicationsResult#marker #marker} => String
|
|
6842
|
+
#
|
|
6843
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
6844
|
+
#
|
|
6845
|
+
# @example Request syntax with placeholder values
|
|
6846
|
+
#
|
|
6847
|
+
# resp = client.describe_qev_2_idc_applications({
|
|
6848
|
+
# qev_2_idc_application_arn: "String",
|
|
6849
|
+
# max_records: 1,
|
|
6850
|
+
# marker: "String",
|
|
6851
|
+
# })
|
|
6852
|
+
#
|
|
6853
|
+
# @example Response structure
|
|
6854
|
+
#
|
|
6855
|
+
# resp.qev_2_idc_applications #=> Array
|
|
6856
|
+
# resp.qev_2_idc_applications[0].idc_instance_arn #=> String
|
|
6857
|
+
# resp.qev_2_idc_applications[0].qev_2_idc_application_name #=> String
|
|
6858
|
+
# resp.qev_2_idc_applications[0].qev_2_idc_application_arn #=> String
|
|
6859
|
+
# resp.qev_2_idc_applications[0].idc_managed_application_arn #=> String
|
|
6860
|
+
# resp.qev_2_idc_applications[0].idc_onboard_status #=> String
|
|
6861
|
+
# resp.qev_2_idc_applications[0].idc_display_name #=> String
|
|
6862
|
+
# resp.qev_2_idc_applications[0].tags #=> Array
|
|
6863
|
+
# resp.qev_2_idc_applications[0].tags[0].key #=> String
|
|
6864
|
+
# resp.qev_2_idc_applications[0].tags[0].value #=> String
|
|
6865
|
+
# resp.marker #=> String
|
|
6866
|
+
#
|
|
6867
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeQev2IdcApplications AWS API Documentation
|
|
6868
|
+
#
|
|
6869
|
+
# @overload describe_qev_2_idc_applications(params = {})
|
|
6870
|
+
# @param [Hash] params ({})
|
|
6871
|
+
def describe_qev_2_idc_applications(params = {}, options = {})
|
|
6872
|
+
req = build_request(:describe_qev_2_idc_applications, params)
|
|
6873
|
+
req.send_request(options)
|
|
6874
|
+
end
|
|
6875
|
+
|
|
6732
6876
|
# Lists the Amazon Redshift IAM Identity Center applications.
|
|
6733
6877
|
#
|
|
6734
6878
|
# @option params [String] :redshift_idc_application_arn
|
|
@@ -10703,6 +10847,49 @@ module Aws::Redshift
|
|
|
10703
10847
|
req.send_request(options)
|
|
10704
10848
|
end
|
|
10705
10849
|
|
|
10850
|
+
# Modifies an Amazon Redshift Query Editor (QEV2) IAM Identity Center
|
|
10851
|
+
# application.
|
|
10852
|
+
#
|
|
10853
|
+
# @option params [required, String] :qev_2_idc_application_arn
|
|
10854
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
10855
|
+
# (QEV2) application that integrates with IAM Identity Center.
|
|
10856
|
+
#
|
|
10857
|
+
# @option params [String] :idc_display_name
|
|
10858
|
+
# The display name for the Amazon Redshift Query Editor (QEV2) IAM
|
|
10859
|
+
# Identity Center application. It appears in the console.
|
|
10860
|
+
#
|
|
10861
|
+
# @return [Types::ModifyQev2IdcApplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10862
|
+
#
|
|
10863
|
+
# * {Types::ModifyQev2IdcApplicationResult#qev_2_idc_application #qev_2_idc_application} => Types::Qev2IdcApplication
|
|
10864
|
+
#
|
|
10865
|
+
# @example Request syntax with placeholder values
|
|
10866
|
+
#
|
|
10867
|
+
# resp = client.modify_qev_2_idc_application({
|
|
10868
|
+
# qev_2_idc_application_arn: "String", # required
|
|
10869
|
+
# idc_display_name: "IdcDisplayNameString",
|
|
10870
|
+
# })
|
|
10871
|
+
#
|
|
10872
|
+
# @example Response structure
|
|
10873
|
+
#
|
|
10874
|
+
# resp.qev_2_idc_application.idc_instance_arn #=> String
|
|
10875
|
+
# resp.qev_2_idc_application.qev_2_idc_application_name #=> String
|
|
10876
|
+
# resp.qev_2_idc_application.qev_2_idc_application_arn #=> String
|
|
10877
|
+
# resp.qev_2_idc_application.idc_managed_application_arn #=> String
|
|
10878
|
+
# resp.qev_2_idc_application.idc_onboard_status #=> String
|
|
10879
|
+
# resp.qev_2_idc_application.idc_display_name #=> String
|
|
10880
|
+
# resp.qev_2_idc_application.tags #=> Array
|
|
10881
|
+
# resp.qev_2_idc_application.tags[0].key #=> String
|
|
10882
|
+
# resp.qev_2_idc_application.tags[0].value #=> String
|
|
10883
|
+
#
|
|
10884
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyQev2IdcApplication AWS API Documentation
|
|
10885
|
+
#
|
|
10886
|
+
# @overload modify_qev_2_idc_application(params = {})
|
|
10887
|
+
# @param [Hash] params ({})
|
|
10888
|
+
def modify_qev_2_idc_application(params = {}, options = {})
|
|
10889
|
+
req = build_request(:modify_qev_2_idc_application, params)
|
|
10890
|
+
req.send_request(options)
|
|
10891
|
+
end
|
|
10892
|
+
|
|
10706
10893
|
# Changes an existing Amazon Redshift IAM Identity Center application.
|
|
10707
10894
|
#
|
|
10708
10895
|
# @option params [required, String] :redshift_idc_application_arn
|
|
@@ -13283,7 +13470,7 @@ module Aws::Redshift
|
|
|
13283
13470
|
tracer: tracer
|
|
13284
13471
|
)
|
|
13285
13472
|
context[:gem_name] = 'aws-sdk-redshift'
|
|
13286
|
-
context[:gem_version] = '1.
|
|
13473
|
+
context[:gem_version] = '1.164.0'
|
|
13287
13474
|
Seahorse::Client::Request.new(handlers, context)
|
|
13288
13475
|
end
|
|
13289
13476
|
|
|
@@ -151,6 +151,8 @@ module Aws::Redshift
|
|
|
151
151
|
CreateHsmConfigurationMessage = Shapes::StructureShape.new(name: 'CreateHsmConfigurationMessage')
|
|
152
152
|
CreateHsmConfigurationResult = Shapes::StructureShape.new(name: 'CreateHsmConfigurationResult')
|
|
153
153
|
CreateIntegrationMessage = Shapes::StructureShape.new(name: 'CreateIntegrationMessage')
|
|
154
|
+
CreateQev2IdcApplicationMessage = Shapes::StructureShape.new(name: 'CreateQev2IdcApplicationMessage')
|
|
155
|
+
CreateQev2IdcApplicationResult = Shapes::StructureShape.new(name: 'CreateQev2IdcApplicationResult')
|
|
154
156
|
CreateRedshiftIdcApplicationMessage = Shapes::StructureShape.new(name: 'CreateRedshiftIdcApplicationMessage')
|
|
155
157
|
CreateRedshiftIdcApplicationResult = Shapes::StructureShape.new(name: 'CreateRedshiftIdcApplicationResult')
|
|
156
158
|
CreateScheduledActionMessage = Shapes::StructureShape.new(name: 'CreateScheduledActionMessage')
|
|
@@ -195,6 +197,7 @@ module Aws::Redshift
|
|
|
195
197
|
DeleteHsmClientCertificateMessage = Shapes::StructureShape.new(name: 'DeleteHsmClientCertificateMessage')
|
|
196
198
|
DeleteHsmConfigurationMessage = Shapes::StructureShape.new(name: 'DeleteHsmConfigurationMessage')
|
|
197
199
|
DeleteIntegrationMessage = Shapes::StructureShape.new(name: 'DeleteIntegrationMessage')
|
|
200
|
+
DeleteQev2IdcApplicationMessage = Shapes::StructureShape.new(name: 'DeleteQev2IdcApplicationMessage')
|
|
198
201
|
DeleteRedshiftIdcApplicationMessage = Shapes::StructureShape.new(name: 'DeleteRedshiftIdcApplicationMessage')
|
|
199
202
|
DeleteResourcePolicyMessage = Shapes::StructureShape.new(name: 'DeleteResourcePolicyMessage')
|
|
200
203
|
DeleteScheduledActionMessage = Shapes::StructureShape.new(name: 'DeleteScheduledActionMessage')
|
|
@@ -246,6 +249,8 @@ module Aws::Redshift
|
|
|
246
249
|
DescribeOrderableClusterOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOrderableClusterOptionsMessage')
|
|
247
250
|
DescribePartnersInputMessage = Shapes::StructureShape.new(name: 'DescribePartnersInputMessage')
|
|
248
251
|
DescribePartnersOutputMessage = Shapes::StructureShape.new(name: 'DescribePartnersOutputMessage')
|
|
252
|
+
DescribeQev2IdcApplicationsMessage = Shapes::StructureShape.new(name: 'DescribeQev2IdcApplicationsMessage')
|
|
253
|
+
DescribeQev2IdcApplicationsResult = Shapes::StructureShape.new(name: 'DescribeQev2IdcApplicationsResult')
|
|
249
254
|
DescribeRedshiftIdcApplicationsMessage = Shapes::StructureShape.new(name: 'DescribeRedshiftIdcApplicationsMessage')
|
|
250
255
|
DescribeRedshiftIdcApplicationsResult = Shapes::StructureShape.new(name: 'DescribeRedshiftIdcApplicationsResult')
|
|
251
256
|
DescribeReservedNodeExchangeStatusInputMessage = Shapes::StructureShape.new(name: 'DescribeReservedNodeExchangeStatusInputMessage')
|
|
@@ -434,6 +439,8 @@ module Aws::Redshift
|
|
|
434
439
|
ModifyEventSubscriptionResult = Shapes::StructureShape.new(name: 'ModifyEventSubscriptionResult')
|
|
435
440
|
ModifyIntegrationMessage = Shapes::StructureShape.new(name: 'ModifyIntegrationMessage')
|
|
436
441
|
ModifyLakehouseConfigurationMessage = Shapes::StructureShape.new(name: 'ModifyLakehouseConfigurationMessage')
|
|
442
|
+
ModifyQev2IdcApplicationMessage = Shapes::StructureShape.new(name: 'ModifyQev2IdcApplicationMessage')
|
|
443
|
+
ModifyQev2IdcApplicationResult = Shapes::StructureShape.new(name: 'ModifyQev2IdcApplicationResult')
|
|
437
444
|
ModifyRedshiftIdcApplicationMessage = Shapes::StructureShape.new(name: 'ModifyRedshiftIdcApplicationMessage')
|
|
438
445
|
ModifyRedshiftIdcApplicationResult = Shapes::StructureShape.new(name: 'ModifyRedshiftIdcApplicationResult')
|
|
439
446
|
ModifyScheduledActionMessage = Shapes::StructureShape.new(name: 'ModifyScheduledActionMessage')
|
|
@@ -481,6 +488,11 @@ module Aws::Redshift
|
|
|
481
488
|
PurchaseReservedNodeOfferingResult = Shapes::StructureShape.new(name: 'PurchaseReservedNodeOfferingResult')
|
|
482
489
|
PutResourcePolicyMessage = Shapes::StructureShape.new(name: 'PutResourcePolicyMessage')
|
|
483
490
|
PutResourcePolicyResult = Shapes::StructureShape.new(name: 'PutResourcePolicyResult')
|
|
491
|
+
Qev2IdcApplication = Shapes::StructureShape.new(name: 'Qev2IdcApplication')
|
|
492
|
+
Qev2IdcApplicationAlreadyExistsFault = Shapes::StructureShape.new(name: 'Qev2IdcApplicationAlreadyExistsFault', error: {"code" => "Qev2IdcApplicationAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
|
|
493
|
+
Qev2IdcApplicationList = Shapes::ListShape.new(name: 'Qev2IdcApplicationList')
|
|
494
|
+
Qev2IdcApplicationName = Shapes::StringShape.new(name: 'Qev2IdcApplicationName')
|
|
495
|
+
Qev2IdcApplicationNotExistsFault = Shapes::StructureShape.new(name: 'Qev2IdcApplicationNotExistsFault', error: {"code" => "Qev2IdcApplicationNotExists", "httpStatusCode" => 404, "senderFault" => true})
|
|
484
496
|
ReadWriteAccess = Shapes::StructureShape.new(name: 'ReadWriteAccess')
|
|
485
497
|
RebootClusterMessage = Shapes::StructureShape.new(name: 'RebootClusterMessage')
|
|
486
498
|
RebootClusterResult = Shapes::StructureShape.new(name: 'RebootClusterResult')
|
|
@@ -1210,6 +1222,15 @@ module Aws::Redshift
|
|
|
1210
1222
|
CreateIntegrationMessage.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
|
|
1211
1223
|
CreateIntegrationMessage.struct_class = Types::CreateIntegrationMessage
|
|
1212
1224
|
|
|
1225
|
+
CreateQev2IdcApplicationMessage.add_member(:idc_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "IdcInstanceArn"))
|
|
1226
|
+
CreateQev2IdcApplicationMessage.add_member(:qev_2_idc_application_name, Shapes::ShapeRef.new(shape: Qev2IdcApplicationName, required: true, location_name: "Qev2IdcApplicationName"))
|
|
1227
|
+
CreateQev2IdcApplicationMessage.add_member(:idc_display_name, Shapes::ShapeRef.new(shape: IdcDisplayNameString, required: true, location_name: "IdcDisplayName"))
|
|
1228
|
+
CreateQev2IdcApplicationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
1229
|
+
CreateQev2IdcApplicationMessage.struct_class = Types::CreateQev2IdcApplicationMessage
|
|
1230
|
+
|
|
1231
|
+
CreateQev2IdcApplicationResult.add_member(:qev_2_idc_application, Shapes::ShapeRef.new(shape: Qev2IdcApplication, location_name: "Qev2IdcApplication"))
|
|
1232
|
+
CreateQev2IdcApplicationResult.struct_class = Types::CreateQev2IdcApplicationResult
|
|
1233
|
+
|
|
1213
1234
|
CreateRedshiftIdcApplicationMessage.add_member(:idc_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "IdcInstanceArn"))
|
|
1214
1235
|
CreateRedshiftIdcApplicationMessage.add_member(:redshift_idc_application_name, Shapes::ShapeRef.new(shape: RedshiftIdcApplicationName, required: true, location_name: "RedshiftIdcApplicationName"))
|
|
1215
1236
|
CreateRedshiftIdcApplicationMessage.add_member(:identity_namespace, Shapes::ShapeRef.new(shape: IdentityNamespaceString, location_name: "IdentityNamespace"))
|
|
@@ -1375,6 +1396,9 @@ module Aws::Redshift
|
|
|
1375
1396
|
DeleteIntegrationMessage.add_member(:integration_arn, Shapes::ShapeRef.new(shape: IntegrationArn, required: true, location_name: "IntegrationArn"))
|
|
1376
1397
|
DeleteIntegrationMessage.struct_class = Types::DeleteIntegrationMessage
|
|
1377
1398
|
|
|
1399
|
+
DeleteQev2IdcApplicationMessage.add_member(:qev_2_idc_application_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Qev2IdcApplicationArn"))
|
|
1400
|
+
DeleteQev2IdcApplicationMessage.struct_class = Types::DeleteQev2IdcApplicationMessage
|
|
1401
|
+
|
|
1378
1402
|
DeleteRedshiftIdcApplicationMessage.add_member(:redshift_idc_application_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RedshiftIdcApplicationArn"))
|
|
1379
1403
|
DeleteRedshiftIdcApplicationMessage.struct_class = Types::DeleteRedshiftIdcApplicationMessage
|
|
1380
1404
|
|
|
@@ -1623,6 +1647,15 @@ module Aws::Redshift
|
|
|
1623
1647
|
DescribePartnersOutputMessage.add_member(:partner_integration_info_list, Shapes::ShapeRef.new(shape: PartnerIntegrationInfoList, location_name: "PartnerIntegrationInfoList"))
|
|
1624
1648
|
DescribePartnersOutputMessage.struct_class = Types::DescribePartnersOutputMessage
|
|
1625
1649
|
|
|
1650
|
+
DescribeQev2IdcApplicationsMessage.add_member(:qev_2_idc_application_arn, Shapes::ShapeRef.new(shape: String, location_name: "Qev2IdcApplicationArn"))
|
|
1651
|
+
DescribeQev2IdcApplicationsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
|
1652
|
+
DescribeQev2IdcApplicationsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
|
1653
|
+
DescribeQev2IdcApplicationsMessage.struct_class = Types::DescribeQev2IdcApplicationsMessage
|
|
1654
|
+
|
|
1655
|
+
DescribeQev2IdcApplicationsResult.add_member(:qev_2_idc_applications, Shapes::ShapeRef.new(shape: Qev2IdcApplicationList, location_name: "Qev2IdcApplications"))
|
|
1656
|
+
DescribeQev2IdcApplicationsResult.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
|
1657
|
+
DescribeQev2IdcApplicationsResult.struct_class = Types::DescribeQev2IdcApplicationsResult
|
|
1658
|
+
|
|
1626
1659
|
DescribeRedshiftIdcApplicationsMessage.add_member(:redshift_idc_application_arn, Shapes::ShapeRef.new(shape: String, location_name: "RedshiftIdcApplicationArn"))
|
|
1627
1660
|
DescribeRedshiftIdcApplicationsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
|
1628
1661
|
DescribeRedshiftIdcApplicationsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
|
@@ -2288,6 +2321,13 @@ module Aws::Redshift
|
|
|
2288
2321
|
ModifyLakehouseConfigurationMessage.add_member(:dry_run, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DryRun"))
|
|
2289
2322
|
ModifyLakehouseConfigurationMessage.struct_class = Types::ModifyLakehouseConfigurationMessage
|
|
2290
2323
|
|
|
2324
|
+
ModifyQev2IdcApplicationMessage.add_member(:qev_2_idc_application_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Qev2IdcApplicationArn"))
|
|
2325
|
+
ModifyQev2IdcApplicationMessage.add_member(:idc_display_name, Shapes::ShapeRef.new(shape: IdcDisplayNameString, location_name: "IdcDisplayName"))
|
|
2326
|
+
ModifyQev2IdcApplicationMessage.struct_class = Types::ModifyQev2IdcApplicationMessage
|
|
2327
|
+
|
|
2328
|
+
ModifyQev2IdcApplicationResult.add_member(:qev_2_idc_application, Shapes::ShapeRef.new(shape: Qev2IdcApplication, location_name: "Qev2IdcApplication"))
|
|
2329
|
+
ModifyQev2IdcApplicationResult.struct_class = Types::ModifyQev2IdcApplicationResult
|
|
2330
|
+
|
|
2291
2331
|
ModifyRedshiftIdcApplicationMessage.add_member(:redshift_idc_application_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RedshiftIdcApplicationArn"))
|
|
2292
2332
|
ModifyRedshiftIdcApplicationMessage.add_member(:identity_namespace, Shapes::ShapeRef.new(shape: IdentityNamespaceString, location_name: "IdentityNamespace"))
|
|
2293
2333
|
ModifyRedshiftIdcApplicationMessage.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "IamRoleArn"))
|
|
@@ -2453,6 +2493,21 @@ module Aws::Redshift
|
|
|
2453
2493
|
PutResourcePolicyResult.add_member(:resource_policy, Shapes::ShapeRef.new(shape: ResourcePolicy, location_name: "ResourcePolicy"))
|
|
2454
2494
|
PutResourcePolicyResult.struct_class = Types::PutResourcePolicyResult
|
|
2455
2495
|
|
|
2496
|
+
Qev2IdcApplication.add_member(:idc_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "IdcInstanceArn"))
|
|
2497
|
+
Qev2IdcApplication.add_member(:qev_2_idc_application_name, Shapes::ShapeRef.new(shape: Qev2IdcApplicationName, location_name: "Qev2IdcApplicationName"))
|
|
2498
|
+
Qev2IdcApplication.add_member(:qev_2_idc_application_arn, Shapes::ShapeRef.new(shape: String, location_name: "Qev2IdcApplicationArn"))
|
|
2499
|
+
Qev2IdcApplication.add_member(:idc_managed_application_arn, Shapes::ShapeRef.new(shape: String, location_name: "IdcManagedApplicationArn"))
|
|
2500
|
+
Qev2IdcApplication.add_member(:idc_onboard_status, Shapes::ShapeRef.new(shape: String, location_name: "IdcOnboardStatus"))
|
|
2501
|
+
Qev2IdcApplication.add_member(:idc_display_name, Shapes::ShapeRef.new(shape: IdcDisplayNameString, location_name: "IdcDisplayName"))
|
|
2502
|
+
Qev2IdcApplication.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
2503
|
+
Qev2IdcApplication.struct_class = Types::Qev2IdcApplication
|
|
2504
|
+
|
|
2505
|
+
Qev2IdcApplicationAlreadyExistsFault.struct_class = Types::Qev2IdcApplicationAlreadyExistsFault
|
|
2506
|
+
|
|
2507
|
+
Qev2IdcApplicationList.member = Shapes::ShapeRef.new(shape: Qev2IdcApplication)
|
|
2508
|
+
|
|
2509
|
+
Qev2IdcApplicationNotExistsFault.struct_class = Types::Qev2IdcApplicationNotExistsFault
|
|
2510
|
+
|
|
2456
2511
|
ReadWriteAccess.add_member(:authorization, Shapes::ShapeRef.new(shape: ServiceAuthorization, required: true, location_name: "Authorization"))
|
|
2457
2512
|
ReadWriteAccess.struct_class = Types::ReadWriteAccess
|
|
2458
2513
|
|
|
@@ -3441,6 +3496,18 @@ module Aws::Redshift
|
|
|
3441
3496
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTagFault)
|
|
3442
3497
|
end)
|
|
3443
3498
|
|
|
3499
|
+
api.add_operation(:create_qev_2_idc_application, Seahorse::Model::Operation.new.tap do |o|
|
|
3500
|
+
o.name = "CreateQev2IdcApplication"
|
|
3501
|
+
o.http_method = "POST"
|
|
3502
|
+
o.http_request_uri = "/"
|
|
3503
|
+
o.input = Shapes::ShapeRef.new(shape: CreateQev2IdcApplicationMessage)
|
|
3504
|
+
o.output = Shapes::ShapeRef.new(shape: CreateQev2IdcApplicationResult)
|
|
3505
|
+
o.errors << Shapes::ShapeRef.new(shape: Qev2IdcApplicationAlreadyExistsFault)
|
|
3506
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceUnavailableFault)
|
|
3507
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
|
3508
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceAccessDeniedFault)
|
|
3509
|
+
end)
|
|
3510
|
+
|
|
3444
3511
|
api.add_operation(:create_redshift_idc_application, Seahorse::Model::Operation.new.tap do |o|
|
|
3445
3512
|
o.name = "CreateRedshiftIdcApplication"
|
|
3446
3513
|
o.http_method = "POST"
|
|
@@ -3679,6 +3746,18 @@ module Aws::Redshift
|
|
|
3679
3746
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
|
3680
3747
|
end)
|
|
3681
3748
|
|
|
3749
|
+
api.add_operation(:delete_qev_2_idc_application, Seahorse::Model::Operation.new.tap do |o|
|
|
3750
|
+
o.name = "DeleteQev2IdcApplication"
|
|
3751
|
+
o.http_method = "POST"
|
|
3752
|
+
o.http_request_uri = "/"
|
|
3753
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteQev2IdcApplicationMessage)
|
|
3754
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
3755
|
+
o.errors << Shapes::ShapeRef.new(shape: Qev2IdcApplicationNotExistsFault)
|
|
3756
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceUnavailableFault)
|
|
3757
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
|
3758
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceAccessDeniedFault)
|
|
3759
|
+
end)
|
|
3760
|
+
|
|
3682
3761
|
api.add_operation(:delete_redshift_idc_application, Seahorse::Model::Operation.new.tap do |o|
|
|
3683
3762
|
o.name = "DeleteRedshiftIdcApplication"
|
|
3684
3763
|
o.http_method = "POST"
|
|
@@ -4188,6 +4267,24 @@ module Aws::Redshift
|
|
|
4188
4267
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
|
4189
4268
|
end)
|
|
4190
4269
|
|
|
4270
|
+
api.add_operation(:describe_qev_2_idc_applications, Seahorse::Model::Operation.new.tap do |o|
|
|
4271
|
+
o.name = "DescribeQev2IdcApplications"
|
|
4272
|
+
o.http_method = "POST"
|
|
4273
|
+
o.http_request_uri = "/"
|
|
4274
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeQev2IdcApplicationsMessage)
|
|
4275
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeQev2IdcApplicationsResult)
|
|
4276
|
+
o.errors << Shapes::ShapeRef.new(shape: Qev2IdcApplicationNotExistsFault)
|
|
4277
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceUnavailableFault)
|
|
4278
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
|
4279
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceAccessDeniedFault)
|
|
4280
|
+
o[:pager] = Aws::Pager.new(
|
|
4281
|
+
limit_key: "max_records",
|
|
4282
|
+
tokens: {
|
|
4283
|
+
"marker" => "marker"
|
|
4284
|
+
}
|
|
4285
|
+
)
|
|
4286
|
+
end)
|
|
4287
|
+
|
|
4191
4288
|
api.add_operation(:describe_redshift_idc_applications, Seahorse::Model::Operation.new.tap do |o|
|
|
4192
4289
|
o.name = "DescribeRedshiftIdcApplications"
|
|
4193
4290
|
o.http_method = "POST"
|
|
@@ -4751,6 +4848,18 @@ module Aws::Redshift
|
|
|
4751
4848
|
o.errors << Shapes::ShapeRef.new(shape: DependentServiceAccessDeniedFault)
|
|
4752
4849
|
end)
|
|
4753
4850
|
|
|
4851
|
+
api.add_operation(:modify_qev_2_idc_application, Seahorse::Model::Operation.new.tap do |o|
|
|
4852
|
+
o.name = "ModifyQev2IdcApplication"
|
|
4853
|
+
o.http_method = "POST"
|
|
4854
|
+
o.http_request_uri = "/"
|
|
4855
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyQev2IdcApplicationMessage)
|
|
4856
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyQev2IdcApplicationResult)
|
|
4857
|
+
o.errors << Shapes::ShapeRef.new(shape: Qev2IdcApplicationNotExistsFault)
|
|
4858
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceUnavailableFault)
|
|
4859
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
|
4860
|
+
o.errors << Shapes::ShapeRef.new(shape: DependentServiceAccessDeniedFault)
|
|
4861
|
+
end)
|
|
4862
|
+
|
|
4754
4863
|
api.add_operation(:modify_redshift_idc_application, Seahorse::Model::Operation.new.tap do |o|
|
|
4755
4864
|
o.name = "ModifyRedshiftIdcApplication"
|
|
4756
4865
|
o.http_method = "POST"
|
|
@@ -171,6 +171,10 @@ module Aws::Redshift
|
|
|
171
171
|
# * This error class is not used. `NumberOfNodesQuotaExceeded` is used during parsing instead.
|
|
172
172
|
# * {PartnerNotFoundFault}
|
|
173
173
|
# * This error class is not used. `PartnerNotFound` is used during parsing instead.
|
|
174
|
+
# * {Qev2IdcApplicationAlreadyExistsFault}
|
|
175
|
+
# * This error class is not used. `Qev2IdcApplicationAlreadyExists` is used during parsing instead.
|
|
176
|
+
# * {Qev2IdcApplicationNotExistsFault}
|
|
177
|
+
# * This error class is not used. `Qev2IdcApplicationNotExists` is used during parsing instead.
|
|
174
178
|
# * {RedshiftIdcApplicationAlreadyExistsFault}
|
|
175
179
|
# * This error class is not used. `RedshiftIdcApplicationAlreadyExists` is used during parsing instead.
|
|
176
180
|
# * {RedshiftIdcApplicationNotExistsFault}
|
|
@@ -1315,6 +1319,30 @@ module Aws::Redshift
|
|
|
1315
1319
|
end
|
|
1316
1320
|
end
|
|
1317
1321
|
|
|
1322
|
+
# @deprecated This error class is not used during parsing.
|
|
1323
|
+
# Please use `Qev2IdcApplicationAlreadyExists` instead.
|
|
1324
|
+
class Qev2IdcApplicationAlreadyExistsFault < ServiceError
|
|
1325
|
+
|
|
1326
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
1327
|
+
# @param [String] message
|
|
1328
|
+
# @param [Aws::Redshift::Types::Qev2IdcApplicationAlreadyExistsFault] data
|
|
1329
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
1330
|
+
super(context, message, data)
|
|
1331
|
+
end
|
|
1332
|
+
end
|
|
1333
|
+
|
|
1334
|
+
# @deprecated This error class is not used during parsing.
|
|
1335
|
+
# Please use `Qev2IdcApplicationNotExists` instead.
|
|
1336
|
+
class Qev2IdcApplicationNotExistsFault < ServiceError
|
|
1337
|
+
|
|
1338
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
1339
|
+
# @param [String] message
|
|
1340
|
+
# @param [Aws::Redshift::Types::Qev2IdcApplicationNotExistsFault] data
|
|
1341
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
1342
|
+
super(context, message, data)
|
|
1343
|
+
end
|
|
1344
|
+
end
|
|
1345
|
+
|
|
1318
1346
|
# @deprecated This error class is not used during parsing.
|
|
1319
1347
|
# Please use `RedshiftIdcApplicationAlreadyExists` instead.
|
|
1320
1348
|
class RedshiftIdcApplicationAlreadyExistsFault < ServiceError
|
|
@@ -3019,6 +3019,52 @@ module Aws::Redshift
|
|
|
3019
3019
|
include Aws::Structure
|
|
3020
3020
|
end
|
|
3021
3021
|
|
|
3022
|
+
# @!attribute [rw] idc_instance_arn
|
|
3023
|
+
# The Amazon Resource Name (ARN) of the IAM Identity Center instance
|
|
3024
|
+
# used to create the Amazon Redshift Query Editor (QEV2) managed
|
|
3025
|
+
# application.
|
|
3026
|
+
# @return [String]
|
|
3027
|
+
#
|
|
3028
|
+
# @!attribute [rw] qev_2_idc_application_name
|
|
3029
|
+
# The name of the Amazon Redshift Query Editor (QEV2) application in
|
|
3030
|
+
# IAM Identity Center.
|
|
3031
|
+
# @return [String]
|
|
3032
|
+
#
|
|
3033
|
+
# @!attribute [rw] idc_display_name
|
|
3034
|
+
# The display name for the Amazon Redshift Query Editor (QEV2) IAM
|
|
3035
|
+
# Identity Center application. It appears in the console.
|
|
3036
|
+
# @return [String]
|
|
3037
|
+
#
|
|
3038
|
+
# @!attribute [rw] tags
|
|
3039
|
+
# A list of tags to associate with the application. Tags are key-value
|
|
3040
|
+
# pairs that you can use to organize and identify your resources.
|
|
3041
|
+
# @return [Array<Types::Tag>]
|
|
3042
|
+
#
|
|
3043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateQev2IdcApplicationMessage AWS API Documentation
|
|
3044
|
+
#
|
|
3045
|
+
class CreateQev2IdcApplicationMessage < Struct.new(
|
|
3046
|
+
:idc_instance_arn,
|
|
3047
|
+
:qev_2_idc_application_name,
|
|
3048
|
+
:idc_display_name,
|
|
3049
|
+
:tags)
|
|
3050
|
+
SENSITIVE = []
|
|
3051
|
+
include Aws::Structure
|
|
3052
|
+
end
|
|
3053
|
+
|
|
3054
|
+
# @!attribute [rw] qev_2_idc_application
|
|
3055
|
+
# Contains configuration and status information for an Amazon Redshift
|
|
3056
|
+
# Query Editor (QEV2) application that is registered with IAM Identity
|
|
3057
|
+
# Center.
|
|
3058
|
+
# @return [Types::Qev2IdcApplication]
|
|
3059
|
+
#
|
|
3060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateQev2IdcApplicationResult AWS API Documentation
|
|
3061
|
+
#
|
|
3062
|
+
class CreateQev2IdcApplicationResult < Struct.new(
|
|
3063
|
+
:qev_2_idc_application)
|
|
3064
|
+
SENSITIVE = []
|
|
3065
|
+
include Aws::Structure
|
|
3066
|
+
end
|
|
3067
|
+
|
|
3022
3068
|
# @!attribute [rw] idc_instance_arn
|
|
3023
3069
|
# The Amazon resource name (ARN) of the IAM Identity Center instance
|
|
3024
3070
|
# where Amazon Redshift creates a new managed application.
|
|
@@ -3853,6 +3899,19 @@ module Aws::Redshift
|
|
|
3853
3899
|
include Aws::Structure
|
|
3854
3900
|
end
|
|
3855
3901
|
|
|
3902
|
+
# @!attribute [rw] qev_2_idc_application_arn
|
|
3903
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
3904
|
+
# (QEV2) IAM Identity Center application to delete.
|
|
3905
|
+
# @return [String]
|
|
3906
|
+
#
|
|
3907
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteQev2IdcApplicationMessage AWS API Documentation
|
|
3908
|
+
#
|
|
3909
|
+
class DeleteQev2IdcApplicationMessage < Struct.new(
|
|
3910
|
+
:qev_2_idc_application_arn)
|
|
3911
|
+
SENSITIVE = []
|
|
3912
|
+
include Aws::Structure
|
|
3913
|
+
end
|
|
3914
|
+
|
|
3856
3915
|
# @!attribute [rw] redshift_idc_application_arn
|
|
3857
3916
|
# The ARN for a deleted Amazon Redshift IAM Identity Center
|
|
3858
3917
|
# application.
|
|
@@ -5530,6 +5589,61 @@ module Aws::Redshift
|
|
|
5530
5589
|
include Aws::Structure
|
|
5531
5590
|
end
|
|
5532
5591
|
|
|
5592
|
+
# @!attribute [rw] qev_2_idc_application_arn
|
|
5593
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
5594
|
+
# (QEV2) application that integrates with IAM Identity Center.
|
|
5595
|
+
# @return [String]
|
|
5596
|
+
#
|
|
5597
|
+
# @!attribute [rw] max_records
|
|
5598
|
+
# The maximum number of response records to return in each call. If
|
|
5599
|
+
# the number of remaining response records exceeds the specified
|
|
5600
|
+
# MaxRecords value, a value is returned in a marker field of the
|
|
5601
|
+
# response. You can retrieve the next set of records by retrying the
|
|
5602
|
+
# command with the returned marker value.
|
|
5603
|
+
# @return [Integer]
|
|
5604
|
+
#
|
|
5605
|
+
# @!attribute [rw] marker
|
|
5606
|
+
# A value that indicates the starting point for the next set of
|
|
5607
|
+
# response records in a subsequent request. If a value is returned in
|
|
5608
|
+
# a response, you can retrieve the next set of records by providing
|
|
5609
|
+
# this returned marker value in the Marker parameter and retrying the
|
|
5610
|
+
# command. If the Marker field is empty, all response records have
|
|
5611
|
+
# been retrieved for the request.
|
|
5612
|
+
# @return [String]
|
|
5613
|
+
#
|
|
5614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeQev2IdcApplicationsMessage AWS API Documentation
|
|
5615
|
+
#
|
|
5616
|
+
class DescribeQev2IdcApplicationsMessage < Struct.new(
|
|
5617
|
+
:qev_2_idc_application_arn,
|
|
5618
|
+
:max_records,
|
|
5619
|
+
:marker)
|
|
5620
|
+
SENSITIVE = []
|
|
5621
|
+
include Aws::Structure
|
|
5622
|
+
end
|
|
5623
|
+
|
|
5624
|
+
# @!attribute [rw] qev_2_idc_applications
|
|
5625
|
+
# The list of Amazon Redshift Query Editor (QEV2) IAM Identity Center
|
|
5626
|
+
# applications.
|
|
5627
|
+
# @return [Array<Types::Qev2IdcApplication>]
|
|
5628
|
+
#
|
|
5629
|
+
# @!attribute [rw] marker
|
|
5630
|
+
# A value that indicates the starting point for the next set of
|
|
5631
|
+
# response records in a subsequent request. If a value is returned in
|
|
5632
|
+
# a response, you can retrieve the next set of records by providing
|
|
5633
|
+
# this returned marker value in the Marker parameter and retrying the
|
|
5634
|
+
# command. If the Marker field is empty, all response records have
|
|
5635
|
+
# been retrieved for the request.
|
|
5636
|
+
# @return [String]
|
|
5637
|
+
#
|
|
5638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeQev2IdcApplicationsResult AWS API Documentation
|
|
5639
|
+
#
|
|
5640
|
+
class DescribeQev2IdcApplicationsResult < Struct.new(
|
|
5641
|
+
:qev_2_idc_applications,
|
|
5642
|
+
:marker)
|
|
5643
|
+
SENSITIVE = []
|
|
5644
|
+
include Aws::Structure
|
|
5645
|
+
end
|
|
5646
|
+
|
|
5533
5647
|
# @!attribute [rw] redshift_idc_application_arn
|
|
5534
5648
|
# The ARN for the Redshift application that integrates with IAM
|
|
5535
5649
|
# Identity Center.
|
|
@@ -9097,6 +9211,39 @@ module Aws::Redshift
|
|
|
9097
9211
|
include Aws::Structure
|
|
9098
9212
|
end
|
|
9099
9213
|
|
|
9214
|
+
# @!attribute [rw] qev_2_idc_application_arn
|
|
9215
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
9216
|
+
# (QEV2) application that integrates with IAM Identity Center.
|
|
9217
|
+
# @return [String]
|
|
9218
|
+
#
|
|
9219
|
+
# @!attribute [rw] idc_display_name
|
|
9220
|
+
# The display name for the Amazon Redshift Query Editor (QEV2) IAM
|
|
9221
|
+
# Identity Center application. It appears in the console.
|
|
9222
|
+
# @return [String]
|
|
9223
|
+
#
|
|
9224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyQev2IdcApplicationMessage AWS API Documentation
|
|
9225
|
+
#
|
|
9226
|
+
class ModifyQev2IdcApplicationMessage < Struct.new(
|
|
9227
|
+
:qev_2_idc_application_arn,
|
|
9228
|
+
:idc_display_name)
|
|
9229
|
+
SENSITIVE = []
|
|
9230
|
+
include Aws::Structure
|
|
9231
|
+
end
|
|
9232
|
+
|
|
9233
|
+
# @!attribute [rw] qev_2_idc_application
|
|
9234
|
+
# Contains configuration and status information for an Amazon Redshift
|
|
9235
|
+
# Query Editor (QEV2) application that is registered with IAM Identity
|
|
9236
|
+
# Center.
|
|
9237
|
+
# @return [Types::Qev2IdcApplication]
|
|
9238
|
+
#
|
|
9239
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyQev2IdcApplicationResult AWS API Documentation
|
|
9240
|
+
#
|
|
9241
|
+
class ModifyQev2IdcApplicationResult < Struct.new(
|
|
9242
|
+
:qev_2_idc_application)
|
|
9243
|
+
SENSITIVE = []
|
|
9244
|
+
include Aws::Structure
|
|
9245
|
+
end
|
|
9246
|
+
|
|
9100
9247
|
# @!attribute [rw] redshift_idc_application_arn
|
|
9101
9248
|
# The ARN for the Redshift application that integrates with IAM
|
|
9102
9249
|
# Identity Center.
|
|
@@ -9879,6 +10026,76 @@ module Aws::Redshift
|
|
|
9879
10026
|
include Aws::Structure
|
|
9880
10027
|
end
|
|
9881
10028
|
|
|
10029
|
+
# Contains configuration and status information for an Amazon Redshift
|
|
10030
|
+
# Query Editor (QEV2) application that is registered with IAM Identity
|
|
10031
|
+
# Center.
|
|
10032
|
+
#
|
|
10033
|
+
# @!attribute [rw] idc_instance_arn
|
|
10034
|
+
# The Amazon Resource Name (ARN) for the IAM Identity Center instance
|
|
10035
|
+
# that the Amazon Redshift Query Editor (QEV2) application integrates
|
|
10036
|
+
# with.
|
|
10037
|
+
# @return [String]
|
|
10038
|
+
#
|
|
10039
|
+
# @!attribute [rw] qev_2_idc_application_name
|
|
10040
|
+
# The name of the Amazon Redshift Query Editor (QEV2) application in
|
|
10041
|
+
# IAM Identity Center.
|
|
10042
|
+
# @return [String]
|
|
10043
|
+
#
|
|
10044
|
+
# @!attribute [rw] qev_2_idc_application_arn
|
|
10045
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
10046
|
+
# (QEV2) application that integrates with IAM Identity Center.
|
|
10047
|
+
# @return [String]
|
|
10048
|
+
#
|
|
10049
|
+
# @!attribute [rw] idc_managed_application_arn
|
|
10050
|
+
# The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor
|
|
10051
|
+
# (QEV2) IAM Identity Center managed application.
|
|
10052
|
+
# @return [String]
|
|
10053
|
+
#
|
|
10054
|
+
# @!attribute [rw] idc_onboard_status
|
|
10055
|
+
# The onboarding status for the Amazon Redshift Query Editor (QEV2)
|
|
10056
|
+
# IAM Identity Center application.
|
|
10057
|
+
# @return [String]
|
|
10058
|
+
#
|
|
10059
|
+
# @!attribute [rw] idc_display_name
|
|
10060
|
+
# The display name for the Amazon Redshift Query Editor (QEV2) IAM
|
|
10061
|
+
# Identity Center application. It appears in the console.
|
|
10062
|
+
# @return [String]
|
|
10063
|
+
#
|
|
10064
|
+
# @!attribute [rw] tags
|
|
10065
|
+
# A list of tags associated with the application. Tags are key-value
|
|
10066
|
+
# pairs that you can use to organize and identify your resources.
|
|
10067
|
+
# @return [Array<Types::Tag>]
|
|
10068
|
+
#
|
|
10069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Qev2IdcApplication AWS API Documentation
|
|
10070
|
+
#
|
|
10071
|
+
class Qev2IdcApplication < Struct.new(
|
|
10072
|
+
:idc_instance_arn,
|
|
10073
|
+
:qev_2_idc_application_name,
|
|
10074
|
+
:qev_2_idc_application_arn,
|
|
10075
|
+
:idc_managed_application_arn,
|
|
10076
|
+
:idc_onboard_status,
|
|
10077
|
+
:idc_display_name,
|
|
10078
|
+
:tags)
|
|
10079
|
+
SENSITIVE = []
|
|
10080
|
+
include Aws::Structure
|
|
10081
|
+
end
|
|
10082
|
+
|
|
10083
|
+
# The Amazon Redshift Query Editor (QEV2) IAM Identity Center
|
|
10084
|
+
# application already exists. Use a different application name or
|
|
10085
|
+
# describe existing applications to find the ARN.
|
|
10086
|
+
#
|
|
10087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Qev2IdcApplicationAlreadyExistsFault AWS API Documentation
|
|
10088
|
+
#
|
|
10089
|
+
class Qev2IdcApplicationAlreadyExistsFault < Aws::EmptyStructure; end
|
|
10090
|
+
|
|
10091
|
+
# The specified Amazon Redshift Query Editor (QEV2) IAM Identity Center
|
|
10092
|
+
# application doesn't exist. Verify that the application ARN is correct
|
|
10093
|
+
# and that the application exists in this Region.
|
|
10094
|
+
#
|
|
10095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Qev2IdcApplicationNotExistsFault AWS API Documentation
|
|
10096
|
+
#
|
|
10097
|
+
class Qev2IdcApplicationNotExistsFault < Aws::EmptyStructure; end
|
|
10098
|
+
|
|
9882
10099
|
# The S3 Access Grants scope.
|
|
9883
10100
|
#
|
|
9884
10101
|
# @!attribute [rw] authorization
|
data/lib/aws-sdk-redshift.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -518,6 +518,24 @@ module Aws
|
|
|
518
518
|
) -> _CreateIntegrationResponseSuccess
|
|
519
519
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
|
|
520
520
|
|
|
521
|
+
interface _CreateQev2IdcApplicationResponseSuccess
|
|
522
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateQev2IdcApplicationResult]
|
|
523
|
+
def qev_2_idc_application: () -> Types::Qev2IdcApplication
|
|
524
|
+
end
|
|
525
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#create_qev_2_idc_application-instance_method
|
|
526
|
+
def create_qev_2_idc_application: (
|
|
527
|
+
idc_instance_arn: ::String,
|
|
528
|
+
qev_2_idc_application_name: ::String,
|
|
529
|
+
idc_display_name: ::String,
|
|
530
|
+
?tags: Array[
|
|
531
|
+
{
|
|
532
|
+
key: ::String?,
|
|
533
|
+
value: ::String?
|
|
534
|
+
}
|
|
535
|
+
]
|
|
536
|
+
) -> _CreateQev2IdcApplicationResponseSuccess
|
|
537
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateQev2IdcApplicationResponseSuccess
|
|
538
|
+
|
|
521
539
|
interface _CreateRedshiftIdcApplicationResponseSuccess
|
|
522
540
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRedshiftIdcApplicationResult]
|
|
523
541
|
def redshift_idc_application: () -> Types::RedshiftIdcApplication
|
|
@@ -803,6 +821,12 @@ module Aws
|
|
|
803
821
|
) -> _DeletePartnerResponseSuccess
|
|
804
822
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePartnerResponseSuccess
|
|
805
823
|
|
|
824
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#delete_qev_2_idc_application-instance_method
|
|
825
|
+
def delete_qev_2_idc_application: (
|
|
826
|
+
qev_2_idc_application_arn: ::String
|
|
827
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
828
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
829
|
+
|
|
806
830
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#delete_redshift_idc_application-instance_method
|
|
807
831
|
def delete_redshift_idc_application: (
|
|
808
832
|
redshift_idc_application_arn: ::String
|
|
@@ -1290,6 +1314,19 @@ module Aws
|
|
|
1290
1314
|
) -> _DescribePartnersResponseSuccess
|
|
1291
1315
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePartnersResponseSuccess
|
|
1292
1316
|
|
|
1317
|
+
interface _DescribeQev2IdcApplicationsResponseSuccess
|
|
1318
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeQev2IdcApplicationsResult]
|
|
1319
|
+
def qev_2_idc_applications: () -> ::Array[Types::Qev2IdcApplication]
|
|
1320
|
+
def marker: () -> ::String
|
|
1321
|
+
end
|
|
1322
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#describe_qev_2_idc_applications-instance_method
|
|
1323
|
+
def describe_qev_2_idc_applications: (
|
|
1324
|
+
?qev_2_idc_application_arn: ::String,
|
|
1325
|
+
?max_records: ::Integer,
|
|
1326
|
+
?marker: ::String
|
|
1327
|
+
) -> _DescribeQev2IdcApplicationsResponseSuccess
|
|
1328
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeQev2IdcApplicationsResponseSuccess
|
|
1329
|
+
|
|
1293
1330
|
interface _DescribeRedshiftIdcApplicationsResponseSuccess
|
|
1294
1331
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRedshiftIdcApplicationsResult]
|
|
1295
1332
|
def redshift_idc_applications: () -> ::Array[Types::RedshiftIdcApplication]
|
|
@@ -1903,6 +1940,17 @@ module Aws
|
|
|
1903
1940
|
) -> _ModifyLakehouseConfigurationResponseSuccess
|
|
1904
1941
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyLakehouseConfigurationResponseSuccess
|
|
1905
1942
|
|
|
1943
|
+
interface _ModifyQev2IdcApplicationResponseSuccess
|
|
1944
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyQev2IdcApplicationResult]
|
|
1945
|
+
def qev_2_idc_application: () -> Types::Qev2IdcApplication
|
|
1946
|
+
end
|
|
1947
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#modify_qev_2_idc_application-instance_method
|
|
1948
|
+
def modify_qev_2_idc_application: (
|
|
1949
|
+
qev_2_idc_application_arn: ::String,
|
|
1950
|
+
?idc_display_name: ::String
|
|
1951
|
+
) -> _ModifyQev2IdcApplicationResponseSuccess
|
|
1952
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyQev2IdcApplicationResponseSuccess
|
|
1953
|
+
|
|
1906
1954
|
interface _ModifyRedshiftIdcApplicationResponseSuccess
|
|
1907
1955
|
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyRedshiftIdcApplicationResult]
|
|
1908
1956
|
def redshift_idc_application: () -> Types::RedshiftIdcApplication
|
data/sig/errors.rbs
CHANGED
|
@@ -203,6 +203,10 @@ module Aws
|
|
|
203
203
|
end
|
|
204
204
|
class PartnerNotFoundFault < ::Aws::Errors::ServiceError
|
|
205
205
|
end
|
|
206
|
+
class Qev2IdcApplicationAlreadyExistsFault < ::Aws::Errors::ServiceError
|
|
207
|
+
end
|
|
208
|
+
class Qev2IdcApplicationNotExistsFault < ::Aws::Errors::ServiceError
|
|
209
|
+
end
|
|
206
210
|
class RedshiftIdcApplicationAlreadyExistsFault < ::Aws::Errors::ServiceError
|
|
207
211
|
end
|
|
208
212
|
class RedshiftIdcApplicationNotExistsFault < ::Aws::Errors::ServiceError
|
data/sig/types.rbs
CHANGED
|
@@ -676,6 +676,19 @@ module Aws::Redshift
|
|
|
676
676
|
SENSITIVE: []
|
|
677
677
|
end
|
|
678
678
|
|
|
679
|
+
class CreateQev2IdcApplicationMessage
|
|
680
|
+
attr_accessor idc_instance_arn: ::String
|
|
681
|
+
attr_accessor qev_2_idc_application_name: ::String
|
|
682
|
+
attr_accessor idc_display_name: ::String
|
|
683
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
684
|
+
SENSITIVE: []
|
|
685
|
+
end
|
|
686
|
+
|
|
687
|
+
class CreateQev2IdcApplicationResult
|
|
688
|
+
attr_accessor qev_2_idc_application: Types::Qev2IdcApplication
|
|
689
|
+
SENSITIVE: []
|
|
690
|
+
end
|
|
691
|
+
|
|
679
692
|
class CreateRedshiftIdcApplicationMessage
|
|
680
693
|
attr_accessor idc_instance_arn: ::String
|
|
681
694
|
attr_accessor redshift_idc_application_name: ::String
|
|
@@ -895,6 +908,11 @@ module Aws::Redshift
|
|
|
895
908
|
SENSITIVE: []
|
|
896
909
|
end
|
|
897
910
|
|
|
911
|
+
class DeleteQev2IdcApplicationMessage
|
|
912
|
+
attr_accessor qev_2_idc_application_arn: ::String
|
|
913
|
+
SENSITIVE: []
|
|
914
|
+
end
|
|
915
|
+
|
|
898
916
|
class DeleteRedshiftIdcApplicationMessage
|
|
899
917
|
attr_accessor redshift_idc_application_arn: ::String
|
|
900
918
|
SENSITIVE: []
|
|
@@ -1232,6 +1250,19 @@ module Aws::Redshift
|
|
|
1232
1250
|
SENSITIVE: []
|
|
1233
1251
|
end
|
|
1234
1252
|
|
|
1253
|
+
class DescribeQev2IdcApplicationsMessage
|
|
1254
|
+
attr_accessor qev_2_idc_application_arn: ::String
|
|
1255
|
+
attr_accessor max_records: ::Integer
|
|
1256
|
+
attr_accessor marker: ::String
|
|
1257
|
+
SENSITIVE: []
|
|
1258
|
+
end
|
|
1259
|
+
|
|
1260
|
+
class DescribeQev2IdcApplicationsResult
|
|
1261
|
+
attr_accessor qev_2_idc_applications: ::Array[Types::Qev2IdcApplication]
|
|
1262
|
+
attr_accessor marker: ::String
|
|
1263
|
+
SENSITIVE: []
|
|
1264
|
+
end
|
|
1265
|
+
|
|
1235
1266
|
class DescribeRedshiftIdcApplicationsMessage
|
|
1236
1267
|
attr_accessor redshift_idc_application_arn: ::String
|
|
1237
1268
|
attr_accessor max_records: ::Integer
|
|
@@ -2093,6 +2124,17 @@ module Aws::Redshift
|
|
|
2093
2124
|
SENSITIVE: []
|
|
2094
2125
|
end
|
|
2095
2126
|
|
|
2127
|
+
class ModifyQev2IdcApplicationMessage
|
|
2128
|
+
attr_accessor qev_2_idc_application_arn: ::String
|
|
2129
|
+
attr_accessor idc_display_name: ::String
|
|
2130
|
+
SENSITIVE: []
|
|
2131
|
+
end
|
|
2132
|
+
|
|
2133
|
+
class ModifyQev2IdcApplicationResult
|
|
2134
|
+
attr_accessor qev_2_idc_application: Types::Qev2IdcApplication
|
|
2135
|
+
SENSITIVE: []
|
|
2136
|
+
end
|
|
2137
|
+
|
|
2096
2138
|
class ModifyRedshiftIdcApplicationMessage
|
|
2097
2139
|
attr_accessor redshift_idc_application_arn: ::String
|
|
2098
2140
|
attr_accessor identity_namespace: ::String
|
|
@@ -2301,6 +2343,23 @@ module Aws::Redshift
|
|
|
2301
2343
|
SENSITIVE: []
|
|
2302
2344
|
end
|
|
2303
2345
|
|
|
2346
|
+
class Qev2IdcApplication
|
|
2347
|
+
attr_accessor idc_instance_arn: ::String
|
|
2348
|
+
attr_accessor qev_2_idc_application_name: ::String
|
|
2349
|
+
attr_accessor qev_2_idc_application_arn: ::String
|
|
2350
|
+
attr_accessor idc_managed_application_arn: ::String
|
|
2351
|
+
attr_accessor idc_onboard_status: ::String
|
|
2352
|
+
attr_accessor idc_display_name: ::String
|
|
2353
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
2354
|
+
SENSITIVE: []
|
|
2355
|
+
end
|
|
2356
|
+
|
|
2357
|
+
class Qev2IdcApplicationAlreadyExistsFault < Aws::EmptyStructure
|
|
2358
|
+
end
|
|
2359
|
+
|
|
2360
|
+
class Qev2IdcApplicationNotExistsFault < Aws::EmptyStructure
|
|
2361
|
+
end
|
|
2362
|
+
|
|
2304
2363
|
class ReadWriteAccess
|
|
2305
2364
|
attr_accessor authorization: ("Enabled" | "Disabled")
|
|
2306
2365
|
SENSITIVE: []
|