aws-sdk-quicksight 1.124.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 +10 -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 +188 -708
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +12 -1
- 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 +4 -4
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,16 @@
|
|
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
|
+
|
9
|
+
1.125.0 (2024-09-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.124.0 (2024-09-10)
|
5
15
|
------------------
|
6
16
|
|
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"
|