v1.feature_profile.sdwan.embedded_security.unified.ngfirewall

Operation: GET /dataservice/v1/feature-profile/sdwan/embedded-security/{securityId}/unified/ngfirewall

Get Ngfirewall Feature

def get_ngfirewall_profile_parcel(security_id: str) -> str: ...

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.v1.feature_profile.sdwan.embedded_security.unified.ngfirewall.get_ngfirewall_profile_parcel()

Operation: POST /dataservice/v1/feature-profile/sdwan/embedded-security/{securityId}/unified/ngfirewall

Create Feature for Ngfirewall Policy

def create_ngfirewall_profile_parcel(
    security_id: str,
    payload: Optional[
        CreateNgfirewallProfileParcelPostRequest
    ] = None,
) -> CreateNgfirewallProfileParcelPostResponse: ...

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.v1.feature_profile.sdwan.embedded_security.unified.ngfirewall.create_ngfirewall_profile_parcel()

Operation: GET /dataservice/v1/feature-profile/sdwan/embedded-security/{securityId}/unified/ngfirewall/{securityProfileParcelId}

Get Ngfirewall Feature by FeatureId

def get_ngfirewall_profile_parcel_by_parcel_id(
    security_id: str, security_profile_parcel_id: str
) -> str: ...

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.v1.feature_profile.sdwan.embedded_security.unified.ngfirewall.get_ngfirewall_profile_parcel_by_parcel_id()

Operation: PUT /dataservice/v1/feature-profile/sdwan/embedded-security/{securityId}/unified/ngfirewall/{securityProfileParcelId}

Update a Ngfirewall Feature

def edit_ngfirewall_profile_parcel(
    security_id: str,
    security_profile_parcel_id: str,
    payload: Optional[str] = None,
) -> str: ...

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.v1.feature_profile.sdwan.embedded_security.unified.ngfirewall.edit_ngfirewall_profile_parcel()

Operation: DELETE /dataservice/v1/feature-profile/sdwan/embedded-security/{securityId}/unified/ngfirewall/{securityProfileParcelId}

Delete a Ngfirewall Feature

def delete_ngfirewall_profile_parcel(
    security_id: str, security_profile_parcel_id: str
) -> None: ...

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.v1.feature_profile.sdwan.embedded_security.unified.ngfirewall.delete_ngfirewall_profile_parcel()