@aws-sdk/client-ssm-sap 3.572.0 → 3.574.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 +24 -0
- package/dist-cjs/index.js +186 -0
- package/dist-es/SsmSap.js +6 -0
- package/dist-es/commands/ListOperationEventsCommand.js +24 -0
- package/dist-es/commands/StartApplicationCommand.js +24 -0
- package/dist-es/commands/StopApplicationCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/pagination/ListOperationEventsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +104 -0
- package/dist-types/SsmSap.d.ts +21 -0
- package/dist-types/SsmSapClient.d.ts +5 -2
- package/dist-types/commands/ListOperationEventsCommand.d.ts +89 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +72 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +76 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +209 -1
- package/dist-types/pagination/ListOperationEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/SsmSap.d.ts +51 -0
- package/dist-types/ts3.4/SsmSapClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/ListOperationEventsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -0
- package/dist-types/ts3.4/pagination/ListOperationEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +3 -3
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListOperationEventsCommandInput,
|
|
4
|
+
ListOperationEventsCommandOutput,
|
|
5
|
+
} from "../commands/ListOperationEventsCommand";
|
|
6
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListOperationEvents: (
|
|
8
|
+
config: SsmSapPaginationConfiguration,
|
|
9
|
+
input: ListOperationEventsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListOperationEventsCommandOutput>;
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
ListDatabasesCommandInput,
|
|
44
44
|
ListDatabasesCommandOutput,
|
|
45
45
|
} from "../commands/ListDatabasesCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListOperationEventsCommandInput,
|
|
48
|
+
ListOperationEventsCommandOutput,
|
|
49
|
+
} from "../commands/ListOperationEventsCommand";
|
|
46
50
|
import {
|
|
47
51
|
ListOperationsCommandInput,
|
|
48
52
|
ListOperationsCommandOutput,
|
|
@@ -59,10 +63,18 @@ import {
|
|
|
59
63
|
RegisterApplicationCommandInput,
|
|
60
64
|
RegisterApplicationCommandOutput,
|
|
61
65
|
} from "../commands/RegisterApplicationCommand";
|
|
66
|
+
import {
|
|
67
|
+
StartApplicationCommandInput,
|
|
68
|
+
StartApplicationCommandOutput,
|
|
69
|
+
} from "../commands/StartApplicationCommand";
|
|
62
70
|
import {
|
|
63
71
|
StartApplicationRefreshCommandInput,
|
|
64
72
|
StartApplicationRefreshCommandOutput,
|
|
65
73
|
} from "../commands/StartApplicationRefreshCommand";
|
|
74
|
+
import {
|
|
75
|
+
StopApplicationCommandInput,
|
|
76
|
+
StopApplicationCommandOutput,
|
|
77
|
+
} from "../commands/StopApplicationCommand";
|
|
66
78
|
import {
|
|
67
79
|
TagResourceCommandInput,
|
|
68
80
|
TagResourceCommandOutput,
|
|
@@ -115,6 +127,10 @@ export declare const se_ListDatabasesCommand: (
|
|
|
115
127
|
input: ListDatabasesCommandInput,
|
|
116
128
|
context: __SerdeContext
|
|
117
129
|
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_ListOperationEventsCommand: (
|
|
131
|
+
input: ListOperationEventsCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
118
134
|
export declare const se_ListOperationsCommand: (
|
|
119
135
|
input: ListOperationsCommandInput,
|
|
120
136
|
context: __SerdeContext
|
|
@@ -131,10 +147,18 @@ export declare const se_RegisterApplicationCommand: (
|
|
|
131
147
|
input: RegisterApplicationCommandInput,
|
|
132
148
|
context: __SerdeContext
|
|
133
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_StartApplicationCommand: (
|
|
151
|
+
input: StartApplicationCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
134
154
|
export declare const se_StartApplicationRefreshCommand: (
|
|
135
155
|
input: StartApplicationRefreshCommandInput,
|
|
136
156
|
context: __SerdeContext
|
|
137
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_StopApplicationCommand: (
|
|
159
|
+
input: StopApplicationCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
138
162
|
export declare const se_TagResourceCommand: (
|
|
139
163
|
input: TagResourceCommandInput,
|
|
140
164
|
context: __SerdeContext
|
|
@@ -187,6 +211,10 @@ export declare const de_ListDatabasesCommand: (
|
|
|
187
211
|
output: __HttpResponse,
|
|
188
212
|
context: __SerdeContext
|
|
189
213
|
) => Promise<ListDatabasesCommandOutput>;
|
|
214
|
+
export declare const de_ListOperationEventsCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<ListOperationEventsCommandOutput>;
|
|
190
218
|
export declare const de_ListOperationsCommand: (
|
|
191
219
|
output: __HttpResponse,
|
|
192
220
|
context: __SerdeContext
|
|
@@ -203,10 +231,18 @@ export declare const de_RegisterApplicationCommand: (
|
|
|
203
231
|
output: __HttpResponse,
|
|
204
232
|
context: __SerdeContext
|
|
205
233
|
) => Promise<RegisterApplicationCommandOutput>;
|
|
234
|
+
export declare const de_StartApplicationCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<StartApplicationCommandOutput>;
|
|
206
238
|
export declare const de_StartApplicationRefreshCommand: (
|
|
207
239
|
output: __HttpResponse,
|
|
208
240
|
context: __SerdeContext
|
|
209
241
|
) => Promise<StartApplicationRefreshCommandOutput>;
|
|
242
|
+
export declare const de_StopApplicationCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<StopApplicationCommandOutput>;
|
|
210
246
|
export declare const de_TagResourceCommand: (
|
|
211
247
|
output: __HttpResponse,
|
|
212
248
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-sap",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Sap Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.574.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-ssm-sap",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.574.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.574.0",
|
|
25
25
|
"@aws-sdk/core": "3.572.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.572.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.567.0",
|