aws-sdk-quicksight 1.125.0 → 1.126.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +52 -1
- data/lib/aws-sdk-quicksight/client_api.rb +46 -0
- data/lib/aws-sdk-quicksight/endpoints.rb +11 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-quicksight/types.rb +108 -7
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +352 -168
- data/sig/types.rbs +23 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fb09f0ab7f78fdc2ae2c9e2fdf250990ec39efb39f51fad4e71fb03126d662f
|
4
|
+
data.tar.gz: 1ebd92467961aee702884d00c6c376bb8afc05e67288b227c79f1728719fc7d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea0f698a9547899984c12e0f86b98ab84f3241921b2814cedd07381061e5631fd8f9016362053f65c2d268c3cc32474fa56d17521da6b4980dd8006e2cfd4615
|
7
|
+
data.tar.gz: 449812dbf8afcd685e8c6faf26298d4db93d0909f9116f61fabce0039fa6750958b80e8b7df0e1ec0b0ec976932469db107ff474a1654344479721497fa40e04
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.126.0 (2024-09-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - QuickSight: 1. Add new API - ListFoldersForResource. 2. Commit mode adds visibility configuration of Apply button on multi-select controls for authors.
|
8
|
+
|
4
9
|
1.125.0 (2024-09-11)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.126.0
|
@@ -9158,6 +9158,57 @@ module Aws::QuickSight
|
|
9158
9158
|
req.send_request(options)
|
9159
9159
|
end
|
9160
9160
|
|
9161
|
+
# List all folders that a resource is a member of.
|
9162
|
+
#
|
9163
|
+
# @option params [required, String] :aws_account_id
|
9164
|
+
# The ID for the Amazon Web Services account that contains the resource.
|
9165
|
+
#
|
9166
|
+
# @option params [required, String] :resource_arn
|
9167
|
+
# The Amazon Resource Name (ARN) the resource whose folders you need to
|
9168
|
+
# list.
|
9169
|
+
#
|
9170
|
+
# @option params [String] :next_token
|
9171
|
+
# The token for the next set of results, or null if there are no more
|
9172
|
+
# results.
|
9173
|
+
#
|
9174
|
+
# @option params [Integer] :max_results
|
9175
|
+
# The maximum number of results to be returned per request.
|
9176
|
+
#
|
9177
|
+
# @return [Types::ListFoldersForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9178
|
+
#
|
9179
|
+
# * {Types::ListFoldersForResourceResponse#status #status} => Integer
|
9180
|
+
# * {Types::ListFoldersForResourceResponse#folders #folders} => Array<String>
|
9181
|
+
# * {Types::ListFoldersForResourceResponse#next_token #next_token} => String
|
9182
|
+
# * {Types::ListFoldersForResourceResponse#request_id #request_id} => String
|
9183
|
+
#
|
9184
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9185
|
+
#
|
9186
|
+
# @example Request syntax with placeholder values
|
9187
|
+
#
|
9188
|
+
# resp = client.list_folders_for_resource({
|
9189
|
+
# aws_account_id: "AwsAccountId", # required
|
9190
|
+
# resource_arn: "Arn", # required
|
9191
|
+
# next_token: "String",
|
9192
|
+
# max_results: 1,
|
9193
|
+
# })
|
9194
|
+
#
|
9195
|
+
# @example Response structure
|
9196
|
+
#
|
9197
|
+
# resp.status #=> Integer
|
9198
|
+
# resp.folders #=> Array
|
9199
|
+
# resp.folders[0] #=> String
|
9200
|
+
# resp.next_token #=> String
|
9201
|
+
# resp.request_id #=> String
|
9202
|
+
#
|
9203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListFoldersForResource AWS API Documentation
|
9204
|
+
#
|
9205
|
+
# @overload list_folders_for_resource(params = {})
|
9206
|
+
# @param [Hash] params ({})
|
9207
|
+
def list_folders_for_resource(params = {}, options = {})
|
9208
|
+
req = build_request(:list_folders_for_resource, params)
|
9209
|
+
req.send_request(options)
|
9210
|
+
end
|
9211
|
+
|
9161
9212
|
# Lists member users in a group.
|
9162
9213
|
#
|
9163
9214
|
# @option params [required, String] :group_name
|
@@ -15278,7 +15329,7 @@ module Aws::QuickSight
|
|
15278
15329
|
tracer: tracer
|
15279
15330
|
)
|
15280
15331
|
context[:gem_name] = 'aws-sdk-quicksight'
|
15281
|
-
context[:gem_version] = '1.
|
15332
|
+
context[:gem_version] = '1.126.0'
|
15282
15333
|
Seahorse::Client::Request.new(handlers, context)
|
15283
15334
|
end
|
15284
15335
|
|
@@ -328,6 +328,7 @@ module Aws::QuickSight
|
|
328
328
|
ComboChartFieldWells = Shapes::StructureShape.new(name: 'ComboChartFieldWells')
|
329
329
|
ComboChartSortConfiguration = Shapes::StructureShape.new(name: 'ComboChartSortConfiguration')
|
330
330
|
ComboChartVisual = Shapes::StructureShape.new(name: 'ComboChartVisual')
|
331
|
+
CommitMode = Shapes::StringShape.new(name: 'CommitMode')
|
331
332
|
ComparativeOrder = Shapes::StructureShape.new(name: 'ComparativeOrder')
|
332
333
|
ComparisonConfiguration = Shapes::StructureShape.new(name: 'ComparisonConfiguration')
|
333
334
|
ComparisonFormatConfiguration = Shapes::StructureShape.new(name: 'ComparisonFormatConfiguration')
|
@@ -808,6 +809,7 @@ module Aws::QuickSight
|
|
808
809
|
FolderSummary = Shapes::StructureShape.new(name: 'FolderSummary')
|
809
810
|
FolderSummaryList = Shapes::ListShape.new(name: 'FolderSummaryList')
|
810
811
|
FolderType = Shapes::StringShape.new(name: 'FolderType')
|
812
|
+
FoldersForResourceArnList = Shapes::ListShape.new(name: 'FoldersForResourceArnList')
|
811
813
|
Font = Shapes::StructureShape.new(name: 'Font')
|
812
814
|
FontConfiguration = Shapes::StructureShape.new(name: 'FontConfiguration')
|
813
815
|
FontDecoration = Shapes::StringShape.new(name: 'FontDecoration')
|
@@ -1043,6 +1045,8 @@ module Aws::QuickSight
|
|
1043
1045
|
ListDataSourcesResponse = Shapes::StructureShape.new(name: 'ListDataSourcesResponse')
|
1044
1046
|
ListFolderMembersRequest = Shapes::StructureShape.new(name: 'ListFolderMembersRequest')
|
1045
1047
|
ListFolderMembersResponse = Shapes::StructureShape.new(name: 'ListFolderMembersResponse')
|
1048
|
+
ListFoldersForResourceRequest = Shapes::StructureShape.new(name: 'ListFoldersForResourceRequest')
|
1049
|
+
ListFoldersForResourceResponse = Shapes::StructureShape.new(name: 'ListFoldersForResourceResponse')
|
1046
1050
|
ListFoldersRequest = Shapes::StructureShape.new(name: 'ListFoldersRequest')
|
1047
1051
|
ListFoldersResponse = Shapes::StructureShape.new(name: 'ListFoldersResponse')
|
1048
1052
|
ListGroupMembershipsRequest = Shapes::StructureShape.new(name: 'ListGroupMembershipsRequest')
|
@@ -3883,6 +3887,7 @@ module Aws::QuickSight
|
|
3883
3887
|
|
3884
3888
|
DefaultDateTimePickerControlOptions.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlDateTimePickerType, location_name: "Type"))
|
3885
3889
|
DefaultDateTimePickerControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: DateTimePickerControlDisplayOptions, location_name: "DisplayOptions"))
|
3890
|
+
DefaultDateTimePickerControlOptions.add_member(:commit_mode, Shapes::ShapeRef.new(shape: CommitMode, location_name: "CommitMode"))
|
3886
3891
|
DefaultDateTimePickerControlOptions.struct_class = Types::DefaultDateTimePickerControlOptions
|
3887
3892
|
|
3888
3893
|
DefaultFilterControlConfiguration.add_member(:title, Shapes::ShapeRef.new(shape: SheetControlTitle, required: true, location_name: "Title"))
|
@@ -3901,6 +3906,7 @@ module Aws::QuickSight
|
|
3901
3906
|
DefaultFilterDropDownControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: DropDownControlDisplayOptions, location_name: "DisplayOptions"))
|
3902
3907
|
DefaultFilterDropDownControlOptions.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlListType, location_name: "Type"))
|
3903
3908
|
DefaultFilterDropDownControlOptions.add_member(:selectable_values, Shapes::ShapeRef.new(shape: FilterSelectableValues, location_name: "SelectableValues"))
|
3909
|
+
DefaultFilterDropDownControlOptions.add_member(:commit_mode, Shapes::ShapeRef.new(shape: CommitMode, location_name: "CommitMode"))
|
3904
3910
|
DefaultFilterDropDownControlOptions.struct_class = Types::DefaultFilterDropDownControlOptions
|
3905
3911
|
|
3906
3912
|
DefaultFilterListControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: ListControlDisplayOptions, location_name: "DisplayOptions"))
|
@@ -3931,6 +3937,7 @@ module Aws::QuickSight
|
|
3931
3937
|
DefaultPaginatedLayoutConfiguration.struct_class = Types::DefaultPaginatedLayoutConfiguration
|
3932
3938
|
|
3933
3939
|
DefaultRelativeDateTimeControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: RelativeDateTimeControlDisplayOptions, location_name: "DisplayOptions"))
|
3940
|
+
DefaultRelativeDateTimeControlOptions.add_member(:commit_mode, Shapes::ShapeRef.new(shape: CommitMode, location_name: "CommitMode"))
|
3934
3941
|
DefaultRelativeDateTimeControlOptions.struct_class = Types::DefaultRelativeDateTimeControlOptions
|
3935
3942
|
|
3936
3943
|
DefaultSectionBasedLayoutConfiguration.add_member(:canvas_size_options, Shapes::ShapeRef.new(shape: SectionBasedLayoutCanvasSizeOptions, required: true, location_name: "CanvasSizeOptions"))
|
@@ -4943,6 +4950,7 @@ module Aws::QuickSight
|
|
4943
4950
|
FilterDateTimePickerControl.add_member(:source_filter_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "SourceFilterId"))
|
4944
4951
|
FilterDateTimePickerControl.add_member(:display_options, Shapes::ShapeRef.new(shape: DateTimePickerControlDisplayOptions, location_name: "DisplayOptions"))
|
4945
4952
|
FilterDateTimePickerControl.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlDateTimePickerType, location_name: "Type"))
|
4953
|
+
FilterDateTimePickerControl.add_member(:commit_mode, Shapes::ShapeRef.new(shape: CommitMode, location_name: "CommitMode"))
|
4946
4954
|
FilterDateTimePickerControl.struct_class = Types::FilterDateTimePickerControl
|
4947
4955
|
|
4948
4956
|
FilterDropDownControl.add_member(:filter_control_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterControlId"))
|
@@ -4952,6 +4960,7 @@ module Aws::QuickSight
|
|
4952
4960
|
FilterDropDownControl.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlListType, location_name: "Type"))
|
4953
4961
|
FilterDropDownControl.add_member(:selectable_values, Shapes::ShapeRef.new(shape: FilterSelectableValues, location_name: "SelectableValues"))
|
4954
4962
|
FilterDropDownControl.add_member(:cascading_control_configuration, Shapes::ShapeRef.new(shape: CascadingControlConfiguration, location_name: "CascadingControlConfiguration"))
|
4963
|
+
FilterDropDownControl.add_member(:commit_mode, Shapes::ShapeRef.new(shape: CommitMode, location_name: "CommitMode"))
|
4955
4964
|
FilterDropDownControl.struct_class = Types::FilterDropDownControl
|
4956
4965
|
|
4957
4966
|
FilterGroup.add_member(:filter_group_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterGroupId"))
|
@@ -4995,6 +5004,7 @@ module Aws::QuickSight
|
|
4995
5004
|
FilterRelativeDateTimeControl.add_member(:title, Shapes::ShapeRef.new(shape: SheetControlTitle, required: true, location_name: "Title"))
|
4996
5005
|
FilterRelativeDateTimeControl.add_member(:source_filter_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "SourceFilterId"))
|
4997
5006
|
FilterRelativeDateTimeControl.add_member(:display_options, Shapes::ShapeRef.new(shape: RelativeDateTimeControlDisplayOptions, location_name: "DisplayOptions"))
|
5007
|
+
FilterRelativeDateTimeControl.add_member(:commit_mode, Shapes::ShapeRef.new(shape: CommitMode, location_name: "CommitMode"))
|
4998
5008
|
FilterRelativeDateTimeControl.struct_class = Types::FilterRelativeDateTimeControl
|
4999
5009
|
|
5000
5010
|
FilterScopeConfiguration.add_member(:selected_sheets, Shapes::ShapeRef.new(shape: SelectedSheetsFilterScopeConfiguration, location_name: "SelectedSheets"))
|
@@ -5067,6 +5077,8 @@ module Aws::QuickSight
|
|
5067
5077
|
|
5068
5078
|
FolderSummaryList.member = Shapes::ShapeRef.new(shape: FolderSummary)
|
5069
5079
|
|
5080
|
+
FoldersForResourceArnList.member = Shapes::ShapeRef.new(shape: Arn)
|
5081
|
+
|
5070
5082
|
Font.add_member(:font_family, Shapes::ShapeRef.new(shape: String, location_name: "FontFamily"))
|
5071
5083
|
Font.struct_class = Types::Font
|
5072
5084
|
|
@@ -5926,6 +5938,18 @@ module Aws::QuickSight
|
|
5926
5938
|
ListFolderMembersResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
5927
5939
|
ListFolderMembersResponse.struct_class = Types::ListFolderMembersResponse
|
5928
5940
|
|
5941
|
+
ListFoldersForResourceRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
5942
|
+
ListFoldersForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "ResourceArn"))
|
5943
|
+
ListFoldersForResourceRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
5944
|
+
ListFoldersForResourceRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "max-results", metadata: {"box"=>true}))
|
5945
|
+
ListFoldersForResourceRequest.struct_class = Types::ListFoldersForResourceRequest
|
5946
|
+
|
5947
|
+
ListFoldersForResourceResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
5948
|
+
ListFoldersForResourceResponse.add_member(:folders, Shapes::ShapeRef.new(shape: FoldersForResourceArnList, location_name: "Folders"))
|
5949
|
+
ListFoldersForResourceResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
5950
|
+
ListFoldersForResourceResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
5951
|
+
ListFoldersForResourceResponse.struct_class = Types::ListFoldersForResourceResponse
|
5952
|
+
|
5929
5953
|
ListFoldersRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
5930
5954
|
ListFoldersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
5931
5955
|
ListFoldersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "max-results", metadata: {"box"=>true}))
|
@@ -6486,6 +6510,7 @@ module Aws::QuickSight
|
|
6486
6510
|
ParameterDropDownControl.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlListType, location_name: "Type"))
|
6487
6511
|
ParameterDropDownControl.add_member(:selectable_values, Shapes::ShapeRef.new(shape: ParameterSelectableValues, location_name: "SelectableValues"))
|
6488
6512
|
ParameterDropDownControl.add_member(:cascading_control_configuration, Shapes::ShapeRef.new(shape: CascadingControlConfiguration, location_name: "CascadingControlConfiguration"))
|
6513
|
+
ParameterDropDownControl.add_member(:commit_mode, Shapes::ShapeRef.new(shape: CommitMode, location_name: "CommitMode"))
|
6489
6514
|
ParameterDropDownControl.struct_class = Types::ParameterDropDownControl
|
6490
6515
|
|
6491
6516
|
ParameterListControl.add_member(:parameter_control_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "ParameterControlId"))
|
@@ -10782,6 +10807,27 @@ module Aws::QuickSight
|
|
10782
10807
|
)
|
10783
10808
|
end)
|
10784
10809
|
|
10810
|
+
api.add_operation(:list_folders_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
10811
|
+
o.name = "ListFoldersForResource"
|
10812
|
+
o.http_method = "GET"
|
10813
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/resource/{ResourceArn}/folders"
|
10814
|
+
o.input = Shapes::ShapeRef.new(shape: ListFoldersForResourceRequest)
|
10815
|
+
o.output = Shapes::ShapeRef.new(shape: ListFoldersForResourceResponse)
|
10816
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
10817
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
10818
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
10819
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
10820
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
10821
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedUserEditionException)
|
10822
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
10823
|
+
o[:pager] = Aws::Pager.new(
|
10824
|
+
limit_key: "max_results",
|
10825
|
+
tokens: {
|
10826
|
+
"next_token" => "next_token"
|
10827
|
+
}
|
10828
|
+
)
|
10829
|
+
end)
|
10830
|
+
|
10785
10831
|
api.add_operation(:list_group_memberships, Seahorse::Model::Operation.new.tap do |o|
|
10786
10832
|
o.name = "ListGroupMemberships"
|
10787
10833
|
o.http_method = "GET"
|
@@ -1189,6 +1189,17 @@ module Aws::QuickSight
|
|
1189
1189
|
end
|
1190
1190
|
end
|
1191
1191
|
|
1192
|
+
class ListFoldersForResource
|
1193
|
+
def self.build(context)
|
1194
|
+
Aws::QuickSight::EndpointParameters.new(
|
1195
|
+
region: context.config.region,
|
1196
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1197
|
+
use_fips: context.config.use_fips_endpoint,
|
1198
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
1199
|
+
)
|
1200
|
+
end
|
1201
|
+
end
|
1202
|
+
|
1192
1203
|
class ListGroupMemberships
|
1193
1204
|
def self.build(context)
|
1194
1205
|
Aws::QuickSight::EndpointParameters.new(
|
@@ -281,6 +281,8 @@ module Aws::QuickSight
|
|
281
281
|
Aws::QuickSight::Endpoints::ListFolderMembers.build(context)
|
282
282
|
when :list_folders
|
283
283
|
Aws::QuickSight::Endpoints::ListFolders.build(context)
|
284
|
+
when :list_folders_for_resource
|
285
|
+
Aws::QuickSight::Endpoints::ListFoldersForResource.build(context)
|
284
286
|
when :list_group_memberships
|
285
287
|
Aws::QuickSight::Endpoints::ListGroupMemberships.build(context)
|
286
288
|
when :list_groups
|
@@ -9593,11 +9593,17 @@ module Aws::QuickSight
|
|
9593
9593
|
# The display options of a control.
|
9594
9594
|
# @return [Types::DateTimePickerControlDisplayOptions]
|
9595
9595
|
#
|
9596
|
+
# @!attribute [rw] commit_mode
|
9597
|
+
# The visibility configuration of the Apply button on a
|
9598
|
+
# `DateTimePickerControl`.
|
9599
|
+
# @return [String]
|
9600
|
+
#
|
9596
9601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultDateTimePickerControlOptions AWS API Documentation
|
9597
9602
|
#
|
9598
9603
|
class DefaultDateTimePickerControlOptions < Struct.new(
|
9599
9604
|
:type,
|
9600
|
-
:display_options
|
9605
|
+
:display_options,
|
9606
|
+
:commit_mode)
|
9601
9607
|
SENSITIVE = []
|
9602
9608
|
include Aws::Structure
|
9603
9609
|
end
|
@@ -9695,12 +9701,18 @@ module Aws::QuickSight
|
|
9695
9701
|
# A list of selectable values that are used in a control.
|
9696
9702
|
# @return [Types::FilterSelectableValues]
|
9697
9703
|
#
|
9704
|
+
# @!attribute [rw] commit_mode
|
9705
|
+
# The visibility configuration of the Apply button on a
|
9706
|
+
# `FilterDropDownControl`.
|
9707
|
+
# @return [String]
|
9708
|
+
#
|
9698
9709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultFilterDropDownControlOptions AWS API Documentation
|
9699
9710
|
#
|
9700
9711
|
class DefaultFilterDropDownControlOptions < Struct.new(
|
9701
9712
|
:display_options,
|
9702
9713
|
:type,
|
9703
|
-
:selectable_values
|
9714
|
+
:selectable_values,
|
9715
|
+
:commit_mode)
|
9704
9716
|
SENSITIVE = []
|
9705
9717
|
include Aws::Structure
|
9706
9718
|
end
|
@@ -9856,10 +9868,16 @@ module Aws::QuickSight
|
|
9856
9868
|
# The display options of a control.
|
9857
9869
|
# @return [Types::RelativeDateTimeControlDisplayOptions]
|
9858
9870
|
#
|
9871
|
+
# @!attribute [rw] commit_mode
|
9872
|
+
# The visibility configuration of the Apply button on a
|
9873
|
+
# `RelativeDateTimeControl`.
|
9874
|
+
# @return [String]
|
9875
|
+
#
|
9859
9876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultRelativeDateTimeControlOptions AWS API Documentation
|
9860
9877
|
#
|
9861
9878
|
class DefaultRelativeDateTimeControlOptions < Struct.new(
|
9862
|
-
:display_options
|
9879
|
+
:display_options,
|
9880
|
+
:commit_mode)
|
9863
9881
|
SENSITIVE = []
|
9864
9882
|
include Aws::Structure
|
9865
9883
|
end
|
@@ -14786,6 +14804,11 @@ module Aws::QuickSight
|
|
14786
14804
|
# dropdown menu.
|
14787
14805
|
# @return [String]
|
14788
14806
|
#
|
14807
|
+
# @!attribute [rw] commit_mode
|
14808
|
+
# The visibility configurationof the Apply button on a
|
14809
|
+
# `DateTimePickerControl`.
|
14810
|
+
# @return [String]
|
14811
|
+
#
|
14789
14812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterDateTimePickerControl AWS API Documentation
|
14790
14813
|
#
|
14791
14814
|
class FilterDateTimePickerControl < Struct.new(
|
@@ -14793,7 +14816,8 @@ module Aws::QuickSight
|
|
14793
14816
|
:title,
|
14794
14817
|
:source_filter_id,
|
14795
14818
|
:display_options,
|
14796
|
-
:type
|
14819
|
+
:type,
|
14820
|
+
:commit_mode)
|
14797
14821
|
SENSITIVE = []
|
14798
14822
|
include Aws::Structure
|
14799
14823
|
end
|
@@ -14838,6 +14862,11 @@ module Aws::QuickSight
|
|
14838
14862
|
# controls.
|
14839
14863
|
# @return [Types::CascadingControlConfiguration]
|
14840
14864
|
#
|
14865
|
+
# @!attribute [rw] commit_mode
|
14866
|
+
# The visibility configuration of the Apply button on a
|
14867
|
+
# `FilterDropDownControl`.
|
14868
|
+
# @return [String]
|
14869
|
+
#
|
14841
14870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterDropDownControl AWS API Documentation
|
14842
14871
|
#
|
14843
14872
|
class FilterDropDownControl < Struct.new(
|
@@ -14847,7 +14876,8 @@ module Aws::QuickSight
|
|
14847
14876
|
:display_options,
|
14848
14877
|
:type,
|
14849
14878
|
:selectable_values,
|
14850
|
-
:cascading_control_configuration
|
14879
|
+
:cascading_control_configuration,
|
14880
|
+
:commit_mode)
|
14851
14881
|
SENSITIVE = []
|
14852
14882
|
include Aws::Structure
|
14853
14883
|
end
|
@@ -15087,13 +15117,19 @@ module Aws::QuickSight
|
|
15087
15117
|
# The display options of a control.
|
15088
15118
|
# @return [Types::RelativeDateTimeControlDisplayOptions]
|
15089
15119
|
#
|
15120
|
+
# @!attribute [rw] commit_mode
|
15121
|
+
# The visibility configuration of the Apply button on a
|
15122
|
+
# `FilterRelativeDateTimeControl`.
|
15123
|
+
# @return [String]
|
15124
|
+
#
|
15090
15125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterRelativeDateTimeControl AWS API Documentation
|
15091
15126
|
#
|
15092
15127
|
class FilterRelativeDateTimeControl < Struct.new(
|
15093
15128
|
:filter_control_id,
|
15094
15129
|
:title,
|
15095
15130
|
:source_filter_id,
|
15096
|
-
:display_options
|
15131
|
+
:display_options,
|
15132
|
+
:commit_mode)
|
15097
15133
|
SENSITIVE = []
|
15098
15134
|
include Aws::Structure
|
15099
15135
|
end
|
@@ -19618,6 +19654,65 @@ module Aws::QuickSight
|
|
19618
19654
|
include Aws::Structure
|
19619
19655
|
end
|
19620
19656
|
|
19657
|
+
# @!attribute [rw] aws_account_id
|
19658
|
+
# The ID for the Amazon Web Services account that contains the
|
19659
|
+
# resource.
|
19660
|
+
# @return [String]
|
19661
|
+
#
|
19662
|
+
# @!attribute [rw] resource_arn
|
19663
|
+
# The Amazon Resource Name (ARN) the resource whose folders you need
|
19664
|
+
# to list.
|
19665
|
+
# @return [String]
|
19666
|
+
#
|
19667
|
+
# @!attribute [rw] next_token
|
19668
|
+
# The token for the next set of results, or null if there are no more
|
19669
|
+
# results.
|
19670
|
+
# @return [String]
|
19671
|
+
#
|
19672
|
+
# @!attribute [rw] max_results
|
19673
|
+
# The maximum number of results to be returned per request.
|
19674
|
+
# @return [Integer]
|
19675
|
+
#
|
19676
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListFoldersForResourceRequest AWS API Documentation
|
19677
|
+
#
|
19678
|
+
class ListFoldersForResourceRequest < Struct.new(
|
19679
|
+
:aws_account_id,
|
19680
|
+
:resource_arn,
|
19681
|
+
:next_token,
|
19682
|
+
:max_results)
|
19683
|
+
SENSITIVE = []
|
19684
|
+
include Aws::Structure
|
19685
|
+
end
|
19686
|
+
|
19687
|
+
# @!attribute [rw] status
|
19688
|
+
# The HTTP status of the request.
|
19689
|
+
# @return [Integer]
|
19690
|
+
#
|
19691
|
+
# @!attribute [rw] folders
|
19692
|
+
# A list that contains the Amazon Resource Names (ARNs) of all folders
|
19693
|
+
# that the resource is a member of.
|
19694
|
+
# @return [Array<String>]
|
19695
|
+
#
|
19696
|
+
# @!attribute [rw] next_token
|
19697
|
+
# The token for the next set of results, or null if there are no more
|
19698
|
+
# results.
|
19699
|
+
# @return [String]
|
19700
|
+
#
|
19701
|
+
# @!attribute [rw] request_id
|
19702
|
+
# The Amazon Web Services request ID for this operation.
|
19703
|
+
# @return [String]
|
19704
|
+
#
|
19705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListFoldersForResourceResponse AWS API Documentation
|
19706
|
+
#
|
19707
|
+
class ListFoldersForResourceResponse < Struct.new(
|
19708
|
+
:status,
|
19709
|
+
:folders,
|
19710
|
+
:next_token,
|
19711
|
+
:request_id)
|
19712
|
+
SENSITIVE = []
|
19713
|
+
include Aws::Structure
|
19714
|
+
end
|
19715
|
+
|
19621
19716
|
# @!attribute [rw] aws_account_id
|
19622
19717
|
# The ID for the Amazon Web Services account that contains the folder.
|
19623
19718
|
# @return [String]
|
@@ -22320,6 +22415,11 @@ module Aws::QuickSight
|
|
22320
22415
|
# controls.
|
22321
22416
|
# @return [Types::CascadingControlConfiguration]
|
22322
22417
|
#
|
22418
|
+
# @!attribute [rw] commit_mode
|
22419
|
+
# The visibility configuration of the Apply button on a
|
22420
|
+
# `ParameterDropDownControl`.
|
22421
|
+
# @return [String]
|
22422
|
+
#
|
22323
22423
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ParameterDropDownControl AWS API Documentation
|
22324
22424
|
#
|
22325
22425
|
class ParameterDropDownControl < Struct.new(
|
@@ -22329,7 +22429,8 @@ module Aws::QuickSight
|
|
22329
22429
|
:display_options,
|
22330
22430
|
:type,
|
22331
22431
|
:selectable_values,
|
22332
|
-
:cascading_control_configuration
|
22432
|
+
:cascading_control_configuration,
|
22433
|
+
:commit_mode)
|
22333
22434
|
SENSITIVE = []
|
22334
22435
|
include Aws::Structure
|
22335
22436
|
end
|