@huaweicloud/huaweicloud-sdk-cce 3.1.39 → 3.1.40
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/package.json +2 -2
- package/v3/CceClient.d.ts +1 -1
- package/v3/CceClient.js +1 -1
- package/v3/model/AddonInstance.d.ts +3 -3
- package/v3/model/AddonMetadata.d.ts +25 -0
- package/v3/model/AddonMetadata.js +37 -0
- package/v3/model/AddonTemplate.d.ts +3 -3
- package/v3/model/CreateAddonInstanceResponse.d.ts +3 -3
- package/v3/model/InstanceRequest.d.ts +3 -3
- package/v3/model/ShowAddonInstanceResponse.d.ts +3 -3
- package/v3/model/UpdateAddonInstanceResponse.d.ts +3 -3
- package/v3/public-api.d.ts +1 -0
- package/v3/public-api.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@huaweicloud/huaweicloud-sdk-cce",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.40",
|
|
4
4
|
"description": "Huaweicloud SDK for cce",
|
|
5
5
|
"main": "huaweicloud-sdk-cce.js",
|
|
6
6
|
"typings": "huaweicloud-sdk-cce.d.ts",
|
|
@@ -14,6 +14,6 @@
|
|
|
14
14
|
"author": "HuaweiCloud_SDK",
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@huaweicloud/huaweicloud-sdk-core": "^3.1.
|
|
17
|
+
"@huaweicloud/huaweicloud-sdk-core": "^3.1.40"
|
|
18
18
|
}
|
|
19
19
|
}
|
package/v3/CceClient.d.ts
CHANGED
|
@@ -328,7 +328,7 @@ export declare class CceClient {
|
|
|
328
328
|
*
|
|
329
329
|
* @summary 查询AddonTemplates列表
|
|
330
330
|
* @param {string} contentType 消息体的类型(格式)
|
|
331
|
-
* @param {string} [addonTemplateName]
|
|
331
|
+
* @param {string} [addonTemplateName] 指定的插件名称或插件别名,不填写则查询列表。
|
|
332
332
|
* @param {*} [options] Override http request option.
|
|
333
333
|
* @throws {RequiredError}
|
|
334
334
|
*/
|
package/v3/CceClient.js
CHANGED
|
@@ -390,7 +390,7 @@ var CceClient = /** @class */ (function () {
|
|
|
390
390
|
*
|
|
391
391
|
* @summary 查询AddonTemplates列表
|
|
392
392
|
* @param {string} contentType 消息体的类型(格式)
|
|
393
|
-
* @param {string} [addonTemplateName]
|
|
393
|
+
* @param {string} [addonTemplateName] 指定的插件名称或插件别名,不填写则查询列表。
|
|
394
394
|
* @param {*} [options] Override http request option.
|
|
395
395
|
* @throws {RequiredError}
|
|
396
396
|
*/
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { AddonInstanceStatus } from './AddonInstanceStatus';
|
|
2
|
+
import { AddonMetadata } from './AddonMetadata';
|
|
2
3
|
import { InstanceSpec } from './InstanceSpec';
|
|
3
|
-
import { Metadata } from './Metadata';
|
|
4
4
|
export declare class AddonInstance {
|
|
5
5
|
kind: string;
|
|
6
6
|
apiVersion: string;
|
|
7
|
-
metadata?:
|
|
7
|
+
metadata?: AddonMetadata;
|
|
8
8
|
spec: InstanceSpec;
|
|
9
9
|
status: AddonInstanceStatus;
|
|
10
10
|
constructor(kind?: any, apiVersion?: any, spec?: any, status?: any);
|
|
11
11
|
withKind(kind: string): AddonInstance;
|
|
12
12
|
withApiVersion(apiVersion: string): AddonInstance;
|
|
13
|
-
withMetadata(metadata:
|
|
13
|
+
withMetadata(metadata: AddonMetadata): AddonInstance;
|
|
14
14
|
withSpec(spec: InstanceSpec): AddonInstance;
|
|
15
15
|
withStatus(status: AddonInstanceStatus): AddonInstance;
|
|
16
16
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare class AddonMetadata {
|
|
2
|
+
uid?: string;
|
|
3
|
+
name?: string;
|
|
4
|
+
alias?: string;
|
|
5
|
+
labels?: {
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
};
|
|
8
|
+
annotations?: {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
};
|
|
11
|
+
updateTimestamp?: string;
|
|
12
|
+
creationTimestamp?: string;
|
|
13
|
+
constructor();
|
|
14
|
+
withUid(uid: string): AddonMetadata;
|
|
15
|
+
withName(name: string): AddonMetadata;
|
|
16
|
+
withAlias(alias: string): AddonMetadata;
|
|
17
|
+
withLabels(labels: {
|
|
18
|
+
[key: string]: string;
|
|
19
|
+
}): AddonMetadata;
|
|
20
|
+
withAnnotations(annotations: {
|
|
21
|
+
[key: string]: string;
|
|
22
|
+
}): AddonMetadata;
|
|
23
|
+
withUpdateTimestamp(updateTimestamp: string): AddonMetadata;
|
|
24
|
+
withCreationTimestamp(creationTimestamp: string): AddonMetadata;
|
|
25
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AddonMetadata = void 0;
|
|
4
|
+
var AddonMetadata = /** @class */ (function () {
|
|
5
|
+
function AddonMetadata() {
|
|
6
|
+
}
|
|
7
|
+
AddonMetadata.prototype.withUid = function (uid) {
|
|
8
|
+
this['uid'] = uid;
|
|
9
|
+
return this;
|
|
10
|
+
};
|
|
11
|
+
AddonMetadata.prototype.withName = function (name) {
|
|
12
|
+
this['name'] = name;
|
|
13
|
+
return this;
|
|
14
|
+
};
|
|
15
|
+
AddonMetadata.prototype.withAlias = function (alias) {
|
|
16
|
+
this['alias'] = alias;
|
|
17
|
+
return this;
|
|
18
|
+
};
|
|
19
|
+
AddonMetadata.prototype.withLabels = function (labels) {
|
|
20
|
+
this['labels'] = labels;
|
|
21
|
+
return this;
|
|
22
|
+
};
|
|
23
|
+
AddonMetadata.prototype.withAnnotations = function (annotations) {
|
|
24
|
+
this['annotations'] = annotations;
|
|
25
|
+
return this;
|
|
26
|
+
};
|
|
27
|
+
AddonMetadata.prototype.withUpdateTimestamp = function (updateTimestamp) {
|
|
28
|
+
this['updateTimestamp'] = updateTimestamp;
|
|
29
|
+
return this;
|
|
30
|
+
};
|
|
31
|
+
AddonMetadata.prototype.withCreationTimestamp = function (creationTimestamp) {
|
|
32
|
+
this['creationTimestamp'] = creationTimestamp;
|
|
33
|
+
return this;
|
|
34
|
+
};
|
|
35
|
+
return AddonMetadata;
|
|
36
|
+
}());
|
|
37
|
+
exports.AddonMetadata = AddonMetadata;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AddonMetadata } from './AddonMetadata';
|
|
2
2
|
import { Templatespec } from './Templatespec';
|
|
3
3
|
export declare class AddonTemplate {
|
|
4
4
|
kind: string;
|
|
5
5
|
apiVersion: string;
|
|
6
|
-
metadata:
|
|
6
|
+
metadata: AddonMetadata;
|
|
7
7
|
spec: Templatespec;
|
|
8
8
|
constructor(kind?: any, apiVersion?: any, metadata?: any, spec?: any);
|
|
9
9
|
withKind(kind: string): AddonTemplate;
|
|
10
10
|
withApiVersion(apiVersion: string): AddonTemplate;
|
|
11
|
-
withMetadata(metadata:
|
|
11
|
+
withMetadata(metadata: AddonMetadata): AddonTemplate;
|
|
12
12
|
withSpec(spec: Templatespec): AddonTemplate;
|
|
13
13
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { AddonInstanceStatus } from './AddonInstanceStatus';
|
|
2
|
+
import { AddonMetadata } from './AddonMetadata';
|
|
2
3
|
import { InstanceSpec } from './InstanceSpec';
|
|
3
|
-
import { Metadata } from './Metadata';
|
|
4
4
|
import { SdkResponse } from "@huaweicloud/huaweicloud-sdk-core/SdkResponse";
|
|
5
5
|
export declare class CreateAddonInstanceResponse extends SdkResponse {
|
|
6
6
|
kind?: string;
|
|
7
7
|
apiVersion?: string;
|
|
8
|
-
metadata?:
|
|
8
|
+
metadata?: AddonMetadata;
|
|
9
9
|
spec?: InstanceSpec;
|
|
10
10
|
status?: AddonInstanceStatus;
|
|
11
11
|
constructor();
|
|
12
12
|
withKind(kind: string): CreateAddonInstanceResponse;
|
|
13
13
|
withApiVersion(apiVersion: string): CreateAddonInstanceResponse;
|
|
14
|
-
withMetadata(metadata:
|
|
14
|
+
withMetadata(metadata: AddonMetadata): CreateAddonInstanceResponse;
|
|
15
15
|
withSpec(spec: InstanceSpec): CreateAddonInstanceResponse;
|
|
16
16
|
withStatus(status: AddonInstanceStatus): CreateAddonInstanceResponse;
|
|
17
17
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { AddonMetadata } from './AddonMetadata';
|
|
1
2
|
import { InstanceRequestSpec } from './InstanceRequestSpec';
|
|
2
|
-
import { Metadata } from './Metadata';
|
|
3
3
|
export declare class InstanceRequest {
|
|
4
4
|
kind: string;
|
|
5
5
|
apiVersion: string;
|
|
6
|
-
metadata:
|
|
6
|
+
metadata: AddonMetadata;
|
|
7
7
|
spec: InstanceRequestSpec;
|
|
8
8
|
constructor(kind?: any, apiVersion?: any, metadata?: any, spec?: any);
|
|
9
9
|
withKind(kind: string): InstanceRequest;
|
|
10
10
|
withApiVersion(apiVersion: string): InstanceRequest;
|
|
11
|
-
withMetadata(metadata:
|
|
11
|
+
withMetadata(metadata: AddonMetadata): InstanceRequest;
|
|
12
12
|
withSpec(spec: InstanceRequestSpec): InstanceRequest;
|
|
13
13
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { AddonInstanceStatus } from './AddonInstanceStatus';
|
|
2
|
+
import { AddonMetadata } from './AddonMetadata';
|
|
2
3
|
import { InstanceSpec } from './InstanceSpec';
|
|
3
|
-
import { Metadata } from './Metadata';
|
|
4
4
|
import { SdkResponse } from "@huaweicloud/huaweicloud-sdk-core/SdkResponse";
|
|
5
5
|
export declare class ShowAddonInstanceResponse extends SdkResponse {
|
|
6
6
|
kind?: string;
|
|
7
7
|
apiVersion?: string;
|
|
8
|
-
metadata?:
|
|
8
|
+
metadata?: AddonMetadata;
|
|
9
9
|
spec?: InstanceSpec;
|
|
10
10
|
status?: AddonInstanceStatus;
|
|
11
11
|
constructor();
|
|
12
12
|
withKind(kind: string): ShowAddonInstanceResponse;
|
|
13
13
|
withApiVersion(apiVersion: string): ShowAddonInstanceResponse;
|
|
14
|
-
withMetadata(metadata:
|
|
14
|
+
withMetadata(metadata: AddonMetadata): ShowAddonInstanceResponse;
|
|
15
15
|
withSpec(spec: InstanceSpec): ShowAddonInstanceResponse;
|
|
16
16
|
withStatus(status: AddonInstanceStatus): ShowAddonInstanceResponse;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { AddonInstanceStatus } from './AddonInstanceStatus';
|
|
2
|
+
import { AddonMetadata } from './AddonMetadata';
|
|
2
3
|
import { InstanceSpec } from './InstanceSpec';
|
|
3
|
-
import { Metadata } from './Metadata';
|
|
4
4
|
import { SdkResponse } from "@huaweicloud/huaweicloud-sdk-core/SdkResponse";
|
|
5
5
|
export declare class UpdateAddonInstanceResponse extends SdkResponse {
|
|
6
6
|
kind?: string;
|
|
7
7
|
apiVersion?: string;
|
|
8
|
-
metadata?:
|
|
8
|
+
metadata?: AddonMetadata;
|
|
9
9
|
spec?: InstanceSpec;
|
|
10
10
|
status?: AddonInstanceStatus;
|
|
11
11
|
constructor();
|
|
12
12
|
withKind(kind: string): UpdateAddonInstanceResponse;
|
|
13
13
|
withApiVersion(apiVersion: string): UpdateAddonInstanceResponse;
|
|
14
|
-
withMetadata(metadata:
|
|
14
|
+
withMetadata(metadata: AddonMetadata): UpdateAddonInstanceResponse;
|
|
15
15
|
withSpec(spec: InstanceSpec): UpdateAddonInstanceResponse;
|
|
16
16
|
withStatus(status: AddonInstanceStatus): UpdateAddonInstanceResponse;
|
|
17
17
|
}
|
package/v3/public-api.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './model/AddNodeRequest';
|
|
|
7
7
|
export * from './model/AddNodeResponse';
|
|
8
8
|
export * from './model/AddonInstance';
|
|
9
9
|
export * from './model/AddonInstanceStatus';
|
|
10
|
+
export * from './model/AddonMetadata';
|
|
10
11
|
export * from './model/AddonTemplate';
|
|
11
12
|
export * from './model/AuthenticatingProxy';
|
|
12
13
|
export * from './model/Authentication';
|
package/v3/public-api.js
CHANGED
|
@@ -23,6 +23,7 @@ __exportStar(require("./model/AddNodeRequest"), exports);
|
|
|
23
23
|
__exportStar(require("./model/AddNodeResponse"), exports);
|
|
24
24
|
__exportStar(require("./model/AddonInstance"), exports);
|
|
25
25
|
__exportStar(require("./model/AddonInstanceStatus"), exports);
|
|
26
|
+
__exportStar(require("./model/AddonMetadata"), exports);
|
|
26
27
|
__exportStar(require("./model/AddonTemplate"), exports);
|
|
27
28
|
__exportStar(require("./model/AuthenticatingProxy"), exports);
|
|
28
29
|
__exportStar(require("./model/Authentication"), exports);
|