@huaweicloud/huaweicloud-sdk-vpc 3.1.21 → 3.1.23
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/v2/VpcClient.d.ts +151 -0
- package/v2/VpcClient.js +344 -0
- package/v2/model/CreateFlowLogReq.d.ts +49 -0
- package/v2/model/CreateFlowLogReq.js +126 -0
- package/v2/model/CreateFlowLogReqBody.d.ts +8 -0
- package/v2/model/CreateFlowLogReqBody.js +24 -0
- package/v2/model/CreateFlowLogRequest.d.ts +6 -0
- package/v2/model/CreateFlowLogRequest.js +13 -0
- package/v2/model/CreateFlowLogResponse.d.ts +9 -0
- package/v2/model/CreateFlowLogResponse.js +41 -0
- package/v2/model/DeleteFlowLogRequest.d.ts +7 -0
- package/v2/model/DeleteFlowLogRequest.js +24 -0
- package/v2/model/DeleteFlowLogResponse.d.ts +4 -0
- package/v2/model/DeleteFlowLogResponse.js +27 -0
- package/v2/model/FlowLogResp.d.ts +85 -0
- package/v2/model/FlowLogResp.js +217 -0
- package/v2/model/ListFlowLogsRequest.d.ts +77 -0
- package/v2/model/ListFlowLogsRequest.js +169 -0
- package/v2/model/ListFlowLogsResponse.d.ts +9 -0
- package/v2/model/ListFlowLogsResponse.js +41 -0
- package/v2/model/ShowFlowLogRequest.d.ts +7 -0
- package/v2/model/ShowFlowLogRequest.js +24 -0
- package/v2/model/ShowFlowLogResponse.d.ts +9 -0
- package/v2/model/ShowFlowLogResponse.js +41 -0
- package/v2/model/UpdateFlowLogReq.d.ts +11 -0
- package/v2/model/UpdateFlowLogReq.js +31 -0
- package/v2/model/UpdateFlowLogReqBody.d.ts +8 -0
- package/v2/model/UpdateFlowLogReqBody.js +24 -0
- package/v2/model/UpdateFlowLogRequest.d.ts +10 -0
- package/v2/model/UpdateFlowLogRequest.js +28 -0
- package/v2/model/UpdateFlowLogResponse.d.ts +9 -0
- package/v2/model/UpdateFlowLogResponse.js +41 -0
- package/v2/public-api.d.ts +15 -0
- package/v2/public-api.js +15 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.ListFlowLogsResponse = void 0;
|
|
19
|
+
var SdkResponse_1 = require("@huaweicloud/huaweicloud-sdk-core/SdkResponse");
|
|
20
|
+
var ListFlowLogsResponse = /** @class */ (function (_super) {
|
|
21
|
+
__extends(ListFlowLogsResponse, _super);
|
|
22
|
+
function ListFlowLogsResponse() {
|
|
23
|
+
return _super.call(this) || this;
|
|
24
|
+
}
|
|
25
|
+
ListFlowLogsResponse.prototype.withFlowLogs = function (flowLogs) {
|
|
26
|
+
this['flow_logs'] = flowLogs;
|
|
27
|
+
return this;
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(ListFlowLogsResponse.prototype, "flowLogs", {
|
|
30
|
+
get: function () {
|
|
31
|
+
return this['flow_logs'];
|
|
32
|
+
},
|
|
33
|
+
set: function (flowLogs) {
|
|
34
|
+
this['flow_logs'] = flowLogs;
|
|
35
|
+
},
|
|
36
|
+
enumerable: false,
|
|
37
|
+
configurable: true
|
|
38
|
+
});
|
|
39
|
+
return ListFlowLogsResponse;
|
|
40
|
+
}(SdkResponse_1.SdkResponse));
|
|
41
|
+
exports.ListFlowLogsResponse = ListFlowLogsResponse;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShowFlowLogRequest = void 0;
|
|
4
|
+
var ShowFlowLogRequest = /** @class */ (function () {
|
|
5
|
+
function ShowFlowLogRequest(flowlogId) {
|
|
6
|
+
this['flowlog_id'] = flowlogId;
|
|
7
|
+
}
|
|
8
|
+
ShowFlowLogRequest.prototype.withFlowlogId = function (flowlogId) {
|
|
9
|
+
this['flowlog_id'] = flowlogId;
|
|
10
|
+
return this;
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(ShowFlowLogRequest.prototype, "flowlogId", {
|
|
13
|
+
get: function () {
|
|
14
|
+
return this['flowlog_id'];
|
|
15
|
+
},
|
|
16
|
+
set: function (flowlogId) {
|
|
17
|
+
this['flowlog_id'] = flowlogId;
|
|
18
|
+
},
|
|
19
|
+
enumerable: false,
|
|
20
|
+
configurable: true
|
|
21
|
+
});
|
|
22
|
+
return ShowFlowLogRequest;
|
|
23
|
+
}());
|
|
24
|
+
exports.ShowFlowLogRequest = ShowFlowLogRequest;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FlowLogResp } from './FlowLogResp';
|
|
2
|
+
import { SdkResponse } from "@huaweicloud/huaweicloud-sdk-core/SdkResponse";
|
|
3
|
+
export declare class ShowFlowLogResponse extends SdkResponse {
|
|
4
|
+
private 'flow_log'?;
|
|
5
|
+
constructor();
|
|
6
|
+
withFlowLog(flowLog: FlowLogResp): ShowFlowLogResponse;
|
|
7
|
+
set flowLog(flowLog: FlowLogResp | undefined);
|
|
8
|
+
get flowLog(): FlowLogResp | undefined;
|
|
9
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.ShowFlowLogResponse = void 0;
|
|
19
|
+
var SdkResponse_1 = require("@huaweicloud/huaweicloud-sdk-core/SdkResponse");
|
|
20
|
+
var ShowFlowLogResponse = /** @class */ (function (_super) {
|
|
21
|
+
__extends(ShowFlowLogResponse, _super);
|
|
22
|
+
function ShowFlowLogResponse() {
|
|
23
|
+
return _super.call(this) || this;
|
|
24
|
+
}
|
|
25
|
+
ShowFlowLogResponse.prototype.withFlowLog = function (flowLog) {
|
|
26
|
+
this['flow_log'] = flowLog;
|
|
27
|
+
return this;
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(ShowFlowLogResponse.prototype, "flowLog", {
|
|
30
|
+
get: function () {
|
|
31
|
+
return this['flow_log'];
|
|
32
|
+
},
|
|
33
|
+
set: function (flowLog) {
|
|
34
|
+
this['flow_log'] = flowLog;
|
|
35
|
+
},
|
|
36
|
+
enumerable: false,
|
|
37
|
+
configurable: true
|
|
38
|
+
});
|
|
39
|
+
return ShowFlowLogResponse;
|
|
40
|
+
}(SdkResponse_1.SdkResponse));
|
|
41
|
+
exports.ShowFlowLogResponse = ShowFlowLogResponse;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class UpdateFlowLogReq {
|
|
2
|
+
name?: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
private 'admin_state'?;
|
|
5
|
+
constructor();
|
|
6
|
+
withName(name: string): UpdateFlowLogReq;
|
|
7
|
+
withDescription(description: string): UpdateFlowLogReq;
|
|
8
|
+
withAdminState(adminState: boolean): UpdateFlowLogReq;
|
|
9
|
+
set adminState(adminState: boolean | undefined);
|
|
10
|
+
get adminState(): boolean | undefined;
|
|
11
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateFlowLogReq = void 0;
|
|
4
|
+
var UpdateFlowLogReq = /** @class */ (function () {
|
|
5
|
+
function UpdateFlowLogReq() {
|
|
6
|
+
}
|
|
7
|
+
UpdateFlowLogReq.prototype.withName = function (name) {
|
|
8
|
+
this['name'] = name;
|
|
9
|
+
return this;
|
|
10
|
+
};
|
|
11
|
+
UpdateFlowLogReq.prototype.withDescription = function (description) {
|
|
12
|
+
this['description'] = description;
|
|
13
|
+
return this;
|
|
14
|
+
};
|
|
15
|
+
UpdateFlowLogReq.prototype.withAdminState = function (adminState) {
|
|
16
|
+
this['admin_state'] = adminState;
|
|
17
|
+
return this;
|
|
18
|
+
};
|
|
19
|
+
Object.defineProperty(UpdateFlowLogReq.prototype, "adminState", {
|
|
20
|
+
get: function () {
|
|
21
|
+
return this['admin_state'];
|
|
22
|
+
},
|
|
23
|
+
set: function (adminState) {
|
|
24
|
+
this['admin_state'] = adminState;
|
|
25
|
+
},
|
|
26
|
+
enumerable: false,
|
|
27
|
+
configurable: true
|
|
28
|
+
});
|
|
29
|
+
return UpdateFlowLogReq;
|
|
30
|
+
}());
|
|
31
|
+
exports.UpdateFlowLogReq = UpdateFlowLogReq;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { UpdateFlowLogReq } from './UpdateFlowLogReq';
|
|
2
|
+
export declare class UpdateFlowLogReqBody {
|
|
3
|
+
private 'flow_log';
|
|
4
|
+
constructor(flowLog?: any);
|
|
5
|
+
withFlowLog(flowLog: UpdateFlowLogReq): UpdateFlowLogReqBody;
|
|
6
|
+
set flowLog(flowLog: UpdateFlowLogReq | undefined);
|
|
7
|
+
get flowLog(): UpdateFlowLogReq | undefined;
|
|
8
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateFlowLogReqBody = void 0;
|
|
4
|
+
var UpdateFlowLogReqBody = /** @class */ (function () {
|
|
5
|
+
function UpdateFlowLogReqBody(flowLog) {
|
|
6
|
+
this['flow_log'] = flowLog;
|
|
7
|
+
}
|
|
8
|
+
UpdateFlowLogReqBody.prototype.withFlowLog = function (flowLog) {
|
|
9
|
+
this['flow_log'] = flowLog;
|
|
10
|
+
return this;
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(UpdateFlowLogReqBody.prototype, "flowLog", {
|
|
13
|
+
get: function () {
|
|
14
|
+
return this['flow_log'];
|
|
15
|
+
},
|
|
16
|
+
set: function (flowLog) {
|
|
17
|
+
this['flow_log'] = flowLog;
|
|
18
|
+
},
|
|
19
|
+
enumerable: false,
|
|
20
|
+
configurable: true
|
|
21
|
+
});
|
|
22
|
+
return UpdateFlowLogReqBody;
|
|
23
|
+
}());
|
|
24
|
+
exports.UpdateFlowLogReqBody = UpdateFlowLogReqBody;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { UpdateFlowLogReqBody } from './UpdateFlowLogReqBody';
|
|
2
|
+
export declare class UpdateFlowLogRequest {
|
|
3
|
+
private 'flowlog_id';
|
|
4
|
+
body?: UpdateFlowLogReqBody;
|
|
5
|
+
constructor(flowlogId?: any);
|
|
6
|
+
withFlowlogId(flowlogId: string): UpdateFlowLogRequest;
|
|
7
|
+
set flowlogId(flowlogId: string | undefined);
|
|
8
|
+
get flowlogId(): string | undefined;
|
|
9
|
+
withBody(body: UpdateFlowLogReqBody): UpdateFlowLogRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateFlowLogRequest = void 0;
|
|
4
|
+
var UpdateFlowLogRequest = /** @class */ (function () {
|
|
5
|
+
function UpdateFlowLogRequest(flowlogId) {
|
|
6
|
+
this['flowlog_id'] = flowlogId;
|
|
7
|
+
}
|
|
8
|
+
UpdateFlowLogRequest.prototype.withFlowlogId = function (flowlogId) {
|
|
9
|
+
this['flowlog_id'] = flowlogId;
|
|
10
|
+
return this;
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(UpdateFlowLogRequest.prototype, "flowlogId", {
|
|
13
|
+
get: function () {
|
|
14
|
+
return this['flowlog_id'];
|
|
15
|
+
},
|
|
16
|
+
set: function (flowlogId) {
|
|
17
|
+
this['flowlog_id'] = flowlogId;
|
|
18
|
+
},
|
|
19
|
+
enumerable: false,
|
|
20
|
+
configurable: true
|
|
21
|
+
});
|
|
22
|
+
UpdateFlowLogRequest.prototype.withBody = function (body) {
|
|
23
|
+
this['body'] = body;
|
|
24
|
+
return this;
|
|
25
|
+
};
|
|
26
|
+
return UpdateFlowLogRequest;
|
|
27
|
+
}());
|
|
28
|
+
exports.UpdateFlowLogRequest = UpdateFlowLogRequest;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FlowLogResp } from './FlowLogResp';
|
|
2
|
+
import { SdkResponse } from "@huaweicloud/huaweicloud-sdk-core/SdkResponse";
|
|
3
|
+
export declare class UpdateFlowLogResponse extends SdkResponse {
|
|
4
|
+
private 'flow_log'?;
|
|
5
|
+
constructor();
|
|
6
|
+
withFlowLog(flowLog: FlowLogResp): UpdateFlowLogResponse;
|
|
7
|
+
set flowLog(flowLog: FlowLogResp | undefined);
|
|
8
|
+
get flowLog(): FlowLogResp | undefined;
|
|
9
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.UpdateFlowLogResponse = void 0;
|
|
19
|
+
var SdkResponse_1 = require("@huaweicloud/huaweicloud-sdk-core/SdkResponse");
|
|
20
|
+
var UpdateFlowLogResponse = /** @class */ (function (_super) {
|
|
21
|
+
__extends(UpdateFlowLogResponse, _super);
|
|
22
|
+
function UpdateFlowLogResponse() {
|
|
23
|
+
return _super.call(this) || this;
|
|
24
|
+
}
|
|
25
|
+
UpdateFlowLogResponse.prototype.withFlowLog = function (flowLog) {
|
|
26
|
+
this['flow_log'] = flowLog;
|
|
27
|
+
return this;
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(UpdateFlowLogResponse.prototype, "flowLog", {
|
|
30
|
+
get: function () {
|
|
31
|
+
return this['flow_log'];
|
|
32
|
+
},
|
|
33
|
+
set: function (flowLog) {
|
|
34
|
+
this['flow_log'] = flowLog;
|
|
35
|
+
},
|
|
36
|
+
enumerable: false,
|
|
37
|
+
configurable: true
|
|
38
|
+
});
|
|
39
|
+
return UpdateFlowLogResponse;
|
|
40
|
+
}(SdkResponse_1.SdkResponse));
|
|
41
|
+
exports.UpdateFlowLogResponse = UpdateFlowLogResponse;
|
package/v2/public-api.d.ts
CHANGED
|
@@ -19,6 +19,10 @@ export * from './model/BatchDeleteVpcTagsRequest';
|
|
|
19
19
|
export * from './model/BatchDeleteVpcTagsRequestBody';
|
|
20
20
|
export * from './model/BatchDeleteVpcTagsResponse';
|
|
21
21
|
export * from './model/BindingVifDetails';
|
|
22
|
+
export * from './model/CreateFlowLogReq';
|
|
23
|
+
export * from './model/CreateFlowLogReqBody';
|
|
24
|
+
export * from './model/CreateFlowLogRequest';
|
|
25
|
+
export * from './model/CreateFlowLogResponse';
|
|
22
26
|
export * from './model/CreatePortOption';
|
|
23
27
|
export * from './model/CreatePortRequest';
|
|
24
28
|
export * from './model/CreatePortRequestBody';
|
|
@@ -61,6 +65,8 @@ export * from './model/CreateVpcRouteOption';
|
|
|
61
65
|
export * from './model/CreateVpcRouteRequest';
|
|
62
66
|
export * from './model/CreateVpcRouteRequestBody';
|
|
63
67
|
export * from './model/CreateVpcRouteResponse';
|
|
68
|
+
export * from './model/DeleteFlowLogRequest';
|
|
69
|
+
export * from './model/DeleteFlowLogResponse';
|
|
64
70
|
export * from './model/DeletePortRequest';
|
|
65
71
|
export * from './model/DeletePortResponse';
|
|
66
72
|
export * from './model/DeletePrivateipRequest';
|
|
@@ -89,6 +95,9 @@ export * from './model/DnsAssignMent';
|
|
|
89
95
|
export * from './model/ExtraDhcpOpt';
|
|
90
96
|
export * from './model/ExtraDhcpOption';
|
|
91
97
|
export * from './model/FixedIp';
|
|
98
|
+
export * from './model/FlowLogResp';
|
|
99
|
+
export * from './model/ListFlowLogsRequest';
|
|
100
|
+
export * from './model/ListFlowLogsResponse';
|
|
92
101
|
export * from './model/ListPortsRequest';
|
|
93
102
|
export * from './model/ListPortsResponse';
|
|
94
103
|
export * from './model/ListPrivateipsRequest';
|
|
@@ -213,6 +222,8 @@ export * from './model/RouteTableRoute';
|
|
|
213
222
|
export * from './model/RoutetableAssociateReqbody';
|
|
214
223
|
export * from './model/SecurityGroup';
|
|
215
224
|
export * from './model/SecurityGroupRule';
|
|
225
|
+
export * from './model/ShowFlowLogRequest';
|
|
226
|
+
export * from './model/ShowFlowLogResponse';
|
|
216
227
|
export * from './model/ShowNetworkIpAvailabilitiesRequest';
|
|
217
228
|
export * from './model/ShowNetworkIpAvailabilitiesResponse';
|
|
218
229
|
export * from './model/ShowPortRequest';
|
|
@@ -243,6 +254,10 @@ export * from './model/Subnet';
|
|
|
243
254
|
export * from './model/SubnetIpAvailability';
|
|
244
255
|
export * from './model/SubnetList';
|
|
245
256
|
export * from './model/SubnetResult';
|
|
257
|
+
export * from './model/UpdateFlowLogReq';
|
|
258
|
+
export * from './model/UpdateFlowLogReqBody';
|
|
259
|
+
export * from './model/UpdateFlowLogRequest';
|
|
260
|
+
export * from './model/UpdateFlowLogResponse';
|
|
246
261
|
export * from './model/UpdatePortOption';
|
|
247
262
|
export * from './model/UpdatePortRequest';
|
|
248
263
|
export * from './model/UpdatePortRequestBody';
|
package/v2/public-api.js
CHANGED
|
@@ -35,6 +35,10 @@ __exportStar(require("./model/BatchDeleteVpcTagsRequest"), exports);
|
|
|
35
35
|
__exportStar(require("./model/BatchDeleteVpcTagsRequestBody"), exports);
|
|
36
36
|
__exportStar(require("./model/BatchDeleteVpcTagsResponse"), exports);
|
|
37
37
|
__exportStar(require("./model/BindingVifDetails"), exports);
|
|
38
|
+
__exportStar(require("./model/CreateFlowLogReq"), exports);
|
|
39
|
+
__exportStar(require("./model/CreateFlowLogReqBody"), exports);
|
|
40
|
+
__exportStar(require("./model/CreateFlowLogRequest"), exports);
|
|
41
|
+
__exportStar(require("./model/CreateFlowLogResponse"), exports);
|
|
38
42
|
__exportStar(require("./model/CreatePortOption"), exports);
|
|
39
43
|
__exportStar(require("./model/CreatePortRequest"), exports);
|
|
40
44
|
__exportStar(require("./model/CreatePortRequestBody"), exports);
|
|
@@ -77,6 +81,8 @@ __exportStar(require("./model/CreateVpcRouteOption"), exports);
|
|
|
77
81
|
__exportStar(require("./model/CreateVpcRouteRequest"), exports);
|
|
78
82
|
__exportStar(require("./model/CreateVpcRouteRequestBody"), exports);
|
|
79
83
|
__exportStar(require("./model/CreateVpcRouteResponse"), exports);
|
|
84
|
+
__exportStar(require("./model/DeleteFlowLogRequest"), exports);
|
|
85
|
+
__exportStar(require("./model/DeleteFlowLogResponse"), exports);
|
|
80
86
|
__exportStar(require("./model/DeletePortRequest"), exports);
|
|
81
87
|
__exportStar(require("./model/DeletePortResponse"), exports);
|
|
82
88
|
__exportStar(require("./model/DeletePrivateipRequest"), exports);
|
|
@@ -105,6 +111,9 @@ __exportStar(require("./model/DnsAssignMent"), exports);
|
|
|
105
111
|
__exportStar(require("./model/ExtraDhcpOpt"), exports);
|
|
106
112
|
__exportStar(require("./model/ExtraDhcpOption"), exports);
|
|
107
113
|
__exportStar(require("./model/FixedIp"), exports);
|
|
114
|
+
__exportStar(require("./model/FlowLogResp"), exports);
|
|
115
|
+
__exportStar(require("./model/ListFlowLogsRequest"), exports);
|
|
116
|
+
__exportStar(require("./model/ListFlowLogsResponse"), exports);
|
|
108
117
|
__exportStar(require("./model/ListPortsRequest"), exports);
|
|
109
118
|
__exportStar(require("./model/ListPortsResponse"), exports);
|
|
110
119
|
__exportStar(require("./model/ListPrivateipsRequest"), exports);
|
|
@@ -229,6 +238,8 @@ __exportStar(require("./model/RouteTableRoute"), exports);
|
|
|
229
238
|
__exportStar(require("./model/RoutetableAssociateReqbody"), exports);
|
|
230
239
|
__exportStar(require("./model/SecurityGroup"), exports);
|
|
231
240
|
__exportStar(require("./model/SecurityGroupRule"), exports);
|
|
241
|
+
__exportStar(require("./model/ShowFlowLogRequest"), exports);
|
|
242
|
+
__exportStar(require("./model/ShowFlowLogResponse"), exports);
|
|
232
243
|
__exportStar(require("./model/ShowNetworkIpAvailabilitiesRequest"), exports);
|
|
233
244
|
__exportStar(require("./model/ShowNetworkIpAvailabilitiesResponse"), exports);
|
|
234
245
|
__exportStar(require("./model/ShowPortRequest"), exports);
|
|
@@ -259,6 +270,10 @@ __exportStar(require("./model/Subnet"), exports);
|
|
|
259
270
|
__exportStar(require("./model/SubnetIpAvailability"), exports);
|
|
260
271
|
__exportStar(require("./model/SubnetList"), exports);
|
|
261
272
|
__exportStar(require("./model/SubnetResult"), exports);
|
|
273
|
+
__exportStar(require("./model/UpdateFlowLogReq"), exports);
|
|
274
|
+
__exportStar(require("./model/UpdateFlowLogReqBody"), exports);
|
|
275
|
+
__exportStar(require("./model/UpdateFlowLogRequest"), exports);
|
|
276
|
+
__exportStar(require("./model/UpdateFlowLogResponse"), exports);
|
|
262
277
|
__exportStar(require("./model/UpdatePortOption"), exports);
|
|
263
278
|
__exportStar(require("./model/UpdatePortRequest"), exports);
|
|
264
279
|
__exportStar(require("./model/UpdatePortRequestBody"), exports);
|