Update status of third-party services, such as East-West network introspection or North-South network introspection.

You can enable or disable North-South or East-West service insertion configuration status on the system. By default, service insertion status is disabled until a service is created.
  • Update the status of service. Run the following API command.
    PUT https://<policy-mgr>/policy/api/v1/infra/settings/service-insertion/security/status
        {
          "north_south_enabled": false,
          "resource_type": "PolicySIStatusConfiguration",
          "_revision": 1
    	}
    Example Response:
    {
    	"resource_type": "PolicySIStatusConfiguration",
    	"id": "si-status",
    	"display_name": "/infra/settings/service-insertion/security/status",
    	"path": "/infra/settings/service-insertion/security/status",
    	"relative_path": "si-status",
    	"north_south_enabled": false,
    	"east_west_enabled": true,
    	"_create_user": "system",
    	"_create_time": 1554274751846,
    	"_last_modified_user": "admin",
    	"_last_modified_time": 1554275071006,
    	"_system_owned": false,
    	"_protection": "NOT_PROTECTED",
    	"_revision": 2
    }