@aws-sdk/client-quicksight 3.453.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
|
@@ -139,6 +139,10 @@ import {
|
|
|
139
139
|
DeleteIAMPolicyAssignmentCommandInput,
|
|
140
140
|
DeleteIAMPolicyAssignmentCommandOutput,
|
|
141
141
|
} from "./commands/DeleteIAMPolicyAssignmentCommand";
|
|
142
|
+
import {
|
|
143
|
+
DeleteIdentityPropagationConfigCommandInput,
|
|
144
|
+
DeleteIdentityPropagationConfigCommandOutput,
|
|
145
|
+
} from "./commands/DeleteIdentityPropagationConfigCommand";
|
|
142
146
|
import {
|
|
143
147
|
DeleteNamespaceCommandInput,
|
|
144
148
|
DeleteNamespaceCommandOutput,
|
|
@@ -427,6 +431,10 @@ import {
|
|
|
427
431
|
ListIAMPolicyAssignmentsForUserCommandInput,
|
|
428
432
|
ListIAMPolicyAssignmentsForUserCommandOutput,
|
|
429
433
|
} from "./commands/ListIAMPolicyAssignmentsForUserCommand";
|
|
434
|
+
import {
|
|
435
|
+
ListIdentityPropagationConfigsCommandInput,
|
|
436
|
+
ListIdentityPropagationConfigsCommandOutput,
|
|
437
|
+
} from "./commands/ListIdentityPropagationConfigsCommand";
|
|
430
438
|
import {
|
|
431
439
|
ListIngestionsCommandInput,
|
|
432
440
|
ListIngestionsCommandOutput,
|
|
@@ -607,6 +615,10 @@ import {
|
|
|
607
615
|
UpdateIAMPolicyAssignmentCommandInput,
|
|
608
616
|
UpdateIAMPolicyAssignmentCommandOutput,
|
|
609
617
|
} from "./commands/UpdateIAMPolicyAssignmentCommand";
|
|
618
|
+
import {
|
|
619
|
+
UpdateIdentityPropagationConfigCommandInput,
|
|
620
|
+
UpdateIdentityPropagationConfigCommandOutput,
|
|
621
|
+
} from "./commands/UpdateIdentityPropagationConfigCommand";
|
|
610
622
|
import {
|
|
611
623
|
UpdateIpRestrictionCommandInput,
|
|
612
624
|
UpdateIpRestrictionCommandOutput,
|
|
@@ -1124,6 +1136,19 @@ export interface QuickSight {
|
|
|
1124
1136
|
options: __HttpHandlerOptions,
|
|
1125
1137
|
cb: (err: any, data?: DeleteIAMPolicyAssignmentCommandOutput) => void
|
|
1126
1138
|
): void;
|
|
1139
|
+
deleteIdentityPropagationConfig(
|
|
1140
|
+
args: DeleteIdentityPropagationConfigCommandInput,
|
|
1141
|
+
options?: __HttpHandlerOptions
|
|
1142
|
+
): Promise<DeleteIdentityPropagationConfigCommandOutput>;
|
|
1143
|
+
deleteIdentityPropagationConfig(
|
|
1144
|
+
args: DeleteIdentityPropagationConfigCommandInput,
|
|
1145
|
+
cb: (err: any, data?: DeleteIdentityPropagationConfigCommandOutput) => void
|
|
1146
|
+
): void;
|
|
1147
|
+
deleteIdentityPropagationConfig(
|
|
1148
|
+
args: DeleteIdentityPropagationConfigCommandInput,
|
|
1149
|
+
options: __HttpHandlerOptions,
|
|
1150
|
+
cb: (err: any, data?: DeleteIdentityPropagationConfigCommandOutput) => void
|
|
1151
|
+
): void;
|
|
1127
1152
|
deleteNamespace(
|
|
1128
1153
|
args: DeleteNamespaceCommandInput,
|
|
1129
1154
|
options?: __HttpHandlerOptions
|
|
@@ -2078,6 +2103,19 @@ export interface QuickSight {
|
|
|
2078
2103
|
options: __HttpHandlerOptions,
|
|
2079
2104
|
cb: (err: any, data?: ListIAMPolicyAssignmentsForUserCommandOutput) => void
|
|
2080
2105
|
): void;
|
|
2106
|
+
listIdentityPropagationConfigs(
|
|
2107
|
+
args: ListIdentityPropagationConfigsCommandInput,
|
|
2108
|
+
options?: __HttpHandlerOptions
|
|
2109
|
+
): Promise<ListIdentityPropagationConfigsCommandOutput>;
|
|
2110
|
+
listIdentityPropagationConfigs(
|
|
2111
|
+
args: ListIdentityPropagationConfigsCommandInput,
|
|
2112
|
+
cb: (err: any, data?: ListIdentityPropagationConfigsCommandOutput) => void
|
|
2113
|
+
): void;
|
|
2114
|
+
listIdentityPropagationConfigs(
|
|
2115
|
+
args: ListIdentityPropagationConfigsCommandInput,
|
|
2116
|
+
options: __HttpHandlerOptions,
|
|
2117
|
+
cb: (err: any, data?: ListIdentityPropagationConfigsCommandOutput) => void
|
|
2118
|
+
): void;
|
|
2081
2119
|
listIngestions(
|
|
2082
2120
|
args: ListIngestionsCommandInput,
|
|
2083
2121
|
options?: __HttpHandlerOptions
|
|
@@ -2663,6 +2701,19 @@ export interface QuickSight {
|
|
|
2663
2701
|
options: __HttpHandlerOptions,
|
|
2664
2702
|
cb: (err: any, data?: UpdateIAMPolicyAssignmentCommandOutput) => void
|
|
2665
2703
|
): void;
|
|
2704
|
+
updateIdentityPropagationConfig(
|
|
2705
|
+
args: UpdateIdentityPropagationConfigCommandInput,
|
|
2706
|
+
options?: __HttpHandlerOptions
|
|
2707
|
+
): Promise<UpdateIdentityPropagationConfigCommandOutput>;
|
|
2708
|
+
updateIdentityPropagationConfig(
|
|
2709
|
+
args: UpdateIdentityPropagationConfigCommandInput,
|
|
2710
|
+
cb: (err: any, data?: UpdateIdentityPropagationConfigCommandOutput) => void
|
|
2711
|
+
): void;
|
|
2712
|
+
updateIdentityPropagationConfig(
|
|
2713
|
+
args: UpdateIdentityPropagationConfigCommandInput,
|
|
2714
|
+
options: __HttpHandlerOptions,
|
|
2715
|
+
cb: (err: any, data?: UpdateIdentityPropagationConfigCommandOutput) => void
|
|
2716
|
+
): void;
|
|
2666
2717
|
updateIpRestriction(
|
|
2667
2718
|
args: UpdateIpRestrictionCommandInput,
|
|
2668
2719
|
options?: __HttpHandlerOptions
|
|
@@ -185,6 +185,10 @@ import {
|
|
|
185
185
|
DeleteIAMPolicyAssignmentCommandInput,
|
|
186
186
|
DeleteIAMPolicyAssignmentCommandOutput,
|
|
187
187
|
} from "./commands/DeleteIAMPolicyAssignmentCommand";
|
|
188
|
+
import {
|
|
189
|
+
DeleteIdentityPropagationConfigCommandInput,
|
|
190
|
+
DeleteIdentityPropagationConfigCommandOutput,
|
|
191
|
+
} from "./commands/DeleteIdentityPropagationConfigCommand";
|
|
188
192
|
import {
|
|
189
193
|
DeleteNamespaceCommandInput,
|
|
190
194
|
DeleteNamespaceCommandOutput,
|
|
@@ -473,6 +477,10 @@ import {
|
|
|
473
477
|
ListIAMPolicyAssignmentsForUserCommandInput,
|
|
474
478
|
ListIAMPolicyAssignmentsForUserCommandOutput,
|
|
475
479
|
} from "./commands/ListIAMPolicyAssignmentsForUserCommand";
|
|
480
|
+
import {
|
|
481
|
+
ListIdentityPropagationConfigsCommandInput,
|
|
482
|
+
ListIdentityPropagationConfigsCommandOutput,
|
|
483
|
+
} from "./commands/ListIdentityPropagationConfigsCommand";
|
|
476
484
|
import {
|
|
477
485
|
ListIngestionsCommandInput,
|
|
478
486
|
ListIngestionsCommandOutput,
|
|
@@ -653,6 +661,10 @@ import {
|
|
|
653
661
|
UpdateIAMPolicyAssignmentCommandInput,
|
|
654
662
|
UpdateIAMPolicyAssignmentCommandOutput,
|
|
655
663
|
} from "./commands/UpdateIAMPolicyAssignmentCommand";
|
|
664
|
+
import {
|
|
665
|
+
UpdateIdentityPropagationConfigCommandInput,
|
|
666
|
+
UpdateIdentityPropagationConfigCommandOutput,
|
|
667
|
+
} from "./commands/UpdateIdentityPropagationConfigCommand";
|
|
656
668
|
import {
|
|
657
669
|
UpdateIpRestrictionCommandInput,
|
|
658
670
|
UpdateIpRestrictionCommandOutput,
|
|
@@ -756,6 +768,7 @@ export type ServiceInputTypes =
|
|
|
756
768
|
| DeleteGroupCommandInput
|
|
757
769
|
| DeleteGroupMembershipCommandInput
|
|
758
770
|
| DeleteIAMPolicyAssignmentCommandInput
|
|
771
|
+
| DeleteIdentityPropagationConfigCommandInput
|
|
759
772
|
| DeleteNamespaceCommandInput
|
|
760
773
|
| DeleteRefreshScheduleCommandInput
|
|
761
774
|
| DeleteRoleCustomPermissionCommandInput
|
|
@@ -828,6 +841,7 @@ export type ServiceInputTypes =
|
|
|
828
841
|
| ListGroupsCommandInput
|
|
829
842
|
| ListIAMPolicyAssignmentsCommandInput
|
|
830
843
|
| ListIAMPolicyAssignmentsForUserCommandInput
|
|
844
|
+
| ListIdentityPropagationConfigsCommandInput
|
|
831
845
|
| ListIngestionsCommandInput
|
|
832
846
|
| ListNamespacesCommandInput
|
|
833
847
|
| ListRefreshSchedulesCommandInput
|
|
@@ -873,6 +887,7 @@ export type ServiceInputTypes =
|
|
|
873
887
|
| UpdateFolderPermissionsCommandInput
|
|
874
888
|
| UpdateGroupCommandInput
|
|
875
889
|
| UpdateIAMPolicyAssignmentCommandInput
|
|
890
|
+
| UpdateIdentityPropagationConfigCommandInput
|
|
876
891
|
| UpdateIpRestrictionCommandInput
|
|
877
892
|
| UpdatePublicSharingSettingsCommandInput
|
|
878
893
|
| UpdateRefreshScheduleCommandInput
|
|
@@ -924,6 +939,7 @@ export type ServiceOutputTypes =
|
|
|
924
939
|
| DeleteGroupCommandOutput
|
|
925
940
|
| DeleteGroupMembershipCommandOutput
|
|
926
941
|
| DeleteIAMPolicyAssignmentCommandOutput
|
|
942
|
+
| DeleteIdentityPropagationConfigCommandOutput
|
|
927
943
|
| DeleteNamespaceCommandOutput
|
|
928
944
|
| DeleteRefreshScheduleCommandOutput
|
|
929
945
|
| DeleteRoleCustomPermissionCommandOutput
|
|
@@ -996,6 +1012,7 @@ export type ServiceOutputTypes =
|
|
|
996
1012
|
| ListGroupsCommandOutput
|
|
997
1013
|
| ListIAMPolicyAssignmentsCommandOutput
|
|
998
1014
|
| ListIAMPolicyAssignmentsForUserCommandOutput
|
|
1015
|
+
| ListIdentityPropagationConfigsCommandOutput
|
|
999
1016
|
| ListIngestionsCommandOutput
|
|
1000
1017
|
| ListNamespacesCommandOutput
|
|
1001
1018
|
| ListRefreshSchedulesCommandOutput
|
|
@@ -1041,6 +1058,7 @@ export type ServiceOutputTypes =
|
|
|
1041
1058
|
| UpdateFolderPermissionsCommandOutput
|
|
1042
1059
|
| UpdateGroupCommandOutput
|
|
1043
1060
|
| UpdateIAMPolicyAssignmentCommandOutput
|
|
1061
|
+
| UpdateIdentityPropagationConfigCommandOutput
|
|
1044
1062
|
| UpdateIpRestrictionCommandOutput
|
|
1045
1063
|
| UpdatePublicSharingSettingsCommandOutput
|
|
1046
1064
|
| UpdateRefreshScheduleCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteIdentityPropagationConfigRequest,
|
|
11
|
+
DeleteIdentityPropagationConfigResponse,
|
|
12
|
+
} from "../models/models_3";
|
|
13
|
+
import {
|
|
14
|
+
QuickSightClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../QuickSightClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteIdentityPropagationConfigCommandInput
|
|
20
|
+
extends DeleteIdentityPropagationConfigRequest {}
|
|
21
|
+
export interface DeleteIdentityPropagationConfigCommandOutput
|
|
22
|
+
extends DeleteIdentityPropagationConfigResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteIdentityPropagationConfigCommand extends $Command<
|
|
25
|
+
DeleteIdentityPropagationConfigCommandInput,
|
|
26
|
+
DeleteIdentityPropagationConfigCommandOutput,
|
|
27
|
+
QuickSightClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteIdentityPropagationConfigCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteIdentityPropagationConfigCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: QuickSightClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeleteIdentityPropagationConfigCommandInput,
|
|
38
|
+
DeleteIdentityPropagationConfigCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListIdentityPropagationConfigsRequest,
|
|
11
|
+
ListIdentityPropagationConfigsResponse,
|
|
12
|
+
} from "../models/models_3";
|
|
13
|
+
import {
|
|
14
|
+
QuickSightClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../QuickSightClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListIdentityPropagationConfigsCommandInput
|
|
20
|
+
extends ListIdentityPropagationConfigsRequest {}
|
|
21
|
+
export interface ListIdentityPropagationConfigsCommandOutput
|
|
22
|
+
extends ListIdentityPropagationConfigsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListIdentityPropagationConfigsCommand extends $Command<
|
|
25
|
+
ListIdentityPropagationConfigsCommandInput,
|
|
26
|
+
ListIdentityPropagationConfigsCommandOutput,
|
|
27
|
+
QuickSightClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListIdentityPropagationConfigsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListIdentityPropagationConfigsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: QuickSightClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListIdentityPropagationConfigsCommandInput,
|
|
38
|
+
ListIdentityPropagationConfigsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@smithy/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
ListTemplatesResponse,
|
|
12
|
-
} from "../models/models_3";
|
|
9
|
+
import { ListTemplatesRequest } from "../models/models_3";
|
|
10
|
+
import { ListTemplatesResponse } from "../models/models_4";
|
|
13
11
|
import {
|
|
14
12
|
QuickSightClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
UpdateIdentityPropagationConfigRequest,
|
|
11
|
+
UpdateIdentityPropagationConfigResponse,
|
|
12
|
+
} from "../models/models_4";
|
|
13
|
+
import {
|
|
14
|
+
QuickSightClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../QuickSightClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateIdentityPropagationConfigCommandInput
|
|
20
|
+
extends UpdateIdentityPropagationConfigRequest {}
|
|
21
|
+
export interface UpdateIdentityPropagationConfigCommandOutput
|
|
22
|
+
extends UpdateIdentityPropagationConfigResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateIdentityPropagationConfigCommand extends $Command<
|
|
25
|
+
UpdateIdentityPropagationConfigCommandInput,
|
|
26
|
+
UpdateIdentityPropagationConfigCommandOutput,
|
|
27
|
+
QuickSightClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateIdentityPropagationConfigCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateIdentityPropagationConfigCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: QuickSightClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateIdentityPropagationConfigCommandInput,
|
|
38
|
+
UpdateIdentityPropagationConfigCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -33,6 +33,7 @@ export * from "./DeleteFolderMembershipCommand";
|
|
|
33
33
|
export * from "./DeleteGroupCommand";
|
|
34
34
|
export * from "./DeleteGroupMembershipCommand";
|
|
35
35
|
export * from "./DeleteIAMPolicyAssignmentCommand";
|
|
36
|
+
export * from "./DeleteIdentityPropagationConfigCommand";
|
|
36
37
|
export * from "./DeleteNamespaceCommand";
|
|
37
38
|
export * from "./DeleteRefreshScheduleCommand";
|
|
38
39
|
export * from "./DeleteRoleCustomPermissionCommand";
|
|
@@ -105,6 +106,7 @@ export * from "./ListGroupMembershipsCommand";
|
|
|
105
106
|
export * from "./ListGroupsCommand";
|
|
106
107
|
export * from "./ListIAMPolicyAssignmentsCommand";
|
|
107
108
|
export * from "./ListIAMPolicyAssignmentsForUserCommand";
|
|
109
|
+
export * from "./ListIdentityPropagationConfigsCommand";
|
|
108
110
|
export * from "./ListIngestionsCommand";
|
|
109
111
|
export * from "./ListNamespacesCommand";
|
|
110
112
|
export * from "./ListRefreshSchedulesCommand";
|
|
@@ -150,6 +152,7 @@ export * from "./UpdateFolderCommand";
|
|
|
150
152
|
export * from "./UpdateFolderPermissionsCommand";
|
|
151
153
|
export * from "./UpdateGroupCommand";
|
|
152
154
|
export * from "./UpdateIAMPolicyAssignmentCommand";
|
|
155
|
+
export * from "./UpdateIdentityPropagationConfigCommand";
|
|
153
156
|
export * from "./UpdateIpRestrictionCommand";
|
|
154
157
|
export * from "./UpdatePublicSharingSettingsCommand";
|
|
155
158
|
export * from "./UpdateRefreshScheduleCommand";
|
|
@@ -332,12 +332,16 @@ export interface RedshiftIAMParameters {
|
|
|
332
332
|
DatabaseGroups?: string[];
|
|
333
333
|
AutoCreateDatabaseUser?: boolean;
|
|
334
334
|
}
|
|
335
|
+
export interface IdentityCenterConfiguration {
|
|
336
|
+
EnableIdentityPropagation?: boolean;
|
|
337
|
+
}
|
|
335
338
|
export interface RedshiftParameters {
|
|
336
339
|
Host?: string;
|
|
337
340
|
Port?: number;
|
|
338
341
|
Database: string | undefined;
|
|
339
342
|
ClusterId?: string;
|
|
340
343
|
IAMParameters?: RedshiftIAMParameters;
|
|
344
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
341
345
|
}
|
|
342
346
|
export interface ManifestFileLocation {
|
|
343
347
|
Bucket: string | undefined;
|
|
@@ -1361,6 +1365,14 @@ export declare const AuthenticationMethodOption: {
|
|
|
1361
1365
|
};
|
|
1362
1366
|
export type AuthenticationMethodOption =
|
|
1363
1367
|
(typeof AuthenticationMethodOption)[keyof typeof AuthenticationMethodOption];
|
|
1368
|
+
export declare const ServiceType: {
|
|
1369
|
+
readonly REDSHIFT: "REDSHIFT";
|
|
1370
|
+
};
|
|
1371
|
+
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
1372
|
+
export interface AuthorizedTargetsByService {
|
|
1373
|
+
Service?: ServiceType;
|
|
1374
|
+
AuthorizedTargets?: string[];
|
|
1375
|
+
}
|
|
1364
1376
|
export declare const AuthorSpecifiedAggregation: {
|
|
1365
1377
|
readonly AVERAGE: "AVERAGE";
|
|
1366
1378
|
readonly COUNT: "COUNT";
|
|
@@ -2798,25 +2810,6 @@ export interface TopicRangeFilterConstant {
|
|
|
2798
2810
|
ConstantType?: ConstantType;
|
|
2799
2811
|
RangeConstant?: RangeConstant;
|
|
2800
2812
|
}
|
|
2801
|
-
export interface TopicDateRangeFilter {
|
|
2802
|
-
Inclusive?: boolean;
|
|
2803
|
-
Constant?: TopicRangeFilterConstant;
|
|
2804
|
-
}
|
|
2805
|
-
export declare const FilterClass: {
|
|
2806
|
-
readonly CONDITIONAL_VALUE_FILTER: "CONDITIONAL_VALUE_FILTER";
|
|
2807
|
-
readonly ENFORCED_VALUE_FILTER: "ENFORCED_VALUE_FILTER";
|
|
2808
|
-
readonly NAMED_VALUE_FILTER: "NAMED_VALUE_FILTER";
|
|
2809
|
-
};
|
|
2810
|
-
export type FilterClass = (typeof FilterClass)[keyof typeof FilterClass];
|
|
2811
|
-
export declare const NamedFilterType: {
|
|
2812
|
-
readonly CATEGORY_FILTER: "CATEGORY_FILTER";
|
|
2813
|
-
readonly DATE_RANGE_FILTER: "DATE_RANGE_FILTER";
|
|
2814
|
-
readonly NUMERIC_EQUALITY_FILTER: "NUMERIC_EQUALITY_FILTER";
|
|
2815
|
-
readonly NUMERIC_RANGE_FILTER: "NUMERIC_RANGE_FILTER";
|
|
2816
|
-
readonly RELATIVE_DATE_FILTER: "RELATIVE_DATE_FILTER";
|
|
2817
|
-
};
|
|
2818
|
-
export type NamedFilterType =
|
|
2819
|
-
(typeof NamedFilterType)[keyof typeof NamedFilterType];
|
|
2820
2813
|
export declare const SnapshotJobS3ResultFilterSensitiveLog: (
|
|
2821
2814
|
obj: SnapshotJobS3Result
|
|
2822
2815
|
) => any;
|
|
@@ -2914,6 +2907,3 @@ export declare const TopicCategoryFilterFilterSensitiveLog: (
|
|
|
2914
2907
|
export declare const TopicRangeFilterConstantFilterSensitiveLog: (
|
|
2915
2908
|
obj: TopicRangeFilterConstant
|
|
2916
2909
|
) => any;
|
|
2917
|
-
export declare const TopicDateRangeFilterFilterSensitiveLog: (
|
|
2918
|
-
obj: TopicDateRangeFilter
|
|
2919
|
-
) => any;
|
|
@@ -37,6 +37,7 @@ import {
|
|
|
37
37
|
AssetBundleImportJobSummary,
|
|
38
38
|
AssetBundleImportSourceDescription,
|
|
39
39
|
AssignmentStatus,
|
|
40
|
+
AuthorizedTargetsByService,
|
|
40
41
|
BookmarksConfigurations,
|
|
41
42
|
ColumnDataSubType,
|
|
42
43
|
ColumnDataType,
|
|
@@ -53,7 +54,6 @@ import {
|
|
|
53
54
|
DataSourceParameters,
|
|
54
55
|
DataSourceType,
|
|
55
56
|
FieldFolder,
|
|
56
|
-
FilterClass,
|
|
57
57
|
FolderType,
|
|
58
58
|
Group,
|
|
59
59
|
GroupMember,
|
|
@@ -62,7 +62,6 @@ import {
|
|
|
62
62
|
LinkSharingConfiguration,
|
|
63
63
|
LogicalTable,
|
|
64
64
|
MemberType,
|
|
65
|
-
NamedFilterType,
|
|
66
65
|
NamespaceStatus,
|
|
67
66
|
PhysicalTable,
|
|
68
67
|
RefreshSchedule,
|
|
@@ -70,6 +69,7 @@ import {
|
|
|
70
69
|
Role,
|
|
71
70
|
RowLevelPermissionDataSet,
|
|
72
71
|
RowLevelPermissionTagConfiguration,
|
|
72
|
+
ServiceType,
|
|
73
73
|
SharingModel,
|
|
74
74
|
SnapshotFile,
|
|
75
75
|
SnapshotS3DestinationConfiguration,
|
|
@@ -82,12 +82,30 @@ import {
|
|
|
82
82
|
TopicCalculatedField,
|
|
83
83
|
TopicCategoryFilter,
|
|
84
84
|
TopicColumn,
|
|
85
|
-
TopicDateRangeFilter,
|
|
86
85
|
TopicRangeFilterConstant,
|
|
87
86
|
TopicTimeGranularity,
|
|
88
87
|
VpcConnectionProperties,
|
|
89
88
|
} from "./models_2";
|
|
90
89
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
90
|
+
export interface TopicDateRangeFilter {
|
|
91
|
+
Inclusive?: boolean;
|
|
92
|
+
Constant?: TopicRangeFilterConstant;
|
|
93
|
+
}
|
|
94
|
+
export declare const FilterClass: {
|
|
95
|
+
readonly CONDITIONAL_VALUE_FILTER: "CONDITIONAL_VALUE_FILTER";
|
|
96
|
+
readonly ENFORCED_VALUE_FILTER: "ENFORCED_VALUE_FILTER";
|
|
97
|
+
readonly NAMED_VALUE_FILTER: "NAMED_VALUE_FILTER";
|
|
98
|
+
};
|
|
99
|
+
export type FilterClass = (typeof FilterClass)[keyof typeof FilterClass];
|
|
100
|
+
export declare const NamedFilterType: {
|
|
101
|
+
readonly CATEGORY_FILTER: "CATEGORY_FILTER";
|
|
102
|
+
readonly DATE_RANGE_FILTER: "DATE_RANGE_FILTER";
|
|
103
|
+
readonly NUMERIC_EQUALITY_FILTER: "NUMERIC_EQUALITY_FILTER";
|
|
104
|
+
readonly NUMERIC_RANGE_FILTER: "NUMERIC_RANGE_FILTER";
|
|
105
|
+
readonly RELATIVE_DATE_FILTER: "RELATIVE_DATE_FILTER";
|
|
106
|
+
};
|
|
107
|
+
export type NamedFilterType =
|
|
108
|
+
(typeof NamedFilterType)[keyof typeof NamedFilterType];
|
|
91
109
|
export declare const NamedFilterAggType: {
|
|
92
110
|
readonly AVERAGE: "AVERAGE";
|
|
93
111
|
readonly COUNT: "COUNT";
|
|
@@ -604,6 +622,14 @@ export interface DeleteIAMPolicyAssignmentResponse {
|
|
|
604
622
|
RequestId?: string;
|
|
605
623
|
Status?: number;
|
|
606
624
|
}
|
|
625
|
+
export interface DeleteIdentityPropagationConfigRequest {
|
|
626
|
+
AwsAccountId: string | undefined;
|
|
627
|
+
Service: ServiceType | undefined;
|
|
628
|
+
}
|
|
629
|
+
export interface DeleteIdentityPropagationConfigResponse {
|
|
630
|
+
RequestId?: string;
|
|
631
|
+
Status?: number;
|
|
632
|
+
}
|
|
607
633
|
export interface DeleteNamespaceRequest {
|
|
608
634
|
AwsAccountId: string | undefined;
|
|
609
635
|
Namespace: string | undefined;
|
|
@@ -1907,6 +1933,17 @@ export interface ListIAMPolicyAssignmentsForUserResponse {
|
|
|
1907
1933
|
NextToken?: string;
|
|
1908
1934
|
Status?: number;
|
|
1909
1935
|
}
|
|
1936
|
+
export interface ListIdentityPropagationConfigsRequest {
|
|
1937
|
+
AwsAccountId: string | undefined;
|
|
1938
|
+
MaxResults?: number;
|
|
1939
|
+
NextToken?: string;
|
|
1940
|
+
}
|
|
1941
|
+
export interface ListIdentityPropagationConfigsResponse {
|
|
1942
|
+
Services?: AuthorizedTargetsByService[];
|
|
1943
|
+
NextToken?: string;
|
|
1944
|
+
Status?: number;
|
|
1945
|
+
RequestId?: string;
|
|
1946
|
+
}
|
|
1910
1947
|
export interface ListIngestionsRequest {
|
|
1911
1948
|
DataSetId: string | undefined;
|
|
1912
1949
|
NextToken?: string;
|
|
@@ -1977,51 +2014,9 @@ export interface ListTemplatesRequest {
|
|
|
1977
2014
|
NextToken?: string;
|
|
1978
2015
|
MaxResults?: number;
|
|
1979
2016
|
}
|
|
1980
|
-
export
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
Name?: string;
|
|
1984
|
-
LatestVersionNumber?: number;
|
|
1985
|
-
CreatedTime?: Date;
|
|
1986
|
-
LastUpdatedTime?: Date;
|
|
1987
|
-
}
|
|
1988
|
-
export interface ListTemplatesResponse {
|
|
1989
|
-
TemplateSummaryList?: TemplateSummary[];
|
|
1990
|
-
NextToken?: string;
|
|
1991
|
-
Status?: number;
|
|
1992
|
-
RequestId?: string;
|
|
1993
|
-
}
|
|
1994
|
-
export interface ListTemplateVersionsRequest {
|
|
1995
|
-
AwsAccountId: string | undefined;
|
|
1996
|
-
TemplateId: string | undefined;
|
|
1997
|
-
NextToken?: string;
|
|
1998
|
-
MaxResults?: number;
|
|
1999
|
-
}
|
|
2000
|
-
export interface TemplateVersionSummary {
|
|
2001
|
-
Arn?: string;
|
|
2002
|
-
VersionNumber?: number;
|
|
2003
|
-
CreatedTime?: Date;
|
|
2004
|
-
Status?: ResourceStatus;
|
|
2005
|
-
Description?: string;
|
|
2006
|
-
}
|
|
2007
|
-
export interface ListTemplateVersionsResponse {
|
|
2008
|
-
TemplateVersionSummaryList?: TemplateVersionSummary[];
|
|
2009
|
-
NextToken?: string;
|
|
2010
|
-
Status?: number;
|
|
2011
|
-
RequestId?: string;
|
|
2012
|
-
}
|
|
2013
|
-
export interface ListThemeAliasesRequest {
|
|
2014
|
-
AwsAccountId: string | undefined;
|
|
2015
|
-
ThemeId: string | undefined;
|
|
2016
|
-
NextToken?: string;
|
|
2017
|
-
MaxResults?: number;
|
|
2018
|
-
}
|
|
2019
|
-
export interface ListThemeAliasesResponse {
|
|
2020
|
-
ThemeAliasList?: ThemeAlias[];
|
|
2021
|
-
Status?: number;
|
|
2022
|
-
RequestId?: string;
|
|
2023
|
-
NextToken?: string;
|
|
2024
|
-
}
|
|
2017
|
+
export declare const TopicDateRangeFilterFilterSensitiveLog: (
|
|
2018
|
+
obj: TopicDateRangeFilter
|
|
2019
|
+
) => any;
|
|
2025
2020
|
export declare const TopicSingularFilterConstantFilterSensitiveLog: (
|
|
2026
2021
|
obj: TopicSingularFilterConstant
|
|
2027
2022
|
) => any;
|
|
@@ -37,6 +37,7 @@ import {
|
|
|
37
37
|
Role,
|
|
38
38
|
RowLevelPermissionDataSet,
|
|
39
39
|
RowLevelPermissionTagConfiguration,
|
|
40
|
+
ServiceType,
|
|
40
41
|
SslProperties,
|
|
41
42
|
Tag,
|
|
42
43
|
TemplateAlias,
|
|
@@ -70,6 +71,51 @@ import {
|
|
|
70
71
|
VPCConnectionAvailabilityStatus,
|
|
71
72
|
VPCConnectionResourceStatus,
|
|
72
73
|
} from "./models_3";
|
|
74
|
+
export interface TemplateSummary {
|
|
75
|
+
Arn?: string;
|
|
76
|
+
TemplateId?: string;
|
|
77
|
+
Name?: string;
|
|
78
|
+
LatestVersionNumber?: number;
|
|
79
|
+
CreatedTime?: Date;
|
|
80
|
+
LastUpdatedTime?: Date;
|
|
81
|
+
}
|
|
82
|
+
export interface ListTemplatesResponse {
|
|
83
|
+
TemplateSummaryList?: TemplateSummary[];
|
|
84
|
+
NextToken?: string;
|
|
85
|
+
Status?: number;
|
|
86
|
+
RequestId?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface ListTemplateVersionsRequest {
|
|
89
|
+
AwsAccountId: string | undefined;
|
|
90
|
+
TemplateId: string | undefined;
|
|
91
|
+
NextToken?: string;
|
|
92
|
+
MaxResults?: number;
|
|
93
|
+
}
|
|
94
|
+
export interface TemplateVersionSummary {
|
|
95
|
+
Arn?: string;
|
|
96
|
+
VersionNumber?: number;
|
|
97
|
+
CreatedTime?: Date;
|
|
98
|
+
Status?: ResourceStatus;
|
|
99
|
+
Description?: string;
|
|
100
|
+
}
|
|
101
|
+
export interface ListTemplateVersionsResponse {
|
|
102
|
+
TemplateVersionSummaryList?: TemplateVersionSummary[];
|
|
103
|
+
NextToken?: string;
|
|
104
|
+
Status?: number;
|
|
105
|
+
RequestId?: string;
|
|
106
|
+
}
|
|
107
|
+
export interface ListThemeAliasesRequest {
|
|
108
|
+
AwsAccountId: string | undefined;
|
|
109
|
+
ThemeId: string | undefined;
|
|
110
|
+
NextToken?: string;
|
|
111
|
+
MaxResults?: number;
|
|
112
|
+
}
|
|
113
|
+
export interface ListThemeAliasesResponse {
|
|
114
|
+
ThemeAliasList?: ThemeAlias[];
|
|
115
|
+
Status?: number;
|
|
116
|
+
RequestId?: string;
|
|
117
|
+
NextToken?: string;
|
|
118
|
+
}
|
|
73
119
|
export interface ListThemesRequest {
|
|
74
120
|
AwsAccountId: string | undefined;
|
|
75
121
|
NextToken?: string;
|
|
@@ -588,6 +634,15 @@ export interface UpdateIAMPolicyAssignmentResponse {
|
|
|
588
634
|
RequestId?: string;
|
|
589
635
|
Status?: number;
|
|
590
636
|
}
|
|
637
|
+
export interface UpdateIdentityPropagationConfigRequest {
|
|
638
|
+
AwsAccountId: string | undefined;
|
|
639
|
+
Service: ServiceType | undefined;
|
|
640
|
+
AuthorizedTargets?: string[];
|
|
641
|
+
}
|
|
642
|
+
export interface UpdateIdentityPropagationConfigResponse {
|
|
643
|
+
RequestId?: string;
|
|
644
|
+
Status?: number;
|
|
645
|
+
}
|
|
591
646
|
export interface UpdateIpRestrictionRequest {
|
|
592
647
|
AwsAccountId: string | undefined;
|
|
593
648
|
IpRestrictionRuleMap?: Record<string, string>;
|