aws-sdk-quicksight 1.135.0 → 1.136.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 +1121 -1
- data/lib/aws-sdk-quicksight/client_api.rb +607 -0
- data/lib/aws-sdk-quicksight/errors.rb +16 -0
- data/lib/aws-sdk-quicksight/types.rb +1252 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +421 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +385 -0
- metadata +2 -2
@@ -1807,6 +1807,254 @@ module Aws::QuickSight
|
|
1807
1807
|
req.send_request(options)
|
1808
1808
|
end
|
1809
1809
|
|
1810
|
+
# Creates an Amazon QuickSight brand.
|
1811
|
+
#
|
1812
|
+
# @option params [required, String] :aws_account_id
|
1813
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
1814
|
+
#
|
1815
|
+
# @option params [required, String] :brand_id
|
1816
|
+
# The ID of the Amazon QuickSight brand.
|
1817
|
+
#
|
1818
|
+
# @option params [Types::BrandDefinition] :brand_definition
|
1819
|
+
# The definition of the brand.
|
1820
|
+
#
|
1821
|
+
# @option params [Array<Types::Tag>] :tags
|
1822
|
+
# A map of the key-value pairs that are assigned to the brand.
|
1823
|
+
#
|
1824
|
+
# @return [Types::CreateBrandResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1825
|
+
#
|
1826
|
+
# * {Types::CreateBrandResponse#request_id #request_id} => String
|
1827
|
+
# * {Types::CreateBrandResponse#brand_detail #brand_detail} => Types::BrandDetail
|
1828
|
+
# * {Types::CreateBrandResponse#brand_definition #brand_definition} => Types::BrandDefinition
|
1829
|
+
#
|
1830
|
+
# @example Request syntax with placeholder values
|
1831
|
+
#
|
1832
|
+
# resp = client.create_brand({
|
1833
|
+
# aws_account_id: "AwsAccountId", # required
|
1834
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
1835
|
+
# brand_definition: {
|
1836
|
+
# brand_name: "Name", # required
|
1837
|
+
# description: "Description",
|
1838
|
+
# application_theme: {
|
1839
|
+
# brand_color_palette: {
|
1840
|
+
# primary: {
|
1841
|
+
# foreground: "HexColor",
|
1842
|
+
# background: "HexColor",
|
1843
|
+
# },
|
1844
|
+
# secondary: {
|
1845
|
+
# foreground: "HexColor",
|
1846
|
+
# background: "HexColor",
|
1847
|
+
# },
|
1848
|
+
# accent: {
|
1849
|
+
# foreground: "HexColor",
|
1850
|
+
# background: "HexColor",
|
1851
|
+
# },
|
1852
|
+
# measure: {
|
1853
|
+
# foreground: "HexColor",
|
1854
|
+
# background: "HexColor",
|
1855
|
+
# },
|
1856
|
+
# dimension: {
|
1857
|
+
# foreground: "HexColor",
|
1858
|
+
# background: "HexColor",
|
1859
|
+
# },
|
1860
|
+
# success: {
|
1861
|
+
# foreground: "HexColor",
|
1862
|
+
# background: "HexColor",
|
1863
|
+
# },
|
1864
|
+
# info: {
|
1865
|
+
# foreground: "HexColor",
|
1866
|
+
# background: "HexColor",
|
1867
|
+
# },
|
1868
|
+
# warning: {
|
1869
|
+
# foreground: "HexColor",
|
1870
|
+
# background: "HexColor",
|
1871
|
+
# },
|
1872
|
+
# danger: {
|
1873
|
+
# foreground: "HexColor",
|
1874
|
+
# background: "HexColor",
|
1875
|
+
# },
|
1876
|
+
# },
|
1877
|
+
# brand_element_style: {
|
1878
|
+
# navbar_style: {
|
1879
|
+
# global_navbar: {
|
1880
|
+
# foreground: "HexColor",
|
1881
|
+
# background: "HexColor",
|
1882
|
+
# },
|
1883
|
+
# contextual_navbar: {
|
1884
|
+
# foreground: "HexColor",
|
1885
|
+
# background: "HexColor",
|
1886
|
+
# },
|
1887
|
+
# },
|
1888
|
+
# },
|
1889
|
+
# },
|
1890
|
+
# logo_configuration: {
|
1891
|
+
# alt_text: "String", # required
|
1892
|
+
# logo_set: { # required
|
1893
|
+
# primary: { # required
|
1894
|
+
# original: { # required
|
1895
|
+
# source: {
|
1896
|
+
# public_url: "String",
|
1897
|
+
# s3_uri: "String",
|
1898
|
+
# },
|
1899
|
+
# },
|
1900
|
+
# },
|
1901
|
+
# favicon: {
|
1902
|
+
# original: { # required
|
1903
|
+
# source: {
|
1904
|
+
# public_url: "String",
|
1905
|
+
# s3_uri: "String",
|
1906
|
+
# },
|
1907
|
+
# },
|
1908
|
+
# },
|
1909
|
+
# },
|
1910
|
+
# },
|
1911
|
+
# },
|
1912
|
+
# tags: [
|
1913
|
+
# {
|
1914
|
+
# key: "TagKey", # required
|
1915
|
+
# value: "TagValue", # required
|
1916
|
+
# },
|
1917
|
+
# ],
|
1918
|
+
# })
|
1919
|
+
#
|
1920
|
+
# @example Response structure
|
1921
|
+
#
|
1922
|
+
# resp.request_id #=> String
|
1923
|
+
# resp.brand_detail.brand_id #=> String
|
1924
|
+
# resp.brand_detail.arn #=> String
|
1925
|
+
# resp.brand_detail.brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
1926
|
+
# resp.brand_detail.created_time #=> Time
|
1927
|
+
# resp.brand_detail.last_updated_time #=> Time
|
1928
|
+
# resp.brand_detail.version_id #=> String
|
1929
|
+
# resp.brand_detail.version_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED"
|
1930
|
+
# resp.brand_detail.errors #=> Array
|
1931
|
+
# resp.brand_detail.errors[0] #=> String
|
1932
|
+
# resp.brand_detail.logo.alt_text #=> String
|
1933
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.public_url #=> String
|
1934
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.s3_uri #=> String
|
1935
|
+
# resp.brand_detail.logo.logo_set.primary.original.generated_image_url #=> String
|
1936
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.public_url #=> String
|
1937
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.s3_uri #=> String
|
1938
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.generated_image_url #=> String
|
1939
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.public_url #=> String
|
1940
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.s3_uri #=> String
|
1941
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.generated_image_url #=> String
|
1942
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.public_url #=> String
|
1943
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.s3_uri #=> String
|
1944
|
+
# resp.brand_detail.logo.logo_set.favicon.original.generated_image_url #=> String
|
1945
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.public_url #=> String
|
1946
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.s3_uri #=> String
|
1947
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.generated_image_url #=> String
|
1948
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.public_url #=> String
|
1949
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.s3_uri #=> String
|
1950
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.generated_image_url #=> String
|
1951
|
+
# resp.brand_definition.brand_name #=> String
|
1952
|
+
# resp.brand_definition.description #=> String
|
1953
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.foreground #=> String
|
1954
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.background #=> String
|
1955
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.foreground #=> String
|
1956
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.background #=> String
|
1957
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.foreground #=> String
|
1958
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.background #=> String
|
1959
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.foreground #=> String
|
1960
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.background #=> String
|
1961
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.foreground #=> String
|
1962
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.background #=> String
|
1963
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.foreground #=> String
|
1964
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.background #=> String
|
1965
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.foreground #=> String
|
1966
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.background #=> String
|
1967
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.foreground #=> String
|
1968
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.background #=> String
|
1969
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.foreground #=> String
|
1970
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.background #=> String
|
1971
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.foreground #=> String
|
1972
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.background #=> String
|
1973
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.foreground #=> String
|
1974
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.background #=> String
|
1975
|
+
# resp.brand_definition.logo_configuration.alt_text #=> String
|
1976
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.public_url #=> String
|
1977
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.s3_uri #=> String
|
1978
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.public_url #=> String
|
1979
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.s3_uri #=> String
|
1980
|
+
#
|
1981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateBrand AWS API Documentation
|
1982
|
+
#
|
1983
|
+
# @overload create_brand(params = {})
|
1984
|
+
# @param [Hash] params ({})
|
1985
|
+
def create_brand(params = {}, options = {})
|
1986
|
+
req = build_request(:create_brand, params)
|
1987
|
+
req.send_request(options)
|
1988
|
+
end
|
1989
|
+
|
1990
|
+
# Creates a custom permissions profile.
|
1991
|
+
#
|
1992
|
+
# @option params [required, String] :aws_account_id
|
1993
|
+
# The ID of the Amazon Web Services account that you want to create the
|
1994
|
+
# custom permissions profile in.
|
1995
|
+
#
|
1996
|
+
# @option params [required, String] :custom_permissions_name
|
1997
|
+
# The name of the custom permissions profile that you want to create.
|
1998
|
+
#
|
1999
|
+
# @option params [Types::Capabilities] :capabilities
|
2000
|
+
# A set of actions to include in the custom permissions profile.
|
2001
|
+
#
|
2002
|
+
# @option params [Array<Types::Tag>] :tags
|
2003
|
+
# The tags to associate with the custom permissions profile.
|
2004
|
+
#
|
2005
|
+
# @return [Types::CreateCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2006
|
+
#
|
2007
|
+
# * {Types::CreateCustomPermissionsResponse#status #status} => Integer
|
2008
|
+
# * {Types::CreateCustomPermissionsResponse#arn #arn} => String
|
2009
|
+
# * {Types::CreateCustomPermissionsResponse#request_id #request_id} => String
|
2010
|
+
#
|
2011
|
+
# @example Request syntax with placeholder values
|
2012
|
+
#
|
2013
|
+
# resp = client.create_custom_permissions({
|
2014
|
+
# aws_account_id: "AwsAccountId", # required
|
2015
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
2016
|
+
# capabilities: {
|
2017
|
+
# export_to_csv: "DENY", # accepts DENY
|
2018
|
+
# export_to_excel: "DENY", # accepts DENY
|
2019
|
+
# create_and_update_themes: "DENY", # accepts DENY
|
2020
|
+
# add_or_run_anomaly_detection_for_analyses: "DENY", # accepts DENY
|
2021
|
+
# share_analyses: "DENY", # accepts DENY
|
2022
|
+
# create_and_update_datasets: "DENY", # accepts DENY
|
2023
|
+
# share_datasets: "DENY", # accepts DENY
|
2024
|
+
# subscribe_dashboard_email_reports: "DENY", # accepts DENY
|
2025
|
+
# create_and_update_dashboard_email_reports: "DENY", # accepts DENY
|
2026
|
+
# share_dashboards: "DENY", # accepts DENY
|
2027
|
+
# create_and_update_threshold_alerts: "DENY", # accepts DENY
|
2028
|
+
# rename_shared_folders: "DENY", # accepts DENY
|
2029
|
+
# create_shared_folders: "DENY", # accepts DENY
|
2030
|
+
# create_and_update_data_sources: "DENY", # accepts DENY
|
2031
|
+
# share_data_sources: "DENY", # accepts DENY
|
2032
|
+
# view_account_spice_capacity: "DENY", # accepts DENY
|
2033
|
+
# create_spice_dataset: "DENY", # accepts DENY
|
2034
|
+
# },
|
2035
|
+
# tags: [
|
2036
|
+
# {
|
2037
|
+
# key: "TagKey", # required
|
2038
|
+
# value: "TagValue", # required
|
2039
|
+
# },
|
2040
|
+
# ],
|
2041
|
+
# })
|
2042
|
+
#
|
2043
|
+
# @example Response structure
|
2044
|
+
#
|
2045
|
+
# resp.status #=> Integer
|
2046
|
+
# resp.arn #=> String
|
2047
|
+
# resp.request_id #=> String
|
2048
|
+
#
|
2049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateCustomPermissions AWS API Documentation
|
2050
|
+
#
|
2051
|
+
# @overload create_custom_permissions(params = {})
|
2052
|
+
# @param [Hash] params ({})
|
2053
|
+
def create_custom_permissions(params = {}, options = {})
|
2054
|
+
req = build_request(:create_custom_permissions, params)
|
2055
|
+
req.send_request(options)
|
2056
|
+
end
|
2057
|
+
|
1810
2058
|
# Creates a dashboard from either a template or directly with a
|
1811
2059
|
# `DashboardDefinition`. To first create a template, see the `
|
1812
2060
|
# CreateTemplate ` API operation.
|
@@ -4110,6 +4358,104 @@ module Aws::QuickSight
|
|
4110
4358
|
req.send_request(options)
|
4111
4359
|
end
|
4112
4360
|
|
4361
|
+
# Deletes an Amazon QuickSight brand.
|
4362
|
+
#
|
4363
|
+
# @option params [required, String] :aws_account_id
|
4364
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
4365
|
+
#
|
4366
|
+
# @option params [required, String] :brand_id
|
4367
|
+
# The ID of the Amazon QuickSight brand.
|
4368
|
+
#
|
4369
|
+
# @return [Types::DeleteBrandResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4370
|
+
#
|
4371
|
+
# * {Types::DeleteBrandResponse#request_id #request_id} => String
|
4372
|
+
#
|
4373
|
+
# @example Request syntax with placeholder values
|
4374
|
+
#
|
4375
|
+
# resp = client.delete_brand({
|
4376
|
+
# aws_account_id: "AwsAccountId", # required
|
4377
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
4378
|
+
# })
|
4379
|
+
#
|
4380
|
+
# @example Response structure
|
4381
|
+
#
|
4382
|
+
# resp.request_id #=> String
|
4383
|
+
#
|
4384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteBrand AWS API Documentation
|
4385
|
+
#
|
4386
|
+
# @overload delete_brand(params = {})
|
4387
|
+
# @param [Hash] params ({})
|
4388
|
+
def delete_brand(params = {}, options = {})
|
4389
|
+
req = build_request(:delete_brand, params)
|
4390
|
+
req.send_request(options)
|
4391
|
+
end
|
4392
|
+
|
4393
|
+
# Deletes a brand assignment.
|
4394
|
+
#
|
4395
|
+
# @option params [required, String] :aws_account_id
|
4396
|
+
# The ID of the Amazon Web Services account that owns the brand
|
4397
|
+
# assignment.
|
4398
|
+
#
|
4399
|
+
# @return [Types::DeleteBrandAssignmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4400
|
+
#
|
4401
|
+
# * {Types::DeleteBrandAssignmentResponse#request_id #request_id} => String
|
4402
|
+
#
|
4403
|
+
# @example Request syntax with placeholder values
|
4404
|
+
#
|
4405
|
+
# resp = client.delete_brand_assignment({
|
4406
|
+
# aws_account_id: "AwsAccountId", # required
|
4407
|
+
# })
|
4408
|
+
#
|
4409
|
+
# @example Response structure
|
4410
|
+
#
|
4411
|
+
# resp.request_id #=> String
|
4412
|
+
#
|
4413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteBrandAssignment AWS API Documentation
|
4414
|
+
#
|
4415
|
+
# @overload delete_brand_assignment(params = {})
|
4416
|
+
# @param [Hash] params ({})
|
4417
|
+
def delete_brand_assignment(params = {}, options = {})
|
4418
|
+
req = build_request(:delete_brand_assignment, params)
|
4419
|
+
req.send_request(options)
|
4420
|
+
end
|
4421
|
+
|
4422
|
+
# Deletes a custom permissions profile.
|
4423
|
+
#
|
4424
|
+
# @option params [required, String] :aws_account_id
|
4425
|
+
# The ID of the Amazon Web Services account that contains the custom
|
4426
|
+
# permissions profile that you want to delete.
|
4427
|
+
#
|
4428
|
+
# @option params [required, String] :custom_permissions_name
|
4429
|
+
# The name of the custom permissions profile that you want to delete.
|
4430
|
+
#
|
4431
|
+
# @return [Types::DeleteCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4432
|
+
#
|
4433
|
+
# * {Types::DeleteCustomPermissionsResponse#status #status} => Integer
|
4434
|
+
# * {Types::DeleteCustomPermissionsResponse#arn #arn} => String
|
4435
|
+
# * {Types::DeleteCustomPermissionsResponse#request_id #request_id} => String
|
4436
|
+
#
|
4437
|
+
# @example Request syntax with placeholder values
|
4438
|
+
#
|
4439
|
+
# resp = client.delete_custom_permissions({
|
4440
|
+
# aws_account_id: "AwsAccountId", # required
|
4441
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
4442
|
+
# })
|
4443
|
+
#
|
4444
|
+
# @example Response structure
|
4445
|
+
#
|
4446
|
+
# resp.status #=> Integer
|
4447
|
+
# resp.arn #=> String
|
4448
|
+
# resp.request_id #=> String
|
4449
|
+
#
|
4450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteCustomPermissions AWS API Documentation
|
4451
|
+
#
|
4452
|
+
# @overload delete_custom_permissions(params = {})
|
4453
|
+
# @param [Hash] params ({})
|
4454
|
+
def delete_custom_permissions(params = {}, options = {})
|
4455
|
+
req = build_request(:delete_custom_permissions, params)
|
4456
|
+
req.send_request(options)
|
4457
|
+
end
|
4458
|
+
|
4113
4459
|
# Deletes a dashboard.
|
4114
4460
|
#
|
4115
4461
|
# @option params [required, String] :aws_account_id
|
@@ -5037,6 +5383,46 @@ module Aws::QuickSight
|
|
5037
5383
|
req.send_request(options)
|
5038
5384
|
end
|
5039
5385
|
|
5386
|
+
# Deletes a custom permissions profile from a user.
|
5387
|
+
#
|
5388
|
+
# @option params [required, String] :user_name
|
5389
|
+
# The username of the user that you want to remove custom permissions
|
5390
|
+
# from.
|
5391
|
+
#
|
5392
|
+
# @option params [required, String] :aws_account_id
|
5393
|
+
# The ID of the Amazon Web Services account that contains the custom
|
5394
|
+
# permission configuration that you want to delete.
|
5395
|
+
#
|
5396
|
+
# @option params [required, String] :namespace
|
5397
|
+
# The namespace that the user belongs to.
|
5398
|
+
#
|
5399
|
+
# @return [Types::DeleteUserCustomPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5400
|
+
#
|
5401
|
+
# * {Types::DeleteUserCustomPermissionResponse#request_id #request_id} => String
|
5402
|
+
# * {Types::DeleteUserCustomPermissionResponse#status #status} => Integer
|
5403
|
+
#
|
5404
|
+
# @example Request syntax with placeholder values
|
5405
|
+
#
|
5406
|
+
# resp = client.delete_user_custom_permission({
|
5407
|
+
# user_name: "UserName", # required
|
5408
|
+
# aws_account_id: "AwsAccountId", # required
|
5409
|
+
# namespace: "Namespace", # required
|
5410
|
+
# })
|
5411
|
+
#
|
5412
|
+
# @example Response structure
|
5413
|
+
#
|
5414
|
+
# resp.request_id #=> String
|
5415
|
+
# resp.status #=> Integer
|
5416
|
+
#
|
5417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteUserCustomPermission AWS API Documentation
|
5418
|
+
#
|
5419
|
+
# @overload delete_user_custom_permission(params = {})
|
5420
|
+
# @param [Hash] params ({})
|
5421
|
+
def delete_user_custom_permission(params = {}, options = {})
|
5422
|
+
req = build_request(:delete_user_custom_permission, params)
|
5423
|
+
req.send_request(options)
|
5424
|
+
end
|
5425
|
+
|
5040
5426
|
# Deletes a VPC connection.
|
5041
5427
|
#
|
5042
5428
|
# @option params [required, String] :aws_account_id
|
@@ -5824,6 +6210,279 @@ module Aws::QuickSight
|
|
5824
6210
|
req.send_request(options)
|
5825
6211
|
end
|
5826
6212
|
|
6213
|
+
# Describes a brand.
|
6214
|
+
#
|
6215
|
+
# @option params [required, String] :aws_account_id
|
6216
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
6217
|
+
#
|
6218
|
+
# @option params [required, String] :brand_id
|
6219
|
+
# The ID of the Amazon QuickSight brand.
|
6220
|
+
#
|
6221
|
+
# @option params [String] :version_id
|
6222
|
+
# The ID of the specific version. The default value is the latest
|
6223
|
+
# version.
|
6224
|
+
#
|
6225
|
+
# @return [Types::DescribeBrandResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6226
|
+
#
|
6227
|
+
# * {Types::DescribeBrandResponse#request_id #request_id} => String
|
6228
|
+
# * {Types::DescribeBrandResponse#brand_detail #brand_detail} => Types::BrandDetail
|
6229
|
+
# * {Types::DescribeBrandResponse#brand_definition #brand_definition} => Types::BrandDefinition
|
6230
|
+
#
|
6231
|
+
# @example Request syntax with placeholder values
|
6232
|
+
#
|
6233
|
+
# resp = client.describe_brand({
|
6234
|
+
# aws_account_id: "AwsAccountId", # required
|
6235
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
6236
|
+
# version_id: "ShortRestrictiveResourceId",
|
6237
|
+
# })
|
6238
|
+
#
|
6239
|
+
# @example Response structure
|
6240
|
+
#
|
6241
|
+
# resp.request_id #=> String
|
6242
|
+
# resp.brand_detail.brand_id #=> String
|
6243
|
+
# resp.brand_detail.arn #=> String
|
6244
|
+
# resp.brand_detail.brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
6245
|
+
# resp.brand_detail.created_time #=> Time
|
6246
|
+
# resp.brand_detail.last_updated_time #=> Time
|
6247
|
+
# resp.brand_detail.version_id #=> String
|
6248
|
+
# resp.brand_detail.version_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED"
|
6249
|
+
# resp.brand_detail.errors #=> Array
|
6250
|
+
# resp.brand_detail.errors[0] #=> String
|
6251
|
+
# resp.brand_detail.logo.alt_text #=> String
|
6252
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.public_url #=> String
|
6253
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.s3_uri #=> String
|
6254
|
+
# resp.brand_detail.logo.logo_set.primary.original.generated_image_url #=> String
|
6255
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.public_url #=> String
|
6256
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.s3_uri #=> String
|
6257
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.generated_image_url #=> String
|
6258
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.public_url #=> String
|
6259
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.s3_uri #=> String
|
6260
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.generated_image_url #=> String
|
6261
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.public_url #=> String
|
6262
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.s3_uri #=> String
|
6263
|
+
# resp.brand_detail.logo.logo_set.favicon.original.generated_image_url #=> String
|
6264
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.public_url #=> String
|
6265
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.s3_uri #=> String
|
6266
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.generated_image_url #=> String
|
6267
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.public_url #=> String
|
6268
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.s3_uri #=> String
|
6269
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.generated_image_url #=> String
|
6270
|
+
# resp.brand_definition.brand_name #=> String
|
6271
|
+
# resp.brand_definition.description #=> String
|
6272
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.foreground #=> String
|
6273
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.background #=> String
|
6274
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.foreground #=> String
|
6275
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.background #=> String
|
6276
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.foreground #=> String
|
6277
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.background #=> String
|
6278
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.foreground #=> String
|
6279
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.background #=> String
|
6280
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.foreground #=> String
|
6281
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.background #=> String
|
6282
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.foreground #=> String
|
6283
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.background #=> String
|
6284
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.foreground #=> String
|
6285
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.background #=> String
|
6286
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.foreground #=> String
|
6287
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.background #=> String
|
6288
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.foreground #=> String
|
6289
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.background #=> String
|
6290
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.foreground #=> String
|
6291
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.background #=> String
|
6292
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.foreground #=> String
|
6293
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.background #=> String
|
6294
|
+
# resp.brand_definition.logo_configuration.alt_text #=> String
|
6295
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.public_url #=> String
|
6296
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.s3_uri #=> String
|
6297
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.public_url #=> String
|
6298
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.s3_uri #=> String
|
6299
|
+
#
|
6300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrand AWS API Documentation
|
6301
|
+
#
|
6302
|
+
# @overload describe_brand(params = {})
|
6303
|
+
# @param [Hash] params ({})
|
6304
|
+
def describe_brand(params = {}, options = {})
|
6305
|
+
req = build_request(:describe_brand, params)
|
6306
|
+
req.send_request(options)
|
6307
|
+
end
|
6308
|
+
|
6309
|
+
# Describes a brand assignment.
|
6310
|
+
#
|
6311
|
+
# @option params [required, String] :aws_account_id
|
6312
|
+
# The ID of the Amazon Web Services account that owns the brand
|
6313
|
+
# assignment.
|
6314
|
+
#
|
6315
|
+
# @return [Types::DescribeBrandAssignmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6316
|
+
#
|
6317
|
+
# * {Types::DescribeBrandAssignmentResponse#request_id #request_id} => String
|
6318
|
+
# * {Types::DescribeBrandAssignmentResponse#brand_arn #brand_arn} => String
|
6319
|
+
#
|
6320
|
+
# @example Request syntax with placeholder values
|
6321
|
+
#
|
6322
|
+
# resp = client.describe_brand_assignment({
|
6323
|
+
# aws_account_id: "AwsAccountId", # required
|
6324
|
+
# })
|
6325
|
+
#
|
6326
|
+
# @example Response structure
|
6327
|
+
#
|
6328
|
+
# resp.request_id #=> String
|
6329
|
+
# resp.brand_arn #=> String
|
6330
|
+
#
|
6331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandAssignment AWS API Documentation
|
6332
|
+
#
|
6333
|
+
# @overload describe_brand_assignment(params = {})
|
6334
|
+
# @param [Hash] params ({})
|
6335
|
+
def describe_brand_assignment(params = {}, options = {})
|
6336
|
+
req = build_request(:describe_brand_assignment, params)
|
6337
|
+
req.send_request(options)
|
6338
|
+
end
|
6339
|
+
|
6340
|
+
# Describes the published version of the brand.
|
6341
|
+
#
|
6342
|
+
# @option params [required, String] :aws_account_id
|
6343
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
6344
|
+
#
|
6345
|
+
# @option params [required, String] :brand_id
|
6346
|
+
# The ID of the Amazon QuickSight brand.
|
6347
|
+
#
|
6348
|
+
# @return [Types::DescribeBrandPublishedVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6349
|
+
#
|
6350
|
+
# * {Types::DescribeBrandPublishedVersionResponse#request_id #request_id} => String
|
6351
|
+
# * {Types::DescribeBrandPublishedVersionResponse#brand_detail #brand_detail} => Types::BrandDetail
|
6352
|
+
# * {Types::DescribeBrandPublishedVersionResponse#brand_definition #brand_definition} => Types::BrandDefinition
|
6353
|
+
#
|
6354
|
+
# @example Request syntax with placeholder values
|
6355
|
+
#
|
6356
|
+
# resp = client.describe_brand_published_version({
|
6357
|
+
# aws_account_id: "AwsAccountId", # required
|
6358
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
6359
|
+
# })
|
6360
|
+
#
|
6361
|
+
# @example Response structure
|
6362
|
+
#
|
6363
|
+
# resp.request_id #=> String
|
6364
|
+
# resp.brand_detail.brand_id #=> String
|
6365
|
+
# resp.brand_detail.arn #=> String
|
6366
|
+
# resp.brand_detail.brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
6367
|
+
# resp.brand_detail.created_time #=> Time
|
6368
|
+
# resp.brand_detail.last_updated_time #=> Time
|
6369
|
+
# resp.brand_detail.version_id #=> String
|
6370
|
+
# resp.brand_detail.version_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED"
|
6371
|
+
# resp.brand_detail.errors #=> Array
|
6372
|
+
# resp.brand_detail.errors[0] #=> String
|
6373
|
+
# resp.brand_detail.logo.alt_text #=> String
|
6374
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.public_url #=> String
|
6375
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.s3_uri #=> String
|
6376
|
+
# resp.brand_detail.logo.logo_set.primary.original.generated_image_url #=> String
|
6377
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.public_url #=> String
|
6378
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.s3_uri #=> String
|
6379
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.generated_image_url #=> String
|
6380
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.public_url #=> String
|
6381
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.s3_uri #=> String
|
6382
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.generated_image_url #=> String
|
6383
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.public_url #=> String
|
6384
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.s3_uri #=> String
|
6385
|
+
# resp.brand_detail.logo.logo_set.favicon.original.generated_image_url #=> String
|
6386
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.public_url #=> String
|
6387
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.s3_uri #=> String
|
6388
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.generated_image_url #=> String
|
6389
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.public_url #=> String
|
6390
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.s3_uri #=> String
|
6391
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.generated_image_url #=> String
|
6392
|
+
# resp.brand_definition.brand_name #=> String
|
6393
|
+
# resp.brand_definition.description #=> String
|
6394
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.foreground #=> String
|
6395
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.background #=> String
|
6396
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.foreground #=> String
|
6397
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.background #=> String
|
6398
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.foreground #=> String
|
6399
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.background #=> String
|
6400
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.foreground #=> String
|
6401
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.background #=> String
|
6402
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.foreground #=> String
|
6403
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.background #=> String
|
6404
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.foreground #=> String
|
6405
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.background #=> String
|
6406
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.foreground #=> String
|
6407
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.background #=> String
|
6408
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.foreground #=> String
|
6409
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.background #=> String
|
6410
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.foreground #=> String
|
6411
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.background #=> String
|
6412
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.foreground #=> String
|
6413
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.background #=> String
|
6414
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.foreground #=> String
|
6415
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.background #=> String
|
6416
|
+
# resp.brand_definition.logo_configuration.alt_text #=> String
|
6417
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.public_url #=> String
|
6418
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.s3_uri #=> String
|
6419
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.public_url #=> String
|
6420
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.s3_uri #=> String
|
6421
|
+
#
|
6422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandPublishedVersion AWS API Documentation
|
6423
|
+
#
|
6424
|
+
# @overload describe_brand_published_version(params = {})
|
6425
|
+
# @param [Hash] params ({})
|
6426
|
+
def describe_brand_published_version(params = {}, options = {})
|
6427
|
+
req = build_request(:describe_brand_published_version, params)
|
6428
|
+
req.send_request(options)
|
6429
|
+
end
|
6430
|
+
|
6431
|
+
# Describes a custom permissions profile.
|
6432
|
+
#
|
6433
|
+
# @option params [required, String] :aws_account_id
|
6434
|
+
# The ID of the Amazon Web Services account that contains the custom
|
6435
|
+
# permissions profile that you want described.
|
6436
|
+
#
|
6437
|
+
# @option params [required, String] :custom_permissions_name
|
6438
|
+
# The name of the custom permissions profile to describe.
|
6439
|
+
#
|
6440
|
+
# @return [Types::DescribeCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6441
|
+
#
|
6442
|
+
# * {Types::DescribeCustomPermissionsResponse#status #status} => Integer
|
6443
|
+
# * {Types::DescribeCustomPermissionsResponse#custom_permissions #custom_permissions} => Types::CustomPermissions
|
6444
|
+
# * {Types::DescribeCustomPermissionsResponse#request_id #request_id} => String
|
6445
|
+
#
|
6446
|
+
# @example Request syntax with placeholder values
|
6447
|
+
#
|
6448
|
+
# resp = client.describe_custom_permissions({
|
6449
|
+
# aws_account_id: "AwsAccountId", # required
|
6450
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
6451
|
+
# })
|
6452
|
+
#
|
6453
|
+
# @example Response structure
|
6454
|
+
#
|
6455
|
+
# resp.status #=> Integer
|
6456
|
+
# resp.custom_permissions.arn #=> String
|
6457
|
+
# resp.custom_permissions.custom_permissions_name #=> String
|
6458
|
+
# resp.custom_permissions.capabilities.export_to_csv #=> String, one of "DENY"
|
6459
|
+
# resp.custom_permissions.capabilities.export_to_excel #=> String, one of "DENY"
|
6460
|
+
# resp.custom_permissions.capabilities.create_and_update_themes #=> String, one of "DENY"
|
6461
|
+
# resp.custom_permissions.capabilities.add_or_run_anomaly_detection_for_analyses #=> String, one of "DENY"
|
6462
|
+
# resp.custom_permissions.capabilities.share_analyses #=> String, one of "DENY"
|
6463
|
+
# resp.custom_permissions.capabilities.create_and_update_datasets #=> String, one of "DENY"
|
6464
|
+
# resp.custom_permissions.capabilities.share_datasets #=> String, one of "DENY"
|
6465
|
+
# resp.custom_permissions.capabilities.subscribe_dashboard_email_reports #=> String, one of "DENY"
|
6466
|
+
# resp.custom_permissions.capabilities.create_and_update_dashboard_email_reports #=> String, one of "DENY"
|
6467
|
+
# resp.custom_permissions.capabilities.share_dashboards #=> String, one of "DENY"
|
6468
|
+
# resp.custom_permissions.capabilities.create_and_update_threshold_alerts #=> String, one of "DENY"
|
6469
|
+
# resp.custom_permissions.capabilities.rename_shared_folders #=> String, one of "DENY"
|
6470
|
+
# resp.custom_permissions.capabilities.create_shared_folders #=> String, one of "DENY"
|
6471
|
+
# resp.custom_permissions.capabilities.create_and_update_data_sources #=> String, one of "DENY"
|
6472
|
+
# resp.custom_permissions.capabilities.share_data_sources #=> String, one of "DENY"
|
6473
|
+
# resp.custom_permissions.capabilities.view_account_spice_capacity #=> String, one of "DENY"
|
6474
|
+
# resp.custom_permissions.capabilities.create_spice_dataset #=> String, one of "DENY"
|
6475
|
+
# resp.request_id #=> String
|
6476
|
+
#
|
6477
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeCustomPermissions AWS API Documentation
|
6478
|
+
#
|
6479
|
+
# @overload describe_custom_permissions(params = {})
|
6480
|
+
# @param [Hash] params ({})
|
6481
|
+
def describe_custom_permissions(params = {}, options = {})
|
6482
|
+
req = build_request(:describe_custom_permissions, params)
|
6483
|
+
req.send_request(options)
|
6484
|
+
end
|
6485
|
+
|
5827
6486
|
# Provides a summary for a dashboard.
|
5828
6487
|
#
|
5829
6488
|
# @option params [required, String] :aws_account_id
|
@@ -8826,6 +9485,120 @@ module Aws::QuickSight
|
|
8826
9485
|
req.send_request(options)
|
8827
9486
|
end
|
8828
9487
|
|
9488
|
+
# Lists all brands in an Amazon QuickSight account.
|
9489
|
+
#
|
9490
|
+
# @option params [required, String] :aws_account_id
|
9491
|
+
# The ID of the Amazon Web Services account that owns the brands that
|
9492
|
+
# you want to list.
|
9493
|
+
#
|
9494
|
+
# @option params [Integer] :max_results
|
9495
|
+
# The maximum number of results to be returned in a single request.
|
9496
|
+
#
|
9497
|
+
# @option params [String] :next_token
|
9498
|
+
# The token for the next set of results, or null if there are no more
|
9499
|
+
# results.
|
9500
|
+
#
|
9501
|
+
# @return [Types::ListBrandsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9502
|
+
#
|
9503
|
+
# * {Types::ListBrandsResponse#next_token #next_token} => String
|
9504
|
+
# * {Types::ListBrandsResponse#brands #brands} => Array<Types::BrandSummary>
|
9505
|
+
#
|
9506
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9507
|
+
#
|
9508
|
+
# @example Request syntax with placeholder values
|
9509
|
+
#
|
9510
|
+
# resp = client.list_brands({
|
9511
|
+
# aws_account_id: "AwsAccountId", # required
|
9512
|
+
# max_results: 1,
|
9513
|
+
# next_token: "String",
|
9514
|
+
# })
|
9515
|
+
#
|
9516
|
+
# @example Response structure
|
9517
|
+
#
|
9518
|
+
# resp.next_token #=> String
|
9519
|
+
# resp.brands #=> Array
|
9520
|
+
# resp.brands[0].arn #=> String
|
9521
|
+
# resp.brands[0].brand_id #=> String
|
9522
|
+
# resp.brands[0].brand_name #=> String
|
9523
|
+
# resp.brands[0].description #=> String
|
9524
|
+
# resp.brands[0].brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
9525
|
+
# resp.brands[0].created_time #=> Time
|
9526
|
+
# resp.brands[0].last_updated_time #=> Time
|
9527
|
+
#
|
9528
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListBrands AWS API Documentation
|
9529
|
+
#
|
9530
|
+
# @overload list_brands(params = {})
|
9531
|
+
# @param [Hash] params ({})
|
9532
|
+
def list_brands(params = {}, options = {})
|
9533
|
+
req = build_request(:list_brands, params)
|
9534
|
+
req.send_request(options)
|
9535
|
+
end
|
9536
|
+
|
9537
|
+
# Returns a list of all the custom permissions profiles.
|
9538
|
+
#
|
9539
|
+
# @option params [required, String] :aws_account_id
|
9540
|
+
# The ID of the Amazon Web Services account that contains the custom
|
9541
|
+
# permissions profiles that you want to list.
|
9542
|
+
#
|
9543
|
+
# @option params [Integer] :max_results
|
9544
|
+
# The maximum number of results to return.
|
9545
|
+
#
|
9546
|
+
# @option params [String] :next_token
|
9547
|
+
# The token for the next set of results, or null if there are no more
|
9548
|
+
# results.
|
9549
|
+
#
|
9550
|
+
# @return [Types::ListCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9551
|
+
#
|
9552
|
+
# * {Types::ListCustomPermissionsResponse#status #status} => Integer
|
9553
|
+
# * {Types::ListCustomPermissionsResponse#custom_permissions_list #custom_permissions_list} => Array<Types::CustomPermissions>
|
9554
|
+
# * {Types::ListCustomPermissionsResponse#next_token #next_token} => String
|
9555
|
+
# * {Types::ListCustomPermissionsResponse#request_id #request_id} => String
|
9556
|
+
#
|
9557
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9558
|
+
#
|
9559
|
+
# @example Request syntax with placeholder values
|
9560
|
+
#
|
9561
|
+
# resp = client.list_custom_permissions({
|
9562
|
+
# aws_account_id: "AwsAccountId", # required
|
9563
|
+
# max_results: 1,
|
9564
|
+
# next_token: "String",
|
9565
|
+
# })
|
9566
|
+
#
|
9567
|
+
# @example Response structure
|
9568
|
+
#
|
9569
|
+
# resp.status #=> Integer
|
9570
|
+
# resp.custom_permissions_list #=> Array
|
9571
|
+
# resp.custom_permissions_list[0].arn #=> String
|
9572
|
+
# resp.custom_permissions_list[0].custom_permissions_name #=> String
|
9573
|
+
# resp.custom_permissions_list[0].capabilities.export_to_csv #=> String, one of "DENY"
|
9574
|
+
# resp.custom_permissions_list[0].capabilities.export_to_excel #=> String, one of "DENY"
|
9575
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_themes #=> String, one of "DENY"
|
9576
|
+
# resp.custom_permissions_list[0].capabilities.add_or_run_anomaly_detection_for_analyses #=> String, one of "DENY"
|
9577
|
+
# resp.custom_permissions_list[0].capabilities.share_analyses #=> String, one of "DENY"
|
9578
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_datasets #=> String, one of "DENY"
|
9579
|
+
# resp.custom_permissions_list[0].capabilities.share_datasets #=> String, one of "DENY"
|
9580
|
+
# resp.custom_permissions_list[0].capabilities.subscribe_dashboard_email_reports #=> String, one of "DENY"
|
9581
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_dashboard_email_reports #=> String, one of "DENY"
|
9582
|
+
# resp.custom_permissions_list[0].capabilities.share_dashboards #=> String, one of "DENY"
|
9583
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_threshold_alerts #=> String, one of "DENY"
|
9584
|
+
# resp.custom_permissions_list[0].capabilities.rename_shared_folders #=> String, one of "DENY"
|
9585
|
+
# resp.custom_permissions_list[0].capabilities.create_shared_folders #=> String, one of "DENY"
|
9586
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_data_sources #=> String, one of "DENY"
|
9587
|
+
# resp.custom_permissions_list[0].capabilities.share_data_sources #=> String, one of "DENY"
|
9588
|
+
# resp.custom_permissions_list[0].capabilities.view_account_spice_capacity #=> String, one of "DENY"
|
9589
|
+
# resp.custom_permissions_list[0].capabilities.create_spice_dataset #=> String, one of "DENY"
|
9590
|
+
# resp.next_token #=> String
|
9591
|
+
# resp.request_id #=> String
|
9592
|
+
#
|
9593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListCustomPermissions AWS API Documentation
|
9594
|
+
#
|
9595
|
+
# @overload list_custom_permissions(params = {})
|
9596
|
+
# @param [Hash] params ({})
|
9597
|
+
def list_custom_permissions(params = {}, options = {})
|
9598
|
+
req = build_request(:list_custom_permissions, params)
|
9599
|
+
req.send_request(options)
|
9600
|
+
end
|
9601
|
+
|
8829
9602
|
# Lists all the versions of the dashboards in the Amazon QuickSight
|
8830
9603
|
# subscription.
|
8831
9604
|
#
|
@@ -12948,6 +13721,309 @@ module Aws::QuickSight
|
|
12948
13721
|
req.send_request(options)
|
12949
13722
|
end
|
12950
13723
|
|
13724
|
+
# Updates a brand.
|
13725
|
+
#
|
13726
|
+
# @option params [required, String] :aws_account_id
|
13727
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
13728
|
+
#
|
13729
|
+
# @option params [required, String] :brand_id
|
13730
|
+
# The ID of the Amazon QuickSight brand.
|
13731
|
+
#
|
13732
|
+
# @option params [Types::BrandDefinition] :brand_definition
|
13733
|
+
# The definition of the brand.
|
13734
|
+
#
|
13735
|
+
# @return [Types::UpdateBrandResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13736
|
+
#
|
13737
|
+
# * {Types::UpdateBrandResponse#request_id #request_id} => String
|
13738
|
+
# * {Types::UpdateBrandResponse#brand_detail #brand_detail} => Types::BrandDetail
|
13739
|
+
# * {Types::UpdateBrandResponse#brand_definition #brand_definition} => Types::BrandDefinition
|
13740
|
+
#
|
13741
|
+
# @example Request syntax with placeholder values
|
13742
|
+
#
|
13743
|
+
# resp = client.update_brand({
|
13744
|
+
# aws_account_id: "AwsAccountId", # required
|
13745
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
13746
|
+
# brand_definition: {
|
13747
|
+
# brand_name: "Name", # required
|
13748
|
+
# description: "Description",
|
13749
|
+
# application_theme: {
|
13750
|
+
# brand_color_palette: {
|
13751
|
+
# primary: {
|
13752
|
+
# foreground: "HexColor",
|
13753
|
+
# background: "HexColor",
|
13754
|
+
# },
|
13755
|
+
# secondary: {
|
13756
|
+
# foreground: "HexColor",
|
13757
|
+
# background: "HexColor",
|
13758
|
+
# },
|
13759
|
+
# accent: {
|
13760
|
+
# foreground: "HexColor",
|
13761
|
+
# background: "HexColor",
|
13762
|
+
# },
|
13763
|
+
# measure: {
|
13764
|
+
# foreground: "HexColor",
|
13765
|
+
# background: "HexColor",
|
13766
|
+
# },
|
13767
|
+
# dimension: {
|
13768
|
+
# foreground: "HexColor",
|
13769
|
+
# background: "HexColor",
|
13770
|
+
# },
|
13771
|
+
# success: {
|
13772
|
+
# foreground: "HexColor",
|
13773
|
+
# background: "HexColor",
|
13774
|
+
# },
|
13775
|
+
# info: {
|
13776
|
+
# foreground: "HexColor",
|
13777
|
+
# background: "HexColor",
|
13778
|
+
# },
|
13779
|
+
# warning: {
|
13780
|
+
# foreground: "HexColor",
|
13781
|
+
# background: "HexColor",
|
13782
|
+
# },
|
13783
|
+
# danger: {
|
13784
|
+
# foreground: "HexColor",
|
13785
|
+
# background: "HexColor",
|
13786
|
+
# },
|
13787
|
+
# },
|
13788
|
+
# brand_element_style: {
|
13789
|
+
# navbar_style: {
|
13790
|
+
# global_navbar: {
|
13791
|
+
# foreground: "HexColor",
|
13792
|
+
# background: "HexColor",
|
13793
|
+
# },
|
13794
|
+
# contextual_navbar: {
|
13795
|
+
# foreground: "HexColor",
|
13796
|
+
# background: "HexColor",
|
13797
|
+
# },
|
13798
|
+
# },
|
13799
|
+
# },
|
13800
|
+
# },
|
13801
|
+
# logo_configuration: {
|
13802
|
+
# alt_text: "String", # required
|
13803
|
+
# logo_set: { # required
|
13804
|
+
# primary: { # required
|
13805
|
+
# original: { # required
|
13806
|
+
# source: {
|
13807
|
+
# public_url: "String",
|
13808
|
+
# s3_uri: "String",
|
13809
|
+
# },
|
13810
|
+
# },
|
13811
|
+
# },
|
13812
|
+
# favicon: {
|
13813
|
+
# original: { # required
|
13814
|
+
# source: {
|
13815
|
+
# public_url: "String",
|
13816
|
+
# s3_uri: "String",
|
13817
|
+
# },
|
13818
|
+
# },
|
13819
|
+
# },
|
13820
|
+
# },
|
13821
|
+
# },
|
13822
|
+
# },
|
13823
|
+
# })
|
13824
|
+
#
|
13825
|
+
# @example Response structure
|
13826
|
+
#
|
13827
|
+
# resp.request_id #=> String
|
13828
|
+
# resp.brand_detail.brand_id #=> String
|
13829
|
+
# resp.brand_detail.arn #=> String
|
13830
|
+
# resp.brand_detail.brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
13831
|
+
# resp.brand_detail.created_time #=> Time
|
13832
|
+
# resp.brand_detail.last_updated_time #=> Time
|
13833
|
+
# resp.brand_detail.version_id #=> String
|
13834
|
+
# resp.brand_detail.version_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED"
|
13835
|
+
# resp.brand_detail.errors #=> Array
|
13836
|
+
# resp.brand_detail.errors[0] #=> String
|
13837
|
+
# resp.brand_detail.logo.alt_text #=> String
|
13838
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.public_url #=> String
|
13839
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.s3_uri #=> String
|
13840
|
+
# resp.brand_detail.logo.logo_set.primary.original.generated_image_url #=> String
|
13841
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.public_url #=> String
|
13842
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.s3_uri #=> String
|
13843
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.generated_image_url #=> String
|
13844
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.public_url #=> String
|
13845
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.s3_uri #=> String
|
13846
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.generated_image_url #=> String
|
13847
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.public_url #=> String
|
13848
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.s3_uri #=> String
|
13849
|
+
# resp.brand_detail.logo.logo_set.favicon.original.generated_image_url #=> String
|
13850
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.public_url #=> String
|
13851
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.s3_uri #=> String
|
13852
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.generated_image_url #=> String
|
13853
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.public_url #=> String
|
13854
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.s3_uri #=> String
|
13855
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.generated_image_url #=> String
|
13856
|
+
# resp.brand_definition.brand_name #=> String
|
13857
|
+
# resp.brand_definition.description #=> String
|
13858
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.foreground #=> String
|
13859
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.background #=> String
|
13860
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.foreground #=> String
|
13861
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.background #=> String
|
13862
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.foreground #=> String
|
13863
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.background #=> String
|
13864
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.foreground #=> String
|
13865
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.background #=> String
|
13866
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.foreground #=> String
|
13867
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.background #=> String
|
13868
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.foreground #=> String
|
13869
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.background #=> String
|
13870
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.foreground #=> String
|
13871
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.background #=> String
|
13872
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.foreground #=> String
|
13873
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.background #=> String
|
13874
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.foreground #=> String
|
13875
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.background #=> String
|
13876
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.foreground #=> String
|
13877
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.background #=> String
|
13878
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.foreground #=> String
|
13879
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.background #=> String
|
13880
|
+
# resp.brand_definition.logo_configuration.alt_text #=> String
|
13881
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.public_url #=> String
|
13882
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.s3_uri #=> String
|
13883
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.public_url #=> String
|
13884
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.s3_uri #=> String
|
13885
|
+
#
|
13886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrand AWS API Documentation
|
13887
|
+
#
|
13888
|
+
# @overload update_brand(params = {})
|
13889
|
+
# @param [Hash] params ({})
|
13890
|
+
def update_brand(params = {}, options = {})
|
13891
|
+
req = build_request(:update_brand, params)
|
13892
|
+
req.send_request(options)
|
13893
|
+
end
|
13894
|
+
|
13895
|
+
# Updates a brand assignment.
|
13896
|
+
#
|
13897
|
+
# @option params [required, String] :aws_account_id
|
13898
|
+
# The ID of the Amazon Web Services account that owns the brand
|
13899
|
+
# assignment.
|
13900
|
+
#
|
13901
|
+
# @option params [required, String] :brand_arn
|
13902
|
+
# The Amazon Resource Name (ARN) of the brand.
|
13903
|
+
#
|
13904
|
+
# @return [Types::UpdateBrandAssignmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13905
|
+
#
|
13906
|
+
# * {Types::UpdateBrandAssignmentResponse#request_id #request_id} => String
|
13907
|
+
# * {Types::UpdateBrandAssignmentResponse#brand_arn #brand_arn} => String
|
13908
|
+
#
|
13909
|
+
# @example Request syntax with placeholder values
|
13910
|
+
#
|
13911
|
+
# resp = client.update_brand_assignment({
|
13912
|
+
# aws_account_id: "AwsAccountId", # required
|
13913
|
+
# brand_arn: "Arn", # required
|
13914
|
+
# })
|
13915
|
+
#
|
13916
|
+
# @example Response structure
|
13917
|
+
#
|
13918
|
+
# resp.request_id #=> String
|
13919
|
+
# resp.brand_arn #=> String
|
13920
|
+
#
|
13921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandAssignment AWS API Documentation
|
13922
|
+
#
|
13923
|
+
# @overload update_brand_assignment(params = {})
|
13924
|
+
# @param [Hash] params ({})
|
13925
|
+
def update_brand_assignment(params = {}, options = {})
|
13926
|
+
req = build_request(:update_brand_assignment, params)
|
13927
|
+
req.send_request(options)
|
13928
|
+
end
|
13929
|
+
|
13930
|
+
# Updates the published version of a brand.
|
13931
|
+
#
|
13932
|
+
# @option params [required, String] :aws_account_id
|
13933
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
13934
|
+
#
|
13935
|
+
# @option params [required, String] :brand_id
|
13936
|
+
# The ID of the Amazon QuickSight brand.
|
13937
|
+
#
|
13938
|
+
# @option params [required, String] :version_id
|
13939
|
+
# The ID of the published version.
|
13940
|
+
#
|
13941
|
+
# @return [Types::UpdateBrandPublishedVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13942
|
+
#
|
13943
|
+
# * {Types::UpdateBrandPublishedVersionResponse#request_id #request_id} => String
|
13944
|
+
# * {Types::UpdateBrandPublishedVersionResponse#version_id #version_id} => String
|
13945
|
+
#
|
13946
|
+
# @example Request syntax with placeholder values
|
13947
|
+
#
|
13948
|
+
# resp = client.update_brand_published_version({
|
13949
|
+
# aws_account_id: "AwsAccountId", # required
|
13950
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
13951
|
+
# version_id: "ShortRestrictiveResourceId", # required
|
13952
|
+
# })
|
13953
|
+
#
|
13954
|
+
# @example Response structure
|
13955
|
+
#
|
13956
|
+
# resp.request_id #=> String
|
13957
|
+
# resp.version_id #=> String
|
13958
|
+
#
|
13959
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandPublishedVersion AWS API Documentation
|
13960
|
+
#
|
13961
|
+
# @overload update_brand_published_version(params = {})
|
13962
|
+
# @param [Hash] params ({})
|
13963
|
+
def update_brand_published_version(params = {}, options = {})
|
13964
|
+
req = build_request(:update_brand_published_version, params)
|
13965
|
+
req.send_request(options)
|
13966
|
+
end
|
13967
|
+
|
13968
|
+
# Updates a custom permissions profile.
|
13969
|
+
#
|
13970
|
+
# @option params [required, String] :aws_account_id
|
13971
|
+
# The ID of the Amazon Web Services account that contains the custom
|
13972
|
+
# permissions profile that you want to update.
|
13973
|
+
#
|
13974
|
+
# @option params [required, String] :custom_permissions_name
|
13975
|
+
# The name of the custom permissions profile that you want to update.
|
13976
|
+
#
|
13977
|
+
# @option params [Types::Capabilities] :capabilities
|
13978
|
+
# A set of actions to include in the custom permissions profile.
|
13979
|
+
#
|
13980
|
+
# @return [Types::UpdateCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13981
|
+
#
|
13982
|
+
# * {Types::UpdateCustomPermissionsResponse#status #status} => Integer
|
13983
|
+
# * {Types::UpdateCustomPermissionsResponse#arn #arn} => String
|
13984
|
+
# * {Types::UpdateCustomPermissionsResponse#request_id #request_id} => String
|
13985
|
+
#
|
13986
|
+
# @example Request syntax with placeholder values
|
13987
|
+
#
|
13988
|
+
# resp = client.update_custom_permissions({
|
13989
|
+
# aws_account_id: "AwsAccountId", # required
|
13990
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
13991
|
+
# capabilities: {
|
13992
|
+
# export_to_csv: "DENY", # accepts DENY
|
13993
|
+
# export_to_excel: "DENY", # accepts DENY
|
13994
|
+
# create_and_update_themes: "DENY", # accepts DENY
|
13995
|
+
# add_or_run_anomaly_detection_for_analyses: "DENY", # accepts DENY
|
13996
|
+
# share_analyses: "DENY", # accepts DENY
|
13997
|
+
# create_and_update_datasets: "DENY", # accepts DENY
|
13998
|
+
# share_datasets: "DENY", # accepts DENY
|
13999
|
+
# subscribe_dashboard_email_reports: "DENY", # accepts DENY
|
14000
|
+
# create_and_update_dashboard_email_reports: "DENY", # accepts DENY
|
14001
|
+
# share_dashboards: "DENY", # accepts DENY
|
14002
|
+
# create_and_update_threshold_alerts: "DENY", # accepts DENY
|
14003
|
+
# rename_shared_folders: "DENY", # accepts DENY
|
14004
|
+
# create_shared_folders: "DENY", # accepts DENY
|
14005
|
+
# create_and_update_data_sources: "DENY", # accepts DENY
|
14006
|
+
# share_data_sources: "DENY", # accepts DENY
|
14007
|
+
# view_account_spice_capacity: "DENY", # accepts DENY
|
14008
|
+
# create_spice_dataset: "DENY", # accepts DENY
|
14009
|
+
# },
|
14010
|
+
# })
|
14011
|
+
#
|
14012
|
+
# @example Response structure
|
14013
|
+
#
|
14014
|
+
# resp.status #=> Integer
|
14015
|
+
# resp.arn #=> String
|
14016
|
+
# resp.request_id #=> String
|
14017
|
+
#
|
14018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateCustomPermissions AWS API Documentation
|
14019
|
+
#
|
14020
|
+
# @overload update_custom_permissions(params = {})
|
14021
|
+
# @param [Hash] params ({})
|
14022
|
+
def update_custom_permissions(params = {}, options = {})
|
14023
|
+
req = build_request(:update_custom_permissions, params)
|
14024
|
+
req.send_request(options)
|
14025
|
+
end
|
14026
|
+
|
12951
14027
|
# Updates a dashboard in an Amazon Web Services account.
|
12952
14028
|
#
|
12953
14029
|
# <note markdown="1"> Updating a Dashboard creates a new dashboard version but does not
|
@@ -15625,6 +16701,50 @@ module Aws::QuickSight
|
|
15625
16701
|
req.send_request(options)
|
15626
16702
|
end
|
15627
16703
|
|
16704
|
+
# Updates a custom permissions profile for a user.
|
16705
|
+
#
|
16706
|
+
# @option params [required, String] :user_name
|
16707
|
+
# The username of the user that you want to update custom permissions
|
16708
|
+
# for.
|
16709
|
+
#
|
16710
|
+
# @option params [required, String] :aws_account_id
|
16711
|
+
# The ID of the Amazon Web Services account that contains the custom
|
16712
|
+
# permission configuration that you want to update.
|
16713
|
+
#
|
16714
|
+
# @option params [required, String] :namespace
|
16715
|
+
# The namespace that the user belongs to.
|
16716
|
+
#
|
16717
|
+
# @option params [required, String] :custom_permissions_name
|
16718
|
+
# The name of the custom permissions that you want to update.
|
16719
|
+
#
|
16720
|
+
# @return [Types::UpdateUserCustomPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16721
|
+
#
|
16722
|
+
# * {Types::UpdateUserCustomPermissionResponse#request_id #request_id} => String
|
16723
|
+
# * {Types::UpdateUserCustomPermissionResponse#status #status} => Integer
|
16724
|
+
#
|
16725
|
+
# @example Request syntax with placeholder values
|
16726
|
+
#
|
16727
|
+
# resp = client.update_user_custom_permission({
|
16728
|
+
# user_name: "UserName", # required
|
16729
|
+
# aws_account_id: "AwsAccountId", # required
|
16730
|
+
# namespace: "Namespace", # required
|
16731
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
16732
|
+
# })
|
16733
|
+
#
|
16734
|
+
# @example Response structure
|
16735
|
+
#
|
16736
|
+
# resp.request_id #=> String
|
16737
|
+
# resp.status #=> Integer
|
16738
|
+
#
|
16739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateUserCustomPermission AWS API Documentation
|
16740
|
+
#
|
16741
|
+
# @overload update_user_custom_permission(params = {})
|
16742
|
+
# @param [Hash] params ({})
|
16743
|
+
def update_user_custom_permission(params = {}, options = {})
|
16744
|
+
req = build_request(:update_user_custom_permission, params)
|
16745
|
+
req.send_request(options)
|
16746
|
+
end
|
16747
|
+
|
15628
16748
|
# Updates a VPC connection.
|
15629
16749
|
#
|
15630
16750
|
# @option params [required, String] :aws_account_id
|
@@ -15709,7 +16829,7 @@ module Aws::QuickSight
|
|
15709
16829
|
tracer: tracer
|
15710
16830
|
)
|
15711
16831
|
context[:gem_name] = 'aws-sdk-quicksight'
|
15712
|
-
context[:gem_version] = '1.
|
16832
|
+
context[:gem_version] = '1.136.0'
|
15713
16833
|
Seahorse::Client::Request.new(handlers, context)
|
15714
16834
|
end
|
15715
16835
|
|