aws-sdk-quicksight 1.106.0 → 1.107.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: 5c47a6506f2a2ff6266630499f635fe7268907ab4e0a42dad0bc7ce6971fca0a
4
- data.tar.gz: d209774bae6003883eb4f90a9813671bc93f3633686c7081297ed8a9b532b7ad
3
+ metadata.gz: cdc57bf4dda44f9d48bc98b9cb4dc4ecbd04c908d150005323620f511817535b
4
+ data.tar.gz: 99a0a31ae5e1877b817f60269886b7d6881aaca0dd229d98ea7a5cb32329d0a0
5
5
  SHA512:
6
- metadata.gz: bd36e46298cf5049082df2da69e7b9712ef078779a4323b542fe0ee1ae9d69ad873a21bf65bf157b2d40feecd9e7b79e854ee4e87c48e3100b087ce8e888d201
7
- data.tar.gz: b1b9b3528248fd973f6661bb811213408d68fddae80e65c1abcc75a714be537b442daf094ad47928e3efab14e3844db23c2515a3a6152c9a4a93915abb12820d
6
+ metadata.gz: 494e300875359ad4bbc872bd9c876027b9db4c15387991d36f2ba2ce471ec76913737616ddb368039b21d8cf16de9b7f48f9506cb76300fd5d6ab53021c4da92
7
+ data.tar.gz: 7ed6210020c04f144185f51228e6db31e27a1ae83de028b60767bebf3ca6cf799fa9f85f4b9d8cfdb89cdbb10812627d252b7851b39127ea45473a15085bf52c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.107.0 (2024-04-05)
5
+ ------------------
6
+
7
+ * Feature - Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription
8
+
4
9
  1.106.0 (2024-03-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.106.0
1
+ 1.107.0
@@ -694,6 +694,9 @@ module Aws::QuickSight
694
694
  # `ENTERPPRISE_AND_Q` is the selected edition of the new Amazon
695
695
  # QuickSight account.
696
696
  #
697
+ # @option params [String] :iam_identity_center_instance_arn
698
+ # The Amazon Resource Name (ARN) for the IAM Identity Center instance.
699
+ #
697
700
  # @return [Types::CreateAccountSubscriptionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
698
701
  #
699
702
  # * {Types::CreateAccountSubscriptionResponse#signup_response #signup_response} => Types::SignupResponse
@@ -718,6 +721,7 @@ module Aws::QuickSight
718
721
  # last_name: "String",
719
722
  # email_address: "String",
720
723
  # contact_number: "String",
724
+ # iam_identity_center_instance_arn: "String",
721
725
  # })
722
726
  #
723
727
  # @example Response structure
@@ -13565,7 +13569,7 @@ module Aws::QuickSight
13565
13569
  params: params,
13566
13570
  config: config)
13567
13571
  context[:gem_name] = 'aws-sdk-quicksight'
13568
- context[:gem_version] = '1.106.0'
13572
+ context[:gem_version] = '1.107.0'
13569
13573
  Seahorse::Client::Request.new(handlers, context)
13570
13574
  end
13571
13575
 
@@ -2776,6 +2776,7 @@ module Aws::QuickSight
2776
2776
  CreateAccountSubscriptionRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: String, location_name: "LastName"))
2777
2777
  CreateAccountSubscriptionRequest.add_member(:email_address, Shapes::ShapeRef.new(shape: String, location_name: "EmailAddress"))
2778
2778
  CreateAccountSubscriptionRequest.add_member(:contact_number, Shapes::ShapeRef.new(shape: String, location_name: "ContactNumber"))
2779
+ CreateAccountSubscriptionRequest.add_member(:iam_identity_center_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "IAMIdentityCenterInstanceArn"))
2779
2780
  CreateAccountSubscriptionRequest.struct_class = Types::CreateAccountSubscriptionRequest
2780
2781
 
2781
2782
  CreateAccountSubscriptionResponse.add_member(:signup_response, Shapes::ShapeRef.new(shape: SignupResponse, location_name: "SignupResponse"))
@@ -272,8 +272,10 @@ module Aws::QuickSight
272
272
  include Aws::Structure
273
273
  end
274
274
 
275
- # The configuration for applying a filter to all sheets. You can apply
276
- # this filter to all visuals on every sheet.
275
+ # An empty object that represents that the `AllSheets` option is the
276
+ # chosen value for the `FilterScopeConfiguration` parameter. This
277
+ # structure applies the filter to all visuals on all sheets of an
278
+ # Analysis, Dashboard, or Template.
277
279
  #
278
280
  # This is a union type structure. For this structure to be valid, only
279
281
  # one of the attributes can be defined.
@@ -4551,6 +4553,10 @@ module Aws::QuickSight
4551
4553
  # QuickSight account.
4552
4554
  # @return [String]
4553
4555
  #
4556
+ # @!attribute [rw] iam_identity_center_instance_arn
4557
+ # The Amazon Resource Name (ARN) for the IAM Identity Center instance.
4558
+ # @return [String]
4559
+ #
4554
4560
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAccountSubscriptionRequest AWS API Documentation
4555
4561
  #
4556
4562
  class CreateAccountSubscriptionRequest < Struct.new(
@@ -4568,7 +4574,8 @@ module Aws::QuickSight
4568
4574
  :first_name,
4569
4575
  :last_name,
4570
4576
  :email_address,
4571
- :contact_number)
4577
+ :contact_number,
4578
+ :iam_identity_center_instance_arn)
4572
4579
  SENSITIVE = []
4573
4580
  include Aws::Structure
4574
4581
  end
@@ -14080,7 +14087,11 @@ module Aws::QuickSight
14080
14087
  # @return [Types::SelectedSheetsFilterScopeConfiguration]
14081
14088
  #
14082
14089
  # @!attribute [rw] all_sheets
14083
- # The configuration for applying a filter to all sheets.
14090
+ # The configuration that applies a filter to all sheets. When you
14091
+ # choose `AllSheets` as the value for a `FilterScopeConfiguration`,
14092
+ # this filter is applied to all visuals of all sheets in an Analysis,
14093
+ # Dashboard, or Template. The `AllSheetsFilterScopeConfiguration` is
14094
+ # chosen.
14084
14095
  # @return [Types::AllSheetsFilterScopeConfiguration]
14085
14096
  #
14086
14097
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterScopeConfiguration AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.106.0'
55
+ GEM_VERSION = '1.107.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -135,7 +135,8 @@ module Aws
135
135
  ?first_name: ::String,
136
136
  ?last_name: ::String,
137
137
  ?email_address: ::String,
138
- ?contact_number: ::String
138
+ ?contact_number: ::String,
139
+ ?iam_identity_center_instance_arn: ::String
139
140
  ) -> _CreateAccountSubscriptionResponseSuccess
140
141
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccountSubscriptionResponseSuccess
141
142
 
data/sig/types.rbs CHANGED
@@ -1158,6 +1158,7 @@ module Aws::QuickSight
1158
1158
  attr_accessor last_name: ::String
1159
1159
  attr_accessor email_address: ::String
1160
1160
  attr_accessor contact_number: ::String
1161
+ attr_accessor iam_identity_center_instance_arn: ::String
1161
1162
  SENSITIVE: []
1162
1163
  end
1163
1164
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.106.0
4
+ version: 1.107.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: 2024-03-28 00:00:00.000000000 Z
11
+ date: 2024-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core