@aws-sdk/client-quicksight 3.1056.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 +2 -2
package/dist-es/QuickSight.js
CHANGED
|
@@ -18,6 +18,7 @@ import { CreateGroupMembershipCommand, } from "./commands/CreateGroupMembershipC
|
|
|
18
18
|
import { CreateIAMPolicyAssignmentCommand, } from "./commands/CreateIAMPolicyAssignmentCommand";
|
|
19
19
|
import { CreateIngestionCommand, } from "./commands/CreateIngestionCommand";
|
|
20
20
|
import { CreateNamespaceCommand, } from "./commands/CreateNamespaceCommand";
|
|
21
|
+
import { CreateOAuthClientApplicationCommand, } from "./commands/CreateOAuthClientApplicationCommand";
|
|
21
22
|
import { CreateRefreshScheduleCommand, } from "./commands/CreateRefreshScheduleCommand";
|
|
22
23
|
import { CreateRoleMembershipCommand, } from "./commands/CreateRoleMembershipCommand";
|
|
23
24
|
import { CreateTemplateAliasCommand, } from "./commands/CreateTemplateAliasCommand";
|
|
@@ -47,6 +48,7 @@ import { DeleteGroupMembershipCommand, } from "./commands/DeleteGroupMembershipC
|
|
|
47
48
|
import { DeleteIAMPolicyAssignmentCommand, } from "./commands/DeleteIAMPolicyAssignmentCommand";
|
|
48
49
|
import { DeleteIdentityPropagationConfigCommand, } from "./commands/DeleteIdentityPropagationConfigCommand";
|
|
49
50
|
import { DeleteNamespaceCommand, } from "./commands/DeleteNamespaceCommand";
|
|
51
|
+
import { DeleteOAuthClientApplicationCommand, } from "./commands/DeleteOAuthClientApplicationCommand";
|
|
50
52
|
import { DeleteRefreshScheduleCommand, } from "./commands/DeleteRefreshScheduleCommand";
|
|
51
53
|
import { DeleteRoleCustomPermissionCommand, } from "./commands/DeleteRoleCustomPermissionCommand";
|
|
52
54
|
import { DeleteRoleMembershipCommand, } from "./commands/DeleteRoleMembershipCommand";
|
|
@@ -98,6 +100,7 @@ import { DescribeIngestionCommand, } from "./commands/DescribeIngestionCommand";
|
|
|
98
100
|
import { DescribeIpRestrictionCommand, } from "./commands/DescribeIpRestrictionCommand";
|
|
99
101
|
import { DescribeKeyRegistrationCommand, } from "./commands/DescribeKeyRegistrationCommand";
|
|
100
102
|
import { DescribeNamespaceCommand, } from "./commands/DescribeNamespaceCommand";
|
|
103
|
+
import { DescribeOAuthClientApplicationCommand, } from "./commands/DescribeOAuthClientApplicationCommand";
|
|
101
104
|
import { DescribeQPersonalizationConfigurationCommand, } from "./commands/DescribeQPersonalizationConfigurationCommand";
|
|
102
105
|
import { DescribeQuickSightQSearchConfigurationCommand, } from "./commands/DescribeQuickSightQSearchConfigurationCommand";
|
|
103
106
|
import { DescribeRefreshScheduleCommand, } from "./commands/DescribeRefreshScheduleCommand";
|
|
@@ -145,6 +148,7 @@ import { ListIAMPolicyAssignmentsForUserCommand, } from "./commands/ListIAMPolic
|
|
|
145
148
|
import { ListIdentityPropagationConfigsCommand, } from "./commands/ListIdentityPropagationConfigsCommand";
|
|
146
149
|
import { ListIngestionsCommand, } from "./commands/ListIngestionsCommand";
|
|
147
150
|
import { ListNamespacesCommand, } from "./commands/ListNamespacesCommand";
|
|
151
|
+
import { ListOAuthClientApplicationsCommand, } from "./commands/ListOAuthClientApplicationsCommand";
|
|
148
152
|
import { ListRefreshSchedulesCommand, } from "./commands/ListRefreshSchedulesCommand";
|
|
149
153
|
import { ListRoleMembershipsCommand, } from "./commands/ListRoleMembershipsCommand";
|
|
150
154
|
import { ListSelfUpgradesCommand, } from "./commands/ListSelfUpgradesCommand";
|
|
@@ -211,6 +215,7 @@ import { UpdateIAMPolicyAssignmentCommand, } from "./commands/UpdateIAMPolicyAss
|
|
|
211
215
|
import { UpdateIdentityPropagationConfigCommand, } from "./commands/UpdateIdentityPropagationConfigCommand";
|
|
212
216
|
import { UpdateIpRestrictionCommand, } from "./commands/UpdateIpRestrictionCommand";
|
|
213
217
|
import { UpdateKeyRegistrationCommand, } from "./commands/UpdateKeyRegistrationCommand";
|
|
218
|
+
import { UpdateOAuthClientApplicationCommand, } from "./commands/UpdateOAuthClientApplicationCommand";
|
|
214
219
|
import { UpdatePublicSharingSettingsCommand, } from "./commands/UpdatePublicSharingSettingsCommand";
|
|
215
220
|
import { UpdateQPersonalizationConfigurationCommand, } from "./commands/UpdateQPersonalizationConfigurationCommand";
|
|
216
221
|
import { UpdateQuickSightQSearchConfigurationCommand, } from "./commands/UpdateQuickSightQSearchConfigurationCommand";
|
|
@@ -253,6 +258,7 @@ import { paginateListIAMPolicyAssignmentsForUser } from "./pagination/ListIAMPol
|
|
|
253
258
|
import { paginateListIAMPolicyAssignments } from "./pagination/ListIAMPolicyAssignmentsPaginator";
|
|
254
259
|
import { paginateListIngestions } from "./pagination/ListIngestionsPaginator";
|
|
255
260
|
import { paginateListNamespaces } from "./pagination/ListNamespacesPaginator";
|
|
261
|
+
import { paginateListOAuthClientApplications } from "./pagination/ListOAuthClientApplicationsPaginator";
|
|
256
262
|
import { paginateListRoleMemberships } from "./pagination/ListRoleMembershipsPaginator";
|
|
257
263
|
import { paginateListTemplateAliases } from "./pagination/ListTemplateAliasesPaginator";
|
|
258
264
|
import { paginateListTemplates } from "./pagination/ListTemplatesPaginator";
|
|
@@ -293,6 +299,7 @@ const commands = {
|
|
|
293
299
|
CreateIAMPolicyAssignmentCommand,
|
|
294
300
|
CreateIngestionCommand,
|
|
295
301
|
CreateNamespaceCommand,
|
|
302
|
+
CreateOAuthClientApplicationCommand,
|
|
296
303
|
CreateRefreshScheduleCommand,
|
|
297
304
|
CreateRoleMembershipCommand,
|
|
298
305
|
CreateTemplateCommand,
|
|
@@ -322,6 +329,7 @@ const commands = {
|
|
|
322
329
|
DeleteIAMPolicyAssignmentCommand,
|
|
323
330
|
DeleteIdentityPropagationConfigCommand,
|
|
324
331
|
DeleteNamespaceCommand,
|
|
332
|
+
DeleteOAuthClientApplicationCommand,
|
|
325
333
|
DeleteRefreshScheduleCommand,
|
|
326
334
|
DeleteRoleCustomPermissionCommand,
|
|
327
335
|
DeleteRoleMembershipCommand,
|
|
@@ -373,6 +381,7 @@ const commands = {
|
|
|
373
381
|
DescribeIpRestrictionCommand,
|
|
374
382
|
DescribeKeyRegistrationCommand,
|
|
375
383
|
DescribeNamespaceCommand,
|
|
384
|
+
DescribeOAuthClientApplicationCommand,
|
|
376
385
|
DescribeQPersonalizationConfigurationCommand,
|
|
377
386
|
DescribeQuickSightQSearchConfigurationCommand,
|
|
378
387
|
DescribeRefreshScheduleCommand,
|
|
@@ -420,6 +429,7 @@ const commands = {
|
|
|
420
429
|
ListIdentityPropagationConfigsCommand,
|
|
421
430
|
ListIngestionsCommand,
|
|
422
431
|
ListNamespacesCommand,
|
|
432
|
+
ListOAuthClientApplicationsCommand,
|
|
423
433
|
ListRefreshSchedulesCommand,
|
|
424
434
|
ListRoleMembershipsCommand,
|
|
425
435
|
ListSelfUpgradesCommand,
|
|
@@ -486,6 +496,7 @@ const commands = {
|
|
|
486
496
|
UpdateIdentityPropagationConfigCommand,
|
|
487
497
|
UpdateIpRestrictionCommand,
|
|
488
498
|
UpdateKeyRegistrationCommand,
|
|
499
|
+
UpdateOAuthClientApplicationCommand,
|
|
489
500
|
UpdatePublicSharingSettingsCommand,
|
|
490
501
|
UpdateQPersonalizationConfigurationCommand,
|
|
491
502
|
UpdateQuickSightQSearchConfigurationCommand,
|
|
@@ -530,6 +541,7 @@ const paginators = {
|
|
|
530
541
|
paginateListIAMPolicyAssignmentsForUser,
|
|
531
542
|
paginateListIngestions,
|
|
532
543
|
paginateListNamespaces,
|
|
544
|
+
paginateListOAuthClientApplications,
|
|
533
545
|
paginateListRoleMemberships,
|
|
534
546
|
paginateListTemplateAliases,
|
|
535
547
|
paginateListTemplates,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateOAuthClientApplication$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateOAuthClientApplicationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("QuickSight_20180401", "CreateOAuthClientApplication", {})
|
|
13
|
+
.n("QuickSightClient", "CreateOAuthClientApplicationCommand")
|
|
14
|
+
.sc(CreateOAuthClientApplication$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteOAuthClientApplication$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteOAuthClientApplicationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("QuickSight_20180401", "DeleteOAuthClientApplication", {})
|
|
13
|
+
.n("QuickSightClient", "DeleteOAuthClientApplicationCommand")
|
|
14
|
+
.sc(DeleteOAuthClientApplication$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeOAuthClientApplication$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeOAuthClientApplicationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("QuickSight_20180401", "DescribeOAuthClientApplication", {})
|
|
13
|
+
.n("QuickSightClient", "DescribeOAuthClientApplicationCommand")
|
|
14
|
+
.sc(DescribeOAuthClientApplication$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListOAuthClientApplications$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListOAuthClientApplicationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("QuickSight_20180401", "ListOAuthClientApplications", {})
|
|
13
|
+
.n("QuickSightClient", "ListOAuthClientApplicationsCommand")
|
|
14
|
+
.sc(ListOAuthClientApplications$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateOAuthClientApplication$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateOAuthClientApplicationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("QuickSight_20180401", "UpdateOAuthClientApplication", {})
|
|
13
|
+
.n("QuickSightClient", "UpdateOAuthClientApplicationCommand")
|
|
14
|
+
.sc(UpdateOAuthClientApplication$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -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";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1309,6 +1309,9 @@ export const NamespaceStatus = {
|
|
|
1309
1309
|
NON_RETRYABLE_FAILURE: "NON_RETRYABLE_FAILURE",
|
|
1310
1310
|
RETRYABLE_FAILURE: "RETRYABLE_FAILURE",
|
|
1311
1311
|
};
|
|
1312
|
+
export const OAuthClientAuthenticationType = {
|
|
1313
|
+
TOKEN: "TOKEN",
|
|
1314
|
+
};
|
|
1312
1315
|
export const RefreshInterval = {
|
|
1313
1316
|
DAILY: "DAILY",
|
|
1314
1317
|
HOURLY: "HOURLY",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListOAuthClientApplicationsCommand, } from "../commands/ListOAuthClientApplicationsCommand";
|
|
3
|
+
import { QuickSightClient } from "../QuickSightClient";
|
|
4
|
+
export const paginateListOAuthClientApplications = createPaginator(QuickSightClient, ListOAuthClientApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -21,6 +21,7 @@ export * from "./ListIAMPolicyAssignmentsPaginator";
|
|
|
21
21
|
export * from "./ListIAMPolicyAssignmentsForUserPaginator";
|
|
22
22
|
export * from "./ListIngestionsPaginator";
|
|
23
23
|
export * from "./ListNamespacesPaginator";
|
|
24
|
+
export * from "./ListOAuthClientApplicationsPaginator";
|
|
24
25
|
export * from "./ListRoleMembershipsPaginator";
|
|
25
26
|
export * from "./ListTemplateAliasesPaginator";
|
|
26
27
|
export * from "./ListTemplatesPaginator";
|
|
@@ -653,6 +653,9 @@ const _CNont = "ContextualNavbar";
|
|
|
653
653
|
const _CNr = "CreateNamespace";
|
|
654
654
|
const _CNu = "CustomNarrative";
|
|
655
655
|
const _CO = "ComparativeOrder";
|
|
656
|
+
const _COACA = "CreateOAuthClientApplication";
|
|
657
|
+
const _COACAR = "CreateOAuthClientApplicationRequest";
|
|
658
|
+
const _COACARr = "CreateOAuthClientApplicationResponse";
|
|
656
659
|
const _COo = "ControlOptions";
|
|
657
660
|
const _COon = "ConfigurationOverrides";
|
|
658
661
|
const _COonf = "ConfigOptions";
|
|
@@ -1048,6 +1051,12 @@ const _DNas = "DashboardName";
|
|
|
1048
1051
|
const _DNe = "DeleteNamespace";
|
|
1049
1052
|
const _DNes = "DescribeNamespace";
|
|
1050
1053
|
const _DO = "DataOptions";
|
|
1054
|
+
const _DOACA = "DeleteOAuthClientApplication";
|
|
1055
|
+
const _DOACAR = "DeleteOAuthClientApplicationRequest";
|
|
1056
|
+
const _DOACARe = "DeleteOAuthClientApplicationResponse";
|
|
1057
|
+
const _DOACARes = "DescribeOAuthClientApplicationRequest";
|
|
1058
|
+
const _DOACAResc = "DescribeOAuthClientApplicationResponse";
|
|
1059
|
+
const _DOACAe = "DescribeOAuthClientApplication";
|
|
1051
1060
|
const _DOM = "DayOfMonth";
|
|
1052
1061
|
const _DOW = "DayOfWeek";
|
|
1053
1062
|
const _DOe = "DefaultOpacity";
|
|
@@ -1188,7 +1197,8 @@ const _DSSat = "DataSetSummary";
|
|
|
1188
1197
|
const _DSSata = "DataSourceSummary";
|
|
1189
1198
|
const _DSSatae = "DataSetSummaries";
|
|
1190
1199
|
const _DSSatao = "DataSourceSummaries";
|
|
1191
|
-
const _DST = "
|
|
1200
|
+
const _DST = "DataSourceType";
|
|
1201
|
+
const _DSTa = "DashboardSourceTemplate";
|
|
1192
1202
|
const _DSTe = "DecalStyleType";
|
|
1193
1203
|
const _DSUC = "DataSetUsageConfiguration";
|
|
1194
1204
|
const _DSUCR = "DescribeSelfUpgradeConfigurationRequest";
|
|
@@ -1989,6 +1999,9 @@ const _LNRi = "ListNamespacesResponse";
|
|
|
1989
1999
|
const _LNa = "LabelName";
|
|
1990
2000
|
const _LNi = "ListNamespaces";
|
|
1991
2001
|
const _LO = "LabelOptions";
|
|
2002
|
+
const _LOACA = "ListOAuthClientApplications";
|
|
2003
|
+
const _LOACAR = "ListOAuthClientApplicationsRequest";
|
|
2004
|
+
const _LOACARi = "ListOAuthClientApplicationsResponse";
|
|
1992
2005
|
const _LOP = "LeftOperandProperties";
|
|
1993
2006
|
const _LOe = "LeftOperand";
|
|
1994
2007
|
const _LOeg = "LegendOptions";
|
|
@@ -2219,12 +2232,21 @@ const _Nam = "Namespaces";
|
|
|
2219
2232
|
const _Nar = "Narrative";
|
|
2220
2233
|
const _No = "North";
|
|
2221
2234
|
const _O = "Operator";
|
|
2235
|
+
const _OAAEU = "OAuthAuthorizationEndpointUrl";
|
|
2236
|
+
const _OACA = "OAuthClientApplication";
|
|
2237
|
+
const _OACAI = "OAuthClientApplicationId";
|
|
2238
|
+
const _OACAS = "OAuthClientApplicationSummary";
|
|
2239
|
+
const _OACASL = "OAuthClientApplicationSummaryList";
|
|
2240
|
+
const _OACAT = "OAuthClientAuthenticationType";
|
|
2241
|
+
const _OACAu = "OAuthClientApplications";
|
|
2222
2242
|
const _OACC = "OAuthClientCredentials";
|
|
2223
2243
|
const _OACI = "OAuthClientId";
|
|
2224
2244
|
const _OACS = "OAuthClientSecret";
|
|
2225
2245
|
const _OAP = "OAuthParameters";
|
|
2226
2246
|
const _OAPIA = "OpenAPIAction";
|
|
2227
|
-
const _OAS = "
|
|
2247
|
+
const _OAS = "OAuthScopes";
|
|
2248
|
+
const _OASu = "OAuthScope";
|
|
2249
|
+
const _OATEU = "OAuthTokenEndpointUrl";
|
|
2228
2250
|
const _OAU = "OAuthUsername";
|
|
2229
2251
|
const _OC = "OutputColumns";
|
|
2230
2252
|
const _OCHV = "OverflowColumnHeaderVisibility";
|
|
@@ -3501,6 +3523,9 @@ const _UNA = "UseNotionAction";
|
|
|
3501
3523
|
const _UNC = "UserNameColumn";
|
|
3502
3524
|
const _UNRA = "UseNewRelicAction";
|
|
3503
3525
|
const _UO = "UseOrdering";
|
|
3526
|
+
const _UOACA = "UpdateOAuthClientApplication";
|
|
3527
|
+
const _UOACAR = "UpdateOAuthClientApplicationRequest";
|
|
3528
|
+
const _UOACARp = "UpdateOAuthClientApplicationResponse";
|
|
3504
3529
|
const _UOAPIA = "UseOpenAPIAction";
|
|
3505
3530
|
const _UODA = "UseOneDriveAction";
|
|
3506
3531
|
const _UOn = "UnpivotOperation";
|
|
@@ -3942,8 +3967,10 @@ var FieldValue = [0, n0, _FV, 8, 0];
|
|
|
3942
3967
|
var InlineCustomInstructionText = [0, n0, _ICIT, 8, 0];
|
|
3943
3968
|
var JoinOperationOnClause = [0, n0, _JOOC, 8, 0];
|
|
3944
3969
|
var NullString = [0, n0, _NS, 8, 0];
|
|
3970
|
+
var OAuthAuthorizationEndpointUrl = [0, n0, _OAAEU, 8, 0];
|
|
3945
3971
|
var OAuthClientId = [0, n0, _OACI, 8, 0];
|
|
3946
3972
|
var OAuthClientSecret = [0, n0, _OACS, 8, 0];
|
|
3973
|
+
var OAuthTokenEndpointUrl = [0, n0, _OATEU, 8, 0];
|
|
3947
3974
|
var OAuthUsername = [0, n0, _OAU, 8, 0];
|
|
3948
3975
|
var Prefix = [0, n0, _P, 8, 0];
|
|
3949
3976
|
var PrivateKey = [0, n0, _PK, 8, 0];
|
|
@@ -5251,6 +5278,16 @@ export var CreateNamespaceResponse$ = [3, n0, _CNRr,
|
|
|
5251
5278
|
[_A, _N, _CR, _CSre, _ISd, _RI, _St],
|
|
5252
5279
|
[0, 0, 0, 0, 0, 0, [1, 32]]
|
|
5253
5280
|
];
|
|
5281
|
+
export var CreateOAuthClientApplicationRequest$ = [3, n0, _COACAR,
|
|
5282
|
+
0,
|
|
5283
|
+
[_AAI, _OACAI, _N, _OACAT, _CI, _CS, _OATEU, _OAAEU, _OAS, _DST, _IPVCP, _Ta],
|
|
5284
|
+
[[0, 1], 0, 0, 0, [() => OAuthClientId, 0], [() => OAuthClientSecret, 0], [() => OAuthTokenEndpointUrl, 0], [() => OAuthAuthorizationEndpointUrl, 0], 0, 0, () => VpcConnectionProperties$, () => TagList], 7
|
|
5285
|
+
];
|
|
5286
|
+
export var CreateOAuthClientApplicationResponse$ = [3, n0, _COACARr,
|
|
5287
|
+
0,
|
|
5288
|
+
[_A, _OACAI, _CSre, _RI, _St],
|
|
5289
|
+
[0, 0, 0, 0, [1, 32]]
|
|
5290
|
+
];
|
|
5254
5291
|
export var CreateRefreshScheduleRequest$ = [3, n0, _CRSR,
|
|
5255
5292
|
0,
|
|
5256
5293
|
[_DSI, _AAI, _Sch],
|
|
@@ -5476,7 +5513,7 @@ export var DashboardSourceEntity$ = [3, n0, _DSE,
|
|
|
5476
5513
|
[_STo],
|
|
5477
5514
|
[() => DashboardSourceTemplate$]
|
|
5478
5515
|
];
|
|
5479
|
-
export var DashboardSourceTemplate$ = [3, n0,
|
|
5516
|
+
export var DashboardSourceTemplate$ = [3, n0, _DSTa,
|
|
5480
5517
|
0,
|
|
5481
5518
|
[_DSR, _A],
|
|
5482
5519
|
[() => DataSetReferenceList, 0], 2
|
|
@@ -6191,6 +6228,16 @@ export var DeleteNamespaceResponse$ = [3, n0, _DNRe,
|
|
|
6191
6228
|
[_RI, _St],
|
|
6192
6229
|
[0, [1, 32]]
|
|
6193
6230
|
];
|
|
6231
|
+
export var DeleteOAuthClientApplicationRequest$ = [3, n0, _DOACAR,
|
|
6232
|
+
0,
|
|
6233
|
+
[_AAI, _OACAI],
|
|
6234
|
+
[[0, 1], [0, 1]], 2
|
|
6235
|
+
];
|
|
6236
|
+
export var DeleteOAuthClientApplicationResponse$ = [3, n0, _DOACARe,
|
|
6237
|
+
0,
|
|
6238
|
+
[_A, _OACAI, _RI, _St],
|
|
6239
|
+
[0, 0, 0, [1, 32]]
|
|
6240
|
+
];
|
|
6194
6241
|
export var DeleteRefreshScheduleRequest$ = [3, n0, _DRSR,
|
|
6195
6242
|
0,
|
|
6196
6243
|
[_DSI, _AAI, _SI],
|
|
@@ -6701,6 +6748,16 @@ export var DescribeNamespaceResponse$ = [3, n0, _DNResc,
|
|
|
6701
6748
|
[_Na, _RI, _St],
|
|
6702
6749
|
[() => NamespaceInfoV2$, 0, [1, 32]]
|
|
6703
6750
|
];
|
|
6751
|
+
export var DescribeOAuthClientApplicationRequest$ = [3, n0, _DOACARes,
|
|
6752
|
+
0,
|
|
6753
|
+
[_AAI, _OACAI],
|
|
6754
|
+
[[0, 1], [0, 1]], 2
|
|
6755
|
+
];
|
|
6756
|
+
export var DescribeOAuthClientApplicationResponse$ = [3, n0, _DOACAResc,
|
|
6757
|
+
0,
|
|
6758
|
+
[_OACA, _RI, _St],
|
|
6759
|
+
[[() => OAuthClientApplication$, 0], 0, [1, 32]]
|
|
6760
|
+
];
|
|
6704
6761
|
export var DescribeQPersonalizationConfigurationRequest$ = [3, n0, _DQPCR,
|
|
6705
6762
|
0,
|
|
6706
6763
|
[_AAI],
|
|
@@ -8346,6 +8403,16 @@ export var ListNamespacesResponse$ = [3, n0, _LNRi,
|
|
|
8346
8403
|
[_Nam, _NT, _RI, _St],
|
|
8347
8404
|
[() => Namespaces, 0, 0, [1, 32]]
|
|
8348
8405
|
];
|
|
8406
|
+
export var ListOAuthClientApplicationsRequest$ = [3, n0, _LOACAR,
|
|
8407
|
+
0,
|
|
8408
|
+
[_AAI, _NT, _MR],
|
|
8409
|
+
[[0, 1], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]], 1
|
|
8410
|
+
];
|
|
8411
|
+
export var ListOAuthClientApplicationsResponse$ = [3, n0, _LOACARi,
|
|
8412
|
+
0,
|
|
8413
|
+
[_OACAu, _NT, _RI, _St],
|
|
8414
|
+
[() => OAuthClientApplicationSummaryList, 0, 0, [1, 32]]
|
|
8415
|
+
];
|
|
8349
8416
|
export var ListRefreshSchedulesRequest$ = [3, n0, _LRSR,
|
|
8350
8417
|
0,
|
|
8351
8418
|
[_AAI, _DSI],
|
|
@@ -8741,6 +8808,16 @@ export var NumericSeparatorConfiguration$ = [3, n0, _NSC,
|
|
|
8741
8808
|
[_DSec, _TSh],
|
|
8742
8809
|
[0, () => ThousandSeparatorOptions$]
|
|
8743
8810
|
];
|
|
8811
|
+
export var OAuthClientApplication$ = [3, n0, _OACA,
|
|
8812
|
+
0,
|
|
8813
|
+
[_OACAI, _N, _OACAT, _OATEU, _OAAEU, _OAS, _DST, _IPVCP, _CT, _LUT, _A],
|
|
8814
|
+
[0, 0, 0, [() => OAuthTokenEndpointUrl, 0], [() => OAuthAuthorizationEndpointUrl, 0], 0, 0, () => VpcConnectionProperties$, 4, 4, 0]
|
|
8815
|
+
];
|
|
8816
|
+
export var OAuthClientApplicationSummary$ = [3, n0, _OACAS,
|
|
8817
|
+
0,
|
|
8818
|
+
[_OACAI, _N, _OACAT, _DST, _IPVCP, _CT, _LUT, _A],
|
|
8819
|
+
[0, 0, 0, 0, () => VpcConnectionProperties$, 4, 4, 0]
|
|
8820
|
+
];
|
|
8744
8821
|
export var OAuthClientCredentials$ = [3, n0, _OACC,
|
|
8745
8822
|
0,
|
|
8746
8823
|
[_CI, _CS, _U],
|
|
@@ -8748,7 +8825,7 @@ export var OAuthClientCredentials$ = [3, n0, _OACC,
|
|
|
8748
8825
|
];
|
|
8749
8826
|
export var OAuthParameters$ = [3, n0, _OAP,
|
|
8750
8827
|
0,
|
|
8751
|
-
[_TPU,
|
|
8828
|
+
[_TPU, _OASu, _IPVCP, _IPRU, _IPCACBSU],
|
|
8752
8829
|
[0, 0, () => VpcConnectionProperties$, 0, 0], 1
|
|
8753
8830
|
];
|
|
8754
8831
|
export var OracleParameters$ = [3, n0, _OPr,
|
|
@@ -11106,6 +11183,16 @@ export var UpdateKeyRegistrationResponse$ = [3, n0, _UKRRp,
|
|
|
11106
11183
|
[_FKR, _SKR, _RI],
|
|
11107
11184
|
[() => FailedKeyRegistrationEntries, () => SuccessfulKeyRegistrationEntries, 0]
|
|
11108
11185
|
];
|
|
11186
|
+
export var UpdateOAuthClientApplicationRequest$ = [3, n0, _UOACAR,
|
|
11187
|
+
0,
|
|
11188
|
+
[_AAI, _OACAI, _N, _CI, _CS, _OATEU, _OAAEU, _OAS, _DST, _IPVCP],
|
|
11189
|
+
[[0, 1], [0, 1], 0, [() => OAuthClientId, 0], [() => OAuthClientSecret, 0], [() => OAuthTokenEndpointUrl, 0], [() => OAuthAuthorizationEndpointUrl, 0], 0, 0, () => VpcConnectionProperties$], 3
|
|
11190
|
+
];
|
|
11191
|
+
export var UpdateOAuthClientApplicationResponse$ = [3, n0, _UOACARp,
|
|
11192
|
+
0,
|
|
11193
|
+
[_A, _OACAI, _USpd, _RI, _St],
|
|
11194
|
+
[0, 0, 0, 0, [1, 32]]
|
|
11195
|
+
];
|
|
11109
11196
|
export var UpdatePublicSharingSettingsRequest$ = [3, n0, _UPSSR,
|
|
11110
11197
|
0,
|
|
11111
11198
|
[_AAI, _PSE],
|
|
@@ -12098,6 +12185,9 @@ var NetworkInterfaceList = [1, n0, _NIL,
|
|
|
12098
12185
|
0, () => NetworkInterface$
|
|
12099
12186
|
];
|
|
12100
12187
|
var NonRepeatingVisualsList = 64 | 0;
|
|
12188
|
+
var OAuthClientApplicationSummaryList = [1, n0, _OACASL,
|
|
12189
|
+
0, () => OAuthClientApplicationSummary$
|
|
12190
|
+
];
|
|
12101
12191
|
var OperandList = [1, n0, _OL,
|
|
12102
12192
|
0, () => Identifier$
|
|
12103
12193
|
];
|
|
@@ -12657,6 +12747,9 @@ export var CreateIngestion$ = [9, n0, _CIr,
|
|
|
12657
12747
|
export var CreateNamespace$ = [9, n0, _CNr,
|
|
12658
12748
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}", 200] }, () => CreateNamespaceRequest$, () => CreateNamespaceResponse$
|
|
12659
12749
|
];
|
|
12750
|
+
export var CreateOAuthClientApplication$ = [9, n0, _COACA,
|
|
12751
|
+
{ [_h]: ["POST", "/accounts/{AwsAccountId}/oauth-client-applications", 200] }, () => CreateOAuthClientApplicationRequest$, () => CreateOAuthClientApplicationResponse$
|
|
12752
|
+
];
|
|
12660
12753
|
export var CreateRefreshSchedule$ = [9, n0, _CRS,
|
|
12661
12754
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-schedules", 200] }, () => CreateRefreshScheduleRequest$, () => CreateRefreshScheduleResponse$
|
|
12662
12755
|
];
|
|
@@ -12744,6 +12837,9 @@ export var DeleteIdentityPropagationConfig$ = [9, n0, _DIPC,
|
|
|
12744
12837
|
export var DeleteNamespace$ = [9, n0, _DNe,
|
|
12745
12838
|
{ [_h]: ["DELETE", "/accounts/{AwsAccountId}/namespaces/{Namespace}", 200] }, () => DeleteNamespaceRequest$, () => DeleteNamespaceResponse$
|
|
12746
12839
|
];
|
|
12840
|
+
export var DeleteOAuthClientApplication$ = [9, n0, _DOACA,
|
|
12841
|
+
{ [_h]: ["DELETE", "/accounts/{AwsAccountId}/oauth-client-applications/{OAuthClientApplicationId}", 200] }, () => DeleteOAuthClientApplicationRequest$, () => DeleteOAuthClientApplicationResponse$
|
|
12842
|
+
];
|
|
12747
12843
|
export var DeleteRefreshSchedule$ = [9, n0, _DRS,
|
|
12748
12844
|
{ [_h]: ["DELETE", "/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-schedules/{ScheduleId}", 200] }, () => DeleteRefreshScheduleRequest$, () => DeleteRefreshScheduleResponse$
|
|
12749
12845
|
];
|
|
@@ -12897,6 +12993,9 @@ export var DescribeKeyRegistration$ = [9, n0, _DKR,
|
|
|
12897
12993
|
export var DescribeNamespace$ = [9, n0, _DNes,
|
|
12898
12994
|
{ [_h]: ["GET", "/accounts/{AwsAccountId}/namespaces/{Namespace}", 200] }, () => DescribeNamespaceRequest$, () => DescribeNamespaceResponse$
|
|
12899
12995
|
];
|
|
12996
|
+
export var DescribeOAuthClientApplication$ = [9, n0, _DOACAe,
|
|
12997
|
+
{ [_h]: ["GET", "/accounts/{AwsAccountId}/oauth-client-applications/{OAuthClientApplicationId}", 200] }, () => DescribeOAuthClientApplicationRequest$, () => DescribeOAuthClientApplicationResponse$
|
|
12998
|
+
];
|
|
12900
12999
|
export var DescribeQPersonalizationConfiguration$ = [9, n0, _DQPC,
|
|
12901
13000
|
{ [_h]: ["GET", "/accounts/{AwsAccountId}/q-personalization-configuration", 200] }, () => DescribeQPersonalizationConfigurationRequest$, () => DescribeQPersonalizationConfigurationResponse$
|
|
12902
13001
|
];
|
|
@@ -13038,6 +13137,9 @@ export var ListIngestions$ = [9, n0, _LIis,
|
|
|
13038
13137
|
export var ListNamespaces$ = [9, n0, _LNi,
|
|
13039
13138
|
{ [_h]: ["GET", "/accounts/{AwsAccountId}/namespaces", 200] }, () => ListNamespacesRequest$, () => ListNamespacesResponse$
|
|
13040
13139
|
];
|
|
13140
|
+
export var ListOAuthClientApplications$ = [9, n0, _LOACA,
|
|
13141
|
+
{ [_h]: ["GET", "/accounts/{AwsAccountId}/oauth-client-applications", 200] }, () => ListOAuthClientApplicationsRequest$, () => ListOAuthClientApplicationsResponse$
|
|
13142
|
+
];
|
|
13041
13143
|
export var ListRefreshSchedules$ = [9, n0, _LRS,
|
|
13042
13144
|
{ [_h]: ["GET", "/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-schedules", 200] }, () => ListRefreshSchedulesRequest$, () => ListRefreshSchedulesResponse$
|
|
13043
13145
|
];
|
|
@@ -13236,6 +13338,9 @@ export var UpdateIpRestriction$ = [9, n0, _UIR,
|
|
|
13236
13338
|
export var UpdateKeyRegistration$ = [9, n0, _UKR,
|
|
13237
13339
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/key-registration", 200] }, () => UpdateKeyRegistrationRequest$, () => UpdateKeyRegistrationResponse$
|
|
13238
13340
|
];
|
|
13341
|
+
export var UpdateOAuthClientApplication$ = [9, n0, _UOACA,
|
|
13342
|
+
{ [_h]: ["PUT", "/accounts/{AwsAccountId}/oauth-client-applications/{OAuthClientApplicationId}", 200] }, () => UpdateOAuthClientApplicationRequest$, () => UpdateOAuthClientApplicationResponse$
|
|
13343
|
+
];
|
|
13239
13344
|
export var UpdatePublicSharingSettings$ = [9, n0, _UPSS,
|
|
13240
13345
|
{ [_h]: ["PUT", "/accounts/{AwsAccountId}/public-sharing-settings", 200] }, () => UpdatePublicSharingSettingsRequest$, () => UpdatePublicSharingSettingsResponse$
|
|
13241
13346
|
];
|
|
@@ -18,6 +18,7 @@ import { type CreateGroupMembershipCommandInput, type CreateGroupMembershipComma
|
|
|
18
18
|
import { type CreateIAMPolicyAssignmentCommandInput, type CreateIAMPolicyAssignmentCommandOutput } from "./commands/CreateIAMPolicyAssignmentCommand";
|
|
19
19
|
import { type CreateIngestionCommandInput, type CreateIngestionCommandOutput } from "./commands/CreateIngestionCommand";
|
|
20
20
|
import { type CreateNamespaceCommandInput, type CreateNamespaceCommandOutput } from "./commands/CreateNamespaceCommand";
|
|
21
|
+
import { type CreateOAuthClientApplicationCommandInput, type CreateOAuthClientApplicationCommandOutput } from "./commands/CreateOAuthClientApplicationCommand";
|
|
21
22
|
import { type CreateRefreshScheduleCommandInput, type CreateRefreshScheduleCommandOutput } from "./commands/CreateRefreshScheduleCommand";
|
|
22
23
|
import { type CreateRoleMembershipCommandInput, type CreateRoleMembershipCommandOutput } from "./commands/CreateRoleMembershipCommand";
|
|
23
24
|
import { type CreateTemplateAliasCommandInput, type CreateTemplateAliasCommandOutput } from "./commands/CreateTemplateAliasCommand";
|
|
@@ -47,6 +48,7 @@ import { type DeleteGroupMembershipCommandInput, type DeleteGroupMembershipComma
|
|
|
47
48
|
import { type DeleteIAMPolicyAssignmentCommandInput, type DeleteIAMPolicyAssignmentCommandOutput } from "./commands/DeleteIAMPolicyAssignmentCommand";
|
|
48
49
|
import { type DeleteIdentityPropagationConfigCommandInput, type DeleteIdentityPropagationConfigCommandOutput } from "./commands/DeleteIdentityPropagationConfigCommand";
|
|
49
50
|
import { type DeleteNamespaceCommandInput, type DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
|
|
51
|
+
import { type DeleteOAuthClientApplicationCommandInput, type DeleteOAuthClientApplicationCommandOutput } from "./commands/DeleteOAuthClientApplicationCommand";
|
|
50
52
|
import { type DeleteRefreshScheduleCommandInput, type DeleteRefreshScheduleCommandOutput } from "./commands/DeleteRefreshScheduleCommand";
|
|
51
53
|
import { type DeleteRoleCustomPermissionCommandInput, type DeleteRoleCustomPermissionCommandOutput } from "./commands/DeleteRoleCustomPermissionCommand";
|
|
52
54
|
import { type DeleteRoleMembershipCommandInput, type DeleteRoleMembershipCommandOutput } from "./commands/DeleteRoleMembershipCommand";
|
|
@@ -98,6 +100,7 @@ import { type DescribeIngestionCommandInput, type DescribeIngestionCommandOutput
|
|
|
98
100
|
import { type DescribeIpRestrictionCommandInput, type DescribeIpRestrictionCommandOutput } from "./commands/DescribeIpRestrictionCommand";
|
|
99
101
|
import { type DescribeKeyRegistrationCommandInput, type DescribeKeyRegistrationCommandOutput } from "./commands/DescribeKeyRegistrationCommand";
|
|
100
102
|
import { type DescribeNamespaceCommandInput, type DescribeNamespaceCommandOutput } from "./commands/DescribeNamespaceCommand";
|
|
103
|
+
import { type DescribeOAuthClientApplicationCommandInput, type DescribeOAuthClientApplicationCommandOutput } from "./commands/DescribeOAuthClientApplicationCommand";
|
|
101
104
|
import { type DescribeQPersonalizationConfigurationCommandInput, type DescribeQPersonalizationConfigurationCommandOutput } from "./commands/DescribeQPersonalizationConfigurationCommand";
|
|
102
105
|
import { type DescribeQuickSightQSearchConfigurationCommandInput, type DescribeQuickSightQSearchConfigurationCommandOutput } from "./commands/DescribeQuickSightQSearchConfigurationCommand";
|
|
103
106
|
import { type DescribeRefreshScheduleCommandInput, type DescribeRefreshScheduleCommandOutput } from "./commands/DescribeRefreshScheduleCommand";
|
|
@@ -145,6 +148,7 @@ import { type ListIAMPolicyAssignmentsForUserCommandInput, type ListIAMPolicyAss
|
|
|
145
148
|
import { type ListIdentityPropagationConfigsCommandInput, type ListIdentityPropagationConfigsCommandOutput } from "./commands/ListIdentityPropagationConfigsCommand";
|
|
146
149
|
import { type ListIngestionsCommandInput, type ListIngestionsCommandOutput } from "./commands/ListIngestionsCommand";
|
|
147
150
|
import { type ListNamespacesCommandInput, type ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
151
|
+
import { type ListOAuthClientApplicationsCommandInput, type ListOAuthClientApplicationsCommandOutput } from "./commands/ListOAuthClientApplicationsCommand";
|
|
148
152
|
import { type ListRefreshSchedulesCommandInput, type ListRefreshSchedulesCommandOutput } from "./commands/ListRefreshSchedulesCommand";
|
|
149
153
|
import { type ListRoleMembershipsCommandInput, type ListRoleMembershipsCommandOutput } from "./commands/ListRoleMembershipsCommand";
|
|
150
154
|
import { type ListSelfUpgradesCommandInput, type ListSelfUpgradesCommandOutput } from "./commands/ListSelfUpgradesCommand";
|
|
@@ -211,6 +215,7 @@ import { type UpdateIAMPolicyAssignmentCommandInput, type UpdateIAMPolicyAssignm
|
|
|
211
215
|
import { type UpdateIdentityPropagationConfigCommandInput, type UpdateIdentityPropagationConfigCommandOutput } from "./commands/UpdateIdentityPropagationConfigCommand";
|
|
212
216
|
import { type UpdateIpRestrictionCommandInput, type UpdateIpRestrictionCommandOutput } from "./commands/UpdateIpRestrictionCommand";
|
|
213
217
|
import { type UpdateKeyRegistrationCommandInput, type UpdateKeyRegistrationCommandOutput } from "./commands/UpdateKeyRegistrationCommand";
|
|
218
|
+
import { type UpdateOAuthClientApplicationCommandInput, type UpdateOAuthClientApplicationCommandOutput } from "./commands/UpdateOAuthClientApplicationCommand";
|
|
214
219
|
import { type UpdatePublicSharingSettingsCommandInput, type UpdatePublicSharingSettingsCommandOutput } from "./commands/UpdatePublicSharingSettingsCommand";
|
|
215
220
|
import { type UpdateQPersonalizationConfigurationCommandInput, type UpdateQPersonalizationConfigurationCommandOutput } from "./commands/UpdateQPersonalizationConfigurationCommand";
|
|
216
221
|
import { type UpdateQuickSightQSearchConfigurationCommandInput, type UpdateQuickSightQSearchConfigurationCommandOutput } from "./commands/UpdateQuickSightQSearchConfigurationCommand";
|
|
@@ -347,6 +352,12 @@ export interface QuickSight {
|
|
|
347
352
|
createNamespace(args: CreateNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateNamespaceCommandOutput>;
|
|
348
353
|
createNamespace(args: CreateNamespaceCommandInput, cb: (err: any, data?: CreateNamespaceCommandOutput) => void): void;
|
|
349
354
|
createNamespace(args: CreateNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNamespaceCommandOutput) => void): void;
|
|
355
|
+
/**
|
|
356
|
+
* @see {@link CreateOAuthClientApplicationCommand}
|
|
357
|
+
*/
|
|
358
|
+
createOAuthClientApplication(args: CreateOAuthClientApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateOAuthClientApplicationCommandOutput>;
|
|
359
|
+
createOAuthClientApplication(args: CreateOAuthClientApplicationCommandInput, cb: (err: any, data?: CreateOAuthClientApplicationCommandOutput) => void): void;
|
|
360
|
+
createOAuthClientApplication(args: CreateOAuthClientApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOAuthClientApplicationCommandOutput) => void): void;
|
|
350
361
|
/**
|
|
351
362
|
* @see {@link CreateRefreshScheduleCommand}
|
|
352
363
|
*/
|
|
@@ -521,6 +532,12 @@ export interface QuickSight {
|
|
|
521
532
|
deleteNamespace(args: DeleteNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNamespaceCommandOutput>;
|
|
522
533
|
deleteNamespace(args: DeleteNamespaceCommandInput, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
523
534
|
deleteNamespace(args: DeleteNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
535
|
+
/**
|
|
536
|
+
* @see {@link DeleteOAuthClientApplicationCommand}
|
|
537
|
+
*/
|
|
538
|
+
deleteOAuthClientApplication(args: DeleteOAuthClientApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOAuthClientApplicationCommandOutput>;
|
|
539
|
+
deleteOAuthClientApplication(args: DeleteOAuthClientApplicationCommandInput, cb: (err: any, data?: DeleteOAuthClientApplicationCommandOutput) => void): void;
|
|
540
|
+
deleteOAuthClientApplication(args: DeleteOAuthClientApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOAuthClientApplicationCommandOutput) => void): void;
|
|
524
541
|
/**
|
|
525
542
|
* @see {@link DeleteRefreshScheduleCommand}
|
|
526
543
|
*/
|
|
@@ -827,6 +844,12 @@ export interface QuickSight {
|
|
|
827
844
|
describeNamespace(args: DescribeNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNamespaceCommandOutput>;
|
|
828
845
|
describeNamespace(args: DescribeNamespaceCommandInput, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
|
|
829
846
|
describeNamespace(args: DescribeNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
|
|
847
|
+
/**
|
|
848
|
+
* @see {@link DescribeOAuthClientApplicationCommand}
|
|
849
|
+
*/
|
|
850
|
+
describeOAuthClientApplication(args: DescribeOAuthClientApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOAuthClientApplicationCommandOutput>;
|
|
851
|
+
describeOAuthClientApplication(args: DescribeOAuthClientApplicationCommandInput, cb: (err: any, data?: DescribeOAuthClientApplicationCommandOutput) => void): void;
|
|
852
|
+
describeOAuthClientApplication(args: DescribeOAuthClientApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOAuthClientApplicationCommandOutput) => void): void;
|
|
830
853
|
/**
|
|
831
854
|
* @see {@link DescribeQPersonalizationConfigurationCommand}
|
|
832
855
|
*/
|
|
@@ -1109,6 +1132,12 @@ export interface QuickSight {
|
|
|
1109
1132
|
listNamespaces(args: ListNamespacesCommandInput, options?: __HttpHandlerOptions): Promise<ListNamespacesCommandOutput>;
|
|
1110
1133
|
listNamespaces(args: ListNamespacesCommandInput, cb: (err: any, data?: ListNamespacesCommandOutput) => void): void;
|
|
1111
1134
|
listNamespaces(args: ListNamespacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNamespacesCommandOutput) => void): void;
|
|
1135
|
+
/**
|
|
1136
|
+
* @see {@link ListOAuthClientApplicationsCommand}
|
|
1137
|
+
*/
|
|
1138
|
+
listOAuthClientApplications(args: ListOAuthClientApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOAuthClientApplicationsCommandOutput>;
|
|
1139
|
+
listOAuthClientApplications(args: ListOAuthClientApplicationsCommandInput, cb: (err: any, data?: ListOAuthClientApplicationsCommandOutput) => void): void;
|
|
1140
|
+
listOAuthClientApplications(args: ListOAuthClientApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOAuthClientApplicationsCommandOutput) => void): void;
|
|
1112
1141
|
/**
|
|
1113
1142
|
* @see {@link ListRefreshSchedulesCommand}
|
|
1114
1143
|
*/
|
|
@@ -1505,6 +1534,12 @@ export interface QuickSight {
|
|
|
1505
1534
|
updateKeyRegistration(args: UpdateKeyRegistrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateKeyRegistrationCommandOutput>;
|
|
1506
1535
|
updateKeyRegistration(args: UpdateKeyRegistrationCommandInput, cb: (err: any, data?: UpdateKeyRegistrationCommandOutput) => void): void;
|
|
1507
1536
|
updateKeyRegistration(args: UpdateKeyRegistrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKeyRegistrationCommandOutput) => void): void;
|
|
1537
|
+
/**
|
|
1538
|
+
* @see {@link UpdateOAuthClientApplicationCommand}
|
|
1539
|
+
*/
|
|
1540
|
+
updateOAuthClientApplication(args: UpdateOAuthClientApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOAuthClientApplicationCommandOutput>;
|
|
1541
|
+
updateOAuthClientApplication(args: UpdateOAuthClientApplicationCommandInput, cb: (err: any, data?: UpdateOAuthClientApplicationCommandOutput) => void): void;
|
|
1542
|
+
updateOAuthClientApplication(args: UpdateOAuthClientApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOAuthClientApplicationCommandOutput) => void): void;
|
|
1508
1543
|
/**
|
|
1509
1544
|
* @see {@link UpdatePublicSharingSettingsCommand}
|
|
1510
1545
|
*/
|
|
@@ -1779,6 +1814,13 @@ export interface QuickSight {
|
|
|
1779
1814
|
* @returns AsyncIterable of {@link ListNamespacesCommandOutput}.
|
|
1780
1815
|
*/
|
|
1781
1816
|
paginateListNamespaces(args: ListNamespacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNamespacesCommandOutput>;
|
|
1817
|
+
/**
|
|
1818
|
+
* @see {@link ListOAuthClientApplicationsCommand}
|
|
1819
|
+
* @param args - command input.
|
|
1820
|
+
* @param paginationConfig - optional pagination config.
|
|
1821
|
+
* @returns AsyncIterable of {@link ListOAuthClientApplicationsCommandOutput}.
|
|
1822
|
+
*/
|
|
1823
|
+
paginateListOAuthClientApplications(args: ListOAuthClientApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOAuthClientApplicationsCommandOutput>;
|
|
1782
1824
|
/**
|
|
1783
1825
|
* @see {@link ListRoleMembershipsCommand}
|
|
1784
1826
|
* @param args - command input.
|