@aws-sdk/client-quicksight 3.1055.0 → 3.1057.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 +35 -0
- package/dist-cjs/index.js +78 -0
- package/dist-cjs/schemas/schemas_0.js +140 -35
- package/dist-es/QuickSight.js +12 -0
- package/dist-es/commands/CreateOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/DeleteOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/DescribeOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/ListOAuthClientApplicationsCommand.js +16 -0
- package/dist-es/commands/UpdateOAuthClientApplicationCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/pagination/ListOAuthClientApplicationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +109 -4
- package/dist-types/QuickSight.d.ts +42 -0
- package/dist-types/QuickSightClient.d.ts +7 -2
- package/dist-types/commands/CreateOAuthClientApplicationCommand.d.ts +125 -0
- package/dist-types/commands/DeleteOAuthClientApplicationCommand.d.ts +101 -0
- package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +1 -2
- package/dist-types/commands/DescribeOAuthClientApplicationCommand.d.ts +111 -0
- package/dist-types/commands/ListOAuthClientApplicationsCommand.d.ts +115 -0
- package/dist-types/commands/UpdateOAuthClientApplicationCommand.d.ts +115 -0
- package/dist-types/commands/UpdateRoleCustomPermissionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSPICECapacityConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSelfUpgradeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplateAliasCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplatePermissionsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_3.d.ts +136 -99
- package/dist-types/models/models_4.d.ts +356 -282
- package/dist-types/models/models_5.d.ts +300 -4
- package/dist-types/pagination/ListOAuthClientApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/QuickSight.d.ts +92 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeIpRestrictionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListOAuthClientApplicationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateOAuthClientApplicationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateRoleCustomPermissionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateSPICECapacityConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTemplateAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTemplatePermissionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_3.d.ts +32 -22
- package/dist-types/ts3.4/models/models_4.d.ts +86 -71
- package/dist-types/ts3.4/models/models_5.d.ts +79 -2
- package/dist-types/ts3.4/pagination/ListOAuthClientApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +6 -6
|
@@ -112,6 +112,10 @@ import {
|
|
|
112
112
|
CreateNamespaceCommandInput,
|
|
113
113
|
CreateNamespaceCommandOutput,
|
|
114
114
|
} from "./commands/CreateNamespaceCommand";
|
|
115
|
+
import {
|
|
116
|
+
CreateOAuthClientApplicationCommandInput,
|
|
117
|
+
CreateOAuthClientApplicationCommandOutput,
|
|
118
|
+
} from "./commands/CreateOAuthClientApplicationCommand";
|
|
115
119
|
import {
|
|
116
120
|
CreateRefreshScheduleCommandInput,
|
|
117
121
|
CreateRefreshScheduleCommandOutput,
|
|
@@ -228,6 +232,10 @@ import {
|
|
|
228
232
|
DeleteNamespaceCommandInput,
|
|
229
233
|
DeleteNamespaceCommandOutput,
|
|
230
234
|
} from "./commands/DeleteNamespaceCommand";
|
|
235
|
+
import {
|
|
236
|
+
DeleteOAuthClientApplicationCommandInput,
|
|
237
|
+
DeleteOAuthClientApplicationCommandOutput,
|
|
238
|
+
} from "./commands/DeleteOAuthClientApplicationCommand";
|
|
231
239
|
import {
|
|
232
240
|
DeleteRefreshScheduleCommandInput,
|
|
233
241
|
DeleteRefreshScheduleCommandOutput,
|
|
@@ -432,6 +440,10 @@ import {
|
|
|
432
440
|
DescribeNamespaceCommandInput,
|
|
433
441
|
DescribeNamespaceCommandOutput,
|
|
434
442
|
} from "./commands/DescribeNamespaceCommand";
|
|
443
|
+
import {
|
|
444
|
+
DescribeOAuthClientApplicationCommandInput,
|
|
445
|
+
DescribeOAuthClientApplicationCommandOutput,
|
|
446
|
+
} from "./commands/DescribeOAuthClientApplicationCommand";
|
|
435
447
|
import {
|
|
436
448
|
DescribeQPersonalizationConfigurationCommandInput,
|
|
437
449
|
DescribeQPersonalizationConfigurationCommandOutput,
|
|
@@ -620,6 +632,10 @@ import {
|
|
|
620
632
|
ListNamespacesCommandInput,
|
|
621
633
|
ListNamespacesCommandOutput,
|
|
622
634
|
} from "./commands/ListNamespacesCommand";
|
|
635
|
+
import {
|
|
636
|
+
ListOAuthClientApplicationsCommandInput,
|
|
637
|
+
ListOAuthClientApplicationsCommandOutput,
|
|
638
|
+
} from "./commands/ListOAuthClientApplicationsCommand";
|
|
623
639
|
import {
|
|
624
640
|
ListRefreshSchedulesCommandInput,
|
|
625
641
|
ListRefreshSchedulesCommandOutput,
|
|
@@ -884,6 +900,10 @@ import {
|
|
|
884
900
|
UpdateKeyRegistrationCommandInput,
|
|
885
901
|
UpdateKeyRegistrationCommandOutput,
|
|
886
902
|
} from "./commands/UpdateKeyRegistrationCommand";
|
|
903
|
+
import {
|
|
904
|
+
UpdateOAuthClientApplicationCommandInput,
|
|
905
|
+
UpdateOAuthClientApplicationCommandOutput,
|
|
906
|
+
} from "./commands/UpdateOAuthClientApplicationCommand";
|
|
887
907
|
import {
|
|
888
908
|
UpdatePublicSharingSettingsCommandInput,
|
|
889
909
|
UpdatePublicSharingSettingsCommandOutput,
|
|
@@ -991,6 +1011,7 @@ export type ServiceInputTypes =
|
|
|
991
1011
|
| CreateIAMPolicyAssignmentCommandInput
|
|
992
1012
|
| CreateIngestionCommandInput
|
|
993
1013
|
| CreateNamespaceCommandInput
|
|
1014
|
+
| CreateOAuthClientApplicationCommandInput
|
|
994
1015
|
| CreateRefreshScheduleCommandInput
|
|
995
1016
|
| CreateRoleMembershipCommandInput
|
|
996
1017
|
| CreateTemplateAliasCommandInput
|
|
@@ -1020,6 +1041,7 @@ export type ServiceInputTypes =
|
|
|
1020
1041
|
| DeleteIAMPolicyAssignmentCommandInput
|
|
1021
1042
|
| DeleteIdentityPropagationConfigCommandInput
|
|
1022
1043
|
| DeleteNamespaceCommandInput
|
|
1044
|
+
| DeleteOAuthClientApplicationCommandInput
|
|
1023
1045
|
| DeleteRefreshScheduleCommandInput
|
|
1024
1046
|
| DeleteRoleCustomPermissionCommandInput
|
|
1025
1047
|
| DeleteRoleMembershipCommandInput
|
|
@@ -1071,6 +1093,7 @@ export type ServiceInputTypes =
|
|
|
1071
1093
|
| DescribeIpRestrictionCommandInput
|
|
1072
1094
|
| DescribeKeyRegistrationCommandInput
|
|
1073
1095
|
| DescribeNamespaceCommandInput
|
|
1096
|
+
| DescribeOAuthClientApplicationCommandInput
|
|
1074
1097
|
| DescribeQPersonalizationConfigurationCommandInput
|
|
1075
1098
|
| DescribeQuickSightQSearchConfigurationCommandInput
|
|
1076
1099
|
| DescribeRefreshScheduleCommandInput
|
|
@@ -1118,6 +1141,7 @@ export type ServiceInputTypes =
|
|
|
1118
1141
|
| ListIdentityPropagationConfigsCommandInput
|
|
1119
1142
|
| ListIngestionsCommandInput
|
|
1120
1143
|
| ListNamespacesCommandInput
|
|
1144
|
+
| ListOAuthClientApplicationsCommandInput
|
|
1121
1145
|
| ListRefreshSchedulesCommandInput
|
|
1122
1146
|
| ListRoleMembershipsCommandInput
|
|
1123
1147
|
| ListSelfUpgradesCommandInput
|
|
@@ -1184,6 +1208,7 @@ export type ServiceInputTypes =
|
|
|
1184
1208
|
| UpdateIdentityPropagationConfigCommandInput
|
|
1185
1209
|
| UpdateIpRestrictionCommandInput
|
|
1186
1210
|
| UpdateKeyRegistrationCommandInput
|
|
1211
|
+
| UpdateOAuthClientApplicationCommandInput
|
|
1187
1212
|
| UpdatePublicSharingSettingsCommandInput
|
|
1188
1213
|
| UpdateQPersonalizationConfigurationCommandInput
|
|
1189
1214
|
| UpdateQuickSightQSearchConfigurationCommandInput
|
|
@@ -1224,6 +1249,7 @@ export type ServiceOutputTypes =
|
|
|
1224
1249
|
| CreateIAMPolicyAssignmentCommandOutput
|
|
1225
1250
|
| CreateIngestionCommandOutput
|
|
1226
1251
|
| CreateNamespaceCommandOutput
|
|
1252
|
+
| CreateOAuthClientApplicationCommandOutput
|
|
1227
1253
|
| CreateRefreshScheduleCommandOutput
|
|
1228
1254
|
| CreateRoleMembershipCommandOutput
|
|
1229
1255
|
| CreateTemplateAliasCommandOutput
|
|
@@ -1253,6 +1279,7 @@ export type ServiceOutputTypes =
|
|
|
1253
1279
|
| DeleteIAMPolicyAssignmentCommandOutput
|
|
1254
1280
|
| DeleteIdentityPropagationConfigCommandOutput
|
|
1255
1281
|
| DeleteNamespaceCommandOutput
|
|
1282
|
+
| DeleteOAuthClientApplicationCommandOutput
|
|
1256
1283
|
| DeleteRefreshScheduleCommandOutput
|
|
1257
1284
|
| DeleteRoleCustomPermissionCommandOutput
|
|
1258
1285
|
| DeleteRoleMembershipCommandOutput
|
|
@@ -1304,6 +1331,7 @@ export type ServiceOutputTypes =
|
|
|
1304
1331
|
| DescribeIpRestrictionCommandOutput
|
|
1305
1332
|
| DescribeKeyRegistrationCommandOutput
|
|
1306
1333
|
| DescribeNamespaceCommandOutput
|
|
1334
|
+
| DescribeOAuthClientApplicationCommandOutput
|
|
1307
1335
|
| DescribeQPersonalizationConfigurationCommandOutput
|
|
1308
1336
|
| DescribeQuickSightQSearchConfigurationCommandOutput
|
|
1309
1337
|
| DescribeRefreshScheduleCommandOutput
|
|
@@ -1351,6 +1379,7 @@ export type ServiceOutputTypes =
|
|
|
1351
1379
|
| ListIdentityPropagationConfigsCommandOutput
|
|
1352
1380
|
| ListIngestionsCommandOutput
|
|
1353
1381
|
| ListNamespacesCommandOutput
|
|
1382
|
+
| ListOAuthClientApplicationsCommandOutput
|
|
1354
1383
|
| ListRefreshSchedulesCommandOutput
|
|
1355
1384
|
| ListRoleMembershipsCommandOutput
|
|
1356
1385
|
| ListSelfUpgradesCommandOutput
|
|
@@ -1417,6 +1446,7 @@ export type ServiceOutputTypes =
|
|
|
1417
1446
|
| UpdateIdentityPropagationConfigCommandOutput
|
|
1418
1447
|
| UpdateIpRestrictionCommandOutput
|
|
1419
1448
|
| UpdateKeyRegistrationCommandOutput
|
|
1449
|
+
| UpdateOAuthClientApplicationCommandOutput
|
|
1420
1450
|
| UpdatePublicSharingSettingsCommandOutput
|
|
1421
1451
|
| UpdateQPersonalizationConfigurationCommandOutput
|
|
1422
1452
|
| UpdateQuickSightQSearchConfigurationCommandOutput
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateOAuthClientApplicationRequest,
|
|
5
|
+
CreateOAuthClientApplicationResponse,
|
|
6
|
+
} from "../models/models_3";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateOAuthClientApplicationCommandInput
|
|
15
|
+
extends CreateOAuthClientApplicationRequest {}
|
|
16
|
+
export interface CreateOAuthClientApplicationCommandOutput
|
|
17
|
+
extends CreateOAuthClientApplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateOAuthClientApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateOAuthClientApplicationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateOAuthClientApplicationCommandInput,
|
|
24
|
+
CreateOAuthClientApplicationCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateOAuthClientApplicationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
CreateOAuthClientApplicationCommandInput,
|
|
33
|
+
CreateOAuthClientApplicationCommandOutput,
|
|
34
|
+
QuickSightClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class CreateOAuthClientApplicationCommand extends CreateOAuthClientApplicationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: CreateOAuthClientApplicationRequest;
|
|
46
|
+
output: CreateOAuthClientApplicationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: CreateOAuthClientApplicationCommandInput;
|
|
50
|
+
output: CreateOAuthClientApplicationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteOAuthClientApplicationRequest,
|
|
5
|
+
DeleteOAuthClientApplicationResponse,
|
|
6
|
+
} from "../models/models_3";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteOAuthClientApplicationCommandInput
|
|
15
|
+
extends DeleteOAuthClientApplicationRequest {}
|
|
16
|
+
export interface DeleteOAuthClientApplicationCommandOutput
|
|
17
|
+
extends DeleteOAuthClientApplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteOAuthClientApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteOAuthClientApplicationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteOAuthClientApplicationCommandInput,
|
|
24
|
+
DeleteOAuthClientApplicationCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteOAuthClientApplicationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteOAuthClientApplicationCommandInput,
|
|
33
|
+
DeleteOAuthClientApplicationCommandOutput,
|
|
34
|
+
QuickSightClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteOAuthClientApplicationCommand extends DeleteOAuthClientApplicationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteOAuthClientApplicationRequest;
|
|
46
|
+
output: DeleteOAuthClientApplicationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteOAuthClientApplicationCommandInput;
|
|
50
|
+
output: DeleteOAuthClientApplicationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
DescribeIpRestrictionResponse,
|
|
6
|
-
} from "../models/models_3";
|
|
3
|
+
import { DescribeIpRestrictionRequest } from "../models/models_3";
|
|
4
|
+
import { DescribeIpRestrictionResponse } from "../models/models_4";
|
|
7
5
|
import {
|
|
8
6
|
QuickSightClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
DescribeKeyRegistrationRequest,
|
|
5
|
+
DescribeKeyRegistrationResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
5
7
|
import {
|
|
6
8
|
QuickSightClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeOAuthClientApplicationRequest,
|
|
5
|
+
DescribeOAuthClientApplicationResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeOAuthClientApplicationCommandInput
|
|
15
|
+
extends DescribeOAuthClientApplicationRequest {}
|
|
16
|
+
export interface DescribeOAuthClientApplicationCommandOutput
|
|
17
|
+
extends DescribeOAuthClientApplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeOAuthClientApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeOAuthClientApplicationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DescribeOAuthClientApplicationCommandInput,
|
|
24
|
+
DescribeOAuthClientApplicationCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeOAuthClientApplicationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DescribeOAuthClientApplicationCommandInput,
|
|
33
|
+
DescribeOAuthClientApplicationCommandOutput,
|
|
34
|
+
QuickSightClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DescribeOAuthClientApplicationCommand extends DescribeOAuthClientApplicationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DescribeOAuthClientApplicationRequest;
|
|
46
|
+
output: DescribeOAuthClientApplicationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DescribeOAuthClientApplicationCommandInput;
|
|
50
|
+
output: DescribeOAuthClientApplicationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListOAuthClientApplicationsRequest,
|
|
5
|
+
ListOAuthClientApplicationsResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListOAuthClientApplicationsCommandInput
|
|
15
|
+
extends ListOAuthClientApplicationsRequest {}
|
|
16
|
+
export interface ListOAuthClientApplicationsCommandOutput
|
|
17
|
+
extends ListOAuthClientApplicationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListOAuthClientApplicationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListOAuthClientApplicationsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListOAuthClientApplicationsCommandInput,
|
|
24
|
+
ListOAuthClientApplicationsCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListOAuthClientApplicationsCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListOAuthClientApplicationsCommandInput,
|
|
33
|
+
ListOAuthClientApplicationsCommandOutput,
|
|
34
|
+
QuickSightClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListOAuthClientApplicationsCommand extends ListOAuthClientApplicationsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListOAuthClientApplicationsRequest;
|
|
46
|
+
output: ListOAuthClientApplicationsResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListOAuthClientApplicationsCommandInput;
|
|
50
|
+
output: ListOAuthClientApplicationsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateOAuthClientApplicationRequest,
|
|
5
|
+
UpdateOAuthClientApplicationResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateOAuthClientApplicationCommandInput
|
|
15
|
+
extends UpdateOAuthClientApplicationRequest {}
|
|
16
|
+
export interface UpdateOAuthClientApplicationCommandOutput
|
|
17
|
+
extends UpdateOAuthClientApplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateOAuthClientApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateOAuthClientApplicationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
UpdateOAuthClientApplicationCommandInput,
|
|
24
|
+
UpdateOAuthClientApplicationCommandOutput,
|
|
25
|
+
QuickSightClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateOAuthClientApplicationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
UpdateOAuthClientApplicationCommandInput,
|
|
33
|
+
UpdateOAuthClientApplicationCommandOutput,
|
|
34
|
+
QuickSightClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class UpdateOAuthClientApplicationCommand extends UpdateOAuthClientApplicationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: UpdateOAuthClientApplicationRequest;
|
|
46
|
+
output: UpdateOAuthClientApplicationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: UpdateOAuthClientApplicationCommandInput;
|
|
50
|
+
output: UpdateOAuthClientApplicationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
UpdateRoleCustomPermissionResponse,
|
|
6
|
-
} from "../models/models_4";
|
|
3
|
+
import { UpdateRoleCustomPermissionRequest } from "../models/models_4";
|
|
4
|
+
import { UpdateRoleCustomPermissionResponse } from "../models/models_5";
|
|
7
5
|
import {
|
|
8
6
|
QuickSightClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
UpdateSPICECapacityConfigurationRequest,
|
|
5
5
|
UpdateSPICECapacityConfigurationResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_5";
|
|
7
7
|
import {
|
|
8
8
|
QuickSightClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
UpdateSelfUpgradeConfigurationRequest,
|
|
5
5
|
UpdateSelfUpgradeConfigurationResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_5";
|
|
7
7
|
import {
|
|
8
8
|
QuickSightClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
UpdateTemplatePermissionsRequest,
|
|
5
|
+
UpdateTemplatePermissionsResponse,
|
|
6
|
+
} from "../models/models_5";
|
|
5
7
|
import {
|
|
6
8
|
QuickSightClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -17,6 +17,7 @@ export * from "./CreateGroupMembershipCommand";
|
|
|
17
17
|
export * from "./CreateIAMPolicyAssignmentCommand";
|
|
18
18
|
export * from "./CreateIngestionCommand";
|
|
19
19
|
export * from "./CreateNamespaceCommand";
|
|
20
|
+
export * from "./CreateOAuthClientApplicationCommand";
|
|
20
21
|
export * from "./CreateRefreshScheduleCommand";
|
|
21
22
|
export * from "./CreateRoleMembershipCommand";
|
|
22
23
|
export * from "./CreateTemplateAliasCommand";
|
|
@@ -46,6 +47,7 @@ export * from "./DeleteGroupMembershipCommand";
|
|
|
46
47
|
export * from "./DeleteIAMPolicyAssignmentCommand";
|
|
47
48
|
export * from "./DeleteIdentityPropagationConfigCommand";
|
|
48
49
|
export * from "./DeleteNamespaceCommand";
|
|
50
|
+
export * from "./DeleteOAuthClientApplicationCommand";
|
|
49
51
|
export * from "./DeleteRefreshScheduleCommand";
|
|
50
52
|
export * from "./DeleteRoleCustomPermissionCommand";
|
|
51
53
|
export * from "./DeleteRoleMembershipCommand";
|
|
@@ -97,6 +99,7 @@ export * from "./DescribeIngestionCommand";
|
|
|
97
99
|
export * from "./DescribeIpRestrictionCommand";
|
|
98
100
|
export * from "./DescribeKeyRegistrationCommand";
|
|
99
101
|
export * from "./DescribeNamespaceCommand";
|
|
102
|
+
export * from "./DescribeOAuthClientApplicationCommand";
|
|
100
103
|
export * from "./DescribeQPersonalizationConfigurationCommand";
|
|
101
104
|
export * from "./DescribeQuickSightQSearchConfigurationCommand";
|
|
102
105
|
export * from "./DescribeRefreshScheduleCommand";
|
|
@@ -144,6 +147,7 @@ export * from "./ListIAMPolicyAssignmentsForUserCommand";
|
|
|
144
147
|
export * from "./ListIdentityPropagationConfigsCommand";
|
|
145
148
|
export * from "./ListIngestionsCommand";
|
|
146
149
|
export * from "./ListNamespacesCommand";
|
|
150
|
+
export * from "./ListOAuthClientApplicationsCommand";
|
|
147
151
|
export * from "./ListRefreshSchedulesCommand";
|
|
148
152
|
export * from "./ListRoleMembershipsCommand";
|
|
149
153
|
export * from "./ListSelfUpgradesCommand";
|
|
@@ -210,6 +214,7 @@ export * from "./UpdateIAMPolicyAssignmentCommand";
|
|
|
210
214
|
export * from "./UpdateIdentityPropagationConfigCommand";
|
|
211
215
|
export * from "./UpdateIpRestrictionCommand";
|
|
212
216
|
export * from "./UpdateKeyRegistrationCommand";
|
|
217
|
+
export * from "./UpdateOAuthClientApplicationCommand";
|
|
213
218
|
export * from "./UpdatePublicSharingSettingsCommand";
|
|
214
219
|
export * from "./UpdateQPersonalizationConfigurationCommand";
|
|
215
220
|
export * from "./UpdateQuickSightQSearchConfigurationCommand";
|
|
@@ -1725,6 +1725,11 @@ export declare const NamespaceStatus: {
|
|
|
1725
1725
|
};
|
|
1726
1726
|
export type NamespaceStatus =
|
|
1727
1727
|
(typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
1728
|
+
export declare const OAuthClientAuthenticationType: {
|
|
1729
|
+
readonly TOKEN: "TOKEN";
|
|
1730
|
+
};
|
|
1731
|
+
export type OAuthClientAuthenticationType =
|
|
1732
|
+
(typeof OAuthClientAuthenticationType)[keyof typeof OAuthClientAuthenticationType];
|
|
1728
1733
|
export declare const RefreshInterval: {
|
|
1729
1734
|
readonly DAILY: "DAILY";
|
|
1730
1735
|
readonly HOURLY: "HOURLY";
|
|
@@ -45,9 +45,9 @@ import {
|
|
|
45
45
|
NamedFilterType,
|
|
46
46
|
NamespaceStatus,
|
|
47
47
|
NullFilterType,
|
|
48
|
+
OAuthClientAuthenticationType,
|
|
48
49
|
PropertyRole,
|
|
49
50
|
PropertyUsage,
|
|
50
|
-
QDataKeyType,
|
|
51
51
|
RefreshInterval,
|
|
52
52
|
ResourceStatus,
|
|
53
53
|
Role,
|
|
@@ -661,6 +661,27 @@ export interface CreateNamespaceResponse {
|
|
|
661
661
|
RequestId?: string | undefined;
|
|
662
662
|
Status?: number | undefined;
|
|
663
663
|
}
|
|
664
|
+
export interface CreateOAuthClientApplicationRequest {
|
|
665
|
+
AwsAccountId: string | undefined;
|
|
666
|
+
OAuthClientApplicationId: string | undefined;
|
|
667
|
+
Name: string | undefined;
|
|
668
|
+
OAuthClientAuthenticationType: OAuthClientAuthenticationType | undefined;
|
|
669
|
+
ClientId: string | undefined;
|
|
670
|
+
ClientSecret: string | undefined;
|
|
671
|
+
OAuthTokenEndpointUrl: string | undefined;
|
|
672
|
+
OAuthAuthorizationEndpointUrl?: string | undefined;
|
|
673
|
+
OAuthScopes?: string | undefined;
|
|
674
|
+
DataSourceType?: DataSourceType | undefined;
|
|
675
|
+
IdentityProviderVpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
676
|
+
Tags?: Tag[] | undefined;
|
|
677
|
+
}
|
|
678
|
+
export interface CreateOAuthClientApplicationResponse {
|
|
679
|
+
Arn?: string | undefined;
|
|
680
|
+
OAuthClientApplicationId?: string | undefined;
|
|
681
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
682
|
+
RequestId?: string | undefined;
|
|
683
|
+
Status?: number | undefined;
|
|
684
|
+
}
|
|
664
685
|
export interface ScheduleRefreshOnEntity {
|
|
665
686
|
DayOfWeek?: DayOfWeek | undefined;
|
|
666
687
|
DayOfMonth?: string | undefined;
|
|
@@ -1424,6 +1445,16 @@ export interface DeleteNamespaceResponse {
|
|
|
1424
1445
|
RequestId?: string | undefined;
|
|
1425
1446
|
Status?: number | undefined;
|
|
1426
1447
|
}
|
|
1448
|
+
export interface DeleteOAuthClientApplicationRequest {
|
|
1449
|
+
AwsAccountId: string | undefined;
|
|
1450
|
+
OAuthClientApplicationId: string | undefined;
|
|
1451
|
+
}
|
|
1452
|
+
export interface DeleteOAuthClientApplicationResponse {
|
|
1453
|
+
Arn?: string | undefined;
|
|
1454
|
+
OAuthClientApplicationId?: string | undefined;
|
|
1455
|
+
RequestId?: string | undefined;
|
|
1456
|
+
Status?: number | undefined;
|
|
1457
|
+
}
|
|
1427
1458
|
export interface DeleteRefreshScheduleRequest {
|
|
1428
1459
|
DataSetId: string | undefined;
|
|
1429
1460
|
AwsAccountId: string | undefined;
|
|
@@ -2050,24 +2081,3 @@ export interface DescribeIngestionResponse {
|
|
|
2050
2081
|
export interface DescribeIpRestrictionRequest {
|
|
2051
2082
|
AwsAccountId: string | undefined;
|
|
2052
2083
|
}
|
|
2053
|
-
export interface DescribeIpRestrictionResponse {
|
|
2054
|
-
AwsAccountId?: string | undefined;
|
|
2055
|
-
IpRestrictionRuleMap?: Record<string, string> | undefined;
|
|
2056
|
-
VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
2057
|
-
VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
2058
|
-
Enabled?: boolean | undefined;
|
|
2059
|
-
RequestId?: string | undefined;
|
|
2060
|
-
Status?: number | undefined;
|
|
2061
|
-
}
|
|
2062
|
-
export interface DescribeKeyRegistrationRequest {
|
|
2063
|
-
AwsAccountId: string | undefined;
|
|
2064
|
-
DefaultKeyOnly?: boolean | undefined;
|
|
2065
|
-
}
|
|
2066
|
-
export interface RegisteredCustomerManagedKey {
|
|
2067
|
-
KeyArn?: string | undefined;
|
|
2068
|
-
DefaultKey?: boolean | undefined;
|
|
2069
|
-
}
|
|
2070
|
-
export interface QDataKey {
|
|
2071
|
-
QDataKeyArn?: string | undefined;
|
|
2072
|
-
QDataKeyType?: QDataKeyType | undefined;
|
|
2073
|
-
}
|