aws-sdk-quicksight 1.135.0 → 1.137.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 +1121 -4
- 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
|
@@ -5118,7 +5504,6 @@ module Aws::QuickSight
|
|
5118
5504
|
# * Run `aws configure` to change your default Amazon Web Services
|
5119
5505
|
# Region. Use Enter to key the same settings for your keys. For more
|
5120
5506
|
# information, see [Configuring the CLI][3].
|
5121
|
-
#
|
5122
5507
|
# * `Namespace` - A QuickSight namespace is a partition that contains
|
5123
5508
|
# users and assets (data sources, datasets, dashboards, and so on). To
|
5124
5509
|
# access assets that are in a specific namespace, users and groups
|
@@ -5824,6 +6209,279 @@ module Aws::QuickSight
|
|
5824
6209
|
req.send_request(options)
|
5825
6210
|
end
|
5826
6211
|
|
6212
|
+
# Describes a brand.
|
6213
|
+
#
|
6214
|
+
# @option params [required, String] :aws_account_id
|
6215
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
6216
|
+
#
|
6217
|
+
# @option params [required, String] :brand_id
|
6218
|
+
# The ID of the Amazon QuickSight brand.
|
6219
|
+
#
|
6220
|
+
# @option params [String] :version_id
|
6221
|
+
# The ID of the specific version. The default value is the latest
|
6222
|
+
# version.
|
6223
|
+
#
|
6224
|
+
# @return [Types::DescribeBrandResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6225
|
+
#
|
6226
|
+
# * {Types::DescribeBrandResponse#request_id #request_id} => String
|
6227
|
+
# * {Types::DescribeBrandResponse#brand_detail #brand_detail} => Types::BrandDetail
|
6228
|
+
# * {Types::DescribeBrandResponse#brand_definition #brand_definition} => Types::BrandDefinition
|
6229
|
+
#
|
6230
|
+
# @example Request syntax with placeholder values
|
6231
|
+
#
|
6232
|
+
# resp = client.describe_brand({
|
6233
|
+
# aws_account_id: "AwsAccountId", # required
|
6234
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
6235
|
+
# version_id: "ShortRestrictiveResourceId",
|
6236
|
+
# })
|
6237
|
+
#
|
6238
|
+
# @example Response structure
|
6239
|
+
#
|
6240
|
+
# resp.request_id #=> String
|
6241
|
+
# resp.brand_detail.brand_id #=> String
|
6242
|
+
# resp.brand_detail.arn #=> String
|
6243
|
+
# resp.brand_detail.brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
6244
|
+
# resp.brand_detail.created_time #=> Time
|
6245
|
+
# resp.brand_detail.last_updated_time #=> Time
|
6246
|
+
# resp.brand_detail.version_id #=> String
|
6247
|
+
# resp.brand_detail.version_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED"
|
6248
|
+
# resp.brand_detail.errors #=> Array
|
6249
|
+
# resp.brand_detail.errors[0] #=> String
|
6250
|
+
# resp.brand_detail.logo.alt_text #=> String
|
6251
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.public_url #=> String
|
6252
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.s3_uri #=> String
|
6253
|
+
# resp.brand_detail.logo.logo_set.primary.original.generated_image_url #=> String
|
6254
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.public_url #=> String
|
6255
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.s3_uri #=> String
|
6256
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.generated_image_url #=> String
|
6257
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.public_url #=> String
|
6258
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.s3_uri #=> String
|
6259
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.generated_image_url #=> String
|
6260
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.public_url #=> String
|
6261
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.s3_uri #=> String
|
6262
|
+
# resp.brand_detail.logo.logo_set.favicon.original.generated_image_url #=> String
|
6263
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.public_url #=> String
|
6264
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.s3_uri #=> String
|
6265
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.generated_image_url #=> String
|
6266
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.public_url #=> String
|
6267
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.s3_uri #=> String
|
6268
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.generated_image_url #=> String
|
6269
|
+
# resp.brand_definition.brand_name #=> String
|
6270
|
+
# resp.brand_definition.description #=> String
|
6271
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.foreground #=> String
|
6272
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.background #=> String
|
6273
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.foreground #=> String
|
6274
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.background #=> String
|
6275
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.foreground #=> String
|
6276
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.background #=> String
|
6277
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.foreground #=> String
|
6278
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.background #=> String
|
6279
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.foreground #=> String
|
6280
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.background #=> String
|
6281
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.foreground #=> String
|
6282
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.background #=> String
|
6283
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.foreground #=> String
|
6284
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.background #=> String
|
6285
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.foreground #=> String
|
6286
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.background #=> String
|
6287
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.foreground #=> String
|
6288
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.background #=> String
|
6289
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.foreground #=> String
|
6290
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.background #=> String
|
6291
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.foreground #=> String
|
6292
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.background #=> String
|
6293
|
+
# resp.brand_definition.logo_configuration.alt_text #=> String
|
6294
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.public_url #=> String
|
6295
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.s3_uri #=> String
|
6296
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.public_url #=> String
|
6297
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.s3_uri #=> String
|
6298
|
+
#
|
6299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrand AWS API Documentation
|
6300
|
+
#
|
6301
|
+
# @overload describe_brand(params = {})
|
6302
|
+
# @param [Hash] params ({})
|
6303
|
+
def describe_brand(params = {}, options = {})
|
6304
|
+
req = build_request(:describe_brand, params)
|
6305
|
+
req.send_request(options)
|
6306
|
+
end
|
6307
|
+
|
6308
|
+
# Describes a brand assignment.
|
6309
|
+
#
|
6310
|
+
# @option params [required, String] :aws_account_id
|
6311
|
+
# The ID of the Amazon Web Services account that owns the brand
|
6312
|
+
# assignment.
|
6313
|
+
#
|
6314
|
+
# @return [Types::DescribeBrandAssignmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6315
|
+
#
|
6316
|
+
# * {Types::DescribeBrandAssignmentResponse#request_id #request_id} => String
|
6317
|
+
# * {Types::DescribeBrandAssignmentResponse#brand_arn #brand_arn} => String
|
6318
|
+
#
|
6319
|
+
# @example Request syntax with placeholder values
|
6320
|
+
#
|
6321
|
+
# resp = client.describe_brand_assignment({
|
6322
|
+
# aws_account_id: "AwsAccountId", # required
|
6323
|
+
# })
|
6324
|
+
#
|
6325
|
+
# @example Response structure
|
6326
|
+
#
|
6327
|
+
# resp.request_id #=> String
|
6328
|
+
# resp.brand_arn #=> String
|
6329
|
+
#
|
6330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandAssignment AWS API Documentation
|
6331
|
+
#
|
6332
|
+
# @overload describe_brand_assignment(params = {})
|
6333
|
+
# @param [Hash] params ({})
|
6334
|
+
def describe_brand_assignment(params = {}, options = {})
|
6335
|
+
req = build_request(:describe_brand_assignment, params)
|
6336
|
+
req.send_request(options)
|
6337
|
+
end
|
6338
|
+
|
6339
|
+
# Describes the published version of the brand.
|
6340
|
+
#
|
6341
|
+
# @option params [required, String] :aws_account_id
|
6342
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
6343
|
+
#
|
6344
|
+
# @option params [required, String] :brand_id
|
6345
|
+
# The ID of the Amazon QuickSight brand.
|
6346
|
+
#
|
6347
|
+
# @return [Types::DescribeBrandPublishedVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6348
|
+
#
|
6349
|
+
# * {Types::DescribeBrandPublishedVersionResponse#request_id #request_id} => String
|
6350
|
+
# * {Types::DescribeBrandPublishedVersionResponse#brand_detail #brand_detail} => Types::BrandDetail
|
6351
|
+
# * {Types::DescribeBrandPublishedVersionResponse#brand_definition #brand_definition} => Types::BrandDefinition
|
6352
|
+
#
|
6353
|
+
# @example Request syntax with placeholder values
|
6354
|
+
#
|
6355
|
+
# resp = client.describe_brand_published_version({
|
6356
|
+
# aws_account_id: "AwsAccountId", # required
|
6357
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
6358
|
+
# })
|
6359
|
+
#
|
6360
|
+
# @example Response structure
|
6361
|
+
#
|
6362
|
+
# resp.request_id #=> String
|
6363
|
+
# resp.brand_detail.brand_id #=> String
|
6364
|
+
# resp.brand_detail.arn #=> String
|
6365
|
+
# resp.brand_detail.brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
6366
|
+
# resp.brand_detail.created_time #=> Time
|
6367
|
+
# resp.brand_detail.last_updated_time #=> Time
|
6368
|
+
# resp.brand_detail.version_id #=> String
|
6369
|
+
# resp.brand_detail.version_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED"
|
6370
|
+
# resp.brand_detail.errors #=> Array
|
6371
|
+
# resp.brand_detail.errors[0] #=> String
|
6372
|
+
# resp.brand_detail.logo.alt_text #=> String
|
6373
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.public_url #=> String
|
6374
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.s3_uri #=> String
|
6375
|
+
# resp.brand_detail.logo.logo_set.primary.original.generated_image_url #=> String
|
6376
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.public_url #=> String
|
6377
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.s3_uri #=> String
|
6378
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.generated_image_url #=> String
|
6379
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.public_url #=> String
|
6380
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.s3_uri #=> String
|
6381
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.generated_image_url #=> String
|
6382
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.public_url #=> String
|
6383
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.s3_uri #=> String
|
6384
|
+
# resp.brand_detail.logo.logo_set.favicon.original.generated_image_url #=> String
|
6385
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.public_url #=> String
|
6386
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.s3_uri #=> String
|
6387
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.generated_image_url #=> String
|
6388
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.public_url #=> String
|
6389
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.s3_uri #=> String
|
6390
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.generated_image_url #=> String
|
6391
|
+
# resp.brand_definition.brand_name #=> String
|
6392
|
+
# resp.brand_definition.description #=> String
|
6393
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.foreground #=> String
|
6394
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.background #=> String
|
6395
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.foreground #=> String
|
6396
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.background #=> String
|
6397
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.foreground #=> String
|
6398
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.background #=> String
|
6399
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.foreground #=> String
|
6400
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.background #=> String
|
6401
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.foreground #=> String
|
6402
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.background #=> String
|
6403
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.foreground #=> String
|
6404
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.background #=> String
|
6405
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.foreground #=> String
|
6406
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.background #=> String
|
6407
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.foreground #=> String
|
6408
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.background #=> String
|
6409
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.foreground #=> String
|
6410
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.background #=> String
|
6411
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.foreground #=> String
|
6412
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.background #=> String
|
6413
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.foreground #=> String
|
6414
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.background #=> String
|
6415
|
+
# resp.brand_definition.logo_configuration.alt_text #=> String
|
6416
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.public_url #=> String
|
6417
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.s3_uri #=> String
|
6418
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.public_url #=> String
|
6419
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.s3_uri #=> String
|
6420
|
+
#
|
6421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandPublishedVersion AWS API Documentation
|
6422
|
+
#
|
6423
|
+
# @overload describe_brand_published_version(params = {})
|
6424
|
+
# @param [Hash] params ({})
|
6425
|
+
def describe_brand_published_version(params = {}, options = {})
|
6426
|
+
req = build_request(:describe_brand_published_version, params)
|
6427
|
+
req.send_request(options)
|
6428
|
+
end
|
6429
|
+
|
6430
|
+
# Describes a custom permissions profile.
|
6431
|
+
#
|
6432
|
+
# @option params [required, String] :aws_account_id
|
6433
|
+
# The ID of the Amazon Web Services account that contains the custom
|
6434
|
+
# permissions profile that you want described.
|
6435
|
+
#
|
6436
|
+
# @option params [required, String] :custom_permissions_name
|
6437
|
+
# The name of the custom permissions profile to describe.
|
6438
|
+
#
|
6439
|
+
# @return [Types::DescribeCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6440
|
+
#
|
6441
|
+
# * {Types::DescribeCustomPermissionsResponse#status #status} => Integer
|
6442
|
+
# * {Types::DescribeCustomPermissionsResponse#custom_permissions #custom_permissions} => Types::CustomPermissions
|
6443
|
+
# * {Types::DescribeCustomPermissionsResponse#request_id #request_id} => String
|
6444
|
+
#
|
6445
|
+
# @example Request syntax with placeholder values
|
6446
|
+
#
|
6447
|
+
# resp = client.describe_custom_permissions({
|
6448
|
+
# aws_account_id: "AwsAccountId", # required
|
6449
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
6450
|
+
# })
|
6451
|
+
#
|
6452
|
+
# @example Response structure
|
6453
|
+
#
|
6454
|
+
# resp.status #=> Integer
|
6455
|
+
# resp.custom_permissions.arn #=> String
|
6456
|
+
# resp.custom_permissions.custom_permissions_name #=> String
|
6457
|
+
# resp.custom_permissions.capabilities.export_to_csv #=> String, one of "DENY"
|
6458
|
+
# resp.custom_permissions.capabilities.export_to_excel #=> String, one of "DENY"
|
6459
|
+
# resp.custom_permissions.capabilities.create_and_update_themes #=> String, one of "DENY"
|
6460
|
+
# resp.custom_permissions.capabilities.add_or_run_anomaly_detection_for_analyses #=> String, one of "DENY"
|
6461
|
+
# resp.custom_permissions.capabilities.share_analyses #=> String, one of "DENY"
|
6462
|
+
# resp.custom_permissions.capabilities.create_and_update_datasets #=> String, one of "DENY"
|
6463
|
+
# resp.custom_permissions.capabilities.share_datasets #=> String, one of "DENY"
|
6464
|
+
# resp.custom_permissions.capabilities.subscribe_dashboard_email_reports #=> String, one of "DENY"
|
6465
|
+
# resp.custom_permissions.capabilities.create_and_update_dashboard_email_reports #=> String, one of "DENY"
|
6466
|
+
# resp.custom_permissions.capabilities.share_dashboards #=> String, one of "DENY"
|
6467
|
+
# resp.custom_permissions.capabilities.create_and_update_threshold_alerts #=> String, one of "DENY"
|
6468
|
+
# resp.custom_permissions.capabilities.rename_shared_folders #=> String, one of "DENY"
|
6469
|
+
# resp.custom_permissions.capabilities.create_shared_folders #=> String, one of "DENY"
|
6470
|
+
# resp.custom_permissions.capabilities.create_and_update_data_sources #=> String, one of "DENY"
|
6471
|
+
# resp.custom_permissions.capabilities.share_data_sources #=> String, one of "DENY"
|
6472
|
+
# resp.custom_permissions.capabilities.view_account_spice_capacity #=> String, one of "DENY"
|
6473
|
+
# resp.custom_permissions.capabilities.create_spice_dataset #=> String, one of "DENY"
|
6474
|
+
# resp.request_id #=> String
|
6475
|
+
#
|
6476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeCustomPermissions AWS API Documentation
|
6477
|
+
#
|
6478
|
+
# @overload describe_custom_permissions(params = {})
|
6479
|
+
# @param [Hash] params ({})
|
6480
|
+
def describe_custom_permissions(params = {}, options = {})
|
6481
|
+
req = build_request(:describe_custom_permissions, params)
|
6482
|
+
req.send_request(options)
|
6483
|
+
end
|
6484
|
+
|
5827
6485
|
# Provides a summary for a dashboard.
|
5828
6486
|
#
|
5829
6487
|
# @option params [required, String] :aws_account_id
|
@@ -8826,6 +9484,120 @@ module Aws::QuickSight
|
|
8826
9484
|
req.send_request(options)
|
8827
9485
|
end
|
8828
9486
|
|
9487
|
+
# Lists all brands in an Amazon QuickSight account.
|
9488
|
+
#
|
9489
|
+
# @option params [required, String] :aws_account_id
|
9490
|
+
# The ID of the Amazon Web Services account that owns the brands that
|
9491
|
+
# you want to list.
|
9492
|
+
#
|
9493
|
+
# @option params [Integer] :max_results
|
9494
|
+
# The maximum number of results to be returned in a single request.
|
9495
|
+
#
|
9496
|
+
# @option params [String] :next_token
|
9497
|
+
# The token for the next set of results, or null if there are no more
|
9498
|
+
# results.
|
9499
|
+
#
|
9500
|
+
# @return [Types::ListBrandsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9501
|
+
#
|
9502
|
+
# * {Types::ListBrandsResponse#next_token #next_token} => String
|
9503
|
+
# * {Types::ListBrandsResponse#brands #brands} => Array<Types::BrandSummary>
|
9504
|
+
#
|
9505
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9506
|
+
#
|
9507
|
+
# @example Request syntax with placeholder values
|
9508
|
+
#
|
9509
|
+
# resp = client.list_brands({
|
9510
|
+
# aws_account_id: "AwsAccountId", # required
|
9511
|
+
# max_results: 1,
|
9512
|
+
# next_token: "String",
|
9513
|
+
# })
|
9514
|
+
#
|
9515
|
+
# @example Response structure
|
9516
|
+
#
|
9517
|
+
# resp.next_token #=> String
|
9518
|
+
# resp.brands #=> Array
|
9519
|
+
# resp.brands[0].arn #=> String
|
9520
|
+
# resp.brands[0].brand_id #=> String
|
9521
|
+
# resp.brands[0].brand_name #=> String
|
9522
|
+
# resp.brands[0].description #=> String
|
9523
|
+
# resp.brands[0].brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
9524
|
+
# resp.brands[0].created_time #=> Time
|
9525
|
+
# resp.brands[0].last_updated_time #=> Time
|
9526
|
+
#
|
9527
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListBrands AWS API Documentation
|
9528
|
+
#
|
9529
|
+
# @overload list_brands(params = {})
|
9530
|
+
# @param [Hash] params ({})
|
9531
|
+
def list_brands(params = {}, options = {})
|
9532
|
+
req = build_request(:list_brands, params)
|
9533
|
+
req.send_request(options)
|
9534
|
+
end
|
9535
|
+
|
9536
|
+
# Returns a list of all the custom permissions profiles.
|
9537
|
+
#
|
9538
|
+
# @option params [required, String] :aws_account_id
|
9539
|
+
# The ID of the Amazon Web Services account that contains the custom
|
9540
|
+
# permissions profiles that you want to list.
|
9541
|
+
#
|
9542
|
+
# @option params [Integer] :max_results
|
9543
|
+
# The maximum number of results to return.
|
9544
|
+
#
|
9545
|
+
# @option params [String] :next_token
|
9546
|
+
# The token for the next set of results, or null if there are no more
|
9547
|
+
# results.
|
9548
|
+
#
|
9549
|
+
# @return [Types::ListCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9550
|
+
#
|
9551
|
+
# * {Types::ListCustomPermissionsResponse#status #status} => Integer
|
9552
|
+
# * {Types::ListCustomPermissionsResponse#custom_permissions_list #custom_permissions_list} => Array<Types::CustomPermissions>
|
9553
|
+
# * {Types::ListCustomPermissionsResponse#next_token #next_token} => String
|
9554
|
+
# * {Types::ListCustomPermissionsResponse#request_id #request_id} => String
|
9555
|
+
#
|
9556
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9557
|
+
#
|
9558
|
+
# @example Request syntax with placeholder values
|
9559
|
+
#
|
9560
|
+
# resp = client.list_custom_permissions({
|
9561
|
+
# aws_account_id: "AwsAccountId", # required
|
9562
|
+
# max_results: 1,
|
9563
|
+
# next_token: "String",
|
9564
|
+
# })
|
9565
|
+
#
|
9566
|
+
# @example Response structure
|
9567
|
+
#
|
9568
|
+
# resp.status #=> Integer
|
9569
|
+
# resp.custom_permissions_list #=> Array
|
9570
|
+
# resp.custom_permissions_list[0].arn #=> String
|
9571
|
+
# resp.custom_permissions_list[0].custom_permissions_name #=> String
|
9572
|
+
# resp.custom_permissions_list[0].capabilities.export_to_csv #=> String, one of "DENY"
|
9573
|
+
# resp.custom_permissions_list[0].capabilities.export_to_excel #=> String, one of "DENY"
|
9574
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_themes #=> String, one of "DENY"
|
9575
|
+
# resp.custom_permissions_list[0].capabilities.add_or_run_anomaly_detection_for_analyses #=> String, one of "DENY"
|
9576
|
+
# resp.custom_permissions_list[0].capabilities.share_analyses #=> String, one of "DENY"
|
9577
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_datasets #=> String, one of "DENY"
|
9578
|
+
# resp.custom_permissions_list[0].capabilities.share_datasets #=> String, one of "DENY"
|
9579
|
+
# resp.custom_permissions_list[0].capabilities.subscribe_dashboard_email_reports #=> String, one of "DENY"
|
9580
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_dashboard_email_reports #=> String, one of "DENY"
|
9581
|
+
# resp.custom_permissions_list[0].capabilities.share_dashboards #=> String, one of "DENY"
|
9582
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_threshold_alerts #=> String, one of "DENY"
|
9583
|
+
# resp.custom_permissions_list[0].capabilities.rename_shared_folders #=> String, one of "DENY"
|
9584
|
+
# resp.custom_permissions_list[0].capabilities.create_shared_folders #=> String, one of "DENY"
|
9585
|
+
# resp.custom_permissions_list[0].capabilities.create_and_update_data_sources #=> String, one of "DENY"
|
9586
|
+
# resp.custom_permissions_list[0].capabilities.share_data_sources #=> String, one of "DENY"
|
9587
|
+
# resp.custom_permissions_list[0].capabilities.view_account_spice_capacity #=> String, one of "DENY"
|
9588
|
+
# resp.custom_permissions_list[0].capabilities.create_spice_dataset #=> String, one of "DENY"
|
9589
|
+
# resp.next_token #=> String
|
9590
|
+
# resp.request_id #=> String
|
9591
|
+
#
|
9592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListCustomPermissions AWS API Documentation
|
9593
|
+
#
|
9594
|
+
# @overload list_custom_permissions(params = {})
|
9595
|
+
# @param [Hash] params ({})
|
9596
|
+
def list_custom_permissions(params = {}, options = {})
|
9597
|
+
req = build_request(:list_custom_permissions, params)
|
9598
|
+
req.send_request(options)
|
9599
|
+
end
|
9600
|
+
|
8829
9601
|
# Lists all the versions of the dashboards in the Amazon QuickSight
|
8830
9602
|
# subscription.
|
8831
9603
|
#
|
@@ -12948,6 +13720,309 @@ module Aws::QuickSight
|
|
12948
13720
|
req.send_request(options)
|
12949
13721
|
end
|
12950
13722
|
|
13723
|
+
# Updates a brand.
|
13724
|
+
#
|
13725
|
+
# @option params [required, String] :aws_account_id
|
13726
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
13727
|
+
#
|
13728
|
+
# @option params [required, String] :brand_id
|
13729
|
+
# The ID of the Amazon QuickSight brand.
|
13730
|
+
#
|
13731
|
+
# @option params [Types::BrandDefinition] :brand_definition
|
13732
|
+
# The definition of the brand.
|
13733
|
+
#
|
13734
|
+
# @return [Types::UpdateBrandResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13735
|
+
#
|
13736
|
+
# * {Types::UpdateBrandResponse#request_id #request_id} => String
|
13737
|
+
# * {Types::UpdateBrandResponse#brand_detail #brand_detail} => Types::BrandDetail
|
13738
|
+
# * {Types::UpdateBrandResponse#brand_definition #brand_definition} => Types::BrandDefinition
|
13739
|
+
#
|
13740
|
+
# @example Request syntax with placeholder values
|
13741
|
+
#
|
13742
|
+
# resp = client.update_brand({
|
13743
|
+
# aws_account_id: "AwsAccountId", # required
|
13744
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
13745
|
+
# brand_definition: {
|
13746
|
+
# brand_name: "Name", # required
|
13747
|
+
# description: "Description",
|
13748
|
+
# application_theme: {
|
13749
|
+
# brand_color_palette: {
|
13750
|
+
# primary: {
|
13751
|
+
# foreground: "HexColor",
|
13752
|
+
# background: "HexColor",
|
13753
|
+
# },
|
13754
|
+
# secondary: {
|
13755
|
+
# foreground: "HexColor",
|
13756
|
+
# background: "HexColor",
|
13757
|
+
# },
|
13758
|
+
# accent: {
|
13759
|
+
# foreground: "HexColor",
|
13760
|
+
# background: "HexColor",
|
13761
|
+
# },
|
13762
|
+
# measure: {
|
13763
|
+
# foreground: "HexColor",
|
13764
|
+
# background: "HexColor",
|
13765
|
+
# },
|
13766
|
+
# dimension: {
|
13767
|
+
# foreground: "HexColor",
|
13768
|
+
# background: "HexColor",
|
13769
|
+
# },
|
13770
|
+
# success: {
|
13771
|
+
# foreground: "HexColor",
|
13772
|
+
# background: "HexColor",
|
13773
|
+
# },
|
13774
|
+
# info: {
|
13775
|
+
# foreground: "HexColor",
|
13776
|
+
# background: "HexColor",
|
13777
|
+
# },
|
13778
|
+
# warning: {
|
13779
|
+
# foreground: "HexColor",
|
13780
|
+
# background: "HexColor",
|
13781
|
+
# },
|
13782
|
+
# danger: {
|
13783
|
+
# foreground: "HexColor",
|
13784
|
+
# background: "HexColor",
|
13785
|
+
# },
|
13786
|
+
# },
|
13787
|
+
# brand_element_style: {
|
13788
|
+
# navbar_style: {
|
13789
|
+
# global_navbar: {
|
13790
|
+
# foreground: "HexColor",
|
13791
|
+
# background: "HexColor",
|
13792
|
+
# },
|
13793
|
+
# contextual_navbar: {
|
13794
|
+
# foreground: "HexColor",
|
13795
|
+
# background: "HexColor",
|
13796
|
+
# },
|
13797
|
+
# },
|
13798
|
+
# },
|
13799
|
+
# },
|
13800
|
+
# logo_configuration: {
|
13801
|
+
# alt_text: "String", # required
|
13802
|
+
# logo_set: { # required
|
13803
|
+
# primary: { # required
|
13804
|
+
# original: { # required
|
13805
|
+
# source: {
|
13806
|
+
# public_url: "String",
|
13807
|
+
# s3_uri: "String",
|
13808
|
+
# },
|
13809
|
+
# },
|
13810
|
+
# },
|
13811
|
+
# favicon: {
|
13812
|
+
# original: { # required
|
13813
|
+
# source: {
|
13814
|
+
# public_url: "String",
|
13815
|
+
# s3_uri: "String",
|
13816
|
+
# },
|
13817
|
+
# },
|
13818
|
+
# },
|
13819
|
+
# },
|
13820
|
+
# },
|
13821
|
+
# },
|
13822
|
+
# })
|
13823
|
+
#
|
13824
|
+
# @example Response structure
|
13825
|
+
#
|
13826
|
+
# resp.request_id #=> String
|
13827
|
+
# resp.brand_detail.brand_id #=> String
|
13828
|
+
# resp.brand_detail.arn #=> String
|
13829
|
+
# resp.brand_detail.brand_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
|
13830
|
+
# resp.brand_detail.created_time #=> Time
|
13831
|
+
# resp.brand_detail.last_updated_time #=> Time
|
13832
|
+
# resp.brand_detail.version_id #=> String
|
13833
|
+
# resp.brand_detail.version_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_SUCCEEDED", "CREATE_FAILED"
|
13834
|
+
# resp.brand_detail.errors #=> Array
|
13835
|
+
# resp.brand_detail.errors[0] #=> String
|
13836
|
+
# resp.brand_detail.logo.alt_text #=> String
|
13837
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.public_url #=> String
|
13838
|
+
# resp.brand_detail.logo.logo_set.primary.original.source.s3_uri #=> String
|
13839
|
+
# resp.brand_detail.logo.logo_set.primary.original.generated_image_url #=> String
|
13840
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.public_url #=> String
|
13841
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.source.s3_uri #=> String
|
13842
|
+
# resp.brand_detail.logo.logo_set.primary.height_64.generated_image_url #=> String
|
13843
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.public_url #=> String
|
13844
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.source.s3_uri #=> String
|
13845
|
+
# resp.brand_detail.logo.logo_set.primary.height_32.generated_image_url #=> String
|
13846
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.public_url #=> String
|
13847
|
+
# resp.brand_detail.logo.logo_set.favicon.original.source.s3_uri #=> String
|
13848
|
+
# resp.brand_detail.logo.logo_set.favicon.original.generated_image_url #=> String
|
13849
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.public_url #=> String
|
13850
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.source.s3_uri #=> String
|
13851
|
+
# resp.brand_detail.logo.logo_set.favicon.height_64.generated_image_url #=> String
|
13852
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.public_url #=> String
|
13853
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.source.s3_uri #=> String
|
13854
|
+
# resp.brand_detail.logo.logo_set.favicon.height_32.generated_image_url #=> String
|
13855
|
+
# resp.brand_definition.brand_name #=> String
|
13856
|
+
# resp.brand_definition.description #=> String
|
13857
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.foreground #=> String
|
13858
|
+
# resp.brand_definition.application_theme.brand_color_palette.primary.background #=> String
|
13859
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.foreground #=> String
|
13860
|
+
# resp.brand_definition.application_theme.brand_color_palette.secondary.background #=> String
|
13861
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.foreground #=> String
|
13862
|
+
# resp.brand_definition.application_theme.brand_color_palette.accent.background #=> String
|
13863
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.foreground #=> String
|
13864
|
+
# resp.brand_definition.application_theme.brand_color_palette.measure.background #=> String
|
13865
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.foreground #=> String
|
13866
|
+
# resp.brand_definition.application_theme.brand_color_palette.dimension.background #=> String
|
13867
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.foreground #=> String
|
13868
|
+
# resp.brand_definition.application_theme.brand_color_palette.success.background #=> String
|
13869
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.foreground #=> String
|
13870
|
+
# resp.brand_definition.application_theme.brand_color_palette.info.background #=> String
|
13871
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.foreground #=> String
|
13872
|
+
# resp.brand_definition.application_theme.brand_color_palette.warning.background #=> String
|
13873
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.foreground #=> String
|
13874
|
+
# resp.brand_definition.application_theme.brand_color_palette.danger.background #=> String
|
13875
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.foreground #=> String
|
13876
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.global_navbar.background #=> String
|
13877
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.foreground #=> String
|
13878
|
+
# resp.brand_definition.application_theme.brand_element_style.navbar_style.contextual_navbar.background #=> String
|
13879
|
+
# resp.brand_definition.logo_configuration.alt_text #=> String
|
13880
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.public_url #=> String
|
13881
|
+
# resp.brand_definition.logo_configuration.logo_set.primary.original.source.s3_uri #=> String
|
13882
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.public_url #=> String
|
13883
|
+
# resp.brand_definition.logo_configuration.logo_set.favicon.original.source.s3_uri #=> String
|
13884
|
+
#
|
13885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrand AWS API Documentation
|
13886
|
+
#
|
13887
|
+
# @overload update_brand(params = {})
|
13888
|
+
# @param [Hash] params ({})
|
13889
|
+
def update_brand(params = {}, options = {})
|
13890
|
+
req = build_request(:update_brand, params)
|
13891
|
+
req.send_request(options)
|
13892
|
+
end
|
13893
|
+
|
13894
|
+
# Updates a brand assignment.
|
13895
|
+
#
|
13896
|
+
# @option params [required, String] :aws_account_id
|
13897
|
+
# The ID of the Amazon Web Services account that owns the brand
|
13898
|
+
# assignment.
|
13899
|
+
#
|
13900
|
+
# @option params [required, String] :brand_arn
|
13901
|
+
# The Amazon Resource Name (ARN) of the brand.
|
13902
|
+
#
|
13903
|
+
# @return [Types::UpdateBrandAssignmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13904
|
+
#
|
13905
|
+
# * {Types::UpdateBrandAssignmentResponse#request_id #request_id} => String
|
13906
|
+
# * {Types::UpdateBrandAssignmentResponse#brand_arn #brand_arn} => String
|
13907
|
+
#
|
13908
|
+
# @example Request syntax with placeholder values
|
13909
|
+
#
|
13910
|
+
# resp = client.update_brand_assignment({
|
13911
|
+
# aws_account_id: "AwsAccountId", # required
|
13912
|
+
# brand_arn: "Arn", # required
|
13913
|
+
# })
|
13914
|
+
#
|
13915
|
+
# @example Response structure
|
13916
|
+
#
|
13917
|
+
# resp.request_id #=> String
|
13918
|
+
# resp.brand_arn #=> String
|
13919
|
+
#
|
13920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandAssignment AWS API Documentation
|
13921
|
+
#
|
13922
|
+
# @overload update_brand_assignment(params = {})
|
13923
|
+
# @param [Hash] params ({})
|
13924
|
+
def update_brand_assignment(params = {}, options = {})
|
13925
|
+
req = build_request(:update_brand_assignment, params)
|
13926
|
+
req.send_request(options)
|
13927
|
+
end
|
13928
|
+
|
13929
|
+
# Updates the published version of a brand.
|
13930
|
+
#
|
13931
|
+
# @option params [required, String] :aws_account_id
|
13932
|
+
# The ID of the Amazon Web Services account that owns the brand.
|
13933
|
+
#
|
13934
|
+
# @option params [required, String] :brand_id
|
13935
|
+
# The ID of the Amazon QuickSight brand.
|
13936
|
+
#
|
13937
|
+
# @option params [required, String] :version_id
|
13938
|
+
# The ID of the published version.
|
13939
|
+
#
|
13940
|
+
# @return [Types::UpdateBrandPublishedVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13941
|
+
#
|
13942
|
+
# * {Types::UpdateBrandPublishedVersionResponse#request_id #request_id} => String
|
13943
|
+
# * {Types::UpdateBrandPublishedVersionResponse#version_id #version_id} => String
|
13944
|
+
#
|
13945
|
+
# @example Request syntax with placeholder values
|
13946
|
+
#
|
13947
|
+
# resp = client.update_brand_published_version({
|
13948
|
+
# aws_account_id: "AwsAccountId", # required
|
13949
|
+
# brand_id: "ShortRestrictiveResourceId", # required
|
13950
|
+
# version_id: "ShortRestrictiveResourceId", # required
|
13951
|
+
# })
|
13952
|
+
#
|
13953
|
+
# @example Response structure
|
13954
|
+
#
|
13955
|
+
# resp.request_id #=> String
|
13956
|
+
# resp.version_id #=> String
|
13957
|
+
#
|
13958
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandPublishedVersion AWS API Documentation
|
13959
|
+
#
|
13960
|
+
# @overload update_brand_published_version(params = {})
|
13961
|
+
# @param [Hash] params ({})
|
13962
|
+
def update_brand_published_version(params = {}, options = {})
|
13963
|
+
req = build_request(:update_brand_published_version, params)
|
13964
|
+
req.send_request(options)
|
13965
|
+
end
|
13966
|
+
|
13967
|
+
# Updates a custom permissions profile.
|
13968
|
+
#
|
13969
|
+
# @option params [required, String] :aws_account_id
|
13970
|
+
# The ID of the Amazon Web Services account that contains the custom
|
13971
|
+
# permissions profile that you want to update.
|
13972
|
+
#
|
13973
|
+
# @option params [required, String] :custom_permissions_name
|
13974
|
+
# The name of the custom permissions profile that you want to update.
|
13975
|
+
#
|
13976
|
+
# @option params [Types::Capabilities] :capabilities
|
13977
|
+
# A set of actions to include in the custom permissions profile.
|
13978
|
+
#
|
13979
|
+
# @return [Types::UpdateCustomPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13980
|
+
#
|
13981
|
+
# * {Types::UpdateCustomPermissionsResponse#status #status} => Integer
|
13982
|
+
# * {Types::UpdateCustomPermissionsResponse#arn #arn} => String
|
13983
|
+
# * {Types::UpdateCustomPermissionsResponse#request_id #request_id} => String
|
13984
|
+
#
|
13985
|
+
# @example Request syntax with placeholder values
|
13986
|
+
#
|
13987
|
+
# resp = client.update_custom_permissions({
|
13988
|
+
# aws_account_id: "AwsAccountId", # required
|
13989
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
13990
|
+
# capabilities: {
|
13991
|
+
# export_to_csv: "DENY", # accepts DENY
|
13992
|
+
# export_to_excel: "DENY", # accepts DENY
|
13993
|
+
# create_and_update_themes: "DENY", # accepts DENY
|
13994
|
+
# add_or_run_anomaly_detection_for_analyses: "DENY", # accepts DENY
|
13995
|
+
# share_analyses: "DENY", # accepts DENY
|
13996
|
+
# create_and_update_datasets: "DENY", # accepts DENY
|
13997
|
+
# share_datasets: "DENY", # accepts DENY
|
13998
|
+
# subscribe_dashboard_email_reports: "DENY", # accepts DENY
|
13999
|
+
# create_and_update_dashboard_email_reports: "DENY", # accepts DENY
|
14000
|
+
# share_dashboards: "DENY", # accepts DENY
|
14001
|
+
# create_and_update_threshold_alerts: "DENY", # accepts DENY
|
14002
|
+
# rename_shared_folders: "DENY", # accepts DENY
|
14003
|
+
# create_shared_folders: "DENY", # accepts DENY
|
14004
|
+
# create_and_update_data_sources: "DENY", # accepts DENY
|
14005
|
+
# share_data_sources: "DENY", # accepts DENY
|
14006
|
+
# view_account_spice_capacity: "DENY", # accepts DENY
|
14007
|
+
# create_spice_dataset: "DENY", # accepts DENY
|
14008
|
+
# },
|
14009
|
+
# })
|
14010
|
+
#
|
14011
|
+
# @example Response structure
|
14012
|
+
#
|
14013
|
+
# resp.status #=> Integer
|
14014
|
+
# resp.arn #=> String
|
14015
|
+
# resp.request_id #=> String
|
14016
|
+
#
|
14017
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateCustomPermissions AWS API Documentation
|
14018
|
+
#
|
14019
|
+
# @overload update_custom_permissions(params = {})
|
14020
|
+
# @param [Hash] params ({})
|
14021
|
+
def update_custom_permissions(params = {}, options = {})
|
14022
|
+
req = build_request(:update_custom_permissions, params)
|
14023
|
+
req.send_request(options)
|
14024
|
+
end
|
14025
|
+
|
12951
14026
|
# Updates a dashboard in an Amazon Web Services account.
|
12952
14027
|
#
|
12953
14028
|
# <note markdown="1"> Updating a Dashboard creates a new dashboard version but does not
|
@@ -14996,7 +16071,6 @@ module Aws::QuickSight
|
|
14996
16071
|
# * `"quicksight:ListThemeAliases"`
|
14997
16072
|
#
|
14998
16073
|
# * `"quicksight:ListThemeVersions"`
|
14999
|
-
#
|
15000
16074
|
# * Owner
|
15001
16075
|
#
|
15002
16076
|
# * `"quicksight:DescribeTheme"`
|
@@ -15020,7 +16094,6 @@ module Aws::QuickSight
|
|
15020
16094
|
# * `"quicksight:UpdateThemePermissions"`
|
15021
16095
|
#
|
15022
16096
|
# * `"quicksight:DescribeThemePermissions"`
|
15023
|
-
#
|
15024
16097
|
# * To specify no permissions, omit the permissions list.
|
15025
16098
|
#
|
15026
16099
|
# @option params [required, String] :aws_account_id
|
@@ -15625,6 +16698,50 @@ module Aws::QuickSight
|
|
15625
16698
|
req.send_request(options)
|
15626
16699
|
end
|
15627
16700
|
|
16701
|
+
# Updates a custom permissions profile for a user.
|
16702
|
+
#
|
16703
|
+
# @option params [required, String] :user_name
|
16704
|
+
# The username of the user that you want to update custom permissions
|
16705
|
+
# for.
|
16706
|
+
#
|
16707
|
+
# @option params [required, String] :aws_account_id
|
16708
|
+
# The ID of the Amazon Web Services account that contains the custom
|
16709
|
+
# permission configuration that you want to update.
|
16710
|
+
#
|
16711
|
+
# @option params [required, String] :namespace
|
16712
|
+
# The namespace that the user belongs to.
|
16713
|
+
#
|
16714
|
+
# @option params [required, String] :custom_permissions_name
|
16715
|
+
# The name of the custom permissions that you want to update.
|
16716
|
+
#
|
16717
|
+
# @return [Types::UpdateUserCustomPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16718
|
+
#
|
16719
|
+
# * {Types::UpdateUserCustomPermissionResponse#request_id #request_id} => String
|
16720
|
+
# * {Types::UpdateUserCustomPermissionResponse#status #status} => Integer
|
16721
|
+
#
|
16722
|
+
# @example Request syntax with placeholder values
|
16723
|
+
#
|
16724
|
+
# resp = client.update_user_custom_permission({
|
16725
|
+
# user_name: "UserName", # required
|
16726
|
+
# aws_account_id: "AwsAccountId", # required
|
16727
|
+
# namespace: "Namespace", # required
|
16728
|
+
# custom_permissions_name: "CustomPermissionsName", # required
|
16729
|
+
# })
|
16730
|
+
#
|
16731
|
+
# @example Response structure
|
16732
|
+
#
|
16733
|
+
# resp.request_id #=> String
|
16734
|
+
# resp.status #=> Integer
|
16735
|
+
#
|
16736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateUserCustomPermission AWS API Documentation
|
16737
|
+
#
|
16738
|
+
# @overload update_user_custom_permission(params = {})
|
16739
|
+
# @param [Hash] params ({})
|
16740
|
+
def update_user_custom_permission(params = {}, options = {})
|
16741
|
+
req = build_request(:update_user_custom_permission, params)
|
16742
|
+
req.send_request(options)
|
16743
|
+
end
|
16744
|
+
|
15628
16745
|
# Updates a VPC connection.
|
15629
16746
|
#
|
15630
16747
|
# @option params [required, String] :aws_account_id
|
@@ -15709,7 +16826,7 @@ module Aws::QuickSight
|
|
15709
16826
|
tracer: tracer
|
15710
16827
|
)
|
15711
16828
|
context[:gem_name] = 'aws-sdk-quicksight'
|
15712
|
-
context[:gem_version] = '1.
|
16829
|
+
context[:gem_version] = '1.137.0'
|
15713
16830
|
Seahorse::Client::Request.new(handlers, context)
|
15714
16831
|
end
|
15715
16832
|
|