@huaweicloud/huaweicloud-sdk-eip 3.0.22-beta → 3.0.26-beta

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-eip",
3
- "version": "3.0.22-beta",
3
+ "version": "3.0.26-beta",
4
4
  "description": "Huaweicloud SDK for eip",
5
5
  "main": "huaweicloud-sdk-eip.js",
6
6
  "typings": "huaweicloud-sdk-eip.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.0.22-beta"
17
+ "@huaweicloud/huaweicloud-sdk-core": "^3.0.26-beta"
18
18
  }
19
19
  }
@@ -1,9 +1,11 @@
1
1
  export declare class CreatePrePaidPublicipOption {
2
2
  type: string;
3
3
  private 'ip_version'?;
4
+ alias?: string;
4
5
  constructor(type?: any);
5
6
  withType(type: string): CreatePrePaidPublicipOption;
6
7
  withIpVersion(ipVersion: number): CreatePrePaidPublicipOption;
7
8
  set ipVersion(ipVersion: number | undefined);
8
9
  get ipVersion(): number | undefined;
10
+ withAlias(alias: string): CreatePrePaidPublicipOption;
9
11
  }
@@ -23,6 +23,10 @@ var CreatePrePaidPublicipOption = /** @class */ (function () {
23
23
  enumerable: false,
24
24
  configurable: true
25
25
  });
26
+ CreatePrePaidPublicipOption.prototype.withAlias = function (alias) {
27
+ this['alias'] = alias;
28
+ return this;
29
+ };
26
30
  return CreatePrePaidPublicipOption;
27
31
  }());
28
32
  exports.CreatePrePaidPublicipOption = CreatePrePaidPublicipOption;
@@ -2,6 +2,7 @@ export declare class CreatePublicipOption {
2
2
  private 'ip_address'?;
3
3
  type: string;
4
4
  private 'ip_version'?;
5
+ alias?: string;
5
6
  constructor(type?: any);
6
7
  withIpAddress(ipAddress: string): CreatePublicipOption;
7
8
  set ipAddress(ipAddress: string | undefined);
@@ -10,6 +11,7 @@ export declare class CreatePublicipOption {
10
11
  withIpVersion(ipVersion: CreatePublicipOptionIpVersionEnum): CreatePublicipOption;
11
12
  set ipVersion(ipVersion: CreatePublicipOptionIpVersionEnum | undefined);
12
13
  get ipVersion(): CreatePublicipOptionIpVersionEnum | undefined;
14
+ withAlias(alias: string): CreatePublicipOption;
13
15
  }
14
16
  /**
15
17
  * @export
@@ -37,6 +37,10 @@ var CreatePublicipOption = /** @class */ (function () {
37
37
  enumerable: false,
38
38
  configurable: true
39
39
  });
40
+ CreatePublicipOption.prototype.withAlias = function (alias) {
41
+ this['alias'] = alias;
42
+ return this;
43
+ };
40
44
  return CreatePublicipOption;
41
45
  }());
42
46
  exports.CreatePublicipOption = CreatePublicipOption;
@@ -9,6 +9,7 @@ export declare class PublicipCreateResp {
9
9
  private 'public_ipv6_address'?;
10
10
  private 'ip_version'?;
11
11
  private 'enterprise_project_id'?;
12
+ alias?: string;
12
13
  constructor();
13
14
  withBandwidthSize(bandwidthSize: number): PublicipCreateResp;
14
15
  set bandwidthSize(bandwidthSize: number | undefined);
@@ -34,6 +35,7 @@ export declare class PublicipCreateResp {
34
35
  withEnterpriseProjectId(enterpriseProjectId: string): PublicipCreateResp;
35
36
  set enterpriseProjectId(enterpriseProjectId: string | undefined);
36
37
  get enterpriseProjectId(): string | undefined;
38
+ withAlias(alias: string): PublicipCreateResp;
37
39
  }
38
40
  /**
39
41
  * @export
@@ -114,6 +114,10 @@ var PublicipCreateResp = /** @class */ (function () {
114
114
  enumerable: false,
115
115
  configurable: true
116
116
  });
117
+ PublicipCreateResp.prototype.withAlias = function (alias) {
118
+ this['alias'] = alias;
119
+ return this;
120
+ };
117
121
  return PublicipCreateResp;
118
122
  }());
119
123
  exports.PublicipCreateResp = PublicipCreateResp;
@@ -18,6 +18,7 @@ export declare class PublicipShowResp {
18
18
  private 'ip_version'?;
19
19
  private 'public_border_group'?;
20
20
  private 'allow_share_bandwidth_types'?;
21
+ alias?: string;
21
22
  constructor();
22
23
  withBandwidthId(bandwidthId: string): PublicipShowResp;
23
24
  set bandwidthId(bandwidthId: string | undefined);
@@ -65,6 +66,7 @@ export declare class PublicipShowResp {
65
66
  withAllowShareBandwidthTypes(allowShareBandwidthTypes: Array<string>): PublicipShowResp;
66
67
  set allowShareBandwidthTypes(allowShareBandwidthTypes: Array<string> | undefined);
67
68
  get allowShareBandwidthTypes(): Array<string> | undefined;
69
+ withAlias(alias: string): PublicipShowResp;
68
70
  }
69
71
  /**
70
72
  * @export
@@ -216,6 +216,10 @@ var PublicipShowResp = /** @class */ (function () {
216
216
  enumerable: false,
217
217
  configurable: true
218
218
  });
219
+ PublicipShowResp.prototype.withAlias = function (alias) {
220
+ this['alias'] = alias;
221
+ return this;
222
+ };
219
223
  return PublicipShowResp;
220
224
  }());
221
225
  exports.PublicipShowResp = PublicipShowResp;
@@ -16,6 +16,7 @@ export declare class PublicipUpdateResp {
16
16
  type?: string;
17
17
  private 'public_ipv6_address'?;
18
18
  private 'ip_version'?;
19
+ alias?: string;
19
20
  constructor();
20
21
  withBandwidthId(bandwidthId: string): PublicipUpdateResp;
21
22
  set bandwidthId(bandwidthId: string | undefined);
@@ -57,6 +58,7 @@ export declare class PublicipUpdateResp {
57
58
  withIpVersion(ipVersion: PublicipUpdateRespIpVersionEnum): PublicipUpdateResp;
58
59
  set ipVersion(ipVersion: PublicipUpdateRespIpVersionEnum | undefined);
59
60
  get ipVersion(): PublicipUpdateRespIpVersionEnum | undefined;
61
+ withAlias(alias: string): PublicipUpdateResp;
60
62
  }
61
63
  /**
62
64
  * @export
@@ -188,6 +188,10 @@ var PublicipUpdateResp = /** @class */ (function () {
188
188
  enumerable: false,
189
189
  configurable: true
190
190
  });
191
+ PublicipUpdateResp.prototype.withAlias = function (alias) {
192
+ this['alias'] = alias;
193
+ return this;
194
+ };
191
195
  return PublicipUpdateResp;
192
196
  }());
193
197
  exports.PublicipUpdateResp = PublicipUpdateResp;
@@ -1,6 +1,7 @@
1
1
  export declare class UpdatePublicipOption {
2
2
  private 'port_id'?;
3
3
  private 'ip_version'?;
4
+ alias?: string;
4
5
  constructor();
5
6
  withPortId(portId: string): UpdatePublicipOption;
6
7
  set portId(portId: string | undefined);
@@ -8,6 +9,7 @@ export declare class UpdatePublicipOption {
8
9
  withIpVersion(ipVersion: UpdatePublicipOptionIpVersionEnum): UpdatePublicipOption;
9
10
  set ipVersion(ipVersion: UpdatePublicipOptionIpVersionEnum | undefined);
10
11
  get ipVersion(): UpdatePublicipOptionIpVersionEnum | undefined;
12
+ withAlias(alias: string): UpdatePublicipOption;
11
13
  }
12
14
  /**
13
15
  * @export
@@ -32,6 +32,10 @@ var UpdatePublicipOption = /** @class */ (function () {
32
32
  enumerable: false,
33
33
  configurable: true
34
34
  });
35
+ UpdatePublicipOption.prototype.withAlias = function (alias) {
36
+ this['alias'] = alias;
37
+ return this;
38
+ };
35
39
  return UpdatePublicipOption;
36
40
  }());
37
41
  exports.UpdatePublicipOption = UpdatePublicipOption;