waldur-js-client 8.0.9-dev.33 → 8.0.9-dev.34

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.
@@ -11669,9 +11669,9 @@ export type NestedSecurityGroupRule = {
11669
11669
  */
11670
11670
  direction?: DirectionEnum;
11671
11671
  /**
11672
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
11672
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
11673
11673
  */
11674
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
11674
+ protocol?: string;
11675
11675
  /**
11676
11676
  * Starting port number in the range (1-65535)
11677
11677
  */
@@ -11699,9 +11699,9 @@ export type NestedSecurityGroupRuleRequest = {
11699
11699
  */
11700
11700
  direction?: DirectionEnum;
11701
11701
  /**
11702
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
11702
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
11703
11703
  */
11704
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
11704
+ protocol?: string;
11705
11705
  /**
11706
11706
  * Starting port number in the range (1-65535)
11707
11707
  */
@@ -15033,9 +15033,9 @@ export type OpenStackSecurityGroupRuleCreate = {
15033
15033
  */
15034
15034
  direction?: DirectionEnum;
15035
15035
  /**
15036
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
15036
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
15037
15037
  */
15038
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
15038
+ protocol?: string;
15039
15039
  /**
15040
15040
  * Starting port number in the range (1-65535)
15041
15041
  */
@@ -15067,9 +15067,9 @@ export type OpenStackSecurityGroupRuleCreateRequest = {
15067
15067
  */
15068
15068
  direction?: DirectionEnum;
15069
15069
  /**
15070
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
15070
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
15071
15071
  */
15072
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
15072
+ protocol?: string;
15073
15073
  /**
15074
15074
  * Starting port number in the range (1-65535)
15075
15075
  */
@@ -15098,9 +15098,9 @@ export type OpenStackSecurityGroupRuleUpdateByNameRequest = {
15098
15098
  */
15099
15099
  direction?: DirectionEnum;
15100
15100
  /**
15101
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
15101
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
15102
15102
  */
15103
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
15103
+ protocol?: string;
15104
15104
  /**
15105
15105
  * Starting port number in the range (1-65535)
15106
15106
  */
@@ -15127,9 +15127,9 @@ export type OpenStackSecurityGroupRuleUpdateRequest = {
15127
15127
  */
15128
15128
  direction?: DirectionEnum;
15129
15129
  /**
15130
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
15130
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
15131
15131
  */
15132
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
15132
+ protocol?: string;
15133
15133
  /**
15134
15134
  * Starting port number in the range (1-65535)
15135
15135
  */
@@ -21315,9 +21315,9 @@ export type RancherClusterSecurityGroupRule = {
21315
21315
  */
21316
21316
  direction?: DirectionEnum;
21317
21317
  /**
21318
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
21318
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
21319
21319
  */
21320
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
21320
+ protocol?: string;
21321
21321
  /**
21322
21322
  * Starting port number in the range (1-65535)
21323
21323
  */
@@ -21342,9 +21342,9 @@ export type RancherClusterSecurityGroupRuleRequest = {
21342
21342
  */
21343
21343
  direction?: DirectionEnum;
21344
21344
  /**
21345
- * The network protocol (TCP, UDP, ICMP, or empty for any protocol)
21345
+ * Network protocol: 'tcp', 'udp', 'icmp', empty (any) or an IANA protocol number 0-255 (e.g. '112' for VRRP).
21346
21346
  */
21347
- protocol?: SecurityGroupRuleProtocolEnum | BlankEnum;
21347
+ protocol?: string;
21348
21348
  /**
21349
21349
  * Starting port number in the range (1-65535)
21350
21350
  */
@@ -24316,7 +24316,6 @@ export type SectionRequest = {
24316
24316
  */
24317
24317
  is_standalone?: boolean;
24318
24318
  };
24319
- export type SecurityGroupRuleProtocolEnum = 'tcp' | 'udp' | 'icmp';
24320
24319
  export type SelfDeclaredConflictRequest = {
24321
24320
  proposal_uuid: string;
24322
24321
  coi_type: CoiTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.33",
3
+ "version": "8.0.9-dev.34",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",