@aws-sdk/client-quicksight 3.577.0 → 3.578.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 +1 -1
|
@@ -303,6 +303,10 @@ import {
|
|
|
303
303
|
DescribeIpRestrictionCommandInput,
|
|
304
304
|
DescribeIpRestrictionCommandOutput,
|
|
305
305
|
} from "../commands/DescribeIpRestrictionCommand";
|
|
306
|
+
import {
|
|
307
|
+
DescribeKeyRegistrationCommandInput,
|
|
308
|
+
DescribeKeyRegistrationCommandOutput,
|
|
309
|
+
} from "../commands/DescribeKeyRegistrationCommand";
|
|
306
310
|
import {
|
|
307
311
|
DescribeNamespaceCommandInput,
|
|
308
312
|
DescribeNamespaceCommandOutput,
|
|
@@ -631,6 +635,10 @@ import {
|
|
|
631
635
|
UpdateIpRestrictionCommandInput,
|
|
632
636
|
UpdateIpRestrictionCommandOutput,
|
|
633
637
|
} from "../commands/UpdateIpRestrictionCommand";
|
|
638
|
+
import {
|
|
639
|
+
UpdateKeyRegistrationCommandInput,
|
|
640
|
+
UpdateKeyRegistrationCommandOutput,
|
|
641
|
+
} from "../commands/UpdateKeyRegistrationCommand";
|
|
634
642
|
import {
|
|
635
643
|
UpdatePublicSharingSettingsCommandInput,
|
|
636
644
|
UpdatePublicSharingSettingsCommandOutput,
|
|
@@ -991,6 +999,10 @@ export declare const se_DescribeIpRestrictionCommand: (
|
|
|
991
999
|
input: DescribeIpRestrictionCommandInput,
|
|
992
1000
|
context: __SerdeContext
|
|
993
1001
|
) => Promise<__HttpRequest>;
|
|
1002
|
+
export declare const se_DescribeKeyRegistrationCommand: (
|
|
1003
|
+
input: DescribeKeyRegistrationCommandInput,
|
|
1004
|
+
context: __SerdeContext
|
|
1005
|
+
) => Promise<__HttpRequest>;
|
|
994
1006
|
export declare const se_DescribeNamespaceCommand: (
|
|
995
1007
|
input: DescribeNamespaceCommandInput,
|
|
996
1008
|
context: __SerdeContext
|
|
@@ -1319,6 +1331,10 @@ export declare const se_UpdateIpRestrictionCommand: (
|
|
|
1319
1331
|
input: UpdateIpRestrictionCommandInput,
|
|
1320
1332
|
context: __SerdeContext
|
|
1321
1333
|
) => Promise<__HttpRequest>;
|
|
1334
|
+
export declare const se_UpdateKeyRegistrationCommand: (
|
|
1335
|
+
input: UpdateKeyRegistrationCommandInput,
|
|
1336
|
+
context: __SerdeContext
|
|
1337
|
+
) => Promise<__HttpRequest>;
|
|
1322
1338
|
export declare const se_UpdatePublicSharingSettingsCommand: (
|
|
1323
1339
|
input: UpdatePublicSharingSettingsCommandInput,
|
|
1324
1340
|
context: __SerdeContext
|
|
@@ -1679,6 +1695,10 @@ export declare const de_DescribeIpRestrictionCommand: (
|
|
|
1679
1695
|
output: __HttpResponse,
|
|
1680
1696
|
context: __SerdeContext
|
|
1681
1697
|
) => Promise<DescribeIpRestrictionCommandOutput>;
|
|
1698
|
+
export declare const de_DescribeKeyRegistrationCommand: (
|
|
1699
|
+
output: __HttpResponse,
|
|
1700
|
+
context: __SerdeContext
|
|
1701
|
+
) => Promise<DescribeKeyRegistrationCommandOutput>;
|
|
1682
1702
|
export declare const de_DescribeNamespaceCommand: (
|
|
1683
1703
|
output: __HttpResponse,
|
|
1684
1704
|
context: __SerdeContext
|
|
@@ -2007,6 +2027,10 @@ export declare const de_UpdateIpRestrictionCommand: (
|
|
|
2007
2027
|
output: __HttpResponse,
|
|
2008
2028
|
context: __SerdeContext
|
|
2009
2029
|
) => Promise<UpdateIpRestrictionCommandOutput>;
|
|
2030
|
+
export declare const de_UpdateKeyRegistrationCommand: (
|
|
2031
|
+
output: __HttpResponse,
|
|
2032
|
+
context: __SerdeContext
|
|
2033
|
+
) => Promise<UpdateKeyRegistrationCommandOutput>;
|
|
2010
2034
|
export declare const de_UpdatePublicSharingSettingsCommand: (
|
|
2011
2035
|
output: __HttpResponse,
|
|
2012
2036
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.578.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-quicksight",
|