aws-sdk-redshift 1.81.0 → 1.82.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 +13 -8
- data/lib/aws-sdk-redshift/client_api.rb +1 -0
- data/lib/aws-sdk-redshift/types.rb +10 -3
- 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: c42ee2c42afc0c9c9d9b8a091061102c79a6b02c4fe305715038cc94860f1902
|
4
|
+
data.tar.gz: df17f29b34fd27c78a5ce1651624dd90d174835b450054dffbb0cdbf2d511955
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 163bbd98c9dbbd841f0e59d27687d25222a4f6970702067ce7237e752af5d4dd9fab6211ba5ce91c210ebf590b9a8add1885ac3c5ad27855dc05e6a75bc0bd94
|
7
|
+
data.tar.gz: 12beb7595214b46950adab475c4836b4c759cb4a47ece2487612a76cf4089c8f432026af6b6d8919123427a2ba379fc511c84c91c13a974f03af431b72b27cfc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.82.0 (2022-05-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introduces new field 'LoadSampleData' in CreateCluster operation. Customers can now specify 'LoadSampleData' option during creation of a cluster, which results in loading of sample data in the cluster that is created.
|
8
|
+
|
4
9
|
1.81.0 (2022-04-19)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.82.0
|
@@ -598,7 +598,7 @@ module Aws::Redshift
|
|
598
598
|
# From a data producer account, authorizes the sharing of a datashare
|
599
599
|
# with one or more consumer accounts or managing entities. To authorize
|
600
600
|
# a datashare for a data consumer, the producer account must have the
|
601
|
-
# correct access
|
601
|
+
# correct access permissions.
|
602
602
|
#
|
603
603
|
# @option params [required, String] :data_share_arn
|
604
604
|
# The Amazon Resource Name (ARN) of the datashare that producers are to
|
@@ -1466,6 +1466,10 @@ module Aws::Redshift
|
|
1466
1466
|
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
1467
1467
|
# default for the cluster when the cluster was created.
|
1468
1468
|
#
|
1469
|
+
# @option params [String] :load_sample_data
|
1470
|
+
# A flag that specifies whether to load sample data once the cluster is
|
1471
|
+
# created.
|
1472
|
+
#
|
1469
1473
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1470
1474
|
#
|
1471
1475
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1511,6 +1515,7 @@ module Aws::Redshift
|
|
1511
1515
|
# availability_zone_relocation: false,
|
1512
1516
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1513
1517
|
# default_iam_role_arn: "String",
|
1518
|
+
# load_sample_data: "String",
|
1514
1519
|
# })
|
1515
1520
|
#
|
1516
1521
|
# @example Response structure
|
@@ -2733,8 +2738,8 @@ module Aws::Redshift
|
|
2733
2738
|
req.send_request(options)
|
2734
2739
|
end
|
2735
2740
|
|
2736
|
-
# From
|
2737
|
-
# datashare.
|
2741
|
+
# From a datashare producer account, removes authorization from the
|
2742
|
+
# specified datashare.
|
2738
2743
|
#
|
2739
2744
|
# @option params [required, String] :data_share_arn
|
2740
2745
|
# The Amazon Resource Name (ARN) of the datashare to remove
|
@@ -6836,8 +6841,8 @@ module Aws::Redshift
|
|
6836
6841
|
req.send_request(options)
|
6837
6842
|
end
|
6838
6843
|
|
6839
|
-
# From a consumer account, remove association for the
|
6840
|
-
# datashare.
|
6844
|
+
# From a datashare consumer account, remove association for the
|
6845
|
+
# specified datashare.
|
6841
6846
|
#
|
6842
6847
|
# @option params [required, String] :data_share_arn
|
6843
6848
|
# The Amazon Resource Name (ARN) of the datashare to remove association
|
@@ -7192,7 +7197,7 @@ module Aws::Redshift
|
|
7192
7197
|
# the `redshift:JoinGroup` action with access to the listed `dbgroups`.
|
7193
7198
|
#
|
7194
7199
|
# In addition, if the `AutoCreate` parameter is set to `True`, then the
|
7195
|
-
# policy must include the `redshift:CreateClusterUser`
|
7200
|
+
# policy must include the `redshift:CreateClusterUser` permission.
|
7196
7201
|
#
|
7197
7202
|
# If the `DbName` parameter is specified, the IAM policy must allow
|
7198
7203
|
# access to the resource `dbname` for the specified database name.
|
@@ -9636,7 +9641,7 @@ module Aws::Redshift
|
|
9636
9641
|
req.send_request(options)
|
9637
9642
|
end
|
9638
9643
|
|
9639
|
-
# From
|
9644
|
+
# From a datashare consumer account, rejects the specified datashare.
|
9640
9645
|
#
|
9641
9646
|
# @option params [required, String] :data_share_arn
|
9642
9647
|
# The Amazon Resource Name (ARN) of the datashare to reject.
|
@@ -11068,7 +11073,7 @@ module Aws::Redshift
|
|
11068
11073
|
params: params,
|
11069
11074
|
config: config)
|
11070
11075
|
context[:gem_name] = 'aws-sdk-redshift'
|
11071
|
-
context[:gem_version] = '1.
|
11076
|
+
context[:gem_version] = '1.82.0'
|
11072
11077
|
Seahorse::Client::Request.new(handlers, context)
|
11073
11078
|
end
|
11074
11079
|
|
@@ -927,6 +927,7 @@ module Aws::Redshift
|
|
927
927
|
CreateClusterMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
|
928
928
|
CreateClusterMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
929
929
|
CreateClusterMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
|
930
|
+
CreateClusterMessage.add_member(:load_sample_data, Shapes::ShapeRef.new(shape: String, location_name: "LoadSampleData"))
|
930
931
|
CreateClusterMessage.struct_class = Types::CreateClusterMessage
|
931
932
|
|
932
933
|
CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
|
@@ -1001,7 +1001,7 @@ module Aws::Redshift
|
|
1001
1001
|
# A database user name that is authorized to log on to the database
|
1002
1002
|
# `DbName` using the password `DbPassword`. If the specified DbUser
|
1003
1003
|
# exists in the database, the new user name has the same database
|
1004
|
-
#
|
1004
|
+
# permissions as the the user named in DbUser. By default, the user is
|
1005
1005
|
# added to PUBLIC. If the `DbGroups` parameter is specifed, `DbUser`
|
1006
1006
|
# is added to the listed groups for any sessions created using these
|
1007
1007
|
# credentials.
|
@@ -1880,6 +1880,7 @@ module Aws::Redshift
|
|
1880
1880
|
# availability_zone_relocation: false,
|
1881
1881
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1882
1882
|
# default_iam_role_arn: "String",
|
1883
|
+
# load_sample_data: "String",
|
1883
1884
|
# }
|
1884
1885
|
#
|
1885
1886
|
# @!attribute [rw] db_name
|
@@ -2265,6 +2266,11 @@ module Aws::Redshift
|
|
2265
2266
|
# default for the cluster when the cluster was created.
|
2266
2267
|
# @return [String]
|
2267
2268
|
#
|
2269
|
+
# @!attribute [rw] load_sample_data
|
2270
|
+
# A flag that specifies whether to load sample data once the cluster
|
2271
|
+
# is created.
|
2272
|
+
# @return [String]
|
2273
|
+
#
|
2268
2274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2269
2275
|
#
|
2270
2276
|
class CreateClusterMessage < Struct.new(
|
@@ -2300,7 +2306,8 @@ module Aws::Redshift
|
|
2300
2306
|
:snapshot_schedule_identifier,
|
2301
2307
|
:availability_zone_relocation,
|
2302
2308
|
:aqua_configuration_status,
|
2303
|
-
:default_iam_role_arn
|
2309
|
+
:default_iam_role_arn,
|
2310
|
+
:load_sample_data)
|
2304
2311
|
SENSITIVE = []
|
2305
2312
|
include Aws::Structure
|
2306
2313
|
end
|
@@ -3252,7 +3259,7 @@ module Aws::Redshift
|
|
3252
3259
|
#
|
3253
3260
|
# @!attribute [rw] data_share_associations
|
3254
3261
|
# A value that specifies when the datashare has an association between
|
3255
|
-
#
|
3262
|
+
# producer and data consumers.
|
3256
3263
|
# @return [Array<Types::DataShareAssociation>]
|
3257
3264
|
#
|
3258
3265
|
# @!attribute [rw] managed_by
|
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.82.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: 2022-
|
11
|
+
date: 2022-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|