Skip to content

Commit da970f7

Browse files
committed
Merge "master" into "i18n_openapi-Node.js-2021-05-21-online-2245-2026_02_03_14_02_49"
Conflicts: meta.json
2 parents e4a70bc + d66d66d commit da970f7

File tree

89 files changed

+4362
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+4362
-7
lines changed

meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lasted": "1.0.5",
3-
"meta_commit": "2f0ac871c46a814b6783df4a83000b3af579cb5d"
3+
"meta_commit": "b7abd261575816051ffe74d434c9efbe2ee137a7"
44
}

service/clb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@volcengine/clb",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "swagger client for @volcengine/clb",
55
"license": "Apache-2.0",
66
"main": "./dist/cjs/index.js",

service/clb/src/api.ts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ import { DescribeLoadBalancerAttributesRequest } from './types/index';
8686
import { DescribeLoadBalancerAttributesResponse } from './types/index';
8787
import { DescribeLoadBalancerSpecsRequest } from './types/index';
8888
import { DescribeLoadBalancerSpecsResponse } from './types/index';
89+
import { DescribeLoadBalancerStatusRequest } from './types/index';
90+
import { DescribeLoadBalancerStatusResponse } from './types/index';
8991
import { DescribeLoadBalancersBillingRequest } from './types/index';
9092
import { DescribeLoadBalancersBillingResponse } from './types/index';
9193
import { DescribeLoadBalancersRequest } from './types/index';
@@ -226,6 +228,7 @@ export type DescribeListenerHealthCommandOutput = CommandOutput<DescribeListener
226228
export type DescribeListenersCommandOutput = CommandOutput<DescribeListenersResponse>;
227229
export type DescribeLoadBalancerAttributesCommandOutput = CommandOutput<DescribeLoadBalancerAttributesResponse>;
228230
export type DescribeLoadBalancerSpecsCommandOutput = CommandOutput<DescribeLoadBalancerSpecsResponse>;
231+
export type DescribeLoadBalancerStatusCommandOutput = CommandOutput<DescribeLoadBalancerStatusResponse>;
229232
export type DescribeLoadBalancersCommandOutput = CommandOutput<DescribeLoadBalancersResponse>;
230233
export type DescribeLoadBalancersBillingCommandOutput = CommandOutput<DescribeLoadBalancersBillingResponse>;
231234
export type DescribeNLBListenerAttributesCommandOutput = CommandOutput<DescribeNLBListenerAttributesResponse>;
@@ -277,7 +280,6 @@ export type UntagNLBResourcesCommandOutput = CommandOutput<UntagNLBResourcesResp
277280
export type UntagResourcesCommandOutput = CommandOutput<UntagResourcesResponse>;
278281
export type UploadCertificateCommandOutput = CommandOutput<UploadCertificateResponse>;
279282

280-
281283
/**
282284
* CLBClient Service Client
283285
*/
@@ -831,6 +833,21 @@ export class DescribeLoadBalancerSpecsCommand extends Command<
831833
this.requestConfig = buildRequestConfigFromMetaPath(DescribeLoadBalancerSpecsCommand.metaPath);
832834
}
833835
}
836+
/**
837+
* Command to DescribeLoadBalancerStatus
838+
*/
839+
export class DescribeLoadBalancerStatusCommand extends Command<
840+
DescribeLoadBalancerStatusRequest,
841+
DescribeLoadBalancerStatusCommandOutput,
842+
'DescribeLoadBalancerStatusCommand'
843+
> {
844+
static readonly metaPath = '/DescribeLoadBalancerStatus/2020-04-01/clb/get/text_plain/';
845+
846+
constructor(input: DescribeLoadBalancerStatusRequest) {
847+
super(input);
848+
this.requestConfig = buildRequestConfigFromMetaPath(DescribeLoadBalancerStatusCommand.metaPath);
849+
}
850+
}
834851
/**
835852
* Command to DescribeLoadBalancers
836853
*/
@@ -1620,6 +1637,7 @@ export default {
16201637
DescribeListenersCommand,
16211638
DescribeLoadBalancerAttributesCommand,
16221639
DescribeLoadBalancerSpecsCommand,
1640+
DescribeLoadBalancerStatusCommand,
16231641
DescribeLoadBalancersCommand,
16241642
DescribeLoadBalancersBillingCommand,
16251643
DescribeNLBListenerAttributesCommand,
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* clb
5+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6+
*
7+
* OpenAPI spec version: common-version
8+
*
9+
*
10+
* NOTE: This class is auto generated by the swagger code generator program.
11+
* https://github.com/swagger-api/swagger-codegen.git
12+
* Do not edit the class manually.
13+
*/
14+
15+
/**
16+
*
17+
*
18+
* @export
19+
* @interface DescribeLoadBalancerStatusRequest
20+
*/
21+
export interface DescribeLoadBalancerStatusRequest {
22+
23+
/**
24+
* @type {string}
25+
* @memberof DescribeLoadBalancerStatusRequest
26+
*/
27+
LoadBalancerId: string;
28+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* clb
5+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6+
*
7+
* OpenAPI spec version: common-version
8+
*
9+
*
10+
* NOTE: This class is auto generated by the swagger code generator program.
11+
* https://github.com/swagger-api/swagger-codegen.git
12+
* Do not edit the class manually.
13+
*/
14+
15+
/**
16+
*
17+
*
18+
* @export
19+
* @interface DescribeLoadBalancerStatusResponse
20+
*/
21+
export interface DescribeLoadBalancerStatusResponse {
22+
23+
/**
24+
* @type {string}
25+
* @memberof DescribeLoadBalancerStatusResponse
26+
*/
27+
LoadBalancerId?: string;
28+
29+
/**
30+
* @type {string}
31+
* @memberof DescribeLoadBalancerStatusResponse
32+
*/
33+
Status?: string;
34+
}

service/clb/src/types/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ export * from './describe-load-balancer-attributes-request';
7979
export * from './describe-load-balancer-attributes-response';
8080
export * from './describe-load-balancer-specs-request';
8181
export * from './describe-load-balancer-specs-response';
82+
export * from './describe-load-balancer-status-request';
83+
export * from './describe-load-balancer-status-response';
8284
export * from './describe-load-balancers-billing-request';
8385
export * from './describe-load-balancers-billing-response';
8486
export * from './describe-load-balancers-request';

service/redis/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@volcengine/redis",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "swagger client for @volcengine/redis",
55
"license": "Apache-2.0",
66
"main": "./dist/cjs/index.js",

0 commit comments

Comments
 (0)