@huaweicloud/huaweicloud-sdk-vpc 3.0.49-rc → 3.0.50-rc

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.0.49-rc",
3
+ "version": "3.0.50-rc",
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.0.49-rc"
17
+ "@huaweicloud/huaweicloud-sdk-core": "^3.0.50-rc"
18
18
  }
19
19
  }
@@ -1,9 +1,14 @@
1
+ import { NeutronPageLink } from './NeutronPageLink';
1
2
  import { NeutronSecurityGroupRule } from './NeutronSecurityGroupRule';
2
3
  import { SdkResponse } from "@huaweicloud/huaweicloud-sdk-core/SdkResponse";
3
4
  export declare class NeutronListSecurityGroupRulesResponse extends SdkResponse {
4
5
  private 'security_group_rules'?;
6
+ private 'security_group_rules_links'?;
5
7
  constructor();
6
8
  withSecurityGroupRules(securityGroupRules: Array<NeutronSecurityGroupRule>): NeutronListSecurityGroupRulesResponse;
7
9
  set securityGroupRules(securityGroupRules: Array<NeutronSecurityGroupRule> | undefined);
8
10
  get securityGroupRules(): Array<NeutronSecurityGroupRule> | undefined;
11
+ withSecurityGroupRulesLinks(securityGroupRulesLinks: Array<NeutronPageLink>): NeutronListSecurityGroupRulesResponse;
12
+ set securityGroupRulesLinks(securityGroupRulesLinks: Array<NeutronPageLink> | undefined);
13
+ get securityGroupRulesLinks(): Array<NeutronPageLink> | undefined;
9
14
  }
@@ -36,6 +36,20 @@ var NeutronListSecurityGroupRulesResponse = /** @class */ (function (_super) {
36
36
  enumerable: false,
37
37
  configurable: true
38
38
  });
39
+ NeutronListSecurityGroupRulesResponse.prototype.withSecurityGroupRulesLinks = function (securityGroupRulesLinks) {
40
+ this['security_group_rules_links'] = securityGroupRulesLinks;
41
+ return this;
42
+ };
43
+ Object.defineProperty(NeutronListSecurityGroupRulesResponse.prototype, "securityGroupRulesLinks", {
44
+ get: function () {
45
+ return this['security_group_rules_links'];
46
+ },
47
+ set: function (securityGroupRulesLinks) {
48
+ this['security_group_rules_links'] = securityGroupRulesLinks;
49
+ },
50
+ enumerable: false,
51
+ configurable: true
52
+ });
39
53
  return NeutronListSecurityGroupRulesResponse;
40
54
  }(SdkResponse_1.SdkResponse));
41
55
  exports.NeutronListSecurityGroupRulesResponse = NeutronListSecurityGroupRulesResponse;