@aws-sdk/client-m2 3.315.0 → 3.319.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/M2.js +36 -448
- package/dist-cjs/protocols/Aws_restJson1.js +4 -4
- package/dist-es/M2.js +36 -448
- package/dist-es/protocols/Aws_restJson1.js +4 -4
- package/dist-types/M2.d.ts +43 -88
- package/dist-types/ts3.4/M2.d.ts +2 -1
- package/package.json +8 -8
package/dist-types/M2.d.ts
CHANGED
|
@@ -32,252 +32,207 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
32
32
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
33
33
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
34
34
|
import { M2Client } from "./M2Client";
|
|
35
|
-
|
|
36
|
-
* @public
|
|
37
|
-
* <p>Amazon Web Services Mainframe Modernization provides tools and resources to help you plan and implement migration and
|
|
38
|
-
* modernization from mainframes to Amazon Web Services managed runtime environments. It provides tools for
|
|
39
|
-
* analyzing existing mainframe applications, developing or updating mainframe applications
|
|
40
|
-
* using COBOL or PL/I, and implementing an automated pipeline for continuous integration and
|
|
41
|
-
* continuous delivery (CI/CD) of the applications.</p>
|
|
42
|
-
*/
|
|
43
|
-
export declare class M2 extends M2Client {
|
|
35
|
+
export interface M2 {
|
|
44
36
|
/**
|
|
45
|
-
* @
|
|
46
|
-
* <p>Cancels the running of a specific batch job execution.</p>
|
|
37
|
+
* @see {@link CancelBatchJobExecutionCommand}
|
|
47
38
|
*/
|
|
48
39
|
cancelBatchJobExecution(args: CancelBatchJobExecutionCommandInput, options?: __HttpHandlerOptions): Promise<CancelBatchJobExecutionCommandOutput>;
|
|
49
40
|
cancelBatchJobExecution(args: CancelBatchJobExecutionCommandInput, cb: (err: any, data?: CancelBatchJobExecutionCommandOutput) => void): void;
|
|
50
41
|
cancelBatchJobExecution(args: CancelBatchJobExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelBatchJobExecutionCommandOutput) => void): void;
|
|
51
42
|
/**
|
|
52
|
-
* @
|
|
53
|
-
* <p>Creates a new application with given parameters. Requires an existing runtime environment and
|
|
54
|
-
* application definition file.</p>
|
|
43
|
+
* @see {@link CreateApplicationCommand}
|
|
55
44
|
*/
|
|
56
45
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
57
46
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
58
47
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
59
48
|
/**
|
|
60
|
-
* @
|
|
61
|
-
* <p>Starts a data set import task for a specific application.</p>
|
|
49
|
+
* @see {@link CreateDataSetImportTaskCommand}
|
|
62
50
|
*/
|
|
63
51
|
createDataSetImportTask(args: CreateDataSetImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataSetImportTaskCommandOutput>;
|
|
64
52
|
createDataSetImportTask(args: CreateDataSetImportTaskCommandInput, cb: (err: any, data?: CreateDataSetImportTaskCommandOutput) => void): void;
|
|
65
53
|
createDataSetImportTask(args: CreateDataSetImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataSetImportTaskCommandOutput) => void): void;
|
|
66
54
|
/**
|
|
67
|
-
* @
|
|
68
|
-
* <p>Creates and starts a deployment to deploy an application into a runtime environment.</p>
|
|
55
|
+
* @see {@link CreateDeploymentCommand}
|
|
69
56
|
*/
|
|
70
57
|
createDeployment(args: CreateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeploymentCommandOutput>;
|
|
71
58
|
createDeployment(args: CreateDeploymentCommandInput, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
72
59
|
createDeployment(args: CreateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
73
60
|
/**
|
|
74
|
-
* @
|
|
75
|
-
* <p>Creates a runtime environment for a given runtime engine.</p>
|
|
61
|
+
* @see {@link CreateEnvironmentCommand}
|
|
76
62
|
*/
|
|
77
63
|
createEnvironment(args: CreateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentCommandOutput>;
|
|
78
64
|
createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
79
65
|
createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
80
66
|
/**
|
|
81
|
-
* @
|
|
82
|
-
* <p>Deletes a specific application. You cannot delete a running application.</p>
|
|
67
|
+
* @see {@link DeleteApplicationCommand}
|
|
83
68
|
*/
|
|
84
69
|
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
85
70
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
86
71
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
87
72
|
/**
|
|
88
|
-
* @
|
|
89
|
-
* <p>Deletes a specific application from the specific runtime environment where it was previously
|
|
90
|
-
* deployed. You cannot delete a runtime environment using DeleteEnvironment if any application has
|
|
91
|
-
* ever been deployed to it. This API removes the association of the application with the
|
|
92
|
-
* runtime environment so you can delete the environment smoothly.</p>
|
|
73
|
+
* @see {@link DeleteApplicationFromEnvironmentCommand}
|
|
93
74
|
*/
|
|
94
75
|
deleteApplicationFromEnvironment(args: DeleteApplicationFromEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationFromEnvironmentCommandOutput>;
|
|
95
76
|
deleteApplicationFromEnvironment(args: DeleteApplicationFromEnvironmentCommandInput, cb: (err: any, data?: DeleteApplicationFromEnvironmentCommandOutput) => void): void;
|
|
96
77
|
deleteApplicationFromEnvironment(args: DeleteApplicationFromEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationFromEnvironmentCommandOutput) => void): void;
|
|
97
78
|
/**
|
|
98
|
-
* @
|
|
99
|
-
* <p>Deletes a specific runtime environment. The environment cannot contain deployed applications. If
|
|
100
|
-
* it does, you must delete those applications before you delete the environment.</p>
|
|
79
|
+
* @see {@link DeleteEnvironmentCommand}
|
|
101
80
|
*/
|
|
102
81
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
|
|
103
82
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
104
83
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
105
84
|
/**
|
|
106
|
-
* @
|
|
107
|
-
* <p>Describes the details of a specific application.</p>
|
|
85
|
+
* @see {@link GetApplicationCommand}
|
|
108
86
|
*/
|
|
109
87
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
110
88
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
111
89
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
112
90
|
/**
|
|
113
|
-
* @
|
|
114
|
-
* <p>Returns details about a specific version of a specific application.</p>
|
|
91
|
+
* @see {@link GetApplicationVersionCommand}
|
|
115
92
|
*/
|
|
116
93
|
getApplicationVersion(args: GetApplicationVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationVersionCommandOutput>;
|
|
117
94
|
getApplicationVersion(args: GetApplicationVersionCommandInput, cb: (err: any, data?: GetApplicationVersionCommandOutput) => void): void;
|
|
118
95
|
getApplicationVersion(args: GetApplicationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationVersionCommandOutput) => void): void;
|
|
119
96
|
/**
|
|
120
|
-
* @
|
|
121
|
-
* <p>Gets the details of a specific batch job execution for a specific application.</p>
|
|
97
|
+
* @see {@link GetBatchJobExecutionCommand}
|
|
122
98
|
*/
|
|
123
99
|
getBatchJobExecution(args: GetBatchJobExecutionCommandInput, options?: __HttpHandlerOptions): Promise<GetBatchJobExecutionCommandOutput>;
|
|
124
100
|
getBatchJobExecution(args: GetBatchJobExecutionCommandInput, cb: (err: any, data?: GetBatchJobExecutionCommandOutput) => void): void;
|
|
125
101
|
getBatchJobExecution(args: GetBatchJobExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBatchJobExecutionCommandOutput) => void): void;
|
|
126
102
|
/**
|
|
127
|
-
* @
|
|
128
|
-
* <p>Gets the details of a specific data set.</p>
|
|
103
|
+
* @see {@link GetDataSetDetailsCommand}
|
|
129
104
|
*/
|
|
130
105
|
getDataSetDetails(args: GetDataSetDetailsCommandInput, options?: __HttpHandlerOptions): Promise<GetDataSetDetailsCommandOutput>;
|
|
131
106
|
getDataSetDetails(args: GetDataSetDetailsCommandInput, cb: (err: any, data?: GetDataSetDetailsCommandOutput) => void): void;
|
|
132
107
|
getDataSetDetails(args: GetDataSetDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataSetDetailsCommandOutput) => void): void;
|
|
133
108
|
/**
|
|
134
|
-
* @
|
|
135
|
-
* <p>Gets the status of a data set import task initiated with the <a>CreateDataSetImportTask</a> operation.</p>
|
|
109
|
+
* @see {@link GetDataSetImportTaskCommand}
|
|
136
110
|
*/
|
|
137
111
|
getDataSetImportTask(args: GetDataSetImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetDataSetImportTaskCommandOutput>;
|
|
138
112
|
getDataSetImportTask(args: GetDataSetImportTaskCommandInput, cb: (err: any, data?: GetDataSetImportTaskCommandOutput) => void): void;
|
|
139
113
|
getDataSetImportTask(args: GetDataSetImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataSetImportTaskCommandOutput) => void): void;
|
|
140
114
|
/**
|
|
141
|
-
* @
|
|
142
|
-
* <p>Gets details of a specific deployment with a given deployment identifier.</p>
|
|
115
|
+
* @see {@link GetDeploymentCommand}
|
|
143
116
|
*/
|
|
144
117
|
getDeployment(args: GetDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentCommandOutput>;
|
|
145
118
|
getDeployment(args: GetDeploymentCommandInput, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
146
119
|
getDeployment(args: GetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
147
120
|
/**
|
|
148
|
-
* @
|
|
149
|
-
* <p>Describes a specific runtime environment.</p>
|
|
121
|
+
* @see {@link GetEnvironmentCommand}
|
|
150
122
|
*/
|
|
151
123
|
getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
|
|
152
124
|
getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
153
125
|
getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
154
126
|
/**
|
|
155
|
-
* @
|
|
156
|
-
* <p>Lists the applications associated with a specific Amazon Web Services account. You can provide the
|
|
157
|
-
* unique identifier of a specific runtime environment in a query parameter to see all applications
|
|
158
|
-
* associated with that environment.</p>
|
|
127
|
+
* @see {@link ListApplicationsCommand}
|
|
159
128
|
*/
|
|
160
129
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
161
130
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
162
131
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
163
132
|
/**
|
|
164
|
-
* @
|
|
165
|
-
* <p>Returns a list of the application versions for a specific application.</p>
|
|
133
|
+
* @see {@link ListApplicationVersionsCommand}
|
|
166
134
|
*/
|
|
167
135
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationVersionsCommandOutput>;
|
|
168
136
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
|
|
169
137
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
|
|
170
138
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p>Lists all the available batch job definitions based on the batch job resources uploaded
|
|
173
|
-
* during the application creation. You can use the batch job definitions in the list to start
|
|
174
|
-
* a batch job.</p>
|
|
139
|
+
* @see {@link ListBatchJobDefinitionsCommand}
|
|
175
140
|
*/
|
|
176
141
|
listBatchJobDefinitions(args: ListBatchJobDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListBatchJobDefinitionsCommandOutput>;
|
|
177
142
|
listBatchJobDefinitions(args: ListBatchJobDefinitionsCommandInput, cb: (err: any, data?: ListBatchJobDefinitionsCommandOutput) => void): void;
|
|
178
143
|
listBatchJobDefinitions(args: ListBatchJobDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBatchJobDefinitionsCommandOutput) => void): void;
|
|
179
144
|
/**
|
|
180
|
-
* @
|
|
181
|
-
* <p>Lists historical, current, and scheduled batch job executions for a specific
|
|
182
|
-
* application.</p>
|
|
145
|
+
* @see {@link ListBatchJobExecutionsCommand}
|
|
183
146
|
*/
|
|
184
147
|
listBatchJobExecutions(args: ListBatchJobExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListBatchJobExecutionsCommandOutput>;
|
|
185
148
|
listBatchJobExecutions(args: ListBatchJobExecutionsCommandInput, cb: (err: any, data?: ListBatchJobExecutionsCommandOutput) => void): void;
|
|
186
149
|
listBatchJobExecutions(args: ListBatchJobExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBatchJobExecutionsCommandOutput) => void): void;
|
|
187
150
|
/**
|
|
188
|
-
* @
|
|
189
|
-
* <p>Lists the data set imports for the specified application.</p>
|
|
151
|
+
* @see {@link ListDataSetImportHistoryCommand}
|
|
190
152
|
*/
|
|
191
153
|
listDataSetImportHistory(args: ListDataSetImportHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListDataSetImportHistoryCommandOutput>;
|
|
192
154
|
listDataSetImportHistory(args: ListDataSetImportHistoryCommandInput, cb: (err: any, data?: ListDataSetImportHistoryCommandOutput) => void): void;
|
|
193
155
|
listDataSetImportHistory(args: ListDataSetImportHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataSetImportHistoryCommandOutput) => void): void;
|
|
194
156
|
/**
|
|
195
|
-
* @
|
|
196
|
-
* <p>Lists the data sets imported for a specific application. In Amazon Web Services Mainframe Modernization, data sets are
|
|
197
|
-
* associated with applications deployed on runtime environments. This is known as importing data
|
|
198
|
-
* sets. Currently, Amazon Web Services Mainframe Modernization can import data sets into catalogs using <a href="https://docs.aws.amazon.com/m2/latest/APIReference/API_CreateDataSetImportTask.html">CreateDataSetImportTask</a>.</p>
|
|
157
|
+
* @see {@link ListDataSetsCommand}
|
|
199
158
|
*/
|
|
200
159
|
listDataSets(args: ListDataSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataSetsCommandOutput>;
|
|
201
160
|
listDataSets(args: ListDataSetsCommandInput, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
|
|
202
161
|
listDataSets(args: ListDataSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
|
|
203
162
|
/**
|
|
204
|
-
* @
|
|
205
|
-
* <p>Returns a list of all deployments of a specific application. A deployment is a
|
|
206
|
-
* combination of a specific application and a specific version of that application. Each
|
|
207
|
-
* deployment is mapped to a particular application version.</p>
|
|
163
|
+
* @see {@link ListDeploymentsCommand}
|
|
208
164
|
*/
|
|
209
165
|
listDeployments(args: ListDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeploymentsCommandOutput>;
|
|
210
166
|
listDeployments(args: ListDeploymentsCommandInput, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
211
167
|
listDeployments(args: ListDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
212
168
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p>Lists the available engine versions.</p>
|
|
169
|
+
* @see {@link ListEngineVersionsCommand}
|
|
215
170
|
*/
|
|
216
171
|
listEngineVersions(args: ListEngineVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEngineVersionsCommandOutput>;
|
|
217
172
|
listEngineVersions(args: ListEngineVersionsCommandInput, cb: (err: any, data?: ListEngineVersionsCommandOutput) => void): void;
|
|
218
173
|
listEngineVersions(args: ListEngineVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngineVersionsCommandOutput) => void): void;
|
|
219
174
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>Lists the runtime environments.</p>
|
|
175
|
+
* @see {@link ListEnvironmentsCommand}
|
|
222
176
|
*/
|
|
223
177
|
listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
|
|
224
178
|
listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
225
179
|
listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
226
180
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p>Lists the tags for the specified resource.</p>
|
|
181
|
+
* @see {@link ListTagsForResourceCommand}
|
|
229
182
|
*/
|
|
230
183
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
231
184
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
232
185
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
233
186
|
/**
|
|
234
|
-
* @
|
|
235
|
-
* <p>Starts an application that is currently stopped.</p>
|
|
187
|
+
* @see {@link StartApplicationCommand}
|
|
236
188
|
*/
|
|
237
189
|
startApplication(args: StartApplicationCommandInput, options?: __HttpHandlerOptions): Promise<StartApplicationCommandOutput>;
|
|
238
190
|
startApplication(args: StartApplicationCommandInput, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
239
191
|
startApplication(args: StartApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
240
192
|
/**
|
|
241
|
-
* @
|
|
242
|
-
* <p>Starts a batch job and returns the unique identifier of this execution of the batch job.
|
|
243
|
-
* The associated application must be running in order to start the batch job.</p>
|
|
193
|
+
* @see {@link StartBatchJobCommand}
|
|
244
194
|
*/
|
|
245
195
|
startBatchJob(args: StartBatchJobCommandInput, options?: __HttpHandlerOptions): Promise<StartBatchJobCommandOutput>;
|
|
246
196
|
startBatchJob(args: StartBatchJobCommandInput, cb: (err: any, data?: StartBatchJobCommandOutput) => void): void;
|
|
247
197
|
startBatchJob(args: StartBatchJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBatchJobCommandOutput) => void): void;
|
|
248
198
|
/**
|
|
249
|
-
* @
|
|
250
|
-
* <p>Stops a running application.</p>
|
|
199
|
+
* @see {@link StopApplicationCommand}
|
|
251
200
|
*/
|
|
252
201
|
stopApplication(args: StopApplicationCommandInput, options?: __HttpHandlerOptions): Promise<StopApplicationCommandOutput>;
|
|
253
202
|
stopApplication(args: StopApplicationCommandInput, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
254
203
|
stopApplication(args: StopApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
255
204
|
/**
|
|
256
|
-
* @
|
|
257
|
-
* <p>Adds one or more tags to the specified resource.</p>
|
|
205
|
+
* @see {@link TagResourceCommand}
|
|
258
206
|
*/
|
|
259
207
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
260
208
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
261
209
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
262
210
|
/**
|
|
263
|
-
* @
|
|
264
|
-
* <p>Removes one or more tags from the specified resource.</p>
|
|
211
|
+
* @see {@link UntagResourceCommand}
|
|
265
212
|
*/
|
|
266
213
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
267
214
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
268
215
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
269
216
|
/**
|
|
270
|
-
* @
|
|
271
|
-
* <p>Updates an application and creates a new version.</p>
|
|
217
|
+
* @see {@link UpdateApplicationCommand}
|
|
272
218
|
*/
|
|
273
219
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
274
220
|
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
275
221
|
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
276
222
|
/**
|
|
277
|
-
* @
|
|
278
|
-
* <p>Updates the configuration details for a specific runtime environment.</p>
|
|
223
|
+
* @see {@link UpdateEnvironmentCommand}
|
|
279
224
|
*/
|
|
280
225
|
updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
|
|
281
226
|
updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
282
227
|
updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
283
228
|
}
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
* <p>Amazon Web Services Mainframe Modernization provides tools and resources to help you plan and implement migration and
|
|
232
|
+
* modernization from mainframes to Amazon Web Services managed runtime environments. It provides tools for
|
|
233
|
+
* analyzing existing mainframe applications, developing or updating mainframe applications
|
|
234
|
+
* using COBOL or PL/I, and implementing an automated pipeline for continuous integration and
|
|
235
|
+
* continuous delivery (CI/CD) of the applications.</p>
|
|
236
|
+
*/
|
|
237
|
+
export declare class M2 extends M2Client implements M2 {
|
|
238
|
+
}
|
package/dist-types/ts3.4/M2.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ import {
|
|
|
128
128
|
UpdateEnvironmentCommandOutput,
|
|
129
129
|
} from "./commands/UpdateEnvironmentCommand";
|
|
130
130
|
import { M2Client } from "./M2Client";
|
|
131
|
-
export
|
|
131
|
+
export interface M2 {
|
|
132
132
|
cancelBatchJobExecution(
|
|
133
133
|
args: CancelBatchJobExecutionCommandInput,
|
|
134
134
|
options?: __HttpHandlerOptions
|
|
@@ -546,3 +546,4 @@ export declare class M2 extends M2Client {
|
|
|
546
546
|
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
547
547
|
): void;
|
|
548
548
|
}
|
|
549
|
+
export declare class M2 extends M2Client implements M2 {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-m2",
|
|
3
3
|
"description": "AWS SDK for JavaScript M2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.319.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|