@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
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateCustomPermissionsRequest, CreateCustomPermissionsResponse } from "../models/models_2";
|
|
4
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateCustomPermissionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateCustomPermissionsCommandInput extends CreateCustomPermissionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateCustomPermissionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCustomPermissionsCommandOutput extends CreateCustomPermissionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateCustomPermissionsCommand_base: {
|
|
25
|
+
new (input: CreateCustomPermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCustomPermissionsCommandInput, CreateCustomPermissionsCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateCustomPermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCustomPermissionsCommandInput, CreateCustomPermissionsCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a custom permissions profile.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { QuickSightClient, CreateCustomPermissionsCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
35
|
+
* // const { QuickSightClient, CreateCustomPermissionsCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
36
|
+
* const client = new QuickSightClient(config);
|
|
37
|
+
* const input = { // CreateCustomPermissionsRequest
|
|
38
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
39
|
+
* CustomPermissionsName: "STRING_VALUE", // required
|
|
40
|
+
* Capabilities: { // Capabilities
|
|
41
|
+
* ExportToCsv: "DENY",
|
|
42
|
+
* ExportToExcel: "DENY",
|
|
43
|
+
* CreateAndUpdateThemes: "DENY",
|
|
44
|
+
* AddOrRunAnomalyDetectionForAnalyses: "DENY",
|
|
45
|
+
* ShareAnalyses: "DENY",
|
|
46
|
+
* CreateAndUpdateDatasets: "DENY",
|
|
47
|
+
* ShareDatasets: "DENY",
|
|
48
|
+
* SubscribeDashboardEmailReports: "DENY",
|
|
49
|
+
* CreateAndUpdateDashboardEmailReports: "DENY",
|
|
50
|
+
* ShareDashboards: "DENY",
|
|
51
|
+
* CreateAndUpdateThresholdAlerts: "DENY",
|
|
52
|
+
* RenameSharedFolders: "DENY",
|
|
53
|
+
* CreateSharedFolders: "DENY",
|
|
54
|
+
* CreateAndUpdateDataSources: "DENY",
|
|
55
|
+
* ShareDataSources: "DENY",
|
|
56
|
+
* ViewAccountSPICECapacity: "DENY",
|
|
57
|
+
* CreateSPICEDataset: "DENY",
|
|
58
|
+
* },
|
|
59
|
+
* Tags: [ // TagList
|
|
60
|
+
* { // Tag
|
|
61
|
+
* Key: "STRING_VALUE", // required
|
|
62
|
+
* Value: "STRING_VALUE", // required
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* };
|
|
66
|
+
* const command = new CreateCustomPermissionsCommand(input);
|
|
67
|
+
* const response = await client.send(command);
|
|
68
|
+
* // { // CreateCustomPermissionsResponse
|
|
69
|
+
* // Status: Number("int"),
|
|
70
|
+
* // Arn: "STRING_VALUE",
|
|
71
|
+
* // RequestId: "STRING_VALUE",
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
74
|
+
* ```
|
|
75
|
+
*
|
|
76
|
+
* @param CreateCustomPermissionsCommandInput - {@link CreateCustomPermissionsCommandInput}
|
|
77
|
+
* @returns {@link CreateCustomPermissionsCommandOutput}
|
|
78
|
+
* @see {@link CreateCustomPermissionsCommandInput} for command's `input` shape.
|
|
79
|
+
* @see {@link CreateCustomPermissionsCommandOutput} for command's `response` shape.
|
|
80
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
83
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
84
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
85
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
86
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ConflictException} (client fault)
|
|
89
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
92
|
+
* <p>An internal failure occurred.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
95
|
+
* <p>One or more parameters has a value that isn't valid.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
98
|
+
* <p>A limit is exceeded.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link PreconditionNotMetException} (client fault)
|
|
101
|
+
* <p>One or more preconditions aren't met.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
104
|
+
* <p>The resource specified already exists. </p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
107
|
+
* <p>One or more resources can't be found.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ResourceUnavailableException} (server fault)
|
|
110
|
+
* <p>This resource is currently unavailable.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
113
|
+
* <p>Access is throttled.</p>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link QuickSightServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
117
|
+
*
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export declare class CreateCustomPermissionsCommand extends CreateCustomPermissionsCommand_base {
|
|
121
|
+
/** @internal type navigation helper, not in runtime. */
|
|
122
|
+
protected static __types: {
|
|
123
|
+
api: {
|
|
124
|
+
input: CreateCustomPermissionsRequest;
|
|
125
|
+
output: CreateCustomPermissionsResponse;
|
|
126
|
+
};
|
|
127
|
+
sdk: {
|
|
128
|
+
input: CreateCustomPermissionsCommandInput;
|
|
129
|
+
output: CreateCustomPermissionsCommandOutput;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteBrandAssignmentRequest, DeleteBrandAssignmentResponse } from "../models/models_3";
|
|
4
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteBrandAssignmentCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteBrandAssignmentCommandInput extends DeleteBrandAssignmentRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteBrandAssignmentCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteBrandAssignmentCommandOutput extends DeleteBrandAssignmentResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteBrandAssignmentCommand_base: {
|
|
25
|
+
new (input: DeleteBrandAssignmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBrandAssignmentCommandInput, DeleteBrandAssignmentCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteBrandAssignmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBrandAssignmentCommandInput, DeleteBrandAssignmentCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes a brand assignment.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { QuickSightClient, DeleteBrandAssignmentCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
35
|
+
* // const { QuickSightClient, DeleteBrandAssignmentCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
36
|
+
* const client = new QuickSightClient(config);
|
|
37
|
+
* const input = { // DeleteBrandAssignmentRequest
|
|
38
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteBrandAssignmentCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // DeleteBrandAssignmentResponse
|
|
43
|
+
* // RequestId: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteBrandAssignmentCommandInput - {@link DeleteBrandAssignmentCommandInput}
|
|
49
|
+
* @returns {@link DeleteBrandAssignmentCommandOutput}
|
|
50
|
+
* @see {@link DeleteBrandAssignmentCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteBrandAssignmentCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
56
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
57
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
58
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ConflictException} (client fault)
|
|
61
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>An internal service exception.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
67
|
+
* <p>You don't have this feature activated for your account. To fix this issue, contact Amazon Web Services support.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>One or more resources can't be found.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>Access is throttled.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link QuickSightServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
77
|
+
*
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class DeleteBrandAssignmentCommand extends DeleteBrandAssignmentCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: DeleteBrandAssignmentRequest;
|
|
85
|
+
output: DeleteBrandAssignmentResponse;
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: DeleteBrandAssignmentCommandInput;
|
|
89
|
+
output: DeleteBrandAssignmentCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteBrandRequest, DeleteBrandResponse } from "../models/models_3";
|
|
4
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteBrandCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteBrandCommandInput extends DeleteBrandRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteBrandCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteBrandCommandOutput extends DeleteBrandResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteBrandCommand_base: {
|
|
25
|
+
new (input: DeleteBrandCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBrandCommandInput, DeleteBrandCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteBrandCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBrandCommandInput, DeleteBrandCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes an Amazon QuickSight brand.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { QuickSightClient, DeleteBrandCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
35
|
+
* // const { QuickSightClient, DeleteBrandCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
36
|
+
* const client = new QuickSightClient(config);
|
|
37
|
+
* const input = { // DeleteBrandRequest
|
|
38
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
39
|
+
* BrandId: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new DeleteBrandCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // DeleteBrandResponse
|
|
44
|
+
* // RequestId: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param DeleteBrandCommandInput - {@link DeleteBrandCommandInput}
|
|
50
|
+
* @returns {@link DeleteBrandCommandOutput}
|
|
51
|
+
* @see {@link DeleteBrandCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link DeleteBrandCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
57
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
58
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
59
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ConflictException} (client fault)
|
|
62
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerException} (server fault)
|
|
65
|
+
* <p>An internal service exception.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
68
|
+
* <p>You don't have this feature activated for your account. To fix this issue, contact Amazon Web Services support.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>One or more resources can't be found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>Access is throttled.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link QuickSightServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class DeleteBrandCommand extends DeleteBrandCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: DeleteBrandRequest;
|
|
86
|
+
output: DeleteBrandResponse;
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: DeleteBrandCommandInput;
|
|
90
|
+
output: DeleteBrandCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteCustomPermissionsRequest, DeleteCustomPermissionsResponse } from "../models/models_3";
|
|
4
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteCustomPermissionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteCustomPermissionsCommandInput extends DeleteCustomPermissionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteCustomPermissionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteCustomPermissionsCommandOutput extends DeleteCustomPermissionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteCustomPermissionsCommand_base: {
|
|
25
|
+
new (input: DeleteCustomPermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCustomPermissionsCommandInput, DeleteCustomPermissionsCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteCustomPermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCustomPermissionsCommandInput, DeleteCustomPermissionsCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes a custom permissions profile.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { QuickSightClient, DeleteCustomPermissionsCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
35
|
+
* // const { QuickSightClient, DeleteCustomPermissionsCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
36
|
+
* const client = new QuickSightClient(config);
|
|
37
|
+
* const input = { // DeleteCustomPermissionsRequest
|
|
38
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
39
|
+
* CustomPermissionsName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new DeleteCustomPermissionsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // DeleteCustomPermissionsResponse
|
|
44
|
+
* // Status: Number("int"),
|
|
45
|
+
* // Arn: "STRING_VALUE",
|
|
46
|
+
* // RequestId: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param DeleteCustomPermissionsCommandInput - {@link DeleteCustomPermissionsCommandInput}
|
|
52
|
+
* @returns {@link DeleteCustomPermissionsCommandOutput}
|
|
53
|
+
* @see {@link DeleteCustomPermissionsCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link DeleteCustomPermissionsCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
59
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
60
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
61
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ConflictException} (client fault)
|
|
64
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
67
|
+
* <p>An internal failure occurred.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
70
|
+
* <p>One or more parameters has a value that isn't valid.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link PreconditionNotMetException} (client fault)
|
|
73
|
+
* <p>One or more preconditions aren't met.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
76
|
+
* <p>The resource specified already exists. </p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>One or more resources can't be found.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ResourceUnavailableException} (server fault)
|
|
82
|
+
* <p>This resource is currently unavailable.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
85
|
+
* <p>Access is throttled.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link QuickSightServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class DeleteCustomPermissionsCommand extends DeleteCustomPermissionsCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: DeleteCustomPermissionsRequest;
|
|
97
|
+
output: DeleteCustomPermissionsResponse;
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: DeleteCustomPermissionsCommandInput;
|
|
101
|
+
output: DeleteCustomPermissionsCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteUserCustomPermissionRequest, DeleteUserCustomPermissionResponse } from "../models/models_3";
|
|
4
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteUserCustomPermissionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteUserCustomPermissionCommandInput extends DeleteUserCustomPermissionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteUserCustomPermissionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteUserCustomPermissionCommandOutput extends DeleteUserCustomPermissionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteUserCustomPermissionCommand_base: {
|
|
25
|
+
new (input: DeleteUserCustomPermissionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteUserCustomPermissionCommandInput, DeleteUserCustomPermissionCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteUserCustomPermissionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteUserCustomPermissionCommandInput, DeleteUserCustomPermissionCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes a custom permissions profile from a user.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { QuickSightClient, DeleteUserCustomPermissionCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
35
|
+
* // const { QuickSightClient, DeleteUserCustomPermissionCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
36
|
+
* const client = new QuickSightClient(config);
|
|
37
|
+
* const input = { // DeleteUserCustomPermissionRequest
|
|
38
|
+
* UserName: "STRING_VALUE", // required
|
|
39
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
40
|
+
* Namespace: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new DeleteUserCustomPermissionCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // DeleteUserCustomPermissionResponse
|
|
45
|
+
* // RequestId: "STRING_VALUE",
|
|
46
|
+
* // Status: Number("int"),
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param DeleteUserCustomPermissionCommandInput - {@link DeleteUserCustomPermissionCommandInput}
|
|
52
|
+
* @returns {@link DeleteUserCustomPermissionCommandOutput}
|
|
53
|
+
* @see {@link DeleteUserCustomPermissionCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link DeleteUserCustomPermissionCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
59
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
60
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
61
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ConflictException} (client fault)
|
|
64
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
67
|
+
* <p>An internal failure occurred.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
70
|
+
* <p>One or more parameters has a value that isn't valid.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link PreconditionNotMetException} (client fault)
|
|
73
|
+
* <p>One or more preconditions aren't met.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
76
|
+
* <p>One or more resources can't be found.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceUnavailableException} (server fault)
|
|
79
|
+
* <p>This resource is currently unavailable.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
+
* <p>Access is throttled.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link QuickSightServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
86
|
+
*
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export declare class DeleteUserCustomPermissionCommand extends DeleteUserCustomPermissionCommand_base {
|
|
90
|
+
/** @internal type navigation helper, not in runtime. */
|
|
91
|
+
protected static __types: {
|
|
92
|
+
api: {
|
|
93
|
+
input: DeleteUserCustomPermissionRequest;
|
|
94
|
+
output: DeleteUserCustomPermissionResponse;
|
|
95
|
+
};
|
|
96
|
+
sdk: {
|
|
97
|
+
input: DeleteUserCustomPermissionCommandInput;
|
|
98
|
+
output: DeleteUserCustomPermissionCommandOutput;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DescribeBrandAssignmentRequest, DescribeBrandAssignmentResponse } from "../models/models_3";
|
|
4
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeBrandAssignmentCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeBrandAssignmentCommandInput extends DescribeBrandAssignmentRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeBrandAssignmentCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeBrandAssignmentCommandOutput extends DescribeBrandAssignmentResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeBrandAssignmentCommand_base: {
|
|
25
|
+
new (input: DescribeBrandAssignmentCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeBrandAssignmentCommandInput, DescribeBrandAssignmentCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DescribeBrandAssignmentCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeBrandAssignmentCommandInput, DescribeBrandAssignmentCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Describes a brand assignment.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { QuickSightClient, DescribeBrandAssignmentCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
35
|
+
* // const { QuickSightClient, DescribeBrandAssignmentCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
36
|
+
* const client = new QuickSightClient(config);
|
|
37
|
+
* const input = { // DescribeBrandAssignmentRequest
|
|
38
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DescribeBrandAssignmentCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // DescribeBrandAssignmentResponse
|
|
43
|
+
* // RequestId: "STRING_VALUE",
|
|
44
|
+
* // BrandArn: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param DescribeBrandAssignmentCommandInput - {@link DescribeBrandAssignmentCommandInput}
|
|
50
|
+
* @returns {@link DescribeBrandAssignmentCommandOutput}
|
|
51
|
+
* @see {@link DescribeBrandAssignmentCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link DescribeBrandAssignmentCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
57
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
58
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
59
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ConflictException} (client fault)
|
|
62
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerException} (server fault)
|
|
65
|
+
* <p>An internal service exception.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
68
|
+
* <p>You don't have this feature activated for your account. To fix this issue, contact Amazon Web Services support.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>One or more resources can't be found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>Access is throttled.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link QuickSightServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class DescribeBrandAssignmentCommand extends DescribeBrandAssignmentCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: DescribeBrandAssignmentRequest;
|
|
86
|
+
output: DescribeBrandAssignmentResponse;
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: DescribeBrandAssignmentCommandInput;
|
|
90
|
+
output: DescribeBrandAssignmentCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|