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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 12078c9aa66902f5111dd3e895628d509c2e3e3575573523894ee0665693602b
4
- data.tar.gz: a96174d04d2016eefa76fd8e3004852f443611c4322b10b738b3522269cab226
3
+ metadata.gz: c42ee2c42afc0c9c9d9b8a091061102c79a6b02c4fe305715038cc94860f1902
4
+ data.tar.gz: df17f29b34fd27c78a5ce1651624dd90d174835b450054dffbb0cdbf2d511955
5
5
  SHA512:
6
- metadata.gz: 940086eb96b6c51dd8eb623749ec095c705fc8a21f9281fbfd385ada07c5f88b599a5ede011062e14c82e2b1eeab34a897ada240863f82c19a41c9c6ccae9926
7
- data.tar.gz: 3b18fb89c4ab7b0da1a3fb67f91ab41e5600ac434df8d49190966396101958dcd61b055ba021677339c7012c88e2b43787c9fdeaa94cb81c72ff298b4d4f6f9b
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.81.0
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 privileges.
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 the producer account, removes authorization from the specified
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 specified
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` privilege.
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 the consumer account, rejects the specified datashare.
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.81.0'
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
- # privileges as the the user named in DbUser. By default, the user is
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
- # a producer and data consumers.
3262
+ # producer and data consumers.
3256
3263
  # @return [Array<Types::DataShareAssociation>]
3257
3264
  #
3258
3265
  # @!attribute [rw] managed_by
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-redshift/customizations'
49
49
  # @!group service
50
50
  module Aws::Redshift
51
51
 
52
- GEM_VERSION = '1.81.0'
52
+ GEM_VERSION = '1.82.0'
53
53
 
54
54
  end
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.81.0
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-04-19 00:00:00.000000000 Z
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