aws-sdk-redshift 1.35.0 → 1.36.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/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +61 -58
- data/lib/aws-sdk-redshift/types.rb +35 -32
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb7b0b12b6ed4354e004ee3ad397fee174a2fa27
|
4
|
+
data.tar.gz: eeb70fbe259974618d57085e3939ef11a4713b4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54875c068c4d0ee2c30256d757426d03577c05c688cbdd010cc1500bf5625c6e6179db0c3ddd56854237a736934be70fe651c4b03eaa67c03928427d7bbb423b
|
7
|
+
data.tar.gz: 3a23134e693080630eea8cbb7eaf98e6912b4b36613217adcfd222e15fef599756f71093c06bdbecbaa9973895385f305431a32940adc927cf88616c42a889ac
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -519,7 +519,7 @@ module Aws::Redshift
|
|
519
519
|
req.send_request(options)
|
520
520
|
end
|
521
521
|
|
522
|
-
# Modifies the settings for a
|
522
|
+
# Modifies the settings for a set of cluster snapshots.
|
523
523
|
#
|
524
524
|
# @option params [required, Array<String>] :snapshot_identifier_list
|
525
525
|
# A list of snapshot identifiers you want to modify.
|
@@ -571,7 +571,7 @@ module Aws::Redshift
|
|
571
571
|
req.send_request(options)
|
572
572
|
end
|
573
573
|
|
574
|
-
# Cancels a resize operation.
|
574
|
+
# Cancels a resize operation for a cluster.
|
575
575
|
#
|
576
576
|
# @option params [required, String] :cluster_identifier
|
577
577
|
# The unique identifier for the cluster that you want to cancel a resize
|
@@ -760,7 +760,7 @@ module Aws::Redshift
|
|
760
760
|
req.send_request(options)
|
761
761
|
end
|
762
762
|
|
763
|
-
# Creates a new cluster.
|
763
|
+
# Creates a new cluster with the specified parameters.
|
764
764
|
#
|
765
765
|
# To create a cluster in Virtual Private Cloud (VPC), you must provide a
|
766
766
|
# cluster subnet group name. The cluster subnet group identifies the
|
@@ -905,7 +905,7 @@ module Aws::Redshift
|
|
905
905
|
# Default: A random, system-chosen Availability Zone in the region that
|
906
906
|
# is specified by the endpoint.
|
907
907
|
#
|
908
|
-
# Example: `us-east-
|
908
|
+
# Example: `us-east-2d`
|
909
909
|
#
|
910
910
|
# Constraint: The specified Availability Zone must be in the same region
|
911
911
|
# as the current endpoint.
|
@@ -1648,7 +1648,7 @@ module Aws::Redshift
|
|
1648
1648
|
# must specify a source type in order to specify source IDs.
|
1649
1649
|
#
|
1650
1650
|
# Valid values: cluster, cluster-parameter-group,
|
1651
|
-
# cluster-security-group, and
|
1651
|
+
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
1652
1652
|
#
|
1653
1653
|
# @option params [Array<String>] :source_ids
|
1654
1654
|
# A list of one or more identifiers of Amazon Redshift source objects.
|
@@ -2033,7 +2033,7 @@ module Aws::Redshift
|
|
2033
2033
|
req.send_request(options)
|
2034
2034
|
end
|
2035
2035
|
|
2036
|
-
# Creates a
|
2036
|
+
# Creates a snapshot schedule with the rate of every 12 hours.
|
2037
2037
|
#
|
2038
2038
|
# @option params [Array<String>] :schedule_definitions
|
2039
2039
|
# The definition of the snapshot schedule. The definition is made up of
|
@@ -2105,7 +2105,7 @@ module Aws::Redshift
|
|
2105
2105
|
req.send_request(options)
|
2106
2106
|
end
|
2107
2107
|
|
2108
|
-
# Adds
|
2108
|
+
# Adds tags to a cluster.
|
2109
2109
|
#
|
2110
2110
|
# A resource can have up to 50 tags. If you try to create more than 50
|
2111
2111
|
# tags for a resource, you will receive an error and the attempt will
|
@@ -2116,7 +2116,7 @@ module Aws::Redshift
|
|
2116
2116
|
#
|
2117
2117
|
# @option params [required, String] :resource_name
|
2118
2118
|
# The Amazon Resource Name (ARN) to which you want to add the tag or
|
2119
|
-
# tags. For example, `arn:aws:redshift:us-east-
|
2119
|
+
# tags. For example, `arn:aws:redshift:us-east-2:123456789:cluster:t1`.
|
2120
2120
|
#
|
2121
2121
|
# @option params [required, Array<Types::Tag>] :tags
|
2122
2122
|
# One or more name/value pairs to add as tags to the specified resource.
|
@@ -2149,12 +2149,13 @@ module Aws::Redshift
|
|
2149
2149
|
req.send_request(options)
|
2150
2150
|
end
|
2151
2151
|
|
2152
|
-
# Deletes a previously provisioned cluster
|
2153
|
-
#
|
2154
|
-
#
|
2155
|
-
#
|
2156
|
-
#
|
2157
|
-
# Clusters][1] in the *Amazon
|
2152
|
+
# Deletes a previously provisioned cluster without its final snapshot
|
2153
|
+
# being created. A successful response from the web service indicates
|
2154
|
+
# that the request was received correctly. Use DescribeClusters to
|
2155
|
+
# monitor the status of the deletion. The delete operation cannot be
|
2156
|
+
# canceled or reverted once submitted. For more information about
|
2157
|
+
# managing clusters, go to [Amazon Redshift Clusters][1] in the *Amazon
|
2158
|
+
# Redshift Cluster Management Guide*.
|
2158
2159
|
#
|
2159
2160
|
# If you want to shut down the cluster and retain it for future use, set
|
2160
2161
|
# *SkipFinalClusterSnapshot* to `false` and specify a name for
|
@@ -2647,13 +2648,13 @@ module Aws::Redshift
|
|
2647
2648
|
req.send_request(options)
|
2648
2649
|
end
|
2649
2650
|
|
2650
|
-
# Deletes
|
2651
|
-
#
|
2651
|
+
# Deletes tags from a resource. You must provide the ARN of the resource
|
2652
|
+
# from which you want to delete the tag or tags.
|
2652
2653
|
#
|
2653
2654
|
# @option params [required, String] :resource_name
|
2654
2655
|
# The Amazon Resource Name (ARN) from which you want to remove the tag
|
2655
2656
|
# or tags. For example,
|
2656
|
-
# `arn:aws:redshift:us-east-
|
2657
|
+
# `arn:aws:redshift:us-east-2:123456789:cluster:t1`.
|
2657
2658
|
#
|
2658
2659
|
# @option params [required, Array<String>] :tag_keys
|
2659
2660
|
# The tag key that you want to delete.
|
@@ -3779,8 +3780,8 @@ module Aws::Redshift
|
|
3779
3780
|
# The source type, such as cluster or parameter group, to which the
|
3780
3781
|
# described event categories apply.
|
3781
3782
|
#
|
3782
|
-
# Valid values: cluster, cluster-snapshot, cluster-parameter-group,
|
3783
|
-
# cluster-security-group.
|
3783
|
+
# Valid values: cluster, cluster-snapshot, cluster-parameter-group,
|
3784
|
+
# cluster-security-group, and scheduled-action.
|
3784
3785
|
#
|
3785
3786
|
# @return [Types::EventCategoriesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3786
3787
|
#
|
@@ -4913,8 +4914,7 @@ module Aws::Redshift
|
|
4913
4914
|
req.send_request(options)
|
4914
4915
|
end
|
4915
4916
|
|
4916
|
-
# Returns
|
4917
|
-
# megabytes.
|
4917
|
+
# Returns account level backups storage size and provisional storage.
|
4918
4918
|
#
|
4919
4919
|
# @return [Types::CustomerStorageMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4920
4920
|
#
|
@@ -5034,7 +5034,7 @@ module Aws::Redshift
|
|
5034
5034
|
# @option params [String] :resource_name
|
5035
5035
|
# The Amazon Resource Name (ARN) for which you want to describe the tag
|
5036
5036
|
# or tags. For example,
|
5037
|
-
# `arn:aws:redshift:us-east-
|
5037
|
+
# `arn:aws:redshift:us-east-2:123456789:cluster:t1`.
|
5038
5038
|
#
|
5039
5039
|
# @option params [String] :resource_type
|
5040
5040
|
# The type of resource with which you want to view tags. Valid resource
|
@@ -5754,20 +5754,21 @@ module Aws::Redshift
|
|
5754
5754
|
req.send_request(options)
|
5755
5755
|
end
|
5756
5756
|
|
5757
|
-
# Modifies the settings for a cluster.
|
5758
|
-
# security or parameter group, update the preferred maintenance window,
|
5759
|
-
# or change the master user password. Resetting a cluster password or
|
5760
|
-
# modifying the security groups associated with a cluster do not need a
|
5761
|
-
# reboot. However, modifying a parameter group requires a reboot for
|
5762
|
-
# parameters to take effect. For more information about managing
|
5763
|
-
# clusters, go to [Amazon Redshift Clusters][1] in the *Amazon Redshift
|
5764
|
-
# Cluster Management Guide*.
|
5757
|
+
# Modifies the settings for a cluster.
|
5765
5758
|
#
|
5766
5759
|
# You can also change node type and the number of nodes to scale up or
|
5767
5760
|
# down the cluster. When resizing a cluster, you must specify both the
|
5768
5761
|
# number of nodes and the node type even if one of the parameters does
|
5769
5762
|
# not change.
|
5770
5763
|
#
|
5764
|
+
# You can add another security or parameter group, or change the master
|
5765
|
+
# user password. Resetting a cluster password or modifying the security
|
5766
|
+
# groups associated with a cluster do not need a reboot. However,
|
5767
|
+
# modifying a parameter group requires a reboot for parameters to take
|
5768
|
+
# effect. For more information about managing clusters, go to [Amazon
|
5769
|
+
# Redshift Clusters][1] in the *Amazon Redshift Cluster Management
|
5770
|
+
# Guide*.
|
5771
|
+
#
|
5771
5772
|
#
|
5772
5773
|
#
|
5773
5774
|
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
|
@@ -5793,33 +5794,31 @@ module Aws::Redshift
|
|
5793
5794
|
# The new node type of the cluster. If you specify a new node type, you
|
5794
5795
|
# must also specify the number of nodes parameter.
|
5795
5796
|
#
|
5796
|
-
#
|
5797
|
-
#
|
5798
|
-
#
|
5799
|
-
# will be a temporary outage while the old cluster is deleted and your
|
5800
|
-
# connection is switched to the new cluster. When the new connection is
|
5801
|
-
# complete, the original access permissions for the cluster are
|
5802
|
-
# restored. You can use DescribeResize to track the progress of the
|
5803
|
-
# resize request.
|
5797
|
+
# For more information about resizing clusters, go to [Resizing Clusters
|
5798
|
+
# in Amazon Redshift][1] in the *Amazon Redshift Cluster Management
|
5799
|
+
# Guide*.
|
5804
5800
|
#
|
5805
5801
|
# Valid Values: `ds2.xlarge` \| `ds2.8xlarge` \| `dc1.large` \|
|
5806
5802
|
# `dc1.8xlarge` \| `dc2.large` \| `dc2.8xlarge` \| `ra3.16xlarge`
|
5807
5803
|
#
|
5804
|
+
#
|
5805
|
+
#
|
5806
|
+
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html
|
5807
|
+
#
|
5808
5808
|
# @option params [Integer] :number_of_nodes
|
5809
5809
|
# The new number of nodes of the cluster. If you specify a new number of
|
5810
5810
|
# nodes, you must also specify the node type parameter.
|
5811
5811
|
#
|
5812
|
-
#
|
5813
|
-
#
|
5814
|
-
#
|
5815
|
-
# will be a temporary outage while the old cluster is deleted and your
|
5816
|
-
# connection is switched to the new cluster. When the new connection is
|
5817
|
-
# complete, the original access permissions for the cluster are
|
5818
|
-
# restored. You can use DescribeResize to track the progress of the
|
5819
|
-
# resize request.
|
5812
|
+
# For more information about resizing clusters, go to [Resizing Clusters
|
5813
|
+
# in Amazon Redshift][1] in the *Amazon Redshift Cluster Management
|
5814
|
+
# Guide*.
|
5820
5815
|
#
|
5821
5816
|
# Valid Values: Integer greater than `0`.
|
5822
5817
|
#
|
5818
|
+
#
|
5819
|
+
#
|
5820
|
+
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html
|
5821
|
+
#
|
5823
5822
|
# @option params [Array<String>] :cluster_security_groups
|
5824
5823
|
# A list of cluster security groups to be authorized on this cluster.
|
5825
5824
|
# This change is asynchronously applied as soon as possible.
|
@@ -6010,12 +6009,14 @@ module Aws::Redshift
|
|
6010
6009
|
# this point, the maintenance track name is applied.
|
6011
6010
|
#
|
6012
6011
|
# @option params [Boolean] :encrypted
|
6013
|
-
# Indicates whether the cluster is encrypted. If the
|
6014
|
-
#
|
6015
|
-
#
|
6016
|
-
# provide a `KmsKeyId`, we
|
6017
|
-
#
|
6018
|
-
#
|
6012
|
+
# Indicates whether the cluster is encrypted. If the value is encrypted
|
6013
|
+
# (true) and you provide a value for the `KmsKeyId` parameter, we
|
6014
|
+
# encrypt the cluster with the provided `KmsKeyId`. If you don't
|
6015
|
+
# provide a `KmsKeyId`, we encrypt with the default key. In the China
|
6016
|
+
# region we use legacy encryption if you specify that the cluster is
|
6017
|
+
# encrypted.
|
6018
|
+
#
|
6019
|
+
# If the value is not encrypted (false), then the cluster is decrypted.
|
6019
6020
|
#
|
6020
6021
|
# @option params [String] :kms_key_id
|
6021
6022
|
# The AWS Key Management Service (KMS) key ID of the encryption key that
|
@@ -6428,8 +6429,7 @@ module Aws::Redshift
|
|
6428
6429
|
req.send_request(options)
|
6429
6430
|
end
|
6430
6431
|
|
6431
|
-
# Modifies the maintenance settings of a cluster.
|
6432
|
-
# defer a maintenance window. You can also update or cancel a deferment.
|
6432
|
+
# Modifies the maintenance settings of a cluster.
|
6433
6433
|
#
|
6434
6434
|
# @option params [required, String] :cluster_identifier
|
6435
6435
|
# A unique identifier for the cluster.
|
@@ -6640,6 +6640,9 @@ module Aws::Redshift
|
|
6640
6640
|
|
6641
6641
|
# Modifies the settings for a snapshot.
|
6642
6642
|
#
|
6643
|
+
# This exanmple modifies the manual retention period setting for a
|
6644
|
+
# cluster snapshot.
|
6645
|
+
#
|
6643
6646
|
# @option params [required, String] :snapshot_identifier
|
6644
6647
|
# The identifier of the snapshot whose setting you want to modify.
|
6645
6648
|
#
|
@@ -6820,7 +6823,7 @@ module Aws::Redshift
|
|
6820
6823
|
# must specify a source type in order to specify source IDs.
|
6821
6824
|
#
|
6822
6825
|
# Valid values: cluster, cluster-parameter-group,
|
6823
|
-
# cluster-security-group, and
|
6826
|
+
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
6824
6827
|
#
|
6825
6828
|
# @option params [Array<String>] :source_ids
|
6826
6829
|
# A list of one or more identifiers of Amazon Redshift source objects.
|
@@ -6892,7 +6895,7 @@ module Aws::Redshift
|
|
6892
6895
|
req.send_request(options)
|
6893
6896
|
end
|
6894
6897
|
|
6895
|
-
#
|
6898
|
+
# Modifies a scheduled action.
|
6896
6899
|
#
|
6897
6900
|
# @option params [required, String] :scheduled_action_name
|
6898
6901
|
# The name of the scheduled action to modify.
|
@@ -7677,7 +7680,7 @@ module Aws::Redshift
|
|
7677
7680
|
#
|
7678
7681
|
# Default: A random, system-chosen Availability Zone.
|
7679
7682
|
#
|
7680
|
-
# Example: `us-east-
|
7683
|
+
# Example: `us-east-2a`
|
7681
7684
|
#
|
7682
7685
|
# @option params [Boolean] :allow_version_upgrade
|
7683
7686
|
# If `true`, major version upgrades can be applied during the
|
@@ -8383,7 +8386,7 @@ module Aws::Redshift
|
|
8383
8386
|
params: params,
|
8384
8387
|
config: config)
|
8385
8388
|
context[:gem_name] = 'aws-sdk-redshift'
|
8386
|
-
context[:gem_version] = '1.
|
8389
|
+
context[:gem_version] = '1.36.0'
|
8387
8390
|
Seahorse::Client::Request.new(handlers, context)
|
8388
8391
|
end
|
8389
8392
|
|
@@ -1517,7 +1517,7 @@ module Aws::Redshift
|
|
1517
1517
|
# Default: A random, system-chosen Availability Zone in the region
|
1518
1518
|
# that is specified by the endpoint.
|
1519
1519
|
#
|
1520
|
-
# Example: `us-east-
|
1520
|
+
# Example: `us-east-2d`
|
1521
1521
|
#
|
1522
1522
|
# Constraint: The specified Availability Zone must be in the same
|
1523
1523
|
# region as the current endpoint.
|
@@ -2088,7 +2088,7 @@ module Aws::Redshift
|
|
2088
2088
|
# IDs.
|
2089
2089
|
#
|
2090
2090
|
# Valid values: cluster, cluster-parameter-group,
|
2091
|
-
# cluster-security-group, and
|
2091
|
+
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
2092
2092
|
# @return [String]
|
2093
2093
|
#
|
2094
2094
|
# @!attribute [rw] source_ids
|
@@ -2498,7 +2498,7 @@ module Aws::Redshift
|
|
2498
2498
|
# @!attribute [rw] resource_name
|
2499
2499
|
# The Amazon Resource Name (ARN) to which you want to add the tag or
|
2500
2500
|
# tags. For example,
|
2501
|
-
# `arn:aws:redshift:us-east-
|
2501
|
+
# `arn:aws:redshift:us-east-2:123456789:cluster:t1`.
|
2502
2502
|
# @return [String]
|
2503
2503
|
#
|
2504
2504
|
# @!attribute [rw] tags
|
@@ -2942,7 +2942,7 @@ module Aws::Redshift
|
|
2942
2942
|
# @!attribute [rw] resource_name
|
2943
2943
|
# The Amazon Resource Name (ARN) from which you want to remove the tag
|
2944
2944
|
# or tags. For example,
|
2945
|
-
# `arn:aws:redshift:us-east-
|
2945
|
+
# `arn:aws:redshift:us-east-2:123456789:cluster:t1`.
|
2946
2946
|
# @return [String]
|
2947
2947
|
#
|
2948
2948
|
# @!attribute [rw] tag_keys
|
@@ -3692,7 +3692,7 @@ module Aws::Redshift
|
|
3692
3692
|
# described event categories apply.
|
3693
3693
|
#
|
3694
3694
|
# Valid values: cluster, cluster-snapshot, cluster-parameter-group,
|
3695
|
-
#
|
3695
|
+
# cluster-security-group, and scheduled-action.
|
3696
3696
|
# @return [String]
|
3697
3697
|
#
|
3698
3698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEventCategoriesMessage AWS API Documentation
|
@@ -4598,7 +4598,7 @@ module Aws::Redshift
|
|
4598
4598
|
# @!attribute [rw] resource_name
|
4599
4599
|
# The Amazon Resource Name (ARN) for which you want to describe the
|
4600
4600
|
# tag or tags. For example,
|
4601
|
-
# `arn:aws:redshift:us-east-
|
4601
|
+
# `arn:aws:redshift:us-east-2:123456789:cluster:t1`.
|
4602
4602
|
# @return [String]
|
4603
4603
|
#
|
4604
4604
|
# @!attribute [rw] resource_type
|
@@ -5076,8 +5076,10 @@ module Aws::Redshift
|
|
5076
5076
|
# @return [Time]
|
5077
5077
|
#
|
5078
5078
|
# @!attribute [rw] source_type
|
5079
|
-
# The source type of the events returned the Amazon Redshift event
|
5080
|
-
# notification, such as cluster,
|
5079
|
+
# The source type of the events returned by the Amazon Redshift event
|
5080
|
+
# notification, such as cluster, cluster-snapshot,
|
5081
|
+
# cluster-parameter-group, cluster-security-group, or
|
5082
|
+
# scheduled-action.
|
5081
5083
|
# @return [String]
|
5082
5084
|
#
|
5083
5085
|
# @!attribute [rw] source_ids_list
|
@@ -5781,33 +5783,31 @@ module Aws::Redshift
|
|
5781
5783
|
# The new node type of the cluster. If you specify a new node type,
|
5782
5784
|
# you must also specify the number of nodes parameter.
|
5783
5785
|
#
|
5784
|
-
#
|
5785
|
-
#
|
5786
|
-
#
|
5787
|
-
# requirements, there will be a temporary outage while the old cluster
|
5788
|
-
# is deleted and your connection is switched to the new cluster. When
|
5789
|
-
# the new connection is complete, the original access permissions for
|
5790
|
-
# the cluster are restored. You can use DescribeResize to track the
|
5791
|
-
# progress of the resize request.
|
5786
|
+
# For more information about resizing clusters, go to [Resizing
|
5787
|
+
# Clusters in Amazon Redshift][1] in the *Amazon Redshift Cluster
|
5788
|
+
# Management Guide*.
|
5792
5789
|
#
|
5793
5790
|
# Valid Values: `ds2.xlarge` \| `ds2.8xlarge` \| `dc1.large` \|
|
5794
5791
|
# `dc1.8xlarge` \| `dc2.large` \| `dc2.8xlarge` \| `ra3.16xlarge`
|
5792
|
+
#
|
5793
|
+
#
|
5794
|
+
#
|
5795
|
+
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html
|
5795
5796
|
# @return [String]
|
5796
5797
|
#
|
5797
5798
|
# @!attribute [rw] number_of_nodes
|
5798
5799
|
# The new number of nodes of the cluster. If you specify a new number
|
5799
5800
|
# of nodes, you must also specify the node type parameter.
|
5800
5801
|
#
|
5801
|
-
#
|
5802
|
-
#
|
5803
|
-
#
|
5804
|
-
# requirements, there will be a temporary outage while the old cluster
|
5805
|
-
# is deleted and your connection is switched to the new cluster. When
|
5806
|
-
# the new connection is complete, the original access permissions for
|
5807
|
-
# the cluster are restored. You can use DescribeResize to track the
|
5808
|
-
# progress of the resize request.
|
5802
|
+
# For more information about resizing clusters, go to [Resizing
|
5803
|
+
# Clusters in Amazon Redshift][1] in the *Amazon Redshift Cluster
|
5804
|
+
# Management Guide*.
|
5809
5805
|
#
|
5810
5806
|
# Valid Values: Integer greater than `0`.
|
5807
|
+
#
|
5808
|
+
#
|
5809
|
+
#
|
5810
|
+
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html
|
5811
5811
|
# @return [Integer]
|
5812
5812
|
#
|
5813
5813
|
# @!attribute [rw] cluster_security_groups
|
@@ -6017,12 +6017,15 @@ module Aws::Redshift
|
|
6017
6017
|
# @return [String]
|
6018
6018
|
#
|
6019
6019
|
# @!attribute [rw] encrypted
|
6020
|
-
# Indicates whether the cluster is encrypted. If the
|
6021
|
-
# encrypted and you provide a value for the `KmsKeyId`
|
6022
|
-
#
|
6023
|
-
# provide a `KmsKeyId`, we
|
6024
|
-
# China region we
|
6020
|
+
# Indicates whether the cluster is encrypted. If the value is
|
6021
|
+
# encrypted (true) and you provide a value for the `KmsKeyId`
|
6022
|
+
# parameter, we encrypt the cluster with the provided `KmsKeyId`. If
|
6023
|
+
# you don't provide a `KmsKeyId`, we encrypt with the default key. In
|
6024
|
+
# the China region we use legacy encryption if you specify that the
|
6025
6025
|
# cluster is encrypted.
|
6026
|
+
#
|
6027
|
+
# If the value is not encrypted (false), then the cluster is
|
6028
|
+
# decrypted.
|
6026
6029
|
# @return [Boolean]
|
6027
6030
|
#
|
6028
6031
|
# @!attribute [rw] kms_key_id
|
@@ -6268,7 +6271,7 @@ module Aws::Redshift
|
|
6268
6271
|
# IDs.
|
6269
6272
|
#
|
6270
6273
|
# Valid values: cluster, cluster-parameter-group,
|
6271
|
-
# cluster-security-group, and
|
6274
|
+
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
6272
6275
|
# @return [String]
|
6273
6276
|
#
|
6274
6277
|
# @!attribute [rw] source_ids
|
@@ -7401,7 +7404,7 @@ module Aws::Redshift
|
|
7401
7404
|
#
|
7402
7405
|
# Default: A random, system-chosen Availability Zone.
|
7403
7406
|
#
|
7404
|
-
# Example: `us-east-
|
7407
|
+
# Example: `us-east-2a`
|
7405
7408
|
# @return [String]
|
7406
7409
|
#
|
7407
7410
|
# @!attribute [rw] allow_version_upgrade
|
@@ -8685,7 +8688,7 @@ module Aws::Redshift
|
|
8685
8688
|
#
|
8686
8689
|
# @!attribute [rw] resource_name
|
8687
8690
|
# The Amazon Resource Name (ARN) with which the tag is associated, for
|
8688
|
-
# example: `arn:aws:redshift:us-east-
|
8691
|
+
# example: `arn:aws:redshift:us-east-2:123456789:cluster:t1`.
|
8689
8692
|
# @return [String]
|
8690
8693
|
#
|
8691
8694
|
# @!attribute [rw] resource_type
|
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.36.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:
|
11
|
+
date: 2020-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|