You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Networking/v2/Params.php
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,17 @@ public function adminStateUp(): array
61
61
];
62
62
}
63
63
64
+
publicfunctionportSecurityEnabled(): array
65
+
{
66
+
return [
67
+
'type' => self::BOOL_TYPE,
68
+
'location' => self::JSON,
69
+
'sentAs' => 'port_security_enabled',
70
+
'description' => 'The port security status. A valid value is enabled (true) or disabled (false). If port security is enabled for the port, security
71
+
group rules and anti-spoofing rules are applied to the traffic on the port. If disabled, no such rules are applied.',
72
+
];
73
+
}
74
+
64
75
publicfunctionnetworkId(): array
65
76
{
66
77
return [
@@ -100,6 +111,16 @@ public function tenantId(): array
100
111
];
101
112
}
102
113
114
+
publicfunctionprojectId(): array
115
+
{
116
+
return [
117
+
'type' => self::STRING_TYPE,
118
+
'sentAs' => 'project_id',
119
+
'location' => self::QUERY,
120
+
'description' => 'The ID of the tenant who owns the network. Only administrative users can specify a tenant ID other than their own. You cannot change this value through authorization policies',
121
+
];
122
+
}
123
+
103
124
publicfunctiongatewayIp(): array
104
125
{
105
126
return [
@@ -337,6 +358,7 @@ public function secGroupIds(): array
337
358
return [
338
359
'type' => self::ARRAY_TYPE,
339
360
'location' => self::JSON,
361
+
'sentAs' => 'security_groups',
340
362
'items' => [
341
363
'type' => self::STRING_TYPE,
342
364
'description' => 'The UUID of the security group',
@@ -426,6 +448,15 @@ public function routerAccessibleJson(): array
0 commit comments