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.
21 lines
490 B
21 lines
490 B
|
3 weeks ago
|
import dynamix_sdk.base as _base
|
||
|
|
import dynamix_sdk.api._nested as _nested
|
||
|
|
|
||
|
|
|
||
|
|
class CloudapiSecurityGroupUpdateResultModel(
|
||
|
|
_base.BaseAPIResultModel,
|
||
|
|
_nested.SecurityGroupAPIResultNM,
|
||
|
|
):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class CloudapiSecurityGroupUpdateProtocol(_base.BasePostAPIFunctionProtocol):
|
||
|
|
def update(
|
||
|
|
self,
|
||
|
|
*,
|
||
|
|
security_group_id: int,
|
||
|
|
name: str | None = None,
|
||
|
|
description: str | None = None,
|
||
|
|
) -> CloudapiSecurityGroupUpdateResultModel:
|
||
|
|
...
|