@alicloud/ess20220222 1.8.23 → 1.9.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/client.d.ts +15 -0
- package/dist/client.js +36 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DeleteDiagnoseReportRequest.d.ts +29 -0
- package/dist/models/DeleteDiagnoseReportRequest.js +60 -0
- package/dist/models/DeleteDiagnoseReportRequest.js.map +1 -0
- package/dist/models/DeleteDiagnoseReportResponse.d.ts +19 -0
- package/dist/models/DeleteDiagnoseReportResponse.js +69 -0
- package/dist/models/DeleteDiagnoseReportResponse.js.map +1 -0
- package/dist/models/DeleteDiagnoseReportResponseBody.d.ts +18 -0
- package/dist/models/DeleteDiagnoseReportResponseBody.js +58 -0
- package/dist/models/DeleteDiagnoseReportResponseBody.js.map +1 -0
- package/dist/models/ModifyEciScalingConfigurationRequest.d.ts +9 -0
- package/dist/models/ModifyEciScalingConfigurationRequest.js.map +1 -1
- package/dist/models/RemoveInstancesRequest.d.ts +1 -1
- package/dist/models/ScaleWithAdjustmentRequest.d.ts +6 -3
- package/dist/models/ScaleWithAdjustmentRequest.js.map +1 -1
- package/dist/models/ScaleWithAdjustmentShrinkRequest.d.ts +1 -1
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +12 -6
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +38 -0
- package/src/models/DeleteDiagnoseReportRequest.ts +44 -0
- package/src/models/DeleteDiagnoseReportResponse.ts +40 -0
- package/src/models/DeleteDiagnoseReportResponseBody.ts +31 -0
- package/src/models/ModifyEciScalingConfigurationRequest.ts +9 -0
- package/src/models/RemoveInstancesRequest.ts +1 -1
- package/src/models/ScaleWithAdjustmentRequest.ts +6 -3
- package/src/models/ScaleWithAdjustmentShrinkRequest.ts +1 -1
- package/src/models/model.ts +3 -0
package/dist/client.d.ts
CHANGED
|
@@ -714,6 +714,21 @@ export default class Client extends OpenApi {
|
|
|
714
714
|
* @returns DeleteAlarmResponse
|
|
715
715
|
*/
|
|
716
716
|
deleteAlarm(request: $_model.DeleteAlarmRequest): Promise<$_model.DeleteAlarmResponse>;
|
|
717
|
+
/**
|
|
718
|
+
* DeleteDiagnoseReport
|
|
719
|
+
*
|
|
720
|
+
* @param request - DeleteDiagnoseReportRequest
|
|
721
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
722
|
+
* @returns DeleteDiagnoseReportResponse
|
|
723
|
+
*/
|
|
724
|
+
deleteDiagnoseReportWithOptions(request: $_model.DeleteDiagnoseReportRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteDiagnoseReportResponse>;
|
|
725
|
+
/**
|
|
726
|
+
* DeleteDiagnoseReport
|
|
727
|
+
*
|
|
728
|
+
* @param request - DeleteDiagnoseReportRequest
|
|
729
|
+
* @returns DeleteDiagnoseReportResponse
|
|
730
|
+
*/
|
|
731
|
+
deleteDiagnoseReport(request: $_model.DeleteDiagnoseReportRequest): Promise<$_model.DeleteDiagnoseReportResponse>;
|
|
717
732
|
/**
|
|
718
733
|
* Deletes a scaling configuration of the Elastic Container Instance type. If the scaling configuration of a scaling group is in the Inactive state and the scaling group contains no elastic container instances created from the scaling configuration, you can call the DeleteEciScalingConfiguration operation to delete the scaling configuration to free up the scaling configuration quota.
|
|
719
734
|
*
|
package/dist/client.js
CHANGED
|
@@ -2261,6 +2261,42 @@ class Client extends openapi_core_1.default {
|
|
|
2261
2261
|
let runtime = new $dara.RuntimeOptions({});
|
|
2262
2262
|
return await this.deleteAlarmWithOptions(request, runtime);
|
|
2263
2263
|
}
|
|
2264
|
+
/**
|
|
2265
|
+
* DeleteDiagnoseReport
|
|
2266
|
+
*
|
|
2267
|
+
* @param request - DeleteDiagnoseReportRequest
|
|
2268
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2269
|
+
* @returns DeleteDiagnoseReportResponse
|
|
2270
|
+
*/
|
|
2271
|
+
async deleteDiagnoseReportWithOptions(request, runtime) {
|
|
2272
|
+
request.validate();
|
|
2273
|
+
let query = openapi_core_2.OpenApiUtil.query(request.toMap());
|
|
2274
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
2275
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
2276
|
+
});
|
|
2277
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
2278
|
+
action: "DeleteDiagnoseReport",
|
|
2279
|
+
version: "2022-02-22",
|
|
2280
|
+
protocol: "HTTPS",
|
|
2281
|
+
pathname: "/",
|
|
2282
|
+
method: "GET",
|
|
2283
|
+
authType: "AK",
|
|
2284
|
+
style: "RPC",
|
|
2285
|
+
reqBodyType: "formData",
|
|
2286
|
+
bodyType: "json",
|
|
2287
|
+
});
|
|
2288
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DeleteDiagnoseReportResponse({}));
|
|
2289
|
+
}
|
|
2290
|
+
/**
|
|
2291
|
+
* DeleteDiagnoseReport
|
|
2292
|
+
*
|
|
2293
|
+
* @param request - DeleteDiagnoseReportRequest
|
|
2294
|
+
* @returns DeleteDiagnoseReportResponse
|
|
2295
|
+
*/
|
|
2296
|
+
async deleteDiagnoseReport(request) {
|
|
2297
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
2298
|
+
return await this.deleteDiagnoseReportWithOptions(request, runtime);
|
|
2299
|
+
}
|
|
2264
2300
|
/**
|
|
2265
2301
|
* Deletes a scaling configuration of the Elastic Container Instance type. If the scaling configuration of a scaling group is in the Inactive state and the scaling group contains no elastic container instances created from the scaling configuration, you can call the DeleteEciScalingConfiguration operation to delete the scaling configuration to free up the scaling configuration quota.
|
|
2266
2302
|
*
|