@aws-sdk/client-m2 3.296.0 → 3.297.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-types/M2.d.ts +33 -0
- package/dist-types/M2Client.d.ts +24 -4
- package/dist-types/commands/CancelBatchJobExecutionCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataSetImportTaskCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationFromEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/GetBatchJobExecutionCommand.d.ts +16 -0
- package/dist-types/commands/GetDataSetDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetDataSetImportTaskCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListBatchJobDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListBatchJobExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDataSetImportHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListDataSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEngineVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StartBatchJobCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/models/M2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +291 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBatchJobDefinitionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBatchJobExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDataSetImportHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDataSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEngineVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/package.json +3 -3
package/dist-types/M2.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
|
|
|
33
33
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
34
34
|
import { M2Client } from "./M2Client";
|
|
35
35
|
/**
|
|
36
|
+
* @public
|
|
36
37
|
* <p>Amazon Web Services Mainframe Modernization provides tools and resources to help you plan and implement migration and
|
|
37
38
|
* modernization from mainframes to Amazon Web Services managed runtime environments. It provides tools for
|
|
38
39
|
* analyzing existing mainframe applications, developing or updating mainframe applications
|
|
@@ -41,12 +42,14 @@ import { M2Client } from "./M2Client";
|
|
|
41
42
|
*/
|
|
42
43
|
export declare class M2 extends M2Client {
|
|
43
44
|
/**
|
|
45
|
+
* @public
|
|
44
46
|
* <p>Cancels the running of a specific batch job execution.</p>
|
|
45
47
|
*/
|
|
46
48
|
cancelBatchJobExecution(args: CancelBatchJobExecutionCommandInput, options?: __HttpHandlerOptions): Promise<CancelBatchJobExecutionCommandOutput>;
|
|
47
49
|
cancelBatchJobExecution(args: CancelBatchJobExecutionCommandInput, cb: (err: any, data?: CancelBatchJobExecutionCommandOutput) => void): void;
|
|
48
50
|
cancelBatchJobExecution(args: CancelBatchJobExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelBatchJobExecutionCommandOutput) => void): void;
|
|
49
51
|
/**
|
|
52
|
+
* @public
|
|
50
53
|
* <p>Creates a new application with given parameters. Requires an existing runtime environment and
|
|
51
54
|
* application definition file.</p>
|
|
52
55
|
*/
|
|
@@ -54,30 +57,35 @@ export declare class M2 extends M2Client {
|
|
|
54
57
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
55
58
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
56
59
|
/**
|
|
60
|
+
* @public
|
|
57
61
|
* <p>Starts a data set import task for a specific application.</p>
|
|
58
62
|
*/
|
|
59
63
|
createDataSetImportTask(args: CreateDataSetImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataSetImportTaskCommandOutput>;
|
|
60
64
|
createDataSetImportTask(args: CreateDataSetImportTaskCommandInput, cb: (err: any, data?: CreateDataSetImportTaskCommandOutput) => void): void;
|
|
61
65
|
createDataSetImportTask(args: CreateDataSetImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataSetImportTaskCommandOutput) => void): void;
|
|
62
66
|
/**
|
|
67
|
+
* @public
|
|
63
68
|
* <p>Creates and starts a deployment to deploy an application into a runtime environment.</p>
|
|
64
69
|
*/
|
|
65
70
|
createDeployment(args: CreateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeploymentCommandOutput>;
|
|
66
71
|
createDeployment(args: CreateDeploymentCommandInput, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
67
72
|
createDeployment(args: CreateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
68
73
|
/**
|
|
74
|
+
* @public
|
|
69
75
|
* <p>Creates a runtime environment for a given runtime engine.</p>
|
|
70
76
|
*/
|
|
71
77
|
createEnvironment(args: CreateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentCommandOutput>;
|
|
72
78
|
createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
73
79
|
createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
74
80
|
/**
|
|
81
|
+
* @public
|
|
75
82
|
* <p>Deletes a specific application. You cannot delete a running application.</p>
|
|
76
83
|
*/
|
|
77
84
|
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
78
85
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
79
86
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
80
87
|
/**
|
|
88
|
+
* @public
|
|
81
89
|
* <p>Deletes a specific application from the specific runtime environment where it was previously
|
|
82
90
|
* deployed. You cannot delete a runtime environment using DeleteEnvironment if any application has
|
|
83
91
|
* ever been deployed to it. This API removes the association of the application with the
|
|
@@ -87,6 +95,7 @@ export declare class M2 extends M2Client {
|
|
|
87
95
|
deleteApplicationFromEnvironment(args: DeleteApplicationFromEnvironmentCommandInput, cb: (err: any, data?: DeleteApplicationFromEnvironmentCommandOutput) => void): void;
|
|
88
96
|
deleteApplicationFromEnvironment(args: DeleteApplicationFromEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationFromEnvironmentCommandOutput) => void): void;
|
|
89
97
|
/**
|
|
98
|
+
* @public
|
|
90
99
|
* <p>Deletes a specific runtime environment. The environment cannot contain deployed applications. If
|
|
91
100
|
* it does, you must delete those applications before you delete the environment.</p>
|
|
92
101
|
*/
|
|
@@ -94,48 +103,56 @@ export declare class M2 extends M2Client {
|
|
|
94
103
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
95
104
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
96
105
|
/**
|
|
106
|
+
* @public
|
|
97
107
|
* <p>Describes the details of a specific application.</p>
|
|
98
108
|
*/
|
|
99
109
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
100
110
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
101
111
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
102
112
|
/**
|
|
113
|
+
* @public
|
|
103
114
|
* <p>Returns details about a specific version of a specific application.</p>
|
|
104
115
|
*/
|
|
105
116
|
getApplicationVersion(args: GetApplicationVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationVersionCommandOutput>;
|
|
106
117
|
getApplicationVersion(args: GetApplicationVersionCommandInput, cb: (err: any, data?: GetApplicationVersionCommandOutput) => void): void;
|
|
107
118
|
getApplicationVersion(args: GetApplicationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationVersionCommandOutput) => void): void;
|
|
108
119
|
/**
|
|
120
|
+
* @public
|
|
109
121
|
* <p>Gets the details of a specific batch job execution for a specific application.</p>
|
|
110
122
|
*/
|
|
111
123
|
getBatchJobExecution(args: GetBatchJobExecutionCommandInput, options?: __HttpHandlerOptions): Promise<GetBatchJobExecutionCommandOutput>;
|
|
112
124
|
getBatchJobExecution(args: GetBatchJobExecutionCommandInput, cb: (err: any, data?: GetBatchJobExecutionCommandOutput) => void): void;
|
|
113
125
|
getBatchJobExecution(args: GetBatchJobExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBatchJobExecutionCommandOutput) => void): void;
|
|
114
126
|
/**
|
|
127
|
+
* @public
|
|
115
128
|
* <p>Gets the details of a specific data set.</p>
|
|
116
129
|
*/
|
|
117
130
|
getDataSetDetails(args: GetDataSetDetailsCommandInput, options?: __HttpHandlerOptions): Promise<GetDataSetDetailsCommandOutput>;
|
|
118
131
|
getDataSetDetails(args: GetDataSetDetailsCommandInput, cb: (err: any, data?: GetDataSetDetailsCommandOutput) => void): void;
|
|
119
132
|
getDataSetDetails(args: GetDataSetDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataSetDetailsCommandOutput) => void): void;
|
|
120
133
|
/**
|
|
134
|
+
* @public
|
|
121
135
|
* <p>Gets the status of a data set import task initiated with the <a>CreateDataSetImportTask</a> operation.</p>
|
|
122
136
|
*/
|
|
123
137
|
getDataSetImportTask(args: GetDataSetImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetDataSetImportTaskCommandOutput>;
|
|
124
138
|
getDataSetImportTask(args: GetDataSetImportTaskCommandInput, cb: (err: any, data?: GetDataSetImportTaskCommandOutput) => void): void;
|
|
125
139
|
getDataSetImportTask(args: GetDataSetImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataSetImportTaskCommandOutput) => void): void;
|
|
126
140
|
/**
|
|
141
|
+
* @public
|
|
127
142
|
* <p>Gets details of a specific deployment with a given deployment identifier.</p>
|
|
128
143
|
*/
|
|
129
144
|
getDeployment(args: GetDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentCommandOutput>;
|
|
130
145
|
getDeployment(args: GetDeploymentCommandInput, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
131
146
|
getDeployment(args: GetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
132
147
|
/**
|
|
148
|
+
* @public
|
|
133
149
|
* <p>Describes a specific runtime environment.</p>
|
|
134
150
|
*/
|
|
135
151
|
getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
|
|
136
152
|
getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
137
153
|
getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
138
154
|
/**
|
|
155
|
+
* @public
|
|
139
156
|
* <p>Lists the applications associated with a specific Amazon Web Services account. You can provide the
|
|
140
157
|
* unique identifier of a specific runtime environment in a query parameter to see all applications
|
|
141
158
|
* associated with that environment.</p>
|
|
@@ -144,12 +161,14 @@ export declare class M2 extends M2Client {
|
|
|
144
161
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
145
162
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
146
163
|
/**
|
|
164
|
+
* @public
|
|
147
165
|
* <p>Returns a list of the application versions for a specific application.</p>
|
|
148
166
|
*/
|
|
149
167
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationVersionsCommandOutput>;
|
|
150
168
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
|
|
151
169
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
|
|
152
170
|
/**
|
|
171
|
+
* @public
|
|
153
172
|
* <p>Lists all the available batch job definitions based on the batch job resources uploaded
|
|
154
173
|
* during the application creation. You can use the batch job definitions in the list to start
|
|
155
174
|
* a batch job.</p>
|
|
@@ -158,6 +177,7 @@ export declare class M2 extends M2Client {
|
|
|
158
177
|
listBatchJobDefinitions(args: ListBatchJobDefinitionsCommandInput, cb: (err: any, data?: ListBatchJobDefinitionsCommandOutput) => void): void;
|
|
159
178
|
listBatchJobDefinitions(args: ListBatchJobDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBatchJobDefinitionsCommandOutput) => void): void;
|
|
160
179
|
/**
|
|
180
|
+
* @public
|
|
161
181
|
* <p>Lists historical, current, and scheduled batch job executions for a specific
|
|
162
182
|
* application.</p>
|
|
163
183
|
*/
|
|
@@ -165,12 +185,14 @@ export declare class M2 extends M2Client {
|
|
|
165
185
|
listBatchJobExecutions(args: ListBatchJobExecutionsCommandInput, cb: (err: any, data?: ListBatchJobExecutionsCommandOutput) => void): void;
|
|
166
186
|
listBatchJobExecutions(args: ListBatchJobExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBatchJobExecutionsCommandOutput) => void): void;
|
|
167
187
|
/**
|
|
188
|
+
* @public
|
|
168
189
|
* <p>Lists the data set imports for the specified application.</p>
|
|
169
190
|
*/
|
|
170
191
|
listDataSetImportHistory(args: ListDataSetImportHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListDataSetImportHistoryCommandOutput>;
|
|
171
192
|
listDataSetImportHistory(args: ListDataSetImportHistoryCommandInput, cb: (err: any, data?: ListDataSetImportHistoryCommandOutput) => void): void;
|
|
172
193
|
listDataSetImportHistory(args: ListDataSetImportHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataSetImportHistoryCommandOutput) => void): void;
|
|
173
194
|
/**
|
|
195
|
+
* @public
|
|
174
196
|
* <p>Lists the data sets imported for a specific application. In Amazon Web Services Mainframe Modernization, data sets are
|
|
175
197
|
* associated with applications deployed on runtime environments. This is known as importing data
|
|
176
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>
|
|
@@ -179,6 +201,7 @@ export declare class M2 extends M2Client {
|
|
|
179
201
|
listDataSets(args: ListDataSetsCommandInput, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
|
|
180
202
|
listDataSets(args: ListDataSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
|
|
181
203
|
/**
|
|
204
|
+
* @public
|
|
182
205
|
* <p>Returns a list of all deployments of a specific application. A deployment is a
|
|
183
206
|
* combination of a specific application and a specific version of that application. Each
|
|
184
207
|
* deployment is mapped to a particular application version.</p>
|
|
@@ -187,30 +210,35 @@ export declare class M2 extends M2Client {
|
|
|
187
210
|
listDeployments(args: ListDeploymentsCommandInput, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
188
211
|
listDeployments(args: ListDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
189
212
|
/**
|
|
213
|
+
* @public
|
|
190
214
|
* <p>Lists the available engine versions.</p>
|
|
191
215
|
*/
|
|
192
216
|
listEngineVersions(args: ListEngineVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEngineVersionsCommandOutput>;
|
|
193
217
|
listEngineVersions(args: ListEngineVersionsCommandInput, cb: (err: any, data?: ListEngineVersionsCommandOutput) => void): void;
|
|
194
218
|
listEngineVersions(args: ListEngineVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngineVersionsCommandOutput) => void): void;
|
|
195
219
|
/**
|
|
220
|
+
* @public
|
|
196
221
|
* <p>Lists the runtime environments.</p>
|
|
197
222
|
*/
|
|
198
223
|
listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
|
|
199
224
|
listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
200
225
|
listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
201
226
|
/**
|
|
227
|
+
* @public
|
|
202
228
|
* <p>Lists the tags for the specified resource.</p>
|
|
203
229
|
*/
|
|
204
230
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
205
231
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
206
232
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
207
233
|
/**
|
|
234
|
+
* @public
|
|
208
235
|
* <p>Starts an application that is currently stopped.</p>
|
|
209
236
|
*/
|
|
210
237
|
startApplication(args: StartApplicationCommandInput, options?: __HttpHandlerOptions): Promise<StartApplicationCommandOutput>;
|
|
211
238
|
startApplication(args: StartApplicationCommandInput, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
212
239
|
startApplication(args: StartApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
213
240
|
/**
|
|
241
|
+
* @public
|
|
214
242
|
* <p>Starts a batch job and returns the unique identifier of this execution of the batch job.
|
|
215
243
|
* The associated application must be running in order to start the batch job.</p>
|
|
216
244
|
*/
|
|
@@ -218,30 +246,35 @@ export declare class M2 extends M2Client {
|
|
|
218
246
|
startBatchJob(args: StartBatchJobCommandInput, cb: (err: any, data?: StartBatchJobCommandOutput) => void): void;
|
|
219
247
|
startBatchJob(args: StartBatchJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBatchJobCommandOutput) => void): void;
|
|
220
248
|
/**
|
|
249
|
+
* @public
|
|
221
250
|
* <p>Stops a running application.</p>
|
|
222
251
|
*/
|
|
223
252
|
stopApplication(args: StopApplicationCommandInput, options?: __HttpHandlerOptions): Promise<StopApplicationCommandOutput>;
|
|
224
253
|
stopApplication(args: StopApplicationCommandInput, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
225
254
|
stopApplication(args: StopApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
226
255
|
/**
|
|
256
|
+
* @public
|
|
227
257
|
* <p>Adds one or more tags to the specified resource.</p>
|
|
228
258
|
*/
|
|
229
259
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
230
260
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
231
261
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
232
262
|
/**
|
|
263
|
+
* @public
|
|
233
264
|
* <p>Removes one or more tags from the specified resource.</p>
|
|
234
265
|
*/
|
|
235
266
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
236
267
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
237
268
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
238
269
|
/**
|
|
270
|
+
* @public
|
|
239
271
|
* <p>Updates an application and creates a new version.</p>
|
|
240
272
|
*/
|
|
241
273
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
242
274
|
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
243
275
|
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
244
276
|
/**
|
|
277
|
+
* @public
|
|
245
278
|
* <p>Updates the configuration details for a specific runtime environment.</p>
|
|
246
279
|
*/
|
|
247
280
|
updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
|
package/dist-types/M2Client.d.ts
CHANGED
|
@@ -40,15 +40,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
40
40
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
41
41
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
42
42
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
43
46
|
export type ServiceInputTypes = CancelBatchJobExecutionCommandInput | CreateApplicationCommandInput | CreateDataSetImportTaskCommandInput | CreateDeploymentCommandInput | CreateEnvironmentCommandInput | DeleteApplicationCommandInput | DeleteApplicationFromEnvironmentCommandInput | DeleteEnvironmentCommandInput | GetApplicationCommandInput | GetApplicationVersionCommandInput | GetBatchJobExecutionCommandInput | GetDataSetDetailsCommandInput | GetDataSetImportTaskCommandInput | GetDeploymentCommandInput | GetEnvironmentCommandInput | ListApplicationVersionsCommandInput | ListApplicationsCommandInput | ListBatchJobDefinitionsCommandInput | ListBatchJobExecutionsCommandInput | ListDataSetImportHistoryCommandInput | ListDataSetsCommandInput | ListDeploymentsCommandInput | ListEngineVersionsCommandInput | ListEnvironmentsCommandInput | ListTagsForResourceCommandInput | StartApplicationCommandInput | StartBatchJobCommandInput | StopApplicationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateEnvironmentCommandInput;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
44
50
|
export type ServiceOutputTypes = CancelBatchJobExecutionCommandOutput | CreateApplicationCommandOutput | CreateDataSetImportTaskCommandOutput | CreateDeploymentCommandOutput | CreateEnvironmentCommandOutput | DeleteApplicationCommandOutput | DeleteApplicationFromEnvironmentCommandOutput | DeleteEnvironmentCommandOutput | GetApplicationCommandOutput | GetApplicationVersionCommandOutput | GetBatchJobExecutionCommandOutput | GetDataSetDetailsCommandOutput | GetDataSetImportTaskCommandOutput | GetDeploymentCommandOutput | GetEnvironmentCommandOutput | ListApplicationVersionsCommandOutput | ListApplicationsCommandOutput | ListBatchJobDefinitionsCommandOutput | ListBatchJobExecutionsCommandOutput | ListDataSetImportHistoryCommandOutput | ListDataSetsCommandOutput | ListDeploymentsCommandOutput | ListEngineVersionsCommandOutput | ListEnvironmentsCommandOutput | ListTagsForResourceCommandOutput | StartApplicationCommandOutput | StartBatchJobCommandOutput | StopApplicationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateEnvironmentCommandOutput;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
45
54
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
46
55
|
/**
|
|
47
56
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
48
57
|
*/
|
|
49
58
|
requestHandler?: __HttpHandler;
|
|
50
59
|
/**
|
|
51
|
-
* A constructor for a class implementing the {@link
|
|
60
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
52
61
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
53
62
|
* @internal
|
|
54
63
|
*/
|
|
@@ -138,23 +147,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
138
147
|
*/
|
|
139
148
|
logger?: __Logger;
|
|
140
149
|
/**
|
|
141
|
-
* The {@link
|
|
150
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
142
151
|
*/
|
|
143
152
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
144
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
145
157
|
type M2ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
146
158
|
/**
|
|
147
|
-
*
|
|
159
|
+
* @public
|
|
160
|
+
*
|
|
161
|
+
* The configuration interface of M2Client class constructor that set the region, credentials and other options.
|
|
148
162
|
*/
|
|
149
163
|
export interface M2ClientConfig extends M2ClientConfigType {
|
|
150
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
151
168
|
type M2ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
152
169
|
/**
|
|
153
|
-
*
|
|
170
|
+
* @public
|
|
171
|
+
*
|
|
172
|
+
* The resolved configuration interface of M2Client class. This is resolved and normalized from the {@link M2ClientConfig | constructor configuration interface}.
|
|
154
173
|
*/
|
|
155
174
|
export interface M2ClientResolvedConfig extends M2ClientResolvedConfigType {
|
|
156
175
|
}
|
|
157
176
|
/**
|
|
177
|
+
* @public
|
|
158
178
|
* <p>Amazon Web Services Mainframe Modernization provides tools and resources to help you plan and implement migration and
|
|
159
179
|
* modernization from mainframes to Amazon Web Services managed runtime environments. It provides tools for
|
|
160
180
|
* analyzing existing mainframe applications, developing or updating mainframe applications
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { CancelBatchJobExecutionRequest, CancelBatchJobExecutionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelBatchJobExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelBatchJobExecutionCommandInput extends CancelBatchJobExecutionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelBatchJobExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelBatchJobExecutionCommandOutput extends CancelBatchJobExecutionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Cancels the running of a specific batch job execution.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CancelBatchJobExecutionCommandOutput extends CancelBatchJobExec
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CancelBatchJobExecutionCommandInput - {@link CancelBatchJobExecutionCommandInput}
|
|
34
|
+
* @returns {@link CancelBatchJobExecutionCommandOutput}
|
|
28
35
|
* @see {@link CancelBatchJobExecutionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CancelBatchJobExecutionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CancelBatchJobExecutionCommandOutput extends CancelBatchJobExec
|
|
|
52
59
|
export declare class CancelBatchJobExecutionCommand extends $Command<CancelBatchJobExecutionCommandInput, CancelBatchJobExecutionCommandOutput, M2ClientResolvedConfig> {
|
|
53
60
|
readonly input: CancelBatchJobExecutionCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CancelBatchJobExecutionCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelBatchJobExecutionCommandInput, CancelBatchJobExecutionCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new application with given parameters. Requires an existing runtime environment and
|
|
18
23
|
* application definition file.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
35
|
+
* @returns {@link CreateApplicationCommandOutput}
|
|
29
36
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
53
60
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, M2ClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateApplicationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateApplicationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { CreateDataSetImportTaskRequest, CreateDataSetImportTaskResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDataSetImportTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDataSetImportTaskCommandInput extends CreateDataSetImportTaskRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDataSetImportTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDataSetImportTaskCommandOutput extends CreateDataSetImportTaskResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a data set import task for a specific application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateDataSetImportTaskCommandOutput extends CreateDataSetImpor
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateDataSetImportTaskCommandInput - {@link CreateDataSetImportTaskCommandInput}
|
|
34
|
+
* @returns {@link CreateDataSetImportTaskCommandOutput}
|
|
28
35
|
* @see {@link CreateDataSetImportTaskCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateDataSetImportTaskCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateDataSetImportTaskCommandOutput extends CreateDataSetImpor
|
|
|
55
62
|
export declare class CreateDataSetImportTaskCommand extends $Command<CreateDataSetImportTaskCommandInput, CreateDataSetImportTaskCommandOutput, M2ClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateDataSetImportTaskCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateDataSetImportTaskCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataSetImportTaskCommandInput, CreateDataSetImportTaskCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDeploymentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDeploymentCommandInput extends CreateDeploymentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDeploymentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates and starts a deployment to deploy an application into a runtime environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateDeploymentCommandInput - {@link CreateDeploymentCommandInput}
|
|
34
|
+
* @returns {@link CreateDeploymentCommandOutput}
|
|
28
35
|
* @see {@link CreateDeploymentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateDeploymentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
|
|
|
55
62
|
export declare class CreateDeploymentCommand extends $Command<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, M2ClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateDeploymentCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateDeploymentCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDeploymentCommandInput, CreateDeploymentCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateEnvironmentCommandOutput extends CreateEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a runtime environment for a given runtime engine.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateEnvironmentCommandInput - {@link CreateEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link CreateEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link CreateEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons
|
|
|
52
59
|
export declare class CreateEnvironmentCommand extends $Command<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, M2ClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateEnvironmentCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateEnvironmentCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a specific application. You cannot delete a running application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
34
|
+
* @returns {@link DeleteApplicationCommandOutput}
|
|
28
35
|
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
49
56
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteApplicationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteApplicationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|