aws-sdk-redshift 1.74.0 → 1.75.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: 73b1e535b8e3e4f7f639fc7579fa81f891caff51c4181035b22523702f9131d2
4
- data.tar.gz: 9cd01608fa5ee6a6fddccef751c907451c0acf614b4eb3f17675c0b30eeac15f
3
+ metadata.gz: 2d366e6040cfd7bb4a7bc4596d89c098d83bad4b8b2a57bb3f08eab77b7dcbc8
4
+ data.tar.gz: d3f42ec58c856cd47a4c08dfd13f84e7be4f070d45c9760f7b0a4f9ec3f0c3a2
5
5
  SHA512:
6
- metadata.gz: 982af42b8f2d5f8ff10ecb915283e8a1e0f14022a20e288e86d266143d9cef315eeb7f708163e2e3c526fd6274e5f5833f10ac2e1ec59728de770bfa2d05dec2
7
- data.tar.gz: 6ff6ff4bb0f30b26b1cedb74abdbd71a3b35e14eee4075719359ffb8047cc71829411fc2c1196fd5cac6a7869dc5029e43ceda3275968641ce1019841b460adc
6
+ metadata.gz: 138497473c67c76d1b354e071685e5a15e9a0f06cb9c3b87fda013c0e9a7969680f8e02fb36bab1b0b847aee790c6526fcff6a3950ca0a48ace6c75d630bb122
7
+ data.tar.gz: 7bd2a6ad7f674ee3e5d8ee6fb3ef6c798c5cee8f1da34dd15a21340f1b25185ac8cd3f5ec7b5b9d65a4a590e5d047c63f2b6cc7c88171764f33adfe7d2a5ef64
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2021-12-20)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.74.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.75.0
@@ -458,6 +458,7 @@ module Aws::Redshift
458
458
  # * {Types::DataShare#producer_arn #producer_arn} => String
459
459
  # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
460
460
  # * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
461
+ # * {Types::DataShare#managed_by #managed_by} => String
461
462
  #
462
463
  # @example Request syntax with placeholder values
463
464
  #
@@ -477,6 +478,7 @@ module Aws::Redshift
477
478
  # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
478
479
  # resp.data_share_associations[0].created_date #=> Time
479
480
  # resp.data_share_associations[0].status_change_date #=> Time
481
+ # resp.managed_by #=> String
480
482
  #
481
483
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AssociateDataShareConsumer AWS API Documentation
482
484
  #
@@ -574,9 +576,9 @@ module Aws::Redshift
574
576
  end
575
577
 
576
578
  # From a data producer account, authorizes the sharing of a datashare
577
- # with one or more consumer accounts. To authorize a datashare for a
578
- # data consumer, the producer account must have the correct access
579
- # privileges.
579
+ # with one or more consumer accounts or managing entities. To authorize
580
+ # a datashare for a data consumer, the producer account must have the
581
+ # correct access privileges.
580
582
  #
581
583
  # @option params [required, String] :data_share_arn
582
584
  # The Amazon Resource Name (ARN) of the datashare that producers are to
@@ -584,7 +586,8 @@ module Aws::Redshift
584
586
  #
585
587
  # @option params [required, String] :consumer_identifier
586
588
  # The identifier of the data consumer that is authorized to access the
587
- # datashare. This identifier is an Amazon Web Services account ID.
589
+ # datashare. This identifier is an Amazon Web Services account ID or a
590
+ # keyword, such as ADX.
588
591
  #
589
592
  # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
590
593
  #
@@ -592,6 +595,7 @@ module Aws::Redshift
592
595
  # * {Types::DataShare#producer_arn #producer_arn} => String
593
596
  # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
594
597
  # * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
598
+ # * {Types::DataShare#managed_by #managed_by} => String
595
599
  #
596
600
  # @example Request syntax with placeholder values
597
601
  #
@@ -610,6 +614,7 @@ module Aws::Redshift
610
614
  # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
611
615
  # resp.data_share_associations[0].created_date #=> Time
612
616
  # resp.data_share_associations[0].status_change_date #=> Time
617
+ # resp.managed_by #=> String
613
618
  #
614
619
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShare AWS API Documentation
615
620
  #
@@ -2710,7 +2715,7 @@ module Aws::Redshift
2710
2715
  # @option params [required, String] :consumer_identifier
2711
2716
  # The identifier of the data consumer that is to have authorization
2712
2717
  # removed from the datashare. This identifier is an Amazon Web Services
2713
- # account ID.
2718
+ # account ID or a keyword, such as ADX.
2714
2719
  #
2715
2720
  # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2716
2721
  #
@@ -2718,6 +2723,7 @@ module Aws::Redshift
2718
2723
  # * {Types::DataShare#producer_arn #producer_arn} => String
2719
2724
  # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
2720
2725
  # * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
2726
+ # * {Types::DataShare#managed_by #managed_by} => String
2721
2727
  #
2722
2728
  # @example Request syntax with placeholder values
2723
2729
  #
@@ -2736,6 +2742,7 @@ module Aws::Redshift
2736
2742
  # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
2737
2743
  # resp.data_share_associations[0].created_date #=> Time
2738
2744
  # resp.data_share_associations[0].status_change_date #=> Time
2745
+ # resp.managed_by #=> String
2739
2746
  #
2740
2747
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShare AWS API Documentation
2741
2748
  #
@@ -4603,6 +4610,7 @@ module Aws::Redshift
4603
4610
  # resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
4604
4611
  # resp.data_shares[0].data_share_associations[0].created_date #=> Time
4605
4612
  # resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
4613
+ # resp.data_shares[0].managed_by #=> String
4606
4614
  # resp.marker #=> String
4607
4615
  #
4608
4616
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataShares AWS API Documentation
@@ -4669,6 +4677,7 @@ module Aws::Redshift
4669
4677
  # resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
4670
4678
  # resp.data_shares[0].data_share_associations[0].created_date #=> Time
4671
4679
  # resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
4680
+ # resp.data_shares[0].managed_by #=> String
4672
4681
  # resp.marker #=> String
4673
4682
  #
4674
4683
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumer AWS API Documentation
@@ -4735,6 +4744,7 @@ module Aws::Redshift
4735
4744
  # resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
4736
4745
  # resp.data_shares[0].data_share_associations[0].created_date #=> Time
4737
4746
  # resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
4747
+ # resp.data_shares[0].managed_by #=> String
4738
4748
  # resp.marker #=> String
4739
4749
  #
4740
4750
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducer AWS API Documentation
@@ -6805,6 +6815,7 @@ module Aws::Redshift
6805
6815
  # * {Types::DataShare#producer_arn #producer_arn} => String
6806
6816
  # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
6807
6817
  # * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
6818
+ # * {Types::DataShare#managed_by #managed_by} => String
6808
6819
  #
6809
6820
  # @example Request syntax with placeholder values
6810
6821
  #
@@ -6824,6 +6835,7 @@ module Aws::Redshift
6824
6835
  # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
6825
6836
  # resp.data_share_associations[0].created_date #=> Time
6826
6837
  # resp.data_share_associations[0].status_change_date #=> Time
6838
+ # resp.managed_by #=> String
6827
6839
  #
6828
6840
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisassociateDataShareConsumer AWS API Documentation
6829
6841
  #
@@ -9568,6 +9580,7 @@ module Aws::Redshift
9568
9580
  # * {Types::DataShare#producer_arn #producer_arn} => String
9569
9581
  # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
9570
9582
  # * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
9583
+ # * {Types::DataShare#managed_by #managed_by} => String
9571
9584
  #
9572
9585
  # @example Request syntax with placeholder values
9573
9586
  #
@@ -9585,6 +9598,7 @@ module Aws::Redshift
9585
9598
  # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
9586
9599
  # resp.data_share_associations[0].created_date #=> Time
9587
9600
  # resp.data_share_associations[0].status_change_date #=> Time
9601
+ # resp.managed_by #=> String
9588
9602
  #
9589
9603
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RejectDataShare AWS API Documentation
9590
9604
  #
@@ -10971,7 +10985,7 @@ module Aws::Redshift
10971
10985
  params: params,
10972
10986
  config: config)
10973
10987
  context[:gem_name] = 'aws-sdk-redshift'
10974
- context[:gem_version] = '1.74.0'
10988
+ context[:gem_version] = '1.75.0'
10975
10989
  Seahorse::Client::Request.new(handlers, context)
10976
10990
  end
10977
10991
 
@@ -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
@@ -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.74.0'
52
+ GEM_VERSION = '1.75.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.74.0
4
+ version: 1.75.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-30 00:00:00.000000000 Z
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core