aws-sdk-redshift 1.71.0 → 1.72.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 +49 -15
- data/lib/aws-sdk-redshift/client_api.rb +4 -0
- data/lib/aws-sdk-redshift/types.rb +61 -30
- data/lib/aws-sdk-redshift.rb +1 -1
- 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: a659c0541ad3241a422293d5306e48251b6c5dfd142b112e1a489fd6b4d09861
|
4
|
+
data.tar.gz: 83a9a90481ceaf3ed86acd85f5ea9e8606966e8f2bde2c0eb44ef1f950a606db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f25fef7b3d5235d705ffad28efe32c333cce453e25d73c68575e337c6444c4d1fe8cf5989172bd6e18b8accf0901d9d08749e22d1c0d6130f0bf5a2425739ffc
|
7
|
+
data.tar.gz: e77699cf797f3a7022967a6f93a99997b19df2609befe87f6988182fdb5f9de6cf53e35f208fedd3bfdb16b29eee4915d29228b320ea39fb1f24198b6f587d73
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2021-11-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support of default IAM role for CreateCluster, RestoreFromClusterSnapshot and ModifyClusterIamRoles APIs
|
8
|
+
|
4
9
|
1.71.0 (2021-11-04)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
@@ -582,7 +582,7 @@ module Aws::Redshift
|
|
582
582
|
#
|
583
583
|
# @option params [required, String] :consumer_identifier
|
584
584
|
# The identifier of the data consumer that is authorized to access the
|
585
|
-
# datashare. This identifier is an
|
585
|
+
# datashare. This identifier is an Amazon Web Services account ID.
|
586
586
|
#
|
587
587
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
588
588
|
#
|
@@ -1429,6 +1429,10 @@ module Aws::Redshift
|
|
1429
1429
|
#
|
1430
1430
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
1431
1431
|
#
|
1432
|
+
# @option params [String] :default_iam_role_arn
|
1433
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
1434
|
+
# default for the cluster when the cluster was created.
|
1435
|
+
#
|
1432
1436
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1433
1437
|
#
|
1434
1438
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1473,6 +1477,7 @@ module Aws::Redshift
|
|
1473
1477
|
# snapshot_schedule_identifier: "String",
|
1474
1478
|
# availability_zone_relocation: false,
|
1475
1479
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1480
|
+
# default_iam_role_arn: "String",
|
1476
1481
|
# })
|
1477
1482
|
#
|
1478
1483
|
# @example Response structure
|
@@ -1585,6 +1590,7 @@ module Aws::Redshift
|
|
1585
1590
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
1586
1591
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
1587
1592
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
1593
|
+
# resp.cluster.default_iam_role_arn #=> String
|
1588
1594
|
#
|
1589
1595
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
1590
1596
|
#
|
@@ -2688,7 +2694,8 @@ module Aws::Redshift
|
|
2688
2694
|
#
|
2689
2695
|
# @option params [required, String] :consumer_identifier
|
2690
2696
|
# The identifier of the data consumer that is to have authorization
|
2691
|
-
# removed from the datashare. This identifier is an
|
2697
|
+
# removed from the datashare. This identifier is an Amazon Web Services
|
2698
|
+
# account ID.
|
2692
2699
|
#
|
2693
2700
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2694
2701
|
#
|
@@ -2945,6 +2952,7 @@ module Aws::Redshift
|
|
2945
2952
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
2946
2953
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
2947
2954
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
2955
|
+
# resp.cluster.default_iam_role_arn #=> String
|
2948
2956
|
#
|
2949
2957
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
2950
2958
|
#
|
@@ -4496,6 +4504,7 @@ module Aws::Redshift
|
|
4496
4504
|
# resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
|
4497
4505
|
# resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
4498
4506
|
# resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
4507
|
+
# resp.clusters[0].default_iam_role_arn #=> String
|
4499
4508
|
#
|
4500
4509
|
#
|
4501
4510
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4529,10 +4538,11 @@ module Aws::Redshift
|
|
4529
4538
|
# @option params [String] :marker
|
4530
4539
|
# An optional parameter that specifies the starting point to return a
|
4531
4540
|
# set of response records. When the results of a DescribeDataShares
|
4532
|
-
# request exceed the value specified in `MaxRecords`,
|
4533
|
-
# value in the `Marker` field of the response. You
|
4534
|
-
# set of response records by providing the
|
4535
|
-
# `Marker` parameter and retrying the
|
4541
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4542
|
+
# Services returns a value in the `Marker` field of the response. You
|
4543
|
+
# can retrieve the next set of response records by providing the
|
4544
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4545
|
+
# request.
|
4536
4546
|
#
|
4537
4547
|
# @return [Types::DescribeDataSharesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4538
4548
|
#
|
@@ -4592,10 +4602,10 @@ module Aws::Redshift
|
|
4592
4602
|
# An optional parameter that specifies the starting point to return a
|
4593
4603
|
# set of response records. When the results of a
|
4594
4604
|
# DescribeDataSharesForConsumer request exceed the value specified in
|
4595
|
-
# `MaxRecords`,
|
4596
|
-
# response. You can retrieve the next set of response
|
4597
|
-
# providing the returned marker value in the `Marker`
|
4598
|
-
# retrying the request.
|
4605
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4606
|
+
# field of the response. You can retrieve the next set of response
|
4607
|
+
# records by providing the returned marker value in the `Marker`
|
4608
|
+
# parameter and retrying the request.
|
4599
4609
|
#
|
4600
4610
|
# @return [Types::DescribeDataSharesForConsumerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4601
4611
|
#
|
@@ -4656,10 +4666,10 @@ module Aws::Redshift
|
|
4656
4666
|
# An optional parameter that specifies the starting point to return a
|
4657
4667
|
# set of response records. When the results of a
|
4658
4668
|
# DescribeDataSharesForProducer request exceed the value specified in
|
4659
|
-
# `MaxRecords`,
|
4660
|
-
# response. You can retrieve the next set of response
|
4661
|
-
# providing the returned marker value in the `Marker`
|
4662
|
-
# retrying the request.
|
4669
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4670
|
+
# field of the response. You can retrieve the next set of response
|
4671
|
+
# records by providing the returned marker value in the `Marker`
|
4672
|
+
# parameter and retrying the request.
|
4663
4673
|
#
|
4664
4674
|
# @return [Types::DescribeDataSharesForProducerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4665
4675
|
#
|
@@ -6648,6 +6658,7 @@ module Aws::Redshift
|
|
6648
6658
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6649
6659
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6650
6660
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6661
|
+
# resp.cluster.default_iam_role_arn #=> String
|
6651
6662
|
#
|
6652
6663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
6653
6664
|
#
|
@@ -6948,6 +6959,7 @@ module Aws::Redshift
|
|
6948
6959
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6949
6960
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6950
6961
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6962
|
+
# resp.cluster.default_iam_role_arn #=> String
|
6951
6963
|
#
|
6952
6964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
6953
6965
|
#
|
@@ -7676,6 +7688,7 @@ module Aws::Redshift
|
|
7676
7688
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7677
7689
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7678
7690
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7691
|
+
# resp.cluster.default_iam_role_arn #=> String
|
7679
7692
|
#
|
7680
7693
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
7681
7694
|
#
|
@@ -7820,6 +7833,7 @@ module Aws::Redshift
|
|
7820
7833
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7821
7834
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7822
7835
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7836
|
+
# resp.cluster.default_iam_role_arn #=> String
|
7823
7837
|
#
|
7824
7838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
7825
7839
|
#
|
@@ -7850,6 +7864,10 @@ module Aws::Redshift
|
|
7850
7864
|
# You can disassociate up to 10 IAM roles from a single cluster in a
|
7851
7865
|
# single request.
|
7852
7866
|
#
|
7867
|
+
# @option params [String] :default_iam_role_arn
|
7868
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
7869
|
+
# default for the cluster when the cluster was last modified.
|
7870
|
+
#
|
7853
7871
|
# @return [Types::ModifyClusterIamRolesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7854
7872
|
#
|
7855
7873
|
# * {Types::ModifyClusterIamRolesResult#cluster #cluster} => Types::Cluster
|
@@ -7860,6 +7878,7 @@ module Aws::Redshift
|
|
7860
7878
|
# cluster_identifier: "String", # required
|
7861
7879
|
# add_iam_roles: ["String"],
|
7862
7880
|
# remove_iam_roles: ["String"],
|
7881
|
+
# default_iam_role_arn: "String",
|
7863
7882
|
# })
|
7864
7883
|
#
|
7865
7884
|
# @example Response structure
|
@@ -7972,6 +7991,7 @@ module Aws::Redshift
|
|
7972
7991
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7973
7992
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7974
7993
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7994
|
+
# resp.cluster.default_iam_role_arn #=> String
|
7975
7995
|
#
|
7976
7996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
7977
7997
|
#
|
@@ -8132,6 +8152,7 @@ module Aws::Redshift
|
|
8132
8152
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8133
8153
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8134
8154
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8155
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8135
8156
|
#
|
8136
8157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
8137
8158
|
#
|
@@ -8792,6 +8813,7 @@ module Aws::Redshift
|
|
8792
8813
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8793
8814
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8794
8815
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8816
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8795
8817
|
#
|
8796
8818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
8797
8819
|
#
|
@@ -9035,6 +9057,7 @@ module Aws::Redshift
|
|
9035
9057
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9036
9058
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9037
9059
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9060
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9038
9061
|
#
|
9039
9062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
9040
9063
|
#
|
@@ -9241,6 +9264,7 @@ module Aws::Redshift
|
|
9241
9264
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9242
9265
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9243
9266
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9267
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9244
9268
|
#
|
9245
9269
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
9246
9270
|
#
|
@@ -9524,6 +9548,7 @@ module Aws::Redshift
|
|
9524
9548
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9525
9549
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9526
9550
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9551
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9527
9552
|
#
|
9528
9553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
9529
9554
|
#
|
@@ -9789,6 +9814,11 @@ module Aws::Redshift
|
|
9789
9814
|
#
|
9790
9815
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
9791
9816
|
#
|
9817
|
+
# @option params [String] :default_iam_role_arn
|
9818
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
9819
|
+
# default for the cluster when the cluster was last modified while it
|
9820
|
+
# was restored from a snapshot.
|
9821
|
+
#
|
9792
9822
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9793
9823
|
#
|
9794
9824
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
@@ -9824,6 +9854,7 @@ module Aws::Redshift
|
|
9824
9854
|
# number_of_nodes: 1,
|
9825
9855
|
# availability_zone_relocation: false,
|
9826
9856
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
9857
|
+
# default_iam_role_arn: "String",
|
9827
9858
|
# })
|
9828
9859
|
#
|
9829
9860
|
# @example Response structure
|
@@ -9936,6 +9967,7 @@ module Aws::Redshift
|
|
9936
9967
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9937
9968
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9938
9969
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9970
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9939
9971
|
#
|
9940
9972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
9941
9973
|
#
|
@@ -10164,6 +10196,7 @@ module Aws::Redshift
|
|
10164
10196
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
10165
10197
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10166
10198
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10199
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10167
10200
|
#
|
10168
10201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
10169
10202
|
#
|
@@ -10528,6 +10561,7 @@ module Aws::Redshift
|
|
10528
10561
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
10529
10562
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10530
10563
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10564
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10531
10565
|
#
|
10532
10566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
10533
10567
|
#
|
@@ -10603,7 +10637,7 @@ module Aws::Redshift
|
|
10603
10637
|
params: params,
|
10604
10638
|
config: config)
|
10605
10639
|
context[:gem_name] = 'aws-sdk-redshift'
|
10606
|
-
context[:gem_version] = '1.
|
10640
|
+
context[:gem_version] = '1.72.0'
|
10607
10641
|
Seahorse::Client::Request.new(handlers, context)
|
10608
10642
|
end
|
10609
10643
|
|
@@ -699,6 +699,7 @@ module Aws::Redshift
|
|
699
699
|
Cluster.add_member(:cluster_namespace_arn, Shapes::ShapeRef.new(shape: String, location_name: "ClusterNamespaceArn"))
|
700
700
|
Cluster.add_member(:total_storage_capacity_in_mega_bytes, Shapes::ShapeRef.new(shape: LongOptional, location_name: "TotalStorageCapacityInMegaBytes"))
|
701
701
|
Cluster.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
|
702
|
+
Cluster.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
|
702
703
|
Cluster.struct_class = Types::Cluster
|
703
704
|
|
704
705
|
ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
|
@@ -910,6 +911,7 @@ module Aws::Redshift
|
|
910
911
|
CreateClusterMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
|
911
912
|
CreateClusterMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
|
912
913
|
CreateClusterMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
914
|
+
CreateClusterMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
|
913
915
|
CreateClusterMessage.struct_class = Types::CreateClusterMessage
|
914
916
|
|
915
917
|
CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
|
@@ -1722,6 +1724,7 @@ module Aws::Redshift
|
|
1722
1724
|
ModifyClusterIamRolesMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1723
1725
|
ModifyClusterIamRolesMessage.add_member(:add_iam_roles, Shapes::ShapeRef.new(shape: IamRoleArnList, location_name: "AddIamRoles"))
|
1724
1726
|
ModifyClusterIamRolesMessage.add_member(:remove_iam_roles, Shapes::ShapeRef.new(shape: IamRoleArnList, location_name: "RemoveIamRoles"))
|
1727
|
+
ModifyClusterIamRolesMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
|
1725
1728
|
ModifyClusterIamRolesMessage.struct_class = Types::ModifyClusterIamRolesMessage
|
1726
1729
|
|
1727
1730
|
ModifyClusterIamRolesResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
|
@@ -2078,6 +2081,7 @@ module Aws::Redshift
|
|
2078
2081
|
RestoreFromClusterSnapshotMessage.add_member(:number_of_nodes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfNodes"))
|
2079
2082
|
RestoreFromClusterSnapshotMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
|
2080
2083
|
RestoreFromClusterSnapshotMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
2084
|
+
RestoreFromClusterSnapshotMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
|
2081
2085
|
RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
|
2082
2086
|
|
2083
2087
|
RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
|
@@ -329,7 +329,7 @@ module Aws::Redshift
|
|
329
329
|
#
|
330
330
|
# @!attribute [rw] consumer_identifier
|
331
331
|
# The identifier of the data consumer that is authorized to access the
|
332
|
-
# datashare. This identifier is an
|
332
|
+
# datashare. This identifier is an Amazon Web Services account ID.
|
333
333
|
# @return [String]
|
334
334
|
#
|
335
335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShareMessage AWS API Documentation
|
@@ -895,6 +895,11 @@ module Aws::Redshift
|
|
895
895
|
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
896
896
|
# @return [Types::AquaConfiguration]
|
897
897
|
#
|
898
|
+
# @!attribute [rw] default_iam_role_arn
|
899
|
+
# The Amazon Resource Name (ARN) for the IAM role set as default for
|
900
|
+
# the cluster.
|
901
|
+
# @return [String]
|
902
|
+
#
|
898
903
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
899
904
|
#
|
900
905
|
class Cluster < Struct.new(
|
@@ -947,7 +952,8 @@ module Aws::Redshift
|
|
947
952
|
:availability_zone_relocation_status,
|
948
953
|
:cluster_namespace_arn,
|
949
954
|
:total_storage_capacity_in_mega_bytes,
|
950
|
-
:aqua_configuration
|
955
|
+
:aqua_configuration,
|
956
|
+
:default_iam_role_arn)
|
951
957
|
SENSITIVE = []
|
952
958
|
include Aws::Structure
|
953
959
|
end
|
@@ -1858,6 +1864,7 @@ module Aws::Redshift
|
|
1858
1864
|
# snapshot_schedule_identifier: "String",
|
1859
1865
|
# availability_zone_relocation: false,
|
1860
1866
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1867
|
+
# default_iam_role_arn: "String",
|
1861
1868
|
# }
|
1862
1869
|
#
|
1863
1870
|
# @!attribute [rw] db_name
|
@@ -2233,6 +2240,11 @@ module Aws::Redshift
|
|
2233
2240
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
2234
2241
|
# @return [String]
|
2235
2242
|
#
|
2243
|
+
# @!attribute [rw] default_iam_role_arn
|
2244
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
2245
|
+
# default for the cluster when the cluster was created.
|
2246
|
+
# @return [String]
|
2247
|
+
#
|
2236
2248
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2237
2249
|
#
|
2238
2250
|
class CreateClusterMessage < Struct.new(
|
@@ -2267,7 +2279,8 @@ module Aws::Redshift
|
|
2267
2279
|
:maintenance_track_name,
|
2268
2280
|
:snapshot_schedule_identifier,
|
2269
2281
|
:availability_zone_relocation,
|
2270
|
-
:aqua_configuration_status
|
2282
|
+
:aqua_configuration_status,
|
2283
|
+
:default_iam_role_arn)
|
2271
2284
|
SENSITIVE = []
|
2272
2285
|
include Aws::Structure
|
2273
2286
|
end
|
@@ -3319,7 +3332,8 @@ module Aws::Redshift
|
|
3319
3332
|
#
|
3320
3333
|
# @!attribute [rw] consumer_identifier
|
3321
3334
|
# The identifier of the data consumer that is to have authorization
|
3322
|
-
# removed from the datashare. This identifier is an
|
3335
|
+
# removed from the datashare. This identifier is an Amazon Web
|
3336
|
+
# Services account ID.
|
3323
3337
|
# @return [String]
|
3324
3338
|
#
|
3325
3339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShareMessage AWS API Documentation
|
@@ -4553,10 +4567,10 @@ module Aws::Redshift
|
|
4553
4567
|
# An optional parameter that specifies the starting point to return a
|
4554
4568
|
# set of response records. When the results of a
|
4555
4569
|
# DescribeDataSharesForConsumer request exceed the value specified in
|
4556
|
-
# `MaxRecords`,
|
4557
|
-
# response. You can retrieve the next set of response
|
4558
|
-
# providing the returned marker value in the `Marker`
|
4559
|
-
# retrying the request.
|
4570
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4571
|
+
# field of the response. You can retrieve the next set of response
|
4572
|
+
# records by providing the returned marker value in the `Marker`
|
4573
|
+
# parameter and retrying the request.
|
4560
4574
|
# @return [String]
|
4561
4575
|
#
|
4562
4576
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerMessage AWS API Documentation
|
@@ -4578,10 +4592,10 @@ module Aws::Redshift
|
|
4578
4592
|
# An optional parameter that specifies the starting point to return a
|
4579
4593
|
# set of response records. When the results of a
|
4580
4594
|
# DescribeDataSharesForConsumer request exceed the value specified in
|
4581
|
-
# `MaxRecords`,
|
4582
|
-
# response. You can retrieve the next set of response
|
4583
|
-
# providing the returned marker value in the `Marker`
|
4584
|
-
# retrying the request.
|
4595
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4596
|
+
# field of the response. You can retrieve the next set of response
|
4597
|
+
# records by providing the returned marker value in the `Marker`
|
4598
|
+
# parameter and retrying the request.
|
4585
4599
|
# @return [String]
|
4586
4600
|
#
|
4587
4601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerResult AWS API Documentation
|
@@ -4626,10 +4640,10 @@ module Aws::Redshift
|
|
4626
4640
|
# An optional parameter that specifies the starting point to return a
|
4627
4641
|
# set of response records. When the results of a
|
4628
4642
|
# DescribeDataSharesForProducer request exceed the value specified in
|
4629
|
-
# `MaxRecords`,
|
4630
|
-
# response. You can retrieve the next set of response
|
4631
|
-
# providing the returned marker value in the `Marker`
|
4632
|
-
# retrying the request.
|
4643
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4644
|
+
# field of the response. You can retrieve the next set of response
|
4645
|
+
# records by providing the returned marker value in the `Marker`
|
4646
|
+
# parameter and retrying the request.
|
4633
4647
|
# @return [String]
|
4634
4648
|
#
|
4635
4649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerMessage AWS API Documentation
|
@@ -4651,10 +4665,10 @@ module Aws::Redshift
|
|
4651
4665
|
# An optional parameter that specifies the starting point to return a
|
4652
4666
|
# set of response records. When the results of a
|
4653
4667
|
# DescribeDataSharesForProducer request exceed the value specified in
|
4654
|
-
# `MaxRecords`,
|
4655
|
-
# response. You can retrieve the next set of response
|
4656
|
-
# providing the returned marker value in the `Marker`
|
4657
|
-
# retrying the request.
|
4668
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4669
|
+
# field of the response. You can retrieve the next set of response
|
4670
|
+
# records by providing the returned marker value in the `Marker`
|
4671
|
+
# parameter and retrying the request.
|
4658
4672
|
# @return [String]
|
4659
4673
|
#
|
4660
4674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerResult AWS API Documentation
|
@@ -4690,10 +4704,11 @@ module Aws::Redshift
|
|
4690
4704
|
# @!attribute [rw] marker
|
4691
4705
|
# An optional parameter that specifies the starting point to return a
|
4692
4706
|
# set of response records. When the results of a DescribeDataShares
|
4693
|
-
# request exceed the value specified in `MaxRecords`,
|
4694
|
-
# value in the `Marker` field of the response. You
|
4695
|
-
# next set of response records by providing the
|
4696
|
-
# in the `Marker` parameter and retrying the
|
4707
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4708
|
+
# Services returns a value in the `Marker` field of the response. You
|
4709
|
+
# can retrieve the next set of response records by providing the
|
4710
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4711
|
+
# request.
|
4697
4712
|
# @return [String]
|
4698
4713
|
#
|
4699
4714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesMessage AWS API Documentation
|
@@ -4713,10 +4728,11 @@ module Aws::Redshift
|
|
4713
4728
|
# @!attribute [rw] marker
|
4714
4729
|
# An optional parameter that specifies the starting point to return a
|
4715
4730
|
# set of response records. When the results of a DescribeDataShares
|
4716
|
-
# request exceed the value specified in `MaxRecords`,
|
4717
|
-
# value in the `Marker` field of the response. You
|
4718
|
-
# next set of response records by providing the
|
4719
|
-
# in the `Marker` parameter and retrying the
|
4731
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4732
|
+
# Services returns a value in the `Marker` field of the response. You
|
4733
|
+
# can retrieve the next set of response records by providing the
|
4734
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4735
|
+
# request.
|
4720
4736
|
# @return [String]
|
4721
4737
|
#
|
4722
4738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesResult AWS API Documentation
|
@@ -7668,6 +7684,7 @@ module Aws::Redshift
|
|
7668
7684
|
# cluster_identifier: "String", # required
|
7669
7685
|
# add_iam_roles: ["String"],
|
7670
7686
|
# remove_iam_roles: ["String"],
|
7687
|
+
# default_iam_role_arn: "String",
|
7671
7688
|
# }
|
7672
7689
|
#
|
7673
7690
|
# @!attribute [rw] cluster_identifier
|
@@ -7687,12 +7704,18 @@ module Aws::Redshift
|
|
7687
7704
|
# cluster in a single request.
|
7688
7705
|
# @return [Array<String>]
|
7689
7706
|
#
|
7707
|
+
# @!attribute [rw] default_iam_role_arn
|
7708
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
7709
|
+
# default for the cluster when the cluster was last modified.
|
7710
|
+
# @return [String]
|
7711
|
+
#
|
7690
7712
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRolesMessage AWS API Documentation
|
7691
7713
|
#
|
7692
7714
|
class ModifyClusterIamRolesMessage < Struct.new(
|
7693
7715
|
:cluster_identifier,
|
7694
7716
|
:add_iam_roles,
|
7695
|
-
:remove_iam_roles
|
7717
|
+
:remove_iam_roles,
|
7718
|
+
:default_iam_role_arn)
|
7696
7719
|
SENSITIVE = []
|
7697
7720
|
include Aws::Structure
|
7698
7721
|
end
|
@@ -9785,6 +9808,7 @@ module Aws::Redshift
|
|
9785
9808
|
# number_of_nodes: 1,
|
9786
9809
|
# availability_zone_relocation: false,
|
9787
9810
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
9811
|
+
# default_iam_role_arn: "String",
|
9788
9812
|
# }
|
9789
9813
|
#
|
9790
9814
|
# @!attribute [rw] cluster_identifier
|
@@ -10051,6 +10075,12 @@ module Aws::Redshift
|
|
10051
10075
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
10052
10076
|
# @return [String]
|
10053
10077
|
#
|
10078
|
+
# @!attribute [rw] default_iam_role_arn
|
10079
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
10080
|
+
# default for the cluster when the cluster was last modified while it
|
10081
|
+
# was restored from a snapshot.
|
10082
|
+
# @return [String]
|
10083
|
+
#
|
10054
10084
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
|
10055
10085
|
#
|
10056
10086
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
@@ -10081,7 +10111,8 @@ module Aws::Redshift
|
|
10081
10111
|
:snapshot_schedule_identifier,
|
10082
10112
|
:number_of_nodes,
|
10083
10113
|
:availability_zone_relocation,
|
10084
|
-
:aqua_configuration_status
|
10114
|
+
:aqua_configuration_status,
|
10115
|
+
:default_iam_role_arn)
|
10085
10116
|
SENSITIVE = []
|
10086
10117
|
include Aws::Structure
|
10087
10118
|
end
|
data/lib/aws-sdk-redshift.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|