@aws-sdk/client-ssm-sap 3.952.0 → 3.954.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/index.js +360 -236
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/DeleteResourcePermissionCommand.js +2 -2
- package/dist-es/commands/DeregisterApplicationCommand.js +2 -2
- package/dist-es/commands/GetApplicationCommand.js +2 -2
- package/dist-es/commands/GetComponentCommand.js +2 -2
- package/dist-es/commands/GetConfigurationCheckOperationCommand.js +2 -2
- package/dist-es/commands/GetDatabaseCommand.js +2 -2
- package/dist-es/commands/GetOperationCommand.js +2 -2
- package/dist-es/commands/GetResourcePermissionCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -2
- package/dist-es/commands/ListComponentsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationCheckDefinitionsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationCheckOperationsCommand.js +2 -2
- package/dist-es/commands/ListDatabasesCommand.js +2 -2
- package/dist-es/commands/ListOperationEventsCommand.js +2 -2
- package/dist-es/commands/ListOperationsCommand.js +2 -2
- package/dist-es/commands/ListSubCheckResultsCommand.js +2 -2
- package/dist-es/commands/ListSubCheckRuleResultsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutResourcePermissionCommand.js +2 -2
- package/dist-es/commands/RegisterApplicationCommand.js +2 -2
- package/dist-es/commands/StartApplicationCommand.js +2 -2
- package/dist-es/commands/StartApplicationRefreshCommand.js +2 -2
- package/dist-es/commands/StartConfigurationChecksCommand.js +2 -2
- package/dist-es/commands/StopApplicationCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationSettingsCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +223 -209
- package/dist-types/SsmSapClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +111 -139
- package/dist-types/ts3.4/SsmSapClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -141
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.ssmsap",
|
|
32
|
+
version: "2018-05-10",
|
|
33
|
+
serviceTarget: "SsmSap",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Ssm Sap",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteResourcePermission } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResourcePermission$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourcePermissionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResourcePermissionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "DeleteResourcePermission", {})
|
|
13
13
|
.n("SsmSapClient", "DeleteResourcePermissionCommand")
|
|
14
|
-
.sc(DeleteResourcePermission)
|
|
14
|
+
.sc(DeleteResourcePermission$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeregisterApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeregisterApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeregisterApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeregisterApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "DeregisterApplication", {})
|
|
13
13
|
.n("SsmSapClient", "DeregisterApplicationCommand")
|
|
14
|
-
.sc(DeregisterApplication)
|
|
14
|
+
.sc(DeregisterApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { GetApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "GetApplication", {})
|
|
13
13
|
.n("SsmSapClient", "GetApplicationCommand")
|
|
14
|
-
.sc(GetApplication)
|
|
14
|
+
.sc(GetApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetComponent } from "../schemas/schemas_0";
|
|
4
|
+
import { GetComponent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetComponentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetComponentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "GetComponent", {})
|
|
13
13
|
.n("SsmSapClient", "GetComponentCommand")
|
|
14
|
-
.sc(GetComponent)
|
|
14
|
+
.sc(GetComponent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetConfigurationCheckOperation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConfigurationCheckOperation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConfigurationCheckOperationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConfigurationCheckOperationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "GetConfigurationCheckOperation", {})
|
|
13
13
|
.n("SsmSapClient", "GetConfigurationCheckOperationCommand")
|
|
14
|
-
.sc(GetConfigurationCheckOperation)
|
|
14
|
+
.sc(GetConfigurationCheckOperation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDatabase } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDatabase$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDatabaseCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDatabaseCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "GetDatabase", {})
|
|
13
13
|
.n("SsmSapClient", "GetDatabaseCommand")
|
|
14
|
-
.sc(GetDatabase)
|
|
14
|
+
.sc(GetDatabase$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOperation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOperation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOperationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOperationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "GetOperation", {})
|
|
13
13
|
.n("SsmSapClient", "GetOperationCommand")
|
|
14
|
-
.sc(GetOperation)
|
|
14
|
+
.sc(GetOperation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResourcePermission } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourcePermission$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourcePermissionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourcePermissionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "GetResourcePermission", {})
|
|
13
13
|
.n("SsmSapClient", "GetResourcePermissionCommand")
|
|
14
|
-
.sc(GetResourcePermission)
|
|
14
|
+
.sc(GetResourcePermission$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListApplications", {})
|
|
13
13
|
.n("SsmSapClient", "ListApplicationsCommand")
|
|
14
|
-
.sc(ListApplications)
|
|
14
|
+
.sc(ListApplications$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListComponents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListComponents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListComponentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListComponentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListComponents", {})
|
|
13
13
|
.n("SsmSapClient", "ListComponentsCommand")
|
|
14
|
-
.sc(ListComponents)
|
|
14
|
+
.sc(ListComponents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurationCheckDefinitions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurationCheckDefinitions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationCheckDefinitionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationCheckDefinitionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListConfigurationCheckDefinitions", {})
|
|
13
13
|
.n("SsmSapClient", "ListConfigurationCheckDefinitionsCommand")
|
|
14
|
-
.sc(ListConfigurationCheckDefinitions)
|
|
14
|
+
.sc(ListConfigurationCheckDefinitions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurationCheckOperations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurationCheckOperations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationCheckOperationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationCheckOperationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListConfigurationCheckOperations", {})
|
|
13
13
|
.n("SsmSapClient", "ListConfigurationCheckOperationsCommand")
|
|
14
|
-
.sc(ListConfigurationCheckOperations)
|
|
14
|
+
.sc(ListConfigurationCheckOperations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDatabases } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDatabases$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDatabasesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDatabasesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListDatabases", {})
|
|
13
13
|
.n("SsmSapClient", "ListDatabasesCommand")
|
|
14
|
-
.sc(ListDatabases)
|
|
14
|
+
.sc(ListDatabases$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOperationEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOperationEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOperationEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOperationEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListOperationEvents", {})
|
|
13
13
|
.n("SsmSapClient", "ListOperationEventsCommand")
|
|
14
|
-
.sc(ListOperationEvents)
|
|
14
|
+
.sc(ListOperationEvents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOperations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOperations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOperationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOperationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListOperations", {})
|
|
13
13
|
.n("SsmSapClient", "ListOperationsCommand")
|
|
14
|
-
.sc(ListOperations)
|
|
14
|
+
.sc(ListOperations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSubCheckResults } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSubCheckResults$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSubCheckResultsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSubCheckResultsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListSubCheckResults", {})
|
|
13
13
|
.n("SsmSapClient", "ListSubCheckResultsCommand")
|
|
14
|
-
.sc(ListSubCheckResults)
|
|
14
|
+
.sc(ListSubCheckResults$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSubCheckRuleResults } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSubCheckRuleResults$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSubCheckRuleResultsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSubCheckRuleResultsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListSubCheckRuleResults", {})
|
|
13
13
|
.n("SsmSapClient", "ListSubCheckRuleResultsCommand")
|
|
14
|
-
.sc(ListSubCheckRuleResults)
|
|
14
|
+
.sc(ListSubCheckRuleResults$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "ListTagsForResource", {})
|
|
13
13
|
.n("SsmSapClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutResourcePermission } from "../schemas/schemas_0";
|
|
4
|
+
import { PutResourcePermission$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutResourcePermissionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutResourcePermissionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "PutResourcePermission", {})
|
|
13
13
|
.n("SsmSapClient", "PutResourcePermissionCommand")
|
|
14
|
-
.sc(PutResourcePermission)
|
|
14
|
+
.sc(PutResourcePermission$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RegisterApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "RegisterApplication", {})
|
|
13
13
|
.n("SsmSapClient", "RegisterApplicationCommand")
|
|
14
|
-
.sc(RegisterApplication)
|
|
14
|
+
.sc(RegisterApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { StartApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "StartApplication", {})
|
|
13
13
|
.n("SsmSapClient", "StartApplicationCommand")
|
|
14
|
-
.sc(StartApplication)
|
|
14
|
+
.sc(StartApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartApplicationRefresh } from "../schemas/schemas_0";
|
|
4
|
+
import { StartApplicationRefresh$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartApplicationRefreshCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartApplicationRefreshCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "StartApplicationRefresh", {})
|
|
13
13
|
.n("SsmSapClient", "StartApplicationRefreshCommand")
|
|
14
|
-
.sc(StartApplicationRefresh)
|
|
14
|
+
.sc(StartApplicationRefresh$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartConfigurationChecks } from "../schemas/schemas_0";
|
|
4
|
+
import { StartConfigurationChecks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartConfigurationChecksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartConfigurationChecksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "StartConfigurationChecks", {})
|
|
13
13
|
.n("SsmSapClient", "StartConfigurationChecksCommand")
|
|
14
|
-
.sc(StartConfigurationChecks)
|
|
14
|
+
.sc(StartConfigurationChecks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { StopApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "StopApplication", {})
|
|
13
13
|
.n("SsmSapClient", "StopApplicationCommand")
|
|
14
|
-
.sc(StopApplication)
|
|
14
|
+
.sc(StopApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "TagResource", {})
|
|
13
13
|
.n("SsmSapClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "UntagResource", {})
|
|
13
13
|
.n("SsmSapClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateApplicationSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApplicationSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateApplicationSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateApplicationSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SsmSap", "UpdateApplicationSettings", {})
|
|
13
13
|
.n("SsmSapClient", "UpdateApplicationSettingsCommand")
|
|
14
|
-
.sc(UpdateApplicationSettings)
|
|
14
|
+
.sc(UpdateApplicationSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.ssmsap",
|
|
29
|
+
version: "2018-05-10",
|
|
30
|
+
serviceTarget: "SsmSap",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "Ssm Sap",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|