@alicloud/cs20151215 6.2.0 → 6.3.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 +36 -0
- package/dist/client.js +108 -0
- package/dist/client.js.map +1 -1
- package/dist/models/InstallNodePoolComponentsRequest.d.ts +84 -0
- package/dist/models/InstallNodePoolComponentsRequest.js +142 -0
- package/dist/models/InstallNodePoolComponentsRequest.js.map +1 -0
- package/dist/models/InstallNodePoolComponentsResponse.d.ts +19 -0
- package/dist/models/InstallNodePoolComponentsResponse.js +69 -0
- package/dist/models/InstallNodePoolComponentsResponse.js.map +1 -0
- package/dist/models/InstallNodePoolComponentsResponseBody.d.ts +28 -0
- package/dist/models/InstallNodePoolComponentsResponseBody.js +62 -0
- package/dist/models/InstallNodePoolComponentsResponseBody.js.map +1 -0
- package/dist/models/ListClusterKubeconfigStatesRequest.d.ts +1 -0
- package/dist/models/ListClusterKubeconfigStatesRequest.js +2 -0
- package/dist/models/ListClusterKubeconfigStatesRequest.js.map +1 -1
- package/dist/models/ListClusterKubeconfigStatesResponseBody.d.ts +17 -0
- package/dist/models/ListClusterKubeconfigStatesResponseBody.js +31 -1
- package/dist/models/ListClusterKubeconfigStatesResponseBody.js.map +1 -1
- package/dist/models/UpdateNodePoolComponentRequest.d.ts +69 -0
- package/dist/models/UpdateNodePoolComponentRequest.js +122 -0
- package/dist/models/UpdateNodePoolComponentRequest.js.map +1 -0
- package/dist/models/UpdateNodePoolComponentResponse.d.ts +19 -0
- package/dist/models/UpdateNodePoolComponentResponse.js +69 -0
- package/dist/models/UpdateNodePoolComponentResponse.js.map +1 -0
- package/dist/models/UpdateNodePoolComponentResponseBody.d.ts +31 -0
- package/dist/models/UpdateNodePoolComponentResponseBody.js +62 -0
- package/dist/models/UpdateNodePoolComponentResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +12 -0
- package/dist/models/model.js +36 -12
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +122 -0
- package/src/models/InstallNodePoolComponentsRequest.ts +152 -0
- package/src/models/InstallNodePoolComponentsResponse.ts +40 -0
- package/src/models/InstallNodePoolComponentsResponseBody.ts +45 -0
- package/src/models/ListClusterKubeconfigStatesRequest.ts +3 -0
- package/src/models/ListClusterKubeconfigStatesResponseBody.ts +38 -0
- package/src/models/UpdateNodePoolComponentRequest.ts +126 -0
- package/src/models/UpdateNodePoolComponentResponse.ts +40 -0
- package/src/models/UpdateNodePoolComponentResponseBody.ts +48 -0
- package/src/models/model.ts +12 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class InstallNodePoolComponentsRequestComponentsConfig extends $dara.Model {
|
|
3
|
+
customConfig?: {
|
|
4
|
+
[key: string]: string;
|
|
5
|
+
};
|
|
6
|
+
static names(): {
|
|
7
|
+
[key: string]: string;
|
|
8
|
+
};
|
|
9
|
+
static types(): {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
};
|
|
12
|
+
validate(): void;
|
|
13
|
+
constructor(map?: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
export declare class InstallNodePoolComponentsRequestComponents extends $dara.Model {
|
|
18
|
+
config?: InstallNodePoolComponentsRequestComponentsConfig;
|
|
19
|
+
/**
|
|
20
|
+
* @remarks
|
|
21
|
+
* This parameter is required.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* kubelet
|
|
25
|
+
*/
|
|
26
|
+
name?: string;
|
|
27
|
+
/**
|
|
28
|
+
* @example
|
|
29
|
+
* 1.28.9-aliyun.1
|
|
30
|
+
*/
|
|
31
|
+
version?: string;
|
|
32
|
+
static names(): {
|
|
33
|
+
[key: string]: string;
|
|
34
|
+
};
|
|
35
|
+
static types(): {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
};
|
|
38
|
+
validate(): void;
|
|
39
|
+
constructor(map?: {
|
|
40
|
+
[key: string]: any;
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
export declare class InstallNodePoolComponentsRequestRollingPolicy extends $dara.Model {
|
|
44
|
+
/**
|
|
45
|
+
* @example
|
|
46
|
+
* 0
|
|
47
|
+
*/
|
|
48
|
+
batchInterval?: number;
|
|
49
|
+
/**
|
|
50
|
+
* @example
|
|
51
|
+
* 1
|
|
52
|
+
*/
|
|
53
|
+
maxParallelism?: number;
|
|
54
|
+
/**
|
|
55
|
+
* @example
|
|
56
|
+
* NotPause
|
|
57
|
+
*/
|
|
58
|
+
pausePolicy?: string;
|
|
59
|
+
static names(): {
|
|
60
|
+
[key: string]: string;
|
|
61
|
+
};
|
|
62
|
+
static types(): {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
};
|
|
65
|
+
validate(): void;
|
|
66
|
+
constructor(map?: {
|
|
67
|
+
[key: string]: any;
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
export declare class InstallNodePoolComponentsRequest extends $dara.Model {
|
|
71
|
+
components?: InstallNodePoolComponentsRequestComponents[];
|
|
72
|
+
nodeNames?: string[];
|
|
73
|
+
rollingPolicy?: InstallNodePoolComponentsRequestRollingPolicy;
|
|
74
|
+
static names(): {
|
|
75
|
+
[key: string]: string;
|
|
76
|
+
};
|
|
77
|
+
static types(): {
|
|
78
|
+
[key: string]: any;
|
|
79
|
+
};
|
|
80
|
+
validate(): void;
|
|
81
|
+
constructor(map?: {
|
|
82
|
+
[key: string]: any;
|
|
83
|
+
});
|
|
84
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.InstallNodePoolComponentsRequest = exports.InstallNodePoolComponentsRequestRollingPolicy = exports.InstallNodePoolComponentsRequestComponents = exports.InstallNodePoolComponentsRequestComponentsConfig = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class InstallNodePoolComponentsRequestComponentsConfig extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
customConfig: 'customConfig',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
static types() {
|
|
46
|
+
return {
|
|
47
|
+
customConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
validate() {
|
|
51
|
+
if (this.customConfig) {
|
|
52
|
+
$dara.Model.validateMap(this.customConfig);
|
|
53
|
+
}
|
|
54
|
+
super.validate();
|
|
55
|
+
}
|
|
56
|
+
constructor(map) {
|
|
57
|
+
super(map);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.InstallNodePoolComponentsRequestComponentsConfig = InstallNodePoolComponentsRequestComponentsConfig;
|
|
61
|
+
class InstallNodePoolComponentsRequestComponents extends $dara.Model {
|
|
62
|
+
static names() {
|
|
63
|
+
return {
|
|
64
|
+
config: 'config',
|
|
65
|
+
name: 'name',
|
|
66
|
+
version: 'version',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
static types() {
|
|
70
|
+
return {
|
|
71
|
+
config: InstallNodePoolComponentsRequestComponentsConfig,
|
|
72
|
+
name: 'string',
|
|
73
|
+
version: 'string',
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
validate() {
|
|
77
|
+
if (this.config && typeof this.config.validate === 'function') {
|
|
78
|
+
this.config.validate();
|
|
79
|
+
}
|
|
80
|
+
super.validate();
|
|
81
|
+
}
|
|
82
|
+
constructor(map) {
|
|
83
|
+
super(map);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.InstallNodePoolComponentsRequestComponents = InstallNodePoolComponentsRequestComponents;
|
|
87
|
+
class InstallNodePoolComponentsRequestRollingPolicy extends $dara.Model {
|
|
88
|
+
static names() {
|
|
89
|
+
return {
|
|
90
|
+
batchInterval: 'batchInterval',
|
|
91
|
+
maxParallelism: 'maxParallelism',
|
|
92
|
+
pausePolicy: 'pausePolicy',
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
static types() {
|
|
96
|
+
return {
|
|
97
|
+
batchInterval: 'number',
|
|
98
|
+
maxParallelism: 'number',
|
|
99
|
+
pausePolicy: 'string',
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
validate() {
|
|
103
|
+
super.validate();
|
|
104
|
+
}
|
|
105
|
+
constructor(map) {
|
|
106
|
+
super(map);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
exports.InstallNodePoolComponentsRequestRollingPolicy = InstallNodePoolComponentsRequestRollingPolicy;
|
|
110
|
+
class InstallNodePoolComponentsRequest extends $dara.Model {
|
|
111
|
+
static names() {
|
|
112
|
+
return {
|
|
113
|
+
components: 'components',
|
|
114
|
+
nodeNames: 'nodeNames',
|
|
115
|
+
rollingPolicy: 'rollingPolicy',
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
static types() {
|
|
119
|
+
return {
|
|
120
|
+
components: { 'type': 'array', 'itemType': InstallNodePoolComponentsRequestComponents },
|
|
121
|
+
nodeNames: { 'type': 'array', 'itemType': 'string' },
|
|
122
|
+
rollingPolicy: InstallNodePoolComponentsRequestRollingPolicy,
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
validate() {
|
|
126
|
+
if (Array.isArray(this.components)) {
|
|
127
|
+
$dara.Model.validateArray(this.components);
|
|
128
|
+
}
|
|
129
|
+
if (Array.isArray(this.nodeNames)) {
|
|
130
|
+
$dara.Model.validateArray(this.nodeNames);
|
|
131
|
+
}
|
|
132
|
+
if (this.rollingPolicy && typeof this.rollingPolicy.validate === 'function') {
|
|
133
|
+
this.rollingPolicy.validate();
|
|
134
|
+
}
|
|
135
|
+
super.validate();
|
|
136
|
+
}
|
|
137
|
+
constructor(map) {
|
|
138
|
+
super(map);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
exports.InstallNodePoolComponentsRequest = InstallNodePoolComponentsRequest;
|
|
142
|
+
//# sourceMappingURL=InstallNodePoolComponentsRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstallNodePoolComponentsRequest.js","sourceRoot":"","sources":["../../src/models/InstallNodePoolComponentsRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gDAAiD,SAAQ,KAAK,CAAC,KAAK;IAE/E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;SAC7B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;SAC5E,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,YAAY,EAAE,CAAC;YACrB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC7C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAxBD,4GAwBC;AAED,MAAa,0CAA2C,SAAQ,KAAK,CAAC,KAAK;IAezE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,gDAAgD;YACxD,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,QAAQ;SAClB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,MAAM,IAAI,OAAQ,IAAI,CAAC,MAAc,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACrE,IAAI,CAAC,MAAc,CAAC,QAAQ,EAAE,CAAC;QAClC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAzCD,gGAyCC;AAED,MAAa,6CAA8C,SAAQ,KAAK,CAAC,KAAK;IAgB5E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,cAAc,EAAE,gBAAgB;YAChC,WAAW,EAAE,aAAa;SAC3B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,QAAQ;YACvB,cAAc,EAAE,QAAQ;YACxB,WAAW,EAAE,QAAQ;SACtB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvCD,sGAuCC;AAED,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAI/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;SAC/B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,0CAA0C,EAAE;YACvF,SAAS,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACpD,aAAa,EAAE,6CAA6C;SAC7D,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAClC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;YACjC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,CAAC;QACD,IAAG,IAAI,CAAC,aAAa,IAAI,OAAQ,IAAI,CAAC,aAAqB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACnF,IAAI,CAAC,aAAqB,CAAC,QAAQ,EAAE,CAAC;QACzC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApCD,4EAoCC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { InstallNodePoolComponentsResponseBody } from "./InstallNodePoolComponentsResponseBody";
|
|
3
|
+
export declare class InstallNodePoolComponentsResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: InstallNodePoolComponentsResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.InstallNodePoolComponentsResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const InstallNodePoolComponentsResponseBody_1 = require("./InstallNodePoolComponentsResponseBody");
|
|
40
|
+
class InstallNodePoolComponentsResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: InstallNodePoolComponentsResponseBody_1.InstallNodePoolComponentsResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.InstallNodePoolComponentsResponse = InstallNodePoolComponentsResponse;
|
|
69
|
+
//# sourceMappingURL=InstallNodePoolComponentsResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstallNodePoolComponentsResponse.js","sourceRoot":"","sources":["../../src/models/InstallNodePoolComponentsResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,mGAAgG;AAGhG,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAIhE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,6EAAqC;SAC5C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,8EAiCC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class InstallNodePoolComponentsResponseBody extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* c8155823d057948c69a****
|
|
6
|
+
*/
|
|
7
|
+
clusterId?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 49511F2D-D56A-5C24-B9AE-C8491E09B***
|
|
11
|
+
*/
|
|
12
|
+
requestId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* T-67d7ec016ce37c0106000***
|
|
16
|
+
*/
|
|
17
|
+
taskId?: string;
|
|
18
|
+
static names(): {
|
|
19
|
+
[key: string]: string;
|
|
20
|
+
};
|
|
21
|
+
static types(): {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
};
|
|
24
|
+
validate(): void;
|
|
25
|
+
constructor(map?: {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
});
|
|
28
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.InstallNodePoolComponentsResponseBody = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class InstallNodePoolComponentsResponseBody extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
clusterId: 'clusterId',
|
|
43
|
+
requestId: 'requestId',
|
|
44
|
+
taskId: 'taskId',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
clusterId: 'string',
|
|
50
|
+
requestId: 'string',
|
|
51
|
+
taskId: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.InstallNodePoolComponentsResponseBody = InstallNodePoolComponentsResponseBody;
|
|
62
|
+
//# sourceMappingURL=InstallNodePoolComponentsResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstallNodePoolComponentsResponseBody.js","sourceRoot":"","sources":["../../src/models/InstallNodePoolComponentsResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IAgBpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,SAAS,EAAE,WAAW;YACtB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,SAAS,EAAE,QAAQ;YACnB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvCD,sFAuCC"}
|
|
@@ -39,12 +39,14 @@ const $dara = __importStar(require("@darabonba/typescript"));
|
|
|
39
39
|
class ListClusterKubeconfigStatesRequest extends $dara.Model {
|
|
40
40
|
static names() {
|
|
41
41
|
return {
|
|
42
|
+
cloudServiceKubeConfig: 'cloudServiceKubeConfig',
|
|
42
43
|
pageNumber: 'pageNumber',
|
|
43
44
|
pageSize: 'pageSize',
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
static types() {
|
|
47
48
|
return {
|
|
49
|
+
cloudServiceKubeConfig: 'boolean',
|
|
48
50
|
pageNumber: 'number',
|
|
49
51
|
pageSize: 'number',
|
|
50
52
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListClusterKubeconfigStatesRequest.js","sourceRoot":"","sources":["../../src/models/ListClusterKubeconfigStatesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ListClusterKubeconfigStatesRequest.js","sourceRoot":"","sources":["../../src/models/ListClusterKubeconfigStatesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IAwBjE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,sBAAsB,EAAE,wBAAwB;YAChD,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,sBAAsB,EAAE,SAAS;YACjC,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA/CD,gFA+CC"}
|
|
@@ -35,6 +35,22 @@ export declare class ListClusterKubeconfigStatesResponseBodyPage extends $dara.M
|
|
|
35
35
|
[key: string]: any;
|
|
36
36
|
});
|
|
37
37
|
}
|
|
38
|
+
export declare class ListClusterKubeconfigStatesResponseBodyStatesCloudServiceRoles extends $dara.Model {
|
|
39
|
+
isDefaultTemplate?: boolean;
|
|
40
|
+
roleName?: string;
|
|
41
|
+
roleNamespace?: string;
|
|
42
|
+
type?: string;
|
|
43
|
+
static names(): {
|
|
44
|
+
[key: string]: string;
|
|
45
|
+
};
|
|
46
|
+
static types(): {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
};
|
|
49
|
+
validate(): void;
|
|
50
|
+
constructor(map?: {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
});
|
|
53
|
+
}
|
|
38
54
|
export declare class ListClusterKubeconfigStatesResponseBodyStates extends $dara.Model {
|
|
39
55
|
/**
|
|
40
56
|
* @remarks
|
|
@@ -104,6 +120,7 @@ export declare class ListClusterKubeconfigStatesResponseBodyStates extends $dara
|
|
|
104
120
|
* Expired
|
|
105
121
|
*/
|
|
106
122
|
certState?: string;
|
|
123
|
+
cloudServiceRoles?: ListClusterKubeconfigStatesResponseBodyStatesCloudServiceRoles[];
|
|
107
124
|
/**
|
|
108
125
|
* @remarks
|
|
109
126
|
* Indicates whether the client certificate for the kubeconfig file can be revoked.
|
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.ListClusterKubeconfigStatesResponseBody = exports.ListClusterKubeconfigStatesResponseBodyStates = exports.ListClusterKubeconfigStatesResponseBodyPage = void 0;
|
|
36
|
+
exports.ListClusterKubeconfigStatesResponseBody = exports.ListClusterKubeconfigStatesResponseBodyStates = exports.ListClusterKubeconfigStatesResponseBodyStatesCloudServiceRoles = exports.ListClusterKubeconfigStatesResponseBodyPage = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
39
|
class ListClusterKubeconfigStatesResponseBodyPage extends $dara.Model {
|
|
@@ -59,6 +59,31 @@ class ListClusterKubeconfigStatesResponseBodyPage extends $dara.Model {
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
exports.ListClusterKubeconfigStatesResponseBodyPage = ListClusterKubeconfigStatesResponseBodyPage;
|
|
62
|
+
class ListClusterKubeconfigStatesResponseBodyStatesCloudServiceRoles extends $dara.Model {
|
|
63
|
+
static names() {
|
|
64
|
+
return {
|
|
65
|
+
isDefaultTemplate: 'is_default_template',
|
|
66
|
+
roleName: 'role_name',
|
|
67
|
+
roleNamespace: 'role_namespace',
|
|
68
|
+
type: 'type',
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
static types() {
|
|
72
|
+
return {
|
|
73
|
+
isDefaultTemplate: 'boolean',
|
|
74
|
+
roleName: 'string',
|
|
75
|
+
roleNamespace: 'string',
|
|
76
|
+
type: 'string',
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
validate() {
|
|
80
|
+
super.validate();
|
|
81
|
+
}
|
|
82
|
+
constructor(map) {
|
|
83
|
+
super(map);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.ListClusterKubeconfigStatesResponseBodyStatesCloudServiceRoles = ListClusterKubeconfigStatesResponseBodyStatesCloudServiceRoles;
|
|
62
87
|
class ListClusterKubeconfigStatesResponseBodyStates extends $dara.Model {
|
|
63
88
|
static names() {
|
|
64
89
|
return {
|
|
@@ -69,6 +94,7 @@ class ListClusterKubeconfigStatesResponseBodyStates extends $dara.Model {
|
|
|
69
94
|
accountType: 'account_type',
|
|
70
95
|
certExpireTime: 'cert_expire_time',
|
|
71
96
|
certState: 'cert_state',
|
|
97
|
+
cloudServiceRoles: 'cloud_service_roles',
|
|
72
98
|
revokable: 'revokable',
|
|
73
99
|
};
|
|
74
100
|
}
|
|
@@ -81,10 +107,14 @@ class ListClusterKubeconfigStatesResponseBodyStates extends $dara.Model {
|
|
|
81
107
|
accountType: 'string',
|
|
82
108
|
certExpireTime: 'string',
|
|
83
109
|
certState: 'string',
|
|
110
|
+
cloudServiceRoles: { 'type': 'array', 'itemType': ListClusterKubeconfigStatesResponseBodyStatesCloudServiceRoles },
|
|
84
111
|
revokable: 'boolean',
|
|
85
112
|
};
|
|
86
113
|
}
|
|
87
114
|
validate() {
|
|
115
|
+
if (Array.isArray(this.cloudServiceRoles)) {
|
|
116
|
+
$dara.Model.validateArray(this.cloudServiceRoles);
|
|
117
|
+
}
|
|
88
118
|
super.validate();
|
|
89
119
|
}
|
|
90
120
|
constructor(map) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListClusterKubeconfigStatesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListClusterKubeconfigStatesResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,2CAA4C,SAAQ,KAAK,CAAC,KAAK;IAyB1E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,aAAa;YACzB,QAAQ,EAAE,WAAW;YACrB,UAAU,EAAE,aAAa;SAC1B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhDD,kGAgDC;AAED,MAAa,6CAA8C,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ListClusterKubeconfigStatesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListClusterKubeconfigStatesResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class UpdateNodePoolComponentRequestConfig extends $dara.Model {
|
|
3
|
+
customConfig?: {
|
|
4
|
+
[key: string]: string;
|
|
5
|
+
};
|
|
6
|
+
static names(): {
|
|
7
|
+
[key: string]: string;
|
|
8
|
+
};
|
|
9
|
+
static types(): {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
};
|
|
12
|
+
validate(): void;
|
|
13
|
+
constructor(map?: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
export declare class UpdateNodePoolComponentRequestRollingPolicy extends $dara.Model {
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* 0
|
|
21
|
+
*/
|
|
22
|
+
batchInterval?: number;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* 1
|
|
26
|
+
*/
|
|
27
|
+
maxParallelism?: number;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* NotPause
|
|
31
|
+
*/
|
|
32
|
+
pausePolicy?: string;
|
|
33
|
+
static names(): {
|
|
34
|
+
[key: string]: string;
|
|
35
|
+
};
|
|
36
|
+
static types(): {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
};
|
|
39
|
+
validate(): void;
|
|
40
|
+
constructor(map?: {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
export declare class UpdateNodePoolComponentRequest extends $dara.Model {
|
|
45
|
+
config?: UpdateNodePoolComponentRequestConfig;
|
|
46
|
+
disableRolling?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* kubelet
|
|
50
|
+
*/
|
|
51
|
+
name?: string;
|
|
52
|
+
nodeNames?: string[];
|
|
53
|
+
rollingPolicy?: UpdateNodePoolComponentRequestRollingPolicy;
|
|
54
|
+
/**
|
|
55
|
+
* @example
|
|
56
|
+
* 1.28.9-aliyun.1
|
|
57
|
+
*/
|
|
58
|
+
version?: string;
|
|
59
|
+
static names(): {
|
|
60
|
+
[key: string]: string;
|
|
61
|
+
};
|
|
62
|
+
static types(): {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
};
|
|
65
|
+
validate(): void;
|
|
66
|
+
constructor(map?: {
|
|
67
|
+
[key: string]: any;
|
|
68
|
+
});
|
|
69
|
+
}
|