You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
487 B
20 lines
487 B
import dynamix_sdk.base as _base
|
|
|
|
|
|
class CloudapiComputeChangeSecurityGroupsResultBool(_base.BaseAPIResultBool):
|
|
pass
|
|
|
|
|
|
class CloudapiComputeChangeSecurityGroupsProtocol(
|
|
_base.BasePostAPIFunctionProtocol
|
|
):
|
|
def change_security_groups(
|
|
self,
|
|
*,
|
|
vm_id: int,
|
|
interface: str,
|
|
security_group_ids: list[int] | None = None,
|
|
security_group_mode: bool | None = None,
|
|
) -> CloudapiComputeChangeSecurityGroupsResultBool:
|
|
...
|