@aws-sdk/client-quicksight 3.454.0 → 3.458.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 +191 -167
- package/dist-cjs/QuickSight.js +6 -0
- package/dist-cjs/commands/DeleteIdentityPropagationConfigCommand.js +51 -0
- package/dist-cjs/commands/ListIdentityPropagationConfigsCommand.js +51 -0
- package/dist-cjs/commands/UpdateIdentityPropagationConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_2.js +6 -20
- package/dist-cjs/models/models_3.js +20 -3
- package/dist-cjs/protocols/Aws_restJson1.js +222 -7
- package/dist-es/QuickSight.js +6 -0
- package/dist-es/commands/DeleteIdentityPropagationConfigCommand.js +47 -0
- package/dist-es/commands/ListIdentityPropagationConfigsCommand.js +47 -0
- package/dist-es/commands/UpdateIdentityPropagationConfigCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_2.js +3 -16
- package/dist-es/models/models_3.js +17 -1
- package/dist-es/protocols/Aws_restJson1.js +209 -0
- package/dist-types/QuickSight.d.ts +21 -0
- package/dist-types/QuickSightClient.d.ts +5 -2
- package/dist-types/commands/CreateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIdentityPropagationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +6 -0
- package/dist-types/commands/ListIdentityPropagationConfigsCommand.d.ts +104 -0
- package/dist-types/commands/ListTemplateVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTemplatesCommand.d.ts +2 -1
- package/dist-types/commands/ListThemeAliasesCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +3 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateIdentityPropagationConfigCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_2.d.ts +44 -50
- package/dist-types/models/models_3.d.ts +124 -191
- package/dist-types/models/models_4.d.ts +228 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/QuickSight.d.ts +51 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteIdentityPropagationConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListIdentityPropagationConfigsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTemplateVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListThemeAliasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIdentityPropagationConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +12 -22
- package/dist-types/ts3.4/models/models_3.d.ts +43 -48
- package/dist-types/ts3.4/models/models_4.d.ts +55 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +3 -3
|
@@ -143,6 +143,10 @@ import {
|
|
|
143
143
|
DeleteIAMPolicyAssignmentCommandInput,
|
|
144
144
|
DeleteIAMPolicyAssignmentCommandOutput,
|
|
145
145
|
} from "../commands/DeleteIAMPolicyAssignmentCommand";
|
|
146
|
+
import {
|
|
147
|
+
DeleteIdentityPropagationConfigCommandInput,
|
|
148
|
+
DeleteIdentityPropagationConfigCommandOutput,
|
|
149
|
+
} from "../commands/DeleteIdentityPropagationConfigCommand";
|
|
146
150
|
import {
|
|
147
151
|
DeleteNamespaceCommandInput,
|
|
148
152
|
DeleteNamespaceCommandOutput,
|
|
@@ -431,6 +435,10 @@ import {
|
|
|
431
435
|
ListIAMPolicyAssignmentsForUserCommandInput,
|
|
432
436
|
ListIAMPolicyAssignmentsForUserCommandOutput,
|
|
433
437
|
} from "../commands/ListIAMPolicyAssignmentsForUserCommand";
|
|
438
|
+
import {
|
|
439
|
+
ListIdentityPropagationConfigsCommandInput,
|
|
440
|
+
ListIdentityPropagationConfigsCommandOutput,
|
|
441
|
+
} from "../commands/ListIdentityPropagationConfigsCommand";
|
|
434
442
|
import {
|
|
435
443
|
ListIngestionsCommandInput,
|
|
436
444
|
ListIngestionsCommandOutput,
|
|
@@ -611,6 +619,10 @@ import {
|
|
|
611
619
|
UpdateIAMPolicyAssignmentCommandInput,
|
|
612
620
|
UpdateIAMPolicyAssignmentCommandOutput,
|
|
613
621
|
} from "../commands/UpdateIAMPolicyAssignmentCommand";
|
|
622
|
+
import {
|
|
623
|
+
UpdateIdentityPropagationConfigCommandInput,
|
|
624
|
+
UpdateIdentityPropagationConfigCommandOutput,
|
|
625
|
+
} from "../commands/UpdateIdentityPropagationConfigCommand";
|
|
614
626
|
import {
|
|
615
627
|
UpdateIpRestrictionCommandInput,
|
|
616
628
|
UpdateIpRestrictionCommandOutput,
|
|
@@ -811,6 +823,10 @@ export declare const se_DeleteIAMPolicyAssignmentCommand: (
|
|
|
811
823
|
input: DeleteIAMPolicyAssignmentCommandInput,
|
|
812
824
|
context: __SerdeContext
|
|
813
825
|
) => Promise<__HttpRequest>;
|
|
826
|
+
export declare const se_DeleteIdentityPropagationConfigCommand: (
|
|
827
|
+
input: DeleteIdentityPropagationConfigCommandInput,
|
|
828
|
+
context: __SerdeContext
|
|
829
|
+
) => Promise<__HttpRequest>;
|
|
814
830
|
export declare const se_DeleteNamespaceCommand: (
|
|
815
831
|
input: DeleteNamespaceCommandInput,
|
|
816
832
|
context: __SerdeContext
|
|
@@ -1099,6 +1115,10 @@ export declare const se_ListIAMPolicyAssignmentsForUserCommand: (
|
|
|
1099
1115
|
input: ListIAMPolicyAssignmentsForUserCommandInput,
|
|
1100
1116
|
context: __SerdeContext
|
|
1101
1117
|
) => Promise<__HttpRequest>;
|
|
1118
|
+
export declare const se_ListIdentityPropagationConfigsCommand: (
|
|
1119
|
+
input: ListIdentityPropagationConfigsCommandInput,
|
|
1120
|
+
context: __SerdeContext
|
|
1121
|
+
) => Promise<__HttpRequest>;
|
|
1102
1122
|
export declare const se_ListIngestionsCommand: (
|
|
1103
1123
|
input: ListIngestionsCommandInput,
|
|
1104
1124
|
context: __SerdeContext
|
|
@@ -1279,6 +1299,10 @@ export declare const se_UpdateIAMPolicyAssignmentCommand: (
|
|
|
1279
1299
|
input: UpdateIAMPolicyAssignmentCommandInput,
|
|
1280
1300
|
context: __SerdeContext
|
|
1281
1301
|
) => Promise<__HttpRequest>;
|
|
1302
|
+
export declare const se_UpdateIdentityPropagationConfigCommand: (
|
|
1303
|
+
input: UpdateIdentityPropagationConfigCommandInput,
|
|
1304
|
+
context: __SerdeContext
|
|
1305
|
+
) => Promise<__HttpRequest>;
|
|
1282
1306
|
export declare const se_UpdateIpRestrictionCommand: (
|
|
1283
1307
|
input: UpdateIpRestrictionCommandInput,
|
|
1284
1308
|
context: __SerdeContext
|
|
@@ -1479,6 +1503,10 @@ export declare const de_DeleteIAMPolicyAssignmentCommand: (
|
|
|
1479
1503
|
output: __HttpResponse,
|
|
1480
1504
|
context: __SerdeContext
|
|
1481
1505
|
) => Promise<DeleteIAMPolicyAssignmentCommandOutput>;
|
|
1506
|
+
export declare const de_DeleteIdentityPropagationConfigCommand: (
|
|
1507
|
+
output: __HttpResponse,
|
|
1508
|
+
context: __SerdeContext
|
|
1509
|
+
) => Promise<DeleteIdentityPropagationConfigCommandOutput>;
|
|
1482
1510
|
export declare const de_DeleteNamespaceCommand: (
|
|
1483
1511
|
output: __HttpResponse,
|
|
1484
1512
|
context: __SerdeContext
|
|
@@ -1767,6 +1795,10 @@ export declare const de_ListIAMPolicyAssignmentsForUserCommand: (
|
|
|
1767
1795
|
output: __HttpResponse,
|
|
1768
1796
|
context: __SerdeContext
|
|
1769
1797
|
) => Promise<ListIAMPolicyAssignmentsForUserCommandOutput>;
|
|
1798
|
+
export declare const de_ListIdentityPropagationConfigsCommand: (
|
|
1799
|
+
output: __HttpResponse,
|
|
1800
|
+
context: __SerdeContext
|
|
1801
|
+
) => Promise<ListIdentityPropagationConfigsCommandOutput>;
|
|
1770
1802
|
export declare const de_ListIngestionsCommand: (
|
|
1771
1803
|
output: __HttpResponse,
|
|
1772
1804
|
context: __SerdeContext
|
|
@@ -1947,6 +1979,10 @@ export declare const de_UpdateIAMPolicyAssignmentCommand: (
|
|
|
1947
1979
|
output: __HttpResponse,
|
|
1948
1980
|
context: __SerdeContext
|
|
1949
1981
|
) => Promise<UpdateIAMPolicyAssignmentCommandOutput>;
|
|
1982
|
+
export declare const de_UpdateIdentityPropagationConfigCommand: (
|
|
1983
|
+
output: __HttpResponse,
|
|
1984
|
+
context: __SerdeContext
|
|
1985
|
+
) => Promise<UpdateIdentityPropagationConfigCommandOutput>;
|
|
1950
1986
|
export declare const de_UpdateIpRestrictionCommand: (
|
|
1951
1987
|
output: __HttpResponse,
|
|
1952
1988
|
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.458.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.458.0",
|
|
25
25
|
"@aws-sdk/core": "3.451.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.458.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.451.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.451.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.451.0",
|