@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.
Files changed (63) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +78 -0
  3. package/dist-cjs/schemas/schemas_0.js +140 -35
  4. package/dist-es/QuickSight.js +12 -0
  5. package/dist-es/commands/CreateOAuthClientApplicationCommand.js +16 -0
  6. package/dist-es/commands/DeleteOAuthClientApplicationCommand.js +16 -0
  7. package/dist-es/commands/DescribeOAuthClientApplicationCommand.js +16 -0
  8. package/dist-es/commands/ListOAuthClientApplicationsCommand.js +16 -0
  9. package/dist-es/commands/UpdateOAuthClientApplicationCommand.js +16 -0
  10. package/dist-es/commands/index.js +5 -0
  11. package/dist-es/models/enums.js +3 -0
  12. package/dist-es/pagination/ListOAuthClientApplicationsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +109 -4
  15. package/dist-types/QuickSight.d.ts +42 -0
  16. package/dist-types/QuickSightClient.d.ts +7 -2
  17. package/dist-types/commands/CreateOAuthClientApplicationCommand.d.ts +125 -0
  18. package/dist-types/commands/DeleteOAuthClientApplicationCommand.d.ts +101 -0
  19. package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +2 -1
  20. package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +1 -2
  21. package/dist-types/commands/DescribeOAuthClientApplicationCommand.d.ts +111 -0
  22. package/dist-types/commands/ListOAuthClientApplicationsCommand.d.ts +115 -0
  23. package/dist-types/commands/UpdateOAuthClientApplicationCommand.d.ts +115 -0
  24. package/dist-types/commands/UpdateRoleCustomPermissionCommand.d.ts +2 -1
  25. package/dist-types/commands/UpdateSPICECapacityConfigurationCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateSelfUpgradeCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateTemplateAliasCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateTemplateCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateTemplatePermissionsCommand.d.ts +1 -2
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/models/enums.d.ts +11 -0
  33. package/dist-types/models/models_3.d.ts +136 -99
  34. package/dist-types/models/models_4.d.ts +356 -282
  35. package/dist-types/models/models_5.d.ts +300 -4
  36. package/dist-types/pagination/ListOAuthClientApplicationsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/index.d.ts +1 -0
  38. package/dist-types/schemas/schemas_0.d.ts +17 -0
  39. package/dist-types/ts3.4/QuickSight.d.ts +92 -0
  40. package/dist-types/ts3.4/QuickSightClient.d.ts +30 -0
  41. package/dist-types/ts3.4/commands/CreateOAuthClientApplicationCommand.d.ts +53 -0
  42. package/dist-types/ts3.4/commands/DeleteOAuthClientApplicationCommand.d.ts +53 -0
  43. package/dist-types/ts3.4/commands/DescribeIpRestrictionCommand.d.ts +2 -4
  44. package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +4 -2
  45. package/dist-types/ts3.4/commands/DescribeOAuthClientApplicationCommand.d.ts +53 -0
  46. package/dist-types/ts3.4/commands/ListOAuthClientApplicationsCommand.d.ts +53 -0
  47. package/dist-types/ts3.4/commands/UpdateOAuthClientApplicationCommand.d.ts +53 -0
  48. package/dist-types/ts3.4/commands/UpdateRoleCustomPermissionCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/commands/UpdateSPICECapacityConfigurationCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/UpdateSelfUpgradeCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/UpdateTemplateAliasCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/UpdateTemplatePermissionsCommand.d.ts +4 -2
  55. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  56. package/dist-types/ts3.4/models/enums.d.ts +5 -0
  57. package/dist-types/ts3.4/models/models_3.d.ts +32 -22
  58. package/dist-types/ts3.4/models/models_4.d.ts +86 -71
  59. package/dist-types/ts3.4/models/models_5.d.ts +79 -2
  60. package/dist-types/ts3.4/pagination/ListOAuthClientApplicationsPaginator.d.ts +11 -0
  61. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  62. package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
  63. package/package.json +6 -6
@@ -1,7 +1,303 @@
1
- import type { ResourceStatus, UserRole, VisualRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./enums";
2
- import type { ResourcePermission, TopicIR, TopicTemplate } from "./models_2";
3
- import type { CustomInstructions, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule } from "./models_3";
4
- import type { User } from "./models_4";
1
+ import type { PurchaseMode, ResourceStatus, SelfUpgradeAdminAction, SelfUpgradeStatus, UserRole, VisualRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./enums";
2
+ import type { ResourcePermission, TopicIR, TopicTemplate, ValidationStrategy } from "./models_2";
3
+ import type { CustomInstructions, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule } from "./models_3";
4
+ import type { SelfUpgradeRequestDetail, User } from "./models_4";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface UpdateRoleCustomPermissionResponse {
9
+ /**
10
+ * <p>The Amazon Web Services request ID for this operation.</p>
11
+ * @public
12
+ */
13
+ RequestId?: string | undefined;
14
+ /**
15
+ * <p>The HTTP status of the request.</p>
16
+ * @public
17
+ */
18
+ Status?: number | undefined;
19
+ }
20
+ /**
21
+ * @public
22
+ */
23
+ export interface UpdateSelfUpgradeRequest {
24
+ /**
25
+ * <p>The ID of the Amazon Web Services account that contains the self-upgrade request.</p>
26
+ * @public
27
+ */
28
+ AwsAccountId: string | undefined;
29
+ /**
30
+ * <p>The Quick namespace for the self-upgrade request.</p>
31
+ * @public
32
+ */
33
+ Namespace: string | undefined;
34
+ /**
35
+ * <p>The ID of the self-upgrade request to update.</p>
36
+ * @public
37
+ */
38
+ UpgradeRequestId: string | undefined;
39
+ /**
40
+ * <p>The action to perform on the self-upgrade request. Valid values are <code>APPROVE</code>, <code>DENY</code>, or <code>VERIFY</code>.</p>
41
+ * @public
42
+ */
43
+ Action: SelfUpgradeAdminAction | undefined;
44
+ }
45
+ /**
46
+ * @public
47
+ */
48
+ export interface UpdateSelfUpgradeResponse {
49
+ /**
50
+ * <p>Details of the updated self-upgrade request.</p>
51
+ * @public
52
+ */
53
+ SelfUpgradeRequestDetail?: SelfUpgradeRequestDetail | undefined;
54
+ /**
55
+ * <p>The Amazon Web Services request ID for this operation.</p>
56
+ * @public
57
+ */
58
+ RequestId?: string | undefined;
59
+ /**
60
+ * <p>The HTTP status of the request.</p>
61
+ * @public
62
+ */
63
+ Status?: number | undefined;
64
+ }
65
+ /**
66
+ * @public
67
+ */
68
+ export interface UpdateSelfUpgradeConfigurationRequest {
69
+ /**
70
+ * <p>The ID of the Amazon Web Services account that contains the Quick self-upgrade configuration that you want to update.</p>
71
+ * @public
72
+ */
73
+ AwsAccountId: string | undefined;
74
+ /**
75
+ * <p>The Quick namespace that you want to update the Quick self-upgrade configuration for.</p>
76
+ * @public
77
+ */
78
+ Namespace: string | undefined;
79
+ /**
80
+ * <p>The self-upgrade status that you want to set for the Quick account.</p>
81
+ * @public
82
+ */
83
+ SelfUpgradeStatus: SelfUpgradeStatus | undefined;
84
+ }
85
+ /**
86
+ * @public
87
+ */
88
+ export interface UpdateSelfUpgradeConfigurationResponse {
89
+ /**
90
+ * <p>The Amazon Web Services request ID for this operation.</p>
91
+ * @public
92
+ */
93
+ RequestId?: string | undefined;
94
+ /**
95
+ * <p>The HTTP status of the request.</p>
96
+ * @public
97
+ */
98
+ Status?: number | undefined;
99
+ }
100
+ /**
101
+ * @public
102
+ */
103
+ export interface UpdateSPICECapacityConfigurationRequest {
104
+ /**
105
+ * <p>The ID of the Amazon Web Services account that contains the SPICE configuration that you want to update.</p>
106
+ * @public
107
+ */
108
+ AwsAccountId: string | undefined;
109
+ /**
110
+ * <p>Determines how SPICE capacity can be purchased. The following options are available. </p>
111
+ * <ul>
112
+ * <li>
113
+ * <p>
114
+ * <code>MANUAL</code>: SPICE capacity can only be purchased manually.</p>
115
+ * </li>
116
+ * <li>
117
+ * <p>
118
+ * <code>AUTO_PURCHASE</code>: Extra SPICE capacity is automatically purchased on your behalf as needed. SPICE capacity can also be purchased manually with this option.</p>
119
+ * </li>
120
+ * </ul>
121
+ * @public
122
+ */
123
+ PurchaseMode: PurchaseMode | undefined;
124
+ }
125
+ /**
126
+ * @public
127
+ */
128
+ export interface UpdateSPICECapacityConfigurationResponse {
129
+ /**
130
+ * <p>The Amazon Web Services request ID for this operation.</p>
131
+ * @public
132
+ */
133
+ RequestId?: string | undefined;
134
+ /**
135
+ * <p>The HTTP status of the request.</p>
136
+ * @public
137
+ */
138
+ Status?: number | undefined;
139
+ }
140
+ /**
141
+ * @public
142
+ */
143
+ export interface UpdateTemplateRequest {
144
+ /**
145
+ * <p>The ID of the Amazon Web Services account that contains the template that you're updating.</p>
146
+ * @public
147
+ */
148
+ AwsAccountId: string | undefined;
149
+ /**
150
+ * <p>The ID for the template.</p>
151
+ * @public
152
+ */
153
+ TemplateId: string | undefined;
154
+ /**
155
+ * <p>The entity that you are using as a source when you update the template. In
156
+ * <code>SourceEntity</code>, you specify the type of object you're using as source:
157
+ * <code>SourceTemplate</code> for a template or <code>SourceAnalysis</code> for an
158
+ * analysis. Both of these require an Amazon Resource Name (ARN). For
159
+ * <code>SourceTemplate</code>, specify the ARN of the source template. For
160
+ * <code>SourceAnalysis</code>, specify the ARN of the source analysis. The <code>SourceTemplate</code>
161
+ * ARN can contain any Amazon Web Services account and any Quick Sight-supported Amazon Web Services Region;. </p>
162
+ * <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> or
163
+ * <code>SourceAnalysis</code> to list the replacement datasets for the placeholders listed
164
+ * in the original. The schema in each dataset must match its placeholder. </p>
165
+ * @public
166
+ */
167
+ SourceEntity?: TemplateSourceEntity | undefined;
168
+ /**
169
+ * <p>A description of the current template version that is being updated. Every time you call
170
+ * <code>UpdateTemplate</code>, you create a new version of the template. Each version
171
+ * of the template maintains a description of the version in the
172
+ * <code>VersionDescription</code> field.</p>
173
+ * @public
174
+ */
175
+ VersionDescription?: string | undefined;
176
+ /**
177
+ * <p>The name for the template.</p>
178
+ * @public
179
+ */
180
+ Name?: string | undefined;
181
+ /**
182
+ * <p>The definition of a template.</p>
183
+ * <p>A definition is the data model of all features in a Dashboard, Template, or Analysis.</p>
184
+ * @public
185
+ */
186
+ Definition?: TemplateVersionDefinition | undefined;
187
+ /**
188
+ * <p>The option to relax the validation needed to update a template with definition objects. This skips the validation step for specific errors.</p>
189
+ * @public
190
+ */
191
+ ValidationStrategy?: ValidationStrategy | undefined;
192
+ }
193
+ /**
194
+ * @public
195
+ */
196
+ export interface UpdateTemplateResponse {
197
+ /**
198
+ * <p>The ID for the template.</p>
199
+ * @public
200
+ */
201
+ TemplateId?: string | undefined;
202
+ /**
203
+ * <p>The Amazon Resource Name (ARN) for the template.</p>
204
+ * @public
205
+ */
206
+ Arn?: string | undefined;
207
+ /**
208
+ * <p>The ARN for the template, including the version information of the first version.</p>
209
+ * @public
210
+ */
211
+ VersionArn?: string | undefined;
212
+ /**
213
+ * <p>The creation status of the template.</p>
214
+ * @public
215
+ */
216
+ CreationStatus?: ResourceStatus | undefined;
217
+ /**
218
+ * <p>The HTTP status of the request.</p>
219
+ * @public
220
+ */
221
+ Status?: number | undefined;
222
+ /**
223
+ * <p>The Amazon Web Services request ID for this operation.</p>
224
+ * @public
225
+ */
226
+ RequestId?: string | undefined;
227
+ }
228
+ /**
229
+ * @public
230
+ */
231
+ export interface UpdateTemplateAliasRequest {
232
+ /**
233
+ * <p>The ID of the Amazon Web Services account that contains the template alias that you're updating.</p>
234
+ * @public
235
+ */
236
+ AwsAccountId: string | undefined;
237
+ /**
238
+ * <p>The ID for the template.</p>
239
+ * @public
240
+ */
241
+ TemplateId: string | undefined;
242
+ /**
243
+ * <p>The alias of the template that you want to update. If you name a specific alias, you update
244
+ * the version that the alias points to. You can specify the latest version of the template
245
+ * by providing the keyword <code>$LATEST</code> in the <code>AliasName</code> parameter.
246
+ * The keyword <code>$PUBLISHED</code> doesn't apply to templates.</p>
247
+ * @public
248
+ */
249
+ AliasName: string | undefined;
250
+ /**
251
+ * <p>The version number of the template.</p>
252
+ * @public
253
+ */
254
+ TemplateVersionNumber: number | undefined;
255
+ }
256
+ /**
257
+ * @public
258
+ */
259
+ export interface UpdateTemplateAliasResponse {
260
+ /**
261
+ * <p>The template alias.</p>
262
+ * @public
263
+ */
264
+ TemplateAlias?: TemplateAlias | undefined;
265
+ /**
266
+ * <p>The HTTP status of the request.</p>
267
+ * @public
268
+ */
269
+ Status?: number | undefined;
270
+ /**
271
+ * <p>The Amazon Web Services request ID for this operation.</p>
272
+ * @public
273
+ */
274
+ RequestId?: string | undefined;
275
+ }
276
+ /**
277
+ * @public
278
+ */
279
+ export interface UpdateTemplatePermissionsRequest {
280
+ /**
281
+ * <p>The ID of the Amazon Web Services account that contains the template.</p>
282
+ * @public
283
+ */
284
+ AwsAccountId: string | undefined;
285
+ /**
286
+ * <p>The ID for the template.</p>
287
+ * @public
288
+ */
289
+ TemplateId: string | undefined;
290
+ /**
291
+ * <p>A list of resource permissions to be granted on the template. </p>
292
+ * @public
293
+ */
294
+ GrantPermissions?: ResourcePermission[] | undefined;
295
+ /**
296
+ * <p>A list of resource permissions to be revoked from the template. </p>
297
+ * @public
298
+ */
299
+ RevokePermissions?: ResourcePermission[] | undefined;
300
+ }
5
301
  /**
6
302
  * @public
7
303
  */
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListOAuthClientApplicationsCommandInput, ListOAuthClientApplicationsCommandOutput } from "../commands/ListOAuthClientApplicationsCommand";
3
+ import type { QuickSightPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListOAuthClientApplications: (config: QuickSightPaginationConfiguration, input: ListOAuthClientApplicationsCommandInput, ...rest: any[]) => Paginator<ListOAuthClientApplicationsCommandOutput>;
@@ -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";
@@ -288,6 +288,8 @@ export declare var CreateIngestionRequest$: StaticStructureSchema;
288
288
  export declare var CreateIngestionResponse$: StaticStructureSchema;
289
289
  export declare var CreateNamespaceRequest$: StaticStructureSchema;
290
290
  export declare var CreateNamespaceResponse$: StaticStructureSchema;
291
+ export declare var CreateOAuthClientApplicationRequest$: StaticStructureSchema;
292
+ export declare var CreateOAuthClientApplicationResponse$: StaticStructureSchema;
291
293
  export declare var CreateRefreshScheduleRequest$: StaticStructureSchema;
292
294
  export declare var CreateRefreshScheduleResponse$: StaticStructureSchema;
293
295
  export declare var CreateRoleMembershipRequest$: StaticStructureSchema;
@@ -476,6 +478,8 @@ export declare var DeleteIdentityPropagationConfigRequest$: StaticStructureSchem
476
478
  export declare var DeleteIdentityPropagationConfigResponse$: StaticStructureSchema;
477
479
  export declare var DeleteNamespaceRequest$: StaticStructureSchema;
478
480
  export declare var DeleteNamespaceResponse$: StaticStructureSchema;
481
+ export declare var DeleteOAuthClientApplicationRequest$: StaticStructureSchema;
482
+ export declare var DeleteOAuthClientApplicationResponse$: StaticStructureSchema;
479
483
  export declare var DeleteRefreshScheduleRequest$: StaticStructureSchema;
480
484
  export declare var DeleteRefreshScheduleResponse$: StaticStructureSchema;
481
485
  export declare var DeleteRoleCustomPermissionRequest$: StaticStructureSchema;
@@ -578,6 +582,8 @@ export declare var DescribeKeyRegistrationRequest$: StaticStructureSchema;
578
582
  export declare var DescribeKeyRegistrationResponse$: StaticStructureSchema;
579
583
  export declare var DescribeNamespaceRequest$: StaticStructureSchema;
580
584
  export declare var DescribeNamespaceResponse$: StaticStructureSchema;
585
+ export declare var DescribeOAuthClientApplicationRequest$: StaticStructureSchema;
586
+ export declare var DescribeOAuthClientApplicationResponse$: StaticStructureSchema;
581
587
  export declare var DescribeQPersonalizationConfigurationRequest$: StaticStructureSchema;
582
588
  export declare var DescribeQPersonalizationConfigurationResponse$: StaticStructureSchema;
583
589
  export declare var DescribeQuickSightQSearchConfigurationRequest$: StaticStructureSchema;
@@ -907,6 +913,8 @@ export declare var ListIngestionsRequest$: StaticStructureSchema;
907
913
  export declare var ListIngestionsResponse$: StaticStructureSchema;
908
914
  export declare var ListNamespacesRequest$: StaticStructureSchema;
909
915
  export declare var ListNamespacesResponse$: StaticStructureSchema;
916
+ export declare var ListOAuthClientApplicationsRequest$: StaticStructureSchema;
917
+ export declare var ListOAuthClientApplicationsResponse$: StaticStructureSchema;
910
918
  export declare var ListRefreshSchedulesRequest$: StaticStructureSchema;
911
919
  export declare var ListRefreshSchedulesResponse$: StaticStructureSchema;
912
920
  export declare var ListRoleMembershipsRequest$: StaticStructureSchema;
@@ -986,6 +994,8 @@ export declare var NumericFormatConfiguration$: StaticStructureSchema;
986
994
  export declare var NumericRangeFilter$: StaticStructureSchema;
987
995
  export declare var NumericRangeFilterValue$: StaticStructureSchema;
988
996
  export declare var NumericSeparatorConfiguration$: StaticStructureSchema;
997
+ export declare var OAuthClientApplication$: StaticStructureSchema;
998
+ export declare var OAuthClientApplicationSummary$: StaticStructureSchema;
989
999
  export declare var OAuthClientCredentials$: StaticStructureSchema;
990
1000
  export declare var OAuthParameters$: StaticStructureSchema;
991
1001
  export declare var OracleParameters$: StaticStructureSchema;
@@ -1459,6 +1469,8 @@ export declare var UpdateIpRestrictionRequest$: StaticStructureSchema;
1459
1469
  export declare var UpdateIpRestrictionResponse$: StaticStructureSchema;
1460
1470
  export declare var UpdateKeyRegistrationRequest$: StaticStructureSchema;
1461
1471
  export declare var UpdateKeyRegistrationResponse$: StaticStructureSchema;
1472
+ export declare var UpdateOAuthClientApplicationRequest$: StaticStructureSchema;
1473
+ export declare var UpdateOAuthClientApplicationResponse$: StaticStructureSchema;
1462
1474
  export declare var UpdatePublicSharingSettingsRequest$: StaticStructureSchema;
1463
1475
  export declare var UpdatePublicSharingSettingsResponse$: StaticStructureSchema;
1464
1476
  export declare var UpdateQPersonalizationConfigurationRequest$: StaticStructureSchema;
@@ -1573,6 +1585,7 @@ export declare var CreateGroupMembership$: StaticOperationSchema;
1573
1585
  export declare var CreateIAMPolicyAssignment$: StaticOperationSchema;
1574
1586
  export declare var CreateIngestion$: StaticOperationSchema;
1575
1587
  export declare var CreateNamespace$: StaticOperationSchema;
1588
+ export declare var CreateOAuthClientApplication$: StaticOperationSchema;
1576
1589
  export declare var CreateRefreshSchedule$: StaticOperationSchema;
1577
1590
  export declare var CreateRoleMembership$: StaticOperationSchema;
1578
1591
  export declare var CreateTemplate$: StaticOperationSchema;
@@ -1602,6 +1615,7 @@ export declare var DeleteGroupMembership$: StaticOperationSchema;
1602
1615
  export declare var DeleteIAMPolicyAssignment$: StaticOperationSchema;
1603
1616
  export declare var DeleteIdentityPropagationConfig$: StaticOperationSchema;
1604
1617
  export declare var DeleteNamespace$: StaticOperationSchema;
1618
+ export declare var DeleteOAuthClientApplication$: StaticOperationSchema;
1605
1619
  export declare var DeleteRefreshSchedule$: StaticOperationSchema;
1606
1620
  export declare var DeleteRoleCustomPermission$: StaticOperationSchema;
1607
1621
  export declare var DeleteRoleMembership$: StaticOperationSchema;
@@ -1653,6 +1667,7 @@ export declare var DescribeIngestion$: StaticOperationSchema;
1653
1667
  export declare var DescribeIpRestriction$: StaticOperationSchema;
1654
1668
  export declare var DescribeKeyRegistration$: StaticOperationSchema;
1655
1669
  export declare var DescribeNamespace$: StaticOperationSchema;
1670
+ export declare var DescribeOAuthClientApplication$: StaticOperationSchema;
1656
1671
  export declare var DescribeQPersonalizationConfiguration$: StaticOperationSchema;
1657
1672
  export declare var DescribeQuickSightQSearchConfiguration$: StaticOperationSchema;
1658
1673
  export declare var DescribeRefreshSchedule$: StaticOperationSchema;
@@ -1700,6 +1715,7 @@ export declare var ListIAMPolicyAssignmentsForUser$: StaticOperationSchema;
1700
1715
  export declare var ListIdentityPropagationConfigs$: StaticOperationSchema;
1701
1716
  export declare var ListIngestions$: StaticOperationSchema;
1702
1717
  export declare var ListNamespaces$: StaticOperationSchema;
1718
+ export declare var ListOAuthClientApplications$: StaticOperationSchema;
1703
1719
  export declare var ListRefreshSchedules$: StaticOperationSchema;
1704
1720
  export declare var ListRoleMemberships$: StaticOperationSchema;
1705
1721
  export declare var ListSelfUpgrades$: StaticOperationSchema;
@@ -1766,6 +1782,7 @@ export declare var UpdateIAMPolicyAssignment$: StaticOperationSchema;
1766
1782
  export declare var UpdateIdentityPropagationConfig$: StaticOperationSchema;
1767
1783
  export declare var UpdateIpRestriction$: StaticOperationSchema;
1768
1784
  export declare var UpdateKeyRegistration$: StaticOperationSchema;
1785
+ export declare var UpdateOAuthClientApplication$: StaticOperationSchema;
1769
1786
  export declare var UpdatePublicSharingSettings$: StaticOperationSchema;
1770
1787
  export declare var UpdateQPersonalizationConfiguration$: StaticOperationSchema;
1771
1788
  export declare var UpdateQuickSightQSearchConfiguration$: StaticOperationSchema;
@@ -79,6 +79,10 @@ import {
79
79
  CreateNamespaceCommandInput,
80
80
  CreateNamespaceCommandOutput,
81
81
  } from "./commands/CreateNamespaceCommand";
82
+ import {
83
+ CreateOAuthClientApplicationCommandInput,
84
+ CreateOAuthClientApplicationCommandOutput,
85
+ } from "./commands/CreateOAuthClientApplicationCommand";
82
86
  import {
83
87
  CreateRefreshScheduleCommandInput,
84
88
  CreateRefreshScheduleCommandOutput,
@@ -195,6 +199,10 @@ import {
195
199
  DeleteNamespaceCommandInput,
196
200
  DeleteNamespaceCommandOutput,
197
201
  } from "./commands/DeleteNamespaceCommand";
202
+ import {
203
+ DeleteOAuthClientApplicationCommandInput,
204
+ DeleteOAuthClientApplicationCommandOutput,
205
+ } from "./commands/DeleteOAuthClientApplicationCommand";
198
206
  import {
199
207
  DeleteRefreshScheduleCommandInput,
200
208
  DeleteRefreshScheduleCommandOutput,
@@ -399,6 +407,10 @@ import {
399
407
  DescribeNamespaceCommandInput,
400
408
  DescribeNamespaceCommandOutput,
401
409
  } from "./commands/DescribeNamespaceCommand";
410
+ import {
411
+ DescribeOAuthClientApplicationCommandInput,
412
+ DescribeOAuthClientApplicationCommandOutput,
413
+ } from "./commands/DescribeOAuthClientApplicationCommand";
402
414
  import {
403
415
  DescribeQPersonalizationConfigurationCommandInput,
404
416
  DescribeQPersonalizationConfigurationCommandOutput,
@@ -587,6 +599,10 @@ import {
587
599
  ListNamespacesCommandInput,
588
600
  ListNamespacesCommandOutput,
589
601
  } from "./commands/ListNamespacesCommand";
602
+ import {
603
+ ListOAuthClientApplicationsCommandInput,
604
+ ListOAuthClientApplicationsCommandOutput,
605
+ } from "./commands/ListOAuthClientApplicationsCommand";
590
606
  import {
591
607
  ListRefreshSchedulesCommandInput,
592
608
  ListRefreshSchedulesCommandOutput,
@@ -851,6 +867,10 @@ import {
851
867
  UpdateKeyRegistrationCommandInput,
852
868
  UpdateKeyRegistrationCommandOutput,
853
869
  } from "./commands/UpdateKeyRegistrationCommand";
870
+ import {
871
+ UpdateOAuthClientApplicationCommandInput,
872
+ UpdateOAuthClientApplicationCommandOutput,
873
+ } from "./commands/UpdateOAuthClientApplicationCommand";
854
874
  import {
855
875
  UpdatePublicSharingSettingsCommandInput,
856
876
  UpdatePublicSharingSettingsCommandOutput,
@@ -1180,6 +1200,19 @@ export interface QuickSight {
1180
1200
  options: __HttpHandlerOptions,
1181
1201
  cb: (err: any, data?: CreateNamespaceCommandOutput) => void
1182
1202
  ): void;
1203
+ createOAuthClientApplication(
1204
+ args: CreateOAuthClientApplicationCommandInput,
1205
+ options?: __HttpHandlerOptions
1206
+ ): Promise<CreateOAuthClientApplicationCommandOutput>;
1207
+ createOAuthClientApplication(
1208
+ args: CreateOAuthClientApplicationCommandInput,
1209
+ cb: (err: any, data?: CreateOAuthClientApplicationCommandOutput) => void
1210
+ ): void;
1211
+ createOAuthClientApplication(
1212
+ args: CreateOAuthClientApplicationCommandInput,
1213
+ options: __HttpHandlerOptions,
1214
+ cb: (err: any, data?: CreateOAuthClientApplicationCommandOutput) => void
1215
+ ): void;
1183
1216
  createRefreshSchedule(
1184
1217
  args: CreateRefreshScheduleCommandInput,
1185
1218
  options?: __HttpHandlerOptions
@@ -1563,6 +1596,19 @@ export interface QuickSight {
1563
1596
  options: __HttpHandlerOptions,
1564
1597
  cb: (err: any, data?: DeleteNamespaceCommandOutput) => void
1565
1598
  ): void;
1599
+ deleteOAuthClientApplication(
1600
+ args: DeleteOAuthClientApplicationCommandInput,
1601
+ options?: __HttpHandlerOptions
1602
+ ): Promise<DeleteOAuthClientApplicationCommandOutput>;
1603
+ deleteOAuthClientApplication(
1604
+ args: DeleteOAuthClientApplicationCommandInput,
1605
+ cb: (err: any, data?: DeleteOAuthClientApplicationCommandOutput) => void
1606
+ ): void;
1607
+ deleteOAuthClientApplication(
1608
+ args: DeleteOAuthClientApplicationCommandInput,
1609
+ options: __HttpHandlerOptions,
1610
+ cb: (err: any, data?: DeleteOAuthClientApplicationCommandOutput) => void
1611
+ ): void;
1566
1612
  deleteRefreshSchedule(
1567
1613
  args: DeleteRefreshScheduleCommandInput,
1568
1614
  options?: __HttpHandlerOptions
@@ -2256,6 +2302,19 @@ export interface QuickSight {
2256
2302
  options: __HttpHandlerOptions,
2257
2303
  cb: (err: any, data?: DescribeNamespaceCommandOutput) => void
2258
2304
  ): void;
2305
+ describeOAuthClientApplication(
2306
+ args: DescribeOAuthClientApplicationCommandInput,
2307
+ options?: __HttpHandlerOptions
2308
+ ): Promise<DescribeOAuthClientApplicationCommandOutput>;
2309
+ describeOAuthClientApplication(
2310
+ args: DescribeOAuthClientApplicationCommandInput,
2311
+ cb: (err: any, data?: DescribeOAuthClientApplicationCommandOutput) => void
2312
+ ): void;
2313
+ describeOAuthClientApplication(
2314
+ args: DescribeOAuthClientApplicationCommandInput,
2315
+ options: __HttpHandlerOptions,
2316
+ cb: (err: any, data?: DescribeOAuthClientApplicationCommandOutput) => void
2317
+ ): void;
2259
2318
  describeQPersonalizationConfiguration(
2260
2319
  args: DescribeQPersonalizationConfigurationCommandInput,
2261
2320
  options?: __HttpHandlerOptions
@@ -2891,6 +2950,19 @@ export interface QuickSight {
2891
2950
  options: __HttpHandlerOptions,
2892
2951
  cb: (err: any, data?: ListNamespacesCommandOutput) => void
2893
2952
  ): void;
2953
+ listOAuthClientApplications(
2954
+ args: ListOAuthClientApplicationsCommandInput,
2955
+ options?: __HttpHandlerOptions
2956
+ ): Promise<ListOAuthClientApplicationsCommandOutput>;
2957
+ listOAuthClientApplications(
2958
+ args: ListOAuthClientApplicationsCommandInput,
2959
+ cb: (err: any, data?: ListOAuthClientApplicationsCommandOutput) => void
2960
+ ): void;
2961
+ listOAuthClientApplications(
2962
+ args: ListOAuthClientApplicationsCommandInput,
2963
+ options: __HttpHandlerOptions,
2964
+ cb: (err: any, data?: ListOAuthClientApplicationsCommandOutput) => void
2965
+ ): void;
2894
2966
  listRefreshSchedules(
2895
2967
  args: ListRefreshSchedulesCommandInput,
2896
2968
  options?: __HttpHandlerOptions
@@ -3767,6 +3839,19 @@ export interface QuickSight {
3767
3839
  options: __HttpHandlerOptions,
3768
3840
  cb: (err: any, data?: UpdateKeyRegistrationCommandOutput) => void
3769
3841
  ): void;
3842
+ updateOAuthClientApplication(
3843
+ args: UpdateOAuthClientApplicationCommandInput,
3844
+ options?: __HttpHandlerOptions
3845
+ ): Promise<UpdateOAuthClientApplicationCommandOutput>;
3846
+ updateOAuthClientApplication(
3847
+ args: UpdateOAuthClientApplicationCommandInput,
3848
+ cb: (err: any, data?: UpdateOAuthClientApplicationCommandOutput) => void
3849
+ ): void;
3850
+ updateOAuthClientApplication(
3851
+ args: UpdateOAuthClientApplicationCommandInput,
3852
+ options: __HttpHandlerOptions,
3853
+ cb: (err: any, data?: UpdateOAuthClientApplicationCommandOutput) => void
3854
+ ): void;
3770
3855
  updatePublicSharingSettings(
3771
3856
  args: UpdatePublicSharingSettingsCommandInput,
3772
3857
  options?: __HttpHandlerOptions
@@ -4193,6 +4278,13 @@ export interface QuickSight {
4193
4278
  Exclude<keyof PaginationConfiguration, "client">
4194
4279
  >
4195
4280
  ): Paginator<ListNamespacesCommandOutput>;
4281
+ paginateListOAuthClientApplications(
4282
+ args: ListOAuthClientApplicationsCommandInput,
4283
+ paginationConfig?: Pick<
4284
+ PaginationConfiguration,
4285
+ Exclude<keyof PaginationConfiguration, "client">
4286
+ >
4287
+ ): Paginator<ListOAuthClientApplicationsCommandOutput>;
4196
4288
  paginateListRoleMemberships(
4197
4289
  args: ListRoleMembershipsCommandInput,
4198
4290
  paginationConfig?: Pick<