@aws-sdk/client-quicksight 3.691.0 → 3.692.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.
- package/README.md +143 -7
- package/dist-cjs/index.js +1116 -216
- package/dist-es/QuickSight.js +34 -0
- package/dist-es/commands/CreateBrandCommand.js +22 -0
- package/dist-es/commands/CreateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DeleteBrandCommand.js +22 -0
- package/dist-es/commands/DeleteCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/DescribeBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DescribeBrandCommand.js +22 -0
- package/dist-es/commands/DescribeBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/DescribeCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DescribeTemplateDefinitionCommand.js +1 -1
- package/dist-es/commands/DescribeTopicCommand.js +1 -1
- package/dist-es/commands/ListBrandsCommand.js +22 -0
- package/dist-es/commands/ListCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/UpdateBrandCommand.js +22 -0
- package/dist-es/commands/UpdateBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/UpdateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/models/models_2.js +52 -107
- package/dist-es/models/models_3.js +108 -29
- package/dist-es/models/models_4.js +30 -16
- package/dist-es/pagination/ListBrandsPaginator.js +4 -0
- package/dist-es/pagination/ListCustomPermissionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +540 -6
- package/dist-types/QuickSight.d.ts +119 -0
- package/dist-types/QuickSightClient.d.ts +19 -2
- package/dist-types/commands/CreateBrandCommand.d.ts +268 -0
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +132 -0
- package/dist-types/commands/DeleteBrandAssignmentCommand.d.ts +92 -0
- package/dist-types/commands/DeleteBrandCommand.d.ts +93 -0
- package/dist-types/commands/DeleteCustomPermissionsCommand.d.ts +104 -0
- package/dist-types/commands/DeleteUserCustomPermissionCommand.d.ts +101 -0
- package/dist-types/commands/DescribeBrandAssignmentCommand.d.ts +93 -0
- package/dist-types/commands/DescribeBrandCommand.d.ts +204 -0
- package/dist-types/commands/DescribeBrandPublishedVersionCommand.d.ts +203 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/DescribeIngestionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +1 -2
- package/dist-types/commands/ListBrandsCommand.d.ts +99 -0
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +124 -0
- package/dist-types/commands/UpdateBrandAssignmentCommand.d.ts +94 -0
- package/dist-types/commands/UpdateBrandCommand.d.ts +262 -0
- package/dist-types/commands/UpdateBrandPublishedVersionCommand.d.ts +95 -0
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/models/models_2.d.ts +1343 -1408
- package/dist-types/models/models_3.d.ts +4131 -4269
- package/dist-types/models/models_4.d.ts +1387 -21
- package/dist-types/pagination/ListBrandsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCustomPermissionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +153 -0
- package/dist-types/ts3.4/QuickSight.d.ts +289 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CreateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIngestionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListBrandsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/models/models_2.d.ts +188 -311
- package/dist-types/ts3.4/models/models_3.d.ts +389 -267
- package/dist-types/ts3.4/models/models_4.d.ts +342 -18
- package/dist-types/ts3.4/pagination/ListBrandsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCustomPermissionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +204 -0
- package/package.json +35 -35
package/README.md
CHANGED
|
@@ -28,16 +28,16 @@ using your favorite package manager:
|
|
|
28
28
|
|
|
29
29
|
The AWS SDK is modulized by clients and commands.
|
|
30
30
|
To send a request, you only need to import the `QuickSightClient` and
|
|
31
|
-
the commands you need, for example `
|
|
31
|
+
the commands you need, for example `ListBrandsCommand`:
|
|
32
32
|
|
|
33
33
|
```js
|
|
34
34
|
// ES5 example
|
|
35
|
-
const { QuickSightClient,
|
|
35
|
+
const { QuickSightClient, ListBrandsCommand } = require("@aws-sdk/client-quicksight");
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
```ts
|
|
39
39
|
// ES6+ example
|
|
40
|
-
import { QuickSightClient,
|
|
40
|
+
import { QuickSightClient, ListBrandsCommand } from "@aws-sdk/client-quicksight";
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
### Usage
|
|
@@ -56,7 +56,7 @@ const client = new QuickSightClient({ region: "REGION" });
|
|
|
56
56
|
const params = {
|
|
57
57
|
/** input parameters */
|
|
58
58
|
};
|
|
59
|
-
const command = new
|
|
59
|
+
const command = new ListBrandsCommand(params);
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
#### Async/await
|
|
@@ -135,7 +135,7 @@ const client = new AWS.QuickSight({ region: "REGION" });
|
|
|
135
135
|
|
|
136
136
|
// async/await.
|
|
137
137
|
try {
|
|
138
|
-
const data = await client.
|
|
138
|
+
const data = await client.listBrands(params);
|
|
139
139
|
// process data.
|
|
140
140
|
} catch (error) {
|
|
141
141
|
// error handling.
|
|
@@ -143,7 +143,7 @@ try {
|
|
|
143
143
|
|
|
144
144
|
// Promises.
|
|
145
145
|
client
|
|
146
|
-
.
|
|
146
|
+
.listBrands(params)
|
|
147
147
|
.then((data) => {
|
|
148
148
|
// process data.
|
|
149
149
|
})
|
|
@@ -152,7 +152,7 @@ client
|
|
|
152
152
|
});
|
|
153
153
|
|
|
154
154
|
// callbacks.
|
|
155
|
-
client.
|
|
155
|
+
client.listBrands(params, (err, data) => {
|
|
156
156
|
// process err and data.
|
|
157
157
|
});
|
|
158
158
|
```
|
|
@@ -255,6 +255,22 @@ CreateAnalysis
|
|
|
255
255
|
|
|
256
256
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/CreateAnalysisCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/CreateAnalysisCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/CreateAnalysisCommandOutput/)
|
|
257
257
|
|
|
258
|
+
</details>
|
|
259
|
+
<details>
|
|
260
|
+
<summary>
|
|
261
|
+
CreateBrand
|
|
262
|
+
</summary>
|
|
263
|
+
|
|
264
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/CreateBrandCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/CreateBrandCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/CreateBrandCommandOutput/)
|
|
265
|
+
|
|
266
|
+
</details>
|
|
267
|
+
<details>
|
|
268
|
+
<summary>
|
|
269
|
+
CreateCustomPermissions
|
|
270
|
+
</summary>
|
|
271
|
+
|
|
272
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/CreateCustomPermissionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/CreateCustomPermissionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/CreateCustomPermissionsCommandOutput/)
|
|
273
|
+
|
|
258
274
|
</details>
|
|
259
275
|
<details>
|
|
260
276
|
<summary>
|
|
@@ -431,6 +447,30 @@ DeleteAnalysis
|
|
|
431
447
|
|
|
432
448
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DeleteAnalysisCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteAnalysisCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteAnalysisCommandOutput/)
|
|
433
449
|
|
|
450
|
+
</details>
|
|
451
|
+
<details>
|
|
452
|
+
<summary>
|
|
453
|
+
DeleteBrand
|
|
454
|
+
</summary>
|
|
455
|
+
|
|
456
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DeleteBrandCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteBrandCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteBrandCommandOutput/)
|
|
457
|
+
|
|
458
|
+
</details>
|
|
459
|
+
<details>
|
|
460
|
+
<summary>
|
|
461
|
+
DeleteBrandAssignment
|
|
462
|
+
</summary>
|
|
463
|
+
|
|
464
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DeleteBrandAssignmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteBrandAssignmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteBrandAssignmentCommandOutput/)
|
|
465
|
+
|
|
466
|
+
</details>
|
|
467
|
+
<details>
|
|
468
|
+
<summary>
|
|
469
|
+
DeleteCustomPermissions
|
|
470
|
+
</summary>
|
|
471
|
+
|
|
472
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DeleteCustomPermissionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteCustomPermissionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteCustomPermissionsCommandOutput/)
|
|
473
|
+
|
|
434
474
|
</details>
|
|
435
475
|
<details>
|
|
436
476
|
<summary>
|
|
@@ -607,6 +647,14 @@ DeleteUserByPrincipalId
|
|
|
607
647
|
|
|
608
648
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DeleteUserByPrincipalIdCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteUserByPrincipalIdCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteUserByPrincipalIdCommandOutput/)
|
|
609
649
|
|
|
650
|
+
</details>
|
|
651
|
+
<details>
|
|
652
|
+
<summary>
|
|
653
|
+
DeleteUserCustomPermission
|
|
654
|
+
</summary>
|
|
655
|
+
|
|
656
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DeleteUserCustomPermissionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteUserCustomPermissionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DeleteUserCustomPermissionCommandOutput/)
|
|
657
|
+
|
|
610
658
|
</details>
|
|
611
659
|
<details>
|
|
612
660
|
<summary>
|
|
@@ -679,6 +727,38 @@ DescribeAssetBundleImportJob
|
|
|
679
727
|
|
|
680
728
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DescribeAssetBundleImportJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeAssetBundleImportJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeAssetBundleImportJobCommandOutput/)
|
|
681
729
|
|
|
730
|
+
</details>
|
|
731
|
+
<details>
|
|
732
|
+
<summary>
|
|
733
|
+
DescribeBrand
|
|
734
|
+
</summary>
|
|
735
|
+
|
|
736
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DescribeBrandCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeBrandCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeBrandCommandOutput/)
|
|
737
|
+
|
|
738
|
+
</details>
|
|
739
|
+
<details>
|
|
740
|
+
<summary>
|
|
741
|
+
DescribeBrandAssignment
|
|
742
|
+
</summary>
|
|
743
|
+
|
|
744
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DescribeBrandAssignmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeBrandAssignmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeBrandAssignmentCommandOutput/)
|
|
745
|
+
|
|
746
|
+
</details>
|
|
747
|
+
<details>
|
|
748
|
+
<summary>
|
|
749
|
+
DescribeBrandPublishedVersion
|
|
750
|
+
</summary>
|
|
751
|
+
|
|
752
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DescribeBrandPublishedVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeBrandPublishedVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeBrandPublishedVersionCommandOutput/)
|
|
753
|
+
|
|
754
|
+
</details>
|
|
755
|
+
<details>
|
|
756
|
+
<summary>
|
|
757
|
+
DescribeCustomPermissions
|
|
758
|
+
</summary>
|
|
759
|
+
|
|
760
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/DescribeCustomPermissionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeCustomPermissionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/DescribeCustomPermissionsCommandOutput/)
|
|
761
|
+
|
|
682
762
|
</details>
|
|
683
763
|
<details>
|
|
684
764
|
<summary>
|
|
@@ -1023,6 +1103,22 @@ ListAssetBundleImportJobs
|
|
|
1023
1103
|
|
|
1024
1104
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/ListAssetBundleImportJobsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/ListAssetBundleImportJobsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/ListAssetBundleImportJobsCommandOutput/)
|
|
1025
1105
|
|
|
1106
|
+
</details>
|
|
1107
|
+
<details>
|
|
1108
|
+
<summary>
|
|
1109
|
+
ListBrands
|
|
1110
|
+
</summary>
|
|
1111
|
+
|
|
1112
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/ListBrandsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/ListBrandsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/ListBrandsCommandOutput/)
|
|
1113
|
+
|
|
1114
|
+
</details>
|
|
1115
|
+
<details>
|
|
1116
|
+
<summary>
|
|
1117
|
+
ListCustomPermissions
|
|
1118
|
+
</summary>
|
|
1119
|
+
|
|
1120
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/ListCustomPermissionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/ListCustomPermissionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/ListCustomPermissionsCommandOutput/)
|
|
1121
|
+
|
|
1026
1122
|
</details>
|
|
1027
1123
|
<details>
|
|
1028
1124
|
<summary>
|
|
@@ -1407,6 +1503,38 @@ UpdateAnalysisPermissions
|
|
|
1407
1503
|
|
|
1408
1504
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateAnalysisPermissionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateAnalysisPermissionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateAnalysisPermissionsCommandOutput/)
|
|
1409
1505
|
|
|
1506
|
+
</details>
|
|
1507
|
+
<details>
|
|
1508
|
+
<summary>
|
|
1509
|
+
UpdateBrand
|
|
1510
|
+
</summary>
|
|
1511
|
+
|
|
1512
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateBrandCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateBrandCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateBrandCommandOutput/)
|
|
1513
|
+
|
|
1514
|
+
</details>
|
|
1515
|
+
<details>
|
|
1516
|
+
<summary>
|
|
1517
|
+
UpdateBrandAssignment
|
|
1518
|
+
</summary>
|
|
1519
|
+
|
|
1520
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateBrandAssignmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateBrandAssignmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateBrandAssignmentCommandOutput/)
|
|
1521
|
+
|
|
1522
|
+
</details>
|
|
1523
|
+
<details>
|
|
1524
|
+
<summary>
|
|
1525
|
+
UpdateBrandPublishedVersion
|
|
1526
|
+
</summary>
|
|
1527
|
+
|
|
1528
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateBrandPublishedVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateBrandPublishedVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateBrandPublishedVersionCommandOutput/)
|
|
1529
|
+
|
|
1530
|
+
</details>
|
|
1531
|
+
<details>
|
|
1532
|
+
<summary>
|
|
1533
|
+
UpdateCustomPermissions
|
|
1534
|
+
</summary>
|
|
1535
|
+
|
|
1536
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateCustomPermissionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateCustomPermissionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateCustomPermissionsCommandOutput/)
|
|
1537
|
+
|
|
1410
1538
|
</details>
|
|
1411
1539
|
<details>
|
|
1412
1540
|
<summary>
|
|
@@ -1647,6 +1775,14 @@ UpdateUser
|
|
|
1647
1775
|
|
|
1648
1776
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateUserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateUserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateUserCommandOutput/)
|
|
1649
1777
|
|
|
1778
|
+
</details>
|
|
1779
|
+
<details>
|
|
1780
|
+
<summary>
|
|
1781
|
+
UpdateUserCustomPermission
|
|
1782
|
+
</summary>
|
|
1783
|
+
|
|
1784
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateUserCustomPermissionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateUserCustomPermissionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateUserCustomPermissionCommandOutput/)
|
|
1785
|
+
|
|
1650
1786
|
</details>
|
|
1651
1787
|
<details>
|
|
1652
1788
|
<summary>
|