@aws-sdk/client-quicksight 3.577.0 → 3.582.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 +16 -0
- package/dist-cjs/index.js +103 -0
- package/dist-es/QuickSight.js +4 -0
- package/dist-es/commands/DescribeKeyRegistrationCommand.js +24 -0
- package/dist-es/commands/UpdateKeyRegistrationCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +61 -0
- package/dist-types/QuickSight.d.ts +14 -0
- package/dist-types/QuickSightClient.d.ts +4 -2
- package/dist-types/commands/CreateDataSourceCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +2 -2
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +83 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +4 -3
- package/dist-types/commands/ListFolderMembersCommand.d.ts +1 -1
- package/dist-types/commands/ListFoldersCommand.d.ts +1 -2
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateKeyRegistrationCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_2.d.ts +1 -1
- package/dist-types/models/models_3.d.ts +94 -96
- package/dist-types/models/models_4.d.ts +160 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/QuickSight.d.ts +34 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListFolderMembersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListFoldersCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateKeyRegistrationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_2.d.ts +1 -1
- package/dist-types/ts3.4/models/models_3.d.ts +20 -23
- package/dist-types/ts3.4/models/models_4.d.ts +40 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +11 -11
|
@@ -1,6 +1,101 @@
|
|
|
1
1
|
import { AccountCustomization, ActiveIAMPolicyAssignment, ResourceStatus } from "./models_0";
|
|
2
2
|
import { _Parameters, AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobValidationStrategy, AssetBundleImportFailureAction, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportSource, AssignmentStatus, AuthorizedTargetsByService, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, Group, GroupMember, LinkSharingConfiguration, LogicalTable, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, ServiceType, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ValidationStrategy, VpcConnectionProperties } from "./models_2";
|
|
3
|
-
import { DashboardSearchFilter, DashboardSummary, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSourceSearchFilter, DataSourceSummary, FolderSearchFilter, FolderSummary, GroupSearchFilter, IAMPolicyAssignmentSummary, IdentityType, Ingestion, NamespaceInfoV2, NetworkInterface, SessionTag, SnapshotConfiguration, ThemeAlias, ThemeConfiguration, ThemeType, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion, User, UserRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
3
|
+
import { DashboardSearchFilter, DashboardSummary, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceSearchFilter, DataSourceSummary, FailedKeyRegistrationEntry, FolderSearchFilter, FolderSummary, GroupSearchFilter, IAMPolicyAssignmentSummary, IdentityType, Ingestion, MemberIdArnPair, NamespaceInfoV2, NetworkInterface, RegisteredCustomerManagedKey, SessionTag, SnapshotConfiguration, ThemeAlias, ThemeConfiguration, ThemeType, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion, User, UserRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface ListDataSourcesResponse {
|
|
8
|
+
/**
|
|
9
|
+
* <p>A list of data sources.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
DataSources?: DataSource[];
|
|
13
|
+
/**
|
|
14
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
NextToken?: string;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
RequestId?: string;
|
|
23
|
+
/**
|
|
24
|
+
* <p>The HTTP status of the request.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
Status?: number;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export interface ListFolderMembersRequest {
|
|
33
|
+
/**
|
|
34
|
+
* <p>The ID for the Amazon Web Services account that contains the folder.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
AwsAccountId: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The ID of the folder.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
FolderId: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
NextToken?: string;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
MaxResults?: number;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export interface ListFolderMembersResponse {
|
|
58
|
+
/**
|
|
59
|
+
* <p>The HTTP status of the request.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
Status?: number;
|
|
63
|
+
/**
|
|
64
|
+
* <p>A structure that contains all of the folder members (dashboards, analyses, and datasets) in the folder.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
FolderMemberList?: MemberIdArnPair[];
|
|
68
|
+
/**
|
|
69
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
NextToken?: string;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
RequestId?: string;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export interface ListFoldersRequest {
|
|
83
|
+
/**
|
|
84
|
+
* <p>The ID for the Amazon Web Services account that contains the folder.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
AwsAccountId: string | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
NextToken?: string;
|
|
93
|
+
/**
|
|
94
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
MaxResults?: number;
|
|
98
|
+
}
|
|
4
99
|
/**
|
|
5
100
|
* @public
|
|
6
101
|
*/
|
|
@@ -1400,6 +1495,18 @@ export interface RegisterUserRequest {
|
|
|
1400
1495
|
* </li>
|
|
1401
1496
|
* <li>
|
|
1402
1497
|
* <p>
|
|
1498
|
+
* <code>READER_PRO</code>: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Amazon QuickSight, can build stories with Amazon Q, and can generate executive summaries from dashboards.</p>
|
|
1499
|
+
* </li>
|
|
1500
|
+
* <li>
|
|
1501
|
+
* <p>
|
|
1502
|
+
* <code>AUTHOR_PRO</code>: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&A, and generate executive summaries from dashboards.</p>
|
|
1503
|
+
* </li>
|
|
1504
|
+
* <li>
|
|
1505
|
+
* <p>
|
|
1506
|
+
* <code>ADMIN_PRO</code>: Admin Pros are Author Pros who can also manage Amazon QuickSight administrative settings. Admin Pro users are billed at Author Pro pricing.</p>
|
|
1507
|
+
* </li>
|
|
1508
|
+
* <li>
|
|
1509
|
+
* <p>
|
|
1403
1510
|
* <code>RESTRICTED_READER</code>: This role isn't currently available for
|
|
1404
1511
|
* use.</p>
|
|
1405
1512
|
* </li>
|
|
@@ -3398,6 +3505,57 @@ export interface UpdateIpRestrictionResponse {
|
|
|
3398
3505
|
*/
|
|
3399
3506
|
Status?: number;
|
|
3400
3507
|
}
|
|
3508
|
+
/**
|
|
3509
|
+
* @public
|
|
3510
|
+
*/
|
|
3511
|
+
export interface UpdateKeyRegistrationRequest {
|
|
3512
|
+
/**
|
|
3513
|
+
* <p>The ID of the Amazon Web Services account that contains the customer managed key registration that you want to update.</p>
|
|
3514
|
+
* @public
|
|
3515
|
+
*/
|
|
3516
|
+
AwsAccountId: string | undefined;
|
|
3517
|
+
/**
|
|
3518
|
+
* <p>A list of <code>RegisteredCustomerManagedKey</code> objects to be updated to the Amazon QuickSight account.</p>
|
|
3519
|
+
* @public
|
|
3520
|
+
*/
|
|
3521
|
+
KeyRegistration: RegisteredCustomerManagedKey[] | undefined;
|
|
3522
|
+
}
|
|
3523
|
+
/**
|
|
3524
|
+
* <p>A success entry that occurs when a <code>KeyRegistration</code> job is successfully applied to the Amazon QuickSight account.</p>
|
|
3525
|
+
* @public
|
|
3526
|
+
*/
|
|
3527
|
+
export interface SuccessfulKeyRegistrationEntry {
|
|
3528
|
+
/**
|
|
3529
|
+
* <p>The ARN of the KMS key that is associated with the <code>SuccessfulKeyRegistrationEntry</code> entry.</p>
|
|
3530
|
+
* @public
|
|
3531
|
+
*/
|
|
3532
|
+
KeyArn: string | undefined;
|
|
3533
|
+
/**
|
|
3534
|
+
* <p>The HTTP status of a <code>SuccessfulKeyRegistrationEntry</code> entry.</p>
|
|
3535
|
+
* @public
|
|
3536
|
+
*/
|
|
3537
|
+
StatusCode: number | undefined;
|
|
3538
|
+
}
|
|
3539
|
+
/**
|
|
3540
|
+
* @public
|
|
3541
|
+
*/
|
|
3542
|
+
export interface UpdateKeyRegistrationResponse {
|
|
3543
|
+
/**
|
|
3544
|
+
* <p>A list of all customer managed key registrations that failed to update.</p>
|
|
3545
|
+
* @public
|
|
3546
|
+
*/
|
|
3547
|
+
FailedKeyRegistration?: FailedKeyRegistrationEntry[];
|
|
3548
|
+
/**
|
|
3549
|
+
* <p>A list of all customer managed key registrations that were successfully updated.</p>
|
|
3550
|
+
* @public
|
|
3551
|
+
*/
|
|
3552
|
+
SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[];
|
|
3553
|
+
/**
|
|
3554
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
3555
|
+
* @public
|
|
3556
|
+
*/
|
|
3557
|
+
RequestId?: string;
|
|
3558
|
+
}
|
|
3401
3559
|
/**
|
|
3402
3560
|
* @public
|
|
3403
3561
|
*/
|
|
@@ -4125,7 +4283,7 @@ export interface UpdateUserRequest {
|
|
|
4125
4283
|
* </li>
|
|
4126
4284
|
* <li>
|
|
4127
4285
|
* <p>
|
|
4128
|
-
* <code>READER_PRO</code>: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q
|
|
4286
|
+
* <code>READER_PRO</code>: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Amazon QuickSight, can build stories with Amazon Q, and can generate executive summaries from dashboards.</p>
|
|
4129
4287
|
* </li>
|
|
4130
4288
|
* <li>
|
|
4131
4289
|
* <p>
|
|
@@ -75,6 +75,7 @@ import { DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutp
|
|
|
75
75
|
import { DescribeIAMPolicyAssignmentCommandInput, DescribeIAMPolicyAssignmentCommandOutput } from "../commands/DescribeIAMPolicyAssignmentCommand";
|
|
76
76
|
import { DescribeIngestionCommandInput, DescribeIngestionCommandOutput } from "../commands/DescribeIngestionCommand";
|
|
77
77
|
import { DescribeIpRestrictionCommandInput, DescribeIpRestrictionCommandOutput } from "../commands/DescribeIpRestrictionCommand";
|
|
78
|
+
import { DescribeKeyRegistrationCommandInput, DescribeKeyRegistrationCommandOutput } from "../commands/DescribeKeyRegistrationCommand";
|
|
78
79
|
import { DescribeNamespaceCommandInput, DescribeNamespaceCommandOutput } from "../commands/DescribeNamespaceCommand";
|
|
79
80
|
import { DescribeRefreshScheduleCommandInput, DescribeRefreshScheduleCommandOutput } from "../commands/DescribeRefreshScheduleCommand";
|
|
80
81
|
import { DescribeRoleCustomPermissionCommandInput, DescribeRoleCustomPermissionCommandOutput } from "../commands/DescribeRoleCustomPermissionCommand";
|
|
@@ -157,6 +158,7 @@ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "../commands/U
|
|
|
157
158
|
import { UpdateIAMPolicyAssignmentCommandInput, UpdateIAMPolicyAssignmentCommandOutput } from "../commands/UpdateIAMPolicyAssignmentCommand";
|
|
158
159
|
import { UpdateIdentityPropagationConfigCommandInput, UpdateIdentityPropagationConfigCommandOutput } from "../commands/UpdateIdentityPropagationConfigCommand";
|
|
159
160
|
import { UpdateIpRestrictionCommandInput, UpdateIpRestrictionCommandOutput } from "../commands/UpdateIpRestrictionCommand";
|
|
161
|
+
import { UpdateKeyRegistrationCommandInput, UpdateKeyRegistrationCommandOutput } from "../commands/UpdateKeyRegistrationCommand";
|
|
160
162
|
import { UpdatePublicSharingSettingsCommandInput, UpdatePublicSharingSettingsCommandOutput } from "../commands/UpdatePublicSharingSettingsCommand";
|
|
161
163
|
import { UpdateRefreshScheduleCommandInput, UpdateRefreshScheduleCommandOutput } from "../commands/UpdateRefreshScheduleCommand";
|
|
162
164
|
import { UpdateRoleCustomPermissionCommandInput, UpdateRoleCustomPermissionCommandOutput } from "../commands/UpdateRoleCustomPermissionCommand";
|
|
@@ -472,6 +474,10 @@ export declare const se_DescribeIngestionCommand: (input: DescribeIngestionComma
|
|
|
472
474
|
* serializeAws_restJson1DescribeIpRestrictionCommand
|
|
473
475
|
*/
|
|
474
476
|
export declare const se_DescribeIpRestrictionCommand: (input: DescribeIpRestrictionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
477
|
+
/**
|
|
478
|
+
* serializeAws_restJson1DescribeKeyRegistrationCommand
|
|
479
|
+
*/
|
|
480
|
+
export declare const se_DescribeKeyRegistrationCommand: (input: DescribeKeyRegistrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
475
481
|
/**
|
|
476
482
|
* serializeAws_restJson1DescribeNamespaceCommand
|
|
477
483
|
*/
|
|
@@ -800,6 +806,10 @@ export declare const se_UpdateIdentityPropagationConfigCommand: (input: UpdateId
|
|
|
800
806
|
* serializeAws_restJson1UpdateIpRestrictionCommand
|
|
801
807
|
*/
|
|
802
808
|
export declare const se_UpdateIpRestrictionCommand: (input: UpdateIpRestrictionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
809
|
+
/**
|
|
810
|
+
* serializeAws_restJson1UpdateKeyRegistrationCommand
|
|
811
|
+
*/
|
|
812
|
+
export declare const se_UpdateKeyRegistrationCommand: (input: UpdateKeyRegistrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
803
813
|
/**
|
|
804
814
|
* serializeAws_restJson1UpdatePublicSharingSettingsCommand
|
|
805
815
|
*/
|
|
@@ -1160,6 +1170,10 @@ export declare const de_DescribeIngestionCommand: (output: __HttpResponse, conte
|
|
|
1160
1170
|
* deserializeAws_restJson1DescribeIpRestrictionCommand
|
|
1161
1171
|
*/
|
|
1162
1172
|
export declare const de_DescribeIpRestrictionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeIpRestrictionCommandOutput>;
|
|
1173
|
+
/**
|
|
1174
|
+
* deserializeAws_restJson1DescribeKeyRegistrationCommand
|
|
1175
|
+
*/
|
|
1176
|
+
export declare const de_DescribeKeyRegistrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeKeyRegistrationCommandOutput>;
|
|
1163
1177
|
/**
|
|
1164
1178
|
* deserializeAws_restJson1DescribeNamespaceCommand
|
|
1165
1179
|
*/
|
|
@@ -1488,6 +1502,10 @@ export declare const de_UpdateIdentityPropagationConfigCommand: (output: __HttpR
|
|
|
1488
1502
|
* deserializeAws_restJson1UpdateIpRestrictionCommand
|
|
1489
1503
|
*/
|
|
1490
1504
|
export declare const de_UpdateIpRestrictionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIpRestrictionCommandOutput>;
|
|
1505
|
+
/**
|
|
1506
|
+
* deserializeAws_restJson1UpdateKeyRegistrationCommand
|
|
1507
|
+
*/
|
|
1508
|
+
export declare const de_UpdateKeyRegistrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKeyRegistrationCommandOutput>;
|
|
1491
1509
|
/**
|
|
1492
1510
|
* deserializeAws_restJson1UpdatePublicSharingSettingsCommand
|
|
1493
1511
|
*/
|
|
@@ -299,6 +299,10 @@ import {
|
|
|
299
299
|
DescribeIpRestrictionCommandInput,
|
|
300
300
|
DescribeIpRestrictionCommandOutput,
|
|
301
301
|
} from "./commands/DescribeIpRestrictionCommand";
|
|
302
|
+
import {
|
|
303
|
+
DescribeKeyRegistrationCommandInput,
|
|
304
|
+
DescribeKeyRegistrationCommandOutput,
|
|
305
|
+
} from "./commands/DescribeKeyRegistrationCommand";
|
|
302
306
|
import {
|
|
303
307
|
DescribeNamespaceCommandInput,
|
|
304
308
|
DescribeNamespaceCommandOutput,
|
|
@@ -627,6 +631,10 @@ import {
|
|
|
627
631
|
UpdateIpRestrictionCommandInput,
|
|
628
632
|
UpdateIpRestrictionCommandOutput,
|
|
629
633
|
} from "./commands/UpdateIpRestrictionCommand";
|
|
634
|
+
import {
|
|
635
|
+
UpdateKeyRegistrationCommandInput,
|
|
636
|
+
UpdateKeyRegistrationCommandOutput,
|
|
637
|
+
} from "./commands/UpdateKeyRegistrationCommand";
|
|
630
638
|
import {
|
|
631
639
|
UpdatePublicSharingSettingsCommandInput,
|
|
632
640
|
UpdatePublicSharingSettingsCommandOutput,
|
|
@@ -1676,6 +1684,19 @@ export interface QuickSight {
|
|
|
1676
1684
|
options: __HttpHandlerOptions,
|
|
1677
1685
|
cb: (err: any, data?: DescribeIpRestrictionCommandOutput) => void
|
|
1678
1686
|
): void;
|
|
1687
|
+
describeKeyRegistration(
|
|
1688
|
+
args: DescribeKeyRegistrationCommandInput,
|
|
1689
|
+
options?: __HttpHandlerOptions
|
|
1690
|
+
): Promise<DescribeKeyRegistrationCommandOutput>;
|
|
1691
|
+
describeKeyRegistration(
|
|
1692
|
+
args: DescribeKeyRegistrationCommandInput,
|
|
1693
|
+
cb: (err: any, data?: DescribeKeyRegistrationCommandOutput) => void
|
|
1694
|
+
): void;
|
|
1695
|
+
describeKeyRegistration(
|
|
1696
|
+
args: DescribeKeyRegistrationCommandInput,
|
|
1697
|
+
options: __HttpHandlerOptions,
|
|
1698
|
+
cb: (err: any, data?: DescribeKeyRegistrationCommandOutput) => void
|
|
1699
|
+
): void;
|
|
1679
1700
|
describeNamespace(
|
|
1680
1701
|
args: DescribeNamespaceCommandInput,
|
|
1681
1702
|
options?: __HttpHandlerOptions
|
|
@@ -2748,6 +2769,19 @@ export interface QuickSight {
|
|
|
2748
2769
|
options: __HttpHandlerOptions,
|
|
2749
2770
|
cb: (err: any, data?: UpdateIpRestrictionCommandOutput) => void
|
|
2750
2771
|
): void;
|
|
2772
|
+
updateKeyRegistration(
|
|
2773
|
+
args: UpdateKeyRegistrationCommandInput,
|
|
2774
|
+
options?: __HttpHandlerOptions
|
|
2775
|
+
): Promise<UpdateKeyRegistrationCommandOutput>;
|
|
2776
|
+
updateKeyRegistration(
|
|
2777
|
+
args: UpdateKeyRegistrationCommandInput,
|
|
2778
|
+
cb: (err: any, data?: UpdateKeyRegistrationCommandOutput) => void
|
|
2779
|
+
): void;
|
|
2780
|
+
updateKeyRegistration(
|
|
2781
|
+
args: UpdateKeyRegistrationCommandInput,
|
|
2782
|
+
options: __HttpHandlerOptions,
|
|
2783
|
+
cb: (err: any, data?: UpdateKeyRegistrationCommandOutput) => void
|
|
2784
|
+
): void;
|
|
2751
2785
|
updatePublicSharingSettings(
|
|
2752
2786
|
args: UpdatePublicSharingSettingsCommandInput,
|
|
2753
2787
|
options?: __HttpHandlerOptions
|
|
@@ -345,6 +345,10 @@ import {
|
|
|
345
345
|
DescribeIpRestrictionCommandInput,
|
|
346
346
|
DescribeIpRestrictionCommandOutput,
|
|
347
347
|
} from "./commands/DescribeIpRestrictionCommand";
|
|
348
|
+
import {
|
|
349
|
+
DescribeKeyRegistrationCommandInput,
|
|
350
|
+
DescribeKeyRegistrationCommandOutput,
|
|
351
|
+
} from "./commands/DescribeKeyRegistrationCommand";
|
|
348
352
|
import {
|
|
349
353
|
DescribeNamespaceCommandInput,
|
|
350
354
|
DescribeNamespaceCommandOutput,
|
|
@@ -673,6 +677,10 @@ import {
|
|
|
673
677
|
UpdateIpRestrictionCommandInput,
|
|
674
678
|
UpdateIpRestrictionCommandOutput,
|
|
675
679
|
} from "./commands/UpdateIpRestrictionCommand";
|
|
680
|
+
import {
|
|
681
|
+
UpdateKeyRegistrationCommandInput,
|
|
682
|
+
UpdateKeyRegistrationCommandOutput,
|
|
683
|
+
} from "./commands/UpdateKeyRegistrationCommand";
|
|
676
684
|
import {
|
|
677
685
|
UpdatePublicSharingSettingsCommandInput,
|
|
678
686
|
UpdatePublicSharingSettingsCommandOutput,
|
|
@@ -816,6 +824,7 @@ export type ServiceInputTypes =
|
|
|
816
824
|
| DescribeIAMPolicyAssignmentCommandInput
|
|
817
825
|
| DescribeIngestionCommandInput
|
|
818
826
|
| DescribeIpRestrictionCommandInput
|
|
827
|
+
| DescribeKeyRegistrationCommandInput
|
|
819
828
|
| DescribeNamespaceCommandInput
|
|
820
829
|
| DescribeRefreshScheduleCommandInput
|
|
821
830
|
| DescribeRoleCustomPermissionCommandInput
|
|
@@ -898,6 +907,7 @@ export type ServiceInputTypes =
|
|
|
898
907
|
| UpdateIAMPolicyAssignmentCommandInput
|
|
899
908
|
| UpdateIdentityPropagationConfigCommandInput
|
|
900
909
|
| UpdateIpRestrictionCommandInput
|
|
910
|
+
| UpdateKeyRegistrationCommandInput
|
|
901
911
|
| UpdatePublicSharingSettingsCommandInput
|
|
902
912
|
| UpdateRefreshScheduleCommandInput
|
|
903
913
|
| UpdateRoleCustomPermissionCommandInput
|
|
@@ -989,6 +999,7 @@ export type ServiceOutputTypes =
|
|
|
989
999
|
| DescribeIAMPolicyAssignmentCommandOutput
|
|
990
1000
|
| DescribeIngestionCommandOutput
|
|
991
1001
|
| DescribeIpRestrictionCommandOutput
|
|
1002
|
+
| DescribeKeyRegistrationCommandOutput
|
|
992
1003
|
| DescribeNamespaceCommandOutput
|
|
993
1004
|
| DescribeRefreshScheduleCommandOutput
|
|
994
1005
|
| DescribeRoleCustomPermissionCommandOutput
|
|
@@ -1071,6 +1082,7 @@ export type ServiceOutputTypes =
|
|
|
1071
1082
|
| UpdateIAMPolicyAssignmentCommandOutput
|
|
1072
1083
|
| UpdateIdentityPropagationConfigCommandOutput
|
|
1073
1084
|
| UpdateIpRestrictionCommandOutput
|
|
1085
|
+
| UpdateKeyRegistrationCommandOutput
|
|
1074
1086
|
| UpdatePublicSharingSettingsCommandOutput
|
|
1075
1087
|
| UpdateRefreshScheduleCommandOutput
|
|
1076
1088
|
| UpdateRoleCustomPermissionCommandOutput
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeKeyRegistrationRequest,
|
|
5
|
+
DescribeKeyRegistrationResponse,
|
|
6
|
+
} from "../models/models_3";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DescribeKeyRegistrationCommandInput
|
|
14
|
+
extends DescribeKeyRegistrationRequest {}
|
|
15
|
+
export interface DescribeKeyRegistrationCommandOutput
|
|
16
|
+
extends DescribeKeyRegistrationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DescribeKeyRegistrationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeKeyRegistrationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeKeyRegistrationCommandInput,
|
|
23
|
+
DescribeKeyRegistrationCommandOutput,
|
|
24
|
+
QuickSightClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeKeyRegistrationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeKeyRegistrationCommandInput,
|
|
32
|
+
DescribeKeyRegistrationCommandOutput,
|
|
33
|
+
QuickSightClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DescribeKeyRegistrationCommand extends DescribeKeyRegistrationCommand_base {}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
ListDataSourcesResponse,
|
|
6
|
-
} from "../models/models_3";
|
|
3
|
+
import { ListDataSourcesRequest } from "../models/models_3";
|
|
4
|
+
import { ListDataSourcesResponse } from "../models/models_4";
|
|
7
5
|
import {
|
|
8
6
|
QuickSightClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { ListFoldersRequest } from "../models/
|
|
4
|
-
import { ListFoldersResponse } from "../models/models_4";
|
|
3
|
+
import { ListFoldersRequest, ListFoldersResponse } from "../models/models_4";
|
|
5
4
|
import {
|
|
6
5
|
QuickSightClientResolvedConfig,
|
|
7
6
|
ServiceInputTypes,
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateKeyRegistrationRequest,
|
|
5
|
+
UpdateKeyRegistrationResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
QuickSightClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QuickSightClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface UpdateKeyRegistrationCommandInput
|
|
14
|
+
extends UpdateKeyRegistrationRequest {}
|
|
15
|
+
export interface UpdateKeyRegistrationCommandOutput
|
|
16
|
+
extends UpdateKeyRegistrationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateKeyRegistrationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateKeyRegistrationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateKeyRegistrationCommandInput,
|
|
23
|
+
UpdateKeyRegistrationCommandOutput,
|
|
24
|
+
QuickSightClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateKeyRegistrationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateKeyRegistrationCommandInput,
|
|
32
|
+
UpdateKeyRegistrationCommandOutput,
|
|
33
|
+
QuickSightClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateKeyRegistrationCommand extends UpdateKeyRegistrationCommand_base {}
|
|
@@ -73,6 +73,7 @@ export * from "./DescribeGroupMembershipCommand";
|
|
|
73
73
|
export * from "./DescribeIAMPolicyAssignmentCommand";
|
|
74
74
|
export * from "./DescribeIngestionCommand";
|
|
75
75
|
export * from "./DescribeIpRestrictionCommand";
|
|
76
|
+
export * from "./DescribeKeyRegistrationCommand";
|
|
76
77
|
export * from "./DescribeNamespaceCommand";
|
|
77
78
|
export * from "./DescribeRefreshScheduleCommand";
|
|
78
79
|
export * from "./DescribeRoleCustomPermissionCommand";
|
|
@@ -155,6 +156,7 @@ export * from "./UpdateGroupCommand";
|
|
|
155
156
|
export * from "./UpdateIAMPolicyAssignmentCommand";
|
|
156
157
|
export * from "./UpdateIdentityPropagationConfigCommand";
|
|
157
158
|
export * from "./UpdateIpRestrictionCommand";
|
|
159
|
+
export * from "./UpdateKeyRegistrationCommand";
|
|
158
160
|
export * from "./UpdatePublicSharingSettingsCommand";
|
|
159
161
|
export * from "./UpdateRefreshScheduleCommand";
|
|
160
162
|
export * from "./UpdateRoleCustomPermissionCommand";
|
|
@@ -518,7 +518,7 @@ export interface RdsParameters {
|
|
|
518
518
|
}
|
|
519
519
|
export interface RedshiftIAMParameters {
|
|
520
520
|
RoleArn: string | undefined;
|
|
521
|
-
DatabaseUser
|
|
521
|
+
DatabaseUser?: string;
|
|
522
522
|
DatabaseGroups?: string[];
|
|
523
523
|
AutoCreateDatabaseUser?: boolean;
|
|
524
524
|
}
|
|
@@ -1436,6 +1436,20 @@ export interface DescribeIpRestrictionResponse {
|
|
|
1436
1436
|
RequestId?: string;
|
|
1437
1437
|
Status?: number;
|
|
1438
1438
|
}
|
|
1439
|
+
export interface DescribeKeyRegistrationRequest {
|
|
1440
|
+
AwsAccountId: string | undefined;
|
|
1441
|
+
DefaultKeyOnly?: boolean;
|
|
1442
|
+
}
|
|
1443
|
+
export interface RegisteredCustomerManagedKey {
|
|
1444
|
+
KeyArn?: string;
|
|
1445
|
+
DefaultKey?: boolean;
|
|
1446
|
+
}
|
|
1447
|
+
export interface DescribeKeyRegistrationResponse {
|
|
1448
|
+
AwsAccountId?: string;
|
|
1449
|
+
KeyRegistration?: RegisteredCustomerManagedKey[];
|
|
1450
|
+
RequestId?: string;
|
|
1451
|
+
Status?: number;
|
|
1452
|
+
}
|
|
1439
1453
|
export interface DescribeNamespaceRequest {
|
|
1440
1454
|
AwsAccountId: string | undefined;
|
|
1441
1455
|
Namespace: string | undefined;
|
|
@@ -1789,6 +1803,12 @@ export declare const EmbeddingIdentityType: {
|
|
|
1789
1803
|
};
|
|
1790
1804
|
export type EmbeddingIdentityType =
|
|
1791
1805
|
(typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
|
|
1806
|
+
export interface FailedKeyRegistrationEntry {
|
|
1807
|
+
KeyArn?: string;
|
|
1808
|
+
Message: string | undefined;
|
|
1809
|
+
StatusCode: number | undefined;
|
|
1810
|
+
SenderFault: boolean | undefined;
|
|
1811
|
+
}
|
|
1792
1812
|
export declare const FolderFilterAttribute: {
|
|
1793
1813
|
readonly DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER";
|
|
1794
1814
|
readonly DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
|
@@ -2063,29 +2083,6 @@ export interface ListDataSourcesRequest {
|
|
|
2063
2083
|
NextToken?: string;
|
|
2064
2084
|
MaxResults?: number;
|
|
2065
2085
|
}
|
|
2066
|
-
export interface ListDataSourcesResponse {
|
|
2067
|
-
DataSources?: DataSource[];
|
|
2068
|
-
NextToken?: string;
|
|
2069
|
-
RequestId?: string;
|
|
2070
|
-
Status?: number;
|
|
2071
|
-
}
|
|
2072
|
-
export interface ListFolderMembersRequest {
|
|
2073
|
-
AwsAccountId: string | undefined;
|
|
2074
|
-
FolderId: string | undefined;
|
|
2075
|
-
NextToken?: string;
|
|
2076
|
-
MaxResults?: number;
|
|
2077
|
-
}
|
|
2078
|
-
export interface ListFolderMembersResponse {
|
|
2079
|
-
Status?: number;
|
|
2080
|
-
FolderMemberList?: MemberIdArnPair[];
|
|
2081
|
-
NextToken?: string;
|
|
2082
|
-
RequestId?: string;
|
|
2083
|
-
}
|
|
2084
|
-
export interface ListFoldersRequest {
|
|
2085
|
-
AwsAccountId: string | undefined;
|
|
2086
|
-
NextToken?: string;
|
|
2087
|
-
MaxResults?: number;
|
|
2088
|
-
}
|
|
2089
2086
|
export declare const SemanticTypeFilterSensitiveLog: (obj: SemanticType) => any;
|
|
2090
2087
|
export declare const TopicCalculatedFieldFilterSensitiveLog: (
|
|
2091
2088
|
obj: TopicCalculatedField
|
|
@@ -56,16 +56,20 @@ import {
|
|
|
56
56
|
DataSetRefreshProperties,
|
|
57
57
|
DataSetSearchFilter,
|
|
58
58
|
DataSetSummary,
|
|
59
|
+
DataSource,
|
|
59
60
|
DataSourceSearchFilter,
|
|
60
61
|
DataSourceSummary,
|
|
62
|
+
FailedKeyRegistrationEntry,
|
|
61
63
|
FolderSearchFilter,
|
|
62
64
|
FolderSummary,
|
|
63
65
|
GroupSearchFilter,
|
|
64
66
|
IAMPolicyAssignmentSummary,
|
|
65
67
|
IdentityType,
|
|
66
68
|
Ingestion,
|
|
69
|
+
MemberIdArnPair,
|
|
67
70
|
NamespaceInfoV2,
|
|
68
71
|
NetworkInterface,
|
|
72
|
+
RegisteredCustomerManagedKey,
|
|
69
73
|
SessionTag,
|
|
70
74
|
SnapshotConfiguration,
|
|
71
75
|
ThemeAlias,
|
|
@@ -79,6 +83,29 @@ import {
|
|
|
79
83
|
VPCConnectionAvailabilityStatus,
|
|
80
84
|
VPCConnectionResourceStatus,
|
|
81
85
|
} from "./models_3";
|
|
86
|
+
export interface ListDataSourcesResponse {
|
|
87
|
+
DataSources?: DataSource[];
|
|
88
|
+
NextToken?: string;
|
|
89
|
+
RequestId?: string;
|
|
90
|
+
Status?: number;
|
|
91
|
+
}
|
|
92
|
+
export interface ListFolderMembersRequest {
|
|
93
|
+
AwsAccountId: string | undefined;
|
|
94
|
+
FolderId: string | undefined;
|
|
95
|
+
NextToken?: string;
|
|
96
|
+
MaxResults?: number;
|
|
97
|
+
}
|
|
98
|
+
export interface ListFolderMembersResponse {
|
|
99
|
+
Status?: number;
|
|
100
|
+
FolderMemberList?: MemberIdArnPair[];
|
|
101
|
+
NextToken?: string;
|
|
102
|
+
RequestId?: string;
|
|
103
|
+
}
|
|
104
|
+
export interface ListFoldersRequest {
|
|
105
|
+
AwsAccountId: string | undefined;
|
|
106
|
+
NextToken?: string;
|
|
107
|
+
MaxResults?: number;
|
|
108
|
+
}
|
|
82
109
|
export interface ListFoldersResponse {
|
|
83
110
|
Status?: number;
|
|
84
111
|
FolderSummaryList?: FolderSummary[];
|
|
@@ -818,6 +845,19 @@ export interface UpdateIpRestrictionResponse {
|
|
|
818
845
|
RequestId?: string;
|
|
819
846
|
Status?: number;
|
|
820
847
|
}
|
|
848
|
+
export interface UpdateKeyRegistrationRequest {
|
|
849
|
+
AwsAccountId: string | undefined;
|
|
850
|
+
KeyRegistration: RegisteredCustomerManagedKey[] | undefined;
|
|
851
|
+
}
|
|
852
|
+
export interface SuccessfulKeyRegistrationEntry {
|
|
853
|
+
KeyArn: string | undefined;
|
|
854
|
+
StatusCode: number | undefined;
|
|
855
|
+
}
|
|
856
|
+
export interface UpdateKeyRegistrationResponse {
|
|
857
|
+
FailedKeyRegistration?: FailedKeyRegistrationEntry[];
|
|
858
|
+
SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[];
|
|
859
|
+
RequestId?: string;
|
|
860
|
+
}
|
|
821
861
|
export interface UpdatePublicSharingSettingsRequest {
|
|
822
862
|
AwsAccountId: string | undefined;
|
|
823
863
|
PublicSharingEnabled?: boolean;
|