tencentcloud-sdk-nodejs-tke 4.1.299 → 4.1.300
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.
|
@@ -48,6 +48,9 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
48
48
|
async DeleteHealthCheckPolicy(req, cb) {
|
|
49
49
|
return this.request("DeleteHealthCheckPolicy", req, cb);
|
|
50
50
|
}
|
|
51
|
+
async DetachApplicationRole(req, cb) {
|
|
52
|
+
return this.request("DetachApplicationRole", req, cb);
|
|
53
|
+
}
|
|
51
54
|
async DescribeGPUInfo(req, cb) {
|
|
52
55
|
return this.request("DescribeGPUInfo", req, cb);
|
|
53
56
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { DescribeClusterInstancesResponse, DescribeHealthCheckPolicyBindingsRequest, DescribeGPUInfoResponse, DescribeClusterMachinesResponse, DeleteClusterMachinesRequest, RebootMachinesRequest, CreateNodePoolRequest, DescribeHealthCheckPolicyBindingsResponse, DescribeNodePoolsRequest, ModifyHealthCheckPolicyResponse, StopMachinesResponse, DescribeClustersRequest, CreateHealthCheckPolicyRequest, DescribeZoneInstanceConfigInfosResponse, StartMachinesRequest, ModifyNodePoolRequest, ModifyClusterMachineResponse, SetMachineLoginRequest, ModifyNodePoolResponse, DescribeHealthCheckTemplateRequest, DescribeClustersResponse, CreateNodePoolResponse, ModifyHealthCheckPolicyRequest, StartMachinesResponse, DescribeNodePoolsElasticityStrengthResponse, DeleteClusterMachinesResponse, DeleteNodePoolResponse, DescribeClusterInstancesRequest, DeleteHealthCheckPolicyResponse, DescribeGPUInfoRequest, DeleteNodePoolRequest, SetMachineLoginResponse, DescribeZoneInstanceConfigInfosRequest, DescribeNodePoolsElasticityStrengthRequest, DescribeClusterMachinesRequest, DeleteHealthCheckPolicyRequest, DescribeNodePoolsResponse, ScaleNodePoolResponse, ModifyClusterMachineRequest, DescribeHealthCheckPoliciesResponse, RebootMachinesResponse, StopMachinesRequest, DescribeHealthCheckPoliciesRequest, DescribeHealthCheckTemplateResponse, ScaleNodePoolRequest, CreateHealthCheckPolicyResponse } from "./tke_models";
|
|
2
|
+
import { DescribeClusterInstancesResponse, DescribeHealthCheckPolicyBindingsRequest, DescribeGPUInfoResponse, DescribeClusterMachinesResponse, DeleteClusterMachinesRequest, RebootMachinesRequest, CreateNodePoolRequest, DescribeHealthCheckPolicyBindingsResponse, DescribeNodePoolsRequest, ModifyHealthCheckPolicyResponse, StopMachinesResponse, DescribeClustersRequest, CreateHealthCheckPolicyRequest, DescribeZoneInstanceConfigInfosResponse, StartMachinesRequest, ModifyNodePoolRequest, ModifyClusterMachineResponse, SetMachineLoginRequest, ModifyNodePoolResponse, DescribeHealthCheckTemplateRequest, DescribeClustersResponse, CreateNodePoolResponse, ModifyHealthCheckPolicyRequest, StartMachinesResponse, DescribeNodePoolsElasticityStrengthResponse, DeleteClusterMachinesResponse, DeleteNodePoolResponse, DescribeClusterInstancesRequest, DeleteHealthCheckPolicyResponse, DescribeGPUInfoRequest, DetachApplicationRoleResponse, DeleteNodePoolRequest, SetMachineLoginResponse, DescribeZoneInstanceConfigInfosRequest, DescribeNodePoolsElasticityStrengthRequest, DescribeClusterMachinesRequest, DeleteHealthCheckPolicyRequest, DescribeNodePoolsResponse, ScaleNodePoolResponse, ModifyClusterMachineRequest, DescribeHealthCheckPoliciesResponse, RebootMachinesResponse, StopMachinesRequest, DescribeHealthCheckPoliciesRequest, DescribeHealthCheckTemplateResponse, ScaleNodePoolRequest, DetachApplicationRoleRequest, CreateHealthCheckPolicyResponse } from "./tke_models";
|
|
3
3
|
/**
|
|
4
4
|
* tke client
|
|
5
5
|
* @class
|
|
@@ -160,6 +160,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
160
160
|
* 删除健康检测策略
|
|
161
161
|
*/
|
|
162
162
|
DeleteHealthCheckPolicy(req: DeleteHealthCheckPolicyRequest, cb?: (error: string, rep: DeleteHealthCheckPolicyResponse) => void): Promise<DeleteHealthCheckPolicyResponse>;
|
|
163
|
+
/**
|
|
164
|
+
* 解绑原生节点 Application Role
|
|
165
|
+
*/
|
|
166
|
+
DetachApplicationRole(req: DetachApplicationRoleRequest, cb?: (error: string, rep: DetachApplicationRoleResponse) => void): Promise<DetachApplicationRoleResponse>;
|
|
163
167
|
/**
|
|
164
168
|
* 请求该接口,会返回所有适配该机型和操作系统组合的gpu驱动版本
|
|
165
169
|
*/
|
|
@@ -212,6 +212,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
212
212
|
async DeleteHealthCheckPolicy(req, cb) {
|
|
213
213
|
return this.request("DeleteHealthCheckPolicy", req, cb);
|
|
214
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* 解绑原生节点 Application Role
|
|
217
|
+
*/
|
|
218
|
+
async DetachApplicationRole(req, cb) {
|
|
219
|
+
return this.request("DetachApplicationRole", req, cb);
|
|
220
|
+
}
|
|
215
221
|
/**
|
|
216
222
|
* 请求该接口,会返回所有适配该机型和操作系统组合的gpu驱动版本
|
|
217
223
|
*/
|
|
@@ -1632,6 +1632,15 @@ export interface ManagementConfig {
|
|
|
1632
1632
|
*/
|
|
1633
1633
|
KernelArgs?: Array<string>;
|
|
1634
1634
|
}
|
|
1635
|
+
/**
|
|
1636
|
+
* DetachApplicationRole返回参数结构体
|
|
1637
|
+
*/
|
|
1638
|
+
export interface DetachApplicationRoleResponse {
|
|
1639
|
+
/**
|
|
1640
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1641
|
+
*/
|
|
1642
|
+
RequestId?: string;
|
|
1643
|
+
}
|
|
1635
1644
|
/**
|
|
1636
1645
|
* DeleteNodePool请求参数结构体
|
|
1637
1646
|
*/
|
|
@@ -2218,6 +2227,19 @@ export interface NodeCountSummary {
|
|
|
2218
2227
|
*/
|
|
2219
2228
|
AutoscalingAdded?: AutoscalingAdded;
|
|
2220
2229
|
}
|
|
2230
|
+
/**
|
|
2231
|
+
* DetachApplicationRole请求参数结构体
|
|
2232
|
+
*/
|
|
2233
|
+
export interface DetachApplicationRoleRequest {
|
|
2234
|
+
/**
|
|
2235
|
+
* <p>集群 ID</p>
|
|
2236
|
+
*/
|
|
2237
|
+
ClusterId?: string;
|
|
2238
|
+
/**
|
|
2239
|
+
* <p>解绑的 CVM 实例列表</p>
|
|
2240
|
+
*/
|
|
2241
|
+
Instances?: Array<string>;
|
|
2242
|
+
}
|
|
2221
2243
|
/**
|
|
2222
2244
|
* 修改原生节点池参数
|
|
2223
2245
|
*/
|