aws-sdk-redshift 1.73.0 → 1.77.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +35 -8
- data/lib/aws-sdk-redshift/client_api.rb +1 -0
- data/lib/aws-sdk-redshift/types.rb +9 -3
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f265f732dd417bbaeb04b7affa366689b64246bde9cbd1331acf5878f91540a
|
4
|
+
data.tar.gz: db466c6ff6097687e0a020b96579dd693c0d56f2d86114420feeb29351417d5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03c449137c2969f2193a14d436f3c2c7c604ee3d6d77df3f4a7679c469388b4c1768e9df35535eb61bce5eae5ddb00f743055e0ab95d79a1bf3ba452289537c3
|
7
|
+
data.tar.gz: 8cebe307dd0019c737b065ba2b1711a1d00d4de5343b2bba19770a6fe8192eadb722fd200f67343666f5802337c5837cf136a888bbe03f5e446ca7f3f94c4659
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.77.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.76.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.75.0 (2021-12-20)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds API support for managed Redshift datashares. Customers can now interact with a Redshift datashare that is managed by a different service, such as AWS Data Exchange.
|
18
|
+
|
19
|
+
1.74.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.73.0 (2021-11-23)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.77.0
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::Redshift
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::Query)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::Redshift
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::Redshift
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::Redshift
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::Redshift
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -456,6 +469,7 @@ module Aws::Redshift
|
|
456
469
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
457
470
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
458
471
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
472
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
459
473
|
#
|
460
474
|
# @example Request syntax with placeholder values
|
461
475
|
#
|
@@ -475,6 +489,7 @@ module Aws::Redshift
|
|
475
489
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
476
490
|
# resp.data_share_associations[0].created_date #=> Time
|
477
491
|
# resp.data_share_associations[0].status_change_date #=> Time
|
492
|
+
# resp.managed_by #=> String
|
478
493
|
#
|
479
494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AssociateDataShareConsumer AWS API Documentation
|
480
495
|
#
|
@@ -572,9 +587,9 @@ module Aws::Redshift
|
|
572
587
|
end
|
573
588
|
|
574
589
|
# From a data producer account, authorizes the sharing of a datashare
|
575
|
-
# with one or more consumer accounts. To authorize
|
576
|
-
# data consumer, the producer account must have the
|
577
|
-
# privileges.
|
590
|
+
# with one or more consumer accounts or managing entities. To authorize
|
591
|
+
# a datashare for a data consumer, the producer account must have the
|
592
|
+
# correct access privileges.
|
578
593
|
#
|
579
594
|
# @option params [required, String] :data_share_arn
|
580
595
|
# The Amazon Resource Name (ARN) of the datashare that producers are to
|
@@ -582,7 +597,8 @@ module Aws::Redshift
|
|
582
597
|
#
|
583
598
|
# @option params [required, String] :consumer_identifier
|
584
599
|
# The identifier of the data consumer that is authorized to access the
|
585
|
-
# datashare. This identifier is an Amazon Web Services account ID
|
600
|
+
# datashare. This identifier is an Amazon Web Services account ID or a
|
601
|
+
# keyword, such as ADX.
|
586
602
|
#
|
587
603
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
588
604
|
#
|
@@ -590,6 +606,7 @@ module Aws::Redshift
|
|
590
606
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
591
607
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
592
608
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
609
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
593
610
|
#
|
594
611
|
# @example Request syntax with placeholder values
|
595
612
|
#
|
@@ -608,6 +625,7 @@ module Aws::Redshift
|
|
608
625
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
609
626
|
# resp.data_share_associations[0].created_date #=> Time
|
610
627
|
# resp.data_share_associations[0].status_change_date #=> Time
|
628
|
+
# resp.managed_by #=> String
|
611
629
|
#
|
612
630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShare AWS API Documentation
|
613
631
|
#
|
@@ -2708,7 +2726,7 @@ module Aws::Redshift
|
|
2708
2726
|
# @option params [required, String] :consumer_identifier
|
2709
2727
|
# The identifier of the data consumer that is to have authorization
|
2710
2728
|
# removed from the datashare. This identifier is an Amazon Web Services
|
2711
|
-
# account ID.
|
2729
|
+
# account ID or a keyword, such as ADX.
|
2712
2730
|
#
|
2713
2731
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2714
2732
|
#
|
@@ -2716,6 +2734,7 @@ module Aws::Redshift
|
|
2716
2734
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
2717
2735
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
2718
2736
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
2737
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
2719
2738
|
#
|
2720
2739
|
# @example Request syntax with placeholder values
|
2721
2740
|
#
|
@@ -2734,6 +2753,7 @@ module Aws::Redshift
|
|
2734
2753
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
2735
2754
|
# resp.data_share_associations[0].created_date #=> Time
|
2736
2755
|
# resp.data_share_associations[0].status_change_date #=> Time
|
2756
|
+
# resp.managed_by #=> String
|
2737
2757
|
#
|
2738
2758
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShare AWS API Documentation
|
2739
2759
|
#
|
@@ -4601,6 +4621,7 @@ module Aws::Redshift
|
|
4601
4621
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4602
4622
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4603
4623
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4624
|
+
# resp.data_shares[0].managed_by #=> String
|
4604
4625
|
# resp.marker #=> String
|
4605
4626
|
#
|
4606
4627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataShares AWS API Documentation
|
@@ -4667,6 +4688,7 @@ module Aws::Redshift
|
|
4667
4688
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4668
4689
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4669
4690
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4691
|
+
# resp.data_shares[0].managed_by #=> String
|
4670
4692
|
# resp.marker #=> String
|
4671
4693
|
#
|
4672
4694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumer AWS API Documentation
|
@@ -4733,6 +4755,7 @@ module Aws::Redshift
|
|
4733
4755
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4734
4756
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4735
4757
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4758
|
+
# resp.data_shares[0].managed_by #=> String
|
4736
4759
|
# resp.marker #=> String
|
4737
4760
|
#
|
4738
4761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducer AWS API Documentation
|
@@ -6803,6 +6826,7 @@ module Aws::Redshift
|
|
6803
6826
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
6804
6827
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
6805
6828
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
6829
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
6806
6830
|
#
|
6807
6831
|
# @example Request syntax with placeholder values
|
6808
6832
|
#
|
@@ -6822,6 +6846,7 @@ module Aws::Redshift
|
|
6822
6846
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
6823
6847
|
# resp.data_share_associations[0].created_date #=> Time
|
6824
6848
|
# resp.data_share_associations[0].status_change_date #=> Time
|
6849
|
+
# resp.managed_by #=> String
|
6825
6850
|
#
|
6826
6851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisassociateDataShareConsumer AWS API Documentation
|
6827
6852
|
#
|
@@ -9566,6 +9591,7 @@ module Aws::Redshift
|
|
9566
9591
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
9567
9592
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
9568
9593
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
9594
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
9569
9595
|
#
|
9570
9596
|
# @example Request syntax with placeholder values
|
9571
9597
|
#
|
@@ -9583,6 +9609,7 @@ module Aws::Redshift
|
|
9583
9609
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
9584
9610
|
# resp.data_share_associations[0].created_date #=> Time
|
9585
9611
|
# resp.data_share_associations[0].status_change_date #=> Time
|
9612
|
+
# resp.managed_by #=> String
|
9586
9613
|
#
|
9587
9614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RejectDataShare AWS API Documentation
|
9588
9615
|
#
|
@@ -10969,7 +10996,7 @@ module Aws::Redshift
|
|
10969
10996
|
params: params,
|
10970
10997
|
config: config)
|
10971
10998
|
context[:gem_name] = 'aws-sdk-redshift'
|
10972
|
-
context[:gem_version] = '1.
|
10999
|
+
context[:gem_version] = '1.77.0'
|
10973
11000
|
Seahorse::Client::Request.new(handlers, context)
|
10974
11001
|
end
|
10975
11002
|
|
@@ -1050,6 +1050,7 @@ module Aws::Redshift
|
|
1050
1050
|
DataShare.add_member(:producer_arn, Shapes::ShapeRef.new(shape: String, location_name: "ProducerArn"))
|
1051
1051
|
DataShare.add_member(:allow_publicly_accessible_consumers, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowPubliclyAccessibleConsumers"))
|
1052
1052
|
DataShare.add_member(:data_share_associations, Shapes::ShapeRef.new(shape: DataShareAssociationList, location_name: "DataShareAssociations"))
|
1053
|
+
DataShare.add_member(:managed_by, Shapes::ShapeRef.new(shape: String, location_name: "ManagedBy"))
|
1053
1054
|
DataShare.struct_class = Types::DataShare
|
1054
1055
|
|
1055
1056
|
DataShareAssociation.add_member(:consumer_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ConsumerIdentifier"))
|
@@ -329,7 +329,8 @@ 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 Amazon Web Services account ID
|
332
|
+
# datashare. This identifier is an Amazon Web Services account ID or a
|
333
|
+
# keyword, such as ADX.
|
333
334
|
# @return [String]
|
334
335
|
#
|
335
336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShareMessage AWS API Documentation
|
@@ -3239,13 +3240,18 @@ module Aws::Redshift
|
|
3239
3240
|
# a producer and data consumers.
|
3240
3241
|
# @return [Array<Types::DataShareAssociation>]
|
3241
3242
|
#
|
3243
|
+
# @!attribute [rw] managed_by
|
3244
|
+
# The identifier of a datashare to show its managing entity.
|
3245
|
+
# @return [String]
|
3246
|
+
#
|
3242
3247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DataShare AWS API Documentation
|
3243
3248
|
#
|
3244
3249
|
class DataShare < Struct.new(
|
3245
3250
|
:data_share_arn,
|
3246
3251
|
:producer_arn,
|
3247
3252
|
:allow_publicly_accessible_consumers,
|
3248
|
-
:data_share_associations
|
3253
|
+
:data_share_associations,
|
3254
|
+
:managed_by)
|
3249
3255
|
SENSITIVE = []
|
3250
3256
|
include Aws::Structure
|
3251
3257
|
end
|
@@ -3341,7 +3347,7 @@ module Aws::Redshift
|
|
3341
3347
|
# @!attribute [rw] consumer_identifier
|
3342
3348
|
# The identifier of the data consumer that is to have authorization
|
3343
3349
|
# removed from the datashare. This identifier is an Amazon Web
|
3344
|
-
# Services account ID.
|
3350
|
+
# Services account ID or a keyword, such as ADX.
|
3345
3351
|
# @return [String]
|
3346
3352
|
#
|
3347
3353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShareMessage AWS API Documentation
|
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.77.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: 2022-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.126.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|