1.0.1
This commit is contained in:
20
src/dynamix_sdk/api/cloudapi/compute/pfw_del.py
Normal file
20
src/dynamix_sdk/api/cloudapi/compute/pfw_del.py
Normal file
@@ -0,0 +1,20 @@
|
||||
import dynamix_sdk.base as _base
|
||||
from dynamix_sdk.api import _nested
|
||||
|
||||
|
||||
class CloudapiComputePfwDelResultBool(_base.BaseAPIResultBool):
|
||||
pass
|
||||
|
||||
|
||||
class CloudapiComputePfwDelProtocol(_base.BasePostAPIFunctionProtocol):
|
||||
def pfw_del(
|
||||
self,
|
||||
*,
|
||||
vm_id: int,
|
||||
rule_id: int | None = None,
|
||||
public_port_start: int | None = None,
|
||||
public_port_end: int | None = None,
|
||||
local_port: int | None = None,
|
||||
protocol: _nested.NATRuleProtocol | None = None,
|
||||
) -> CloudapiComputePfwDelResultBool:
|
||||
...
|
||||
Reference in New Issue
Block a user