@huaweicloud/huaweicloud-sdk-vpc 3.1.18 → 3.1.20

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@huaweicloud/huaweicloud-sdk-vpc",
3
- "version": "3.1.18",
3
+ "version": "3.1.20",
4
4
  "description": "Huaweicloud SDK for vpc",
5
5
  "main": "huaweicloud-sdk-vpc.js",
6
6
  "typings": "huaweicloud-sdk-vpc.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.18"
17
+ "@huaweicloud/huaweicloud-sdk-core": "^3.1.20"
18
18
  }
19
19
  }
package/v2/VpcClient.d.ts CHANGED
@@ -391,8 +391,9 @@ export declare class VpcClient {
391
391
  * @param {string} [deviceId] 按照device_id过滤查询
392
392
  * @param {'network:dhcp' | 'neutron:VIP_PORT' | 'network:router_interface_distributed' | 'network:router_centralized_snat'} [deviceOwner] 按照device_owner过滤查询
393
393
  * @param {'ACTIVE' | 'BUILD' | 'DOWN'} [status] 功能说明:按照status过滤查询 取值范围:ACTIVE、BUILD、DOWN
394
+ * @param {Array<string>} [securityGroups] 按照安全组ID列表过滤查询
394
395
  * @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
395
- * @param {string} [fixedIps] 按照fixed_ips&#x3D;ip_address或者fixed_ips&#x3D;subnet_id过滤查询
396
+ * @param {Array<string>} [fixedIps] 按照fixed_ips&#x3D;ip_address或者fixed_ips&#x3D;subnet_id过滤查询
396
397
  * @param {string} [enterpriseProjectId] 功能说明:企业项目ID,用于基于企业项目的权限管理。 取值范围:最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。“0”表示默认企业项目。 若需要查询当前用户所有企业项目绑定的端口,请传参all_granted_eps。
397
398
  * @param {*} [options] Override http request option.
398
399
  * @throws {RequiredError}
package/v2/VpcClient.js CHANGED
@@ -443,8 +443,9 @@ var VpcClient = /** @class */ (function () {
443
443
  * @param {string} [deviceId] 按照device_id过滤查询
444
444
  * @param {'network:dhcp' | 'neutron:VIP_PORT' | 'network:router_interface_distributed' | 'network:router_centralized_snat'} [deviceOwner] 按照device_owner过滤查询
445
445
  * @param {'ACTIVE' | 'BUILD' | 'DOWN'} [status] 功能说明:按照status过滤查询 取值范围:ACTIVE、BUILD、DOWN
446
+ * @param {Array<string>} [securityGroups] 按照安全组ID列表过滤查询
446
447
  * @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
447
- * @param {string} [fixedIps] 按照fixed_ips&#x3D;ip_address或者fixed_ips&#x3D;subnet_id过滤查询
448
+ * @param {Array<string>} [fixedIps] 按照fixed_ips&#x3D;ip_address或者fixed_ips&#x3D;subnet_id过滤查询
448
449
  * @param {string} [enterpriseProjectId] 功能说明:企业项目ID,用于基于企业项目的权限管理。 取值范围:最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。“0”表示默认企业项目。 若需要查询当前用户所有企业项目绑定的端口,请传参all_granted_eps。
449
450
  * @param {*} [options] Override http request option.
450
451
  * @throws {RequiredError}
@@ -2316,6 +2317,7 @@ var ParamCreater = function () {
2316
2317
  var deviceId;
2317
2318
  var deviceOwner;
2318
2319
  var status;
2320
+ var securityGroups;
2319
2321
  var marker;
2320
2322
  var fixedIps;
2321
2323
  var enterpriseProjectId;
@@ -2330,6 +2332,7 @@ var ParamCreater = function () {
2330
2332
  deviceId = listPortsRequest.deviceId;
2331
2333
  deviceOwner = listPortsRequest.deviceOwner;
2332
2334
  status = listPortsRequest.status;
2335
+ securityGroups = listPortsRequest.securityGroups;
2333
2336
  marker = listPortsRequest.marker;
2334
2337
  fixedIps = listPortsRequest.fixedIps;
2335
2338
  enterpriseProjectId = listPortsRequest.enterpriseProjectId;
@@ -2344,6 +2347,7 @@ var ParamCreater = function () {
2344
2347
  deviceId = listPortsRequest['device_id'];
2345
2348
  deviceOwner = listPortsRequest['device_owner'];
2346
2349
  status = listPortsRequest['status'];
2350
+ securityGroups = listPortsRequest['security_groups'];
2347
2351
  marker = listPortsRequest['marker'];
2348
2352
  fixedIps = listPortsRequest['fixed_ips'];
2349
2353
  enterpriseProjectId = listPortsRequest['enterprise_project_id'];
@@ -2376,6 +2380,9 @@ var ParamCreater = function () {
2376
2380
  if (status !== null && status !== undefined) {
2377
2381
  localVarQueryParameter['status'] = status;
2378
2382
  }
2383
+ if (securityGroups !== null && securityGroups !== undefined) {
2384
+ localVarQueryParameter['security_groups'] = securityGroups;
2385
+ }
2379
2386
  if (marker !== null && marker !== undefined) {
2380
2387
  localVarQueryParameter['marker'] = marker;
2381
2388
  }
@@ -8,6 +8,7 @@ export declare class ListPortsRequest {
8
8
  private 'device_id'?;
9
9
  private 'device_owner'?;
10
10
  status?: ListPortsRequestStatusEnum;
11
+ private 'security_groups'?;
11
12
  marker?: string;
12
13
  private 'fixed_ips'?;
13
14
  private 'enterprise_project_id'?;
@@ -31,10 +32,13 @@ export declare class ListPortsRequest {
31
32
  set deviceOwner(deviceOwner: ListPortsRequestDeviceOwnerEnum | undefined);
32
33
  get deviceOwner(): ListPortsRequestDeviceOwnerEnum | undefined;
33
34
  withStatus(status: ListPortsRequestStatusEnum): ListPortsRequest;
35
+ withSecurityGroups(securityGroups: Array<string>): ListPortsRequest;
36
+ set securityGroups(securityGroups: Array<string> | undefined);
37
+ get securityGroups(): Array<string> | undefined;
34
38
  withMarker(marker: string): ListPortsRequest;
35
- withFixedIps(fixedIps: string): ListPortsRequest;
36
- set fixedIps(fixedIps: string | undefined);
37
- get fixedIps(): string | undefined;
39
+ withFixedIps(fixedIps: Array<string>): ListPortsRequest;
40
+ set fixedIps(fixedIps: Array<string> | undefined);
41
+ get fixedIps(): Array<string> | undefined;
38
42
  withEnterpriseProjectId(enterpriseProjectId: string): ListPortsRequest;
39
43
  set enterpriseProjectId(enterpriseProjectId: string | undefined);
40
44
  get enterpriseProjectId(): string | undefined;
@@ -90,6 +90,20 @@ var ListPortsRequest = /** @class */ (function () {
90
90
  this['status'] = status;
91
91
  return this;
92
92
  };
93
+ ListPortsRequest.prototype.withSecurityGroups = function (securityGroups) {
94
+ this['security_groups'] = securityGroups;
95
+ return this;
96
+ };
97
+ Object.defineProperty(ListPortsRequest.prototype, "securityGroups", {
98
+ get: function () {
99
+ return this['security_groups'];
100
+ },
101
+ set: function (securityGroups) {
102
+ this['security_groups'] = securityGroups;
103
+ },
104
+ enumerable: false,
105
+ configurable: true
106
+ });
93
107
  ListPortsRequest.prototype.withMarker = function (marker) {
94
108
  this['marker'] = marker;
95
109
  return this;
@@ -7,7 +7,9 @@ export declare class RouteTableListResp {
7
7
  private 'tenant_id';
8
8
  private 'vpc_id';
9
9
  description: string;
10
- constructor(id?: any, name?: any, _default?: any, subnets?: any, tenantId?: any, vpcId?: any, description?: any);
10
+ private 'created_at';
11
+ private 'updated_at';
12
+ constructor(id?: any, name?: any, _default?: any, subnets?: any, tenantId?: any, vpcId?: any, description?: any, createdAt?: any, updatedAt?: any);
11
13
  withId(id: string): RouteTableListResp;
12
14
  withName(name: string): RouteTableListResp;
13
15
  withDefault(_default: boolean): RouteTableListResp;
@@ -21,4 +23,10 @@ export declare class RouteTableListResp {
21
23
  set vpcId(vpcId: string | undefined);
22
24
  get vpcId(): string | undefined;
23
25
  withDescription(description: string): RouteTableListResp;
26
+ withCreatedAt(createdAt: Date): RouteTableListResp;
27
+ set createdAt(createdAt: Date | undefined);
28
+ get createdAt(): Date | undefined;
29
+ withUpdatedAt(updatedAt: Date): RouteTableListResp;
30
+ set updatedAt(updatedAt: Date | undefined);
31
+ get updatedAt(): Date | undefined;
24
32
  }
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RouteTableListResp = void 0;
4
4
  var RouteTableListResp = /** @class */ (function () {
5
- function RouteTableListResp(id, name, _default, subnets, tenantId, vpcId, description) {
5
+ function RouteTableListResp(id, name, _default, subnets, tenantId, vpcId, description, createdAt, updatedAt) {
6
6
  this['id'] = id;
7
7
  this['name'] = name;
8
8
  this['default'] = _default;
@@ -10,6 +10,8 @@ var RouteTableListResp = /** @class */ (function () {
10
10
  this['tenant_id'] = tenantId;
11
11
  this['vpc_id'] = vpcId;
12
12
  this['description'] = description;
13
+ this['created_at'] = createdAt;
14
+ this['updated_at'] = updatedAt;
13
15
  }
14
16
  RouteTableListResp.prototype.withId = function (id) {
15
17
  this['id'] = id;
@@ -69,6 +71,34 @@ var RouteTableListResp = /** @class */ (function () {
69
71
  this['description'] = description;
70
72
  return this;
71
73
  };
74
+ RouteTableListResp.prototype.withCreatedAt = function (createdAt) {
75
+ this['created_at'] = createdAt;
76
+ return this;
77
+ };
78
+ Object.defineProperty(RouteTableListResp.prototype, "createdAt", {
79
+ get: function () {
80
+ return this['created_at'];
81
+ },
82
+ set: function (createdAt) {
83
+ this['created_at'] = createdAt;
84
+ },
85
+ enumerable: false,
86
+ configurable: true
87
+ });
88
+ RouteTableListResp.prototype.withUpdatedAt = function (updatedAt) {
89
+ this['updated_at'] = updatedAt;
90
+ return this;
91
+ };
92
+ Object.defineProperty(RouteTableListResp.prototype, "updatedAt", {
93
+ get: function () {
94
+ return this['updated_at'];
95
+ },
96
+ set: function (updatedAt) {
97
+ this['updated_at'] = updatedAt;
98
+ },
99
+ enumerable: false,
100
+ configurable: true
101
+ });
72
102
  return RouteTableListResp;
73
103
  }());
74
104
  exports.RouteTableListResp = RouteTableListResp;
@@ -9,7 +9,9 @@ export declare class RouteTableResp {
9
9
  private 'tenant_id';
10
10
  private 'vpc_id';
11
11
  description: string;
12
- constructor(id?: any, name?: any, _default?: any, routes?: any, subnets?: any, tenantId?: any, vpcId?: any, description?: any);
12
+ private 'created_at';
13
+ private 'updated_at';
14
+ constructor(id?: any, name?: any, _default?: any, routes?: any, subnets?: any, tenantId?: any, vpcId?: any, description?: any, createdAt?: any, updatedAt?: any);
13
15
  withId(id: string): RouteTableResp;
14
16
  withName(name: string): RouteTableResp;
15
17
  withDefault(_default: boolean): RouteTableResp;
@@ -24,4 +26,10 @@ export declare class RouteTableResp {
24
26
  set vpcId(vpcId: string | undefined);
25
27
  get vpcId(): string | undefined;
26
28
  withDescription(description: string): RouteTableResp;
29
+ withCreatedAt(createdAt: Date): RouteTableResp;
30
+ set createdAt(createdAt: Date | undefined);
31
+ get createdAt(): Date | undefined;
32
+ withUpdatedAt(updatedAt: Date): RouteTableResp;
33
+ set updatedAt(updatedAt: Date | undefined);
34
+ get updatedAt(): Date | undefined;
27
35
  }
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RouteTableResp = void 0;
4
4
  var RouteTableResp = /** @class */ (function () {
5
- function RouteTableResp(id, name, _default, routes, subnets, tenantId, vpcId, description) {
5
+ function RouteTableResp(id, name, _default, routes, subnets, tenantId, vpcId, description, createdAt, updatedAt) {
6
6
  this['id'] = id;
7
7
  this['name'] = name;
8
8
  this['default'] = _default;
@@ -11,6 +11,8 @@ var RouteTableResp = /** @class */ (function () {
11
11
  this['tenant_id'] = tenantId;
12
12
  this['vpc_id'] = vpcId;
13
13
  this['description'] = description;
14
+ this['created_at'] = createdAt;
15
+ this['updated_at'] = updatedAt;
14
16
  }
15
17
  RouteTableResp.prototype.withId = function (id) {
16
18
  this['id'] = id;
@@ -74,6 +76,34 @@ var RouteTableResp = /** @class */ (function () {
74
76
  this['description'] = description;
75
77
  return this;
76
78
  };
79
+ RouteTableResp.prototype.withCreatedAt = function (createdAt) {
80
+ this['created_at'] = createdAt;
81
+ return this;
82
+ };
83
+ Object.defineProperty(RouteTableResp.prototype, "createdAt", {
84
+ get: function () {
85
+ return this['created_at'];
86
+ },
87
+ set: function (createdAt) {
88
+ this['created_at'] = createdAt;
89
+ },
90
+ enumerable: false,
91
+ configurable: true
92
+ });
93
+ RouteTableResp.prototype.withUpdatedAt = function (updatedAt) {
94
+ this['updated_at'] = updatedAt;
95
+ return this;
96
+ };
97
+ Object.defineProperty(RouteTableResp.prototype, "updatedAt", {
98
+ get: function () {
99
+ return this['updated_at'];
100
+ },
101
+ set: function (updatedAt) {
102
+ this['updated_at'] = updatedAt;
103
+ },
104
+ enumerable: false,
105
+ configurable: true
106
+ });
77
107
  return RouteTableResp;
78
108
  }());
79
109
  exports.RouteTableResp = RouteTableResp;
@@ -20,7 +20,10 @@ export declare class Subnet {
20
20
  private 'neutron_subnet_id_v6';
21
21
  private 'extra_dhcp_opts';
22
22
  scope?: string;
23
- constructor(id?: any, name?: any, description?: any, cidr?: any, gatewayIp?: any, ipv6Enable?: any, cidrV6?: any, gatewayIpV6?: any, dhcpEnable?: any, primaryDns?: any, secondaryDns?: any, dnsList?: any, availabilityZone?: any, vpcId?: any, status?: any, neutronNetworkId?: any, neutronSubnetId?: any, neutronSubnetIdV6?: any, extraDhcpOpts?: any);
23
+ private 'tenant_id';
24
+ private 'created_at';
25
+ private 'updated_at';
26
+ constructor(id?: any, name?: any, description?: any, cidr?: any, gatewayIp?: any, ipv6Enable?: any, cidrV6?: any, gatewayIpV6?: any, dhcpEnable?: any, primaryDns?: any, secondaryDns?: any, dnsList?: any, availabilityZone?: any, vpcId?: any, status?: any, neutronNetworkId?: any, neutronSubnetId?: any, neutronSubnetIdV6?: any, extraDhcpOpts?: any, tenantId?: any, createdAt?: any, updatedAt?: any);
24
27
  withId(id: string): Subnet;
25
28
  withName(name: string): Subnet;
26
29
  withDescription(description: string): Subnet;
@@ -67,6 +70,15 @@ export declare class Subnet {
67
70
  set extraDhcpOpts(extraDhcpOpts: Array<ExtraDhcpOption> | undefined);
68
71
  get extraDhcpOpts(): Array<ExtraDhcpOption> | undefined;
69
72
  withScope(scope: string): Subnet;
73
+ withTenantId(tenantId: string): Subnet;
74
+ set tenantId(tenantId: string | undefined);
75
+ get tenantId(): string | undefined;
76
+ withCreatedAt(createdAt: Date): Subnet;
77
+ set createdAt(createdAt: Date | undefined);
78
+ get createdAt(): Date | undefined;
79
+ withUpdatedAt(updatedAt: Date): Subnet;
80
+ set updatedAt(updatedAt: Date | undefined);
81
+ get updatedAt(): Date | undefined;
70
82
  }
71
83
  /**
72
84
  * @export
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SubnetStatusEnum = exports.Subnet = void 0;
4
4
  var Subnet = /** @class */ (function () {
5
- function Subnet(id, name, description, cidr, gatewayIp, ipv6Enable, cidrV6, gatewayIpV6, dhcpEnable, primaryDns, secondaryDns, dnsList, availabilityZone, vpcId, status, neutronNetworkId, neutronSubnetId, neutronSubnetIdV6, extraDhcpOpts) {
5
+ function Subnet(id, name, description, cidr, gatewayIp, ipv6Enable, cidrV6, gatewayIpV6, dhcpEnable, primaryDns, secondaryDns, dnsList, availabilityZone, vpcId, status, neutronNetworkId, neutronSubnetId, neutronSubnetIdV6, extraDhcpOpts, tenantId, createdAt, updatedAt) {
6
6
  this['id'] = id;
7
7
  this['name'] = name;
8
8
  this['description'] = description;
@@ -22,6 +22,9 @@ var Subnet = /** @class */ (function () {
22
22
  this['neutron_subnet_id'] = neutronSubnetId;
23
23
  this['neutron_subnet_id_v6'] = neutronSubnetIdV6;
24
24
  this['extra_dhcp_opts'] = extraDhcpOpts;
25
+ this['tenant_id'] = tenantId;
26
+ this['created_at'] = createdAt;
27
+ this['updated_at'] = updatedAt;
25
28
  }
26
29
  Subnet.prototype.withId = function (id) {
27
30
  this['id'] = id;
@@ -233,6 +236,48 @@ var Subnet = /** @class */ (function () {
233
236
  this['scope'] = scope;
234
237
  return this;
235
238
  };
239
+ Subnet.prototype.withTenantId = function (tenantId) {
240
+ this['tenant_id'] = tenantId;
241
+ return this;
242
+ };
243
+ Object.defineProperty(Subnet.prototype, "tenantId", {
244
+ get: function () {
245
+ return this['tenant_id'];
246
+ },
247
+ set: function (tenantId) {
248
+ this['tenant_id'] = tenantId;
249
+ },
250
+ enumerable: false,
251
+ configurable: true
252
+ });
253
+ Subnet.prototype.withCreatedAt = function (createdAt) {
254
+ this['created_at'] = createdAt;
255
+ return this;
256
+ };
257
+ Object.defineProperty(Subnet.prototype, "createdAt", {
258
+ get: function () {
259
+ return this['created_at'];
260
+ },
261
+ set: function (createdAt) {
262
+ this['created_at'] = createdAt;
263
+ },
264
+ enumerable: false,
265
+ configurable: true
266
+ });
267
+ Subnet.prototype.withUpdatedAt = function (updatedAt) {
268
+ this['updated_at'] = updatedAt;
269
+ return this;
270
+ };
271
+ Object.defineProperty(Subnet.prototype, "updatedAt", {
272
+ get: function () {
273
+ return this['updated_at'];
274
+ },
275
+ set: function (updatedAt) {
276
+ this['updated_at'] = updatedAt;
277
+ },
278
+ enumerable: false,
279
+ configurable: true
280
+ });
236
281
  return Subnet;
237
282
  }());
238
283
  exports.Subnet = Subnet;
package/v2/model/Vpc.d.ts CHANGED
@@ -7,7 +7,10 @@ export declare class Vpc {
7
7
  routes: Array<Route>;
8
8
  status: VpcStatusEnum;
9
9
  private 'enterprise_project_id';
10
- constructor(id?: any, name?: any, cidr?: any, description?: any, routes?: any, status?: any, enterpriseProjectId?: any);
10
+ private 'tenant_id';
11
+ private 'created_at';
12
+ private 'updated_at';
13
+ constructor(id?: any, name?: any, cidr?: any, description?: any, routes?: any, status?: any, enterpriseProjectId?: any, tenantId?: any, createdAt?: any, updatedAt?: any);
11
14
  withId(id: string): Vpc;
12
15
  withName(name: string): Vpc;
13
16
  withCidr(cidr: string): Vpc;
@@ -17,6 +20,15 @@ export declare class Vpc {
17
20
  withEnterpriseProjectId(enterpriseProjectId: string): Vpc;
18
21
  set enterpriseProjectId(enterpriseProjectId: string | undefined);
19
22
  get enterpriseProjectId(): string | undefined;
23
+ withTenantId(tenantId: string): Vpc;
24
+ set tenantId(tenantId: string | undefined);
25
+ get tenantId(): string | undefined;
26
+ withCreatedAt(createdAt: Date): Vpc;
27
+ set createdAt(createdAt: Date | undefined);
28
+ get createdAt(): Date | undefined;
29
+ withUpdatedAt(updatedAt: Date): Vpc;
30
+ set updatedAt(updatedAt: Date | undefined);
31
+ get updatedAt(): Date | undefined;
20
32
  }
21
33
  /**
22
34
  * @export
package/v2/model/Vpc.js CHANGED
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VpcStatusEnum = exports.Vpc = void 0;
4
4
  var Vpc = /** @class */ (function () {
5
- function Vpc(id, name, cidr, description, routes, status, enterpriseProjectId) {
5
+ function Vpc(id, name, cidr, description, routes, status, enterpriseProjectId, tenantId, createdAt, updatedAt) {
6
6
  this['id'] = id;
7
7
  this['name'] = name;
8
8
  this['cidr'] = cidr;
@@ -10,6 +10,9 @@ var Vpc = /** @class */ (function () {
10
10
  this['routes'] = routes;
11
11
  this['status'] = status;
12
12
  this['enterprise_project_id'] = enterpriseProjectId;
13
+ this['tenant_id'] = tenantId;
14
+ this['created_at'] = createdAt;
15
+ this['updated_at'] = updatedAt;
13
16
  }
14
17
  Vpc.prototype.withId = function (id) {
15
18
  this['id'] = id;
@@ -49,6 +52,48 @@ var Vpc = /** @class */ (function () {
49
52
  enumerable: false,
50
53
  configurable: true
51
54
  });
55
+ Vpc.prototype.withTenantId = function (tenantId) {
56
+ this['tenant_id'] = tenantId;
57
+ return this;
58
+ };
59
+ Object.defineProperty(Vpc.prototype, "tenantId", {
60
+ get: function () {
61
+ return this['tenant_id'];
62
+ },
63
+ set: function (tenantId) {
64
+ this['tenant_id'] = tenantId;
65
+ },
66
+ enumerable: false,
67
+ configurable: true
68
+ });
69
+ Vpc.prototype.withCreatedAt = function (createdAt) {
70
+ this['created_at'] = createdAt;
71
+ return this;
72
+ };
73
+ Object.defineProperty(Vpc.prototype, "createdAt", {
74
+ get: function () {
75
+ return this['created_at'];
76
+ },
77
+ set: function (createdAt) {
78
+ this['created_at'] = createdAt;
79
+ },
80
+ enumerable: false,
81
+ configurable: true
82
+ });
83
+ Vpc.prototype.withUpdatedAt = function (updatedAt) {
84
+ this['updated_at'] = updatedAt;
85
+ return this;
86
+ };
87
+ Object.defineProperty(Vpc.prototype, "updatedAt", {
88
+ get: function () {
89
+ return this['updated_at'];
90
+ },
91
+ set: function (updatedAt) {
92
+ this['updated_at'] = updatedAt;
93
+ },
94
+ enumerable: false,
95
+ configurable: true
96
+ });
52
97
  return Vpc;
53
98
  }());
54
99
  exports.Vpc = Vpc;