@aws-sdk/client-ssm-sap 3.490.0 → 3.496.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/dist-cjs/SsmSap.js +1 -47
- package/dist-cjs/SsmSapClient.js +1 -43
- package/dist-cjs/commands/DeleteResourcePermissionCommand.js +1 -28
- package/dist-cjs/commands/DeregisterApplicationCommand.js +1 -28
- package/dist-cjs/commands/GetApplicationCommand.js +1 -28
- package/dist-cjs/commands/GetComponentCommand.js +1 -28
- package/dist-cjs/commands/GetDatabaseCommand.js +1 -29
- package/dist-cjs/commands/GetOperationCommand.js +1 -28
- package/dist-cjs/commands/GetResourcePermissionCommand.js +1 -28
- package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
- package/dist-cjs/commands/ListComponentsCommand.js +1 -28
- package/dist-cjs/commands/ListDatabasesCommand.js +1 -28
- package/dist-cjs/commands/ListOperationsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/PutResourcePermissionCommand.js +1 -28
- package/dist-cjs/commands/RegisterApplicationCommand.js +1 -29
- package/dist-cjs/commands/StartApplicationRefreshCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateApplicationSettingsCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -21
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2026 -11
- package/dist-cjs/models/SsmSapServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -213
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
- package/dist-cjs/pagination/ListComponentsPaginator.js +1 -7
- package/dist-cjs/pagination/ListDatabasesPaginator.js +1 -7
- package/dist-cjs/pagination/ListOperationsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1217
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,21 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./DeleteResourcePermissionCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./DeregisterApplicationCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./GetApplicationCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./GetComponentCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./GetDatabaseCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./GetOperationCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./GetResourcePermissionCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./ListApplicationsCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./ListComponentsCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./ListDatabasesCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./ListOperationsCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./PutResourcePermissionCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./RegisterApplicationCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./StartApplicationRefreshCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./UpdateApplicationSettingsCommand"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
-
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
return {
|
|
6
|
-
...options,
|
|
7
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
-
defaultSigningName: "ssm-sap",
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
-
exports.commonParams = {
|
|
14
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
-
Region: { type: "builtInParams", name: "region" },
|
|
17
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("./index.js");
|