@aws-sdk/client-ssm-sap 3.569.0 → 3.573.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.
Files changed (32) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +186 -0
  3. package/dist-es/SsmSap.js +6 -0
  4. package/dist-es/commands/ListOperationEventsCommand.js +24 -0
  5. package/dist-es/commands/StartApplicationCommand.js +24 -0
  6. package/dist-es/commands/StopApplicationCommand.js +24 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +8 -0
  9. package/dist-es/pagination/ListOperationEventsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/protocols/Aws_restJson1.js +104 -0
  12. package/dist-types/SsmSap.d.ts +21 -0
  13. package/dist-types/SsmSapClient.d.ts +5 -2
  14. package/dist-types/commands/ListOperationEventsCommand.d.ts +89 -0
  15. package/dist-types/commands/StartApplicationCommand.d.ts +72 -0
  16. package/dist-types/commands/StopApplicationCommand.d.ts +76 -0
  17. package/dist-types/commands/index.d.ts +3 -0
  18. package/dist-types/models/models_0.d.ts +209 -1
  19. package/dist-types/pagination/ListOperationEventsPaginator.d.ts +7 -0
  20. package/dist-types/pagination/index.d.ts +1 -0
  21. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  22. package/dist-types/ts3.4/SsmSap.d.ts +51 -0
  23. package/dist-types/ts3.4/SsmSapClient.d.ts +18 -0
  24. package/dist-types/ts3.4/commands/ListOperationEventsCommand.d.ts +39 -0
  25. package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +38 -0
  26. package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +38 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +47 -0
  29. package/dist-types/ts3.4/pagination/ListOperationEventsPaginator.d.ts +11 -0
  30. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  31. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  32. package/package.json +8 -8
@@ -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>;
@@ -2,4 +2,5 @@ export * from "./Interfaces";
2
2
  export * from "./ListApplicationsPaginator";
3
3
  export * from "./ListComponentsPaginator";
4
4
  export * from "./ListDatabasesPaginator";
5
+ export * from "./ListOperationEventsPaginator";
5
6
  export * from "./ListOperationsPaginator";
@@ -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.569.0",
4
+ "version": "3.573.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,17 +20,17 @@
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.569.0",
24
- "@aws-sdk/client-sts": "3.569.0",
25
- "@aws-sdk/core": "3.567.0",
26
- "@aws-sdk/credential-provider-node": "3.569.0",
23
+ "@aws-sdk/client-sso-oidc": "3.572.0",
24
+ "@aws-sdk/client-sts": "3.572.0",
25
+ "@aws-sdk/core": "3.572.0",
26
+ "@aws-sdk/credential-provider-node": "3.572.0",
27
27
  "@aws-sdk/middleware-host-header": "3.567.0",
28
28
  "@aws-sdk/middleware-logger": "3.568.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.567.0",
30
- "@aws-sdk/middleware-user-agent": "3.567.0",
31
- "@aws-sdk/region-config-resolver": "3.567.0",
30
+ "@aws-sdk/middleware-user-agent": "3.572.0",
31
+ "@aws-sdk/region-config-resolver": "3.572.0",
32
32
  "@aws-sdk/types": "3.567.0",
33
- "@aws-sdk/util-endpoints": "3.567.0",
33
+ "@aws-sdk/util-endpoints": "3.572.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.567.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.568.0",
36
36
  "@smithy/config-resolver": "^2.2.0",