Skip to content

Commit 464424e

Browse files
committed
Merge 'vpc-Node.js-2020-04-01-online-2478-2026_04_07_21_08_02' into 'master'
vpc-Node.js-2020-04-01-online-2478-2026_04_07_21_08_02 See merge request: !73
2 parents dcd2be5 + c9e392d commit 464424e

40 files changed

Lines changed: 504 additions & 24 deletions

File tree

service/vpc/package.json

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

service/vpc/src/types/associate-vpc-cidr-block-request.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,24 @@
2020
*/
2121
export interface AssociateVpcCidrBlockRequest {
2222

23+
/**
24+
* @type {string}
25+
* @memberof AssociateVpcCidrBlockRequest
26+
*/
27+
Ipv6CidrBlock?: string;
28+
29+
/**
30+
* @type {string}
31+
* @memberof AssociateVpcCidrBlockRequest
32+
*/
33+
Ipv6Isp?: string;
34+
35+
/**
36+
* @type {number}
37+
* @memberof AssociateVpcCidrBlockRequest
38+
*/
39+
Ipv6MaskLen?: number;
40+
2341
/**
2442
* @type {string}
2543
* @memberof AssociateVpcCidrBlockRequest

service/vpc/src/types/associate-vpc-cidr-block-response.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* Do not edit the class manually.
1313
*/
1414

15+
import { Ipv6CidrBlockForAssociateVpcCidrBlockOutput } from './ipv6-cidr-block-for-associate-vpc-cidr-block-output';
1516
/**
1617
*
1718
*
@@ -26,6 +27,12 @@ export interface AssociateVpcCidrBlockResponse {
2627
*/
2728
AsyncTaskId?: string;
2829

30+
/**
31+
* @type {Array<Ipv6CidrBlockForAssociateVpcCidrBlockOutput>}
32+
* @memberof AssociateVpcCidrBlockResponse
33+
*/
34+
Ipv6CidrBlocks?: Array<Ipv6CidrBlockForAssociateVpcCidrBlockOutput>;
35+
2936
/**
3037
* @type {string}
3138
* @memberof AssociateVpcCidrBlockResponse
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+
* vpc
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 AttachmentForDescribeNetworkInterfaceAttributesOutput
20+
*/
21+
export interface AttachmentForDescribeNetworkInterfaceAttributesOutput {
22+
23+
/**
24+
* @type {boolean}
25+
* @memberof AttachmentForDescribeNetworkInterfaceAttributesOutput
26+
*/
27+
DeleteOnTermination?: boolean;
28+
29+
/**
30+
* @type {string}
31+
* @memberof AttachmentForDescribeNetworkInterfaceAttributesOutput
32+
*/
33+
InstanceId?: string;
34+
}
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+
* vpc
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 AttachmentForDescribeNetworkInterfacesOutput
20+
*/
21+
export interface AttachmentForDescribeNetworkInterfacesOutput {
22+
23+
/**
24+
* @type {boolean}
25+
* @memberof AttachmentForDescribeNetworkInterfacesOutput
26+
*/
27+
DeleteOnTermination?: boolean;
28+
29+
/**
30+
* @type {string}
31+
* @memberof AttachmentForDescribeNetworkInterfacesOutput
32+
*/
33+
InstanceId?: string;
34+
}

service/vpc/src/types/create-flow-log-request.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ export interface CreateFlowLogRequest {
3939
*/
4040
Description?: string;
4141

42+
/**
43+
* @type {boolean}
44+
* @memberof CreateFlowLogRequest
45+
*/
46+
EnableIndex?: boolean;
47+
4248
/**
4349
* @type {string}
4450
* @memberof CreateFlowLogRequest

service/vpc/src/types/create-instance-group-request.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
*/
2121
export interface CreateInstanceGroupRequest {
2222

23+
/**
24+
* @type {string}
25+
* @memberof CreateInstanceGroupRequest
26+
*/
27+
ClientToken?: string;
28+
2329
/**
2430
* @type {string}
2531
* @memberof CreateInstanceGroupRequest

service/vpc/src/types/create-ipv6-gateway-request.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* Do not edit the class manually.
1313
*/
1414

15+
import { TagForCreateIpv6GatewayInput } from './tag-for-create-ipv6-gateway-input';
1516
/**
1617
*
1718
*
@@ -44,6 +45,12 @@ export interface CreateIpv6GatewayRequest {
4445
*/
4546
ProjectName?: string;
4647

48+
/**
49+
* @type {Array<TagForCreateIpv6GatewayInput>}
50+
* @memberof CreateIpv6GatewayRequest
51+
*/
52+
Tags?: Array<TagForCreateIpv6GatewayInput>;
53+
4754
/**
4855
* @type {string}
4956
* @memberof CreateIpv6GatewayRequest

service/vpc/src/types/create-subnet-request.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ export interface CreateSubnetRequest {
6363
*/
6464
VpcId: string;
6565

66+
/**
67+
* @type {string}
68+
* @memberof CreateSubnetRequest
69+
*/
70+
VpcIpv6CidrBlock?: string;
71+
6672
/**
6773
* @type {string}
6874
* @memberof CreateSubnetRequest

service/vpc/src/types/create-vpc-request.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ export interface CreateVpcRequest {
4545
*/
4646
DnsServers?: Array<string>;
4747

48+
/**
49+
* @type {boolean}
50+
* @memberof CreateVpcRequest
51+
*/
52+
DryRun?: boolean;
53+
4854
/**
4955
* @type {boolean}
5056
* @memberof CreateVpcRequest
@@ -57,6 +63,18 @@ export interface CreateVpcRequest {
5763
*/
5864
Ipv6CidrBlock?: string;
5965

66+
/**
67+
* @type {string}
68+
* @memberof CreateVpcRequest
69+
*/
70+
Ipv6Isp?: string;
71+
72+
/**
73+
* @type {number}
74+
* @memberof CreateVpcRequest
75+
*/
76+
Ipv6MaskLen?: number;
77+
6078
/**
6179
* @type {string}
6280
* @memberof CreateVpcRequest

0 commit comments

Comments
 (0)