@alicloud/eas20210701 4.1.0 → 4.2.1
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 +1048 -10
- package/dist/client.js +1104 -13
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1129 -10
package/dist/client.d.ts
CHANGED
|
@@ -47,6 +47,8 @@ export declare class Group extends $tea.Model {
|
|
|
47
47
|
}
|
|
48
48
|
export declare class Instance extends $tea.Model {
|
|
49
49
|
currentAmount?: number;
|
|
50
|
+
externalIP?: string;
|
|
51
|
+
externalInstancePort?: number;
|
|
50
52
|
hostIP?: string;
|
|
51
53
|
hostName?: string;
|
|
52
54
|
innerIP?: string;
|
|
@@ -65,10 +67,12 @@ export declare class Instance extends $tea.Model {
|
|
|
65
67
|
restartCount?: number;
|
|
66
68
|
role?: string;
|
|
67
69
|
startAt?: string;
|
|
70
|
+
startTime?: string;
|
|
68
71
|
status?: string;
|
|
69
72
|
tenantHostIP?: string;
|
|
70
73
|
tenantInstanceIP?: string;
|
|
71
74
|
totalProcesses?: number;
|
|
75
|
+
zone?: string;
|
|
72
76
|
static names(): {
|
|
73
77
|
[key: string]: string;
|
|
74
78
|
};
|
|
@@ -96,6 +100,7 @@ export declare class Resource extends $tea.Model {
|
|
|
96
100
|
resourceType?: string;
|
|
97
101
|
status?: string;
|
|
98
102
|
updateTime?: string;
|
|
103
|
+
vendor?: string;
|
|
99
104
|
static names(): {
|
|
100
105
|
[key: string]: string;
|
|
101
106
|
};
|
|
@@ -1781,6 +1786,48 @@ export declare class DescribeServiceMirrorResponse extends $tea.Model {
|
|
|
1781
1786
|
[key: string]: any;
|
|
1782
1787
|
});
|
|
1783
1788
|
}
|
|
1789
|
+
export declare class DescribeSpotDiscountHistoryRequest extends $tea.Model {
|
|
1790
|
+
instanceType?: string;
|
|
1791
|
+
isProtect?: boolean;
|
|
1792
|
+
static names(): {
|
|
1793
|
+
[key: string]: string;
|
|
1794
|
+
};
|
|
1795
|
+
static types(): {
|
|
1796
|
+
[key: string]: any;
|
|
1797
|
+
};
|
|
1798
|
+
constructor(map?: {
|
|
1799
|
+
[key: string]: any;
|
|
1800
|
+
});
|
|
1801
|
+
}
|
|
1802
|
+
export declare class DescribeSpotDiscountHistoryResponseBody extends $tea.Model {
|
|
1803
|
+
requestId?: string;
|
|
1804
|
+
spotDiscounts?: DescribeSpotDiscountHistoryResponseBodySpotDiscounts[];
|
|
1805
|
+
static names(): {
|
|
1806
|
+
[key: string]: string;
|
|
1807
|
+
};
|
|
1808
|
+
static types(): {
|
|
1809
|
+
[key: string]: any;
|
|
1810
|
+
};
|
|
1811
|
+
constructor(map?: {
|
|
1812
|
+
[key: string]: any;
|
|
1813
|
+
});
|
|
1814
|
+
}
|
|
1815
|
+
export declare class DescribeSpotDiscountHistoryResponse extends $tea.Model {
|
|
1816
|
+
headers?: {
|
|
1817
|
+
[key: string]: string;
|
|
1818
|
+
};
|
|
1819
|
+
statusCode?: number;
|
|
1820
|
+
body?: DescribeSpotDiscountHistoryResponseBody;
|
|
1821
|
+
static names(): {
|
|
1822
|
+
[key: string]: string;
|
|
1823
|
+
};
|
|
1824
|
+
static types(): {
|
|
1825
|
+
[key: string]: any;
|
|
1826
|
+
};
|
|
1827
|
+
constructor(map?: {
|
|
1828
|
+
[key: string]: any;
|
|
1829
|
+
});
|
|
1830
|
+
}
|
|
1784
1831
|
export declare class DevelopServiceRequest extends $tea.Model {
|
|
1785
1832
|
exit?: string;
|
|
1786
1833
|
static names(): {
|
|
@@ -3384,6 +3431,21 @@ export declare class DescribeServiceInstanceDiagnosisResponseBodyDiagnosis exten
|
|
|
3384
3431
|
[key: string]: any;
|
|
3385
3432
|
});
|
|
3386
3433
|
}
|
|
3434
|
+
export declare class DescribeSpotDiscountHistoryResponseBodySpotDiscounts extends $tea.Model {
|
|
3435
|
+
instanceType?: string;
|
|
3436
|
+
spotDiscount?: string;
|
|
3437
|
+
timestamp?: string;
|
|
3438
|
+
zoneId?: string;
|
|
3439
|
+
static names(): {
|
|
3440
|
+
[key: string]: string;
|
|
3441
|
+
};
|
|
3442
|
+
static types(): {
|
|
3443
|
+
[key: string]: any;
|
|
3444
|
+
};
|
|
3445
|
+
constructor(map?: {
|
|
3446
|
+
[key: string]: any;
|
|
3447
|
+
});
|
|
3448
|
+
}
|
|
3387
3449
|
export declare class ListBenchmarkTaskResponseBodyTasks extends $tea.Model {
|
|
3388
3450
|
availableAgent?: number;
|
|
3389
3451
|
createTime?: string;
|
|
@@ -3551,310 +3613,1286 @@ export default class Client extends OpenApi {
|
|
|
3551
3613
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
3552
3614
|
[key: string]: string;
|
|
3553
3615
|
}, endpoint: string): string;
|
|
3616
|
+
/**
|
|
3617
|
+
* @summary Clones a service.
|
|
3618
|
+
*
|
|
3619
|
+
* @param request CloneServiceRequest
|
|
3620
|
+
* @param headers map
|
|
3621
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3622
|
+
* @return CloneServiceResponse
|
|
3623
|
+
*/
|
|
3554
3624
|
cloneServiceWithOptions(ClusterId: string, ServiceName: string, request: CloneServiceRequest, headers: {
|
|
3555
3625
|
[key: string]: string;
|
|
3556
3626
|
}, runtime: $Util.RuntimeOptions): Promise<CloneServiceResponse>;
|
|
3627
|
+
/**
|
|
3628
|
+
* @summary Clones a service.
|
|
3629
|
+
*
|
|
3630
|
+
* @param request CloneServiceRequest
|
|
3631
|
+
* @return CloneServiceResponse
|
|
3632
|
+
*/
|
|
3557
3633
|
cloneService(ClusterId: string, ServiceName: string, request: CloneServiceRequest): Promise<CloneServiceResponse>;
|
|
3634
|
+
/**
|
|
3635
|
+
* @summary Commits the Worker0 container in the custom container service and deploys the container as a new image.
|
|
3636
|
+
*
|
|
3637
|
+
* @param headers map
|
|
3638
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3639
|
+
* @return CommitServiceResponse
|
|
3640
|
+
*/
|
|
3558
3641
|
commitServiceWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3559
3642
|
[key: string]: string;
|
|
3560
3643
|
}, runtime: $Util.RuntimeOptions): Promise<CommitServiceResponse>;
|
|
3644
|
+
/**
|
|
3645
|
+
* @summary Commits the Worker0 container in the custom container service and deploys the container as a new image.
|
|
3646
|
+
*
|
|
3647
|
+
* @return CommitServiceResponse
|
|
3648
|
+
*/
|
|
3561
3649
|
commitService(ClusterId: string, ServiceName: string): Promise<CommitServiceResponse>;
|
|
3650
|
+
/**
|
|
3651
|
+
* @summary Creates an application service.
|
|
3652
|
+
*
|
|
3653
|
+
* @param request CreateAppServiceRequest
|
|
3654
|
+
* @param headers map
|
|
3655
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3656
|
+
* @return CreateAppServiceResponse
|
|
3657
|
+
*/
|
|
3562
3658
|
createAppServiceWithOptions(request: CreateAppServiceRequest, headers: {
|
|
3563
3659
|
[key: string]: string;
|
|
3564
3660
|
}, runtime: $Util.RuntimeOptions): Promise<CreateAppServiceResponse>;
|
|
3661
|
+
/**
|
|
3662
|
+
* @summary Creates an application service.
|
|
3663
|
+
*
|
|
3664
|
+
* @param request CreateAppServiceRequest
|
|
3665
|
+
* @return CreateAppServiceResponse
|
|
3666
|
+
*/
|
|
3565
3667
|
createAppService(request: CreateAppServiceRequest): Promise<CreateAppServiceResponse>;
|
|
3668
|
+
/**
|
|
3669
|
+
* @summary Creates a stress testing task.
|
|
3670
|
+
*
|
|
3671
|
+
* @param request CreateBenchmarkTaskRequest
|
|
3672
|
+
* @param headers map
|
|
3673
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3674
|
+
* @return CreateBenchmarkTaskResponse
|
|
3675
|
+
*/
|
|
3566
3676
|
createBenchmarkTaskWithOptions(request: CreateBenchmarkTaskRequest, headers: {
|
|
3567
3677
|
[key: string]: string;
|
|
3568
3678
|
}, runtime: $Util.RuntimeOptions): Promise<CreateBenchmarkTaskResponse>;
|
|
3679
|
+
/**
|
|
3680
|
+
* @summary Creates a stress testing task.
|
|
3681
|
+
*
|
|
3682
|
+
* @param request CreateBenchmarkTaskRequest
|
|
3683
|
+
* @return CreateBenchmarkTaskResponse
|
|
3684
|
+
*/
|
|
3569
3685
|
createBenchmarkTask(request: CreateBenchmarkTaskRequest): Promise<CreateBenchmarkTaskResponse>;
|
|
3686
|
+
/**
|
|
3687
|
+
* @summary Creates a private gateway. You can create a private gateway only in a self-managed resource group.
|
|
3688
|
+
*
|
|
3689
|
+
* @param request CreateGatewayRequest
|
|
3690
|
+
* @param headers map
|
|
3691
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3692
|
+
* @return CreateGatewayResponse
|
|
3693
|
+
*/
|
|
3570
3694
|
createGatewayWithOptions(request: CreateGatewayRequest, headers: {
|
|
3571
3695
|
[key: string]: string;
|
|
3572
3696
|
}, runtime: $Util.RuntimeOptions): Promise<CreateGatewayResponse>;
|
|
3697
|
+
/**
|
|
3698
|
+
* @summary Creates a private gateway. You can create a private gateway only in a self-managed resource group.
|
|
3699
|
+
*
|
|
3700
|
+
* @param request CreateGatewayRequest
|
|
3701
|
+
* @return CreateGatewayResponse
|
|
3702
|
+
*/
|
|
3573
3703
|
createGateway(request: CreateGatewayRequest): Promise<CreateGatewayResponse>;
|
|
3704
|
+
/**
|
|
3705
|
+
* @summary Creates an internal endpoint of a private gateway.
|
|
3706
|
+
*
|
|
3707
|
+
* @param request CreateGatewayIntranetLinkedVpcRequest
|
|
3708
|
+
* @param headers map
|
|
3709
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3710
|
+
* @return CreateGatewayIntranetLinkedVpcResponse
|
|
3711
|
+
*/
|
|
3574
3712
|
createGatewayIntranetLinkedVpcWithOptions(ClusterId: string, GatewayId: string, request: CreateGatewayIntranetLinkedVpcRequest, headers: {
|
|
3575
3713
|
[key: string]: string;
|
|
3576
3714
|
}, runtime: $Util.RuntimeOptions): Promise<CreateGatewayIntranetLinkedVpcResponse>;
|
|
3715
|
+
/**
|
|
3716
|
+
* @summary Creates an internal endpoint of a private gateway.
|
|
3717
|
+
*
|
|
3718
|
+
* @param request CreateGatewayIntranetLinkedVpcRequest
|
|
3719
|
+
* @return CreateGatewayIntranetLinkedVpcResponse
|
|
3720
|
+
*/
|
|
3577
3721
|
createGatewayIntranetLinkedVpc(ClusterId: string, GatewayId: string, request: CreateGatewayIntranetLinkedVpcRequest): Promise<CreateGatewayIntranetLinkedVpcResponse>;
|
|
3578
3722
|
/**
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3723
|
+
* @summary Creates a resource group.
|
|
3724
|
+
*
|
|
3725
|
+
* @description **Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/144261.html) of Elastic Algorithm Service (EAS).
|
|
3726
|
+
*
|
|
3727
|
+
* @param request CreateResourceRequest
|
|
3728
|
+
* @param headers map
|
|
3729
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3730
|
+
* @return CreateResourceResponse
|
|
3585
3731
|
*/
|
|
3586
3732
|
createResourceWithOptions(request: CreateResourceRequest, headers: {
|
|
3587
3733
|
[key: string]: string;
|
|
3588
3734
|
}, runtime: $Util.RuntimeOptions): Promise<CreateResourceResponse>;
|
|
3589
3735
|
/**
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3736
|
+
* @summary Creates a resource group.
|
|
3737
|
+
*
|
|
3738
|
+
* @description **Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/144261.html) of Elastic Algorithm Service (EAS).
|
|
3739
|
+
*
|
|
3740
|
+
* @param request CreateResourceRequest
|
|
3741
|
+
* @return CreateResourceResponse
|
|
3594
3742
|
*/
|
|
3595
3743
|
createResource(request: CreateResourceRequest): Promise<CreateResourceResponse>;
|
|
3744
|
+
/**
|
|
3745
|
+
* @summary Creates instances in a dedicated resource group.
|
|
3746
|
+
*
|
|
3747
|
+
* @param request CreateResourceInstancesRequest
|
|
3748
|
+
* @param headers map
|
|
3749
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3750
|
+
* @return CreateResourceInstancesResponse
|
|
3751
|
+
*/
|
|
3596
3752
|
createResourceInstancesWithOptions(ClusterId: string, ResourceId: string, request: CreateResourceInstancesRequest, headers: {
|
|
3597
3753
|
[key: string]: string;
|
|
3598
3754
|
}, runtime: $Util.RuntimeOptions): Promise<CreateResourceInstancesResponse>;
|
|
3755
|
+
/**
|
|
3756
|
+
* @summary Creates instances in a dedicated resource group.
|
|
3757
|
+
*
|
|
3758
|
+
* @param request CreateResourceInstancesRequest
|
|
3759
|
+
* @return CreateResourceInstancesResponse
|
|
3760
|
+
*/
|
|
3599
3761
|
createResourceInstances(ClusterId: string, ResourceId: string, request: CreateResourceInstancesRequest): Promise<CreateResourceInstancesResponse>;
|
|
3762
|
+
/**
|
|
3763
|
+
* @summary Enables the LogShipper feature of Log Service for a resource group.
|
|
3764
|
+
*
|
|
3765
|
+
* @param request CreateResourceLogRequest
|
|
3766
|
+
* @param headers map
|
|
3767
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3768
|
+
* @return CreateResourceLogResponse
|
|
3769
|
+
*/
|
|
3600
3770
|
createResourceLogWithOptions(ClusterId: string, ResourceId: string, request: CreateResourceLogRequest, headers: {
|
|
3601
3771
|
[key: string]: string;
|
|
3602
3772
|
}, runtime: $Util.RuntimeOptions): Promise<CreateResourceLogResponse>;
|
|
3773
|
+
/**
|
|
3774
|
+
* @summary Enables the LogShipper feature of Log Service for a resource group.
|
|
3775
|
+
*
|
|
3776
|
+
* @param request CreateResourceLogRequest
|
|
3777
|
+
* @return CreateResourceLogResponse
|
|
3778
|
+
*/
|
|
3603
3779
|
createResourceLog(ClusterId: string, ResourceId: string, request: CreateResourceLogRequest): Promise<CreateResourceLogResponse>;
|
|
3780
|
+
/**
|
|
3781
|
+
* @summary Creates a model service in Elastic Algorithm Service (EAS).
|
|
3782
|
+
*
|
|
3783
|
+
* @description **Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/144261.html) of Elastic Algorithm Service (EAS).
|
|
3784
|
+
*
|
|
3785
|
+
* @param tmpReq CreateServiceRequest
|
|
3786
|
+
* @param headers map
|
|
3787
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3788
|
+
* @return CreateServiceResponse
|
|
3789
|
+
*/
|
|
3604
3790
|
createServiceWithOptions(tmpReq: CreateServiceRequest, headers: {
|
|
3605
3791
|
[key: string]: string;
|
|
3606
3792
|
}, runtime: $Util.RuntimeOptions): Promise<CreateServiceResponse>;
|
|
3793
|
+
/**
|
|
3794
|
+
* @summary Creates a model service in Elastic Algorithm Service (EAS).
|
|
3795
|
+
*
|
|
3796
|
+
* @description **Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/144261.html) of Elastic Algorithm Service (EAS).
|
|
3797
|
+
*
|
|
3798
|
+
* @param request CreateServiceRequest
|
|
3799
|
+
* @return CreateServiceResponse
|
|
3800
|
+
*/
|
|
3607
3801
|
createService(request: CreateServiceRequest): Promise<CreateServiceResponse>;
|
|
3802
|
+
/**
|
|
3803
|
+
* @summary Enables the Autoscaler feature and creates an Autoscaler controller for a service.
|
|
3804
|
+
*
|
|
3805
|
+
* @param request CreateServiceAutoScalerRequest
|
|
3806
|
+
* @param headers map
|
|
3807
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3808
|
+
* @return CreateServiceAutoScalerResponse
|
|
3809
|
+
*/
|
|
3608
3810
|
createServiceAutoScalerWithOptions(ClusterId: string, ServiceName: string, request: CreateServiceAutoScalerRequest, headers: {
|
|
3609
3811
|
[key: string]: string;
|
|
3610
3812
|
}, runtime: $Util.RuntimeOptions): Promise<CreateServiceAutoScalerResponse>;
|
|
3813
|
+
/**
|
|
3814
|
+
* @summary Enables the Autoscaler feature and creates an Autoscaler controller for a service.
|
|
3815
|
+
*
|
|
3816
|
+
* @param request CreateServiceAutoScalerRequest
|
|
3817
|
+
* @return CreateServiceAutoScalerResponse
|
|
3818
|
+
*/
|
|
3611
3819
|
createServiceAutoScaler(ClusterId: string, ServiceName: string, request: CreateServiceAutoScalerRequest): Promise<CreateServiceAutoScalerResponse>;
|
|
3820
|
+
/**
|
|
3821
|
+
* @summary Enables the Cron Horizontal Pod Autoscaler (CronHPA) feature for a service.
|
|
3822
|
+
*
|
|
3823
|
+
* @param request CreateServiceCronScalerRequest
|
|
3824
|
+
* @param headers map
|
|
3825
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3826
|
+
* @return CreateServiceCronScalerResponse
|
|
3827
|
+
*/
|
|
3612
3828
|
createServiceCronScalerWithOptions(ClusterId: string, ServiceName: string, request: CreateServiceCronScalerRequest, headers: {
|
|
3613
3829
|
[key: string]: string;
|
|
3614
3830
|
}, runtime: $Util.RuntimeOptions): Promise<CreateServiceCronScalerResponse>;
|
|
3831
|
+
/**
|
|
3832
|
+
* @summary Enables the Cron Horizontal Pod Autoscaler (CronHPA) feature for a service.
|
|
3833
|
+
*
|
|
3834
|
+
* @param request CreateServiceCronScalerRequest
|
|
3835
|
+
* @return CreateServiceCronScalerResponse
|
|
3836
|
+
*/
|
|
3615
3837
|
createServiceCronScaler(ClusterId: string, ServiceName: string, request: CreateServiceCronScalerRequest): Promise<CreateServiceCronScalerResponse>;
|
|
3838
|
+
/**
|
|
3839
|
+
* @summary Enables the traffic mirroring feature for a service. After the feature is enabled, requests received by the service can be mirrored to another service.
|
|
3840
|
+
*
|
|
3841
|
+
* @param request CreateServiceMirrorRequest
|
|
3842
|
+
* @param headers map
|
|
3843
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3844
|
+
* @return CreateServiceMirrorResponse
|
|
3845
|
+
*/
|
|
3616
3846
|
createServiceMirrorWithOptions(ClusterId: string, ServiceName: string, request: CreateServiceMirrorRequest, headers: {
|
|
3617
3847
|
[key: string]: string;
|
|
3618
3848
|
}, runtime: $Util.RuntimeOptions): Promise<CreateServiceMirrorResponse>;
|
|
3849
|
+
/**
|
|
3850
|
+
* @summary Enables the traffic mirroring feature for a service. After the feature is enabled, requests received by the service can be mirrored to another service.
|
|
3851
|
+
*
|
|
3852
|
+
* @param request CreateServiceMirrorRequest
|
|
3853
|
+
* @return CreateServiceMirrorResponse
|
|
3854
|
+
*/
|
|
3619
3855
|
createServiceMirror(ClusterId: string, ServiceName: string, request: CreateServiceMirrorRequest): Promise<CreateServiceMirrorResponse>;
|
|
3856
|
+
/**
|
|
3857
|
+
* @summary Deletes a stress testing task.
|
|
3858
|
+
*
|
|
3859
|
+
* @param headers map
|
|
3860
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3861
|
+
* @return DeleteBenchmarkTaskResponse
|
|
3862
|
+
*/
|
|
3620
3863
|
deleteBenchmarkTaskWithOptions(ClusterId: string, TaskName: string, headers: {
|
|
3621
3864
|
[key: string]: string;
|
|
3622
3865
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteBenchmarkTaskResponse>;
|
|
3866
|
+
/**
|
|
3867
|
+
* @summary Deletes a stress testing task.
|
|
3868
|
+
*
|
|
3869
|
+
* @return DeleteBenchmarkTaskResponse
|
|
3870
|
+
*/
|
|
3623
3871
|
deleteBenchmarkTask(ClusterId: string, TaskName: string): Promise<DeleteBenchmarkTaskResponse>;
|
|
3872
|
+
/**
|
|
3873
|
+
* @summary Deletes a private gateway.
|
|
3874
|
+
*
|
|
3875
|
+
* @param headers map
|
|
3876
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3877
|
+
* @return DeleteGatewayResponse
|
|
3878
|
+
*/
|
|
3624
3879
|
deleteGatewayWithOptions(ClusterId: string, GatewayId: string, headers: {
|
|
3625
3880
|
[key: string]: string;
|
|
3626
3881
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteGatewayResponse>;
|
|
3882
|
+
/**
|
|
3883
|
+
* @summary Deletes a private gateway.
|
|
3884
|
+
*
|
|
3885
|
+
* @return DeleteGatewayResponse
|
|
3886
|
+
*/
|
|
3627
3887
|
deleteGateway(ClusterId: string, GatewayId: string): Promise<DeleteGatewayResponse>;
|
|
3888
|
+
/**
|
|
3889
|
+
* @summary 删除网关内网访问端点
|
|
3890
|
+
*
|
|
3891
|
+
* @param request DeleteGatewayIntranetLinkedVpcRequest
|
|
3892
|
+
* @param headers map
|
|
3893
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3894
|
+
* @return DeleteGatewayIntranetLinkedVpcResponse
|
|
3895
|
+
*/
|
|
3628
3896
|
deleteGatewayIntranetLinkedVpcWithOptions(ClusterId: string, GatewayId: string, request: DeleteGatewayIntranetLinkedVpcRequest, headers: {
|
|
3629
3897
|
[key: string]: string;
|
|
3630
3898
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteGatewayIntranetLinkedVpcResponse>;
|
|
3899
|
+
/**
|
|
3900
|
+
* @summary 删除网关内网访问端点
|
|
3901
|
+
*
|
|
3902
|
+
* @param request DeleteGatewayIntranetLinkedVpcRequest
|
|
3903
|
+
* @return DeleteGatewayIntranetLinkedVpcResponse
|
|
3904
|
+
*/
|
|
3631
3905
|
deleteGatewayIntranetLinkedVpc(ClusterId: string, GatewayId: string, request: DeleteGatewayIntranetLinkedVpcRequest): Promise<DeleteGatewayIntranetLinkedVpcResponse>;
|
|
3906
|
+
/**
|
|
3907
|
+
* @summary Deletes a resource group that contains no resources or instances.
|
|
3908
|
+
*
|
|
3909
|
+
* @param headers map
|
|
3910
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3911
|
+
* @return DeleteResourceResponse
|
|
3912
|
+
*/
|
|
3632
3913
|
deleteResourceWithOptions(ClusterId: string, ResourceId: string, headers: {
|
|
3633
3914
|
[key: string]: string;
|
|
3634
3915
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteResourceResponse>;
|
|
3916
|
+
/**
|
|
3917
|
+
* @summary Deletes a resource group that contains no resources or instances.
|
|
3918
|
+
*
|
|
3919
|
+
* @return DeleteResourceResponse
|
|
3920
|
+
*/
|
|
3635
3921
|
deleteResource(ClusterId: string, ResourceId: string): Promise<DeleteResourceResponse>;
|
|
3922
|
+
/**
|
|
3923
|
+
* @summary Disables the virtual private cloud (VPC) direct connection feature for a dedicated resource group.
|
|
3924
|
+
*
|
|
3925
|
+
* @param headers map
|
|
3926
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3927
|
+
* @return DeleteResourceDLinkResponse
|
|
3928
|
+
*/
|
|
3636
3929
|
deleteResourceDLinkWithOptions(ClusterId: string, ResourceId: string, headers: {
|
|
3637
3930
|
[key: string]: string;
|
|
3638
3931
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteResourceDLinkResponse>;
|
|
3932
|
+
/**
|
|
3933
|
+
* @summary Disables the virtual private cloud (VPC) direct connection feature for a dedicated resource group.
|
|
3934
|
+
*
|
|
3935
|
+
* @return DeleteResourceDLinkResponse
|
|
3936
|
+
*/
|
|
3639
3937
|
deleteResourceDLink(ClusterId: string, ResourceId: string): Promise<DeleteResourceDLinkResponse>;
|
|
3938
|
+
/**
|
|
3939
|
+
* @summary Deletes instances in a dedicated resource group. You can delete only pay-as-you-go instances as a regular user.
|
|
3940
|
+
*
|
|
3941
|
+
* @param request DeleteResourceInstancesRequest
|
|
3942
|
+
* @param headers map
|
|
3943
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3944
|
+
* @return DeleteResourceInstancesResponse
|
|
3945
|
+
*/
|
|
3640
3946
|
deleteResourceInstancesWithOptions(ClusterId: string, ResourceId: string, request: DeleteResourceInstancesRequest, headers: {
|
|
3641
3947
|
[key: string]: string;
|
|
3642
3948
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteResourceInstancesResponse>;
|
|
3949
|
+
/**
|
|
3950
|
+
* @summary Deletes instances in a dedicated resource group. You can delete only pay-as-you-go instances as a regular user.
|
|
3951
|
+
*
|
|
3952
|
+
* @param request DeleteResourceInstancesRequest
|
|
3953
|
+
* @return DeleteResourceInstancesResponse
|
|
3954
|
+
*/
|
|
3643
3955
|
deleteResourceInstances(ClusterId: string, ResourceId: string, request: DeleteResourceInstancesRequest): Promise<DeleteResourceInstancesResponse>;
|
|
3956
|
+
/**
|
|
3957
|
+
* @summary Disables the LogShipper feature of Log Service for a dedicated resource group.
|
|
3958
|
+
*
|
|
3959
|
+
* @param headers map
|
|
3960
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3961
|
+
* @return DeleteResourceLogResponse
|
|
3962
|
+
*/
|
|
3644
3963
|
deleteResourceLogWithOptions(ClusterId: string, ResourceId: string, headers: {
|
|
3645
3964
|
[key: string]: string;
|
|
3646
3965
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteResourceLogResponse>;
|
|
3966
|
+
/**
|
|
3967
|
+
* @summary Disables the LogShipper feature of Log Service for a dedicated resource group.
|
|
3968
|
+
*
|
|
3969
|
+
* @return DeleteResourceLogResponse
|
|
3970
|
+
*/
|
|
3647
3971
|
deleteResourceLog(ClusterId: string, ResourceId: string): Promise<DeleteResourceLogResponse>;
|
|
3972
|
+
/**
|
|
3973
|
+
* @summary Deletes a service.
|
|
3974
|
+
*
|
|
3975
|
+
* @param headers map
|
|
3976
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3977
|
+
* @return DeleteServiceResponse
|
|
3978
|
+
*/
|
|
3648
3979
|
deleteServiceWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3649
3980
|
[key: string]: string;
|
|
3650
3981
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteServiceResponse>;
|
|
3982
|
+
/**
|
|
3983
|
+
* @summary Deletes a service.
|
|
3984
|
+
*
|
|
3985
|
+
* @return DeleteServiceResponse
|
|
3986
|
+
*/
|
|
3651
3987
|
deleteService(ClusterId: string, ServiceName: string): Promise<DeleteServiceResponse>;
|
|
3988
|
+
/**
|
|
3989
|
+
* @summary Deletes the existing Autoscaler controller and disables the Autoscaler feature for a service.
|
|
3990
|
+
*
|
|
3991
|
+
* @param headers map
|
|
3992
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3993
|
+
* @return DeleteServiceAutoScalerResponse
|
|
3994
|
+
*/
|
|
3652
3995
|
deleteServiceAutoScalerWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3653
3996
|
[key: string]: string;
|
|
3654
3997
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteServiceAutoScalerResponse>;
|
|
3998
|
+
/**
|
|
3999
|
+
* @summary Deletes the existing Autoscaler controller and disables the Autoscaler feature for a service.
|
|
4000
|
+
*
|
|
4001
|
+
* @return DeleteServiceAutoScalerResponse
|
|
4002
|
+
*/
|
|
3655
4003
|
deleteServiceAutoScaler(ClusterId: string, ServiceName: string): Promise<DeleteServiceAutoScalerResponse>;
|
|
4004
|
+
/**
|
|
4005
|
+
* @summary Disables the Cronscaler feature for a service.
|
|
4006
|
+
*
|
|
4007
|
+
* @param headers map
|
|
4008
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4009
|
+
* @return DeleteServiceCronScalerResponse
|
|
4010
|
+
*/
|
|
3656
4011
|
deleteServiceCronScalerWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3657
4012
|
[key: string]: string;
|
|
3658
4013
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteServiceCronScalerResponse>;
|
|
4014
|
+
/**
|
|
4015
|
+
* @summary Disables the Cronscaler feature for a service.
|
|
4016
|
+
*
|
|
4017
|
+
* @return DeleteServiceCronScalerResponse
|
|
4018
|
+
*/
|
|
3659
4019
|
deleteServiceCronScaler(ClusterId: string, ServiceName: string): Promise<DeleteServiceCronScalerResponse>;
|
|
4020
|
+
/**
|
|
4021
|
+
* @summary Restarts the instances of a service.
|
|
4022
|
+
*
|
|
4023
|
+
* @param request DeleteServiceInstancesRequest
|
|
4024
|
+
* @param headers map
|
|
4025
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4026
|
+
* @return DeleteServiceInstancesResponse
|
|
4027
|
+
*/
|
|
3660
4028
|
deleteServiceInstancesWithOptions(ClusterId: string, ServiceName: string, request: DeleteServiceInstancesRequest, headers: {
|
|
3661
4029
|
[key: string]: string;
|
|
3662
4030
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteServiceInstancesResponse>;
|
|
4031
|
+
/**
|
|
4032
|
+
* @summary Restarts the instances of a service.
|
|
4033
|
+
*
|
|
4034
|
+
* @param request DeleteServiceInstancesRequest
|
|
4035
|
+
* @return DeleteServiceInstancesResponse
|
|
4036
|
+
*/
|
|
3663
4037
|
deleteServiceInstances(ClusterId: string, ServiceName: string, request: DeleteServiceInstancesRequest): Promise<DeleteServiceInstancesResponse>;
|
|
4038
|
+
/**
|
|
4039
|
+
* @summary Deletes existing service tags.
|
|
4040
|
+
*
|
|
4041
|
+
* @param tmpReq DeleteServiceLabelRequest
|
|
4042
|
+
* @param headers map
|
|
4043
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4044
|
+
* @return DeleteServiceLabelResponse
|
|
4045
|
+
*/
|
|
3664
4046
|
deleteServiceLabelWithOptions(ClusterId: string, ServiceName: string, tmpReq: DeleteServiceLabelRequest, headers: {
|
|
3665
4047
|
[key: string]: string;
|
|
3666
4048
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteServiceLabelResponse>;
|
|
4049
|
+
/**
|
|
4050
|
+
* @summary Deletes existing service tags.
|
|
4051
|
+
*
|
|
4052
|
+
* @param request DeleteServiceLabelRequest
|
|
4053
|
+
* @return DeleteServiceLabelResponse
|
|
4054
|
+
*/
|
|
3667
4055
|
deleteServiceLabel(ClusterId: string, ServiceName: string, request: DeleteServiceLabelRequest): Promise<DeleteServiceLabelResponse>;
|
|
4056
|
+
/**
|
|
4057
|
+
* @summary Disables the traffic mirroring feature for a service.
|
|
4058
|
+
*
|
|
4059
|
+
* @param headers map
|
|
4060
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4061
|
+
* @return DeleteServiceMirrorResponse
|
|
4062
|
+
*/
|
|
3668
4063
|
deleteServiceMirrorWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3669
4064
|
[key: string]: string;
|
|
3670
4065
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteServiceMirrorResponse>;
|
|
4066
|
+
/**
|
|
4067
|
+
* @summary Disables the traffic mirroring feature for a service.
|
|
4068
|
+
*
|
|
4069
|
+
* @return DeleteServiceMirrorResponse
|
|
4070
|
+
*/
|
|
3671
4071
|
deleteServiceMirror(ClusterId: string, ServiceName: string): Promise<DeleteServiceMirrorResponse>;
|
|
4072
|
+
/**
|
|
4073
|
+
* @summary Queries details about the configurations of a stress testing task.
|
|
4074
|
+
*
|
|
4075
|
+
* @param headers map
|
|
4076
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4077
|
+
* @return DescribeBenchmarkTaskResponse
|
|
4078
|
+
*/
|
|
3672
4079
|
describeBenchmarkTaskWithOptions(ClusterId: string, TaskName: string, headers: {
|
|
3673
4080
|
[key: string]: string;
|
|
3674
4081
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeBenchmarkTaskResponse>;
|
|
4082
|
+
/**
|
|
4083
|
+
* @summary Queries details about the configurations of a stress testing task.
|
|
4084
|
+
*
|
|
4085
|
+
* @return DescribeBenchmarkTaskResponse
|
|
4086
|
+
*/
|
|
3675
4087
|
describeBenchmarkTask(ClusterId: string, TaskName: string): Promise<DescribeBenchmarkTaskResponse>;
|
|
4088
|
+
/**
|
|
4089
|
+
* @summary Queries the report of a stress testing task.
|
|
4090
|
+
*
|
|
4091
|
+
* @param request DescribeBenchmarkTaskReportRequest
|
|
4092
|
+
* @param headers map
|
|
4093
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4094
|
+
* @return DescribeBenchmarkTaskReportResponse
|
|
4095
|
+
*/
|
|
3676
4096
|
describeBenchmarkTaskReportWithOptions(ClusterId: string, TaskName: string, request: DescribeBenchmarkTaskReportRequest, headers: {
|
|
3677
4097
|
[key: string]: string;
|
|
3678
4098
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeBenchmarkTaskReportResponse>;
|
|
4099
|
+
/**
|
|
4100
|
+
* @summary Queries the report of a stress testing task.
|
|
4101
|
+
*
|
|
4102
|
+
* @param request DescribeBenchmarkTaskReportRequest
|
|
4103
|
+
* @return DescribeBenchmarkTaskReportResponse
|
|
4104
|
+
*/
|
|
3679
4105
|
describeBenchmarkTaskReport(ClusterId: string, TaskName: string, request: DescribeBenchmarkTaskReportRequest): Promise<DescribeBenchmarkTaskReportResponse>;
|
|
4106
|
+
/**
|
|
4107
|
+
* @summary Queries the details of a private gateway.
|
|
4108
|
+
*
|
|
4109
|
+
* @param headers map
|
|
4110
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4111
|
+
* @return DescribeGatewayResponse
|
|
4112
|
+
*/
|
|
3680
4113
|
describeGatewayWithOptions(ClusterId: string, GatewayId: string, headers: {
|
|
3681
4114
|
[key: string]: string;
|
|
3682
4115
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeGatewayResponse>;
|
|
4116
|
+
/**
|
|
4117
|
+
* @summary Queries the details of a private gateway.
|
|
4118
|
+
*
|
|
4119
|
+
* @return DescribeGatewayResponse
|
|
4120
|
+
*/
|
|
3683
4121
|
describeGateway(ClusterId: string, GatewayId: string): Promise<DescribeGatewayResponse>;
|
|
4122
|
+
/**
|
|
4123
|
+
* @summary Queries the information about a service group.
|
|
4124
|
+
*
|
|
4125
|
+
* @param headers map
|
|
4126
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4127
|
+
* @return DescribeGroupResponse
|
|
4128
|
+
*/
|
|
3684
4129
|
describeGroupWithOptions(ClusterId: string, GroupName: string, headers: {
|
|
3685
4130
|
[key: string]: string;
|
|
3686
4131
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeGroupResponse>;
|
|
4132
|
+
/**
|
|
4133
|
+
* @summary Queries the information about a service group.
|
|
4134
|
+
*
|
|
4135
|
+
* @return DescribeGroupResponse
|
|
4136
|
+
*/
|
|
3687
4137
|
describeGroup(ClusterId: string, GroupName: string): Promise<DescribeGroupResponse>;
|
|
4138
|
+
/**
|
|
4139
|
+
* @summary Queries the information about a resource group.
|
|
4140
|
+
*
|
|
4141
|
+
* @param headers map
|
|
4142
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4143
|
+
* @return DescribeResourceResponse
|
|
4144
|
+
*/
|
|
3688
4145
|
describeResourceWithOptions(ClusterId: string, ResourceId: string, headers: {
|
|
3689
4146
|
[key: string]: string;
|
|
3690
4147
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeResourceResponse>;
|
|
4148
|
+
/**
|
|
4149
|
+
* @summary Queries the information about a resource group.
|
|
4150
|
+
*
|
|
4151
|
+
* @return DescribeResourceResponse
|
|
4152
|
+
*/
|
|
3691
4153
|
describeResource(ClusterId: string, ResourceId: string): Promise<DescribeResourceResponse>;
|
|
4154
|
+
/**
|
|
4155
|
+
* @summary Queries detailed configurations about a virtual private cloud (VPC) direct connection of a dedicated resource group.
|
|
4156
|
+
*
|
|
4157
|
+
* @param headers map
|
|
4158
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4159
|
+
* @return DescribeResourceDLinkResponse
|
|
4160
|
+
*/
|
|
3692
4161
|
describeResourceDLinkWithOptions(ClusterId: string, ResourceId: string, headers: {
|
|
3693
4162
|
[key: string]: string;
|
|
3694
4163
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeResourceDLinkResponse>;
|
|
4164
|
+
/**
|
|
4165
|
+
* @summary Queries detailed configurations about a virtual private cloud (VPC) direct connection of a dedicated resource group.
|
|
4166
|
+
*
|
|
4167
|
+
* @return DescribeResourceDLinkResponse
|
|
4168
|
+
*/
|
|
3695
4169
|
describeResourceDLink(ClusterId: string, ResourceId: string): Promise<DescribeResourceDLinkResponse>;
|
|
4170
|
+
/**
|
|
4171
|
+
* @summary Queries the details about the LogShipper configurations of Log Service for a dedicated resource group.
|
|
4172
|
+
*
|
|
4173
|
+
* @param headers map
|
|
4174
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4175
|
+
* @return DescribeResourceLogResponse
|
|
4176
|
+
*/
|
|
3696
4177
|
describeResourceLogWithOptions(ClusterId: string, ResourceId: string, headers: {
|
|
3697
4178
|
[key: string]: string;
|
|
3698
4179
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeResourceLogResponse>;
|
|
4180
|
+
/**
|
|
4181
|
+
* @summary Queries the details about the LogShipper configurations of Log Service for a dedicated resource group.
|
|
4182
|
+
*
|
|
4183
|
+
* @return DescribeResourceLogResponse
|
|
4184
|
+
*/
|
|
3699
4185
|
describeResourceLog(ClusterId: string, ResourceId: string): Promise<DescribeResourceLogResponse>;
|
|
4186
|
+
/**
|
|
4187
|
+
* @summary Queries the details about a service.
|
|
4188
|
+
*
|
|
4189
|
+
* @param headers map
|
|
4190
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4191
|
+
* @return DescribeServiceResponse
|
|
4192
|
+
*/
|
|
3700
4193
|
describeServiceWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3701
4194
|
[key: string]: string;
|
|
3702
4195
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceResponse>;
|
|
4196
|
+
/**
|
|
4197
|
+
* @summary Queries the details about a service.
|
|
4198
|
+
*
|
|
4199
|
+
* @return DescribeServiceResponse
|
|
4200
|
+
*/
|
|
3703
4201
|
describeService(ClusterId: string, ServiceName: string): Promise<DescribeServiceResponse>;
|
|
4202
|
+
/**
|
|
4203
|
+
* @summary Queries information about the Autoscaler configurations of a service.
|
|
4204
|
+
*
|
|
4205
|
+
* @param headers map
|
|
4206
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4207
|
+
* @return DescribeServiceAutoScalerResponse
|
|
4208
|
+
*/
|
|
3704
4209
|
describeServiceAutoScalerWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3705
4210
|
[key: string]: string;
|
|
3706
4211
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceAutoScalerResponse>;
|
|
4212
|
+
/**
|
|
4213
|
+
* @summary Queries information about the Autoscaler configurations of a service.
|
|
4214
|
+
*
|
|
4215
|
+
* @return DescribeServiceAutoScalerResponse
|
|
4216
|
+
*/
|
|
3707
4217
|
describeServiceAutoScaler(ClusterId: string, ServiceName: string): Promise<DescribeServiceAutoScalerResponse>;
|
|
4218
|
+
/**
|
|
4219
|
+
* @summary Queries the Cron Horizontal Pod Autoscaler (CronHPA) configurations of a service.
|
|
4220
|
+
*
|
|
4221
|
+
* @param headers map
|
|
4222
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4223
|
+
* @return DescribeServiceCronScalerResponse
|
|
4224
|
+
*/
|
|
3708
4225
|
describeServiceCronScalerWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3709
4226
|
[key: string]: string;
|
|
3710
4227
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceCronScalerResponse>;
|
|
4228
|
+
/**
|
|
4229
|
+
* @summary Queries the Cron Horizontal Pod Autoscaler (CronHPA) configurations of a service.
|
|
4230
|
+
*
|
|
4231
|
+
* @return DescribeServiceCronScalerResponse
|
|
4232
|
+
*/
|
|
3711
4233
|
describeServiceCronScaler(ClusterId: string, ServiceName: string): Promise<DescribeServiceCronScalerResponse>;
|
|
4234
|
+
/**
|
|
4235
|
+
* @summary Queries the diagnostics details of a service.
|
|
4236
|
+
*
|
|
4237
|
+
* @param headers map
|
|
4238
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4239
|
+
* @return DescribeServiceDiagnosisResponse
|
|
4240
|
+
*/
|
|
3712
4241
|
describeServiceDiagnosisWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3713
4242
|
[key: string]: string;
|
|
3714
4243
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceDiagnosisResponse>;
|
|
4244
|
+
/**
|
|
4245
|
+
* @summary Queries the diagnostics details of a service.
|
|
4246
|
+
*
|
|
4247
|
+
* @return DescribeServiceDiagnosisResponse
|
|
4248
|
+
*/
|
|
3715
4249
|
describeServiceDiagnosis(ClusterId: string, ServiceName: string): Promise<DescribeServiceDiagnosisResponse>;
|
|
4250
|
+
/**
|
|
4251
|
+
* @summary Queries information about recent service deployment events.
|
|
4252
|
+
*
|
|
4253
|
+
* @param request DescribeServiceEventRequest
|
|
4254
|
+
* @param headers map
|
|
4255
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4256
|
+
* @return DescribeServiceEventResponse
|
|
4257
|
+
*/
|
|
3716
4258
|
describeServiceEventWithOptions(ClusterId: string, ServiceName: string, request: DescribeServiceEventRequest, headers: {
|
|
3717
4259
|
[key: string]: string;
|
|
3718
4260
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceEventResponse>;
|
|
4261
|
+
/**
|
|
4262
|
+
* @summary Queries information about recent service deployment events.
|
|
4263
|
+
*
|
|
4264
|
+
* @param request DescribeServiceEventRequest
|
|
4265
|
+
* @return DescribeServiceEventResponse
|
|
4266
|
+
*/
|
|
3719
4267
|
describeServiceEvent(ClusterId: string, ServiceName: string, request: DescribeServiceEventRequest): Promise<DescribeServiceEventResponse>;
|
|
4268
|
+
/**
|
|
4269
|
+
* @summary Queries the diagnostics details of an instance that runs Elastic Algorithm Service (EAS).
|
|
4270
|
+
*
|
|
4271
|
+
* @param headers map
|
|
4272
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4273
|
+
* @return DescribeServiceInstanceDiagnosisResponse
|
|
4274
|
+
*/
|
|
3720
4275
|
describeServiceInstanceDiagnosisWithOptions(ClusterId: string, ServiceName: string, InstanceName: string, headers: {
|
|
3721
4276
|
[key: string]: string;
|
|
3722
4277
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceInstanceDiagnosisResponse>;
|
|
4278
|
+
/**
|
|
4279
|
+
* @summary Queries the diagnostics details of an instance that runs Elastic Algorithm Service (EAS).
|
|
4280
|
+
*
|
|
4281
|
+
* @return DescribeServiceInstanceDiagnosisResponse
|
|
4282
|
+
*/
|
|
3723
4283
|
describeServiceInstanceDiagnosis(ClusterId: string, ServiceName: string, InstanceName: string): Promise<DescribeServiceInstanceDiagnosisResponse>;
|
|
4284
|
+
/**
|
|
4285
|
+
* @summary Queries the information about the logs of a service.
|
|
4286
|
+
*
|
|
4287
|
+
* @param request DescribeServiceLogRequest
|
|
4288
|
+
* @param headers map
|
|
4289
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4290
|
+
* @return DescribeServiceLogResponse
|
|
4291
|
+
*/
|
|
3724
4292
|
describeServiceLogWithOptions(ClusterId: string, ServiceName: string, request: DescribeServiceLogRequest, headers: {
|
|
3725
4293
|
[key: string]: string;
|
|
3726
4294
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceLogResponse>;
|
|
4295
|
+
/**
|
|
4296
|
+
* @summary Queries the information about the logs of a service.
|
|
4297
|
+
*
|
|
4298
|
+
* @param request DescribeServiceLogRequest
|
|
4299
|
+
* @return DescribeServiceLogResponse
|
|
4300
|
+
*/
|
|
3727
4301
|
describeServiceLog(ClusterId: string, ServiceName: string, request: DescribeServiceLogRequest): Promise<DescribeServiceLogResponse>;
|
|
4302
|
+
/**
|
|
4303
|
+
* @summary Queries details about the traffic mirroring settings of a service.
|
|
4304
|
+
*
|
|
4305
|
+
* @param headers map
|
|
4306
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4307
|
+
* @return DescribeServiceMirrorResponse
|
|
4308
|
+
*/
|
|
3728
4309
|
describeServiceMirrorWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3729
4310
|
[key: string]: string;
|
|
3730
4311
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeServiceMirrorResponse>;
|
|
4312
|
+
/**
|
|
4313
|
+
* @summary Queries details about the traffic mirroring settings of a service.
|
|
4314
|
+
*
|
|
4315
|
+
* @return DescribeServiceMirrorResponse
|
|
4316
|
+
*/
|
|
3731
4317
|
describeServiceMirror(ClusterId: string, ServiceName: string): Promise<DescribeServiceMirrorResponse>;
|
|
4318
|
+
/**
|
|
4319
|
+
* @summary Queries the historical prices of preemptible instances. For more information about preemptible instances, see Create and use preemptible instances.
|
|
4320
|
+
*
|
|
4321
|
+
* @param request DescribeSpotDiscountHistoryRequest
|
|
4322
|
+
* @param headers map
|
|
4323
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4324
|
+
* @return DescribeSpotDiscountHistoryResponse
|
|
4325
|
+
*/
|
|
4326
|
+
describeSpotDiscountHistoryWithOptions(request: DescribeSpotDiscountHistoryRequest, headers: {
|
|
4327
|
+
[key: string]: string;
|
|
4328
|
+
}, runtime: $Util.RuntimeOptions): Promise<DescribeSpotDiscountHistoryResponse>;
|
|
4329
|
+
/**
|
|
4330
|
+
* @summary Queries the historical prices of preemptible instances. For more information about preemptible instances, see Create and use preemptible instances.
|
|
4331
|
+
*
|
|
4332
|
+
* @param request DescribeSpotDiscountHistoryRequest
|
|
4333
|
+
* @return DescribeSpotDiscountHistoryResponse
|
|
4334
|
+
*/
|
|
4335
|
+
describeSpotDiscountHistory(request: DescribeSpotDiscountHistoryRequest): Promise<DescribeSpotDiscountHistoryResponse>;
|
|
4336
|
+
/**
|
|
4337
|
+
* @summary Switches a container service to development mode or exits development mode.
|
|
4338
|
+
*
|
|
4339
|
+
* @param request DevelopServiceRequest
|
|
4340
|
+
* @param headers map
|
|
4341
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4342
|
+
* @return DevelopServiceResponse
|
|
4343
|
+
*/
|
|
3732
4344
|
developServiceWithOptions(ClusterId: string, ServiceName: string, request: DevelopServiceRequest, headers: {
|
|
3733
4345
|
[key: string]: string;
|
|
3734
4346
|
}, runtime: $Util.RuntimeOptions): Promise<DevelopServiceResponse>;
|
|
4347
|
+
/**
|
|
4348
|
+
* @summary Switches a container service to development mode or exits development mode.
|
|
4349
|
+
*
|
|
4350
|
+
* @param request DevelopServiceRequest
|
|
4351
|
+
* @return DevelopServiceResponse
|
|
4352
|
+
*/
|
|
3735
4353
|
developService(ClusterId: string, ServiceName: string, request: DevelopServiceRequest): Promise<DevelopServiceResponse>;
|
|
4354
|
+
/**
|
|
4355
|
+
* @summary Queries a list of stress testing tasks that are created by the current user.
|
|
4356
|
+
*
|
|
4357
|
+
* @param request ListBenchmarkTaskRequest
|
|
4358
|
+
* @param headers map
|
|
4359
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4360
|
+
* @return ListBenchmarkTaskResponse
|
|
4361
|
+
*/
|
|
3736
4362
|
listBenchmarkTaskWithOptions(request: ListBenchmarkTaskRequest, headers: {
|
|
3737
4363
|
[key: string]: string;
|
|
3738
4364
|
}, runtime: $Util.RuntimeOptions): Promise<ListBenchmarkTaskResponse>;
|
|
4365
|
+
/**
|
|
4366
|
+
* @summary Queries a list of stress testing tasks that are created by the current user.
|
|
4367
|
+
*
|
|
4368
|
+
* @param request ListBenchmarkTaskRequest
|
|
4369
|
+
* @return ListBenchmarkTaskResponse
|
|
4370
|
+
*/
|
|
3739
4371
|
listBenchmarkTask(request: ListBenchmarkTaskRequest): Promise<ListBenchmarkTaskResponse>;
|
|
4372
|
+
/**
|
|
4373
|
+
* @summary Queries a list of the internal endpoints of a private gateway.
|
|
4374
|
+
*
|
|
4375
|
+
* @param headers map
|
|
4376
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4377
|
+
* @return ListGatewayIntranetLinkedVpcResponse
|
|
4378
|
+
*/
|
|
3740
4379
|
listGatewayIntranetLinkedVpcWithOptions(ClusterId: string, GatewayId: string, headers: {
|
|
3741
4380
|
[key: string]: string;
|
|
3742
4381
|
}, runtime: $Util.RuntimeOptions): Promise<ListGatewayIntranetLinkedVpcResponse>;
|
|
4382
|
+
/**
|
|
4383
|
+
* @summary Queries a list of the internal endpoints of a private gateway.
|
|
4384
|
+
*
|
|
4385
|
+
* @return ListGatewayIntranetLinkedVpcResponse
|
|
4386
|
+
*/
|
|
3743
4387
|
listGatewayIntranetLinkedVpc(ClusterId: string, GatewayId: string): Promise<ListGatewayIntranetLinkedVpcResponse>;
|
|
4388
|
+
/**
|
|
4389
|
+
* @summary Queries created service groups.
|
|
4390
|
+
*
|
|
4391
|
+
* @param request ListGroupsRequest
|
|
4392
|
+
* @param headers map
|
|
4393
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4394
|
+
* @return ListGroupsResponse
|
|
4395
|
+
*/
|
|
3744
4396
|
listGroupsWithOptions(request: ListGroupsRequest, headers: {
|
|
3745
4397
|
[key: string]: string;
|
|
3746
4398
|
}, runtime: $Util.RuntimeOptions): Promise<ListGroupsResponse>;
|
|
4399
|
+
/**
|
|
4400
|
+
* @summary Queries created service groups.
|
|
4401
|
+
*
|
|
4402
|
+
* @param request ListGroupsRequest
|
|
4403
|
+
* @return ListGroupsResponse
|
|
4404
|
+
*/
|
|
3747
4405
|
listGroups(request: ListGroupsRequest): Promise<ListGroupsResponse>;
|
|
4406
|
+
/**
|
|
4407
|
+
* @summary Queries a list of workers in a resource group.
|
|
4408
|
+
*
|
|
4409
|
+
* @param request ListResourceInstanceWorkerRequest
|
|
4410
|
+
* @param headers map
|
|
4411
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4412
|
+
* @return ListResourceInstanceWorkerResponse
|
|
4413
|
+
*/
|
|
3748
4414
|
listResourceInstanceWorkerWithOptions(ClusterId: string, ResourceId: string, InstanceName: string, request: ListResourceInstanceWorkerRequest, headers: {
|
|
3749
4415
|
[key: string]: string;
|
|
3750
4416
|
}, runtime: $Util.RuntimeOptions): Promise<ListResourceInstanceWorkerResponse>;
|
|
4417
|
+
/**
|
|
4418
|
+
* @summary Queries a list of workers in a resource group.
|
|
4419
|
+
*
|
|
4420
|
+
* @param request ListResourceInstanceWorkerRequest
|
|
4421
|
+
* @return ListResourceInstanceWorkerResponse
|
|
4422
|
+
*/
|
|
3751
4423
|
listResourceInstanceWorker(ClusterId: string, ResourceId: string, InstanceName: string, request: ListResourceInstanceWorkerRequest): Promise<ListResourceInstanceWorkerResponse>;
|
|
4424
|
+
/**
|
|
4425
|
+
* @summary Queries a list of instances in a dedicated resource group.
|
|
4426
|
+
*
|
|
4427
|
+
* @param request ListResourceInstancesRequest
|
|
4428
|
+
* @param headers map
|
|
4429
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4430
|
+
* @return ListResourceInstancesResponse
|
|
4431
|
+
*/
|
|
3752
4432
|
listResourceInstancesWithOptions(ClusterId: string, ResourceId: string, request: ListResourceInstancesRequest, headers: {
|
|
3753
4433
|
[key: string]: string;
|
|
3754
4434
|
}, runtime: $Util.RuntimeOptions): Promise<ListResourceInstancesResponse>;
|
|
4435
|
+
/**
|
|
4436
|
+
* @summary Queries a list of instances in a dedicated resource group.
|
|
4437
|
+
*
|
|
4438
|
+
* @param request ListResourceInstancesRequest
|
|
4439
|
+
* @return ListResourceInstancesResponse
|
|
4440
|
+
*/
|
|
3755
4441
|
listResourceInstances(ClusterId: string, ResourceId: string, request: ListResourceInstancesRequest): Promise<ListResourceInstancesResponse>;
|
|
4442
|
+
/**
|
|
4443
|
+
* @summary Queries a list of services that are deployed in the dedicated resource group.
|
|
4444
|
+
*
|
|
4445
|
+
* @param request ListResourceServicesRequest
|
|
4446
|
+
* @param headers map
|
|
4447
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4448
|
+
* @return ListResourceServicesResponse
|
|
4449
|
+
*/
|
|
3756
4450
|
listResourceServicesWithOptions(ClusterId: string, ResourceId: string, request: ListResourceServicesRequest, headers: {
|
|
3757
4451
|
[key: string]: string;
|
|
3758
4452
|
}, runtime: $Util.RuntimeOptions): Promise<ListResourceServicesResponse>;
|
|
4453
|
+
/**
|
|
4454
|
+
* @summary Queries a list of services that are deployed in the dedicated resource group.
|
|
4455
|
+
*
|
|
4456
|
+
* @param request ListResourceServicesRequest
|
|
4457
|
+
* @return ListResourceServicesResponse
|
|
4458
|
+
*/
|
|
3759
4459
|
listResourceServices(ClusterId: string, ResourceId: string, request: ListResourceServicesRequest): Promise<ListResourceServicesResponse>;
|
|
4460
|
+
/**
|
|
4461
|
+
* @summary Queries a list of dedicated resource groups for the current user.
|
|
4462
|
+
*
|
|
4463
|
+
* @param request ListResourcesRequest
|
|
4464
|
+
* @param headers map
|
|
4465
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4466
|
+
* @return ListResourcesResponse
|
|
4467
|
+
*/
|
|
3760
4468
|
listResourcesWithOptions(request: ListResourcesRequest, headers: {
|
|
3761
4469
|
[key: string]: string;
|
|
3762
4470
|
}, runtime: $Util.RuntimeOptions): Promise<ListResourcesResponse>;
|
|
4471
|
+
/**
|
|
4472
|
+
* @summary Queries a list of dedicated resource groups for the current user.
|
|
4473
|
+
*
|
|
4474
|
+
* @param request ListResourcesRequest
|
|
4475
|
+
* @return ListResourcesResponse
|
|
4476
|
+
*/
|
|
3763
4477
|
listResources(request: ListResourcesRequest): Promise<ListResourcesResponse>;
|
|
4478
|
+
/**
|
|
4479
|
+
* @summary Queries the containers of a service.
|
|
4480
|
+
*
|
|
4481
|
+
* @param headers map
|
|
4482
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4483
|
+
* @return ListServiceContainersResponse
|
|
4484
|
+
*/
|
|
3764
4485
|
listServiceContainersWithOptions(ClusterId: string, ServiceName: string, InstanceName: string, headers: {
|
|
3765
4486
|
[key: string]: string;
|
|
3766
4487
|
}, runtime: $Util.RuntimeOptions): Promise<ListServiceContainersResponse>;
|
|
4488
|
+
/**
|
|
4489
|
+
* @summary Queries the containers of a service.
|
|
4490
|
+
*
|
|
4491
|
+
* @return ListServiceContainersResponse
|
|
4492
|
+
*/
|
|
3767
4493
|
listServiceContainers(ClusterId: string, ServiceName: string, InstanceName: string): Promise<ListServiceContainersResponse>;
|
|
4494
|
+
/**
|
|
4495
|
+
* @summary Queries instances of a service.
|
|
4496
|
+
*
|
|
4497
|
+
* @param request ListServiceInstancesRequest
|
|
4498
|
+
* @param headers map
|
|
4499
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4500
|
+
* @return ListServiceInstancesResponse
|
|
4501
|
+
*/
|
|
3768
4502
|
listServiceInstancesWithOptions(ClusterId: string, ServiceName: string, request: ListServiceInstancesRequest, headers: {
|
|
3769
4503
|
[key: string]: string;
|
|
3770
4504
|
}, runtime: $Util.RuntimeOptions): Promise<ListServiceInstancesResponse>;
|
|
4505
|
+
/**
|
|
4506
|
+
* @summary Queries instances of a service.
|
|
4507
|
+
*
|
|
4508
|
+
* @param request ListServiceInstancesRequest
|
|
4509
|
+
* @return ListServiceInstancesResponse
|
|
4510
|
+
*/
|
|
3771
4511
|
listServiceInstances(ClusterId: string, ServiceName: string, request: ListServiceInstancesRequest): Promise<ListServiceInstancesResponse>;
|
|
4512
|
+
/**
|
|
4513
|
+
* @summary Queries the information about the historical versions of a service.
|
|
4514
|
+
*
|
|
4515
|
+
* @param request ListServiceVersionsRequest
|
|
4516
|
+
* @param headers map
|
|
4517
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4518
|
+
* @return ListServiceVersionsResponse
|
|
4519
|
+
*/
|
|
3772
4520
|
listServiceVersionsWithOptions(ClusterId: string, ServiceName: string, request: ListServiceVersionsRequest, headers: {
|
|
3773
4521
|
[key: string]: string;
|
|
3774
4522
|
}, runtime: $Util.RuntimeOptions): Promise<ListServiceVersionsResponse>;
|
|
4523
|
+
/**
|
|
4524
|
+
* @summary Queries the information about the historical versions of a service.
|
|
4525
|
+
*
|
|
4526
|
+
* @param request ListServiceVersionsRequest
|
|
4527
|
+
* @return ListServiceVersionsResponse
|
|
4528
|
+
*/
|
|
3775
4529
|
listServiceVersions(ClusterId: string, ServiceName: string, request: ListServiceVersionsRequest): Promise<ListServiceVersionsResponse>;
|
|
4530
|
+
/**
|
|
4531
|
+
* @summary Queries a list of services that are created by the current user.
|
|
4532
|
+
*
|
|
4533
|
+
* @param tmpReq ListServicesRequest
|
|
4534
|
+
* @param headers map
|
|
4535
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4536
|
+
* @return ListServicesResponse
|
|
4537
|
+
*/
|
|
3776
4538
|
listServicesWithOptions(tmpReq: ListServicesRequest, headers: {
|
|
3777
4539
|
[key: string]: string;
|
|
3778
4540
|
}, runtime: $Util.RuntimeOptions): Promise<ListServicesResponse>;
|
|
4541
|
+
/**
|
|
4542
|
+
* @summary Queries a list of services that are created by the current user.
|
|
4543
|
+
*
|
|
4544
|
+
* @param request ListServicesRequest
|
|
4545
|
+
* @return ListServicesResponse
|
|
4546
|
+
*/
|
|
3779
4547
|
listServices(request: ListServicesRequest): Promise<ListServicesResponse>;
|
|
4548
|
+
/**
|
|
4549
|
+
* @summary Performs canary release or blue-green release of a service.
|
|
4550
|
+
*
|
|
4551
|
+
* @param request ReleaseServiceRequest
|
|
4552
|
+
* @param headers map
|
|
4553
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4554
|
+
* @return ReleaseServiceResponse
|
|
4555
|
+
*/
|
|
3780
4556
|
releaseServiceWithOptions(ClusterId: string, ServiceName: string, request: ReleaseServiceRequest, headers: {
|
|
3781
4557
|
[key: string]: string;
|
|
3782
4558
|
}, runtime: $Util.RuntimeOptions): Promise<ReleaseServiceResponse>;
|
|
4559
|
+
/**
|
|
4560
|
+
* @summary Performs canary release or blue-green release of a service.
|
|
4561
|
+
*
|
|
4562
|
+
* @param request ReleaseServiceRequest
|
|
4563
|
+
* @return ReleaseServiceResponse
|
|
4564
|
+
*/
|
|
3783
4565
|
releaseService(ClusterId: string, ServiceName: string, request: ReleaseServiceRequest): Promise<ReleaseServiceResponse>;
|
|
4566
|
+
/**
|
|
4567
|
+
* @summary Restarts a service.
|
|
4568
|
+
*
|
|
4569
|
+
* @param headers map
|
|
4570
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4571
|
+
* @return RestartServiceResponse
|
|
4572
|
+
*/
|
|
3784
4573
|
restartServiceWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3785
4574
|
[key: string]: string;
|
|
3786
4575
|
}, runtime: $Util.RuntimeOptions): Promise<RestartServiceResponse>;
|
|
4576
|
+
/**
|
|
4577
|
+
* @summary Restarts a service.
|
|
4578
|
+
*
|
|
4579
|
+
* @return RestartServiceResponse
|
|
4580
|
+
*/
|
|
3787
4581
|
restartService(ClusterId: string, ServiceName: string): Promise<RestartServiceResponse>;
|
|
4582
|
+
/**
|
|
4583
|
+
* @summary Starts a stress testing task.
|
|
4584
|
+
*
|
|
4585
|
+
* @param headers map
|
|
4586
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4587
|
+
* @return StartBenchmarkTaskResponse
|
|
4588
|
+
*/
|
|
3788
4589
|
startBenchmarkTaskWithOptions(ClusterId: string, TaskName: string, headers: {
|
|
3789
4590
|
[key: string]: string;
|
|
3790
4591
|
}, runtime: $Util.RuntimeOptions): Promise<StartBenchmarkTaskResponse>;
|
|
4592
|
+
/**
|
|
4593
|
+
* @summary Starts a stress testing task.
|
|
4594
|
+
*
|
|
4595
|
+
* @return StartBenchmarkTaskResponse
|
|
4596
|
+
*/
|
|
3791
4597
|
startBenchmarkTask(ClusterId: string, TaskName: string): Promise<StartBenchmarkTaskResponse>;
|
|
4598
|
+
/**
|
|
4599
|
+
* @summary Starts a service.
|
|
4600
|
+
*
|
|
4601
|
+
* @param headers map
|
|
4602
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4603
|
+
* @return StartServiceResponse
|
|
4604
|
+
*/
|
|
3792
4605
|
startServiceWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3793
4606
|
[key: string]: string;
|
|
3794
4607
|
}, runtime: $Util.RuntimeOptions): Promise<StartServiceResponse>;
|
|
4608
|
+
/**
|
|
4609
|
+
* @summary Starts a service.
|
|
4610
|
+
*
|
|
4611
|
+
* @return StartServiceResponse
|
|
4612
|
+
*/
|
|
3795
4613
|
startService(ClusterId: string, ServiceName: string): Promise<StartServiceResponse>;
|
|
4614
|
+
/**
|
|
4615
|
+
* @summary Stops a stress testing task.
|
|
4616
|
+
*
|
|
4617
|
+
* @param headers map
|
|
4618
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4619
|
+
* @return StopBenchmarkTaskResponse
|
|
4620
|
+
*/
|
|
3796
4621
|
stopBenchmarkTaskWithOptions(ClusterId: string, TaskName: string, headers: {
|
|
3797
4622
|
[key: string]: string;
|
|
3798
4623
|
}, runtime: $Util.RuntimeOptions): Promise<StopBenchmarkTaskResponse>;
|
|
4624
|
+
/**
|
|
4625
|
+
* @summary Stops a stress testing task.
|
|
4626
|
+
*
|
|
4627
|
+
* @return StopBenchmarkTaskResponse
|
|
4628
|
+
*/
|
|
3799
4629
|
stopBenchmarkTask(ClusterId: string, TaskName: string): Promise<StopBenchmarkTaskResponse>;
|
|
4630
|
+
/**
|
|
4631
|
+
* @summary Stops a running service.
|
|
4632
|
+
*
|
|
4633
|
+
* @param headers map
|
|
4634
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4635
|
+
* @return StopServiceResponse
|
|
4636
|
+
*/
|
|
3800
4637
|
stopServiceWithOptions(ClusterId: string, ServiceName: string, headers: {
|
|
3801
4638
|
[key: string]: string;
|
|
3802
4639
|
}, runtime: $Util.RuntimeOptions): Promise<StopServiceResponse>;
|
|
4640
|
+
/**
|
|
4641
|
+
* @summary Stops a running service.
|
|
4642
|
+
*
|
|
4643
|
+
* @return StopServiceResponse
|
|
4644
|
+
*/
|
|
3803
4645
|
stopService(ClusterId: string, ServiceName: string): Promise<StopServiceResponse>;
|
|
4646
|
+
/**
|
|
4647
|
+
* @summary Updates an application service.
|
|
4648
|
+
*
|
|
4649
|
+
* @param request UpdateAppServiceRequest
|
|
4650
|
+
* @param headers map
|
|
4651
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4652
|
+
* @return UpdateAppServiceResponse
|
|
4653
|
+
*/
|
|
3804
4654
|
updateAppServiceWithOptions(ClusterId: string, ServiceName: string, request: UpdateAppServiceRequest, headers: {
|
|
3805
4655
|
[key: string]: string;
|
|
3806
4656
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateAppServiceResponse>;
|
|
4657
|
+
/**
|
|
4658
|
+
* @summary Updates an application service.
|
|
4659
|
+
*
|
|
4660
|
+
* @param request UpdateAppServiceRequest
|
|
4661
|
+
* @return UpdateAppServiceResponse
|
|
4662
|
+
*/
|
|
3807
4663
|
updateAppService(ClusterId: string, ServiceName: string, request: UpdateAppServiceRequest): Promise<UpdateAppServiceResponse>;
|
|
4664
|
+
/**
|
|
4665
|
+
* @summary Updates a stress testing task.
|
|
4666
|
+
*
|
|
4667
|
+
* @param request UpdateBenchmarkTaskRequest
|
|
4668
|
+
* @param headers map
|
|
4669
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4670
|
+
* @return UpdateBenchmarkTaskResponse
|
|
4671
|
+
*/
|
|
3808
4672
|
updateBenchmarkTaskWithOptions(ClusterId: string, TaskName: string, request: UpdateBenchmarkTaskRequest, headers: {
|
|
3809
4673
|
[key: string]: string;
|
|
3810
4674
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateBenchmarkTaskResponse>;
|
|
4675
|
+
/**
|
|
4676
|
+
* @summary Updates a stress testing task.
|
|
4677
|
+
*
|
|
4678
|
+
* @param request UpdateBenchmarkTaskRequest
|
|
4679
|
+
* @return UpdateBenchmarkTaskResponse
|
|
4680
|
+
*/
|
|
3811
4681
|
updateBenchmarkTask(ClusterId: string, TaskName: string, request: UpdateBenchmarkTaskRequest): Promise<UpdateBenchmarkTaskResponse>;
|
|
4682
|
+
/**
|
|
4683
|
+
* @summary Update a private gateway.
|
|
4684
|
+
*
|
|
4685
|
+
* @param request UpdateGatewayRequest
|
|
4686
|
+
* @param headers map
|
|
4687
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4688
|
+
* @return UpdateGatewayResponse
|
|
4689
|
+
*/
|
|
3812
4690
|
updateGatewayWithOptions(GatewayId: string, ClusterId: string, request: UpdateGatewayRequest, headers: {
|
|
3813
4691
|
[key: string]: string;
|
|
3814
4692
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateGatewayResponse>;
|
|
4693
|
+
/**
|
|
4694
|
+
* @summary Update a private gateway.
|
|
4695
|
+
*
|
|
4696
|
+
* @param request UpdateGatewayRequest
|
|
4697
|
+
* @return UpdateGatewayResponse
|
|
4698
|
+
*/
|
|
3815
4699
|
updateGateway(GatewayId: string, ClusterId: string, request: UpdateGatewayRequest): Promise<UpdateGatewayResponse>;
|
|
4700
|
+
/**
|
|
4701
|
+
* @summary Updates the information about a dedicated resource group. Only the name of a dedicated resource group can be updated.
|
|
4702
|
+
*
|
|
4703
|
+
* @param request UpdateResourceRequest
|
|
4704
|
+
* @param headers map
|
|
4705
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4706
|
+
* @return UpdateResourceResponse
|
|
4707
|
+
*/
|
|
3816
4708
|
updateResourceWithOptions(ClusterId: string, ResourceId: string, request: UpdateResourceRequest, headers: {
|
|
3817
4709
|
[key: string]: string;
|
|
3818
4710
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateResourceResponse>;
|
|
4711
|
+
/**
|
|
4712
|
+
* @summary Updates the information about a dedicated resource group. Only the name of a dedicated resource group can be updated.
|
|
4713
|
+
*
|
|
4714
|
+
* @param request UpdateResourceRequest
|
|
4715
|
+
* @return UpdateResourceResponse
|
|
4716
|
+
*/
|
|
3819
4717
|
updateResource(ClusterId: string, ResourceId: string, request: UpdateResourceRequest): Promise<UpdateResourceResponse>;
|
|
4718
|
+
/**
|
|
4719
|
+
* @summary Updates the configurations of a virtual private cloud (VPC) direct connection for a dedicated resource group.
|
|
4720
|
+
*
|
|
4721
|
+
* @param request UpdateResourceDLinkRequest
|
|
4722
|
+
* @param headers map
|
|
4723
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4724
|
+
* @return UpdateResourceDLinkResponse
|
|
4725
|
+
*/
|
|
3820
4726
|
updateResourceDLinkWithOptions(ClusterId: string, ResourceId: string, request: UpdateResourceDLinkRequest, headers: {
|
|
3821
4727
|
[key: string]: string;
|
|
3822
4728
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateResourceDLinkResponse>;
|
|
4729
|
+
/**
|
|
4730
|
+
* @summary Updates the configurations of a virtual private cloud (VPC) direct connection for a dedicated resource group.
|
|
4731
|
+
*
|
|
4732
|
+
* @param request UpdateResourceDLinkRequest
|
|
4733
|
+
* @return UpdateResourceDLinkResponse
|
|
4734
|
+
*/
|
|
3823
4735
|
updateResourceDLink(ClusterId: string, ResourceId: string, request: UpdateResourceDLinkRequest): Promise<UpdateResourceDLinkResponse>;
|
|
4736
|
+
/**
|
|
4737
|
+
* @summary Updates the service scheduling status of an instance in a dedicated resource group.
|
|
4738
|
+
*
|
|
4739
|
+
* @param request UpdateResourceInstanceRequest
|
|
4740
|
+
* @param headers map
|
|
4741
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4742
|
+
* @return UpdateResourceInstanceResponse
|
|
4743
|
+
*/
|
|
3824
4744
|
updateResourceInstanceWithOptions(ClusterId: string, ResourceId: string, InstanceId: string, request: UpdateResourceInstanceRequest, headers: {
|
|
3825
4745
|
[key: string]: string;
|
|
3826
4746
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateResourceInstanceResponse>;
|
|
4747
|
+
/**
|
|
4748
|
+
* @summary Updates the service scheduling status of an instance in a dedicated resource group.
|
|
4749
|
+
*
|
|
4750
|
+
* @param request UpdateResourceInstanceRequest
|
|
4751
|
+
* @return UpdateResourceInstanceResponse
|
|
4752
|
+
*/
|
|
3827
4753
|
updateResourceInstance(ClusterId: string, ResourceId: string, InstanceId: string, request: UpdateResourceInstanceRequest): Promise<UpdateResourceInstanceResponse>;
|
|
4754
|
+
/**
|
|
4755
|
+
* @summary Updates a model or processor of a service. If only the metadata.instance field is updated, manual scaling can be performed.
|
|
4756
|
+
*
|
|
4757
|
+
* @param request UpdateServiceRequest
|
|
4758
|
+
* @param headers map
|
|
4759
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4760
|
+
* @return UpdateServiceResponse
|
|
4761
|
+
*/
|
|
3828
4762
|
updateServiceWithOptions(ClusterId: string, ServiceName: string, request: UpdateServiceRequest, headers: {
|
|
3829
4763
|
[key: string]: string;
|
|
3830
4764
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceResponse>;
|
|
4765
|
+
/**
|
|
4766
|
+
* @summary Updates a model or processor of a service. If only the metadata.instance field is updated, manual scaling can be performed.
|
|
4767
|
+
*
|
|
4768
|
+
* @param request UpdateServiceRequest
|
|
4769
|
+
* @return UpdateServiceResponse
|
|
4770
|
+
*/
|
|
3831
4771
|
updateService(ClusterId: string, ServiceName: string, request: UpdateServiceRequest): Promise<UpdateServiceResponse>;
|
|
4772
|
+
/**
|
|
4773
|
+
* @summary Updates the Autoscaler configurations of a service.
|
|
4774
|
+
*
|
|
4775
|
+
* @param request UpdateServiceAutoScalerRequest
|
|
4776
|
+
* @param headers map
|
|
4777
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4778
|
+
* @return UpdateServiceAutoScalerResponse
|
|
4779
|
+
*/
|
|
3832
4780
|
updateServiceAutoScalerWithOptions(ClusterId: string, ServiceName: string, request: UpdateServiceAutoScalerRequest, headers: {
|
|
3833
4781
|
[key: string]: string;
|
|
3834
4782
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceAutoScalerResponse>;
|
|
4783
|
+
/**
|
|
4784
|
+
* @summary Updates the Autoscaler configurations of a service.
|
|
4785
|
+
*
|
|
4786
|
+
* @param request UpdateServiceAutoScalerRequest
|
|
4787
|
+
* @return UpdateServiceAutoScalerResponse
|
|
4788
|
+
*/
|
|
3835
4789
|
updateServiceAutoScaler(ClusterId: string, ServiceName: string, request: UpdateServiceAutoScalerRequest): Promise<UpdateServiceAutoScalerResponse>;
|
|
4790
|
+
/**
|
|
4791
|
+
* @summary Updates the Cron Horizontal Pod Autoscaler (CronHPA) settings of a service.
|
|
4792
|
+
*
|
|
4793
|
+
* @param request UpdateServiceCronScalerRequest
|
|
4794
|
+
* @param headers map
|
|
4795
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4796
|
+
* @return UpdateServiceCronScalerResponse
|
|
4797
|
+
*/
|
|
3836
4798
|
updateServiceCronScalerWithOptions(ClusterId: string, ServiceName: string, request: UpdateServiceCronScalerRequest, headers: {
|
|
3837
4799
|
[key: string]: string;
|
|
3838
4800
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceCronScalerResponse>;
|
|
4801
|
+
/**
|
|
4802
|
+
* @summary Updates the Cron Horizontal Pod Autoscaler (CronHPA) settings of a service.
|
|
4803
|
+
*
|
|
4804
|
+
* @param request UpdateServiceCronScalerRequest
|
|
4805
|
+
* @return UpdateServiceCronScalerResponse
|
|
4806
|
+
*/
|
|
3839
4807
|
updateServiceCronScaler(ClusterId: string, ServiceName: string, request: UpdateServiceCronScalerRequest): Promise<UpdateServiceCronScalerResponse>;
|
|
4808
|
+
/**
|
|
4809
|
+
* @summary Updates attributes of service instances. Only isolation can be performed for service instances.
|
|
4810
|
+
*
|
|
4811
|
+
* @param request UpdateServiceInstanceRequest
|
|
4812
|
+
* @param headers map
|
|
4813
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4814
|
+
* @return UpdateServiceInstanceResponse
|
|
4815
|
+
*/
|
|
3840
4816
|
updateServiceInstanceWithOptions(ClusterId: string, ServiceName: string, InstanceName: string, request: UpdateServiceInstanceRequest, headers: {
|
|
3841
4817
|
[key: string]: string;
|
|
3842
4818
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceInstanceResponse>;
|
|
4819
|
+
/**
|
|
4820
|
+
* @summary Updates attributes of service instances. Only isolation can be performed for service instances.
|
|
4821
|
+
*
|
|
4822
|
+
* @param request UpdateServiceInstanceRequest
|
|
4823
|
+
* @return UpdateServiceInstanceResponse
|
|
4824
|
+
*/
|
|
3843
4825
|
updateServiceInstance(ClusterId: string, ServiceName: string, InstanceName: string, request: UpdateServiceInstanceRequest): Promise<UpdateServiceInstanceResponse>;
|
|
4826
|
+
/**
|
|
4827
|
+
* @summary Adds service tags or updates existing service tags.
|
|
4828
|
+
*
|
|
4829
|
+
* @param request UpdateServiceLabelRequest
|
|
4830
|
+
* @param headers map
|
|
4831
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4832
|
+
* @return UpdateServiceLabelResponse
|
|
4833
|
+
*/
|
|
3844
4834
|
updateServiceLabelWithOptions(ClusterId: string, ServiceName: string, request: UpdateServiceLabelRequest, headers: {
|
|
3845
4835
|
[key: string]: string;
|
|
3846
4836
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceLabelResponse>;
|
|
4837
|
+
/**
|
|
4838
|
+
* @summary Adds service tags or updates existing service tags.
|
|
4839
|
+
*
|
|
4840
|
+
* @param request UpdateServiceLabelRequest
|
|
4841
|
+
* @return UpdateServiceLabelResponse
|
|
4842
|
+
*/
|
|
3847
4843
|
updateServiceLabel(ClusterId: string, ServiceName: string, request: UpdateServiceLabelRequest): Promise<UpdateServiceLabelResponse>;
|
|
4844
|
+
/**
|
|
4845
|
+
* @summary Updates the traffic mirroring configurations of a service.
|
|
4846
|
+
*
|
|
4847
|
+
* @param request UpdateServiceMirrorRequest
|
|
4848
|
+
* @param headers map
|
|
4849
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4850
|
+
* @return UpdateServiceMirrorResponse
|
|
4851
|
+
*/
|
|
3848
4852
|
updateServiceMirrorWithOptions(ClusterId: string, ServiceName: string, request: UpdateServiceMirrorRequest, headers: {
|
|
3849
4853
|
[key: string]: string;
|
|
3850
4854
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceMirrorResponse>;
|
|
4855
|
+
/**
|
|
4856
|
+
* @summary Updates the traffic mirroring configurations of a service.
|
|
4857
|
+
*
|
|
4858
|
+
* @param request UpdateServiceMirrorRequest
|
|
4859
|
+
* @return UpdateServiceMirrorResponse
|
|
4860
|
+
*/
|
|
3851
4861
|
updateServiceMirror(ClusterId: string, ServiceName: string, request: UpdateServiceMirrorRequest): Promise<UpdateServiceMirrorResponse>;
|
|
4862
|
+
/**
|
|
4863
|
+
* @summary Updates the safety lock of a service to minimize misoperations on the service.
|
|
4864
|
+
*
|
|
4865
|
+
* @param request UpdateServiceSafetyLockRequest
|
|
4866
|
+
* @param headers map
|
|
4867
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4868
|
+
* @return UpdateServiceSafetyLockResponse
|
|
4869
|
+
*/
|
|
3852
4870
|
updateServiceSafetyLockWithOptions(ClusterId: string, ServiceName: string, request: UpdateServiceSafetyLockRequest, headers: {
|
|
3853
4871
|
[key: string]: string;
|
|
3854
4872
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceSafetyLockResponse>;
|
|
4873
|
+
/**
|
|
4874
|
+
* @summary Updates the safety lock of a service to minimize misoperations on the service.
|
|
4875
|
+
*
|
|
4876
|
+
* @param request UpdateServiceSafetyLockRequest
|
|
4877
|
+
* @return UpdateServiceSafetyLockResponse
|
|
4878
|
+
*/
|
|
3855
4879
|
updateServiceSafetyLock(ClusterId: string, ServiceName: string, request: UpdateServiceSafetyLockRequest): Promise<UpdateServiceSafetyLockResponse>;
|
|
4880
|
+
/**
|
|
4881
|
+
* @summary Updates the version of a service or rolls back the service to a specific version.
|
|
4882
|
+
*
|
|
4883
|
+
* @param request UpdateServiceVersionRequest
|
|
4884
|
+
* @param headers map
|
|
4885
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4886
|
+
* @return UpdateServiceVersionResponse
|
|
4887
|
+
*/
|
|
3856
4888
|
updateServiceVersionWithOptions(ClusterId: string, ServiceName: string, request: UpdateServiceVersionRequest, headers: {
|
|
3857
4889
|
[key: string]: string;
|
|
3858
4890
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateServiceVersionResponse>;
|
|
4891
|
+
/**
|
|
4892
|
+
* @summary Updates the version of a service or rolls back the service to a specific version.
|
|
4893
|
+
*
|
|
4894
|
+
* @param request UpdateServiceVersionRequest
|
|
4895
|
+
* @return UpdateServiceVersionResponse
|
|
4896
|
+
*/
|
|
3859
4897
|
updateServiceVersion(ClusterId: string, ServiceName: string, request: UpdateServiceVersionRequest): Promise<UpdateServiceVersionResponse>;
|
|
3860
4898
|
}
|