@aws-sdk/client-quicksight 3.454.0 → 3.458.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 +191 -167
- package/dist-cjs/QuickSight.js +6 -0
- package/dist-cjs/commands/DeleteIdentityPropagationConfigCommand.js +51 -0
- package/dist-cjs/commands/ListIdentityPropagationConfigsCommand.js +51 -0
- package/dist-cjs/commands/UpdateIdentityPropagationConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_2.js +6 -20
- package/dist-cjs/models/models_3.js +20 -3
- package/dist-cjs/protocols/Aws_restJson1.js +222 -7
- package/dist-es/QuickSight.js +6 -0
- package/dist-es/commands/DeleteIdentityPropagationConfigCommand.js +47 -0
- package/dist-es/commands/ListIdentityPropagationConfigsCommand.js +47 -0
- package/dist-es/commands/UpdateIdentityPropagationConfigCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_2.js +3 -16
- package/dist-es/models/models_3.js +17 -1
- package/dist-es/protocols/Aws_restJson1.js +209 -0
- package/dist-types/QuickSight.d.ts +21 -0
- package/dist-types/QuickSightClient.d.ts +5 -2
- package/dist-types/commands/CreateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIdentityPropagationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +6 -0
- package/dist-types/commands/ListIdentityPropagationConfigsCommand.d.ts +104 -0
- package/dist-types/commands/ListTemplateVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTemplatesCommand.d.ts +2 -1
- package/dist-types/commands/ListThemeAliasesCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +3 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateIdentityPropagationConfigCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_2.d.ts +44 -50
- package/dist-types/models/models_3.d.ts +124 -191
- package/dist-types/models/models_4.d.ts +228 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/QuickSight.d.ts +51 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteIdentityPropagationConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListIdentityPropagationConfigsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTemplateVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListThemeAliasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIdentityPropagationConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +12 -22
- package/dist-types/ts3.4/models/models_3.d.ts +43 -48
- package/dist-types/ts3.4/models/models_4.d.ts +55 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +3 -3
|
@@ -838,6 +838,24 @@ export const se_DeleteIAMPolicyAssignmentCommand = async (input, context) => {
|
|
|
838
838
|
body,
|
|
839
839
|
});
|
|
840
840
|
};
|
|
841
|
+
export const se_DeleteIdentityPropagationConfigCommand = async (input, context) => {
|
|
842
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
843
|
+
const headers = {};
|
|
844
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
845
|
+
"/accounts/{AwsAccountId}/identity-propagation-config/{Service}";
|
|
846
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
847
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "Service", () => input.Service, "{Service}", false);
|
|
848
|
+
let body;
|
|
849
|
+
return new __HttpRequest({
|
|
850
|
+
protocol,
|
|
851
|
+
hostname,
|
|
852
|
+
port,
|
|
853
|
+
method: "DELETE",
|
|
854
|
+
headers,
|
|
855
|
+
path: resolvedPath,
|
|
856
|
+
body,
|
|
857
|
+
});
|
|
858
|
+
};
|
|
841
859
|
export const se_DeleteNamespaceCommand = async (input, context) => {
|
|
842
860
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
843
861
|
const headers = {};
|
|
@@ -2295,6 +2313,28 @@ export const se_ListIAMPolicyAssignmentsForUserCommand = async (input, context)
|
|
|
2295
2313
|
body,
|
|
2296
2314
|
});
|
|
2297
2315
|
};
|
|
2316
|
+
export const se_ListIdentityPropagationConfigsCommand = async (input, context) => {
|
|
2317
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
2318
|
+
const headers = {};
|
|
2319
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
2320
|
+
"/accounts/{AwsAccountId}/identity-propagation-config";
|
|
2321
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
2322
|
+
const query = map({
|
|
2323
|
+
"max-results": [() => input.MaxResults !== void 0, () => input.MaxResults.toString()],
|
|
2324
|
+
"next-token": [, input.NextToken],
|
|
2325
|
+
});
|
|
2326
|
+
let body;
|
|
2327
|
+
return new __HttpRequest({
|
|
2328
|
+
protocol,
|
|
2329
|
+
hostname,
|
|
2330
|
+
port,
|
|
2331
|
+
method: "GET",
|
|
2332
|
+
headers,
|
|
2333
|
+
path: resolvedPath,
|
|
2334
|
+
query,
|
|
2335
|
+
body,
|
|
2336
|
+
});
|
|
2337
|
+
};
|
|
2298
2338
|
export const se_ListIngestionsCommand = async (input, context) => {
|
|
2299
2339
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
2300
2340
|
const headers = {};
|
|
@@ -3364,6 +3404,29 @@ export const se_UpdateIAMPolicyAssignmentCommand = async (input, context) => {
|
|
|
3364
3404
|
body,
|
|
3365
3405
|
});
|
|
3366
3406
|
};
|
|
3407
|
+
export const se_UpdateIdentityPropagationConfigCommand = async (input, context) => {
|
|
3408
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
3409
|
+
const headers = {
|
|
3410
|
+
"content-type": "application/json",
|
|
3411
|
+
};
|
|
3412
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
3413
|
+
"/accounts/{AwsAccountId}/identity-propagation-config/{Service}";
|
|
3414
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
3415
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "Service", () => input.Service, "{Service}", false);
|
|
3416
|
+
let body;
|
|
3417
|
+
body = JSON.stringify(take(input, {
|
|
3418
|
+
AuthorizedTargets: (_) => _json(_),
|
|
3419
|
+
}));
|
|
3420
|
+
return new __HttpRequest({
|
|
3421
|
+
protocol,
|
|
3422
|
+
hostname,
|
|
3423
|
+
port,
|
|
3424
|
+
method: "POST",
|
|
3425
|
+
headers,
|
|
3426
|
+
path: resolvedPath,
|
|
3427
|
+
body,
|
|
3428
|
+
});
|
|
3429
|
+
};
|
|
3367
3430
|
export const se_UpdateIpRestrictionCommand = async (input, context) => {
|
|
3368
3431
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
3369
3432
|
const headers = {
|
|
@@ -5746,6 +5809,54 @@ const de_DeleteIAMPolicyAssignmentCommandError = async (output, context) => {
|
|
|
5746
5809
|
});
|
|
5747
5810
|
}
|
|
5748
5811
|
};
|
|
5812
|
+
export const de_DeleteIdentityPropagationConfigCommand = async (output, context) => {
|
|
5813
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5814
|
+
return de_DeleteIdentityPropagationConfigCommandError(output, context);
|
|
5815
|
+
}
|
|
5816
|
+
const contents = map({
|
|
5817
|
+
$metadata: deserializeMetadata(output),
|
|
5818
|
+
});
|
|
5819
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
5820
|
+
const doc = take(data, {
|
|
5821
|
+
RequestId: __expectString,
|
|
5822
|
+
});
|
|
5823
|
+
Object.assign(contents, doc);
|
|
5824
|
+
map(contents, {
|
|
5825
|
+
Status: [, output.statusCode],
|
|
5826
|
+
});
|
|
5827
|
+
return contents;
|
|
5828
|
+
};
|
|
5829
|
+
const de_DeleteIdentityPropagationConfigCommandError = async (output, context) => {
|
|
5830
|
+
const parsedOutput = {
|
|
5831
|
+
...output,
|
|
5832
|
+
body: await parseErrorBody(output.body, context),
|
|
5833
|
+
};
|
|
5834
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5835
|
+
switch (errorCode) {
|
|
5836
|
+
case "AccessDeniedException":
|
|
5837
|
+
case "com.amazonaws.quicksight#AccessDeniedException":
|
|
5838
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
5839
|
+
case "InternalFailureException":
|
|
5840
|
+
case "com.amazonaws.quicksight#InternalFailureException":
|
|
5841
|
+
throw await de_InternalFailureExceptionRes(parsedOutput, context);
|
|
5842
|
+
case "InvalidParameterValueException":
|
|
5843
|
+
case "com.amazonaws.quicksight#InvalidParameterValueException":
|
|
5844
|
+
throw await de_InvalidParameterValueExceptionRes(parsedOutput, context);
|
|
5845
|
+
case "ResourceNotFoundException":
|
|
5846
|
+
case "com.amazonaws.quicksight#ResourceNotFoundException":
|
|
5847
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
5848
|
+
case "ThrottlingException":
|
|
5849
|
+
case "com.amazonaws.quicksight#ThrottlingException":
|
|
5850
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
5851
|
+
default:
|
|
5852
|
+
const parsedBody = parsedOutput.body;
|
|
5853
|
+
return throwDefaultError({
|
|
5854
|
+
output,
|
|
5855
|
+
parsedBody,
|
|
5856
|
+
errorCode,
|
|
5857
|
+
});
|
|
5858
|
+
}
|
|
5859
|
+
};
|
|
5749
5860
|
export const de_DeleteNamespaceCommand = async (output, context) => {
|
|
5750
5861
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5751
5862
|
return de_DeleteNamespaceCommandError(output, context);
|
|
@@ -9657,6 +9768,56 @@ const de_ListIAMPolicyAssignmentsForUserCommandError = async (output, context) =
|
|
|
9657
9768
|
});
|
|
9658
9769
|
}
|
|
9659
9770
|
};
|
|
9771
|
+
export const de_ListIdentityPropagationConfigsCommand = async (output, context) => {
|
|
9772
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
9773
|
+
return de_ListIdentityPropagationConfigsCommandError(output, context);
|
|
9774
|
+
}
|
|
9775
|
+
const contents = map({
|
|
9776
|
+
$metadata: deserializeMetadata(output),
|
|
9777
|
+
});
|
|
9778
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
9779
|
+
const doc = take(data, {
|
|
9780
|
+
NextToken: __expectString,
|
|
9781
|
+
RequestId: __expectString,
|
|
9782
|
+
Services: _json,
|
|
9783
|
+
});
|
|
9784
|
+
Object.assign(contents, doc);
|
|
9785
|
+
map(contents, {
|
|
9786
|
+
Status: [, output.statusCode],
|
|
9787
|
+
});
|
|
9788
|
+
return contents;
|
|
9789
|
+
};
|
|
9790
|
+
const de_ListIdentityPropagationConfigsCommandError = async (output, context) => {
|
|
9791
|
+
const parsedOutput = {
|
|
9792
|
+
...output,
|
|
9793
|
+
body: await parseErrorBody(output.body, context),
|
|
9794
|
+
};
|
|
9795
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
9796
|
+
switch (errorCode) {
|
|
9797
|
+
case "AccessDeniedException":
|
|
9798
|
+
case "com.amazonaws.quicksight#AccessDeniedException":
|
|
9799
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
9800
|
+
case "InternalFailureException":
|
|
9801
|
+
case "com.amazonaws.quicksight#InternalFailureException":
|
|
9802
|
+
throw await de_InternalFailureExceptionRes(parsedOutput, context);
|
|
9803
|
+
case "InvalidParameterValueException":
|
|
9804
|
+
case "com.amazonaws.quicksight#InvalidParameterValueException":
|
|
9805
|
+
throw await de_InvalidParameterValueExceptionRes(parsedOutput, context);
|
|
9806
|
+
case "ResourceNotFoundException":
|
|
9807
|
+
case "com.amazonaws.quicksight#ResourceNotFoundException":
|
|
9808
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
9809
|
+
case "ThrottlingException":
|
|
9810
|
+
case "com.amazonaws.quicksight#ThrottlingException":
|
|
9811
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
9812
|
+
default:
|
|
9813
|
+
const parsedBody = parsedOutput.body;
|
|
9814
|
+
return throwDefaultError({
|
|
9815
|
+
output,
|
|
9816
|
+
parsedBody,
|
|
9817
|
+
errorCode,
|
|
9818
|
+
});
|
|
9819
|
+
}
|
|
9820
|
+
};
|
|
9660
9821
|
export const de_ListIngestionsCommand = async (output, context) => {
|
|
9661
9822
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
9662
9823
|
return de_ListIngestionsCommandError(output, context);
|
|
@@ -12151,6 +12312,54 @@ const de_UpdateIAMPolicyAssignmentCommandError = async (output, context) => {
|
|
|
12151
12312
|
});
|
|
12152
12313
|
}
|
|
12153
12314
|
};
|
|
12315
|
+
export const de_UpdateIdentityPropagationConfigCommand = async (output, context) => {
|
|
12316
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
12317
|
+
return de_UpdateIdentityPropagationConfigCommandError(output, context);
|
|
12318
|
+
}
|
|
12319
|
+
const contents = map({
|
|
12320
|
+
$metadata: deserializeMetadata(output),
|
|
12321
|
+
});
|
|
12322
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
12323
|
+
const doc = take(data, {
|
|
12324
|
+
RequestId: __expectString,
|
|
12325
|
+
});
|
|
12326
|
+
Object.assign(contents, doc);
|
|
12327
|
+
map(contents, {
|
|
12328
|
+
Status: [, output.statusCode],
|
|
12329
|
+
});
|
|
12330
|
+
return contents;
|
|
12331
|
+
};
|
|
12332
|
+
const de_UpdateIdentityPropagationConfigCommandError = async (output, context) => {
|
|
12333
|
+
const parsedOutput = {
|
|
12334
|
+
...output,
|
|
12335
|
+
body: await parseErrorBody(output.body, context),
|
|
12336
|
+
};
|
|
12337
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
12338
|
+
switch (errorCode) {
|
|
12339
|
+
case "AccessDeniedException":
|
|
12340
|
+
case "com.amazonaws.quicksight#AccessDeniedException":
|
|
12341
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
12342
|
+
case "InternalFailureException":
|
|
12343
|
+
case "com.amazonaws.quicksight#InternalFailureException":
|
|
12344
|
+
throw await de_InternalFailureExceptionRes(parsedOutput, context);
|
|
12345
|
+
case "InvalidParameterValueException":
|
|
12346
|
+
case "com.amazonaws.quicksight#InvalidParameterValueException":
|
|
12347
|
+
throw await de_InvalidParameterValueExceptionRes(parsedOutput, context);
|
|
12348
|
+
case "ResourceNotFoundException":
|
|
12349
|
+
case "com.amazonaws.quicksight#ResourceNotFoundException":
|
|
12350
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
12351
|
+
case "ThrottlingException":
|
|
12352
|
+
case "com.amazonaws.quicksight#ThrottlingException":
|
|
12353
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
12354
|
+
default:
|
|
12355
|
+
const parsedBody = parsedOutput.body;
|
|
12356
|
+
return throwDefaultError({
|
|
12357
|
+
output,
|
|
12358
|
+
parsedBody,
|
|
12359
|
+
errorCode,
|
|
12360
|
+
});
|
|
12361
|
+
}
|
|
12362
|
+
};
|
|
12154
12363
|
export const de_UpdateIpRestrictionCommand = async (output, context) => {
|
|
12155
12364
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
12156
12365
|
return de_UpdateIpRestrictionCommandError(output, context);
|
|
@@ -34,6 +34,7 @@ import { DeleteFolderMembershipCommandInput, DeleteFolderMembershipCommandOutput
|
|
|
34
34
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
35
35
|
import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "./commands/DeleteGroupMembershipCommand";
|
|
36
36
|
import { DeleteIAMPolicyAssignmentCommandInput, DeleteIAMPolicyAssignmentCommandOutput } from "./commands/DeleteIAMPolicyAssignmentCommand";
|
|
37
|
+
import { DeleteIdentityPropagationConfigCommandInput, DeleteIdentityPropagationConfigCommandOutput } from "./commands/DeleteIdentityPropagationConfigCommand";
|
|
37
38
|
import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
|
|
38
39
|
import { DeleteRefreshScheduleCommandInput, DeleteRefreshScheduleCommandOutput } from "./commands/DeleteRefreshScheduleCommand";
|
|
39
40
|
import { DeleteRoleCustomPermissionCommandInput, DeleteRoleCustomPermissionCommandOutput } from "./commands/DeleteRoleCustomPermissionCommand";
|
|
@@ -106,6 +107,7 @@ import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } f
|
|
|
106
107
|
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
107
108
|
import { ListIAMPolicyAssignmentsCommandInput, ListIAMPolicyAssignmentsCommandOutput } from "./commands/ListIAMPolicyAssignmentsCommand";
|
|
108
109
|
import { ListIAMPolicyAssignmentsForUserCommandInput, ListIAMPolicyAssignmentsForUserCommandOutput } from "./commands/ListIAMPolicyAssignmentsForUserCommand";
|
|
110
|
+
import { ListIdentityPropagationConfigsCommandInput, ListIdentityPropagationConfigsCommandOutput } from "./commands/ListIdentityPropagationConfigsCommand";
|
|
109
111
|
import { ListIngestionsCommandInput, ListIngestionsCommandOutput } from "./commands/ListIngestionsCommand";
|
|
110
112
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
111
113
|
import { ListRefreshSchedulesCommandInput, ListRefreshSchedulesCommandOutput } from "./commands/ListRefreshSchedulesCommand";
|
|
@@ -151,6 +153,7 @@ import { UpdateFolderCommandInput, UpdateFolderCommandOutput } from "./commands/
|
|
|
151
153
|
import { UpdateFolderPermissionsCommandInput, UpdateFolderPermissionsCommandOutput } from "./commands/UpdateFolderPermissionsCommand";
|
|
152
154
|
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
153
155
|
import { UpdateIAMPolicyAssignmentCommandInput, UpdateIAMPolicyAssignmentCommandOutput } from "./commands/UpdateIAMPolicyAssignmentCommand";
|
|
156
|
+
import { UpdateIdentityPropagationConfigCommandInput, UpdateIdentityPropagationConfigCommandOutput } from "./commands/UpdateIdentityPropagationConfigCommand";
|
|
154
157
|
import { UpdateIpRestrictionCommandInput, UpdateIpRestrictionCommandOutput } from "./commands/UpdateIpRestrictionCommand";
|
|
155
158
|
import { UpdatePublicSharingSettingsCommandInput, UpdatePublicSharingSettingsCommandOutput } from "./commands/UpdatePublicSharingSettingsCommand";
|
|
156
159
|
import { UpdateRefreshScheduleCommandInput, UpdateRefreshScheduleCommandOutput } from "./commands/UpdateRefreshScheduleCommand";
|
|
@@ -378,6 +381,12 @@ export interface QuickSight {
|
|
|
378
381
|
deleteIAMPolicyAssignment(args: DeleteIAMPolicyAssignmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIAMPolicyAssignmentCommandOutput>;
|
|
379
382
|
deleteIAMPolicyAssignment(args: DeleteIAMPolicyAssignmentCommandInput, cb: (err: any, data?: DeleteIAMPolicyAssignmentCommandOutput) => void): void;
|
|
380
383
|
deleteIAMPolicyAssignment(args: DeleteIAMPolicyAssignmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIAMPolicyAssignmentCommandOutput) => void): void;
|
|
384
|
+
/**
|
|
385
|
+
* @see {@link DeleteIdentityPropagationConfigCommand}
|
|
386
|
+
*/
|
|
387
|
+
deleteIdentityPropagationConfig(args: DeleteIdentityPropagationConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityPropagationConfigCommandOutput>;
|
|
388
|
+
deleteIdentityPropagationConfig(args: DeleteIdentityPropagationConfigCommandInput, cb: (err: any, data?: DeleteIdentityPropagationConfigCommandOutput) => void): void;
|
|
389
|
+
deleteIdentityPropagationConfig(args: DeleteIdentityPropagationConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityPropagationConfigCommandOutput) => void): void;
|
|
381
390
|
/**
|
|
382
391
|
* @see {@link DeleteNamespaceCommand}
|
|
383
392
|
*/
|
|
@@ -810,6 +819,12 @@ export interface QuickSight {
|
|
|
810
819
|
listIAMPolicyAssignmentsForUser(args: ListIAMPolicyAssignmentsForUserCommandInput, options?: __HttpHandlerOptions): Promise<ListIAMPolicyAssignmentsForUserCommandOutput>;
|
|
811
820
|
listIAMPolicyAssignmentsForUser(args: ListIAMPolicyAssignmentsForUserCommandInput, cb: (err: any, data?: ListIAMPolicyAssignmentsForUserCommandOutput) => void): void;
|
|
812
821
|
listIAMPolicyAssignmentsForUser(args: ListIAMPolicyAssignmentsForUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIAMPolicyAssignmentsForUserCommandOutput) => void): void;
|
|
822
|
+
/**
|
|
823
|
+
* @see {@link ListIdentityPropagationConfigsCommand}
|
|
824
|
+
*/
|
|
825
|
+
listIdentityPropagationConfigs(args: ListIdentityPropagationConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityPropagationConfigsCommandOutput>;
|
|
826
|
+
listIdentityPropagationConfigs(args: ListIdentityPropagationConfigsCommandInput, cb: (err: any, data?: ListIdentityPropagationConfigsCommandOutput) => void): void;
|
|
827
|
+
listIdentityPropagationConfigs(args: ListIdentityPropagationConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityPropagationConfigsCommandOutput) => void): void;
|
|
813
828
|
/**
|
|
814
829
|
* @see {@link ListIngestionsCommand}
|
|
815
830
|
*/
|
|
@@ -1080,6 +1095,12 @@ export interface QuickSight {
|
|
|
1080
1095
|
updateIAMPolicyAssignment(args: UpdateIAMPolicyAssignmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIAMPolicyAssignmentCommandOutput>;
|
|
1081
1096
|
updateIAMPolicyAssignment(args: UpdateIAMPolicyAssignmentCommandInput, cb: (err: any, data?: UpdateIAMPolicyAssignmentCommandOutput) => void): void;
|
|
1082
1097
|
updateIAMPolicyAssignment(args: UpdateIAMPolicyAssignmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIAMPolicyAssignmentCommandOutput) => void): void;
|
|
1098
|
+
/**
|
|
1099
|
+
* @see {@link UpdateIdentityPropagationConfigCommand}
|
|
1100
|
+
*/
|
|
1101
|
+
updateIdentityPropagationConfig(args: UpdateIdentityPropagationConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIdentityPropagationConfigCommandOutput>;
|
|
1102
|
+
updateIdentityPropagationConfig(args: UpdateIdentityPropagationConfigCommandInput, cb: (err: any, data?: UpdateIdentityPropagationConfigCommandOutput) => void): void;
|
|
1103
|
+
updateIdentityPropagationConfig(args: UpdateIdentityPropagationConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdentityPropagationConfigCommandOutput) => void): void;
|
|
1083
1104
|
/**
|
|
1084
1105
|
* @see {@link UpdateIpRestrictionCommand}
|
|
1085
1106
|
*/
|
|
@@ -43,6 +43,7 @@ import { DeleteFolderMembershipCommandInput, DeleteFolderMembershipCommandOutput
|
|
|
43
43
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
44
44
|
import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "./commands/DeleteGroupMembershipCommand";
|
|
45
45
|
import { DeleteIAMPolicyAssignmentCommandInput, DeleteIAMPolicyAssignmentCommandOutput } from "./commands/DeleteIAMPolicyAssignmentCommand";
|
|
46
|
+
import { DeleteIdentityPropagationConfigCommandInput, DeleteIdentityPropagationConfigCommandOutput } from "./commands/DeleteIdentityPropagationConfigCommand";
|
|
46
47
|
import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
|
|
47
48
|
import { DeleteRefreshScheduleCommandInput, DeleteRefreshScheduleCommandOutput } from "./commands/DeleteRefreshScheduleCommand";
|
|
48
49
|
import { DeleteRoleCustomPermissionCommandInput, DeleteRoleCustomPermissionCommandOutput } from "./commands/DeleteRoleCustomPermissionCommand";
|
|
@@ -115,6 +116,7 @@ import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } f
|
|
|
115
116
|
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
116
117
|
import { ListIAMPolicyAssignmentsCommandInput, ListIAMPolicyAssignmentsCommandOutput } from "./commands/ListIAMPolicyAssignmentsCommand";
|
|
117
118
|
import { ListIAMPolicyAssignmentsForUserCommandInput, ListIAMPolicyAssignmentsForUserCommandOutput } from "./commands/ListIAMPolicyAssignmentsForUserCommand";
|
|
119
|
+
import { ListIdentityPropagationConfigsCommandInput, ListIdentityPropagationConfigsCommandOutput } from "./commands/ListIdentityPropagationConfigsCommand";
|
|
118
120
|
import { ListIngestionsCommandInput, ListIngestionsCommandOutput } from "./commands/ListIngestionsCommand";
|
|
119
121
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
120
122
|
import { ListRefreshSchedulesCommandInput, ListRefreshSchedulesCommandOutput } from "./commands/ListRefreshSchedulesCommand";
|
|
@@ -160,6 +162,7 @@ import { UpdateFolderCommandInput, UpdateFolderCommandOutput } from "./commands/
|
|
|
160
162
|
import { UpdateFolderPermissionsCommandInput, UpdateFolderPermissionsCommandOutput } from "./commands/UpdateFolderPermissionsCommand";
|
|
161
163
|
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
162
164
|
import { UpdateIAMPolicyAssignmentCommandInput, UpdateIAMPolicyAssignmentCommandOutput } from "./commands/UpdateIAMPolicyAssignmentCommand";
|
|
165
|
+
import { UpdateIdentityPropagationConfigCommandInput, UpdateIdentityPropagationConfigCommandOutput } from "./commands/UpdateIdentityPropagationConfigCommand";
|
|
163
166
|
import { UpdateIpRestrictionCommandInput, UpdateIpRestrictionCommandOutput } from "./commands/UpdateIpRestrictionCommand";
|
|
164
167
|
import { UpdatePublicSharingSettingsCommandInput, UpdatePublicSharingSettingsCommandOutput } from "./commands/UpdatePublicSharingSettingsCommand";
|
|
165
168
|
import { UpdateRefreshScheduleCommandInput, UpdateRefreshScheduleCommandOutput } from "./commands/UpdateRefreshScheduleCommand";
|
|
@@ -181,11 +184,11 @@ export { __Client };
|
|
|
181
184
|
/**
|
|
182
185
|
* @public
|
|
183
186
|
*/
|
|
184
|
-
export type ServiceInputTypes = CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateAnalysisCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteAnalysisCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeNamespaceCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GetDashboardEmbedUrlCommandInput | GetSessionEmbedUrlCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIpRestrictionCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateVPCConnectionCommandInput;
|
|
187
|
+
export type ServiceInputTypes = CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateAnalysisCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteAnalysisCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteIdentityPropagationConfigCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeNamespaceCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GetDashboardEmbedUrlCommandInput | GetSessionEmbedUrlCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIdentityPropagationConfigsCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIdentityPropagationConfigCommandInput | UpdateIpRestrictionCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateVPCConnectionCommandInput;
|
|
185
188
|
/**
|
|
186
189
|
* @public
|
|
187
190
|
*/
|
|
188
|
-
export type ServiceOutputTypes = CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateAnalysisCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteAnalysisCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeNamespaceCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GetDashboardEmbedUrlCommandOutput | GetSessionEmbedUrlCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIpRestrictionCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
191
|
+
export type ServiceOutputTypes = CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateAnalysisCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteAnalysisCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteIdentityPropagationConfigCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeNamespaceCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GetDashboardEmbedUrlCommandOutput | GetSessionEmbedUrlCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIdentityPropagationConfigsCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIdentityPropagationConfigCommandOutput | UpdateIpRestrictionCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
189
192
|
/**
|
|
190
193
|
* @public
|
|
191
194
|
*/
|
|
@@ -101,6 +101,9 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
101
101
|
* ],
|
|
102
102
|
* AutoCreateDatabaseUser: true || false,
|
|
103
103
|
* },
|
|
104
|
+
* IdentityCenterConfiguration: { // IdentityCenterConfiguration
|
|
105
|
+
* EnableIdentityPropagation: true || false,
|
|
106
|
+
* },
|
|
104
107
|
* },
|
|
105
108
|
* S3Parameters: { // S3Parameters
|
|
106
109
|
* ManifestFileLocation: { // ManifestFileLocation
|
|
@@ -234,6 +237,9 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
234
237
|
* ],
|
|
235
238
|
* AutoCreateDatabaseUser: true || false,
|
|
236
239
|
* },
|
|
240
|
+
* IdentityCenterConfiguration: {
|
|
241
|
+
* EnableIdentityPropagation: true || false,
|
|
242
|
+
* },
|
|
237
243
|
* },
|
|
238
244
|
* S3Parameters: {
|
|
239
245
|
* ManifestFileLocation: {
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DeleteIdentityPropagationConfigRequest, DeleteIdentityPropagationConfigResponse } from "../models/models_3";
|
|
5
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteIdentityPropagationConfigCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteIdentityPropagationConfigCommandInput extends DeleteIdentityPropagationConfigRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteIdentityPropagationConfigCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteIdentityPropagationConfigCommandOutput extends DeleteIdentityPropagationConfigResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Deletes all access scopes and authorized targets that are associated with a service from the Amazon QuickSight IAM Identity Center application.</p>
|
|
27
|
+
* <p>This operation is only supported for Amazon QuickSight accounts that use IAM Identity Center.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { QuickSightClient, DeleteIdentityPropagationConfigCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
32
|
+
* // const { QuickSightClient, DeleteIdentityPropagationConfigCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
33
|
+
* const client = new QuickSightClient(config);
|
|
34
|
+
* const input = { // DeleteIdentityPropagationConfigRequest
|
|
35
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
36
|
+
* Service: "REDSHIFT", // required
|
|
37
|
+
* };
|
|
38
|
+
* const command = new DeleteIdentityPropagationConfigCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // DeleteIdentityPropagationConfigResponse
|
|
41
|
+
* // RequestId: "STRING_VALUE",
|
|
42
|
+
* // Status: Number("int"),
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param DeleteIdentityPropagationConfigCommandInput - {@link DeleteIdentityPropagationConfigCommandInput}
|
|
48
|
+
* @returns {@link DeleteIdentityPropagationConfigCommandOutput}
|
|
49
|
+
* @see {@link DeleteIdentityPropagationConfigCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link DeleteIdentityPropagationConfigCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
54
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
55
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
56
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
57
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
60
|
+
* <p>An internal failure occurred.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
63
|
+
* <p>One or more parameters has a value that isn't valid.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
+
* <p>One or more resources can't be found.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
69
|
+
* <p>Access is throttled.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link QuickSightServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
73
|
+
*
|
|
74
|
+
*/
|
|
75
|
+
export declare class DeleteIdentityPropagationConfigCommand extends $Command<DeleteIdentityPropagationConfigCommandInput, DeleteIdentityPropagationConfigCommandOutput, QuickSightClientResolvedConfig> {
|
|
76
|
+
readonly input: DeleteIdentityPropagationConfigCommandInput;
|
|
77
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
constructor(input: DeleteIdentityPropagationConfigCommandInput);
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QuickSightClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteIdentityPropagationConfigCommandInput, DeleteIdentityPropagationConfigCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
private deserialize;
|
|
94
|
+
}
|
|
@@ -158,6 +158,9 @@ export interface DescribeAssetBundleImportJobCommandOutput extends DescribeAsset
|
|
|
158
158
|
* // ],
|
|
159
159
|
* // AutoCreateDatabaseUser: true || false,
|
|
160
160
|
* // },
|
|
161
|
+
* // IdentityCenterConfiguration: { // IdentityCenterConfiguration
|
|
162
|
+
* // EnableIdentityPropagation: true || false,
|
|
163
|
+
* // },
|
|
161
164
|
* // },
|
|
162
165
|
* // S3Parameters: { // S3Parameters
|
|
163
166
|
* // ManifestFileLocation: { // ManifestFileLocation
|
|
@@ -111,6 +111,9 @@ export interface DescribeDataSourceCommandOutput extends DescribeDataSourceRespo
|
|
|
111
111
|
* // ],
|
|
112
112
|
* // AutoCreateDatabaseUser: true || false,
|
|
113
113
|
* // },
|
|
114
|
+
* // IdentityCenterConfiguration: { // IdentityCenterConfiguration
|
|
115
|
+
* // EnableIdentityPropagation: true || false,
|
|
116
|
+
* // },
|
|
114
117
|
* // },
|
|
115
118
|
* // S3Parameters: { // S3Parameters
|
|
116
119
|
* // ManifestFileLocation: { // ManifestFileLocation
|
|
@@ -240,6 +243,9 @@ export interface DescribeDataSourceCommandOutput extends DescribeDataSourceRespo
|
|
|
240
243
|
* // ],
|
|
241
244
|
* // AutoCreateDatabaseUser: true || false,
|
|
242
245
|
* // },
|
|
246
|
+
* // IdentityCenterConfiguration: {
|
|
247
|
+
* // EnableIdentityPropagation: true || false,
|
|
248
|
+
* // },
|
|
243
249
|
* // },
|
|
244
250
|
* // S3Parameters: {
|
|
245
251
|
* // ManifestFileLocation: {
|
|
@@ -113,6 +113,9 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _
|
|
|
113
113
|
* // ],
|
|
114
114
|
* // AutoCreateDatabaseUser: true || false,
|
|
115
115
|
* // },
|
|
116
|
+
* // IdentityCenterConfiguration: { // IdentityCenterConfiguration
|
|
117
|
+
* // EnableIdentityPropagation: true || false,
|
|
118
|
+
* // },
|
|
116
119
|
* // },
|
|
117
120
|
* // S3Parameters: { // S3Parameters
|
|
118
121
|
* // ManifestFileLocation: { // ManifestFileLocation
|
|
@@ -242,6 +245,9 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _
|
|
|
242
245
|
* // ],
|
|
243
246
|
* // AutoCreateDatabaseUser: true || false,
|
|
244
247
|
* // },
|
|
248
|
+
* // IdentityCenterConfiguration: {
|
|
249
|
+
* // EnableIdentityPropagation: true || false,
|
|
250
|
+
* // },
|
|
245
251
|
* // },
|
|
246
252
|
* // S3Parameters: {
|
|
247
253
|
* // ManifestFileLocation: {
|