@aws-sdk/client-quicksight 3.957.0 → 3.960.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 +26 -229
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +6544 -10649
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/QuickSight.js +8 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/commands/DescribeSelfUpgradeConfigurationCommand.js +16 -0
- package/dist-es/commands/ListSelfUpgradesCommand.js +16 -0
- package/dist-es/commands/UpdateSelfUpgradeCommand.js +16 -0
- package/dist-es/commands/UpdateSelfUpgradeConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +16 -0
- package/dist-es/models/errors.js +16 -0
- package/dist-es/pagination/index.js +6 -6
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +6252 -10460
- package/dist-types/QuickSight.d.ts +28 -0
- package/dist-types/QuickSightClient.d.ts +6 -2
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +106 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/ListSelfUpgradesCommand.d.ts +122 -0
- package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateSelfUpgradeCommand.d.ts +119 -0
- package/dist-types/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +104 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +40 -0
- package/dist-types/models/errors.d.ts +18 -0
- package/dist-types/models/models_2.d.ts +5 -0
- package/dist-types/models/models_3.d.ts +57 -129
- package/dist-types/models/models_4.d.ts +312 -3
- package/dist-types/pagination/index.d.ts +6 -6
- package/dist-types/schemas/schemas_0.d.ts +15 -0
- package/dist-types/ts3.4/QuickSight.d.ts +68 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSelfUpgradesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +22 -0
- package/dist-types/ts3.4/models/errors.d.ts +9 -0
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/dist-types/ts3.4/models/models_3.d.ts +13 -21
- package/dist-types/ts3.4/models/models_4.d.ts +68 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +2 -2
|
@@ -6,10 +6,9 @@ const util_middleware_1 = require("@smithy/util-middleware");
|
|
|
6
6
|
const defaultQuickSightHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
8
8
|
operation: (0, util_middleware_1.getSmithyContext)(context).operation,
|
|
9
|
-
region:
|
|
10
|
-
(
|
|
11
|
-
|
|
12
|
-
})(),
|
|
9
|
+
region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => {
|
|
10
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
|
+
})(),
|
|
13
12
|
};
|
|
14
13
|
};
|
|
15
14
|
exports.defaultQuickSightHttpAuthSchemeParametersProvider = defaultQuickSightHttpAuthSchemeParametersProvider;
|