@alicloud/eas20210701 4.0.3 → 4.1.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 +63 -0
- package/dist/client.js +792 -671
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +118 -0
package/dist/client.d.ts
CHANGED
|
@@ -217,6 +217,51 @@ export declare class Service extends $tea.Model {
|
|
|
217
217
|
[key: string]: any;
|
|
218
218
|
});
|
|
219
219
|
}
|
|
220
|
+
export declare class CloneServiceRequest extends $tea.Model {
|
|
221
|
+
body?: string;
|
|
222
|
+
static names(): {
|
|
223
|
+
[key: string]: string;
|
|
224
|
+
};
|
|
225
|
+
static types(): {
|
|
226
|
+
[key: string]: any;
|
|
227
|
+
};
|
|
228
|
+
constructor(map?: {
|
|
229
|
+
[key: string]: any;
|
|
230
|
+
});
|
|
231
|
+
}
|
|
232
|
+
export declare class CloneServiceResponseBody extends $tea.Model {
|
|
233
|
+
internetEndpoint?: string;
|
|
234
|
+
intranetEndpoint?: string;
|
|
235
|
+
requestId?: string;
|
|
236
|
+
serviceId?: string;
|
|
237
|
+
serviceName?: string;
|
|
238
|
+
status?: string;
|
|
239
|
+
static names(): {
|
|
240
|
+
[key: string]: string;
|
|
241
|
+
};
|
|
242
|
+
static types(): {
|
|
243
|
+
[key: string]: any;
|
|
244
|
+
};
|
|
245
|
+
constructor(map?: {
|
|
246
|
+
[key: string]: any;
|
|
247
|
+
});
|
|
248
|
+
}
|
|
249
|
+
export declare class CloneServiceResponse extends $tea.Model {
|
|
250
|
+
headers?: {
|
|
251
|
+
[key: string]: string;
|
|
252
|
+
};
|
|
253
|
+
statusCode?: number;
|
|
254
|
+
body?: CloneServiceResponseBody;
|
|
255
|
+
static names(): {
|
|
256
|
+
[key: string]: string;
|
|
257
|
+
};
|
|
258
|
+
static types(): {
|
|
259
|
+
[key: string]: any;
|
|
260
|
+
};
|
|
261
|
+
constructor(map?: {
|
|
262
|
+
[key: string]: any;
|
|
263
|
+
});
|
|
264
|
+
}
|
|
220
265
|
export declare class CommitServiceResponseBody extends $tea.Model {
|
|
221
266
|
message?: string;
|
|
222
267
|
requestId?: string;
|
|
@@ -3506,6 +3551,10 @@ export default class Client extends OpenApi {
|
|
|
3506
3551
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
3507
3552
|
[key: string]: string;
|
|
3508
3553
|
}, endpoint: string): string;
|
|
3554
|
+
cloneServiceWithOptions(ClusterId: string, ServiceName: string, request: CloneServiceRequest, headers: {
|
|
3555
|
+
[key: string]: string;
|
|
3556
|
+
}, runtime: $Util.RuntimeOptions): Promise<CloneServiceResponse>;
|
|
3557
|
+
cloneService(ClusterId: string, ServiceName: string, request: CloneServiceRequest): Promise<CloneServiceResponse>;
|
|
3509
3558
|
commitServiceWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3510
3559
|
[key: string]: string;
|
|
3511
3560
|
}, runtime: $Util.RuntimeOptions): Promise<CommitServiceResponse>;
|
|
@@ -3526,9 +3575,23 @@ export default class Client extends OpenApi {
|
|
|
3526
3575
|
[key: string]: string;
|
|
3527
3576
|
}, runtime: $Util.RuntimeOptions): Promise<CreateGatewayIntranetLinkedVpcResponse>;
|
|
3528
3577
|
createGatewayIntranetLinkedVpc(ClusterId: string, GatewayId: string, request: CreateGatewayIntranetLinkedVpcRequest): Promise<CreateGatewayIntranetLinkedVpcResponse>;
|
|
3578
|
+
/**
|
|
3579
|
+
* **Before you call this operation, make sure that you are familiar with the [billing](~~144261~~) of Elastic Algorithm Service (EAS).
|
|
3580
|
+
*
|
|
3581
|
+
* @param request CreateResourceRequest
|
|
3582
|
+
* @param headers map
|
|
3583
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3584
|
+
* @return CreateResourceResponse
|
|
3585
|
+
*/
|
|
3529
3586
|
createResourceWithOptions(request: CreateResourceRequest, headers: {
|
|
3530
3587
|
[key: string]: string;
|
|
3531
3588
|
}, runtime: $Util.RuntimeOptions): Promise<CreateResourceResponse>;
|
|
3589
|
+
/**
|
|
3590
|
+
* **Before you call this operation, make sure that you are familiar with the [billing](~~144261~~) of Elastic Algorithm Service (EAS).
|
|
3591
|
+
*
|
|
3592
|
+
* @param request CreateResourceRequest
|
|
3593
|
+
* @return CreateResourceResponse
|
|
3594
|
+
*/
|
|
3532
3595
|
createResource(request: CreateResourceRequest): Promise<CreateResourceResponse>;
|
|
3533
3596
|
createResourceInstancesWithOptions(ClusterId: string, ResourceId: string, request: CreateResourceInstancesRequest, headers: {
|
|
3534
3597
|
[key: string]: string;
|