template.cor.transitvpc
Operation: GET /dataservice/template/cor/transitvpc
Deprecated!!!
Get transit VPC/VNet list
def get(
accountid: str, cloudregion: str, cloudtype: Optional[str] = "AWS"
) -> List[Any]: ...
Example:
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.template.cor.transitvpc.get()
Operation: PUT /dataservice/template/cor/transitvpc
Deprecated!!!
Update transit VPC/VNet
def put(payload: Any) -> Any: ...
Example:
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.template.cor.transitvpc.put()
Operation: POST /dataservice/template/cor/transitvpc
Deprecated!!!
Create transit VPC/VNet
def post(payload: Any) -> Any: ...
Example:
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.template.cor.transitvpc.post()