waldur-js-client 7.7.7-dev.8 → 7.7.7-dev.9
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/dist/types.gen.d.ts +14 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5710,6 +5710,20 @@ export type OpenStackNestedPortRequest = {
|
|
|
5710
5710
|
};
|
|
5711
5711
|
export type OpenStackNestedSecurityGroup = {
|
|
5712
5712
|
url?: string;
|
|
5713
|
+
readonly name?: string;
|
|
5714
|
+
readonly description?: string;
|
|
5715
|
+
readonly state?: string;
|
|
5716
|
+
readonly rules?: Array<{
|
|
5717
|
+
id?: number;
|
|
5718
|
+
protocol?: string | null;
|
|
5719
|
+
from_port?: number | null;
|
|
5720
|
+
to_port?: number | null;
|
|
5721
|
+
cidr?: string | null;
|
|
5722
|
+
remote_group?: string | null;
|
|
5723
|
+
direction?: string;
|
|
5724
|
+
ethertype?: string;
|
|
5725
|
+
description?: string | null;
|
|
5726
|
+
}>;
|
|
5713
5727
|
};
|
|
5714
5728
|
export type OpenStackNestedSecurityGroupRequest = {
|
|
5715
5729
|
url?: string;
|