aws-sdk-redshift 1.146.0 → 1.147.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: 2a1096849f550bb18f1acd923d078405b690e475fd7d1ede6679ee4c7b1a50c3
4
- data.tar.gz: 5405a6b1f04d25689cb7b334ce516028383ac266bfa139af637519c8b64ee2f1
3
+ metadata.gz: '09eac4e76792cca22e090f4a1b0b6b2e7894beae3bc9a0f188d43f2e506cab59'
4
+ data.tar.gz: e25fcc1596413e71d0734216f016b39f80521e55c3042d20ee22455cb3d01599
5
5
  SHA512:
6
- metadata.gz: f75c8a356b45b2635c50f021b0bed35bfa34fc546b1c5272a84c1731ee51c250b4fcb6cd4bda13a9bbed029d50136afd0f2c15bd771aac3df364bb4a1354e184
7
- data.tar.gz: b9209a662298633df0ee8dc368f4d54d817d20e81d3968f5420e45a5dfc2169e7629f5cdc62f0d10f1708cfc4c49d970255995e89caf24bdf0e63ccbef2273d0
6
+ metadata.gz: 3ce99ad3a859c17c6fcd383a0c325302427b4639e2a2a1b1d802b36d233ec5bbdb9f50d5a8dd96e81db03ad8a14501c766e04d9c6105a516561ebef40e829309
7
+ data.tar.gz: f83f1f256b16e4028933b5b1ee708706bbbaf256e8c5b019e5db20c0a1e6e92f958bae4c7120b504bf78dac91f8b3de8f943be2f71ba5660f2e0e0ce6a40af6a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.147.0 (2025-09-26)
5
+ ------------------
6
+
7
+ * Feature - Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications
8
+
4
9
  1.146.0 (2025-08-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.146.0
1
+ 1.147.0
@@ -2766,6 +2766,14 @@ module Aws::Redshift
2766
2766
  # A collection of service integrations for the Redshift IAM Identity
2767
2767
  # Center application.
2768
2768
  #
2769
+ # @option params [Array<Types::Tag>] :tags
2770
+ # A list of tags.
2771
+ #
2772
+ # @option params [Array<String>] :sso_tag_keys
2773
+ # A list of tags keys that Redshift Identity Center applications copy to
2774
+ # IAM Identity Center. For each input key, the tag corresponding to the
2775
+ # key-value pair is propagated.
2776
+ #
2769
2777
  # @return [Types::CreateRedshiftIdcApplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2770
2778
  #
2771
2779
  # * {Types::CreateRedshiftIdcApplicationResult#redshift_idc_application #redshift_idc_application} => Types::RedshiftIdcApplication
@@ -2802,6 +2810,13 @@ module Aws::Redshift
2802
2810
  # ],
2803
2811
  # },
2804
2812
  # ],
2813
+ # tags: [
2814
+ # {
2815
+ # key: "String",
2816
+ # value: "String",
2817
+ # },
2818
+ # ],
2819
+ # sso_tag_keys: ["String"],
2805
2820
  # })
2806
2821
  #
2807
2822
  # @example Response structure
@@ -2823,6 +2838,11 @@ module Aws::Redshift
2823
2838
  # resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
2824
2839
  # resp.redshift_idc_application.service_integrations[0].s3_access_grants #=> Array
2825
2840
  # resp.redshift_idc_application.service_integrations[0].s3_access_grants[0].read_write_access.authorization #=> String, one of "Enabled", "Disabled"
2841
+ # resp.redshift_idc_application.tags #=> Array
2842
+ # resp.redshift_idc_application.tags[0].key #=> String
2843
+ # resp.redshift_idc_application.tags[0].value #=> String
2844
+ # resp.redshift_idc_application.sso_tag_keys #=> Array
2845
+ # resp.redshift_idc_application.sso_tag_keys[0] #=> String
2826
2846
  #
2827
2847
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateRedshiftIdcApplication AWS API Documentation
2828
2848
  #
@@ -6716,6 +6736,11 @@ module Aws::Redshift
6716
6736
  # resp.redshift_idc_applications[0].service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
6717
6737
  # resp.redshift_idc_applications[0].service_integrations[0].s3_access_grants #=> Array
6718
6738
  # resp.redshift_idc_applications[0].service_integrations[0].s3_access_grants[0].read_write_access.authorization #=> String, one of "Enabled", "Disabled"
6739
+ # resp.redshift_idc_applications[0].tags #=> Array
6740
+ # resp.redshift_idc_applications[0].tags[0].key #=> String
6741
+ # resp.redshift_idc_applications[0].tags[0].value #=> String
6742
+ # resp.redshift_idc_applications[0].sso_tag_keys #=> Array
6743
+ # resp.redshift_idc_applications[0].sso_tag_keys[0] #=> String
6719
6744
  # resp.marker #=> String
6720
6745
  #
6721
6746
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeRedshiftIdcApplications AWS API Documentation
@@ -10538,6 +10563,11 @@ module Aws::Redshift
10538
10563
  # resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
10539
10564
  # resp.redshift_idc_application.service_integrations[0].s3_access_grants #=> Array
10540
10565
  # resp.redshift_idc_application.service_integrations[0].s3_access_grants[0].read_write_access.authorization #=> String, one of "Enabled", "Disabled"
10566
+ # resp.redshift_idc_application.tags #=> Array
10567
+ # resp.redshift_idc_application.tags[0].key #=> String
10568
+ # resp.redshift_idc_application.tags[0].value #=> String
10569
+ # resp.redshift_idc_application.sso_tag_keys #=> Array
10570
+ # resp.redshift_idc_application.sso_tag_keys[0] #=> String
10541
10571
  #
10542
10572
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyRedshiftIdcApplication AWS API Documentation
10543
10573
  #
@@ -12968,7 +12998,7 @@ module Aws::Redshift
12968
12998
  tracer: tracer
12969
12999
  )
12970
13000
  context[:gem_name] = 'aws-sdk-redshift'
12971
- context[:gem_version] = '1.146.0'
13001
+ context[:gem_version] = '1.147.0'
12972
13002
  Seahorse::Client::Request.new(handlers, context)
12973
13003
  end
12974
13004
 
@@ -1194,6 +1194,8 @@ module Aws::Redshift
1194
1194
  CreateRedshiftIdcApplicationMessage.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "IamRoleArn"))
1195
1195
  CreateRedshiftIdcApplicationMessage.add_member(:authorized_token_issuer_list, Shapes::ShapeRef.new(shape: AuthorizedTokenIssuerList, location_name: "AuthorizedTokenIssuerList"))
1196
1196
  CreateRedshiftIdcApplicationMessage.add_member(:service_integrations, Shapes::ShapeRef.new(shape: ServiceIntegrationList, location_name: "ServiceIntegrations"))
1197
+ CreateRedshiftIdcApplicationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1198
+ CreateRedshiftIdcApplicationMessage.add_member(:sso_tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, location_name: "SsoTagKeys"))
1197
1199
  CreateRedshiftIdcApplicationMessage.struct_class = Types::CreateRedshiftIdcApplicationMessage
1198
1200
 
1199
1201
  CreateRedshiftIdcApplicationResult.add_member(:redshift_idc_application, Shapes::ShapeRef.new(shape: RedshiftIdcApplication, location_name: "RedshiftIdcApplication"))
@@ -2454,6 +2456,8 @@ module Aws::Redshift
2454
2456
  RedshiftIdcApplication.add_member(:idc_onboard_status, Shapes::ShapeRef.new(shape: String, location_name: "IdcOnboardStatus"))
2455
2457
  RedshiftIdcApplication.add_member(:authorized_token_issuer_list, Shapes::ShapeRef.new(shape: AuthorizedTokenIssuerList, location_name: "AuthorizedTokenIssuerList"))
2456
2458
  RedshiftIdcApplication.add_member(:service_integrations, Shapes::ShapeRef.new(shape: ServiceIntegrationList, location_name: "ServiceIntegrations"))
2459
+ RedshiftIdcApplication.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2460
+ RedshiftIdcApplication.add_member(:sso_tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, location_name: "SsoTagKeys"))
2457
2461
  RedshiftIdcApplication.struct_class = Types::RedshiftIdcApplication
2458
2462
 
2459
2463
  RedshiftIdcApplicationAlreadyExistsFault.struct_class = Types::RedshiftIdcApplicationAlreadyExistsFault
@@ -3385,6 +3389,8 @@ module Aws::Redshift
3385
3389
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3386
3390
  o.errors << Shapes::ShapeRef.new(shape: DependentServiceAccessDeniedFault)
3387
3391
  o.errors << Shapes::ShapeRef.new(shape: RedshiftIdcApplicationQuotaExceededFault)
3392
+ o.errors << Shapes::ShapeRef.new(shape: TagLimitExceededFault)
3393
+ o.errors << Shapes::ShapeRef.new(shape: InvalidTagFault)
3388
3394
  end)
3389
3395
 
3390
3396
  api.add_operation(:create_scheduled_action, Seahorse::Model::Operation.new.tap do |o|
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
- # WARNING ABOUT GENERATED CODE
3
- #
4
- # This file is generated. See the contributing for info on making contributions:
5
- # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
6
- #
7
- # WARNING ABOUT GENERATED CODE
8
-
@@ -2991,6 +2991,16 @@ module Aws::Redshift
2991
2991
  # Center application.
2992
2992
  # @return [Array<Types::ServiceIntegrationsUnion>]
2993
2993
  #
2994
+ # @!attribute [rw] tags
2995
+ # A list of tags.
2996
+ # @return [Array<Types::Tag>]
2997
+ #
2998
+ # @!attribute [rw] sso_tag_keys
2999
+ # A list of tags keys that Redshift Identity Center applications copy
3000
+ # to IAM Identity Center. For each input key, the tag corresponding to
3001
+ # the key-value pair is propagated.
3002
+ # @return [Array<String>]
3003
+ #
2994
3004
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateRedshiftIdcApplicationMessage AWS API Documentation
2995
3005
  #
2996
3006
  class CreateRedshiftIdcApplicationMessage < Struct.new(
@@ -3000,7 +3010,9 @@ module Aws::Redshift
3000
3010
  :idc_display_name,
3001
3011
  :iam_role_arn,
3002
3012
  :authorized_token_issuer_list,
3003
- :service_integrations)
3013
+ :service_integrations,
3014
+ :tags,
3015
+ :sso_tag_keys)
3004
3016
  SENSITIVE = []
3005
3017
  include Aws::Structure
3006
3018
  end
@@ -9843,6 +9855,16 @@ module Aws::Redshift
9843
9855
  # application.
9844
9856
  # @return [Array<Types::ServiceIntegrationsUnion>]
9845
9857
  #
9858
+ # @!attribute [rw] tags
9859
+ # A list of tags.
9860
+ # @return [Array<Types::Tag>]
9861
+ #
9862
+ # @!attribute [rw] sso_tag_keys
9863
+ # A list of tags keys that Redshift Identity Center applications copy
9864
+ # to IAM Identity Center. For each input key, the tag corresponding to
9865
+ # the key-value pair is propagated.
9866
+ # @return [Array<String>]
9867
+ #
9846
9868
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RedshiftIdcApplication AWS API Documentation
9847
9869
  #
9848
9870
  class RedshiftIdcApplication < Struct.new(
@@ -9855,7 +9877,9 @@ module Aws::Redshift
9855
9877
  :idc_managed_application_arn,
9856
9878
  :idc_onboard_status,
9857
9879
  :authorized_token_issuer_list,
9858
- :service_integrations)
9880
+ :service_integrations,
9881
+ :tags,
9882
+ :sso_tag_keys)
9859
9883
  SENSITIVE = []
9860
9884
  include Aws::Structure
9861
9885
  end
@@ -55,7 +55,7 @@ module Aws::Redshift
55
55
  autoload :EndpointProvider, 'aws-sdk-redshift/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-redshift/endpoints'
57
57
 
58
- GEM_VERSION = '1.146.0'
58
+ GEM_VERSION = '1.147.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -550,7 +550,14 @@ module Aws
550
550
  },
551
551
  ]?
552
552
  },
553
- ]
553
+ ],
554
+ ?tags: Array[
555
+ {
556
+ key: ::String?,
557
+ value: ::String?
558
+ },
559
+ ],
560
+ ?sso_tag_keys: Array[::String]
554
561
  ) -> _CreateRedshiftIdcApplicationResponseSuccess
555
562
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRedshiftIdcApplicationResponseSuccess
556
563
 
data/sig/types.rbs CHANGED
@@ -674,6 +674,8 @@ module Aws::Redshift
674
674
  attr_accessor iam_role_arn: ::String
675
675
  attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
676
676
  attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
677
+ attr_accessor tags: ::Array[Types::Tag]
678
+ attr_accessor sso_tag_keys: ::Array[::String]
677
679
  SENSITIVE: []
678
680
  end
679
681
 
@@ -2314,6 +2316,8 @@ module Aws::Redshift
2314
2316
  attr_accessor idc_onboard_status: ::String
2315
2317
  attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
2316
2318
  attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
2319
+ attr_accessor tags: ::Array[Types::Tag]
2320
+ attr_accessor sso_tag_keys: ::Array[::String]
2317
2321
  SENSITIVE: []
2318
2322
  end
2319
2323
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-redshift
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.146.0
4
+ version: 1.147.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services