diff --git a/Palo Alto/Prisma Access/OpenAPIs/palo_alto_prisma_access-1.0.json b/Palo Alto/Prisma Access/OpenAPIs/palo_alto_prisma_access-1.0.json new file mode 100644 index 0000000..e87181c --- /dev/null +++ b/Palo Alto/Prisma Access/OpenAPIs/palo_alto_prisma_access-1.0.json @@ -0,0 +1,28973 @@ +{ + "openapi": "3.0.0", + "info": { + "title": "Palo Alto Prisma Access", + "description": "SASE network and security configuration API for Palo Alto Networks Prisma Access, managed via Strata Cloud Manager", + "version": "1.0" + }, + "servers": [ + { + "url": "https://api.sase.paloaltonetworks.com" + } + ], + "security": [ + { + "oauth2ClientCredentials": [] + } + ], + "paths": { + "/sse/config/v1/address-groups": { + "get": { + "description": "List all [address groups](https://docs.paloaltonetworks.com/network-security/security-policy/objects/address-groups).\n", + "operationId": "get-sse-config-v1-address-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-address-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of address groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get all address groups", + "tags": [ + "AddressGroups" + ] + }, + "post": { + "description": "Create an address group.\n", + "operationId": "post-sse-config-v1-address-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-address-groups" + } + } + }, + "description": "The address group you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an address group", + "tags": [ + "AddressGroups" + ] + } + }, + "/sse/config/v1/address-groups/{id}": { + "delete": { + "description": "Delete an address group.\n", + "operationId": "delete-sse-config-v1-address-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an address group", + "tags": [ + "AddressGroups" + ] + }, + "get": { + "description": "Get an [address group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/address-groups) by ID.\n", + "operationId": "get-sse-config-v1-address-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-address-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the address groups by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an address group by ID", + "tags": [ + "AddressGroups" + ] + }, + "put": { + "description": "Modify an address group.\n", + "operationId": "put-sse-config-v1-address-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-address-groups" + } + } + }, + "description": "The address group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an address group", + "tags": [ + "AddressGroups" + ] + } + }, + "/sse/config/v1/addresses": { + "get": { + "description": "Get addresses.\n", + "operationId": "get-sse-config-v1-addresses", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-addresses" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of addresses" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List addresses", + "tags": [ + "Addresses" + ] + }, + "post": { + "description": "Create an address.\n", + "operationId": "post-sse-config-v1-addresses", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-addresses" + } + } + }, + "description": "The address you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an address", + "tags": [ + "Addresses" + ] + } + }, + "/sse/config/v1/addresses/{id}": { + "delete": { + "description": "Delete an address.\n", + "operationId": "delete-sse-config-v1-addresses-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an address", + "tags": [ + "Addresses" + ] + }, + "get": { + "description": "Get an [address](https://docs.paloaltonetworks.com/network-security/security-policy/objects/addresses) by ID.\n", + "operationId": "get-sse-config-v1-addresses-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-addresses" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the address by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an address by ID", + "tags": [ + "Addresses" + ] + }, + "put": { + "description": "Modify an address.\n", + "operationId": "put-sse-config-v1-addresses-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-addresses" + } + } + }, + "description": "The address you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an address", + "tags": [ + "Addresses" + ] + } + }, + "/sse/config/v1/anti-spyware-profiles": { + "get": { + "description": "Retrieve a list of all [anti-spyware profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware).\n", + "operationId": "get-sse-config-v1-anti-spyware-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/anti-spyware-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of Anti-spyware profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all anti-spyware profiles", + "tags": [ + "AntiSpywareProfiles" + ] + }, + "post": { + "description": "Create an [anti-spyware profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware).\n", + "operationId": "post-sse-config-v1-anti-spyware-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-profiles" + } + } + }, + "description": "The Anti-spyware profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an anti-spyware profile", + "tags": [ + "AntiSpywareProfiles" + ] + } + }, + "/sse/config/v1/anti-spyware-profiles/{id}": { + "delete": { + "description": "Delete an Anti-spyware profile.\n", + "operationId": "delete-sse-config-v1-anti-spyware-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an Anti-spyware profile", + "tags": [ + "AntiSpywareProfiles" + ] + }, + "get": { + "description": "Get an [anti-spyware profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware) by ID.\n", + "operationId": "get-sse-config-v1-anti-spyware-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/anti-spyware-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the anti-spyware profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an anti-spyware profile by ID", + "tags": [ + "AntiSpywareProfiles" + ] + }, + "put": { + "description": "Modify an Anti-spyware profile.\n", + "operationId": "put-sse-config-v1-anti-spyware-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-profiles" + } + } + }, + "description": "The Anti-spyware profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an Anti-spyware profile", + "tags": [ + "AntiSpywareProfiles" + ] + } + }, + "/sse/config/v1/anti-spyware-signatures": { + "get": { + "description": "Retrieve a list of all [anti-spyware](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware) signatures.\n", + "operationId": "get-sse-config-v1-anti-spyware-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/anti-spyware-signatures" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of Anti-spyware signatures" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all anti-spyware signatures", + "tags": [ + "AntiSpywareSignatures" + ] + }, + "post": { + "description": "Create an [anti-spyware](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware) signature.\n", + "operationId": "post-sse-config-v1-anti-spyware-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-signatures" + } + } + }, + "description": "The Anti-spyware signature you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an anti-spyware signature", + "tags": [ + "AntiSpywareSignatures" + ] + } + }, + "/sse/config/v1/anti-spyware-signatures/{id}": { + "delete": { + "description": "Delete an Anti-spyware signature.\n", + "operationId": "delete-sse-config-v1-anti-spyware-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an Anti-spyware signature", + "tags": [ + "AntiSpywareSignatures" + ] + }, + "put": { + "description": "Modify an Anti-spyware signature.\n", + "operationId": "put-sse-config-v1-anti-spyware-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-signatures" + } + } + }, + "description": "The Anti-spyware signature you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an Anti-spyware signature", + "tags": [ + "AntiSpywareSignatures" + ] + } + }, + "/sse/config/v1/app-override-rules": { + "get": { + "description": "Retrieve a list of all [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rules.\n", + "operationId": "get-sse-config-v1-app-override-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/app-override-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of application override policy rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all application override rules", + "tags": [ + "ApplicationOverrideRules" + ] + }, + "post": { + "description": "Create an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule.\n", + "operationId": "post-sse-config-v1-app-override-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/app-override-rules" + } + } + }, + "description": "The application override policy rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application override rule", + "tags": [ + "ApplicationOverrideRules" + ] + } + }, + "/sse/config/v1/app-override-rules/{id}": { + "delete": { + "description": "Delete an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule.\n", + "operationId": "delete-sse-config-v1-app-override-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application override rule", + "tags": [ + "ApplicationOverrideRules" + ] + }, + "get": { + "description": "Get an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule by ID.\n", + "operationId": "get-sse-config-v1-app-override-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/app-override-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the remote network by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application override rule by ID", + "tags": [ + "ApplicationOverrideRules" + ] + }, + "put": { + "description": "Edit an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule.\n", + "operationId": "put-sse-config-v1-app-override-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/app-override-rules" + } + } + }, + "description": "The app override policy rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application override rule", + "tags": [ + "ApplicationOverrideRules" + ] + } + }, + "/sse/config/v1/app-override-rules/{id}:move": { + "post": { + "description": "Move an app override rule.\n", + "operationId": "post-sse-config-v1-app-override-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The app override rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move an app override rule", + "tags": [ + "ApplicationOverrideRules" + ] + } + }, + "/sse/config/v1/application-filters": { + "get": { + "description": "Get application filters.\n", + "operationId": "get-sse-config-v1-application-filters", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-filters" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of application filters" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List application filters", + "tags": [ + "ApplicationFilters" + ] + }, + "post": { + "description": "Create an application filter.\n", + "operationId": "post-sse-config-v1-application-filters", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-application-filters" + } + } + }, + "description": "The application filter you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application filter", + "tags": [ + "ApplicationFilters" + ] + } + }, + "/sse/config/v1/application-filters/{id}": { + "delete": { + "description": "Delete an application filter.\n", + "operationId": "delete-sse-config-v1-application-filters-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application filter", + "tags": [ + "ApplicationFilters" + ] + }, + "get": { + "description": "Get an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) filter by ID.\n", + "operationId": "get-sse-config-v1-application-filters-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-filters" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the application filter by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application filter by ID", + "tags": [ + "ApplicationFilters" + ] + }, + "put": { + "description": "Modify an application filter.\n", + "operationId": "put-sse-config-v1-application-filters-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-application-filters" + } + } + }, + "description": "The application filter you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application filter", + "tags": [ + "ApplicationFilters" + ] + } + }, + "/sse/config/v1/application-groups": { + "get": { + "description": "Get application groups.\n", + "operationId": "get-sse-config-v1-application-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of application groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List application groups", + "tags": [ + "ApplicationGroups" + ] + }, + "post": { + "description": "Create an application group.\n", + "operationId": "post-sse-config-v1-application-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-application-groups" + } + } + }, + "description": "The application group you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application group", + "tags": [ + "ApplicationGroups" + ] + } + }, + "/sse/config/v1/application-groups/{id}": { + "delete": { + "description": "Delete an application group.\n", + "operationId": "delete-sse-config-v1-application-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application group", + "tags": [ + "ApplicationGroups" + ] + }, + "get": { + "description": "Get an [application group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/application-groups) by ID.\n", + "operationId": "get-sse-config-v1-application-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the application group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application group by ID", + "tags": [ + "ApplicationGroups" + ] + }, + "put": { + "description": "Modify an application group.\n", + "operationId": "put-sse-config-v1-application-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "properties": { + "entry": { + "$ref": "#/components/schemas/objects-application-groups" + } + }, + "type": "object" + } + } + }, + "description": "The application group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application group", + "tags": [ + "ApplicationGroups" + ] + } + }, + "/sse/config/v1/applications": { + "get": { + "description": "Get applications.\n", + "operationId": "get-sse-config-v1-applications", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-applications" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of applications" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List applications", + "tags": [ + "Applications" + ] + }, + "post": { + "description": "Create an application.\n", + "operationId": "post-sse-config-v1-applications", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-applications" + } + } + }, + "description": "The application you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application", + "tags": [ + "Applications" + ] + } + }, + "/sse/config/v1/applications/{id}": { + "delete": { + "description": "Delete an application.\n", + "operationId": "delete-sse-config-v1-applications-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application", + "tags": [ + "Applications" + ] + }, + "get": { + "description": "Get an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) by ID.\n", + "operationId": "get-sse-config-v1-applications-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-applications" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the application by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application by ID", + "tags": [ + "Applications" + ] + }, + "put": { + "description": "Modify an application.\n", + "operationId": "put-sse-config-v1-applications-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-applications" + } + } + }, + "description": "The application you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application", + "tags": [ + "Applications" + ] + } + }, + "/sse/config/v1/authentication-portals": { + "get": { + "description": "Retrieve a list of all authentication portals.\n", + "operationId": "get-sse-config-v1-authentication-portals", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-portals" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Get authentication portal" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication portals", + "tags": [ + "AuthenticationPortals" + ] + }, + "post": { + "description": "Create an authentication portal.\n", + "operationId": "post-sse-config-v1-authentication-portals", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-portals" + } + } + }, + "description": "The authentication portal you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication portal", + "tags": [ + "AuthenticationPortals" + ] + } + }, + "/sse/config/v1/authentication-portals/{id}": { + "delete": { + "description": "Delete a authentication portal.\n", + "operationId": "delete-sse-config-v1-authentication-portals-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication portal", + "tags": [ + "AuthenticationPortals" + ] + }, + "put": { + "description": "Modify a authentication portal.\n", + "operationId": "put-sse-config-v1-authentication-portals-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-portals" + } + } + }, + "description": "The authentication portal you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication portal", + "tags": [ + "AuthenticationPortals" + ] + } + }, + "/sse/config/v1/authentication-profiles": { + "get": { + "description": "Retrieve a list of all authentication profiles.\n", + "operationId": "get-sse-config-v1-authentication-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of authentication profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication profiles", + "tags": [ + "AuthenticationProfiles" + ] + }, + "post": { + "description": "Create an authentication profile.\n", + "operationId": "post-sse-config-v1-authentication-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-profiles" + } + } + }, + "description": "The authentication profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + } + }, + "/sse/config/v1/authentication-profiles/{id}": { + "delete": { + "description": "Delete a authentication profile.\n", + "operationId": "delete-sse-config-v1-authentication-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + }, + "get": { + "description": "Get an authentication profile by ID.\n", + "operationId": "get-sse-config-v1-authentication-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get authentication profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + }, + "put": { + "description": "Modify a authentication profile.\n", + "operationId": "put-sse-config-v1-authentication-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-profiles" + } + } + }, + "description": "The authentication profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + } + }, + "/sse/config/v1/authentication-rules": { + "get": { + "description": "Retrieve a list of all [authentication](https://docs.paloaltonetworks.com/network-security/security-policy/objects/authentication) rules.\n", + "operationId": "get-sse-config-v1-authentication-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of authentication rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication rules", + "tags": [ + "AuthenticationRules" + ] + }, + "post": { + "description": "Create an [authentication](https://docs.paloaltonetworks.com/network-security/security-policy/objects/authentication) rule.\n", + "operationId": "post-sse-config-v1-authentication-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-rules" + } + } + }, + "description": "The authentication rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication rule", + "tags": [ + "AuthenticationRules" + ] + } + }, + "/sse/config/v1/authentication-rules/{id}": { + "delete": { + "description": "Delete a authentication rule.\n", + "operationId": "delete-sse-config-v1-authentication-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication rule", + "tags": [ + "AuthenticationRules" + ] + }, + "put": { + "description": "Modify a authentication rule.\n", + "operationId": "put-sse-config-v1-authentication-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-rules" + } + } + }, + "description": "The authentication rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication rule", + "tags": [ + "AuthenticationRules" + ] + } + }, + "/sse/config/v1/authentication-rules/{id}:move": { + "post": { + "description": "Move an authentication rule.\n", + "operationId": "post-sse-config-v1-authentication-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The authentication rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move an authentication rule", + "tags": [ + "AuthenticationRules" + ] + } + }, + "/sse/config/v1/authentication-sequences": { + "get": { + "description": "Retrieve a list of all authentication sequences.\n", + "operationId": "get-sse-config-v1-authentication-sequences", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-sequences" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of authentication sequences" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + }, + "post": { + "description": "Create an authentication sequence.\n", + "operationId": "post-sse-config-v1-authentication-sequences", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-sequences" + } + } + }, + "description": "The authentication sequence you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + } + }, + "/sse/config/v1/authentication-sequences/{id}": { + "delete": { + "description": "Delete a authentication sequence.\n", + "operationId": "delete-sse-config-v1-authentication-sequences-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + }, + "get": { + "description": "Get an authentication sequence by ID.\n", + "operationId": "get-sse-config-v1-authentication-sequences-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-sequences" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get authentication sequence by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + }, + "put": { + "description": "Modify a authentication sequence.\n", + "operationId": "put-sse-config-v1-authentication-sequences-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-sequences" + } + } + }, + "description": "The authentication sequence you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + } + }, + "/sse/config/v1/auto-tag-actions": { + "delete": { + "description": "Delete an [auto tag action](https://docs.paloaltonetworks.com/network-security/security-policy/objects/auto-tag-actions).\n", + "operationId": "delete-sse-config-v1-auto-tag-actions", + "parameters": [ + { + "$ref": "#/components/parameters/name" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete auto tag actions", + "tags": [ + "AutoTagActions" + ] + }, + "get": { + "description": "Get Auto Tag Actions\n", + "operationId": "get-sse-config-v1-auto-tag-actions", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/auto-tag-actions" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of auto-tag-actions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List auto tag actions", + "tags": [ + "AutoTagActions" + ] + }, + "post": { + "description": "Create an [auto tag action](https://docs.paloaltonetworks.com/network-security/security-policy/objects/auto-tag-actions).\n", + "operationId": "post-sse-config-v1-auto-tag-actions", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/auto-tag-actions" + } + } + }, + "description": "The address you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create auto tag actions", + "tags": [ + "AutoTagActions" + ] + }, + "put": { + "description": "Edit an [auto tag action](https://docs.paloaltonetworks.com/network-security/security-policy/objects/auto-tag-actions).\n", + "operationId": "put-sse-config-v1-auto-tag-actions", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/auto-tag-actions" + } + } + }, + "description": "Modify auto tag actions" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit auto tag actions", + "tags": [ + "AutoTagActions" + ] + } + }, + "/sse/config/v1/bandwidth-allocations": { + "delete": { + "description": "Delete an aggregated bandwidth region.", + "operationId": "delete-sse-config-v1-bandwidth-allocations", + "parameters": [ + { + "$ref": "#/components/parameters/aggregated-bandwidth-region-name-required" + }, + { + "$ref": "#/components/parameters/aggregated-bandwidth-spn-name-list-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an aggregated bandwidth region", + "tags": [ + "BandwidthAllocations" + ] + }, + "get": { + "description": "Retrieve all aggregated bandwidth regions.", + "operationId": "get-sse-config-v1-bandwidth-allocations", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/bandwidth-allocations" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of aggregated bandwidth regions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List aggregated bandwidth regions", + "tags": [ + "BandwidthAllocations" + ] + }, + "post": { + "description": "Create an aggregated bandwidth regions.", + "operationId": "post-sse-config-v1-bandwidth-allocations", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/bandwidth-allocations" + } + } + }, + "description": "The aggregated bandwidth region you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create aggregated bandwidth regions", + "tags": [ + "BandwidthAllocations" + ] + }, + "put": { + "description": "Edit an aggregated bandwidth region.", + "operationId": "put-sse-config-v1-bandwidth-allocations", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/bandwidth-allocations" + } + } + }, + "description": "The aggregated bandwidth region you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an aggregated bandwidth region", + "tags": [ + "BandwidthAllocations" + ] + } + }, + "/sse/config/v1/bgp-routing": { + "get": { + "description": "Retrieve BGP routing.", + "operationId": "get-sse-config-v1-bgp-routing", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/bgp-routing" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Bgp routing under service connection folder" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Retrieve BGP routing", + "tags": [ + "ServiceConnections" + ] + }, + "put": { + "description": "Update BGP routing.", + "operationId": "put-sse-config-v1-bgp-routing", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/bgp-routing" + } + } + }, + "description": "The bgp-routing to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Update BGP routing", + "tags": [ + "ServiceConnections" + ] + } + }, + "/sse/config/v1/certificate-profiles": { + "get": { + "description": "List certificate profiles.\n", + "operationId": "get-sse-config-v1-certificate-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/certificate-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of certificate profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List certificate profiles", + "tags": [ + "CertificateProfiles" + ] + }, + "post": { + "description": "Create a certificate profile.\n", + "operationId": "post-sse-config-v1-certificate-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificate-profiles" + } + } + }, + "description": "The certificate profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create certificate profiles", + "tags": [ + "CertificateProfiles" + ] + } + }, + "/sse/config/v1/certificate-profiles/{id}": { + "delete": { + "description": "Delete a certificate profile.\n", + "operationId": "delete-sse-config-v1-certificate-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a certificate profile", + "tags": [ + "CertificateProfiles" + ] + }, + "get": { + "description": "Get a certificate profile by ID.\n", + "operationId": "get-sse-config-v1-certificate-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/certificate-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the certificate profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a certificate profile", + "tags": [ + "CertificateProfiles" + ] + }, + "put": { + "description": "Modify a certificate profile.\n", + "operationId": "put-sse-config-v1-certificate-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificate-profiles" + } + } + }, + "description": "The certificate profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Modify a certificate profile", + "tags": [ + "CertificateProfiles" + ] + } + }, + "/sse/config/v1/certificates": { + "get": { + "description": "List certificates.\n", + "operationId": "get-sse-config-v1-certificates", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/certificates-get" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of certificates info" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List certificates", + "tags": [ + "Certificates" + ] + }, + "post": { + "description": "Create a certificate.\n", + "operationId": "post-sse-config-v1-certificates", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificates-post" + } + } + }, + "description": "The certificate info you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create certificates", + "tags": [ + "Certificates" + ] + } + }, + "/sse/config/v1/certificates/{id}": { + "delete": { + "description": "Delete a certificate.\n", + "operationId": "delete-sse-config-v1-certificates-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete certificates", + "tags": [ + "Certificates" + ] + } + }, + "/sse/config/v1/certificates:import": { + "post": { + "description": "Import a certificate.\n", + "operationId": "post-sse-config-v1-certificates:import", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificates-import" + } + } + }, + "description": "The certificate you want to import" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Import a certificate", + "tags": [ + "Certificates" + ] + } + }, + "/sse/config/v1/config-versions": { + "get": { + "description": "List the candidate configurations.", + "operationId": "get-sse-config-v1-config-versions", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/candidate-config-versions" + }, + "type": "array" + } + ] + } + } + }, + "description": "List the configuration versions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List the candidate configurations", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/candidate": { + "delete": { + "description": "Rollback to the running configuration.", + "operationId": "delete-sse-config-v1-config-versions-candidate", + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Rollback to the running configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/candidate:push": { + "post": { + "description": "Push the candidate configuration.", + "operationId": "post-sse-config-v1-config-versions-candidate:push", + "requestBody": { + "content": { + "application/json": { + "schema": { + "properties": { + "description": { + "type": "string" + }, + "folders": { + "description": "The target folder for the configuration push", + "items": { + "enum": [ + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "folders" + ], + "type": "object" + } + } + }, + "description": "Push the candidate configuration" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Push the candidate configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/running": { + "get": { + "description": "Show the running configuration across each folder.", + "operationId": "get-sse-config-v1-config-versions-running", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/running-config-versions" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of the current running configurations." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Show the running configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/{version}": { + "get": { + "description": "Get a configuration by version.", + "operationId": "get-sse-config-v1-config-versions-version", + "parameters": [ + { + "$ref": "#/components/parameters/version-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/candidate-config-versions" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get config by version" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a configuration by version", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions:load": { + "post": { + "description": "Load a Prisma Access configuration using a version retrieved from a \nsnapshot.\n", + "operationId": "post-sse-config-v1-config-versions:load", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/load-config" + } + } + }, + "description": "Load config with specific version" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Load a configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/decryption-exclusions": { + "get": { + "description": "Retrieve all decryption exclusions.", + "operationId": "get-sse-config-v1-decryption-exclusions", + "parameters": [ + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-exclusions" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of decryption exclusions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List decryption exclusions", + "tags": [ + "DecryptionExclusions" + ] + }, + "post": { + "description": "Create a decryption exclusion.", + "operationId": "post-sse-config-v1-decryption-exclusions", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-exclusions" + } + } + }, + "description": "The decryption exclusion you want to add" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a decryption exclusion", + "tags": [ + "DecryptionExclusions" + ] + } + }, + "/sse/config/v1/decryption-exclusions/{id}": { + "delete": { + "description": "Delete a decryption exclusion.\n", + "operationId": "delete-sse-config-v1-decryption-exclusions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a decryption exclusions.", + "tags": [ + "DecryptionExclusions" + ] + }, + "get": { + "description": "Get a decryption exclusion by ID.", + "operationId": "get-sse-config-v1-decryption-exclusions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-exclusions" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the decryption exclusions by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a decryption exclusion by ID", + "tags": [ + "DecryptionExclusions" + ] + }, + "put": { + "description": "Modify a decryption exclusion.\n", + "operationId": "put-sse-config-v1-decryption-exclusions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-exclusions" + } + } + }, + "description": "The decryption exclusions you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a decryption exclusion", + "tags": [ + "DecryptionExclusions" + ] + } + }, + "/sse/config/v1/decryption-profiles": { + "get": { + "description": "Retrieve all [decryption profiles](https://docs.paloaltonetworks.com/network-security/security-policy/objects/decryption-profile).", + "operationId": "get-sse-config-v1-decryption-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of http decryption profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List decryption profiles", + "tags": [ + "DecryptionProfiles" + ] + }, + "post": { + "description": "Create a [decryption profile](https://docs.paloaltonetworks.com/network-security/security-policy/objects/decryption-profile).", + "operationId": "post-sse-config-v1-decryption-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-profiles" + } + } + }, + "description": "The decryption profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a decryption profile", + "tags": [ + "DecryptionProfiles" + ] + } + }, + "/sse/config/v1/decryption-profiles/{id}": { + "delete": { + "description": "Delete a decryption profile.\n", + "operationId": "delete-sse-config-v1-decryption-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a decryption profile", + "tags": [ + "DecryptionProfiles" + ] + }, + "get": { + "description": "Get a [decryption profile](https://docs.paloaltonetworks.com/network-security/security-policy/objects/decryption-profile) by ID.", + "operationId": "get-sse-config-v1-decryption-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the decryption profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a decryption profile by ID", + "tags": [ + "DecryptionProfiles" + ] + }, + "put": { + "description": "Modify a decryption profile.\n", + "operationId": "put-sse-config-v1-decryption-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-profiles" + } + } + }, + "description": "The decryption profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a decryption profile", + "tags": [ + "DecryptionProfiles" + ] + } + }, + "/sse/config/v1/decryption-rules": { + "get": { + "description": "Retrieve all decryption rules.\n", + "operationId": "get-sse-config-v1-decryption-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of decryption rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List decryption rules", + "tags": [ + "DecryptionRules" + ] + }, + "post": { + "description": "Create a decryption rule.\n", + "operationId": "post-sse-config-v1-decryption-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-rules" + } + } + }, + "description": "The decryption rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a decryption rule", + "tags": [ + "DecryptionRules" + ] + } + }, + "/sse/config/v1/decryption-rules/{id}": { + "delete": { + "description": "Delete a decryption rule.\n", + "operationId": "delete-sse-config-v1-decryption-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a decryption rule", + "tags": [ + "DecryptionRules" + ] + }, + "get": { + "description": "Get a decryption rule by ID.\n", + "operationId": "get-sse-config-v1-decryption-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the decryption rule by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a decryption rule by ID", + "tags": [ + "DecryptionRules" + ] + }, + "put": { + "description": "Modify a decryption rule.\n", + "operationId": "put-sse-config-v1-decryption-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-rules" + } + } + }, + "description": "The decryption rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a decryption rule", + "tags": [ + "DecryptionRules" + ] + } + }, + "/sse/config/v1/decryption-rules/{id}:move": { + "post": { + "description": "Move a decryption rule.\n", + "operationId": "post-sse-config-v1-decryption-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The decryption rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move a decryption rule", + "tags": [ + "DecryptionRules" + ] + } + }, + "/sse/config/v1/dns-security-profiles": { + "get": { + "description": "Retrieve all [DNS security profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-dns-security).", + "operationId": "get-sse-config-v1-dns-security-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/dns-security-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of DNS security profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List DNS security profiles", + "tags": [ + "DNSSecurityProfiles" + ] + }, + "post": { + "description": "Create a [DNS security profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-dns-security).", + "operationId": "post-sse-config-v1-dns-security-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/dns-security-profiles" + } + } + }, + "description": "The DNS Security Profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a DNS security profile", + "tags": [ + "DNSSecurityProfiles" + ] + } + }, + "/sse/config/v1/dns-security-profiles/{id}": { + "delete": { + "description": "Delete an DNS Security Profile.\n", + "operationId": "delete-sse-config-v1-dns-security-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an DNS Security Profile", + "tags": [ + "DNSSecurityProfiles" + ] + }, + "get": { + "description": "Get a [DNS security profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-dns-security) by ID.", + "operationId": "get-sse-config-v1-dns-security-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/dns-security-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the dns security profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a DNS security profile by ID", + "tags": [ + "DNSSecurityProfiles" + ] + }, + "put": { + "description": "Modify an DNS Security Profile.\n", + "operationId": "put-sse-config-v1-dns-security-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/dns-security-profiles" + } + } + }, + "description": "The DNS Security Profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an DNS Security Profile", + "tags": [ + "DNSSecurityProfiles" + ] + } + }, + "/sse/config/v1/dynamic-user-groups": { + "get": { + "description": "Get dynamic user groups.\n", + "operationId": "get-sse-config-v1-dynamic-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of dynamic user groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List dynamic user groups", + "tags": [ + "DynamicUserGroups" + ] + }, + "post": { + "description": "Create a dynamic user group.\n", + "operationId": "post-sse-config-v1-dynamic-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + } + } + }, + "description": "The dynamic user group you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a dynamic user group", + "tags": [ + "DynamicUserGroups" + ] + } + }, + "/sse/config/v1/dynamic-user-groups/{id}": { + "delete": { + "description": "Delete a dynamic user group.\n", + "operationId": "delete-sse-config-v1-dynamic-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a dynamic user group", + "tags": [ + "DynamicUserGroups" + ] + }, + "get": { + "description": "Get a [dynamic user group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/dynamic-user-groups) by ID.\n", + "operationId": "get-sse-config-v1-dynamic-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the dynamic user group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a dynamic user group by ID", + "tags": [ + "DynamicUserGroups" + ] + }, + "put": { + "description": "Modify a dynamic user group.\n", + "operationId": "put-sse-config-v1-dynamic-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + } + } + }, + "description": "The dynamic user group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a dynamic user group", + "tags": [ + "DynamicUserGroups" + ] + } + }, + "/sse/config/v1/enable": { + "post": { + "description": "Set up application defaults for a newly on-boarded tenant. This replaces the initialization\nperformed by the Prisma Access Cloud-Managed user interface when a tenant is initially\ncreated.\n\nUse this API after you have [created a tenant](/sase/api/subscription/post-subscription-v-1-instances/) and claimed\nyour Prisma Access license for that tenant.\n", + "operationId": "post-sse-config-v1-enable", + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Set up application defaults", + "tags": [ + "InfrastructureSettings" + ] + } + }, + "/sse/config/v1/external-dynamic-lists": { + "get": { + "description": "Get external dynamic lists.\n", + "operationId": "get-sse-config-v1-external-dynamic-lists", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of external dynamic lists" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List external dynamic lists", + "tags": [ + "ExternalDynamicLists" + ] + }, + "post": { + "description": "Create an [external dynamic list](https://docs.paloaltonetworks.com/network-security/security-policy/objects/external-dynamic-lists).\n", + "operationId": "post-sse-config-v1-external-dynamic-lists", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + } + } + }, + "description": "The EDL you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an external dynamic list", + "tags": [ + "ExternalDynamicLists" + ] + } + }, + "/sse/config/v1/external-dynamic-lists/{id}": { + "delete": { + "description": "Delete an external dynamic list.\n", + "operationId": "delete-sse-config-v1-external-dynamic-lists-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an external dynamic list.", + "tags": [ + "ExternalDynamicLists" + ] + }, + "get": { + "description": "Get an [external dynamic list](https://docs.paloaltonetworks.com/network-security/security-policy/objects/external-dynamic-lists) by ID.\n", + "operationId": "get-sse-config-v1-external-dynamic-lists-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get security rule by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an external dynamic list", + "tags": [ + "ExternalDynamicLists" + ] + }, + "put": { + "description": "Modify an external dynamic list.\n", + "operationId": "put-sse-config-v1-external-dynamic-lists-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + } + } + }, + "description": "The EDL you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an external dynamic list.", + "tags": [ + "ExternalDynamicLists" + ] + } + }, + "/sse/config/v1/file-blocking-profiles": { + "get": { + "description": "Retrieve all [file blocking profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-file-blocking).", + "operationId": "get-sse-config-v1-file-blocking-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/file-blocking-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of File-blocking profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List file blocking profiles", + "tags": [ + "FileBlockingProfiles" + ] + }, + "post": { + "description": "Create a [file blocking profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-file-blocking).", + "operationId": "post-sse-config-v1-file-blocking-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/file-blocking-profiles" + } + } + }, + "description": "The File-blocking profiles you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a file blocking profile", + "tags": [ + "FileBlockingProfiles" + ] + } + }, + "/sse/config/v1/file-blocking-profiles/{id}": { + "delete": { + "description": "Delete an File-blocking profiles.\n", + "operationId": "delete-sse-config-v1-file-blocking-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an File-blocking profiles", + "tags": [ + "FileBlockingProfiles" + ] + }, + "get": { + "description": "Get a [file blocking profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-file-blocking) by ID.", + "operationId": "get-sse-config-v1-file-blocking-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/file-blocking-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the file blocking profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a file blocking profile by ID", + "tags": [ + "FileBlockingProfiles" + ] + }, + "put": { + "description": "Modify an File-blocking profiles.\n", + "operationId": "put-sse-config-v1-file-blocking-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/file-blocking-profiles" + } + } + }, + "description": "The File-blocking profiles you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an File-blocking profiles", + "tags": [ + "FileBlockingProfiles" + ] + } + }, + "/sse/config/v1/hip-objects": { + "get": { + "description": "Get Hip objects.\n", + "operationId": "get-sse-config-v1-hip-objects", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-objects" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of hip objects" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List hip objects", + "tags": [ + "HIPObjects" + ] + }, + "post": { + "description": "Create a hip object.\n", + "operationId": "post-sse-config-v1-hip-objects", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-objects" + } + } + }, + "description": "The hip object you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a hip object", + "tags": [ + "HIPObjects" + ] + } + }, + "/sse/config/v1/hip-objects/{id}": { + "delete": { + "description": "Delete a hip object.\n", + "operationId": "delete-sse-config-v1-hip-objects-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a hip object", + "tags": [ + "HIPObjects" + ] + }, + "get": { + "description": "Get a [HIP object](https://docs.paloaltonetworks.com/network-security/security-policy/objects/hip-objects) by ID.\n", + "operationId": "get-sse-config-v1-hip-objects-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-objects" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the hip object by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a HIP object by ID", + "tags": [ + "HIPObjects" + ] + }, + "put": { + "description": "Modify a hip object.\n", + "operationId": "put-sse-config-v1-hip-objects-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-objects" + } + } + }, + "description": "The hip object you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a hip object", + "tags": [ + "HIPObjects" + ] + } + }, + "/sse/config/v1/hip-profiles": { + "get": { + "description": "Get Hip profiles.\n", + "operationId": "get-sse-config-v1-hip-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of hip profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List hip profiles", + "tags": [ + "HIPProfiles" + ] + }, + "post": { + "description": "Create a hip profile.\n", + "operationId": "post-sse-config-v1-hip-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-profiles" + } + } + }, + "description": "The hip profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a hip profile", + "tags": [ + "HIPProfiles" + ] + } + }, + "/sse/config/v1/hip-profiles/{id}": { + "delete": { + "description": "Delete a hip profile.\n", + "operationId": "delete-sse-config-v1-hip-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a hip profile", + "tags": [ + "HIPProfiles" + ] + }, + "get": { + "description": "Get a [HIP profile](https://docs.paloaltonetworks.com/network-security/security-policy/objects/hip-profiles) by ID.\n", + "operationId": "get-sse-config-v1-hip-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the hip profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a HIP profile by ID", + "tags": [ + "HIPProfiles" + ] + }, + "put": { + "description": "Modify a hip profile.\n", + "operationId": "put-sse-config-v1-hip-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-profiles" + } + } + }, + "description": "The hip profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a hip profile", + "tags": [ + "HIPProfiles" + ] + } + }, + "/sse/config/v1/http-header-profiles": { + "get": { + "description": "Retrieve all HTTP header profiles.", + "operationId": "get-sse-config-v1-http-header-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/http-header-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of http header profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List HTTP header profiles", + "tags": [ + "HTTPHeaderProfiles" + ] + }, + "post": { + "description": "Create a HTTP header profile.", + "operationId": "post-sse-config-v1-http-header-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/http-header-profiles" + } + } + }, + "description": "The http header profiles you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a HTTP header profile", + "tags": [ + "HTTPHeaderProfiles" + ] + } + }, + "/sse/config/v1/http-header-profiles/{id}": { + "delete": { + "description": "Delete a http header profiles.\n", + "operationId": "delete-sse-config-v1-http-header-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a http header profiles", + "tags": [ + "HTTPHeaderProfiles" + ] + }, + "get": { + "description": "Get a HTTP header profile by ID.", + "operationId": "get-sse-config-v1-http-header-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/http-header-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the http header profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a HTTP header profile by ID", + "tags": [ + "HTTPHeaderProfiles" + ] + }, + "put": { + "description": "Modify a http header profiles.\n", + "operationId": "put-sse-config-v1-http-header-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/http-header-profiles" + } + } + }, + "description": "The http header profiles you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a http header profiles", + "tags": [ + "HTTPHeaderProfiles" + ] + } + }, + "/sse/config/v1/ike-crypto-profiles": { + "get": { + "description": "Retrieve IKE crypto profiles.", + "operationId": "get-sse-config-v1-ike-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-crypto-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ike crypto profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IKE crypto profiles", + "tags": [ + "IKECryptoProfiles" + ] + }, + "post": { + "description": "Create an IKE crypto profile.", + "operationId": "post-sse-config-v1-ike-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-crypto-profiles" + } + } + }, + "description": "The ike crypto profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IKE crypto profiles", + "tags": [ + "IKECryptoProfiles" + ] + } + }, + "/sse/config/v1/ike-crypto-profiles/{id}": { + "delete": { + "description": "Delete a ike crypto profile.\n", + "operationId": "delete-sse-config-v1-ike-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ike crypto profile.", + "tags": [ + "IKECryptoProfiles" + ] + }, + "get": { + "description": "Get an IKE crypto profile.", + "operationId": "get-sse-config-v1-ike-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-crypto-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ike crypto profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IKE crypto profile", + "tags": [ + "IKECryptoProfiles" + ] + }, + "put": { + "description": "Modify a ike crypto profile.\n", + "operationId": "put-sse-config-v1-ike-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-crypto-profiles" + } + } + }, + "description": "The ike crypto profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ike crypto profile.", + "tags": [ + "IKECryptoProfiles" + ] + } + }, + "/sse/config/v1/ike-gateways": { + "get": { + "description": "Retrieve IKE gateway.", + "operationId": "get-sse-config-v1-ike-gateways", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-gateways" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ike gateways" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IKE gateways", + "tags": [ + "IKEGateways" + ] + }, + "post": { + "description": "Create an IKE gateway.", + "operationId": "post-sse-config-v1-ike-gateways", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-gateways" + } + } + }, + "description": "The ike gateway you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IKE gateways", + "tags": [ + "IKEGateways" + ] + } + }, + "/sse/config/v1/ike-gateways/{id}": { + "delete": { + "description": "Delete a ike gateway.\n", + "operationId": "delete-sse-config-v1-ike-gateways-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ike gateway.", + "tags": [ + "IKEGateways" + ] + }, + "get": { + "description": "Get an IKE gateway.", + "operationId": "get-sse-config-v1-ike-gateways-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-gateways" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ike gateway by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IKE gateway", + "tags": [ + "IKEGateways" + ] + }, + "put": { + "description": "Modify a ike gateway.\n", + "operationId": "put-sse-config-v1-ike-gateways-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-gateways" + } + } + }, + "description": "The ike gateway you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ike gateway.", + "tags": [ + "IKEGateways" + ] + } + }, + "/sse/config/v1/internal-dns-servers": { + "get": { + "description": "List all internal DNS servers.", + "operationId": "get-sse-config-v1-internal-dns-servers", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/internal-dns-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the internal dns server by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List internal DNS servers", + "tags": [ + "InternalDNSServers" + ] + }, + "post": { + "description": "Create an internal DNS server.", + "operationId": "post-sse-config-v1-internal-dns-servers", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/internal-dns-servers" + } + } + }, + "description": "The internal dns server you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + } + }, + "/sse/config/v1/internal-dns-servers/{id}": { + "delete": { + "description": "Delete an internal DNS server.", + "operationId": "delete-sse-config-v1-internal-dns-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + }, + "get": { + "description": "Get an internal DNS server.", + "operationId": "get-sse-config-v1-internal-dns-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/internal-dns-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the internal dns server by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + }, + "put": { + "description": "Edit an internal DNS server.", + "operationId": "put-sse-config-v1-internal-dns-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/internal-dns-servers" + } + } + }, + "description": "The internal dns server you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + } + }, + "/sse/config/v1/ipsec-crypto-profiles": { + "get": { + "description": "Retrieve IPSec crypto profiles.", + "operationId": "get-sse-config-v1-ipsec-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ipsec crypto profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IPSec crypto profiles", + "tags": [ + "IPSecCryptoProfiles" + ] + }, + "post": { + "description": "Create an IPSec crypto profile.", + "operationId": "post-sse-config-v1-ipsec-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + } + } + }, + "description": "The ipsec crypto profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IPSec crypto profiles", + "tags": [ + "IPSecCryptoProfiles" + ] + } + }, + "/sse/config/v1/ipsec-crypto-profiles/{id}": { + "delete": { + "description": "Delete a ipsec crypto profile.\n", + "operationId": "delete-sse-config-v1-ipsec-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ipsec crypto profile.", + "tags": [ + "IPSecCryptoProfiles" + ] + }, + "get": { + "description": "Get an IPSec crypto profile.", + "operationId": "get-sse-config-v1-ipsec-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ipsec crypto profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IPSec crypto profile", + "tags": [ + "IPSecCryptoProfiles" + ] + }, + "put": { + "description": "Modify a ipsec crypto profile.\n", + "operationId": "put-sse-config-v1-ipsec-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + } + } + }, + "description": "The ipsec crypto profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ipsec crypto profile.", + "tags": [ + "IPSecCryptoProfiles" + ] + } + }, + "/sse/config/v1/ipsec-tunnels": { + "get": { + "description": "Retrieve IPSec tunnels.", + "operationId": "get-sse-config-v1-ipsec-tunnels", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-tunnels" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ipsec tunnels" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IPSec tunnels", + "tags": [ + "IPSecTunnels" + ] + }, + "post": { + "description": "Create an IPSec tunnel.", + "operationId": "post-sse-config-v1-ipsec-tunnels", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-tunnels" + } + } + }, + "description": "The ipsec tunnel you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IPSec tunnels", + "tags": [ + "IPSecTunnels" + ] + } + }, + "/sse/config/v1/ipsec-tunnels/{id}": { + "delete": { + "description": "Delete a ipsec tunnel.\n", + "operationId": "delete-sse-config-v1-ipsec-tunnels-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ipsec tunnel.", + "tags": [ + "IPSecTunnels" + ] + }, + "get": { + "description": "Get an IPSec tunnel.", + "operationId": "get-sse-config-v1-ipsec-tunnels-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-tunnels" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ipsec tunnel by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IPSec tunnel", + "tags": [ + "IPSecTunnels" + ] + }, + "put": { + "description": "Modify a ipsec tunnel.\n", + "operationId": "put-sse-config-v1-ipsec-tunnels-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-tunnels" + } + } + }, + "description": "The ipsec tunnel you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ipsec tunnel.", + "tags": [ + "IPSecTunnels" + ] + } + }, + "/sse/config/v1/jobs": { + "get": { + "description": "Retrieves the Prisma Access \n[configuration jobs](https://docs.paloaltonetworks.com/prisma/prisma-access/prisma-access-cloud-managed-admin/administer-prisma-access/view-the-prisma-access-jobs.html) \nhistory.\n", + "operationId": "get-sse-config-v1-jobs", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/jobs" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of jobs" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List configuration jobs", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/jobs/{id}": { + "get": { + "description": "Retrieves a Prisma Access \n[configuration job](https://docs.paloaltonetworks.com/prisma/prisma-access/prisma-access-cloud-managed-admin/administer-prisma-access/view-the-prisma-access-jobs.html) using its ID.\nhistory.\n", + "operationId": "get-sse-config-v1-jobs-id", + "parameters": [ + { + "$ref": "#/components/parameters/jobid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/jobs" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the job by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List a configuration job by ID", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/kerberos-server-profiles": { + "get": { + "description": "Retrieve a list of all Kerberos server profiles.\n", + "operationId": "get-sse-config-v1-kerberos-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/kerberos-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of kerberos server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all Kerberos server profiles", + "tags": [ + "KerberosServerProfiles" + ] + }, + "post": { + "description": "Create a Kerberos server profile.\n", + "operationId": "post-sse-config-v1-kerberos-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/kerberos-server-profiles" + } + } + }, + "description": "The kerberos server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a Kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + } + }, + "/sse/config/v1/kerberos-server-profiles/{id}": { + "delete": { + "description": "Delete a kerberos server profile.\n", + "operationId": "delete-sse-config-v1-kerberos-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + }, + "get": { + "description": "Get a Kerberos server profile by ID.\n", + "operationId": "get-sse-config-v1-kerberos-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/kerberos-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get kerberos server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a Kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + }, + "put": { + "description": "Modify a kerberos server profile.\n", + "operationId": "put-sse-config-v1-kerberos-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/kerberos-server-profiles" + } + } + }, + "description": "The kerberos server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + } + }, + "/sse/config/v1/ldap-server-profiles": { + "get": { + "description": "Retrieve a list of all LDAP server profiles.\n", + "operationId": "get-sse-config-v1-ldap-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ldap-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ldap server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all LDAP server profiles", + "tags": [ + "LDAPServerProfiles" + ] + }, + "post": { + "description": "Create an LDAP server profile.\n", + "operationId": "post-sse-config-v1-ldap-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ldap-server-profiles" + } + } + }, + "description": "The ldap server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an LDAP server profile", + "tags": [ + "LDAPServerProfiles" + ] + } + }, + "/sse/config/v1/ldap-server-profiles/{id}": { + "delete": { + "description": "Delete a ldap server profile.\n", + "operationId": "delete-sse-config-v1-ldap-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ldap server profile", + "tags": [ + "LDAPServerProfiles" + ] + }, + "get": { + "description": "Get an LDAP server profile by ID.\n", + "operationId": "get-sse-config-v1-ldap-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ldap-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get ldap server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an LDAP server profile", + "tags": [ + "LDAPServerProfiles" + ] + }, + "put": { + "description": "Modify a ldap server profile.\n", + "operationId": "put-sse-config-v1-ldap-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ldap-server-profiles" + } + } + }, + "description": "The ldap server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ldap server profile", + "tags": [ + "LDAPServerProfiles" + ] + } + }, + "/sse/config/v1/license-types": { + "get": { + "description": "Show your Prisma Access licenses.\n", + "operationId": "get-sse-config-v1-license-types", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/license-types" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of license types" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List licenses", + "tags": [ + "LicenseTypes" + ] + } + }, + "/sse/config/v1/local-user-groups": { + "get": { + "description": "List all local user groups.", + "operationId": "get-sse-config-v1-local-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-user-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of local user groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List local user groups", + "tags": [ + "LocalUserGroups" + ] + }, + "post": { + "description": "Create local user groups.", + "operationId": "post-sse-config-v1-local-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-user-groups" + } + } + }, + "description": "The local user you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create local user groups", + "tags": [ + "LocalUserGroups" + ] + } + }, + "/sse/config/v1/local-user-groups/{id}": { + "delete": { + "description": "Delete a local user group.", + "operationId": "delete-sse-config-v1-local-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a local user group", + "tags": [ + "LocalUserGroups" + ] + }, + "get": { + "description": "Get a local user group.", + "operationId": "get-sse-config-v1-local-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-user-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get local user group by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a local user group", + "tags": [ + "LocalUserGroups" + ] + }, + "put": { + "description": "Edit a local user group.", + "operationId": "put-sse-config-v1-local-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-user-groups" + } + } + }, + "description": "The local user you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a local user group", + "tags": [ + "LocalUserGroups" + ] + } + }, + "/sse/config/v1/local-users": { + "get": { + "description": "Retrieve a list of all local users.\n", + "operationId": "get-sse-config-v1-local-users", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-users" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of local users" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all local users", + "tags": [ + "LocalUsers" + ] + }, + "post": { + "description": "Create a local user.\n", + "operationId": "post-sse-config-v1-local-users", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-users" + } + } + }, + "description": "The local user you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a local user", + "tags": [ + "LocalUsers" + ] + } + }, + "/sse/config/v1/local-users/{id}": { + "delete": { + "description": "Delete a local user.\n", + "operationId": "delete-sse-config-v1-local-users-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a local user", + "tags": [ + "LocalUsers" + ] + }, + "get": { + "description": "Get a local user by ID.\n", + "operationId": "get-sse-config-v1-local-users-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-users" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get local user by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a local user", + "tags": [ + "LocalUsers" + ] + }, + "put": { + "description": "Modify a local user.\n", + "operationId": "put-sse-config-v1-local-users-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-users" + } + } + }, + "description": "The local user you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a local user", + "tags": [ + "LocalUsers" + ] + } + }, + "/sse/config/v1/locations": { + "get": { + "description": "Retrieve Prisma Access locations.\n", + "operationId": "get-sse-config-v1-locations", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/locations" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of locations" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List locations", + "tags": [ + "Locations" + ] + } + }, + "/sse/config/v1/mfa-servers": { + "get": { + "description": "Retrieve a list of all multi-factor authentication servers.\n", + "operationId": "get-sse-config-v1-mfa-servers", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mfa-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get mfa server" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all MFA servers", + "tags": [ + "MFAServers" + ] + }, + "post": { + "description": "Create a multi-factor authentication server.\n", + "operationId": "post-sse-config-v1-mfa-servers", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mfa-servers" + } + } + }, + "description": "The mfa server you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a MFA server", + "tags": [ + "MFAServers" + ] + } + }, + "/sse/config/v1/mfa-servers/{id}": { + "delete": { + "description": "Delete a mfa server.\n", + "operationId": "delete-sse-config-v1-mfa-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a mfa server", + "tags": [ + "MFAServers" + ] + }, + "get": { + "description": "Get a multi-factor authenticatoin server by ID.\n", + "operationId": "get-sse-config-v1-mfa-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mfa-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get authentication sequence by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a MFA server", + "tags": [ + "MFAServers" + ] + }, + "put": { + "description": "Modify a mfa server.\n", + "operationId": "put-sse-config-v1-mfa-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mfa-servers" + } + } + }, + "description": "The mfa server you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a mfa server", + "tags": [ + "MFAServers" + ] + } + }, + "/sse/config/v1/mobile-agent/agent-profiles": { + "delete": { + "description": "Delete GlobalProtect agent profiles.\n", + "operationId": "delete-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete agent profiles", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "Retrieve GlobalProtect agent profiles.\n", + "operationId": "get-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/agent-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Get App Settings for GP" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get agent profiles", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create GlobalProtect agent profiles.\n", + "operationId": "post-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/agent-profiles" + } + } + }, + "description": "The app settings for Global Protect you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create agent profiles", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Change GlobalProtect agent profiles.\n", + "operationId": "put-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/agent-profiles" + } + } + }, + "description": "The app settings to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Change agent profiles", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/agent-versions": { + "get": { + "description": "Retrieves a list of available GlobalProtect agent versions.\n", + "operationId": "get-sse-config-v1-mobile-agent-agent-versions", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "type": "string" + }, + "type": "array" + } + } + }, + "description": "Show list of available agent versions under Global Protect (Mobile Agent)" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get available agent versions", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/authentication-settings": { + "delete": { + "description": "Delete GlobalProtect authentication settings.\n", + "operationId": "delete-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete authentication settings\n", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "Get the authentication settings configured for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-settings" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of GlobalProtect authentication settings.\n" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get authentication settings\n", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create authentication settings for GlobalProtect.\n", + "operationId": "post-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-settings" + } + } + }, + "description": "The authentication settings you want to create for GlobalProtect.\n" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create authentication settings\n", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit authentication settings for GlobalProtect.\n", + "operationId": "put-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-settings" + } + } + }, + "description": "The authentication settings you want to edit.\n" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit authentication settings\n", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/enable": { + "get": { + "description": "Indicates whether mobile agent (GlobalProtect) is enabled for your configuration.\n", + "operationId": "get-sse-config-v1-mobile-agent-enable", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "properties": { + "enabled": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + } + } + }, + "description": "To check if current mobile agent is enabled" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Indicates whether mobile agent is enabled", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Enable mobile agent (GlobalProtect).\n", + "operationId": "post-sse-config-v1-mobile-agent-enable", + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Enable mobile agent (GlobalProtect)", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/global-settings": { + "get": { + "description": "Show the global settings configured for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-global-settings", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-global-settings" + } + } + }, + "description": "List of GlobalProtect global settings.\n" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get global settings\n", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit the global settings configured for GlobalProtect.\n", + "operationId": "put-sse-config-v1-mobile-agent-global-settings", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-global-settings" + } + } + }, + "description": "Edit GlobalProtect global settings.\n" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit global settings\n", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/infrastructure-settings": { + "delete": { + "description": "Delete GlobalProtect infrastructure settings.\n", + "operationId": "delete-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete infrastructure settings", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "List infrastructure settings for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mobile-agent-infrastructure-settings" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of infrastructure settings under Global Protect" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Show infrastructure settings\n", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create GlobalProtect infrastructure settings.\n", + "operationId": "post-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-infrastructure-settings" + } + } + }, + "description": "The GlobalProtect infrastructure settings that you want to create.\n" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create infrastructure settings", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit your GlobalProtect infrastructure settings.\n", + "operationId": "put-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-infrastructure-settings" + } + } + }, + "description": "The GlobalProtect infrastructure settings that you want to edit.\n" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit GlobalProtect infrastructure settings", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/locations": { + "get": { + "description": "Get Prisma Access locations configured for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-locations", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mobile-agent-locations" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of GlobalProtect Prisma Access locations.\n" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get Prisma Access locations", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit Prisma Access locations configured for GlobalProtect.\n", + "operationId": "put-sse-config-v1-mobile-agent-locations", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-locations" + } + } + }, + "description": "The locations to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit Prisma Access locations", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/tunnel-profiles": { + "delete": { + "description": "Delete GlobalProtect tunnel profiles.\n", + "operationId": "delete-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete tunnel profiles", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "Retrieve GlobalProtect tunnel profiles.\n", + "operationId": "get-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tunnel-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Get tunnel settings for GP" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get tunnel profiles", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create GlobalProtect tunnel profiles.\n", + "operationId": "post-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tunnel-profiles" + } + } + }, + "description": "The tunnel settings for Global Protect you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create tunnel profiles", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Update GlobalProtect tunnel profiles.\n", + "operationId": "put-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tunnel-profiles" + } + } + }, + "description": "The tunnel settings to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Update tunnel profiles", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/user-authentication:move": { + "post": { + "description": "Move authentication settings.\n", + "operationId": "post-sse-config-v1-mobile-agent-user-authentication:move", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + }, + { + "$ref": "#/components/parameters/name" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/move-auth-settings" + } + } + }, + "description": "The authentication settings for Global Protect you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move authentication settings\n", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/ocsp-responder": { + "get": { + "description": "Retrieve OCSP responders.", + "operationId": "get-sse-config-v1-ocsp-responder", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ocsp-responder" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of OCSP responders" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List OCSP responders", + "tags": [ + "OCSPResponder" + ] + }, + "post": { + "description": "Create an OCSP responder.", + "operationId": "post-sse-config-v1-ocsp-responder", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ocsp-responder" + } + } + }, + "description": "The OCSP responder you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create OCSP responders", + "tags": [ + "OCSPResponder" + ] + } + }, + "/sse/config/v1/ocsp-responder/{id}": { + "delete": { + "description": "Delete an OCSP responder.", + "operationId": "delete-sse-config-v1-ocsp-responder-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an OCSP responder.", + "tags": [ + "OCSPResponder" + ] + }, + "get": { + "description": "Retrieve OCSP responders by ID.", + "operationId": "get-sse-config-v1-ocsp-responder-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ocsp-responder" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ocsp responder by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an OCSP responder", + "tags": [ + "OCSPResponder" + ] + }, + "put": { + "description": "Modify a OCSP responder.\n", + "operationId": "put-sse-config-v1-ocsp-responder-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ocsp-responder" + } + } + }, + "description": "The OCSP responder you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an OCSP responder.", + "tags": [ + "OCSPResponder" + ] + } + }, + "/sse/config/v1/profile-groups": { + "get": { + "description": "Retrieve all [profile groups](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-groups).\n", + "operationId": "get-sse-config-v1-profile-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/profile-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of profile groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List profile groups", + "tags": [ + "ProfileGroups" + ] + }, + "post": { + "description": "Create profile groups.\n", + "operationId": "post-sse-config-v1-profile-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/profile-groups" + } + } + }, + "description": "The profile group you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create profile groups", + "tags": [ + "ProfileGroups" + ] + } + }, + "/sse/config/v1/profile-groups/{id}": { + "delete": { + "description": "Delete a profile group.\n", + "operationId": "delete-sse-config-v1-profile-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a profile group", + "tags": [ + "ProfileGroups" + ] + }, + "get": { + "description": "Get a [profile group](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-groups).\n", + "operationId": "get-sse-config-v1-profile-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/profile-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the profile group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a profile group", + "tags": [ + "ProfileGroups" + ] + }, + "put": { + "description": "Modify a profile group.\n", + "operationId": "put-sse-config-v1-profile-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/profile-groups" + } + } + }, + "description": "The profile group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a profile group", + "tags": [ + "ProfileGroups" + ] + } + }, + "/sse/config/v1/qos-policy-rules": { + "get": { + "description": "Retrieve all QoS policy rules.", + "operationId": "get-sse-config-v1-qos-policy-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/position" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-policy-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of qos policy rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List QoS policy rules", + "tags": [ + "QoSPolicyRules" + ] + }, + "post": { + "description": "Create a QoS policy rule.", + "operationId": "post-sse-config-v1-qos-policy-rules", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/position" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-policy-rules" + } + } + }, + "description": "The qos policy rule you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a QoS policy rule", + "tags": [ + "QoSPolicyRules" + ] + } + }, + "/sse/config/v1/qos-policy-rules/{id}": { + "delete": { + "description": "Delete a qos policy rule.\n", + "operationId": "delete-sse-config-v1-qos-policy-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a qos policy rule.", + "tags": [ + "QoSPolicyRules" + ] + }, + "get": { + "description": "Get a QoS policy rule by ID.", + "operationId": "get-sse-config-v1-qos-policy-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-policy-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the qos policy rule by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a QoS policy rule by ID", + "tags": [ + "QoSPolicyRules" + ] + }, + "put": { + "description": "Modify a qos policy rule.\n", + "operationId": "put-sse-config-v1-qos-policy-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-policy-rules" + } + } + }, + "description": "The qos policy rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a qos policy rule.", + "tags": [ + "QoSPolicyRules" + ] + } + }, + "/sse/config/v1/qos-policy-rules/{id}:move": { + "post": { + "description": "Move a qos policy rule.\n", + "operationId": "post-sse-config-v1-qos-policy-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The qos policy rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move a qos policy rule", + "tags": [ + "QoSPolicyRules" + ] + } + }, + "/sse/config/v1/qos-profiles": { + "get": { + "description": "Retrieve QoS profiles.", + "operationId": "get-sse-config-v1-qos-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of qos profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List QoS profiles", + "tags": [ + "QoSProfiles" + ] + }, + "post": { + "description": "Create a QoS profile.", + "operationId": "post-sse-config-v1-qos-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-profiles" + } + } + }, + "description": "The qos profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a QoS profile", + "tags": [ + "QoSProfiles" + ] + } + }, + "/sse/config/v1/qos-profiles/{id}": { + "delete": { + "description": "Delete a QoS profile.", + "operationId": "delete-sse-config-v1-qos-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a QoS profile", + "tags": [ + "QoSProfiles" + ] + }, + "get": { + "description": "Get a QoS profile.", + "operationId": "get-sse-config-v1-qos-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the qos profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a QoS profile", + "tags": [ + "QoSProfiles" + ] + }, + "put": { + "description": "Edit a QoS profile.", + "operationId": "put-sse-config-v1-qos-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-profiles" + } + } + }, + "description": "The qos profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a QoS profile", + "tags": [ + "QoSProfiles" + ] + } + }, + "/sse/config/v1/quarantined-devices": { + "delete": { + "description": "Remove a device from the [quarantined list](https://docs.paloaltonetworks.com/network-security/security-policy/objects/quarantine-device-lists).", + "operationId": "delete-sse-config-v1-quarantined-devices", + "parameters": [ + { + "$ref": "#/components/parameters/host_id_required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete quarantined devices", + "tags": [ + "QuarantinedDevices" + ] + }, + "get": { + "description": "Retrieve a list of [quarantined devices](https://docs.paloaltonetworks.com/network-security/security-policy/objects/quarantine-device-lists).", + "operationId": "get-sse-config-v1-quarantined-devices", + "parameters": [ + { + "$ref": "#/components/parameters/host_id" + }, + { + "$ref": "#/components/parameters/serial_number" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-quarantined-devices" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of quarantined devices" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List quarantined devices", + "tags": [ + "QuarantinedDevices" + ] + }, + "post": { + "description": "Quarantine a device", + "operationId": "post-sse-config-v1-quarantined-devices", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-quarantined-devices" + } + } + }, + "description": "The quarantined device you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Quarantine devices", + "tags": [ + "QuarantinedDevices" + ] + } + }, + "/sse/config/v1/radius-server-profiles": { + "get": { + "description": "Retrieve a list of all Radius server profiles.\n", + "operationId": "get-sse-config-v1-radius-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/radius-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of radius server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all Radius server profiles", + "tags": [ + "RadiusServerProfiles" + ] + }, + "post": { + "description": "Create a Radius server profile.\n", + "operationId": "post-sse-config-v1-radius-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/radius-server-profiles" + } + } + }, + "description": "The radius server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a Radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + } + }, + "/sse/config/v1/radius-server-profiles/{id}": { + "delete": { + "description": "Delete a radius server profile.\n", + "operationId": "delete-sse-config-v1-radius-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + }, + "get": { + "description": "Get a Radius server profile by ID.\n", + "operationId": "get-sse-config-v1-radius-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/radius-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get radius server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a Radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + }, + "put": { + "description": "Modify a radius server profile.\n", + "operationId": "put-sse-config-v1-radius-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/radius-server-profiles" + } + } + }, + "description": "The radius server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + } + }, + "/sse/config/v1/regions": { + "get": { + "description": "Get regions.\n", + "operationId": "get-sse-config-v1-regions", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-regions" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of regions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List regions", + "tags": [ + "Regions" + ] + }, + "post": { + "description": "Create a region.\n", + "operationId": "post-sse-config-v1-regions", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-regions" + } + } + }, + "description": "The region you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a region", + "tags": [ + "Regions" + ] + } + }, + "/sse/config/v1/regions/{id}": { + "delete": { + "description": "Delete a region.\n", + "operationId": "delete-sse-config-v1-regions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a region", + "tags": [ + "Regions" + ] + }, + "get": { + "description": "Get a [region](https://docs.paloaltonetworks.com/network-security/security-policy/objects/regions) by ID.\n", + "operationId": "get-sse-config-v1-regions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-regions" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the region by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a region by ID", + "tags": [ + "Regions" + ] + }, + "put": { + "description": "Modify a region.\n", + "operationId": "put-sse-config-v1-regions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-regions" + } + } + }, + "description": "The region you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a region", + "tags": [ + "Regions" + ] + } + }, + "/sse/config/v1/remote-networks": { + "get": { + "description": "List all remote networks.", + "operationId": "get-sse-config-v1-remote-networks", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/remote-networks" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of remote networks" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List remote networks", + "tags": [ + "RemoteNetworks" + ] + }, + "post": { + "description": "Create a remote network.", + "operationId": "post-sse-config-v1-remote-networks", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/remote-networks" + } + } + }, + "description": "The remote network you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create remote networks", + "tags": [ + "RemoteNetworks" + ] + } + }, + "/sse/config/v1/remote-networks/{id}": { + "delete": { + "description": "Delete a remote network.", + "operationId": "delete-sse-config-v1-remote-networks-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a remote network", + "tags": [ + "RemoteNetworks" + ] + }, + "get": { + "description": "Get a remote network.", + "operationId": "get-sse-config-v1-remote-networks-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/remote-networks" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the remote network by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a remote network", + "tags": [ + "RemoteNetworks" + ] + }, + "put": { + "description": "Edit a remote network.", + "operationId": "put-sse-config-v1-remote-networks-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/remote-networks" + } + } + }, + "description": "The remote network you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a remote network", + "tags": [ + "RemoteNetworks" + ] + } + }, + "/sse/config/v1/saml-server-profiles": { + "get": { + "description": "Retrieve a list of all SAML server profiles.\n", + "operationId": "get-sse-config-v1-saml-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/saml-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of saml server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all SAML server profiles", + "tags": [ + "SAMLServerProfiles" + ] + }, + "post": { + "description": "Create a SAML server profile.\n", + "operationId": "post-sse-config-v1-saml-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/saml-server-profiles" + } + } + }, + "description": "The saml server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a SAML server profile", + "tags": [ + "SAMLServerProfiles" + ] + } + }, + "/sse/config/v1/saml-server-profiles/{id}": { + "delete": { + "description": "Delete a saml server profile.\n", + "operationId": "delete-sse-config-v1-saml-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a saml server profile", + "tags": [ + "SAMLServerProfiles" + ] + }, + "get": { + "description": "Get a SAML server profile by ID.\n", + "operationId": "get-sse-config-v1-saml-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/saml-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get saml server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a SAML server profile", + "tags": [ + "SAMLServerProfiles" + ] + }, + "put": { + "description": "Modify a saml server profile.\n", + "operationId": "put-sse-config-v1-saml-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/saml-server-profiles" + } + } + }, + "description": "The saml server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a saml server profile", + "tags": [ + "SAMLServerProfiles" + ] + } + }, + "/sse/config/v1/scep-profiles": { + "get": { + "description": "List all SCEP profiles.", + "operationId": "get-sse-config-v1-scep-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/scep-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of SCEP profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List SCEP profiles", + "tags": [ + "SCEPProfiles" + ] + }, + "post": { + "description": "Create an SCEP profile.", + "operationId": "post-sse-config-v1-scep-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/type" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/scep-profiles" + } + } + }, + "description": "The SCEP profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create SCEP profiles", + "tags": [ + "SCEPProfiles" + ] + } + }, + "/sse/config/v1/scep-profiles/{id}": { + "delete": { + "description": "Delete a SCEP profile.\n", + "operationId": "delete-sse-config-v1-scep-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a SCEP profile.", + "tags": [ + "SCEPProfiles" + ] + }, + "get": { + "description": "Get an SCEP profile.", + "operationId": "get-sse-config-v1-scep-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/scep-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the scep profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an SCEP profile", + "tags": [ + "SCEPProfiles" + ] + }, + "put": { + "description": "Modify a SCEP profile.\n", + "operationId": "put-sse-config-v1-scep-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/scep-profiles" + } + } + }, + "description": "The SCEP profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a SCEP profile.", + "tags": [ + "SCEPProfiles" + ] + } + }, + "/sse/config/v1/schedules": { + "get": { + "description": "Get schedules.\n", + "operationId": "get-sse-config-v1-schedules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-schedules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of schedules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List schedules", + "tags": [ + "Schedules" + ] + }, + "post": { + "description": "Create a schedule.\n", + "operationId": "post-sse-config-v1-schedules", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-schedules" + } + } + }, + "description": "The hip profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a schedule", + "tags": [ + "Schedules" + ] + } + }, + "/sse/config/v1/schedules/{id}": { + "delete": { + "description": "Delete a schedule.\n", + "operationId": "delete-sse-config-v1-schedules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a schedule", + "tags": [ + "Schedules" + ] + }, + "get": { + "description": "Get a [schedule](https://docs.paloaltonetworks.com/network-security/security-policy/objects/schedules) by ID.\n", + "operationId": "get-sse-config-v1-schedules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-schedules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the schedule by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a schedule by ID", + "tags": [ + "Schedules" + ] + }, + "put": { + "description": "Modify a schedule.\n", + "operationId": "put-sse-config-v1-schedules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-schedules" + } + } + }, + "description": "The schedule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a schedule", + "tags": [ + "Schedules" + ] + } + }, + "/sse/config/v1/security-rules": { + "get": { + "description": "List [security rules](https://docs.paloaltonetworks.com/network-security/security-policy/security-rules).\n", + "operationId": "get-sse-config-v1-security-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/security-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of security rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List security rules", + "tags": [ + "SecurityRules" + ] + }, + "post": { + "description": "Create a security rule.\n", + "operationId": "post-sse-config-v1-security-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/security-rules" + } + } + }, + "description": "The security rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a security rule", + "tags": [ + "SecurityRules" + ] + } + }, + "/sse/config/v1/security-rules/{id}": { + "delete": { + "description": "Delete a security rule.\n", + "operationId": "delete-sse-config-v1-security-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a security rule", + "tags": [ + "SecurityRules" + ] + }, + "get": { + "description": "Get a [security rule](https://docs.paloaltonetworks.com/network-security/security-policy/security-rules).\n", + "operationId": "get-sse-config-v1-security-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/security-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get security rule by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a security rule", + "tags": [ + "SecurityRules" + ] + }, + "put": { + "description": "Modify a security rule.\n", + "operationId": "put-sse-config-v1-security-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/security-rules" + } + } + }, + "description": "The security rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a security rule", + "tags": [ + "SecurityRules" + ] + } + }, + "/sse/config/v1/security-rules/{id}:move": { + "post": { + "description": "Move a security rule.\n", + "operationId": "post-sse-config-v1-security-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The security rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move a security rule", + "tags": [ + "SecurityRules" + ] + } + }, + "/sse/config/v1/service-connection-groups": { + "get": { + "description": "List all service connection groups.", + "operationId": "get-sse-config-v1-service-connection-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connection-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service connection groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service connection groups", + "tags": [ + "ServiceConnectionGroups" + ] + }, + "post": { + "description": "Create service connection groups.", + "operationId": "post-sse-config-v1-service-connection-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connection-groups" + } + } + }, + "description": "The service connection group you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create service connection groups", + "tags": [ + "ServiceConnectionGroups" + ] + } + }, + "/sse/config/v1/service-connection-groups/{id}": { + "delete": { + "description": "Delete a service connection group.", + "operationId": "delete-sse-config-v1-service-connection-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service connection group", + "tags": [ + "ServiceConnectionGroups" + ] + }, + "get": { + "description": "Get a service connection group.", + "operationId": "get-sse-config-v1-service-connection-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connection-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service connection group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service connection group", + "tags": [ + "ServiceConnectionGroups" + ] + }, + "put": { + "description": "Edit a service connection group.", + "operationId": "put-sse-config-v1-service-connection-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connection-groups" + } + } + }, + "description": "The service connection group you want to edit." + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service connection group", + "tags": [ + "ServiceConnectionGroups" + ] + } + }, + "/sse/config/v1/service-connections": { + "get": { + "description": "List all service connections.", + "operationId": "get-sse-config-v1-service-connections", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connections" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service connections" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service connections", + "tags": [ + "ServiceConnections" + ] + }, + "post": { + "description": "Create service connections.", + "operationId": "post-sse-config-v1-service-connections", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connections" + } + } + }, + "description": "The service connection you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create service connections", + "tags": [ + "ServiceConnections" + ] + } + }, + "/sse/config/v1/service-connections/{id}": { + "delete": { + "description": "Delete a service connection.", + "operationId": "delete-sse-config-v1-service-connections-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service connection", + "tags": [ + "ServiceConnections" + ] + }, + "get": { + "description": "Get a service connection.", + "operationId": "get-sse-config-v1-service-connections-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connections" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service connection by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service connection", + "tags": [ + "ServiceConnections" + ] + }, + "put": { + "description": "Edit a service connection.", + "operationId": "put-sse-config-v1-service-connections-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connections" + } + } + }, + "description": "The service connection you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service connection", + "tags": [ + "ServiceConnections" + ] + } + }, + "/sse/config/v1/service-groups": { + "get": { + "description": "Get service groups.\n", + "operationId": "get-sse-config-v1-service-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-service-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service groups", + "tags": [ + "ServiceGroups" + ] + }, + "post": { + "description": "Create a service group.\n", + "operationId": "post-sse-config-v1-service-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-service-groups" + } + } + }, + "description": "The service you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a service group", + "tags": [ + "ServiceGroups" + ] + } + }, + "/sse/config/v1/service-groups/{id}": { + "delete": { + "description": "Delete a service group.\n", + "operationId": "delete-sse-config-v1-service-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service group", + "tags": [ + "ServiceGroups" + ] + }, + "get": { + "description": "Get a [service group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/service-groups) by ID.\n", + "operationId": "get-sse-config-v1-service-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-service-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service group by ID", + "tags": [ + "ServiceGroups" + ] + }, + "put": { + "description": "Modify a service group.\n", + "operationId": "put-sse-config-v1-service-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-service-groups" + } + } + }, + "description": "The service object you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service group", + "tags": [ + "ServiceGroups" + ] + } + }, + "/sse/config/v1/services": { + "get": { + "description": "Get services.\n", + "operationId": "get-sse-config-v1-services", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-services" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of address groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List services", + "tags": [ + "Services" + ] + }, + "post": { + "description": "Create a service object.\n", + "operationId": "post-sse-config-v1-services", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-services" + } + } + }, + "description": "The service you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a service object", + "tags": [ + "Services" + ] + } + }, + "/sse/config/v1/services/{id}": { + "delete": { + "description": "Delete a service.\n", + "operationId": "delete-sse-config-v1-services-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service", + "tags": [ + "Services" + ] + }, + "get": { + "description": "Get a [service](https://docs.paloaltonetworks.com/network-security/security-policy/objects/services) by ID.\n", + "operationId": "get-sse-config-v1-services-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-services" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service by ID", + "tags": [ + "Services" + ] + }, + "put": { + "description": "Modify a service object.\n", + "operationId": "put-sse-config-v1-services-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-services" + } + } + }, + "description": "The service object you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service", + "tags": [ + "Services" + ] + } + }, + "/sse/config/v1/shared-infrastructure-settings": { + "get": { + "description": "List all infrastructure settings.", + "operationId": "get-sse-config-v1-shared-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/shared-infrastructure-settings" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of infrastructure settings under Shared folder" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all infrastructure settings", + "tags": [ + "InfrastructureSettings" + ] + }, + "put": { + "description": "Edit an infrastructure setting.", + "operationId": "put-sse-config-v1-shared-infrastructure-settings", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/edit-shared-infrastructure-settings" + } + } + }, + "description": "The infrastructure settings to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an infrastructure setting", + "tags": [ + "InfrastructureSettings" + ] + } + }, + "/sse/config/v1/snapshots": { + "get": { + "description": "Lists all Prisma Access\n[configuration snapshots](https://docs.paloaltonetworks.com/prisma/prisma-access/prisma-access-cloud-managed-admin/administer-prisma-access/configuration/config-snapshot.html).\n", + "operationId": "get-sse-config-v1-snapshots", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of config version snapshots" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List configuration snapshots", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/tacacs-server-profiles": { + "get": { + "description": "Retrieve a list of all TACACS server profiles.\n", + "operationId": "get-sse-config-v1-tacacs-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tacacs-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of tacacs server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all TACACS server profiles", + "tags": [ + "TACACSServerProfiles" + ] + }, + "post": { + "description": "Create a TACACS server profile.\n", + "operationId": "post-sse-config-v1-tacacs-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tacacs-server-profiles" + } + } + }, + "description": "The tacacs server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a TACACS server profile", + "tags": [ + "TACACSServerProfiles" + ] + } + }, + "/sse/config/v1/tacacs-server-profiles/{id}": { + "delete": { + "description": "Delete a tacacs server profile.\n", + "operationId": "delete-sse-config-v1-tacacs-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a tacacs server profile", + "tags": [ + "TACACSServerProfiles" + ] + }, + "get": { + "description": "Get a TACACS server profile by ID.\n", + "operationId": "get-sse-config-v1-tacacs-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tacacs-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get tacacs server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a TACACS server profile", + "tags": [ + "TACACSServerProfiles" + ] + }, + "put": { + "description": "Modify a tacacs server profile.\n", + "operationId": "put-sse-config-v1-tacacs-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tacacs-server-profiles" + } + } + }, + "description": "The tacacs server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a tacacs server profile", + "tags": [ + "TACACSServerProfiles" + ] + } + }, + "/sse/config/v1/tags": { + "get": { + "description": "Get tags.\n", + "operationId": "get-sse-config-v1-tags", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-tags" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of address groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List tags", + "tags": [ + "Tags" + ] + }, + "post": { + "description": "Create a tag.\n", + "operationId": "post-sse-config-v1-tags", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-tags" + } + } + }, + "description": "The tag you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a tag", + "tags": [ + "Tags" + ] + } + }, + "/sse/config/v1/tags/{id}": { + "delete": { + "description": "Delete a tag.\n", + "operationId": "delete-sse-config-v1-tags-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a tag", + "tags": [ + "Tags" + ] + }, + "get": { + "description": "Get a [tag](https://docs.paloaltonetworks.com/network-security/security-policy/objects/tags) by ID.\n", + "operationId": "get-sse-config-v1-tags-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-tags" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the tag by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a tag by ID", + "tags": [ + "Tags" + ] + }, + "put": { + "description": "Modify a tag.\n", + "operationId": "put-sse-config-v1-tags-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-tags" + } + } + }, + "description": "The tag you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a tag", + "tags": [ + "Tags" + ] + } + }, + "/sse/config/v1/tls-service-profiles": { + "get": { + "description": "List TLS service profiles.", + "operationId": "get-sse-config-v1-tls-service-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tls-service-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of tls service profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List TLS service profiles", + "tags": [ + "TLSServiceProfiles" + ] + }, + "post": { + "description": "Create a TLS service profile.", + "operationId": "post-sse-config-v1-tls-service-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tls-service-profiles" + } + } + }, + "description": "The tls service profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create TLS service profiles", + "tags": [ + "TLSServiceProfiles" + ] + } + }, + "/sse/config/v1/tls-service-profiles/{id}": { + "delete": { + "description": "Delete a tls service profile.\n", + "operationId": "delete-sse-config-v1-tls-service-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a tls service profile.", + "tags": [ + "TLSServiceProfiles" + ] + }, + "get": { + "description": "Get a TLS service profile.", + "operationId": "get-sse-config-v1-tls-service-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tls-service-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the tls service profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a TLS service profile", + "tags": [ + "TLSServiceProfiles" + ] + }, + "put": { + "description": "Modify a tls service profile.\n", + "operationId": "put-sse-config-v1-tls-service-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificate-profiles" + } + } + }, + "description": "The tls service profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a tls service profile.", + "tags": [ + "TLSServiceProfiles" + ] + } + }, + "/sse/config/v1/traffic-steering-rules": { + "get": { + "description": "List all service connections targeted by traffic steering rules.", + "operationId": "get-sse-config-v1-traffic-steering-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/traffic-steering-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service connections" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service connections", + "tags": [ + "TrafficSteeringRules" + ] + }, + "post": { + "description": "Create a traffic steering rule for a service connection.", + "operationId": "post-sse-config-v1-traffic-steering-rules", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/traffic-steering-rules" + } + } + }, + "description": "The service connection you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a service connection", + "tags": [ + "TrafficSteeringRules" + ] + } + }, + "/sse/config/v1/traffic-steering-rules/{id}": { + "delete": { + "description": "Delete a service connection.", + "operationId": "delete-sse-config-v1-traffic-steering-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service connection", + "tags": [ + "TrafficSteeringRules" + ] + }, + "get": { + "description": "Get a specific service connection targeted by the traffic steering rule.", + "operationId": "get-sse-config-v1-traffic-steering-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/traffic-steering-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service connection by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service connection", + "tags": [ + "TrafficSteeringRules" + ] + }, + "put": { + "description": "Edit the service connection targeted by the traffic steering rule.", + "operationId": "put-sse-config-v1-traffic-steering-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/traffic-steering-rules" + } + } + }, + "description": "The service connection you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service connection", + "tags": [ + "TrafficSteeringRules" + ] + } + }, + "/sse/config/v1/trusted-certificate-authorities": { + "get": { + "description": "List trusted certificate authorities.\n", + "operationId": "get-sse-config-v1-trusted-certificate-authorities", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/trusted-certificate-authorities" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of Trusted Certificate Authorities" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List trusted certificate authorities", + "tags": [ + "TrustedCertificateAuthorities" + ] + } + }, + "/sse/config/v1/url-access-profiles": { + "get": { + "description": "Retrieve all URL access profiles.", + "operationId": "get-sse-config-v1-url-access-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-access-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of URL Access profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List URL access profiles", + "tags": [ + "URLAccessProfiles" + ] + }, + "post": { + "description": "Create a URL access profile.", + "operationId": "post-sse-config-v1-url-access-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-access-profiles" + } + } + }, + "description": "The URL Access Profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a URL access profile", + "tags": [ + "URLAccessProfiles" + ] + } + }, + "/sse/config/v1/url-access-profiles/{id}": { + "delete": { + "description": "Delete an URL Access Profile.\n", + "operationId": "delete-sse-config-v1-url-access-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an URL Access Profile", + "tags": [ + "URLAccessProfiles" + ] + }, + "get": { + "description": "Get a URL access profile by ID.", + "operationId": "get-sse-config-v1-url-access-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-access-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the url access profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a URL access profile by ID", + "tags": [ + "URLAccessProfiles" + ] + }, + "put": { + "description": "Modify an URL Access Profile.\n", + "operationId": "put-sse-config-v1-url-access-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-access-profiles" + } + } + }, + "description": "The URL Access Profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an URL Access Profile", + "tags": [ + "URLAccessProfiles" + ] + } + }, + "/sse/config/v1/url-categories": { + "get": { + "description": "List custom URL categories.\n", + "operationId": "get-sse-config-v1-url-categories", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-categories" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of custom URL categories" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List URL categories", + "tags": [ + "URLCategories" + ] + }, + "post": { + "description": "Create a custom URL categories.\n", + "operationId": "post-sse-config-v1-url-categories", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-categories" + } + } + }, + "description": "The custom URL categories you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a custom URL categories", + "tags": [ + "URLCategories" + ] + } + }, + "/sse/config/v1/url-categories/{id}": { + "delete": { + "description": "Delete a custom URL Category.\n", + "operationId": "delete-sse-config-v1-url-categories-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a custom URL Category", + "tags": [ + "URLCategories" + ] + }, + "get": { + "description": "Get a URL category by ID.\n", + "operationId": "get-sse-config-v1-url-categories-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-categories" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the url category by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a URL category by ID", + "tags": [ + "URLCategories" + ] + }, + "put": { + "description": "Modify a custom URL Category.\n", + "operationId": "put-sse-config-v1-url-categories-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-categories" + } + } + }, + "description": "The custom URL Category you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a custom URL Category", + "tags": [ + "URLCategories" + ] + } + }, + "/sse/config/v1/url-filtering-categories": { + "get": { + "description": "List [URL filtering](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-url-filtering) categories.\n", + "operationId": "get-sse-config-v1-url-filtering-categories", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-filtering-categories" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of custom url categories" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List URL filtering categories", + "tags": [ + "URLFilteringCategories" + ] + } + }, + "/sse/config/v1/vulnerability-protection-profiles": { + "get": { + "description": "Retrieve all [vulnerability protection profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection).", + "operationId": "get-sse-config-v1-vulnerability-protection-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of vulnerability protection profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List vulnerability protection profiles", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + }, + "post": { + "description": "Create a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection).", + "operationId": "post-sse-config-v1-vulnerability-protection-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + } + } + }, + "description": "The vulnerability protection profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a vulnerability protection profile", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + } + }, + "/sse/config/v1/vulnerability-protection-profiles/{id}": { + "delete": { + "description": "Delete an vulnerability protection profile.\n", + "operationId": "delete-sse-config-v1-vulnerability-protection-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an vulnerability protection profile", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + }, + "get": { + "description": "Get a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) by ID.", + "operationId": "get-sse-config-v1-vulnerability-protection-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the vulnerability protection profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a vulnerability protection profile by ID", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + }, + "put": { + "description": "Modify an vulnerability protection profile.\n", + "operationId": "put-sse-config-v1-vulnerability-protection-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + } + } + }, + "description": "The vulnerability protection profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an vulnerability protection profile", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + } + }, + "/sse/config/v1/vulnerability-protection-signatures": { + "get": { + "description": "Retrieve all [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) signature.", + "operationId": "get-sse-config-v1-vulnerability-protection-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of vulnerability-protection signatures" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List vulnerability protection signatures", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + }, + "post": { + "description": "Create a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) signature.", + "operationId": "post-sse-config-v1-vulnerability-protection-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + } + } + }, + "description": "The vulnerability-protection signature you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a vulnerability protection signature", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + } + }, + "/sse/config/v1/vulnerability-protection-signatures/{id}": { + "delete": { + "description": "Delete a vulnerability-protection signature.\n", + "operationId": "delete-sse-config-v1-vulnerability-protection-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a vulnerability-protection signature", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + }, + "get": { + "description": "Get a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) signature by ID.", + "operationId": "get-sse-config-v1-vulnerability-protection-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the vulnerability protection signature by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a vulnerability protection signature by ID", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + }, + "put": { + "description": "Modify an vulnerability-protection signature.\n", + "operationId": "put-sse-config-v1-vulnerability-protection-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + } + } + }, + "description": "The vulnerability-protection signature you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a vulnerability-protection signature", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + } + }, + "/sse/config/v1/wildfire-anti-virus-profiles": { + "get": { + "description": "Retrieve all [WildFire antivirus profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-wildfire).", + "operationId": "get-sse-config-v1-wildfire-anti-virus-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of wildfire and antivirus profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List WildFire antivirus profiles", + "tags": [ + "WildFireAntivirusProfiles" + ] + }, + "post": { + "description": "Create a [WildFire antivirus profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-wildfire).", + "operationId": "post-sse-config-v1-wildfire-anti-virus-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + } + } + }, + "description": "The wildfire and antivirus profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a WildFire antivirus profile", + "tags": [ + "WildFireAntivirusProfiles" + ] + } + }, + "/sse/config/v1/wildfire-anti-virus-profiles/{id}": { + "delete": { + "description": "Delete a wildfire and antivirus profile.\n", + "operationId": "delete-sse-config-v1-wildfire-anti-virus-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a wildfire and antivirus profile", + "tags": [ + "WildFireAntivirusProfiles" + ] + }, + "get": { + "description": "Get a [WildFire antivirus profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-wildfire) by ID.", + "operationId": "get-sse-config-v1-wildfire-anti-virus-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the wildfire and anti-virus profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a WildFire antivirus profile by ID", + "tags": [ + "WildFireAntivirusProfiles" + ] + }, + "put": { + "description": "Modify a wildfire and antivirus profile.\n", + "operationId": "put-sse-config-v1-wildfire-anti-virus-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + } + } + }, + "description": "The wildfire and antivirus profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a wildfire and antivirus profile", + "tags": [ + "WildFireAntivirusProfiles" + ] + } + } + }, + "components": { + "schemas": { + "error_detail_cause_info": { + "properties": { + "code": { + "type": "string" + }, + "details": { + "type": "object" + }, + "help": { + "type": "string" + }, + "message": { + "type": "string" + } + }, + "title": "Cause Info", + "type": "object" + }, + "error_detail_cause_infos": { + "items": { + "$ref": "#/components/schemas/error_detail_cause_info" + }, + "type": "array" + }, + "generic_error": { + "properties": { + "_errors": { + "$ref": "#/components/schemas/error_detail_cause_infos" + }, + "_request_id": { + "type": "string" + } + }, + "type": "object" + }, + "objects-address-groups": { + "oneOf": [ + { + "properties": { + "static": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "address-group", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "required": [ + "static" + ], + "title": "static" + }, + { + "properties": { + "dynamic": { + "properties": { + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + } + }, + "required": [ + "filter" + ], + "type": "object" + } + }, + "required": [ + "dynamic" + ], + "title": "dynamic" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-addresses": { + "oneOf": [ + { + "properties": { + "ip_netmask": { + "type": "string" + } + }, + "required": [ + "ip_netmask" + ], + "title": "ip_netmask" + }, + { + "properties": { + "ip_range": { + "type": "string" + } + }, + "required": [ + "ip_range" + ], + "title": "ip_range" + }, + { + "properties": { + "ip_wildcard": { + "type": "string" + } + }, + "required": [ + "ip_wildcard" + ], + "title": "ip_wildcard" + }, + { + "properties": { + "fqdn": { + "maxLength": 255, + "minLength": 1, + "pattern": "^[a-zA-Z0-9_]([a-zA-Z0-9._-])+[a-zA-Z0-9]$", + "type": "string" + } + }, + "required": [ + "fqdn" + ], + "title": "fqdn" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "type": { + "example": "container", + "readOnly": true, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "anti-spyware-profiles": { + "properties": { + "cloud_inline_analysis": { + "default": false, + "type": "boolean" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "inline_exception_edl_url": { + "items": { + "type": "string" + }, + "maxLength": 127, + "type": "array" + }, + "inline_exception_ip_address": { + "items": { + "type": "string" + }, + "maxLength": 63, + "type": "array" + }, + "mica_engine_spyware_enabled": { + "items": { + "properties": { + "inline_policy_action": { + "default": "alert", + "enum": [ + "alert", + "allow", + "drop", + "reset-both", + "reset-client", + "reset-server" + ], + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "dns-proxy", + "backdoor", + "data-theft", + "autogen", + "spyware", + "dns-security", + "downloader", + "dns-phishing", + "phishing-kit", + "cryptominer", + "hacktool", + "dns-benign", + "dns-wildfire", + "botnet", + "dns-grayware", + "inline-cloud-c2", + "keylogger", + "p2p-communication", + "domain-edl", + "webshell", + "command-and-control", + "dns-ddns", + "net-worm", + "any", + "tls-fingerprint", + "dns-new-domain", + "dns", + "fraud", + "dns-c2", + "adware", + "post-exploitation", + "dns-malware", + "browser-hijack", + "dns-parked" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "minLength": 4, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "anti-spyware-signatures": { + "properties": { + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <15000-18000> and <6900001-7000000>", + "maximum": 70000000, + "minimum": 15000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "objects-application-filters": { + "properties": { + "category": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "evasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "excessive_bandwidth_use": { + "description": "only True is a valid value", + "type": "boolean" + }, + "exclude": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "has_known_vulnerabilities": { + "description": "only True is a valid value", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "is_saas": { + "description": "only True is a valid value", + "type": "boolean" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "new_appid": { + "description": "only True is a valid value", + "type": "boolean" + }, + "pervasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "prone_to_misuse": { + "description": "only True is a valid value", + "type": "boolean" + }, + "risk": { + "items": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "type": "array" + }, + "saas_certifications": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "saas_risk": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "subcategory": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category/entry/subcategory", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "tagging": { + "oneOf": [ + { + "properties": { + "no_tag": { + "type": "boolean" + } + }, + "title": "no_tag" + }, + { + "properties": { + "tag": { + "items": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "tag", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "title": "tag" + } + ], + "type": "object" + }, + "technology": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "transfers_files": { + "description": "only True is a valid value", + "type": "boolean" + }, + "tunnels_other_apps": { + "description": "only True is a valid value", + "type": "boolean" + }, + "used_by_malware": { + "description": "only True is a valid value", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-application-groups": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-group", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-filter", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + }, + "app-override-rules": { + "properties": { + "application": { + "type": "string" + }, + "description": { + "maxLength": 1024, + "type": "string" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "port": { + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "protocol": { + "enum": [ + "tcp", + "udp" + ], + "type": "string" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "application", + "port", + "protocol", + "destination", + "from", + "source", + "to" + ], + "type": "object" + }, + "rule-based-move": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + }, + "objects-applications": { + "properties": { + "able_to_transfer_file": { + "type": "boolean" + }, + "alg_disable_capability": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "category": { + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "consume_big_bandwidth": { + "type": "boolean" + }, + "data_ident": { + "type": "boolean" + }, + "default": { + "oneOf": [ + { + "properties": { + "port": { + "items": { + "description": "protocol port specification : {tcp|udp}/{dynamic|port range list} (e.g. tcp/8080, tcp/80,443, tcp/0-1024,10000, udp/dynamic)", + "maxLength": 63, + "type": "string" + }, + "type": "array" + } + }, + "title": "port" + }, + { + "properties": { + "ident_by_ip_protocol": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "title": "ident_by_ip_protocol" + }, + { + "properties": { + "ident_by_icmp_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp_type" + }, + { + "properties": { + "ident_by_icmp6_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp6_type" + } + ], + "type": "object" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "evasive_behavior": { + "type": "boolean" + }, + "file_type_ident": { + "type": "boolean" + }, + "has_known_vulnerability": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "no_appid_caching": { + "type": "boolean" + }, + "parent_app": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "pervasive_use": { + "type": "boolean" + }, + "prone_to_misuse": { + "type": "boolean" + }, + "risk": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "signature": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "operator": { + "oneOf": [ + { + "properties": { + "pattern_match": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "pattern": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "context", + "pattern" + ], + "type": "object" + } + }, + "title": "pattern_match" + }, + { + "properties": { + "greater_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "greater_than" + }, + { + "properties": { + "less_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "less_than" + }, + { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string", + "x-panMultiple": [ + { + "maxLength": 127, + "type": "string" + }, + { + "enum": [ + "unknown-req-tcp", + "unknown-rsp-tcp", + "unknown-req-udp", + "unknown-rsp-udp" + ], + "type": "string" + } + ] + }, + "mask": { + "description": "4-byte hex value", + "maxLength": 10, + "pattern": "^[0][xX][0-9A-Fa-f]{8}$", + "type": "string" + }, + "position": { + "maxLength": 127, + "type": "string" + }, + "value": { + "maxLength": 10, + "type": "string" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "equal_to" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "operator" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "default": "protocol-data-unit", + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "subcategory": { + "maxLength": 63, + "type": "string" + }, + "tcp_half_closed_timeout": { + "description": "timeout for half-close session in seconds", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "tcp_time_wait_timeout": { + "description": "timeout for session in time_wait state in seconds", + "maximum": 600, + "minimum": 1, + "type": "integer" + }, + "tcp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "technology": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "tunnel_applications": { + "type": "boolean" + }, + "tunnel_other_application": { + "type": "boolean" + }, + "udp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "used_by_malware": { + "type": "boolean" + }, + "virus_ident": { + "type": "boolean" + } + }, + "required": [ + "name", + "category", + "subcategory", + "technology", + "risk" + ], + "type": "object" + }, + "authentication-portals": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "certificate_profile": { + "type": "string" + }, + "gp_udp_port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "idle_timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "redirect_host": { + "type": "string" + }, + "timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "authentication-profiles": { + "properties": { + "allow_list": { + "items": { + "default": [ + "all" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lockout": { + "properties": { + "failed_attempts": { + "maximum": 10, + "minimum": 0, + "type": "integer" + }, + "lockout_time": { + "maximum": 60, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "method": { + "oneOf": [ + { + "properties": { + "local_database": { + "type": "object" + } + }, + "title": "local_database" + }, + { + "properties": { + "saml_idp": { + "properties": { + "attribute_name_usergroup": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "attribute_name_username": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "certificate_profile": { + "maxLength": 31, + "type": "string" + }, + "enable_single_logout": { + "type": "boolean" + }, + "request_signing_certificate": { + "maxLength": 64, + "type": "string" + }, + "server_profile": { + "maxLength": 63, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "saml_idp" + }, + { + "properties": { + "ldap": { + "properties": { + "login_attribute": { + "type": "string" + }, + "passwd_exp_days": { + "type": "integer" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ldap" + }, + { + "properties": { + "radius": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "radius" + }, + { + "properties": { + "tacplus": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tacplus" + }, + { + "properties": { + "kerberos": { + "properties": { + "realm": { + "type": "string" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "kerberos" + }, + { + "description": "CIE is valid only when cas feature flag is enabled", + "properties": { + "cloud": { + "properties": { + "profile_name": { + "description": "The tenant profile name", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cloud" + } + ], + "type": "object" + }, + "multi_factor_auth": { + "properties": { + "factors": { + "items": { + "type": "string" + }, + "type": "array" + }, + "mfa_enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "single_sign_on": { + "properties": { + "kerberos_keytab": { + "maxLength": 8192, + "type": "string" + }, + "realm": { + "maxLength": 127, + "type": "string" + } + }, + "type": "object" + }, + "user_domain": { + "maxLength": 63, + "type": "string" + }, + "username_modifier": { + "enum": [ + "%USERINPUT%", + "%USERINPUT%@%USERDOMAIN%", + "%USERDOMAIN%\\\\%USERINPUT%" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "authentication-rules": { + "properties": { + "authentication_enforcement": { + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "hip_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_authentication_timeout": { + "default": false, + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "timeout": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "authentication-sequences": { + "properties": { + "authentication_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "use_domain_find_profile": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "auto-tag-actions": { + "properties": { + "actions": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "properties": { + "tagging": { + "properties": { + "action": { + "description": "Add or Remove tag option", + "enum": [ + "add-tag", + "remove-tag" + ], + "type": "string" + }, + "tags": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "target": { + "description": "Source or Destination Address, User, X-Forwarded-For Address", + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "required": [ + "target", + "action" + ], + "type": "object" + } + }, + "required": [ + "tagging" + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_type": { + "example": "container", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "quarantine": { + "type": "boolean" + }, + "send_to_panorama": { + "type": "boolean" + } + }, + "required": [ + "name", + "filter", + "log_type" + ], + "type": "object" + }, + "bandwidth-allocations": { + "properties": { + "allocated_bandwidth": { + "description": "bandwidth to allocate in Mbps", + "type": "number" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "name of the aggregated bandwidth region", + "type": "string" + }, + "qos": { + "properties": { + "customized": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + }, + "guaranteed_ratio": { + "type": "number" + }, + "profile": { + "type": "string" + } + }, + "type": "object" + }, + "spn_name_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "allocated_bandwidth" + ], + "type": "object" + }, + "certificate-profiles": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + }, + "certificates-get": { + "properties": { + "algorithm": { + "type": "string" + }, + "ca": { + "type": "boolean" + }, + "common_name": { + "type": "string" + }, + "common_name_int": { + "type": "string" + }, + "expiry_epoch": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "issuer": { + "type": "string" + }, + "issuer_hash": { + "type": "string" + }, + "not_valid_after": { + "type": "string" + }, + "not_valid_before": { + "type": "string" + }, + "public_key": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "subject_hash": { + "type": "string" + }, + "subject_int": { + "type": "string" + } + }, + "type": "object" + }, + "certificates-import": { + "properties": { + "certificate_file": { + "description": "base64 encoded content of the certificate file", + "type": "string" + }, + "format": { + "default": "pem", + "enum": [ + "pem", + "pkcs12", + "der" + ], + "type": "string" + }, + "key_file": { + "description": "base64 encoded content of the key file", + "type": "string" + }, + "name": { + "description": "name of the certificate", + "minLength": 1, + "type": "string" + }, + "passphrase": { + "description": "required when key_file is presented", + "type": "string" + } + }, + "required": [ + "name", + "certificate_file", + "format" + ], + "type": "object" + }, + "certificates-post": { + "properties": { + "algorithm": { + "oneOf": [ + { + "properties": { + "rsa_number_of_bits": { + "enum": [ + 512, + 1024, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "rsa_number_of_bits" + ], + "title": "rsa_number_of_bits" + }, + { + "properties": { + "ecdsa_number_of_bits": { + "enum": [ + 245, + 384, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "ecdsa_number_of_bits" + ], + "title": "ecdsa_number_of_bits" + } + ], + "type": "object" + }, + "alternate_email": { + "items": { + "type": "string" + }, + "type": "array" + }, + "certificate_name": { + "minLength": 1, + "type": "string" + }, + "common_name": { + "minLength": 1, + "type": "string" + }, + "country_code": { + "type": "string" + }, + "day_till_expiration": { + "type": "number" + }, + "department": { + "items": { + "type": "string" + }, + "type": "array" + }, + "digest": { + "enum": [ + "sha1", + "sha256", + "sha384", + "sha512", + "md5" + ], + "type": "string" + }, + "email": { + "maxLength": 255, + "type": "string" + }, + "hostname": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "ip": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "is_block_privateKey": { + "type": "boolean" + }, + "is_certificate_authority": { + "type": "boolean" + }, + "locality": { + "maxLength": 64, + "type": "string" + }, + "ocsp_responder_url": { + "maxLength": 64, + "type": "string" + }, + "signed_by": { + "maxLength": 64, + "type": "string" + }, + "state": { + "maxLength": 32, + "type": "string" + } + }, + "required": [ + "algorithm", + "certificate_name", + "common_name", + "digest" + ], + "type": "object" + }, + "candidate-config-versions": { + "properties": { + "admin": { + "type": "string" + }, + "created": { + "type": "number" + }, + "date": { + "type": "string" + }, + "deleted": { + "type": "number" + }, + "description": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "scope": { + "type": "string" + }, + "swg_config": { + "type": "string" + }, + "updated": { + "type": "number" + }, + "version": { + "type": "string" + } + }, + "type": "object" + }, + "jobs": { + "properties": { + "details": { + "type": "string" + }, + "end_ts": { + "type": "string" + }, + "id": { + "type": "string" + }, + "insert_ts": { + "type": "string" + }, + "job_result": { + "type": "string" + }, + "job_status": { + "type": "string" + }, + "job_type": { + "type": "string" + }, + "last_update": { + "type": "string" + }, + "opaque_int": { + "type": "string" + }, + "opaque_str": { + "type": "string" + }, + "owner": { + "type": "string" + }, + "parent_id": { + "type": "string" + }, + "percent": { + "type": "string" + }, + "result_i": { + "type": "string" + }, + "result_str": { + "type": "string" + }, + "session_id": { + "type": "string" + }, + "start_ts": { + "type": "string" + }, + "status_i": { + "type": "string" + }, + "status_str": { + "type": "string" + }, + "summary": { + "type": "string" + }, + "type_i": { + "type": "string" + }, + "type_str": { + "type": "string" + }, + "uname": { + "type": "string" + } + }, + "type": "object" + }, + "load-config": { + "properties": { + "version": { + "type": "number" + } + }, + "type": "object" + }, + "running-config-versions": { + "properties": { + "date": { + "type": "string" + }, + "device": { + "type": "string" + }, + "version": { + "type": "number" + } + }, + "type": "object" + }, + "dns-security-profiles": { + "properties": { + "botnet_domains": { + "properties": { + "dns_security_categories": { + "items": { + "properties": { + "action": { + "default": "default", + "enum": [ + "default", + "allow", + "block", + "sinkhole" + ], + "type": "string" + }, + "log_level": { + "default": "default", + "enum": [ + "default", + "none", + "low", + "informational", + "medium", + "high", + "critical" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "lists": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "block": { + "type": "object" + } + }, + "title": "block" + }, + { + "properties": { + "sinkhole": { + "type": "object" + } + }, + "title": "sinkhole" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "sinkhole": { + "properties": { + "ipv4_address": { + "enum": [ + "127.0.0.1", + "pan-sinkhole-default-ip" + ], + "type": "string" + }, + "ipv6_address": { + "enum": [ + "::1" + ], + "type": "string" + } + }, + "type": "object" + }, + "whitelist": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "decryption-exclusions": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "decryption-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space", + "pattern": "^[A-Za-z0-9]{1}[A-Za-z0-9_\\-\\.\\s]{0,}$", + "type": "string" + }, + "ssl_forward_proxy": { + "properties": { + "auto_include_altname": { + "default": false, + "type": "boolean" + }, + "block_client_cert": { + "default": false, + "type": "boolean" + }, + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_timeout_cert": { + "default": false, + "type": "boolean" + }, + "block_tls13_downgrade_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unknown_cert": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + }, + "restrict_cert_exts": { + "default": false, + "type": "boolean" + }, + "strip_alpn": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_inbound_proxy": { + "properties": { + "block_if_hsm_unavailable": { + "default": false, + "type": "boolean" + }, + "block_if_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_no_proxy": { + "properties": { + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_protocol_settings": { + "properties": { + "auth_algo_md5": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha1": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha256": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha384": { + "default": true, + "type": "boolean" + }, + "enc_algo_3des": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_chacha20_poly1305": { + "default": true, + "type": "boolean" + }, + "enc_algo_rc4": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "default": true, + "type": "boolean" + }, + "max_version": { + "default": "tls1-2", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "decryption-rules": { + "properties": { + "action": { + "enum": [ + "decrypt", + "no-decrypt" + ], + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_fail": { + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "log_success": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile": { + "type": "string" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "oneOf": [ + { + "properties": { + "ssl_forward_proxy": { + "type": "object" + } + }, + "title": "ssl_forward_proxy" + }, + { + "properties": { + "ssl_inbound_inspection": { + "description": "add the certificate name for SSL inbound inspection", + "type": "string" + } + }, + "required": [ + "ssl_inbound_inspection" + ], + "title": "ssl_inbound_inspection" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "objects-dynamic-user-groups": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "tag-based filter", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for dynamic user group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "filter" + ], + "type": "object" + }, + "objects-external-dynamic-lists": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "predefined_ip": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_ip" + }, + { + "properties": { + "predefined_url": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_url" + }, + { + "properties": { + "ip": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "ip" + }, + { + "properties": { + "domain": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "expand_domain": { + "default": false, + "description": "Enable/Disable expand domain", + "type": "boolean" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "domain" + }, + { + "properties": { + "url": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "url" + }, + { + "properties": { + "imsi": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 34, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imsi" + }, + { + "properties": { + "imei": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imei" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "file-blocking-profiles": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "default": "alert", + "enum": [ + "alert", + "block", + "continue" + ], + "type": "string" + }, + "application": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "direction": { + "default": "both", + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "action", + "direction", + "application", + "file_type" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-hip-objects": { + "properties": { + "anti_malware": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_scan_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "product_version": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + }, + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "real_time_protection": { + "description": "real time protection", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "virdef_version": { + "oneOf": [ + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_attributes": { + "items": { + "properties": { + "name": { + "description": "Attribute Name", + "type": "string" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "certificate_profile": { + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "certificate-profile", + "subPath": "name" + } + ] + } + }, + "type": "object" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "description": "Key name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Plist does not exist", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "properties": { + "name": { + "description": "Process Name", + "maxLength": 1023, + "type": "string" + }, + "running": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "description": "Registry key default value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Key does not exist or match specified value data", + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "description": "Registry value name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value_data": { + "description": "Registry value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "data_loss_prevention": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "disk_backup": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_backup_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encryption": { + "properties": { + "criteria": { + "description": "Encryption locations", + "properties": { + "encrypted_locations": { + "items": { + "properties": { + "encryption_state": { + "oneOf": [ + { + "properties": { + "is": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is_not" + } + ], + "type": "object" + }, + "name": { + "description": "Encryption location", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "firewall": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "host_info": { + "properties": { + "criteria": { + "properties": { + "client_version": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "domain": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_id": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_name": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "managed": { + "description": "If device is managed", + "type": "boolean" + }, + "os": { + "oneOf": [ + { + "properties": { + "contains": { + "oneOf": [ + { + "properties": { + "Microsoft": { + "default": "All", + "description": "Microsoft vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Microsoft" + ], + "title": "Microsoft" + }, + { + "properties": { + "Apple": { + "default": "All", + "description": "Apple vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Apple" + ], + "title": "Apple" + }, + { + "properties": { + "Google": { + "default": "All", + "description": "Google vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Google" + ], + "title": "Google" + }, + { + "properties": { + "Linux": { + "default": "All", + "description": "Linux vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Linux" + ], + "title": "Linux" + }, + { + "properties": { + "Other": { + "description": "Other vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Other" + ], + "title": "Other" + } + ], + "type": "object" + } + }, + "required": [ + "contains" + ], + "title": "contains" + } + ], + "type": "object" + }, + "serial_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mobile_device": { + "properties": { + "criteria": { + "properties": { + "applications": { + "properties": { + "has_malware": { + "oneOf": [ + { + "properties": { + "no": { + "type": "object" + } + }, + "title": "no" + }, + { + "properties": { + "yes": { + "properties": { + "excludes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "yes" + } + ], + "type": "object" + }, + "has_unmanaged_app": { + "description": "Has apps that are not managed", + "type": "boolean" + }, + "includes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encrypted": { + "description": "If device's disk is encrypted", + "type": "boolean" + }, + "imei": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "jailbroken": { + "description": "If device is by rooted/jailbroken", + "type": "boolean" + }, + "last_checkin_time": { + "oneOf": [ + { + "properties": { + "within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "model": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "passcode_set": { + "description": "If device's passcode is present", + "type": "boolean" + }, + "phone_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "tag": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "network_info": { + "properties": { + "criteria": { + "properties": { + "network": { + "oneOf": [ + { + "properties": { + "is": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "ethernet": { + "type": "object" + } + }, + "title": "ethernet" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "patch_management": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": "yes", + "description": "Is Installed", + "type": "boolean" + }, + "missing_patches": { + "properties": { + "check": { + "default": "has-any", + "enum": [ + "has-any", + "has-none", + "has-all" + ], + "type": "string" + }, + "patches": { + "items": { + "description": "patch security-bulletin-id or kb-article-id", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + }, + "severity": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + } + ], + "type": "object" + } + }, + "required": [ + "check" + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": "no", + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-hip-profiles": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "match": { + "maxLength": 2048, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "match" + ], + "type": "object" + }, + "http-header-profiles": { + "properties": { + "description": { + "type": "string" + }, + "http_header_insertion": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "items": { + "properties": { + "domains": { + "items": { + "type": "string" + }, + "type": "array" + }, + "headers": { + "items": { + "properties": { + "header": { + "type": "string" + }, + "log": { + "default": false, + "type": "boolean" + }, + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "required": [ + "name", + "header", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "domains", + "headers" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "ike-crypto-profiles": { + "properties": { + "authentication_multiple": { + "default": 0, + "description": "IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled", + "maximum": 50, + "type": "integer" + }, + "dh_group": { + "items": { + "default": "group2", + "description": "Phase-1 DH group", + "enum": [ + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm" + ], + "type": "string" + }, + "type": "array" + }, + "hash": { + "items": { + "default": "sha1", + "description": "Hashing algorithm", + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "encryption", + "hash", + "dh_group" + ], + "type": "object" + }, + "ike-gateways": { + "properties": { + "authentication": { + "oneOf": [ + { + "properties": { + "pre_shared_key": { + "properties": { + "key": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "pre_shared_key", + "type": "object" + }, + { + "properties": { + "certificate": { + "properties": { + "allow_id_payload_mismatch": { + "type": "boolean" + }, + "certificate_profile": { + "type": "string" + }, + "local_certificate": { + "properties": { + "local_certificate_name": { + "type": "string" + } + }, + "type": "object" + }, + "strict_validation_revocation": { + "type": "boolean" + }, + "use_management_as_source": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "title": "certificate", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_id": { + "properties": { + "id": { + "description": "Local ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[a-zA-Z0-9.-]+)$|^([$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "peer_address": { + "oneOf": [ + { + "properties": { + "ip": { + "description": "peer gateway has static IP address", + "type": "string" + } + }, + "title": "ip", + "type": "object" + }, + { + "properties": { + "fqdn": { + "description": "peer gateway FQDN name", + "maxLength": 255, + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "dynamic": { + "default": {}, + "type": "object" + } + }, + "title": "dynamic", + "type": "object" + } + ], + "type": "object" + }, + "peer_id": { + "properties": { + "id": { + "description": "Peer ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[\\*a-zA-Z0-9.-]+)$|^([\\*$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "enum": [ + "ipaddr", + "keyid", + "fqdn", + "ufqdn" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol": { + "properties": { + "ikev1": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "ikev2": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "version": { + "default": "ikev2-preferred", + "enum": [ + "ikev2-preferred", + "ikev1", + "ikev2" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol_common": { + "properties": { + "fragmentation": { + "properties": { + "enable": { + "default": false, + "enum": [ + false + ], + "type": "boolean" + } + }, + "type": "object" + }, + "nat_traversal": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "passive_mode": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "authentication", + "protocol", + "peer_address" + ], + "type": "object" + }, + "ipsec-crypto-profiles": { + "oneOf": [ + { + "properties": { + "esp": { + "properties": { + "authentication": { + "description": "Authentication algorithm", + "items": { + "default": "sha1", + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm", + "null" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "encryption", + "authentication" + ], + "type": "object" + } + }, + "required": [ + "esp" + ], + "title": "esp", + "type": "object" + }, + { + "properties": { + "ah": { + "properties": { + "authentication": { + "items": { + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "authentication" + ], + "type": "object" + } + }, + "required": [ + "ah" + ], + "title": "ah", + "type": "object" + } + ], + "properties": { + "dh_group": { + "default": "group2", + "description": "phase-2 DH group (PFS DH group)", + "enum": [ + "no-pfs", + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifesize": { + "oneOf": [ + { + "properties": { + "kb": { + "description": "specify lifesize in kilobytes(KB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "kb", + "type": "object" + }, + { + "properties": { + "mb": { + "description": "specify lifesize in megabytes(MB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "mb", + "type": "object" + }, + { + "properties": { + "gb": { + "description": "specify lifesize in gigabytes(GB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "gb", + "type": "object" + }, + { + "properties": { + "tb": { + "description": "specify lifesize in terabytes(TB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "tb", + "type": "object" + } + ], + "type": "object" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "lifetime" + ], + "type": "object" + }, + "ipsec-tunnels": { + "properties": { + "anti_replay": { + "description": "Enable Anti-Replay check on this tunnel", + "type": "boolean" + }, + "auto_key": { + "properties": { + "ike_gateway": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipsec_crypto_profile": { + "type": "string" + }, + "proxy_id": { + "description": "IPv4 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "proxy_id_v6": { + "description": "IPv6 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "ike_gateway", + "ipsec_crypto_profile" + ], + "type": "object" + }, + "copy_tos": { + "default": false, + "description": "Copy IP TOS bits from inner packet to IPSec packet (not recommended)", + "type": "boolean" + }, + "enable_gre_encapsulation": { + "default": false, + "description": "allow GRE over IPSec", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tunnel_monitor": { + "properties": { + "destination_ip": { + "description": "Destination IP to send ICMP probe", + "type": "string" + }, + "enable": { + "default": true, + "description": "Enable tunnel monitoring on this tunnel", + "type": "boolean" + }, + "proxy_id": { + "description": "Which proxy-id (or proxy-id-v6) the monitoring traffic will use", + "type": "string" + } + }, + "required": [ + "destination_ip" + ], + "type": "object" + } + }, + "required": [ + "name", + "auto_key" + ], + "type": "object" + }, + "edit-shared-infrastructure-settings": { + "properties": { + "egress_ip_notification_url": { + "type": "string" + }, + "infra_bgp_as": { + "type": "string" + }, + "infrastructure_subnet": { + "type": "string" + }, + "infrastructure_subnet_ipv6": { + "type": "string" + } + }, + "type": "object" + }, + "shared-infrastructure-settings": { + "properties": { + "api_key": { + "type": "string" + }, + "captive_portal_redirect_ip_address": { + "type": "string" + }, + "egress_ip_notification_url": { + "type": "string" + }, + "infra_bgp_as": { + "type": "string" + }, + "infrastructure_subnet": { + "type": "string" + }, + "infrastructure_subnet_ipv6": { + "type": "string" + }, + "ipv6": { + "type": "boolean" + }, + "loopback_ips": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tunnel_monitor_ip_address": { + "type": "string" + } + }, + "type": "object" + }, + "internal-dns-servers": { + "properties": { + "domain_name": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "required": [ + "name", + "domain_name", + "primary" + ], + "type": "object" + }, + "kerberos-server-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "server": { + "items": { + "properties": { + "host": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "ldap-server-profiles": { + "properties": { + "base": { + "maxLength": 255, + "type": "string" + }, + "bind_dn": { + "maxLength": 255, + "type": "string" + }, + "bind_password": { + "maxLength": 121, + "type": "string" + }, + "bind_timelimit": { + "maximum": 60, + "minimum": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ldap_type": { + "enum": [ + "active-directory", + "e-directory", + "sun", + "other" + ], + "type": "string" + }, + "retry_interval": { + "type": "integer" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + }, + "ssl": { + "type": "boolean" + }, + "timelimit": { + "type": "integer" + }, + "verify_server_certificate": { + "type": "boolean" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "license-types": { + "items": { + "properties": { + "display": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "local-user-groups": { + "properties": { + "name": { + "description": "Name of the group.\n", + "maxLength": 31, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "user": { + "description": "Array of user names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "local-users": { + "properties": { + "disabled": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "password": { + "maxLength": 63, + "type": "string" + } + }, + "required": [ + "name", + "password" + ], + "type": "object" + }, + "locations": { + "items": { + "properties": { + "aggregate_region": { + "type": "string" + }, + "continent": { + "type": "string" + }, + "display": { + "type": "string" + }, + "latitude": { + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + }, + "region": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "mfa-servers": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mfa_cert_profile": { + "type": "string" + }, + "mfa_vendor_type": { + "oneOf": [ + { + "properties": { + "okta_adaptive_v1": { + "properties": { + "okta_api_host": { + "type": "string" + }, + "okta_baseuri": { + "type": "string" + }, + "okta_org": { + "type": "string" + }, + "okta_timeout": { + "type": "string" + }, + "okta_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "okta_adaptive_v1" + }, + { + "properties": { + "ping_identity_v1": { + "properties": { + "ping_api_host": { + "type": "string" + }, + "ping_baseuri": { + "type": "string" + }, + "ping_org": { + "type": "string" + }, + "ping_org_alias": { + "type": "string" + }, + "ping_timeout": { + "type": "string" + }, + "ping_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ping_identity_v1" + }, + { + "properties": { + "rsa_securid_access_v1": { + "properties": { + "rsa_accessid": { + "type": "string" + }, + "rsa_accesskey": { + "type": "string" + }, + "rsa_api_host": { + "type": "string" + }, + "rsa_assurancepolicyid": { + "type": "string" + }, + "rsa_baseuri": { + "type": "string" + }, + "rsa_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "rsa_securid_access_v1" + }, + { + "properties": { + "duo_security_v2": { + "properties": { + "duo_api_host": { + "type": "string" + }, + "duo_baseuri": { + "type": "string" + }, + "duo_integration_key": { + "type": "string" + }, + "duo_secret_key": { + "type": "string" + }, + "duo_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "duo_security_v2" + } + ], + "type": "object" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "mfa_cert_profile" + ], + "type": "object" + }, + "agent-profiles": { + "properties": { + "agent_ui": { + "properties": { + "agent_user_override_timeout": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "max_agent_user_overrides": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "passcode": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "uninstall_password": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "welcome_page": { + "properties": { + "page": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "client_certificate": { + "properties": { + "local": { + "type": "string" + }, + "scep": { + "maxLength": 255, + "type": "string" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value": { + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + } + }, + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "maxLength": 1024, + "type": "string" + }, + "name": { + "maxLength": 1023, + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value_data": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gateways": { + "properties": { + "external": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "manual": { + "default": false, + "description": "If this GlobalProtect gateway can be manually selected", + "type": "boolean" + }, + "name": { + "type": "string" + }, + "priority_rule": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "priority": { + "enum": [ + "0", + "1", + "2", + "3", + "4", + "5" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "internal": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "source_ip": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gp_app_config": { + "properties": { + "config": { + "description": "Currently we only support connect-method and tunnel-mtu as app-config", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/connect-method" + }, + { + "$ref": "#/components/schemas/tunnel-mtu" + } + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "hip_collection": { + "properties": { + "certificate_profile": { + "type": "string" + }, + "collect_hip_data": { + "type": "boolean" + }, + "custom_checks": { + "properties": { + "linux": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "mac_os": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "windows": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "registry_value": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "exclusion": { + "properties": { + "category": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "vendor": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "product": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "max_wait_time": { + "maximum": 60, + "minimum": 10, + "type": "number" + } + }, + "type": "object" + }, + "internal_host_detection": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv4 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "internal_host_detection_v6": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv6 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "machine_account_exists_with_serialno": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "type": "object" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "save_user_credentials": { + "description": "Indicates whether to save user credentials.\n\n* `0` : do not save\n* `1` : save\n* `2` : save username only\n* `3` : only with user fingerprint\n", + "enum": [ + "0", + "1", + "2", + "3" + ], + "type": "string" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "third_party_vpn_clients": { + "items": { + "enum": [ + "PAN Virtual Ethernet Adapter", + "Juniper Network Virtual Adapter", + "Cisco Systems VPN Adapter" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "authentication-settings": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "os": { + "default": "Any", + "enum": [ + "Any", + "Android", + "Browser", + "Chrome", + "IoT", + "Linux", + "Mac", + "Satellite", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "user_credential_or_client_cert_required": { + "type": "boolean" + } + }, + "required": [ + "authentication_profile", + "user_credential_or_client_cert_required", + "os" + ], + "type": "object" + }, + "connect-method": { + "properties": { + "name": { + "default": "connect-method", + "enum": [ + "connect-method" + ], + "type": "string" + }, + "value": { + "items": { + "enum": [ + "user-logon", + "pre-logon", + "on-demand", + "pre-logon-then-on-demand" + ], + "type": "string" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + "mobile-agent-global-settings": { + "properties": { + "agent_version": { + "type": "string" + }, + "manual_gateway": { + "description": "Use the locations from GET /infrastrustre-settings deployment field to setup manual gateways.", + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "mobile-agent-infrastructure-settings": { + "properties": { + "dns_servers": { + "items": { + "properties": { + "dns_suffix": { + "items": { + "type": "string" + }, + "type": "array" + }, + "internal_dns_match": { + "items": { + "properties": { + "domain_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + }, + "secondary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + }, + "secondary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "enable_wins": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "properties": { + "wins_servers": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ip_pools": { + "items": { + "properties": { + "ip_pool": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipv6": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "portal_hostname": { + "properties": { + "custom_domain": { + "properties": { + "cname": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "ssl_tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "default_domain": { + "properties": { + "hostname": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "udp_queries": { + "properties": { + "retries": { + "properties": { + "attempts": { + "description": "Maximum number of retries before trying next name server", + "maximum": 30, + "minimum": 1, + "type": "number" + }, + "interval": { + "description": "Time in seconds for another request to be sent", + "maximum": 30, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "dns_servers", + "ip_pools", + "portal_hostname" + ], + "type": "object" + }, + "mobile-agent-locations": { + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "move-auth-settings": { + "properties": { + "destination": { + "type": "string" + }, + "name": { + "type": "string" + }, + "where": { + "enum": [ + "before", + "after", + "top", + "bottom" + ], + "type": "string" + } + }, + "type": "object" + }, + "tunnel-mtu": { + "properties": { + "name": { + "default": "tunnel-mtu", + "enum": [ + "tunnel-mtu" + ], + "type": "string" + }, + "value": { + "description": "GlobalProtect Connection MTU (bytes)", + "items": { + "default": 1400, + "maximum": 1420, + "minimum": 1000, + "type": "number" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + "tunnel-profiles": { + "properties": { + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "maxLength": 31, + "minLength": 1, + "type": "string" + }, + "no_direct_access_to_local_network": { + "type": "boolean" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "retrieve_framed_ip_address": { + "type": "boolean" + }, + "source_address": { + "properties": { + "ip_address": { + "items": { + "type": "string" + }, + "type": "array" + }, + "region": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "split_tunneling": { + "properties": { + "access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "include_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "ocsp-responder": { + "properties": { + "host_name": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [:0-9a-zA-Z._-]", + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + } + }, + "required": [ + "name", + "host_name" + ], + "type": "object" + }, + "profile-groups": { + "properties": { + "dns_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "file_blocking": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "saas_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "spyware": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "url_filtering": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "virus_and_wildfire_analysis": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "vulnerability": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "qos-policy-rules": { + "properties": { + "action": { + "properties": { + "class": { + "type": "string" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "dscp_tos": { + "properties": { + "codepoints": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "ef": { + "type": "object" + } + }, + "title": "ef" + }, + { + "properties": { + "af": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "af" + }, + { + "properties": { + "cs": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cs" + }, + { + "properties": { + "tos": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tos" + }, + { + "properties": { + "custom": { + "properties": { + "codepoint": { + "properties": { + "binary_value": { + "type": "string" + }, + "codepoint_name": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "custom" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "schedule": { + "type": "string" + } + }, + "required": [ + "name", + "action" + ], + "type": "object" + }, + "qos-profiles": { + "properties": { + "aggregate_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 16000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "class_bandwidth_type": { + "oneOf": [ + { + "properties": { + "mbps": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "mbps", + "type": "object" + }, + { + "properties": { + "percentage": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "percentage", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-quarantined-devices": { + "properties": { + "host_id": { + "description": "Device host id", + "type": "string" + }, + "ip": { + "description": "Device ip info", + "type": "string" + }, + "ipv6": { + "description": "Device ipv6 info", + "type": "string" + }, + "serial_number": { + "description": "Device serial number", + "type": "string" + } + }, + "required": [ + "host_id" + ], + "type": "object" + }, + "radius-server-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "CHAP": { + "type": "object" + } + }, + "title": "CHAP" + }, + { + "properties": { + "EAP_TTLS_with_PAP": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "EAP_TTLS_with_PAP" + }, + { + "properties": { + "PAP": { + "type": "object" + } + }, + "title": "PAP" + }, + { + "properties": { + "PEAP_MSCHAPv2": { + "properties": { + "allow_pwd_change": { + "type": "boolean" + }, + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_MSCHAPv2" + }, + { + "properties": { + "PEAP_with_GTC": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_with_GTC" + } + ], + "type": "object" + }, + "retries": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "server": { + "items": { + "properties": { + "ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 120, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "objects-regions": { + "properties": { + "address": { + "items": { + "type": "string", + "x-panMultiple": [] + }, + "type": "array" + }, + "geo_location": { + "properties": { + "latitude": { + "description": "latitude coordinate", + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "description": "longitude coordinate", + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "latitude", + "longitude" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "remote-networks": { + "properties": { + "ecmp_load_balancing": { + "default": "disable", + "enum": [ + "enable", + "disable" + ], + "type": "string" + }, + "ecmp_tunnels": { + "description": "ecmp_tunnels is required when ecmp_load_balancing is enable", + "items": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "ipsec_tunnel": { + "type": "string" + }, + "local_ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "required": [ + "name", + "ipsec_tunnel" + ], + "type": "object" + }, + "maxLength": 4, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ipsec_tunnel": { + "description": "ipsec_tunnel is required when ecmp_load_balancing is disable", + "type": "string" + }, + "license_type": { + "default": "FWAAS-AGGREGATE", + "description": "New customer will only be on aggregate bandwidth licensing", + "minLength": 1, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "region": { + "minLength": 1, + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "spn_name": { + "description": "spn-name is needed when license_type is FWAAS-AGGREGATE", + "type": "string" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "region", + "license_type" + ], + "type": "object" + }, + "saml-server-profiles": { + "properties": { + "certificate": { + "maxLength": 63, + "type": "string" + }, + "entity_id": { + "maxLength": 1024, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "max_clock_skew": { + "maximum": 900, + "minimum": 1, + "type": "integer" + }, + "slo_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_url": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "validate_idp_certificate": { + "type": "boolean" + }, + "want_auth_requests_signed": { + "type": "boolean" + } + }, + "required": [ + "certificate" + ], + "type": "object" + }, + "scep-profiles": { + "properties": { + "algorithm": { + "properties": { + "rsa": { + "properties": { + "rsa_nbits": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ca_identity_name": { + "type": "string" + }, + "certificate_attributes": { + "oneOf": [ + { + "properties": { + "rfc822name": { + "type": "string" + } + }, + "title": "rfc822name" + }, + { + "properties": { + "dnsname": { + "type": "string" + } + }, + "title": "dnsname" + }, + { + "properties": { + "uniform_resource_identifier": { + "type": "string" + } + }, + "title": "uniform_resource_identifier" + } + ], + "type": "object" + }, + "digest": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "scep_ca_cert": { + "type": "string" + }, + "scep_challenge": { + "oneOf": [ + { + "properties": { + "none": { + "default": "", + "enum": [ + "" + ], + "type": "string" + } + }, + "title": "none" + }, + { + "properties": { + "fixed": { + "description": "Challenge to use for SCEP server on mobile clients", + "maxLength": 1024, + "minLength": 0, + "type": "string" + } + }, + "title": "fixed" + }, + { + "properties": { + "dynamic": { + "properties": { + "otp_server_url": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "password": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "dynamic" + } + ], + "type": "object" + }, + "scep_client_cert": { + "type": "string" + }, + "scep_url": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "use_as_digital_signature": { + "type": "boolean" + }, + "use_for_key_encipherment": { + "type": "boolean" + } + }, + "required": [ + "name", + "scep_url", + "ca_identity_name", + "rsa_nbits", + "digest" + ], + "type": "object" + }, + "objects-schedules": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "schedule_type": { + "oneOf": [ + { + "properties": { + "recurring": { + "oneOf": [ + { + "properties": { + "weekly": { + "properties": { + "friday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "monday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "saturday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "sunday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "thursday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "tuesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "wednesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "weekly" + }, + { + "properties": { + "daily": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "daily" + } + ], + "type": "object" + } + }, + "title": "recurring" + }, + { + "properties": { + "non_recurring": { + "items": { + "description": "Datetime range specification YYYY/MM/DD@hh:mm-YYYY/MM/DD@hh:mm (e.g. 2006/08/01@10:00-2007/12/31@23:59)", + "maxLength": 33, + "minLength": 33, + "pattern": "[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "non_recurring" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "schedule_type" + ], + "type": "object" + }, + "security-rules": { + "properties": { + "action": { + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile_setting": { + "properties": { + "group": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "service-connection-groups": { + "properties": { + "disable_snat": { + "type": "boolean" + }, + "name": { + "description": "Name of the group.\n", + "type": "string" + }, + "pbf_only": { + "type": "boolean" + }, + "target": { + "description": "Array of service connection names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "target" + ], + "type": "object" + }, + "bgp-routing": { + "properties": { + "accept_route_over_SC": { + "type": "boolean" + }, + "add_host_route_to_ike_peer": { + "type": "boolean" + }, + "backbone_routing": { + "enum": [ + "no-asymmetric-routing", + "asymmetric-routing-only", + "asymmetric-routing-with-load-share" + ], + "type": "string" + }, + "outbound_routes_for_services": { + "items": { + "type": "string" + }, + "type": "array" + }, + "routing_preference": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "hot_potato_routing": { + "type": "object" + } + }, + "title": "hot_potato_routing" + } + ], + "type": "object" + }, + "withdraw_static_route": { + "type": "boolean" + } + }, + "type": "object" + }, + "service-connections": { + "properties": { + "backup_SC": { + "type": "string" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "local_ipv6_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peer_ipv6_address": { + "type": "string" + }, + "same_as_primary": { + "type": "boolean" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + }, + "ipsec_tunnel": { + "type": "string" + }, + "name": { + "type": "string" + }, + "nat_pool": { + "type": "string" + }, + "no_export_community": { + "enum": [ + "Disabled", + "Enabled-In", + "Enabled-Out", + "Enabled-Both" + ], + "type": "string" + }, + "onboarding_type": { + "default": "classic", + "enum": [ + "classic" + ], + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "fast_failover": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "qos": { + "properties": { + "enable": { + "type": "boolean" + }, + "qos_profile": { + "type": "string" + } + }, + "type": "object" + }, + "region": { + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "source_nat": { + "type": "boolean" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "ipsec_tunnel", + "region" + ], + "type": "object" + }, + "objects-service-groups": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "description": "Associate services or service groups", + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "service", + "subPath": "name" + }, + { + "location": "shared", + "schema": "service-group", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for service group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + }, + "objects-services": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "tcp": { + "properties": { + "override": { + "properties": { + "halfclose_timeout": { + "default": 120, + "description": "tcp session half-close timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timeout": { + "default": 3600, + "description": "tcp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timewait_timeout": { + "default": 15, + "description": "tcp session time-wait timeout value (in second)", + "maximum": 600, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "tcp" + }, + { + "properties": { + "udp": { + "properties": { + "override": { + "properties": { + "timeout": { + "default": 30, + "description": "udp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "udp" + } + ], + "type": "object" + }, + "tag": { + "description": "Tags for service object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "protocol" + ], + "type": "object" + }, + "tacacs-server-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "enum": [ + "CHAP", + "PAP" + ], + "type": "string" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 30, + "minimum": 1, + "type": "integer" + }, + "use_single_connection": { + "type": "boolean" + } + }, + "required": [ + "server", + "protocol" + ], + "type": "object" + }, + "tls-service-profiles": { + "properties": { + "certificate": { + "description": "SSL certificate file name", + "maxLength": 255, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Profile name", + "maxLength": 127, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "protocol_settings": { + "properties": { + "auth_algo_sha1": { + "description": "Allow authentication SHA1", + "type": "boolean" + }, + "auth_algo_sha256": { + "description": "Allow authentication SHA256", + "type": "boolean" + }, + "auth_algo_sha384": { + "description": "Allow authentication SHA384", + "type": "boolean" + }, + "enc_algo_3des": { + "description": "Allow algorithm 3DES", + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "description": "Allow algorithm AES-128-CBC", + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "description": "Allow algorithm AES-128-GCM", + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "description": "Allow algorithm AES-256-CBC", + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "description": "Allow algorithm AES-256-GCM", + "type": "boolean" + }, + "enc_algo_rc4": { + "description": "Allow algorithm RC4", + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "description": "Allow algorithm DHE", + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "description": "Allow algorithm ECDHE", + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "description": "Allow algorithm RSA", + "type": "boolean" + }, + "max_version": { + "default": "max", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "certificate", + "protocol_settings" + ], + "type": "object" + }, + "objects-tags": { + "properties": { + "color": { + "enum": [ + "Red", + "Green", + "Blue", + "Yellow", + "Copper", + "Orange", + "Purple", + "Gray", + "Light Green", + "Cyan", + "Light Gray", + "Blue Gray", + "Lime", + "Black", + "Gold", + "Brown", + "Olive", + "Maroon", + "Red-Orange", + "Yellow-Orange", + "Forest Green", + "Turquoise Blue", + "Azure Blue", + "Cerulean Blue", + "Midnight Blue", + "Medium Blue", + "Cobalt Blue", + "Violet Blue", + "Blue Violet", + "Medium Violet", + "Medium Rose", + "Lavender", + "Orchid", + "Thistle", + "Peach", + "Salmon", + "Magenta", + "Red Violet", + "Mahogany", + "Burnt Sienna", + "Chestnut" + ], + "type": "string" + }, + "comments": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 127, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "traffic-steering-rules": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "forward": { + "properties": { + "target": { + "type": "string" + } + }, + "type": "object" + }, + "no-pbf": { + "type": "object" + } + }, + "title": "forward", + "type": "object" + } + ], + "type": "object" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "service": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "service", + "source", + "target" + ], + "type": "object" + }, + "trusted-certificate-authorities": { + "properties": { + "common_name": { + "maxLength": 255, + "type": "string" + }, + "expiry_epoch": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "issuer": { + "type": "string" + }, + "name": { + "maxLength": 63, + "type": "string" + }, + "not_valid_after": { + "type": "string" + }, + "not_valid_before": { + "type": "string" + }, + "serial_number": { + "type": "string" + }, + "subject": { + "type": "string" + } + }, + "type": "object" + }, + "url-access-profiles": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cloud_inline_cat": { + "type": "boolean" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "credential_enforcement": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "log_severity": { + "default": "medium", + "type": "string" + }, + "mode": { + "properties": { + "disabled": { + "type": "object" + }, + "domain_credentials": { + "type": "object" + }, + "group_mapping": { + "type": "string" + }, + "ip_user": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_inline_cat": { + "type": "boolean" + }, + "log_container_page_only": { + "default": true, + "type": "boolean" + }, + "log_http_hdr_referer": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_user_agent": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_xff": { + "default": false, + "type": "boolean" + }, + "mlav_category_exception": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "safe_search_enforcement": { + "default": false, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "url-categories": { + "properties": { + "description": { + "type": "string" + }, + "list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "type": { + "default": "URL List", + "enum": [ + "URL List", + "Category Match" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "url-filtering-categories": { + "properties": { + "type": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "vulnerability-protection-profiles": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "any", + "brute-force", + "code-execution", + "code-obfuscation", + "command-execution", + "dos", + "exploit-kit", + "info-leak", + "insecure-credentials", + "overflow", + "phishing", + "protocol-anomaly", + "scan", + "sql-injection" + ], + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "host": { + "items": { + "enum": [ + "any", + "client", + "server" + ], + "type": "string" + }, + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "type": "string" + }, + "vendor_id": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source", + "destination", + "source-and-destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "vulnerability-protection-signatures": { + "properties": { + "affected_host": { + "oneOf": [ + { + "properties": { + "client": { + "type": "boolean" + } + }, + "title": "client" + }, + { + "properties": { + "server": { + "type": "boolean" + } + }, + "title": "server" + } + ], + "type": "object" + }, + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <41000-45000> and <6800001-6900000>", + "maximum": 6900000, + "minimum": 41000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "wildfire-anti-virus-profiles": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mlav_exception": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "packet_capture": { + "type": "boolean" + }, + "rules": { + "items": { + "properties": { + "analysis": { + "enum": [ + "public-cloud", + "private-cloud" + ], + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "direction": { + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "notes": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "parameters": { + "folder": { + "description": "The folder on which you want to perform this operation.\n", + "in": "query", + "name": "folder", + "required": true, + "schema": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + } + }, + "limit-optional": { + "description": "The maximum number of result objects to return per page.\n", + "in": "query", + "name": "limit", + "required": false, + "schema": { + "type": "number" + } + }, + "name-optional": { + "description": "The name of the entry.\n", + "in": "query", + "name": "name", + "required": false, + "schema": { + "type": "string" + } + }, + "offset-optional": { + "description": "The offset of the result entry.\n", + "in": "query", + "name": "offset", + "required": false, + "schema": { + "type": "number" + } + }, + "uuid-required": { + "description": "The resource's unique identifier.\n", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + "position": { + "description": "The position of a security rule\n", + "in": "query", + "name": "position", + "required": true, + "schema": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "name": { + "description": "The name of the entry.\n", + "in": "query", + "name": "name", + "required": true, + "schema": { + "type": "string" + } + }, + "aggregated-bandwidth-region-name-required": { + "description": "The name of the aggregated bandwidth region", + "in": "query", + "name": "name", + "required": true, + "schema": { + "type": "string" + } + }, + "aggregated-bandwidth-spn-name-list-required": { + "description": "Comma separated of the spn_name_list name per region", + "in": "query", + "name": "spn_name_list", + "required": true, + "schema": { + "type": "string" + } + }, + "jobid-required": { + "description": "The id of the job", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + "version-required": { + "description": "The version of the running config", + "in": "path", + "name": "version", + "required": true, + "schema": { + "type": "string" + } + }, + "folder-noserviceconnection": { + "description": "The folder of the entry\n", + "in": "query", + "name": "folder", + "required": true, + "schema": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + } + }, + "device": { + "description": "The device of the entry\n", + "in": "query", + "name": "device", + "required": true, + "schema": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + } + }, + "snippet": { + "description": "The snippet of the entry\n", + "in": "query", + "name": "snippet", + "required": true, + "schema": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + } + }, + "folder-mobile-users": { + "in": "query", + "name": "folder", + "required": true, + "schema": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "host_id": { + "description": "Device host id\n", + "in": "query", + "name": "host_id", + "schema": { + "type": "string" + } + }, + "host_id_required": { + "description": "Device host id\n", + "in": "query", + "name": "host_id", + "required": true, + "schema": { + "type": "string" + } + }, + "serial_number": { + "description": "Device serial number\n", + "in": "query", + "name": "serial_number", + "schema": { + "type": "string" + } + }, + "type": { + "description": "The type of the schema node\n", + "in": "query", + "name": "type", + "required": true, + "schema": { + "enum": [ + "cloud", + "container" + ], + "type": "string" + } + } + }, + "responses": { + "access_errors": { + "content": { + "application/json": { + "examples": { + "auth_unauthorized": { + "$ref": "#/components/examples/json_403_panui_auth_unauthorized" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Forbidden" + }, + "auth_errors": { + "content": { + "application/json": { + "examples": { + "auth_not_authenticated": { + "$ref": "#/components/examples/json_401_panui_auth_not_authenticated" + }, + "invalid_credential": { + "$ref": "#/components/examples/json_401_panui_auth_invalid_credential" + }, + "key_expired": { + "$ref": "#/components/examples/json_401_panui_auth_key_expired" + }, + "key_too_long": { + "$ref": "#/components/examples/json_401_panui_auth_key_too_long" + }, + "need_password_change": { + "$ref": "#/components/examples/json_401_panui_auth_need_password_change" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Unauthorized" + }, + "bad_request_errors_basic": { + "content": { + "application/json": { + "examples": { + "input_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_input_format_mismatch" + }, + "invalid_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_invalid_query_parameter" + }, + "missing_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_missing_query_parameter" + }, + "output_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_output_format_mismatch" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Bad Request" + }, + "bad_request_errors_basic_with_body": { + "content": { + "application/json": { + "examples": { + "input_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_input_format_mismatch" + }, + "invalid_object": { + "$ref": "#/components/examples/json_400_panui_mgmt_invalid_object" + }, + "invalid_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_invalid_query_parameter" + }, + "missing_body": { + "$ref": "#/components/examples/json_400_panui_restapi_missing_body" + }, + "missing_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_missing_query_parameter" + }, + "output_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_output_format_mismatch" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Bad Request" + }, + "conflict_errors": { + "content": { + "application/json": { + "examples": { + "name_not_unique": { + "$ref": "#/components/examples/json_409_panui_mgmt_name_not_unique" + }, + "object_not_unique": { + "$ref": "#/components/examples/json_409_panui_mgmt_object_not_unique" + }, + "reference_not_zero": { + "$ref": "#/components/examples/json_409_panui_mgmt_reference_not_zero" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Conflict" + }, + "default_errors": { + "content": { + "application/json": { + "examples": { + "action_not_supported": { + "$ref": "#/components/examples/json_405_panui_restapi_action_not_supported" + }, + "bad_xpath": { + "$ref": "#/components/examples/json_400_panui_mgmt_bad_xpath" + }, + "invalid_command": { + "$ref": "#/components/examples/json_400_panui_mgmt_invalid_command" + }, + "malformed_command": { + "$ref": "#/components/examples/json_400_panui_mgmt_malformed_command" + }, + "method_not_allowed": { + "$ref": "#/components/examples/json_501_panui_restapi_method_not_supported" + }, + "session_timeout": { + "$ref": "#/components/examples/json_504_panui_mgmt_session_timeout" + }, + "version_not_supported": { + "$ref": "#/components/examples/json_501_panui_restapi_version_not_supported" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "General Errors" + }, + "http_created": { + "description": "Created" + }, + "http_ok": { + "description": "Ok" + }, + "not_found": { + "content": { + "application/json": { + "examples": { + "object_not_present": { + "$ref": "#/components/examples/json_404_panui_mgmt_object_not_present" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Not Found" + } + }, + "securitySchemes": { + "oauth2ClientCredentials": { + "type": "oauth2", + "flows": { + "clientCredentials": { + "tokenUrl": "https://auth.apps.paloaltonetworks.com/auth/v1/oauth2/access_token", + "scopes": {} + } + } + } + } + } +} \ No newline at end of file diff --git a/Palo Alto/Prisma Access/OpenAPIs/palo_alto_prisma_access-latest.json b/Palo Alto/Prisma Access/OpenAPIs/palo_alto_prisma_access-latest.json new file mode 100644 index 0000000..907efc9 --- /dev/null +++ b/Palo Alto/Prisma Access/OpenAPIs/palo_alto_prisma_access-latest.json @@ -0,0 +1,28974 @@ +{ + "openapi": "3.0.0", + "info": { + "title": "Palo Alto Prisma Access", + "description": "SASE network and security configuration API for Palo Alto Networks Prisma Access, managed via Strata Cloud Manager", + "version": "latest", + "x-itential-curated": "Reviewed against the repo's common-CRUD-for-automation policy: all 344 upstream operations across all 68 published resource categories are already in scope, so the full spec is carried through as -latest. See the repo README for the full resource breakdown." + }, + "servers": [ + { + "url": "https://api.sase.paloaltonetworks.com" + } + ], + "security": [ + { + "oauth2ClientCredentials": [] + } + ], + "paths": { + "/sse/config/v1/address-groups": { + "get": { + "description": "List all [address groups](https://docs.paloaltonetworks.com/network-security/security-policy/objects/address-groups).\n", + "operationId": "get-sse-config-v1-address-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-address-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of address groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get all address groups", + "tags": [ + "AddressGroups" + ] + }, + "post": { + "description": "Create an address group.\n", + "operationId": "post-sse-config-v1-address-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-address-groups" + } + } + }, + "description": "The address group you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an address group", + "tags": [ + "AddressGroups" + ] + } + }, + "/sse/config/v1/address-groups/{id}": { + "delete": { + "description": "Delete an address group.\n", + "operationId": "delete-sse-config-v1-address-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an address group", + "tags": [ + "AddressGroups" + ] + }, + "get": { + "description": "Get an [address group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/address-groups) by ID.\n", + "operationId": "get-sse-config-v1-address-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-address-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the address groups by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an address group by ID", + "tags": [ + "AddressGroups" + ] + }, + "put": { + "description": "Modify an address group.\n", + "operationId": "put-sse-config-v1-address-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-address-groups" + } + } + }, + "description": "The address group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an address group", + "tags": [ + "AddressGroups" + ] + } + }, + "/sse/config/v1/addresses": { + "get": { + "description": "Get addresses.\n", + "operationId": "get-sse-config-v1-addresses", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-addresses" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of addresses" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List addresses", + "tags": [ + "Addresses" + ] + }, + "post": { + "description": "Create an address.\n", + "operationId": "post-sse-config-v1-addresses", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-addresses" + } + } + }, + "description": "The address you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an address", + "tags": [ + "Addresses" + ] + } + }, + "/sse/config/v1/addresses/{id}": { + "delete": { + "description": "Delete an address.\n", + "operationId": "delete-sse-config-v1-addresses-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an address", + "tags": [ + "Addresses" + ] + }, + "get": { + "description": "Get an [address](https://docs.paloaltonetworks.com/network-security/security-policy/objects/addresses) by ID.\n", + "operationId": "get-sse-config-v1-addresses-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-addresses" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the address by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an address by ID", + "tags": [ + "Addresses" + ] + }, + "put": { + "description": "Modify an address.\n", + "operationId": "put-sse-config-v1-addresses-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-addresses" + } + } + }, + "description": "The address you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an address", + "tags": [ + "Addresses" + ] + } + }, + "/sse/config/v1/anti-spyware-profiles": { + "get": { + "description": "Retrieve a list of all [anti-spyware profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware).\n", + "operationId": "get-sse-config-v1-anti-spyware-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/anti-spyware-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of Anti-spyware profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all anti-spyware profiles", + "tags": [ + "AntiSpywareProfiles" + ] + }, + "post": { + "description": "Create an [anti-spyware profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware).\n", + "operationId": "post-sse-config-v1-anti-spyware-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-profiles" + } + } + }, + "description": "The Anti-spyware profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an anti-spyware profile", + "tags": [ + "AntiSpywareProfiles" + ] + } + }, + "/sse/config/v1/anti-spyware-profiles/{id}": { + "delete": { + "description": "Delete an Anti-spyware profile.\n", + "operationId": "delete-sse-config-v1-anti-spyware-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an Anti-spyware profile", + "tags": [ + "AntiSpywareProfiles" + ] + }, + "get": { + "description": "Get an [anti-spyware profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware) by ID.\n", + "operationId": "get-sse-config-v1-anti-spyware-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/anti-spyware-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the anti-spyware profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an anti-spyware profile by ID", + "tags": [ + "AntiSpywareProfiles" + ] + }, + "put": { + "description": "Modify an Anti-spyware profile.\n", + "operationId": "put-sse-config-v1-anti-spyware-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-profiles" + } + } + }, + "description": "The Anti-spyware profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an Anti-spyware profile", + "tags": [ + "AntiSpywareProfiles" + ] + } + }, + "/sse/config/v1/anti-spyware-signatures": { + "get": { + "description": "Retrieve a list of all [anti-spyware](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware) signatures.\n", + "operationId": "get-sse-config-v1-anti-spyware-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/anti-spyware-signatures" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of Anti-spyware signatures" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all anti-spyware signatures", + "tags": [ + "AntiSpywareSignatures" + ] + }, + "post": { + "description": "Create an [anti-spyware](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-anti-spyware) signature.\n", + "operationId": "post-sse-config-v1-anti-spyware-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-signatures" + } + } + }, + "description": "The Anti-spyware signature you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an anti-spyware signature", + "tags": [ + "AntiSpywareSignatures" + ] + } + }, + "/sse/config/v1/anti-spyware-signatures/{id}": { + "delete": { + "description": "Delete an Anti-spyware signature.\n", + "operationId": "delete-sse-config-v1-anti-spyware-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an Anti-spyware signature", + "tags": [ + "AntiSpywareSignatures" + ] + }, + "put": { + "description": "Modify an Anti-spyware signature.\n", + "operationId": "put-sse-config-v1-anti-spyware-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/anti-spyware-signatures" + } + } + }, + "description": "The Anti-spyware signature you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an Anti-spyware signature", + "tags": [ + "AntiSpywareSignatures" + ] + } + }, + "/sse/config/v1/app-override-rules": { + "get": { + "description": "Retrieve a list of all [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rules.\n", + "operationId": "get-sse-config-v1-app-override-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/app-override-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of application override policy rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all application override rules", + "tags": [ + "ApplicationOverrideRules" + ] + }, + "post": { + "description": "Create an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule.\n", + "operationId": "post-sse-config-v1-app-override-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/app-override-rules" + } + } + }, + "description": "The application override policy rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application override rule", + "tags": [ + "ApplicationOverrideRules" + ] + } + }, + "/sse/config/v1/app-override-rules/{id}": { + "delete": { + "description": "Delete an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule.\n", + "operationId": "delete-sse-config-v1-app-override-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application override rule", + "tags": [ + "ApplicationOverrideRules" + ] + }, + "get": { + "description": "Get an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule by ID.\n", + "operationId": "get-sse-config-v1-app-override-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/app-override-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the remote network by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application override rule by ID", + "tags": [ + "ApplicationOverrideRules" + ] + }, + "put": { + "description": "Edit an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) override rule.\n", + "operationId": "put-sse-config-v1-app-override-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/app-override-rules" + } + } + }, + "description": "The app override policy rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application override rule", + "tags": [ + "ApplicationOverrideRules" + ] + } + }, + "/sse/config/v1/app-override-rules/{id}:move": { + "post": { + "description": "Move an app override rule.\n", + "operationId": "post-sse-config-v1-app-override-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The app override rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move an app override rule", + "tags": [ + "ApplicationOverrideRules" + ] + } + }, + "/sse/config/v1/application-filters": { + "get": { + "description": "Get application filters.\n", + "operationId": "get-sse-config-v1-application-filters", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-filters" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of application filters" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List application filters", + "tags": [ + "ApplicationFilters" + ] + }, + "post": { + "description": "Create an application filter.\n", + "operationId": "post-sse-config-v1-application-filters", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-application-filters" + } + } + }, + "description": "The application filter you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application filter", + "tags": [ + "ApplicationFilters" + ] + } + }, + "/sse/config/v1/application-filters/{id}": { + "delete": { + "description": "Delete an application filter.\n", + "operationId": "delete-sse-config-v1-application-filters-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application filter", + "tags": [ + "ApplicationFilters" + ] + }, + "get": { + "description": "Get an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) filter by ID.\n", + "operationId": "get-sse-config-v1-application-filters-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-filters" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the application filter by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application filter by ID", + "tags": [ + "ApplicationFilters" + ] + }, + "put": { + "description": "Modify an application filter.\n", + "operationId": "put-sse-config-v1-application-filters-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-application-filters" + } + } + }, + "description": "The application filter you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application filter", + "tags": [ + "ApplicationFilters" + ] + } + }, + "/sse/config/v1/application-groups": { + "get": { + "description": "Get application groups.\n", + "operationId": "get-sse-config-v1-application-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of application groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List application groups", + "tags": [ + "ApplicationGroups" + ] + }, + "post": { + "description": "Create an application group.\n", + "operationId": "post-sse-config-v1-application-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-application-groups" + } + } + }, + "description": "The application group you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application group", + "tags": [ + "ApplicationGroups" + ] + } + }, + "/sse/config/v1/application-groups/{id}": { + "delete": { + "description": "Delete an application group.\n", + "operationId": "delete-sse-config-v1-application-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application group", + "tags": [ + "ApplicationGroups" + ] + }, + "get": { + "description": "Get an [application group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/application-groups) by ID.\n", + "operationId": "get-sse-config-v1-application-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-application-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the application group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application group by ID", + "tags": [ + "ApplicationGroups" + ] + }, + "put": { + "description": "Modify an application group.\n", + "operationId": "put-sse-config-v1-application-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "properties": { + "entry": { + "$ref": "#/components/schemas/objects-application-groups" + } + }, + "type": "object" + } + } + }, + "description": "The application group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application group", + "tags": [ + "ApplicationGroups" + ] + } + }, + "/sse/config/v1/applications": { + "get": { + "description": "Get applications.\n", + "operationId": "get-sse-config-v1-applications", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-applications" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of applications" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List applications", + "tags": [ + "Applications" + ] + }, + "post": { + "description": "Create an application.\n", + "operationId": "post-sse-config-v1-applications", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-applications" + } + } + }, + "description": "The application you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an application", + "tags": [ + "Applications" + ] + } + }, + "/sse/config/v1/applications/{id}": { + "delete": { + "description": "Delete an application.\n", + "operationId": "delete-sse-config-v1-applications-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an application", + "tags": [ + "Applications" + ] + }, + "get": { + "description": "Get an [application](https://docs.paloaltonetworks.com/network-security/security-policy/objects/applications) by ID.\n", + "operationId": "get-sse-config-v1-applications-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-applications" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the application by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an application by ID", + "tags": [ + "Applications" + ] + }, + "put": { + "description": "Modify an application.\n", + "operationId": "put-sse-config-v1-applications-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-applications" + } + } + }, + "description": "The application you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an application", + "tags": [ + "Applications" + ] + } + }, + "/sse/config/v1/authentication-portals": { + "get": { + "description": "Retrieve a list of all authentication portals.\n", + "operationId": "get-sse-config-v1-authentication-portals", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-portals" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Get authentication portal" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication portals", + "tags": [ + "AuthenticationPortals" + ] + }, + "post": { + "description": "Create an authentication portal.\n", + "operationId": "post-sse-config-v1-authentication-portals", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-portals" + } + } + }, + "description": "The authentication portal you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication portal", + "tags": [ + "AuthenticationPortals" + ] + } + }, + "/sse/config/v1/authentication-portals/{id}": { + "delete": { + "description": "Delete a authentication portal.\n", + "operationId": "delete-sse-config-v1-authentication-portals-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication portal", + "tags": [ + "AuthenticationPortals" + ] + }, + "put": { + "description": "Modify a authentication portal.\n", + "operationId": "put-sse-config-v1-authentication-portals-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-portals" + } + } + }, + "description": "The authentication portal you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication portal", + "tags": [ + "AuthenticationPortals" + ] + } + }, + "/sse/config/v1/authentication-profiles": { + "get": { + "description": "Retrieve a list of all authentication profiles.\n", + "operationId": "get-sse-config-v1-authentication-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of authentication profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication profiles", + "tags": [ + "AuthenticationProfiles" + ] + }, + "post": { + "description": "Create an authentication profile.\n", + "operationId": "post-sse-config-v1-authentication-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-profiles" + } + } + }, + "description": "The authentication profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + } + }, + "/sse/config/v1/authentication-profiles/{id}": { + "delete": { + "description": "Delete a authentication profile.\n", + "operationId": "delete-sse-config-v1-authentication-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + }, + "get": { + "description": "Get an authentication profile by ID.\n", + "operationId": "get-sse-config-v1-authentication-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get authentication profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + }, + "put": { + "description": "Modify a authentication profile.\n", + "operationId": "put-sse-config-v1-authentication-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-profiles" + } + } + }, + "description": "The authentication profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication profile", + "tags": [ + "AuthenticationProfiles" + ] + } + }, + "/sse/config/v1/authentication-rules": { + "get": { + "description": "Retrieve a list of all [authentication](https://docs.paloaltonetworks.com/network-security/security-policy/objects/authentication) rules.\n", + "operationId": "get-sse-config-v1-authentication-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of authentication rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication rules", + "tags": [ + "AuthenticationRules" + ] + }, + "post": { + "description": "Create an [authentication](https://docs.paloaltonetworks.com/network-security/security-policy/objects/authentication) rule.\n", + "operationId": "post-sse-config-v1-authentication-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-rules" + } + } + }, + "description": "The authentication rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication rule", + "tags": [ + "AuthenticationRules" + ] + } + }, + "/sse/config/v1/authentication-rules/{id}": { + "delete": { + "description": "Delete a authentication rule.\n", + "operationId": "delete-sse-config-v1-authentication-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication rule", + "tags": [ + "AuthenticationRules" + ] + }, + "put": { + "description": "Modify a authentication rule.\n", + "operationId": "put-sse-config-v1-authentication-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-rules" + } + } + }, + "description": "The authentication rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication rule", + "tags": [ + "AuthenticationRules" + ] + } + }, + "/sse/config/v1/authentication-rules/{id}:move": { + "post": { + "description": "Move an authentication rule.\n", + "operationId": "post-sse-config-v1-authentication-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The authentication rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move an authentication rule", + "tags": [ + "AuthenticationRules" + ] + } + }, + "/sse/config/v1/authentication-sequences": { + "get": { + "description": "Retrieve a list of all authentication sequences.\n", + "operationId": "get-sse-config-v1-authentication-sequences", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-sequences" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of authentication sequences" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + }, + "post": { + "description": "Create an authentication sequence.\n", + "operationId": "post-sse-config-v1-authentication-sequences", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-sequences" + } + } + }, + "description": "The authentication sequence you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + } + }, + "/sse/config/v1/authentication-sequences/{id}": { + "delete": { + "description": "Delete a authentication sequence.\n", + "operationId": "delete-sse-config-v1-authentication-sequences-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + }, + "get": { + "description": "Get an authentication sequence by ID.\n", + "operationId": "get-sse-config-v1-authentication-sequences-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-sequences" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get authentication sequence by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + }, + "put": { + "description": "Modify a authentication sequence.\n", + "operationId": "put-sse-config-v1-authentication-sequences-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-sequences" + } + } + }, + "description": "The authentication sequence you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a authentication sequence", + "tags": [ + "AuthenticationSequences" + ] + } + }, + "/sse/config/v1/auto-tag-actions": { + "delete": { + "description": "Delete an [auto tag action](https://docs.paloaltonetworks.com/network-security/security-policy/objects/auto-tag-actions).\n", + "operationId": "delete-sse-config-v1-auto-tag-actions", + "parameters": [ + { + "$ref": "#/components/parameters/name" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete auto tag actions", + "tags": [ + "AutoTagActions" + ] + }, + "get": { + "description": "Get Auto Tag Actions\n", + "operationId": "get-sse-config-v1-auto-tag-actions", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/auto-tag-actions" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of auto-tag-actions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List auto tag actions", + "tags": [ + "AutoTagActions" + ] + }, + "post": { + "description": "Create an [auto tag action](https://docs.paloaltonetworks.com/network-security/security-policy/objects/auto-tag-actions).\n", + "operationId": "post-sse-config-v1-auto-tag-actions", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/auto-tag-actions" + } + } + }, + "description": "The address you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create auto tag actions", + "tags": [ + "AutoTagActions" + ] + }, + "put": { + "description": "Edit an [auto tag action](https://docs.paloaltonetworks.com/network-security/security-policy/objects/auto-tag-actions).\n", + "operationId": "put-sse-config-v1-auto-tag-actions", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/auto-tag-actions" + } + } + }, + "description": "Modify auto tag actions" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit auto tag actions", + "tags": [ + "AutoTagActions" + ] + } + }, + "/sse/config/v1/bandwidth-allocations": { + "delete": { + "description": "Delete an aggregated bandwidth region.", + "operationId": "delete-sse-config-v1-bandwidth-allocations", + "parameters": [ + { + "$ref": "#/components/parameters/aggregated-bandwidth-region-name-required" + }, + { + "$ref": "#/components/parameters/aggregated-bandwidth-spn-name-list-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an aggregated bandwidth region", + "tags": [ + "BandwidthAllocations" + ] + }, + "get": { + "description": "Retrieve all aggregated bandwidth regions.", + "operationId": "get-sse-config-v1-bandwidth-allocations", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/bandwidth-allocations" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of aggregated bandwidth regions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List aggregated bandwidth regions", + "tags": [ + "BandwidthAllocations" + ] + }, + "post": { + "description": "Create an aggregated bandwidth regions.", + "operationId": "post-sse-config-v1-bandwidth-allocations", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/bandwidth-allocations" + } + } + }, + "description": "The aggregated bandwidth region you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create aggregated bandwidth regions", + "tags": [ + "BandwidthAllocations" + ] + }, + "put": { + "description": "Edit an aggregated bandwidth region.", + "operationId": "put-sse-config-v1-bandwidth-allocations", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/bandwidth-allocations" + } + } + }, + "description": "The aggregated bandwidth region you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an aggregated bandwidth region", + "tags": [ + "BandwidthAllocations" + ] + } + }, + "/sse/config/v1/bgp-routing": { + "get": { + "description": "Retrieve BGP routing.", + "operationId": "get-sse-config-v1-bgp-routing", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/bgp-routing" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Bgp routing under service connection folder" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Retrieve BGP routing", + "tags": [ + "ServiceConnections" + ] + }, + "put": { + "description": "Update BGP routing.", + "operationId": "put-sse-config-v1-bgp-routing", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/bgp-routing" + } + } + }, + "description": "The bgp-routing to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Update BGP routing", + "tags": [ + "ServiceConnections" + ] + } + }, + "/sse/config/v1/certificate-profiles": { + "get": { + "description": "List certificate profiles.\n", + "operationId": "get-sse-config-v1-certificate-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/certificate-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of certificate profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List certificate profiles", + "tags": [ + "CertificateProfiles" + ] + }, + "post": { + "description": "Create a certificate profile.\n", + "operationId": "post-sse-config-v1-certificate-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificate-profiles" + } + } + }, + "description": "The certificate profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create certificate profiles", + "tags": [ + "CertificateProfiles" + ] + } + }, + "/sse/config/v1/certificate-profiles/{id}": { + "delete": { + "description": "Delete a certificate profile.\n", + "operationId": "delete-sse-config-v1-certificate-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a certificate profile", + "tags": [ + "CertificateProfiles" + ] + }, + "get": { + "description": "Get a certificate profile by ID.\n", + "operationId": "get-sse-config-v1-certificate-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/certificate-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the certificate profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a certificate profile", + "tags": [ + "CertificateProfiles" + ] + }, + "put": { + "description": "Modify a certificate profile.\n", + "operationId": "put-sse-config-v1-certificate-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificate-profiles" + } + } + }, + "description": "The certificate profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Modify a certificate profile", + "tags": [ + "CertificateProfiles" + ] + } + }, + "/sse/config/v1/certificates": { + "get": { + "description": "List certificates.\n", + "operationId": "get-sse-config-v1-certificates", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/certificates-get" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of certificates info" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List certificates", + "tags": [ + "Certificates" + ] + }, + "post": { + "description": "Create a certificate.\n", + "operationId": "post-sse-config-v1-certificates", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificates-post" + } + } + }, + "description": "The certificate info you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create certificates", + "tags": [ + "Certificates" + ] + } + }, + "/sse/config/v1/certificates/{id}": { + "delete": { + "description": "Delete a certificate.\n", + "operationId": "delete-sse-config-v1-certificates-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete certificates", + "tags": [ + "Certificates" + ] + } + }, + "/sse/config/v1/certificates:import": { + "post": { + "description": "Import a certificate.\n", + "operationId": "post-sse-config-v1-certificates:import", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificates-import" + } + } + }, + "description": "The certificate you want to import" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Import a certificate", + "tags": [ + "Certificates" + ] + } + }, + "/sse/config/v1/config-versions": { + "get": { + "description": "List the candidate configurations.", + "operationId": "get-sse-config-v1-config-versions", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/candidate-config-versions" + }, + "type": "array" + } + ] + } + } + }, + "description": "List the configuration versions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List the candidate configurations", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/candidate": { + "delete": { + "description": "Rollback to the running configuration.", + "operationId": "delete-sse-config-v1-config-versions-candidate", + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Rollback to the running configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/candidate:push": { + "post": { + "description": "Push the candidate configuration.", + "operationId": "post-sse-config-v1-config-versions-candidate:push", + "requestBody": { + "content": { + "application/json": { + "schema": { + "properties": { + "description": { + "type": "string" + }, + "folders": { + "description": "The target folder for the configuration push", + "items": { + "enum": [ + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "folders" + ], + "type": "object" + } + } + }, + "description": "Push the candidate configuration" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Push the candidate configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/running": { + "get": { + "description": "Show the running configuration across each folder.", + "operationId": "get-sse-config-v1-config-versions-running", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/running-config-versions" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of the current running configurations." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Show the running configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions/{version}": { + "get": { + "description": "Get a configuration by version.", + "operationId": "get-sse-config-v1-config-versions-version", + "parameters": [ + { + "$ref": "#/components/parameters/version-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/candidate-config-versions" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get config by version" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a configuration by version", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/config-versions:load": { + "post": { + "description": "Load a Prisma Access configuration using a version retrieved from a \nsnapshot.\n", + "operationId": "post-sse-config-v1-config-versions:load", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/load-config" + } + } + }, + "description": "Load config with specific version" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Load a configuration", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/decryption-exclusions": { + "get": { + "description": "Retrieve all decryption exclusions.", + "operationId": "get-sse-config-v1-decryption-exclusions", + "parameters": [ + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-exclusions" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of decryption exclusions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List decryption exclusions", + "tags": [ + "DecryptionExclusions" + ] + }, + "post": { + "description": "Create a decryption exclusion.", + "operationId": "post-sse-config-v1-decryption-exclusions", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-exclusions" + } + } + }, + "description": "The decryption exclusion you want to add" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a decryption exclusion", + "tags": [ + "DecryptionExclusions" + ] + } + }, + "/sse/config/v1/decryption-exclusions/{id}": { + "delete": { + "description": "Delete a decryption exclusion.\n", + "operationId": "delete-sse-config-v1-decryption-exclusions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a decryption exclusions.", + "tags": [ + "DecryptionExclusions" + ] + }, + "get": { + "description": "Get a decryption exclusion by ID.", + "operationId": "get-sse-config-v1-decryption-exclusions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-exclusions" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the decryption exclusions by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a decryption exclusion by ID", + "tags": [ + "DecryptionExclusions" + ] + }, + "put": { + "description": "Modify a decryption exclusion.\n", + "operationId": "put-sse-config-v1-decryption-exclusions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-exclusions" + } + } + }, + "description": "The decryption exclusions you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a decryption exclusion", + "tags": [ + "DecryptionExclusions" + ] + } + }, + "/sse/config/v1/decryption-profiles": { + "get": { + "description": "Retrieve all [decryption profiles](https://docs.paloaltonetworks.com/network-security/security-policy/objects/decryption-profile).", + "operationId": "get-sse-config-v1-decryption-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of http decryption profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List decryption profiles", + "tags": [ + "DecryptionProfiles" + ] + }, + "post": { + "description": "Create a [decryption profile](https://docs.paloaltonetworks.com/network-security/security-policy/objects/decryption-profile).", + "operationId": "post-sse-config-v1-decryption-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-profiles" + } + } + }, + "description": "The decryption profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a decryption profile", + "tags": [ + "DecryptionProfiles" + ] + } + }, + "/sse/config/v1/decryption-profiles/{id}": { + "delete": { + "description": "Delete a decryption profile.\n", + "operationId": "delete-sse-config-v1-decryption-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a decryption profile", + "tags": [ + "DecryptionProfiles" + ] + }, + "get": { + "description": "Get a [decryption profile](https://docs.paloaltonetworks.com/network-security/security-policy/objects/decryption-profile) by ID.", + "operationId": "get-sse-config-v1-decryption-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the decryption profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a decryption profile by ID", + "tags": [ + "DecryptionProfiles" + ] + }, + "put": { + "description": "Modify a decryption profile.\n", + "operationId": "put-sse-config-v1-decryption-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-profiles" + } + } + }, + "description": "The decryption profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a decryption profile", + "tags": [ + "DecryptionProfiles" + ] + } + }, + "/sse/config/v1/decryption-rules": { + "get": { + "description": "Retrieve all decryption rules.\n", + "operationId": "get-sse-config-v1-decryption-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of decryption rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List decryption rules", + "tags": [ + "DecryptionRules" + ] + }, + "post": { + "description": "Create a decryption rule.\n", + "operationId": "post-sse-config-v1-decryption-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-rules" + } + } + }, + "description": "The decryption rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a decryption rule", + "tags": [ + "DecryptionRules" + ] + } + }, + "/sse/config/v1/decryption-rules/{id}": { + "delete": { + "description": "Delete a decryption rule.\n", + "operationId": "delete-sse-config-v1-decryption-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a decryption rule", + "tags": [ + "DecryptionRules" + ] + }, + "get": { + "description": "Get a decryption rule by ID.\n", + "operationId": "get-sse-config-v1-decryption-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/decryption-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the decryption rule by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a decryption rule by ID", + "tags": [ + "DecryptionRules" + ] + }, + "put": { + "description": "Modify a decryption rule.\n", + "operationId": "put-sse-config-v1-decryption-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/decryption-rules" + } + } + }, + "description": "The decryption rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a decryption rule", + "tags": [ + "DecryptionRules" + ] + } + }, + "/sse/config/v1/decryption-rules/{id}:move": { + "post": { + "description": "Move a decryption rule.\n", + "operationId": "post-sse-config-v1-decryption-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The decryption rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move a decryption rule", + "tags": [ + "DecryptionRules" + ] + } + }, + "/sse/config/v1/dns-security-profiles": { + "get": { + "description": "Retrieve all [DNS security profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-dns-security).", + "operationId": "get-sse-config-v1-dns-security-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/dns-security-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of DNS security profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List DNS security profiles", + "tags": [ + "DNSSecurityProfiles" + ] + }, + "post": { + "description": "Create a [DNS security profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-dns-security).", + "operationId": "post-sse-config-v1-dns-security-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/dns-security-profiles" + } + } + }, + "description": "The DNS Security Profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a DNS security profile", + "tags": [ + "DNSSecurityProfiles" + ] + } + }, + "/sse/config/v1/dns-security-profiles/{id}": { + "delete": { + "description": "Delete an DNS Security Profile.\n", + "operationId": "delete-sse-config-v1-dns-security-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an DNS Security Profile", + "tags": [ + "DNSSecurityProfiles" + ] + }, + "get": { + "description": "Get a [DNS security profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-dns-security) by ID.", + "operationId": "get-sse-config-v1-dns-security-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/dns-security-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the dns security profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a DNS security profile by ID", + "tags": [ + "DNSSecurityProfiles" + ] + }, + "put": { + "description": "Modify an DNS Security Profile.\n", + "operationId": "put-sse-config-v1-dns-security-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/dns-security-profiles" + } + } + }, + "description": "The DNS Security Profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an DNS Security Profile", + "tags": [ + "DNSSecurityProfiles" + ] + } + }, + "/sse/config/v1/dynamic-user-groups": { + "get": { + "description": "Get dynamic user groups.\n", + "operationId": "get-sse-config-v1-dynamic-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of dynamic user groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List dynamic user groups", + "tags": [ + "DynamicUserGroups" + ] + }, + "post": { + "description": "Create a dynamic user group.\n", + "operationId": "post-sse-config-v1-dynamic-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + } + } + }, + "description": "The dynamic user group you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a dynamic user group", + "tags": [ + "DynamicUserGroups" + ] + } + }, + "/sse/config/v1/dynamic-user-groups/{id}": { + "delete": { + "description": "Delete a dynamic user group.\n", + "operationId": "delete-sse-config-v1-dynamic-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a dynamic user group", + "tags": [ + "DynamicUserGroups" + ] + }, + "get": { + "description": "Get a [dynamic user group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/dynamic-user-groups) by ID.\n", + "operationId": "get-sse-config-v1-dynamic-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the dynamic user group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a dynamic user group by ID", + "tags": [ + "DynamicUserGroups" + ] + }, + "put": { + "description": "Modify a dynamic user group.\n", + "operationId": "put-sse-config-v1-dynamic-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-dynamic-user-groups" + } + } + }, + "description": "The dynamic user group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a dynamic user group", + "tags": [ + "DynamicUserGroups" + ] + } + }, + "/sse/config/v1/enable": { + "post": { + "description": "Set up application defaults for a newly on-boarded tenant. This replaces the initialization\nperformed by the Prisma Access Cloud-Managed user interface when a tenant is initially\ncreated.\n\nUse this API after you have [created a tenant](/sase/api/subscription/post-subscription-v-1-instances/) and claimed\nyour Prisma Access license for that tenant.\n", + "operationId": "post-sse-config-v1-enable", + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Set up application defaults", + "tags": [ + "InfrastructureSettings" + ] + } + }, + "/sse/config/v1/external-dynamic-lists": { + "get": { + "description": "Get external dynamic lists.\n", + "operationId": "get-sse-config-v1-external-dynamic-lists", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of external dynamic lists" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List external dynamic lists", + "tags": [ + "ExternalDynamicLists" + ] + }, + "post": { + "description": "Create an [external dynamic list](https://docs.paloaltonetworks.com/network-security/security-policy/objects/external-dynamic-lists).\n", + "operationId": "post-sse-config-v1-external-dynamic-lists", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + } + } + }, + "description": "The EDL you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an external dynamic list", + "tags": [ + "ExternalDynamicLists" + ] + } + }, + "/sse/config/v1/external-dynamic-lists/{id}": { + "delete": { + "description": "Delete an external dynamic list.\n", + "operationId": "delete-sse-config-v1-external-dynamic-lists-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an external dynamic list.", + "tags": [ + "ExternalDynamicLists" + ] + }, + "get": { + "description": "Get an [external dynamic list](https://docs.paloaltonetworks.com/network-security/security-policy/objects/external-dynamic-lists) by ID.\n", + "operationId": "get-sse-config-v1-external-dynamic-lists-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get security rule by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an external dynamic list", + "tags": [ + "ExternalDynamicLists" + ] + }, + "put": { + "description": "Modify an external dynamic list.\n", + "operationId": "put-sse-config-v1-external-dynamic-lists-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-external-dynamic-lists" + } + } + }, + "description": "The EDL you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an external dynamic list.", + "tags": [ + "ExternalDynamicLists" + ] + } + }, + "/sse/config/v1/file-blocking-profiles": { + "get": { + "description": "Retrieve all [file blocking profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-file-blocking).", + "operationId": "get-sse-config-v1-file-blocking-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/file-blocking-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of File-blocking profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List file blocking profiles", + "tags": [ + "FileBlockingProfiles" + ] + }, + "post": { + "description": "Create a [file blocking profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-file-blocking).", + "operationId": "post-sse-config-v1-file-blocking-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/file-blocking-profiles" + } + } + }, + "description": "The File-blocking profiles you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a file blocking profile", + "tags": [ + "FileBlockingProfiles" + ] + } + }, + "/sse/config/v1/file-blocking-profiles/{id}": { + "delete": { + "description": "Delete an File-blocking profiles.\n", + "operationId": "delete-sse-config-v1-file-blocking-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an File-blocking profiles", + "tags": [ + "FileBlockingProfiles" + ] + }, + "get": { + "description": "Get a [file blocking profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-file-blocking) by ID.", + "operationId": "get-sse-config-v1-file-blocking-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/file-blocking-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the file blocking profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a file blocking profile by ID", + "tags": [ + "FileBlockingProfiles" + ] + }, + "put": { + "description": "Modify an File-blocking profiles.\n", + "operationId": "put-sse-config-v1-file-blocking-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/file-blocking-profiles" + } + } + }, + "description": "The File-blocking profiles you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an File-blocking profiles", + "tags": [ + "FileBlockingProfiles" + ] + } + }, + "/sse/config/v1/hip-objects": { + "get": { + "description": "Get Hip objects.\n", + "operationId": "get-sse-config-v1-hip-objects", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-objects" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of hip objects" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List hip objects", + "tags": [ + "HIPObjects" + ] + }, + "post": { + "description": "Create a hip object.\n", + "operationId": "post-sse-config-v1-hip-objects", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-objects" + } + } + }, + "description": "The hip object you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a hip object", + "tags": [ + "HIPObjects" + ] + } + }, + "/sse/config/v1/hip-objects/{id}": { + "delete": { + "description": "Delete a hip object.\n", + "operationId": "delete-sse-config-v1-hip-objects-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a hip object", + "tags": [ + "HIPObjects" + ] + }, + "get": { + "description": "Get a [HIP object](https://docs.paloaltonetworks.com/network-security/security-policy/objects/hip-objects) by ID.\n", + "operationId": "get-sse-config-v1-hip-objects-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-objects" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the hip object by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a HIP object by ID", + "tags": [ + "HIPObjects" + ] + }, + "put": { + "description": "Modify a hip object.\n", + "operationId": "put-sse-config-v1-hip-objects-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-objects" + } + } + }, + "description": "The hip object you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a hip object", + "tags": [ + "HIPObjects" + ] + } + }, + "/sse/config/v1/hip-profiles": { + "get": { + "description": "Get Hip profiles.\n", + "operationId": "get-sse-config-v1-hip-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of hip profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List hip profiles", + "tags": [ + "HIPProfiles" + ] + }, + "post": { + "description": "Create a hip profile.\n", + "operationId": "post-sse-config-v1-hip-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-profiles" + } + } + }, + "description": "The hip profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a hip profile", + "tags": [ + "HIPProfiles" + ] + } + }, + "/sse/config/v1/hip-profiles/{id}": { + "delete": { + "description": "Delete a hip profile.\n", + "operationId": "delete-sse-config-v1-hip-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a hip profile", + "tags": [ + "HIPProfiles" + ] + }, + "get": { + "description": "Get a [HIP profile](https://docs.paloaltonetworks.com/network-security/security-policy/objects/hip-profiles) by ID.\n", + "operationId": "get-sse-config-v1-hip-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-hip-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the hip profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a HIP profile by ID", + "tags": [ + "HIPProfiles" + ] + }, + "put": { + "description": "Modify a hip profile.\n", + "operationId": "put-sse-config-v1-hip-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-hip-profiles" + } + } + }, + "description": "The hip profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a hip profile", + "tags": [ + "HIPProfiles" + ] + } + }, + "/sse/config/v1/http-header-profiles": { + "get": { + "description": "Retrieve all HTTP header profiles.", + "operationId": "get-sse-config-v1-http-header-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/http-header-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of http header profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List HTTP header profiles", + "tags": [ + "HTTPHeaderProfiles" + ] + }, + "post": { + "description": "Create a HTTP header profile.", + "operationId": "post-sse-config-v1-http-header-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/http-header-profiles" + } + } + }, + "description": "The http header profiles you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a HTTP header profile", + "tags": [ + "HTTPHeaderProfiles" + ] + } + }, + "/sse/config/v1/http-header-profiles/{id}": { + "delete": { + "description": "Delete a http header profiles.\n", + "operationId": "delete-sse-config-v1-http-header-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a http header profiles", + "tags": [ + "HTTPHeaderProfiles" + ] + }, + "get": { + "description": "Get a HTTP header profile by ID.", + "operationId": "get-sse-config-v1-http-header-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/http-header-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the http header profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a HTTP header profile by ID", + "tags": [ + "HTTPHeaderProfiles" + ] + }, + "put": { + "description": "Modify a http header profiles.\n", + "operationId": "put-sse-config-v1-http-header-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/http-header-profiles" + } + } + }, + "description": "The http header profiles you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a http header profiles", + "tags": [ + "HTTPHeaderProfiles" + ] + } + }, + "/sse/config/v1/ike-crypto-profiles": { + "get": { + "description": "Retrieve IKE crypto profiles.", + "operationId": "get-sse-config-v1-ike-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-crypto-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ike crypto profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IKE crypto profiles", + "tags": [ + "IKECryptoProfiles" + ] + }, + "post": { + "description": "Create an IKE crypto profile.", + "operationId": "post-sse-config-v1-ike-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-crypto-profiles" + } + } + }, + "description": "The ike crypto profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IKE crypto profiles", + "tags": [ + "IKECryptoProfiles" + ] + } + }, + "/sse/config/v1/ike-crypto-profiles/{id}": { + "delete": { + "description": "Delete a ike crypto profile.\n", + "operationId": "delete-sse-config-v1-ike-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ike crypto profile.", + "tags": [ + "IKECryptoProfiles" + ] + }, + "get": { + "description": "Get an IKE crypto profile.", + "operationId": "get-sse-config-v1-ike-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-crypto-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ike crypto profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IKE crypto profile", + "tags": [ + "IKECryptoProfiles" + ] + }, + "put": { + "description": "Modify a ike crypto profile.\n", + "operationId": "put-sse-config-v1-ike-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-crypto-profiles" + } + } + }, + "description": "The ike crypto profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ike crypto profile.", + "tags": [ + "IKECryptoProfiles" + ] + } + }, + "/sse/config/v1/ike-gateways": { + "get": { + "description": "Retrieve IKE gateway.", + "operationId": "get-sse-config-v1-ike-gateways", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-gateways" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ike gateways" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IKE gateways", + "tags": [ + "IKEGateways" + ] + }, + "post": { + "description": "Create an IKE gateway.", + "operationId": "post-sse-config-v1-ike-gateways", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-gateways" + } + } + }, + "description": "The ike gateway you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IKE gateways", + "tags": [ + "IKEGateways" + ] + } + }, + "/sse/config/v1/ike-gateways/{id}": { + "delete": { + "description": "Delete a ike gateway.\n", + "operationId": "delete-sse-config-v1-ike-gateways-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ike gateway.", + "tags": [ + "IKEGateways" + ] + }, + "get": { + "description": "Get an IKE gateway.", + "operationId": "get-sse-config-v1-ike-gateways-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ike-gateways" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ike gateway by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IKE gateway", + "tags": [ + "IKEGateways" + ] + }, + "put": { + "description": "Modify a ike gateway.\n", + "operationId": "put-sse-config-v1-ike-gateways-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ike-gateways" + } + } + }, + "description": "The ike gateway you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ike gateway.", + "tags": [ + "IKEGateways" + ] + } + }, + "/sse/config/v1/internal-dns-servers": { + "get": { + "description": "List all internal DNS servers.", + "operationId": "get-sse-config-v1-internal-dns-servers", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/internal-dns-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the internal dns server by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List internal DNS servers", + "tags": [ + "InternalDNSServers" + ] + }, + "post": { + "description": "Create an internal DNS server.", + "operationId": "post-sse-config-v1-internal-dns-servers", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/internal-dns-servers" + } + } + }, + "description": "The internal dns server you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + } + }, + "/sse/config/v1/internal-dns-servers/{id}": { + "delete": { + "description": "Delete an internal DNS server.", + "operationId": "delete-sse-config-v1-internal-dns-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + }, + "get": { + "description": "Get an internal DNS server.", + "operationId": "get-sse-config-v1-internal-dns-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/internal-dns-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the internal dns server by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + }, + "put": { + "description": "Edit an internal DNS server.", + "operationId": "put-sse-config-v1-internal-dns-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/internal-dns-servers" + } + } + }, + "description": "The internal dns server you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an internal DNS server", + "tags": [ + "InternalDNSServers" + ] + } + }, + "/sse/config/v1/ipsec-crypto-profiles": { + "get": { + "description": "Retrieve IPSec crypto profiles.", + "operationId": "get-sse-config-v1-ipsec-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ipsec crypto profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IPSec crypto profiles", + "tags": [ + "IPSecCryptoProfiles" + ] + }, + "post": { + "description": "Create an IPSec crypto profile.", + "operationId": "post-sse-config-v1-ipsec-crypto-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + } + } + }, + "description": "The ipsec crypto profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IPSec crypto profiles", + "tags": [ + "IPSecCryptoProfiles" + ] + } + }, + "/sse/config/v1/ipsec-crypto-profiles/{id}": { + "delete": { + "description": "Delete a ipsec crypto profile.\n", + "operationId": "delete-sse-config-v1-ipsec-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ipsec crypto profile.", + "tags": [ + "IPSecCryptoProfiles" + ] + }, + "get": { + "description": "Get an IPSec crypto profile.", + "operationId": "get-sse-config-v1-ipsec-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ipsec crypto profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IPSec crypto profile", + "tags": [ + "IPSecCryptoProfiles" + ] + }, + "put": { + "description": "Modify a ipsec crypto profile.\n", + "operationId": "put-sse-config-v1-ipsec-crypto-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-crypto-profiles" + } + } + }, + "description": "The ipsec crypto profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ipsec crypto profile.", + "tags": [ + "IPSecCryptoProfiles" + ] + } + }, + "/sse/config/v1/ipsec-tunnels": { + "get": { + "description": "Retrieve IPSec tunnels.", + "operationId": "get-sse-config-v1-ipsec-tunnels", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-tunnels" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ipsec tunnels" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List IPSec tunnels", + "tags": [ + "IPSecTunnels" + ] + }, + "post": { + "description": "Create an IPSec tunnel.", + "operationId": "post-sse-config-v1-ipsec-tunnels", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-tunnels" + } + } + }, + "description": "The ipsec tunnel you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create IPSec tunnels", + "tags": [ + "IPSecTunnels" + ] + } + }, + "/sse/config/v1/ipsec-tunnels/{id}": { + "delete": { + "description": "Delete a ipsec tunnel.\n", + "operationId": "delete-sse-config-v1-ipsec-tunnels-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ipsec tunnel.", + "tags": [ + "IPSecTunnels" + ] + }, + "get": { + "description": "Get an IPSec tunnel.", + "operationId": "get-sse-config-v1-ipsec-tunnels-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ipsec-tunnels" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ipsec tunnel by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an IPSec tunnel", + "tags": [ + "IPSecTunnels" + ] + }, + "put": { + "description": "Modify a ipsec tunnel.\n", + "operationId": "put-sse-config-v1-ipsec-tunnels-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ipsec-tunnels" + } + } + }, + "description": "The ipsec tunnel you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ipsec tunnel.", + "tags": [ + "IPSecTunnels" + ] + } + }, + "/sse/config/v1/jobs": { + "get": { + "description": "Retrieves the Prisma Access \n[configuration jobs](https://docs.paloaltonetworks.com/prisma/prisma-access/prisma-access-cloud-managed-admin/administer-prisma-access/view-the-prisma-access-jobs.html) \nhistory.\n", + "operationId": "get-sse-config-v1-jobs", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/jobs" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of jobs" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List configuration jobs", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/jobs/{id}": { + "get": { + "description": "Retrieves a Prisma Access \n[configuration job](https://docs.paloaltonetworks.com/prisma/prisma-access/prisma-access-cloud-managed-admin/administer-prisma-access/view-the-prisma-access-jobs.html) using its ID.\nhistory.\n", + "operationId": "get-sse-config-v1-jobs-id", + "parameters": [ + { + "$ref": "#/components/parameters/jobid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/jobs" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the job by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List a configuration job by ID", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/kerberos-server-profiles": { + "get": { + "description": "Retrieve a list of all Kerberos server profiles.\n", + "operationId": "get-sse-config-v1-kerberos-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/kerberos-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of kerberos server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all Kerberos server profiles", + "tags": [ + "KerberosServerProfiles" + ] + }, + "post": { + "description": "Create a Kerberos server profile.\n", + "operationId": "post-sse-config-v1-kerberos-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/kerberos-server-profiles" + } + } + }, + "description": "The kerberos server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a Kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + } + }, + "/sse/config/v1/kerberos-server-profiles/{id}": { + "delete": { + "description": "Delete a kerberos server profile.\n", + "operationId": "delete-sse-config-v1-kerberos-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + }, + "get": { + "description": "Get a Kerberos server profile by ID.\n", + "operationId": "get-sse-config-v1-kerberos-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/kerberos-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get kerberos server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a Kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + }, + "put": { + "description": "Modify a kerberos server profile.\n", + "operationId": "put-sse-config-v1-kerberos-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/kerberos-server-profiles" + } + } + }, + "description": "The kerberos server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a kerberos server profile", + "tags": [ + "KerberosServerProfiles" + ] + } + }, + "/sse/config/v1/ldap-server-profiles": { + "get": { + "description": "Retrieve a list of all LDAP server profiles.\n", + "operationId": "get-sse-config-v1-ldap-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ldap-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of ldap server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all LDAP server profiles", + "tags": [ + "LDAPServerProfiles" + ] + }, + "post": { + "description": "Create an LDAP server profile.\n", + "operationId": "post-sse-config-v1-ldap-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ldap-server-profiles" + } + } + }, + "description": "The ldap server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create an LDAP server profile", + "tags": [ + "LDAPServerProfiles" + ] + } + }, + "/sse/config/v1/ldap-server-profiles/{id}": { + "delete": { + "description": "Delete a ldap server profile.\n", + "operationId": "delete-sse-config-v1-ldap-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a ldap server profile", + "tags": [ + "LDAPServerProfiles" + ] + }, + "get": { + "description": "Get an LDAP server profile by ID.\n", + "operationId": "get-sse-config-v1-ldap-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ldap-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get ldap server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an LDAP server profile", + "tags": [ + "LDAPServerProfiles" + ] + }, + "put": { + "description": "Modify a ldap server profile.\n", + "operationId": "put-sse-config-v1-ldap-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ldap-server-profiles" + } + } + }, + "description": "The ldap server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a ldap server profile", + "tags": [ + "LDAPServerProfiles" + ] + } + }, + "/sse/config/v1/license-types": { + "get": { + "description": "Show your Prisma Access licenses.\n", + "operationId": "get-sse-config-v1-license-types", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/license-types" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of license types" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List licenses", + "tags": [ + "LicenseTypes" + ] + } + }, + "/sse/config/v1/local-user-groups": { + "get": { + "description": "List all local user groups.", + "operationId": "get-sse-config-v1-local-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-user-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of local user groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List local user groups", + "tags": [ + "LocalUserGroups" + ] + }, + "post": { + "description": "Create local user groups.", + "operationId": "post-sse-config-v1-local-user-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-user-groups" + } + } + }, + "description": "The local user you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create local user groups", + "tags": [ + "LocalUserGroups" + ] + } + }, + "/sse/config/v1/local-user-groups/{id}": { + "delete": { + "description": "Delete a local user group.", + "operationId": "delete-sse-config-v1-local-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a local user group", + "tags": [ + "LocalUserGroups" + ] + }, + "get": { + "description": "Get a local user group.", + "operationId": "get-sse-config-v1-local-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-user-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get local user group by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a local user group", + "tags": [ + "LocalUserGroups" + ] + }, + "put": { + "description": "Edit a local user group.", + "operationId": "put-sse-config-v1-local-user-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-user-groups" + } + } + }, + "description": "The local user you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a local user group", + "tags": [ + "LocalUserGroups" + ] + } + }, + "/sse/config/v1/local-users": { + "get": { + "description": "Retrieve a list of all local users.\n", + "operationId": "get-sse-config-v1-local-users", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-users" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of local users" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all local users", + "tags": [ + "LocalUsers" + ] + }, + "post": { + "description": "Create a local user.\n", + "operationId": "post-sse-config-v1-local-users", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-users" + } + } + }, + "description": "The local user you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a local user", + "tags": [ + "LocalUsers" + ] + } + }, + "/sse/config/v1/local-users/{id}": { + "delete": { + "description": "Delete a local user.\n", + "operationId": "delete-sse-config-v1-local-users-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a local user", + "tags": [ + "LocalUsers" + ] + }, + "get": { + "description": "Get a local user by ID.\n", + "operationId": "get-sse-config-v1-local-users-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/local-users" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get local user by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a local user", + "tags": [ + "LocalUsers" + ] + }, + "put": { + "description": "Modify a local user.\n", + "operationId": "put-sse-config-v1-local-users-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/local-users" + } + } + }, + "description": "The local user you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a local user", + "tags": [ + "LocalUsers" + ] + } + }, + "/sse/config/v1/locations": { + "get": { + "description": "Retrieve Prisma Access locations.\n", + "operationId": "get-sse-config-v1-locations", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/locations" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of locations" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List locations", + "tags": [ + "Locations" + ] + } + }, + "/sse/config/v1/mfa-servers": { + "get": { + "description": "Retrieve a list of all multi-factor authentication servers.\n", + "operationId": "get-sse-config-v1-mfa-servers", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mfa-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get mfa server" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all MFA servers", + "tags": [ + "MFAServers" + ] + }, + "post": { + "description": "Create a multi-factor authentication server.\n", + "operationId": "post-sse-config-v1-mfa-servers", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mfa-servers" + } + } + }, + "description": "The mfa server you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a MFA server", + "tags": [ + "MFAServers" + ] + } + }, + "/sse/config/v1/mfa-servers/{id}": { + "delete": { + "description": "Delete a mfa server.\n", + "operationId": "delete-sse-config-v1-mfa-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a mfa server", + "tags": [ + "MFAServers" + ] + }, + "get": { + "description": "Get a multi-factor authenticatoin server by ID.\n", + "operationId": "get-sse-config-v1-mfa-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mfa-servers" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get authentication sequence by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a MFA server", + "tags": [ + "MFAServers" + ] + }, + "put": { + "description": "Modify a mfa server.\n", + "operationId": "put-sse-config-v1-mfa-servers-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mfa-servers" + } + } + }, + "description": "The mfa server you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a mfa server", + "tags": [ + "MFAServers" + ] + } + }, + "/sse/config/v1/mobile-agent/agent-profiles": { + "delete": { + "description": "Delete GlobalProtect agent profiles.\n", + "operationId": "delete-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete agent profiles", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "Retrieve GlobalProtect agent profiles.\n", + "operationId": "get-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/agent-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Get App Settings for GP" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get agent profiles", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create GlobalProtect agent profiles.\n", + "operationId": "post-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/agent-profiles" + } + } + }, + "description": "The app settings for Global Protect you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create agent profiles", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Change GlobalProtect agent profiles.\n", + "operationId": "put-sse-config-v1-mobile-agent-agent-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/agent-profiles" + } + } + }, + "description": "The app settings to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Change agent profiles", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/agent-versions": { + "get": { + "description": "Retrieves a list of available GlobalProtect agent versions.\n", + "operationId": "get-sse-config-v1-mobile-agent-agent-versions", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "items": { + "type": "string" + }, + "type": "array" + } + } + }, + "description": "Show list of available agent versions under Global Protect (Mobile Agent)" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get available agent versions", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/authentication-settings": { + "delete": { + "description": "Delete GlobalProtect authentication settings.\n", + "operationId": "delete-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete authentication settings\n", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "Get the authentication settings configured for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/authentication-settings" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of GlobalProtect authentication settings.\n" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get authentication settings\n", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create authentication settings for GlobalProtect.\n", + "operationId": "post-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-settings" + } + } + }, + "description": "The authentication settings you want to create for GlobalProtect.\n" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create authentication settings\n", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit authentication settings for GlobalProtect.\n", + "operationId": "put-sse-config-v1-mobile-agent-authentication-settings", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/authentication-settings" + } + } + }, + "description": "The authentication settings you want to edit.\n" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit authentication settings\n", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/enable": { + "get": { + "description": "Indicates whether mobile agent (GlobalProtect) is enabled for your configuration.\n", + "operationId": "get-sse-config-v1-mobile-agent-enable", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "properties": { + "enabled": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + } + } + }, + "description": "To check if current mobile agent is enabled" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Indicates whether mobile agent is enabled", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Enable mobile agent (GlobalProtect).\n", + "operationId": "post-sse-config-v1-mobile-agent-enable", + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Enable mobile agent (GlobalProtect)", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/global-settings": { + "get": { + "description": "Show the global settings configured for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-global-settings", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-global-settings" + } + } + }, + "description": "List of GlobalProtect global settings.\n" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get global settings\n", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit the global settings configured for GlobalProtect.\n", + "operationId": "put-sse-config-v1-mobile-agent-global-settings", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-global-settings" + } + } + }, + "description": "Edit GlobalProtect global settings.\n" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit global settings\n", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/infrastructure-settings": { + "delete": { + "description": "Delete GlobalProtect infrastructure settings.\n", + "operationId": "delete-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete infrastructure settings", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "List infrastructure settings for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mobile-agent-infrastructure-settings" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of infrastructure settings under Global Protect" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Show infrastructure settings\n", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create GlobalProtect infrastructure settings.\n", + "operationId": "post-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-infrastructure-settings" + } + } + }, + "description": "The GlobalProtect infrastructure settings that you want to create.\n" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create infrastructure settings", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit your GlobalProtect infrastructure settings.\n", + "operationId": "put-sse-config-v1-mobile-agent-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-infrastructure-settings" + } + } + }, + "description": "The GlobalProtect infrastructure settings that you want to edit.\n" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit GlobalProtect infrastructure settings", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/locations": { + "get": { + "description": "Get Prisma Access locations configured for GlobalProtect.\n", + "operationId": "get-sse-config-v1-mobile-agent-locations", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/mobile-agent-locations" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of GlobalProtect Prisma Access locations.\n" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get Prisma Access locations", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Edit Prisma Access locations configured for GlobalProtect.\n", + "operationId": "put-sse-config-v1-mobile-agent-locations", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/mobile-agent-locations" + } + } + }, + "description": "The locations to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit Prisma Access locations", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/tunnel-profiles": { + "delete": { + "description": "Delete GlobalProtect tunnel profiles.\n", + "operationId": "delete-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete tunnel profiles", + "tags": [ + "MobileAgent" + ] + }, + "get": { + "description": "Retrieve GlobalProtect tunnel profiles.\n", + "operationId": "get-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tunnel-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "Get tunnel settings for GP" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get tunnel profiles", + "tags": [ + "MobileAgent" + ] + }, + "post": { + "description": "Create GlobalProtect tunnel profiles.\n", + "operationId": "post-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tunnel-profiles" + } + } + }, + "description": "The tunnel settings for Global Protect you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create tunnel profiles", + "tags": [ + "MobileAgent" + ] + }, + "put": { + "description": "Update GlobalProtect tunnel profiles.\n", + "operationId": "put-sse-config-v1-mobile-agent-tunnel-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/name" + }, + { + "$ref": "#/components/parameters/folder-mobile-users" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tunnel-profiles" + } + } + }, + "description": "The tunnel settings to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Update tunnel profiles", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/mobile-agent/user-authentication:move": { + "post": { + "description": "Move authentication settings.\n", + "operationId": "post-sse-config-v1-mobile-agent-user-authentication:move", + "parameters": [ + { + "$ref": "#/components/parameters/folder-mobile-users" + }, + { + "$ref": "#/components/parameters/name" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/move-auth-settings" + } + } + }, + "description": "The authentication settings for Global Protect you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move authentication settings\n", + "tags": [ + "MobileAgent" + ] + } + }, + "/sse/config/v1/ocsp-responder": { + "get": { + "description": "Retrieve OCSP responders.", + "operationId": "get-sse-config-v1-ocsp-responder", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ocsp-responder" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of OCSP responders" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List OCSP responders", + "tags": [ + "OCSPResponder" + ] + }, + "post": { + "description": "Create an OCSP responder.", + "operationId": "post-sse-config-v1-ocsp-responder", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ocsp-responder" + } + } + }, + "description": "The OCSP responder you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create OCSP responders", + "tags": [ + "OCSPResponder" + ] + } + }, + "/sse/config/v1/ocsp-responder/{id}": { + "delete": { + "description": "Delete an OCSP responder.", + "operationId": "delete-sse-config-v1-ocsp-responder-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an OCSP responder.", + "tags": [ + "OCSPResponder" + ] + }, + "get": { + "description": "Retrieve OCSP responders by ID.", + "operationId": "get-sse-config-v1-ocsp-responder-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/ocsp-responder" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the ocsp responder by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an OCSP responder", + "tags": [ + "OCSPResponder" + ] + }, + "put": { + "description": "Modify a OCSP responder.\n", + "operationId": "put-sse-config-v1-ocsp-responder-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ocsp-responder" + } + } + }, + "description": "The OCSP responder you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an OCSP responder.", + "tags": [ + "OCSPResponder" + ] + } + }, + "/sse/config/v1/profile-groups": { + "get": { + "description": "Retrieve all [profile groups](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-groups).\n", + "operationId": "get-sse-config-v1-profile-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/profile-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of profile groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List profile groups", + "tags": [ + "ProfileGroups" + ] + }, + "post": { + "description": "Create profile groups.\n", + "operationId": "post-sse-config-v1-profile-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder-noserviceconnection" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/profile-groups" + } + } + }, + "description": "The profile group you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create profile groups", + "tags": [ + "ProfileGroups" + ] + } + }, + "/sse/config/v1/profile-groups/{id}": { + "delete": { + "description": "Delete a profile group.\n", + "operationId": "delete-sse-config-v1-profile-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a profile group", + "tags": [ + "ProfileGroups" + ] + }, + "get": { + "description": "Get a [profile group](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-groups).\n", + "operationId": "get-sse-config-v1-profile-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/profile-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the profile group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a profile group", + "tags": [ + "ProfileGroups" + ] + }, + "put": { + "description": "Modify a profile group.\n", + "operationId": "put-sse-config-v1-profile-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/profile-groups" + } + } + }, + "description": "The profile group you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a profile group", + "tags": [ + "ProfileGroups" + ] + } + }, + "/sse/config/v1/qos-policy-rules": { + "get": { + "description": "Retrieve all QoS policy rules.", + "operationId": "get-sse-config-v1-qos-policy-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/position" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-policy-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of qos policy rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List QoS policy rules", + "tags": [ + "QoSPolicyRules" + ] + }, + "post": { + "description": "Create a QoS policy rule.", + "operationId": "post-sse-config-v1-qos-policy-rules", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/position" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-policy-rules" + } + } + }, + "description": "The qos policy rule you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a QoS policy rule", + "tags": [ + "QoSPolicyRules" + ] + } + }, + "/sse/config/v1/qos-policy-rules/{id}": { + "delete": { + "description": "Delete a qos policy rule.\n", + "operationId": "delete-sse-config-v1-qos-policy-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a qos policy rule.", + "tags": [ + "QoSPolicyRules" + ] + }, + "get": { + "description": "Get a QoS policy rule by ID.", + "operationId": "get-sse-config-v1-qos-policy-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-policy-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the qos policy rule by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a QoS policy rule by ID", + "tags": [ + "QoSPolicyRules" + ] + }, + "put": { + "description": "Modify a qos policy rule.\n", + "operationId": "put-sse-config-v1-qos-policy-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-policy-rules" + } + } + }, + "description": "The qos policy rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a qos policy rule.", + "tags": [ + "QoSPolicyRules" + ] + } + }, + "/sse/config/v1/qos-policy-rules/{id}:move": { + "post": { + "description": "Move a qos policy rule.\n", + "operationId": "post-sse-config-v1-qos-policy-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The qos policy rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move a qos policy rule", + "tags": [ + "QoSPolicyRules" + ] + } + }, + "/sse/config/v1/qos-profiles": { + "get": { + "description": "Retrieve QoS profiles.", + "operationId": "get-sse-config-v1-qos-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of qos profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List QoS profiles", + "tags": [ + "QoSProfiles" + ] + }, + "post": { + "description": "Create a QoS profile.", + "operationId": "post-sse-config-v1-qos-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-profiles" + } + } + }, + "description": "The qos profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a QoS profile", + "tags": [ + "QoSProfiles" + ] + } + }, + "/sse/config/v1/qos-profiles/{id}": { + "delete": { + "description": "Delete a QoS profile.", + "operationId": "delete-sse-config-v1-qos-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a QoS profile", + "tags": [ + "QoSProfiles" + ] + }, + "get": { + "description": "Get a QoS profile.", + "operationId": "get-sse-config-v1-qos-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/qos-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the qos profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a QoS profile", + "tags": [ + "QoSProfiles" + ] + }, + "put": { + "description": "Edit a QoS profile.", + "operationId": "put-sse-config-v1-qos-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/qos-profiles" + } + } + }, + "description": "The qos profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a QoS profile", + "tags": [ + "QoSProfiles" + ] + } + }, + "/sse/config/v1/quarantined-devices": { + "delete": { + "description": "Remove a device from the [quarantined list](https://docs.paloaltonetworks.com/network-security/security-policy/objects/quarantine-device-lists).", + "operationId": "delete-sse-config-v1-quarantined-devices", + "parameters": [ + { + "$ref": "#/components/parameters/host_id_required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete quarantined devices", + "tags": [ + "QuarantinedDevices" + ] + }, + "get": { + "description": "Retrieve a list of [quarantined devices](https://docs.paloaltonetworks.com/network-security/security-policy/objects/quarantine-device-lists).", + "operationId": "get-sse-config-v1-quarantined-devices", + "parameters": [ + { + "$ref": "#/components/parameters/host_id" + }, + { + "$ref": "#/components/parameters/serial_number" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-quarantined-devices" + }, + "type": "array" + } + ] + } + } + }, + "description": "List of quarantined devices" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List quarantined devices", + "tags": [ + "QuarantinedDevices" + ] + }, + "post": { + "description": "Quarantine a device", + "operationId": "post-sse-config-v1-quarantined-devices", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-quarantined-devices" + } + } + }, + "description": "The quarantined device you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Quarantine devices", + "tags": [ + "QuarantinedDevices" + ] + } + }, + "/sse/config/v1/radius-server-profiles": { + "get": { + "description": "Retrieve a list of all Radius server profiles.\n", + "operationId": "get-sse-config-v1-radius-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/radius-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of radius server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all Radius server profiles", + "tags": [ + "RadiusServerProfiles" + ] + }, + "post": { + "description": "Create a Radius server profile.\n", + "operationId": "post-sse-config-v1-radius-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/radius-server-profiles" + } + } + }, + "description": "The radius server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a Radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + } + }, + "/sse/config/v1/radius-server-profiles/{id}": { + "delete": { + "description": "Delete a radius server profile.\n", + "operationId": "delete-sse-config-v1-radius-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + }, + "get": { + "description": "Get a Radius server profile by ID.\n", + "operationId": "get-sse-config-v1-radius-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/radius-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get radius server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a Radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + }, + "put": { + "description": "Modify a radius server profile.\n", + "operationId": "put-sse-config-v1-radius-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/radius-server-profiles" + } + } + }, + "description": "The radius server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a radius server profile", + "tags": [ + "RadiusServerProfiles" + ] + } + }, + "/sse/config/v1/regions": { + "get": { + "description": "Get regions.\n", + "operationId": "get-sse-config-v1-regions", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-regions" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of regions" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List regions", + "tags": [ + "Regions" + ] + }, + "post": { + "description": "Create a region.\n", + "operationId": "post-sse-config-v1-regions", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-regions" + } + } + }, + "description": "The region you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a region", + "tags": [ + "Regions" + ] + } + }, + "/sse/config/v1/regions/{id}": { + "delete": { + "description": "Delete a region.\n", + "operationId": "delete-sse-config-v1-regions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a region", + "tags": [ + "Regions" + ] + }, + "get": { + "description": "Get a [region](https://docs.paloaltonetworks.com/network-security/security-policy/objects/regions) by ID.\n", + "operationId": "get-sse-config-v1-regions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-regions" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the region by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a region by ID", + "tags": [ + "Regions" + ] + }, + "put": { + "description": "Modify a region.\n", + "operationId": "put-sse-config-v1-regions-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-regions" + } + } + }, + "description": "The region you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a region", + "tags": [ + "Regions" + ] + } + }, + "/sse/config/v1/remote-networks": { + "get": { + "description": "List all remote networks.", + "operationId": "get-sse-config-v1-remote-networks", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/remote-networks" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of remote networks" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List remote networks", + "tags": [ + "RemoteNetworks" + ] + }, + "post": { + "description": "Create a remote network.", + "operationId": "post-sse-config-v1-remote-networks", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/remote-networks" + } + } + }, + "description": "The remote network you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create remote networks", + "tags": [ + "RemoteNetworks" + ] + } + }, + "/sse/config/v1/remote-networks/{id}": { + "delete": { + "description": "Delete a remote network.", + "operationId": "delete-sse-config-v1-remote-networks-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a remote network", + "tags": [ + "RemoteNetworks" + ] + }, + "get": { + "description": "Get a remote network.", + "operationId": "get-sse-config-v1-remote-networks-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/remote-networks" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the remote network by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a remote network", + "tags": [ + "RemoteNetworks" + ] + }, + "put": { + "description": "Edit a remote network.", + "operationId": "put-sse-config-v1-remote-networks-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/remote-networks" + } + } + }, + "description": "The remote network you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a remote network", + "tags": [ + "RemoteNetworks" + ] + } + }, + "/sse/config/v1/saml-server-profiles": { + "get": { + "description": "Retrieve a list of all SAML server profiles.\n", + "operationId": "get-sse-config-v1-saml-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/saml-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of saml server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all SAML server profiles", + "tags": [ + "SAMLServerProfiles" + ] + }, + "post": { + "description": "Create a SAML server profile.\n", + "operationId": "post-sse-config-v1-saml-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/saml-server-profiles" + } + } + }, + "description": "The saml server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a SAML server profile", + "tags": [ + "SAMLServerProfiles" + ] + } + }, + "/sse/config/v1/saml-server-profiles/{id}": { + "delete": { + "description": "Delete a saml server profile.\n", + "operationId": "delete-sse-config-v1-saml-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a saml server profile", + "tags": [ + "SAMLServerProfiles" + ] + }, + "get": { + "description": "Get a SAML server profile by ID.\n", + "operationId": "get-sse-config-v1-saml-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/saml-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get saml server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a SAML server profile", + "tags": [ + "SAMLServerProfiles" + ] + }, + "put": { + "description": "Modify a saml server profile.\n", + "operationId": "put-sse-config-v1-saml-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/saml-server-profiles" + } + } + }, + "description": "The saml server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a saml server profile", + "tags": [ + "SAMLServerProfiles" + ] + } + }, + "/sse/config/v1/scep-profiles": { + "get": { + "description": "List all SCEP profiles.", + "operationId": "get-sse-config-v1-scep-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/scep-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of SCEP profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List SCEP profiles", + "tags": [ + "SCEPProfiles" + ] + }, + "post": { + "description": "Create an SCEP profile.", + "operationId": "post-sse-config-v1-scep-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/type" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/scep-profiles" + } + } + }, + "description": "The SCEP profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create SCEP profiles", + "tags": [ + "SCEPProfiles" + ] + } + }, + "/sse/config/v1/scep-profiles/{id}": { + "delete": { + "description": "Delete a SCEP profile.\n", + "operationId": "delete-sse-config-v1-scep-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a SCEP profile.", + "tags": [ + "SCEPProfiles" + ] + }, + "get": { + "description": "Get an SCEP profile.", + "operationId": "get-sse-config-v1-scep-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/scep-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the scep profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get an SCEP profile", + "tags": [ + "SCEPProfiles" + ] + }, + "put": { + "description": "Modify a SCEP profile.\n", + "operationId": "put-sse-config-v1-scep-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/scep-profiles" + } + } + }, + "description": "The SCEP profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a SCEP profile.", + "tags": [ + "SCEPProfiles" + ] + } + }, + "/sse/config/v1/schedules": { + "get": { + "description": "Get schedules.\n", + "operationId": "get-sse-config-v1-schedules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-schedules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of schedules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List schedules", + "tags": [ + "Schedules" + ] + }, + "post": { + "description": "Create a schedule.\n", + "operationId": "post-sse-config-v1-schedules", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-schedules" + } + } + }, + "description": "The hip profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a schedule", + "tags": [ + "Schedules" + ] + } + }, + "/sse/config/v1/schedules/{id}": { + "delete": { + "description": "Delete a schedule.\n", + "operationId": "delete-sse-config-v1-schedules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a schedule", + "tags": [ + "Schedules" + ] + }, + "get": { + "description": "Get a [schedule](https://docs.paloaltonetworks.com/network-security/security-policy/objects/schedules) by ID.\n", + "operationId": "get-sse-config-v1-schedules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-schedules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the schedule by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a schedule by ID", + "tags": [ + "Schedules" + ] + }, + "put": { + "description": "Modify a schedule.\n", + "operationId": "put-sse-config-v1-schedules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-schedules" + } + } + }, + "description": "The schedule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a schedule", + "tags": [ + "Schedules" + ] + } + }, + "/sse/config/v1/security-rules": { + "get": { + "description": "List [security rules](https://docs.paloaltonetworks.com/network-security/security-policy/security-rules).\n", + "operationId": "get-sse-config-v1-security-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/security-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of security rules" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List security rules", + "tags": [ + "SecurityRules" + ] + }, + "post": { + "description": "Create a security rule.\n", + "operationId": "post-sse-config-v1-security-rules", + "parameters": [ + { + "$ref": "#/components/parameters/position" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/security-rules" + } + } + }, + "description": "The security rule you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a security rule", + "tags": [ + "SecurityRules" + ] + } + }, + "/sse/config/v1/security-rules/{id}": { + "delete": { + "description": "Delete a security rule.\n", + "operationId": "delete-sse-config-v1-security-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a security rule", + "tags": [ + "SecurityRules" + ] + }, + "get": { + "description": "Get a [security rule](https://docs.paloaltonetworks.com/network-security/security-policy/security-rules).\n", + "operationId": "get-sse-config-v1-security-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/security-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get security rule by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a security rule", + "tags": [ + "SecurityRules" + ] + }, + "put": { + "description": "Modify a security rule.\n", + "operationId": "put-sse-config-v1-security-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/security-rules" + } + } + }, + "description": "The security rule you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a security rule", + "tags": [ + "SecurityRules" + ] + } + }, + "/sse/config/v1/security-rules/{id}:move": { + "post": { + "description": "Move a security rule.\n", + "operationId": "post-sse-config-v1-security-rules-id:move", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/rule-based-move" + } + } + }, + "description": "The security rule you want to move" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Move a security rule", + "tags": [ + "SecurityRules" + ] + } + }, + "/sse/config/v1/service-connection-groups": { + "get": { + "description": "List all service connection groups.", + "operationId": "get-sse-config-v1-service-connection-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connection-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service connection groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service connection groups", + "tags": [ + "ServiceConnectionGroups" + ] + }, + "post": { + "description": "Create service connection groups.", + "operationId": "post-sse-config-v1-service-connection-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connection-groups" + } + } + }, + "description": "The service connection group you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create service connection groups", + "tags": [ + "ServiceConnectionGroups" + ] + } + }, + "/sse/config/v1/service-connection-groups/{id}": { + "delete": { + "description": "Delete a service connection group.", + "operationId": "delete-sse-config-v1-service-connection-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service connection group", + "tags": [ + "ServiceConnectionGroups" + ] + }, + "get": { + "description": "Get a service connection group.", + "operationId": "get-sse-config-v1-service-connection-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connection-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service connection group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service connection group", + "tags": [ + "ServiceConnectionGroups" + ] + }, + "put": { + "description": "Edit a service connection group.", + "operationId": "put-sse-config-v1-service-connection-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connection-groups" + } + } + }, + "description": "The service connection group you want to edit." + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service connection group", + "tags": [ + "ServiceConnectionGroups" + ] + } + }, + "/sse/config/v1/service-connections": { + "get": { + "description": "List all service connections.", + "operationId": "get-sse-config-v1-service-connections", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connections" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service connections" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service connections", + "tags": [ + "ServiceConnections" + ] + }, + "post": { + "description": "Create service connections.", + "operationId": "post-sse-config-v1-service-connections", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connections" + } + } + }, + "description": "The service connection you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create service connections", + "tags": [ + "ServiceConnections" + ] + } + }, + "/sse/config/v1/service-connections/{id}": { + "delete": { + "description": "Delete a service connection.", + "operationId": "delete-sse-config-v1-service-connections-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service connection", + "tags": [ + "ServiceConnections" + ] + }, + "get": { + "description": "Get a service connection.", + "operationId": "get-sse-config-v1-service-connections-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/service-connections" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service connection by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service connection", + "tags": [ + "ServiceConnections" + ] + }, + "put": { + "description": "Edit a service connection.", + "operationId": "put-sse-config-v1-service-connections-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/service-connections" + } + } + }, + "description": "The service connection you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service connection", + "tags": [ + "ServiceConnections" + ] + } + }, + "/sse/config/v1/service-groups": { + "get": { + "description": "Get service groups.\n", + "operationId": "get-sse-config-v1-service-groups", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-service-groups" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service groups", + "tags": [ + "ServiceGroups" + ] + }, + "post": { + "description": "Create a service group.\n", + "operationId": "post-sse-config-v1-service-groups", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-service-groups" + } + } + }, + "description": "The service you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a service group", + "tags": [ + "ServiceGroups" + ] + } + }, + "/sse/config/v1/service-groups/{id}": { + "delete": { + "description": "Delete a service group.\n", + "operationId": "delete-sse-config-v1-service-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service group", + "tags": [ + "ServiceGroups" + ] + }, + "get": { + "description": "Get a [service group](https://docs.paloaltonetworks.com/network-security/security-policy/objects/service-groups) by ID.\n", + "operationId": "get-sse-config-v1-service-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-service-groups" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service group by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service group by ID", + "tags": [ + "ServiceGroups" + ] + }, + "put": { + "description": "Modify a service group.\n", + "operationId": "put-sse-config-v1-service-groups-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-service-groups" + } + } + }, + "description": "The service object you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service group", + "tags": [ + "ServiceGroups" + ] + } + }, + "/sse/config/v1/services": { + "get": { + "description": "Get services.\n", + "operationId": "get-sse-config-v1-services", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-services" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of address groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List services", + "tags": [ + "Services" + ] + }, + "post": { + "description": "Create a service object.\n", + "operationId": "post-sse-config-v1-services", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-services" + } + } + }, + "description": "The service you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a service object", + "tags": [ + "Services" + ] + } + }, + "/sse/config/v1/services/{id}": { + "delete": { + "description": "Delete a service.\n", + "operationId": "delete-sse-config-v1-services-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service", + "tags": [ + "Services" + ] + }, + "get": { + "description": "Get a [service](https://docs.paloaltonetworks.com/network-security/security-policy/objects/services) by ID.\n", + "operationId": "get-sse-config-v1-services-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-services" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service by ID", + "tags": [ + "Services" + ] + }, + "put": { + "description": "Modify a service object.\n", + "operationId": "put-sse-config-v1-services-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-services" + } + } + }, + "description": "The service object you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service", + "tags": [ + "Services" + ] + } + }, + "/sse/config/v1/shared-infrastructure-settings": { + "get": { + "description": "List all infrastructure settings.", + "operationId": "get-sse-config-v1-shared-infrastructure-settings", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/shared-infrastructure-settings" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of infrastructure settings under Shared folder" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all infrastructure settings", + "tags": [ + "InfrastructureSettings" + ] + }, + "put": { + "description": "Edit an infrastructure setting.", + "operationId": "put-sse-config-v1-shared-infrastructure-settings", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/edit-shared-infrastructure-settings" + } + } + }, + "description": "The infrastructure settings to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an infrastructure setting", + "tags": [ + "InfrastructureSettings" + ] + } + }, + "/sse/config/v1/snapshots": { + "get": { + "description": "Lists all Prisma Access\n[configuration snapshots](https://docs.paloaltonetworks.com/prisma/prisma-access/prisma-access-cloud-managed-admin/administer-prisma-access/configuration/config-snapshot.html).\n", + "operationId": "get-sse-config-v1-snapshots", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of config version snapshots" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List configuration snapshots", + "tags": [ + "ConfigurationManagement" + ] + } + }, + "/sse/config/v1/tacacs-server-profiles": { + "get": { + "description": "Retrieve a list of all TACACS server profiles.\n", + "operationId": "get-sse-config-v1-tacacs-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + }, + { + "$ref": "#/components/parameters/name-optional" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tacacs-server-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of tacacs server profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List all TACACS server profiles", + "tags": [ + "TACACSServerProfiles" + ] + }, + "post": { + "description": "Create a TACACS server profile.\n", + "operationId": "post-sse-config-v1-tacacs-server-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/snippet" + }, + { + "$ref": "#/components/parameters/device" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tacacs-server-profiles" + } + } + }, + "description": "The tacacs server profile you want to create" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a TACACS server profile", + "tags": [ + "TACACSServerProfiles" + ] + } + }, + "/sse/config/v1/tacacs-server-profiles/{id}": { + "delete": { + "description": "Delete a tacacs server profile.\n", + "operationId": "delete-sse-config-v1-tacacs-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a tacacs server profile", + "tags": [ + "TACACSServerProfiles" + ] + }, + "get": { + "description": "Get a TACACS server profile by ID.\n", + "operationId": "get-sse-config-v1-tacacs-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tacacs-server-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get tacacs server profile by id" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a TACACS server profile", + "tags": [ + "TACACSServerProfiles" + ] + }, + "put": { + "description": "Modify a tacacs server profile.\n", + "operationId": "put-sse-config-v1-tacacs-server-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tacacs-server-profiles" + } + } + }, + "description": "The tacacs server profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a tacacs server profile", + "tags": [ + "TACACSServerProfiles" + ] + } + }, + "/sse/config/v1/tags": { + "get": { + "description": "Get tags.\n", + "operationId": "get-sse-config-v1-tags", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-tags" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of address groups" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List tags", + "tags": [ + "Tags" + ] + }, + "post": { + "description": "Create a tag.\n", + "operationId": "post-sse-config-v1-tags", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-tags" + } + } + }, + "description": "The tag you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a tag", + "tags": [ + "Tags" + ] + } + }, + "/sse/config/v1/tags/{id}": { + "delete": { + "description": "Delete a tag.\n", + "operationId": "delete-sse-config-v1-tags-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a tag", + "tags": [ + "Tags" + ] + }, + "get": { + "description": "Get a [tag](https://docs.paloaltonetworks.com/network-security/security-policy/objects/tags) by ID.\n", + "operationId": "get-sse-config-v1-tags-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/objects-tags" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the tag by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a tag by ID", + "tags": [ + "Tags" + ] + }, + "put": { + "description": "Modify a tag.\n", + "operationId": "put-sse-config-v1-tags-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/objects-tags" + } + } + }, + "description": "The tag you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a tag", + "tags": [ + "Tags" + ] + } + }, + "/sse/config/v1/tls-service-profiles": { + "get": { + "description": "List TLS service profiles.", + "operationId": "get-sse-config-v1-tls-service-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tls-service-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of tls service profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List TLS service profiles", + "tags": [ + "TLSServiceProfiles" + ] + }, + "post": { + "description": "Create a TLS service profile.", + "operationId": "post-sse-config-v1-tls-service-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/tls-service-profiles" + } + } + }, + "description": "The tls service profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create TLS service profiles", + "tags": [ + "TLSServiceProfiles" + ] + } + }, + "/sse/config/v1/tls-service-profiles/{id}": { + "delete": { + "description": "Delete a tls service profile.\n", + "operationId": "delete-sse-config-v1-tls-service-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a tls service profile.", + "tags": [ + "TLSServiceProfiles" + ] + }, + "get": { + "description": "Get a TLS service profile.", + "operationId": "get-sse-config-v1-tls-service-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/tls-service-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the tls service profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a TLS service profile", + "tags": [ + "TLSServiceProfiles" + ] + }, + "put": { + "description": "Modify a tls service profile.\n", + "operationId": "put-sse-config-v1-tls-service-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/certificate-profiles" + } + } + }, + "description": "The tls service profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a tls service profile.", + "tags": [ + "TLSServiceProfiles" + ] + } + }, + "/sse/config/v1/traffic-steering-rules": { + "get": { + "description": "List all service connections targeted by traffic steering rules.", + "operationId": "get-sse-config-v1-traffic-steering-rules", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/traffic-steering-rules" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of service connections" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List service connections", + "tags": [ + "TrafficSteeringRules" + ] + }, + "post": { + "description": "Create a traffic steering rule for a service connection.", + "operationId": "post-sse-config-v1-traffic-steering-rules", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/traffic-steering-rules" + } + } + }, + "description": "The service connection you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a service connection", + "tags": [ + "TrafficSteeringRules" + ] + } + }, + "/sse/config/v1/traffic-steering-rules/{id}": { + "delete": { + "description": "Delete a service connection.", + "operationId": "delete-sse-config-v1-traffic-steering-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a service connection", + "tags": [ + "TrafficSteeringRules" + ] + }, + "get": { + "description": "Get a specific service connection targeted by the traffic steering rule.", + "operationId": "get-sse-config-v1-traffic-steering-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/traffic-steering-rules" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the service connection by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a service connection", + "tags": [ + "TrafficSteeringRules" + ] + }, + "put": { + "description": "Edit the service connection targeted by the traffic steering rule.", + "operationId": "put-sse-config-v1-traffic-steering-rules-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/traffic-steering-rules" + } + } + }, + "description": "The service connection you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a service connection", + "tags": [ + "TrafficSteeringRules" + ] + } + }, + "/sse/config/v1/trusted-certificate-authorities": { + "get": { + "description": "List trusted certificate authorities.\n", + "operationId": "get-sse-config-v1-trusted-certificate-authorities", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/trusted-certificate-authorities" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of Trusted Certificate Authorities" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List trusted certificate authorities", + "tags": [ + "TrustedCertificateAuthorities" + ] + } + }, + "/sse/config/v1/url-access-profiles": { + "get": { + "description": "Retrieve all URL access profiles.", + "operationId": "get-sse-config-v1-url-access-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-access-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of URL Access profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List URL access profiles", + "tags": [ + "URLAccessProfiles" + ] + }, + "post": { + "description": "Create a URL access profile.", + "operationId": "post-sse-config-v1-url-access-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-access-profiles" + } + } + }, + "description": "The URL Access Profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a URL access profile", + "tags": [ + "URLAccessProfiles" + ] + } + }, + "/sse/config/v1/url-access-profiles/{id}": { + "delete": { + "description": "Delete an URL Access Profile.\n", + "operationId": "delete-sse-config-v1-url-access-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an URL Access Profile", + "tags": [ + "URLAccessProfiles" + ] + }, + "get": { + "description": "Get a URL access profile by ID.", + "operationId": "get-sse-config-v1-url-access-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-access-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the url access profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a URL access profile by ID", + "tags": [ + "URLAccessProfiles" + ] + }, + "put": { + "description": "Modify an URL Access Profile.\n", + "operationId": "put-sse-config-v1-url-access-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-access-profiles" + } + } + }, + "description": "The URL Access Profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an URL Access Profile", + "tags": [ + "URLAccessProfiles" + ] + } + }, + "/sse/config/v1/url-categories": { + "get": { + "description": "List custom URL categories.\n", + "operationId": "get-sse-config-v1-url-categories", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-categories" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of custom URL categories" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List URL categories", + "tags": [ + "URLCategories" + ] + }, + "post": { + "description": "Create a custom URL categories.\n", + "operationId": "post-sse-config-v1-url-categories", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-categories" + } + } + }, + "description": "The custom URL categories you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a custom URL categories", + "tags": [ + "URLCategories" + ] + } + }, + "/sse/config/v1/url-categories/{id}": { + "delete": { + "description": "Delete a custom URL Category.\n", + "operationId": "delete-sse-config-v1-url-categories-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a custom URL Category", + "tags": [ + "URLCategories" + ] + }, + "get": { + "description": "Get a URL category by ID.\n", + "operationId": "get-sse-config-v1-url-categories-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-categories" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the url category by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a URL category by ID", + "tags": [ + "URLCategories" + ] + }, + "put": { + "description": "Modify a custom URL Category.\n", + "operationId": "put-sse-config-v1-url-categories-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/url-categories" + } + } + }, + "description": "The custom URL Category you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a custom URL Category", + "tags": [ + "URLCategories" + ] + } + }, + "/sse/config/v1/url-filtering-categories": { + "get": { + "description": "List [URL filtering](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-url-filtering) categories.\n", + "operationId": "get-sse-config-v1-url-filtering-categories", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/folder" + }, + { + "$ref": "#/components/parameters/name" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/url-filtering-categories" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of custom url categories" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List URL filtering categories", + "tags": [ + "URLFilteringCategories" + ] + } + }, + "/sse/config/v1/vulnerability-protection-profiles": { + "get": { + "description": "Retrieve all [vulnerability protection profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection).", + "operationId": "get-sse-config-v1-vulnerability-protection-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of vulnerability protection profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List vulnerability protection profiles", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + }, + "post": { + "description": "Create a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection).", + "operationId": "post-sse-config-v1-vulnerability-protection-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + } + } + }, + "description": "The vulnerability protection profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a vulnerability protection profile", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + } + }, + "/sse/config/v1/vulnerability-protection-profiles/{id}": { + "delete": { + "description": "Delete an vulnerability protection profile.\n", + "operationId": "delete-sse-config-v1-vulnerability-protection-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete an vulnerability protection profile", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + }, + "get": { + "description": "Get a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) by ID.", + "operationId": "get-sse-config-v1-vulnerability-protection-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the vulnerability protection profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a vulnerability protection profile by ID", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + }, + "put": { + "description": "Modify an vulnerability protection profile.\n", + "operationId": "put-sse-config-v1-vulnerability-protection-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-profiles" + } + } + }, + "description": "The vulnerability protection profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit an vulnerability protection profile", + "tags": [ + "VulnerabilityProtectionProfiles" + ] + } + }, + "/sse/config/v1/vulnerability-protection-signatures": { + "get": { + "description": "Retrieve all [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) signature.", + "operationId": "get-sse-config-v1-vulnerability-protection-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of vulnerability-protection signatures" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List vulnerability protection signatures", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + }, + "post": { + "description": "Create a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) signature.", + "operationId": "post-sse-config-v1-vulnerability-protection-signatures", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + } + } + }, + "description": "The vulnerability-protection signature you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a vulnerability protection signature", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + } + }, + "/sse/config/v1/vulnerability-protection-signatures/{id}": { + "delete": { + "description": "Delete a vulnerability-protection signature.\n", + "operationId": "delete-sse-config-v1-vulnerability-protection-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a vulnerability-protection signature", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + }, + "get": { + "description": "Get a [vulnerability protection profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-vulnerability-protection) signature by ID.", + "operationId": "get-sse-config-v1-vulnerability-protection-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the vulnerability protection signature by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a vulnerability protection signature by ID", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + }, + "put": { + "description": "Modify an vulnerability-protection signature.\n", + "operationId": "put-sse-config-v1-vulnerability-protection-signatures-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/vulnerability-protection-signatures" + } + } + }, + "description": "The vulnerability-protection signature you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a vulnerability-protection signature", + "tags": [ + "VulnerabilityProtectionSignatures" + ] + } + }, + "/sse/config/v1/wildfire-anti-virus-profiles": { + "get": { + "description": "Retrieve all [WildFire antivirus profiles](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-wildfire).", + "operationId": "get-sse-config-v1-wildfire-anti-virus-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/limit-optional" + }, + { + "$ref": "#/components/parameters/offset-optional" + }, + { + "$ref": "#/components/parameters/name-optional" + }, + { + "$ref": "#/components/parameters/folder" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + }, + "type": "array" + } + ] + }, + "limit": { + "default": 200, + "type": "number" + }, + "offset": { + "default": 0, + "type": "number" + }, + "total": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "description": "List of wildfire and antivirus profiles" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "List WildFire antivirus profiles", + "tags": [ + "WildFireAntivirusProfiles" + ] + }, + "post": { + "description": "Create a [WildFire antivirus profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-wildfire).", + "operationId": "post-sse-config-v1-wildfire-anti-virus-profiles", + "parameters": [ + { + "$ref": "#/components/parameters/folder" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + } + } + }, + "description": "The wildfire and antivirus profile you want to create" + }, + "responses": { + "201": { + "$ref": "#/components/responses/http_created" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Create a WildFire antivirus profile", + "tags": [ + "WildFireAntivirusProfiles" + ] + } + }, + "/sse/config/v1/wildfire-anti-virus-profiles/{id}": { + "delete": { + "description": "Delete a wildfire and antivirus profile.\n", + "operationId": "delete-sse-config-v1-wildfire-anti-virus-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Delete a wildfire and antivirus profile", + "tags": [ + "WildFireAntivirusProfiles" + ] + }, + "get": { + "description": "Get a [WildFire antivirus profile](https://docs.paloaltonetworks.com/network-security/security-policy/security-profiles/security-profile-wildfire) by ID.", + "operationId": "get-sse-config-v1-wildfire-anti-virus-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "items": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + }, + "type": "array" + } + ] + } + } + }, + "description": "Get the wildfire and anti-virus profile by id." + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Get a WildFire antivirus profile by ID", + "tags": [ + "WildFireAntivirusProfiles" + ] + }, + "put": { + "description": "Modify a wildfire and antivirus profile.\n", + "operationId": "put-sse-config-v1-wildfire-anti-virus-profiles-id", + "parameters": [ + { + "$ref": "#/components/parameters/uuid-required" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/wildfire-anti-virus-profiles" + } + } + }, + "description": "The wildfire and antivirus profile you want to edit" + }, + "responses": { + "200": { + "$ref": "#/components/responses/http_ok" + }, + "400": { + "$ref": "#/components/responses/bad_request_errors_basic_with_body" + }, + "401": { + "$ref": "#/components/responses/auth_errors" + }, + "403": { + "$ref": "#/components/responses/access_errors" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "409": { + "$ref": "#/components/responses/conflict_errors" + }, + "default": { + "$ref": "#/components/responses/default_errors" + } + }, + "summary": "Edit a wildfire and antivirus profile", + "tags": [ + "WildFireAntivirusProfiles" + ] + } + } + }, + "components": { + "schemas": { + "error_detail_cause_info": { + "properties": { + "code": { + "type": "string" + }, + "details": { + "type": "object" + }, + "help": { + "type": "string" + }, + "message": { + "type": "string" + } + }, + "title": "Cause Info", + "type": "object" + }, + "error_detail_cause_infos": { + "items": { + "$ref": "#/components/schemas/error_detail_cause_info" + }, + "type": "array" + }, + "generic_error": { + "properties": { + "_errors": { + "$ref": "#/components/schemas/error_detail_cause_infos" + }, + "_request_id": { + "type": "string" + } + }, + "type": "object" + }, + "objects-address-groups": { + "oneOf": [ + { + "properties": { + "static": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "address-group", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "required": [ + "static" + ], + "title": "static" + }, + { + "properties": { + "dynamic": { + "properties": { + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + } + }, + "required": [ + "filter" + ], + "type": "object" + } + }, + "required": [ + "dynamic" + ], + "title": "dynamic" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-addresses": { + "oneOf": [ + { + "properties": { + "ip_netmask": { + "type": "string" + } + }, + "required": [ + "ip_netmask" + ], + "title": "ip_netmask" + }, + { + "properties": { + "ip_range": { + "type": "string" + } + }, + "required": [ + "ip_range" + ], + "title": "ip_range" + }, + { + "properties": { + "ip_wildcard": { + "type": "string" + } + }, + "required": [ + "ip_wildcard" + ], + "title": "ip_wildcard" + }, + { + "properties": { + "fqdn": { + "maxLength": 255, + "minLength": 1, + "pattern": "^[a-zA-Z0-9_]([a-zA-Z0-9._-])+[a-zA-Z0-9]$", + "type": "string" + } + }, + "required": [ + "fqdn" + ], + "title": "fqdn" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "type": { + "example": "container", + "readOnly": true, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "anti-spyware-profiles": { + "properties": { + "cloud_inline_analysis": { + "default": false, + "type": "boolean" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "inline_exception_edl_url": { + "items": { + "type": "string" + }, + "maxLength": 127, + "type": "array" + }, + "inline_exception_ip_address": { + "items": { + "type": "string" + }, + "maxLength": 63, + "type": "array" + }, + "mica_engine_spyware_enabled": { + "items": { + "properties": { + "inline_policy_action": { + "default": "alert", + "enum": [ + "alert", + "allow", + "drop", + "reset-both", + "reset-client", + "reset-server" + ], + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "dns-proxy", + "backdoor", + "data-theft", + "autogen", + "spyware", + "dns-security", + "downloader", + "dns-phishing", + "phishing-kit", + "cryptominer", + "hacktool", + "dns-benign", + "dns-wildfire", + "botnet", + "dns-grayware", + "inline-cloud-c2", + "keylogger", + "p2p-communication", + "domain-edl", + "webshell", + "command-and-control", + "dns-ddns", + "net-worm", + "any", + "tls-fingerprint", + "dns-new-domain", + "dns", + "fraud", + "dns-c2", + "adware", + "post-exploitation", + "dns-malware", + "browser-hijack", + "dns-parked" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "minLength": 4, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "anti-spyware-signatures": { + "properties": { + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <15000-18000> and <6900001-7000000>", + "maximum": 70000000, + "minimum": 15000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "objects-application-filters": { + "properties": { + "category": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "evasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "excessive_bandwidth_use": { + "description": "only True is a valid value", + "type": "boolean" + }, + "exclude": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "has_known_vulnerabilities": { + "description": "only True is a valid value", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "is_saas": { + "description": "only True is a valid value", + "type": "boolean" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "new_appid": { + "description": "only True is a valid value", + "type": "boolean" + }, + "pervasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "prone_to_misuse": { + "description": "only True is a valid value", + "type": "boolean" + }, + "risk": { + "items": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "type": "array" + }, + "saas_certifications": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "saas_risk": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "subcategory": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category/entry/subcategory", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "tagging": { + "oneOf": [ + { + "properties": { + "no_tag": { + "type": "boolean" + } + }, + "title": "no_tag" + }, + { + "properties": { + "tag": { + "items": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "tag", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "title": "tag" + } + ], + "type": "object" + }, + "technology": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "transfers_files": { + "description": "only True is a valid value", + "type": "boolean" + }, + "tunnels_other_apps": { + "description": "only True is a valid value", + "type": "boolean" + }, + "used_by_malware": { + "description": "only True is a valid value", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-application-groups": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-group", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-filter", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + }, + "app-override-rules": { + "properties": { + "application": { + "type": "string" + }, + "description": { + "maxLength": 1024, + "type": "string" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "port": { + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "protocol": { + "enum": [ + "tcp", + "udp" + ], + "type": "string" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "application", + "port", + "protocol", + "destination", + "from", + "source", + "to" + ], + "type": "object" + }, + "rule-based-move": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + }, + "objects-applications": { + "properties": { + "able_to_transfer_file": { + "type": "boolean" + }, + "alg_disable_capability": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "category": { + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "consume_big_bandwidth": { + "type": "boolean" + }, + "data_ident": { + "type": "boolean" + }, + "default": { + "oneOf": [ + { + "properties": { + "port": { + "items": { + "description": "protocol port specification : {tcp|udp}/{dynamic|port range list} (e.g. tcp/8080, tcp/80,443, tcp/0-1024,10000, udp/dynamic)", + "maxLength": 63, + "type": "string" + }, + "type": "array" + } + }, + "title": "port" + }, + { + "properties": { + "ident_by_ip_protocol": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "title": "ident_by_ip_protocol" + }, + { + "properties": { + "ident_by_icmp_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp_type" + }, + { + "properties": { + "ident_by_icmp6_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp6_type" + } + ], + "type": "object" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "evasive_behavior": { + "type": "boolean" + }, + "file_type_ident": { + "type": "boolean" + }, + "has_known_vulnerability": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "no_appid_caching": { + "type": "boolean" + }, + "parent_app": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "pervasive_use": { + "type": "boolean" + }, + "prone_to_misuse": { + "type": "boolean" + }, + "risk": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "signature": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "operator": { + "oneOf": [ + { + "properties": { + "pattern_match": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "pattern": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "context", + "pattern" + ], + "type": "object" + } + }, + "title": "pattern_match" + }, + { + "properties": { + "greater_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "greater_than" + }, + { + "properties": { + "less_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "less_than" + }, + { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string", + "x-panMultiple": [ + { + "maxLength": 127, + "type": "string" + }, + { + "enum": [ + "unknown-req-tcp", + "unknown-rsp-tcp", + "unknown-req-udp", + "unknown-rsp-udp" + ], + "type": "string" + } + ] + }, + "mask": { + "description": "4-byte hex value", + "maxLength": 10, + "pattern": "^[0][xX][0-9A-Fa-f]{8}$", + "type": "string" + }, + "position": { + "maxLength": 127, + "type": "string" + }, + "value": { + "maxLength": 10, + "type": "string" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "equal_to" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "operator" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "default": "protocol-data-unit", + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "subcategory": { + "maxLength": 63, + "type": "string" + }, + "tcp_half_closed_timeout": { + "description": "timeout for half-close session in seconds", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "tcp_time_wait_timeout": { + "description": "timeout for session in time_wait state in seconds", + "maximum": 600, + "minimum": 1, + "type": "integer" + }, + "tcp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "technology": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "tunnel_applications": { + "type": "boolean" + }, + "tunnel_other_application": { + "type": "boolean" + }, + "udp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "used_by_malware": { + "type": "boolean" + }, + "virus_ident": { + "type": "boolean" + } + }, + "required": [ + "name", + "category", + "subcategory", + "technology", + "risk" + ], + "type": "object" + }, + "authentication-portals": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "certificate_profile": { + "type": "string" + }, + "gp_udp_port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "idle_timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "redirect_host": { + "type": "string" + }, + "timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "authentication-profiles": { + "properties": { + "allow_list": { + "items": { + "default": [ + "all" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lockout": { + "properties": { + "failed_attempts": { + "maximum": 10, + "minimum": 0, + "type": "integer" + }, + "lockout_time": { + "maximum": 60, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "method": { + "oneOf": [ + { + "properties": { + "local_database": { + "type": "object" + } + }, + "title": "local_database" + }, + { + "properties": { + "saml_idp": { + "properties": { + "attribute_name_usergroup": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "attribute_name_username": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "certificate_profile": { + "maxLength": 31, + "type": "string" + }, + "enable_single_logout": { + "type": "boolean" + }, + "request_signing_certificate": { + "maxLength": 64, + "type": "string" + }, + "server_profile": { + "maxLength": 63, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "saml_idp" + }, + { + "properties": { + "ldap": { + "properties": { + "login_attribute": { + "type": "string" + }, + "passwd_exp_days": { + "type": "integer" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ldap" + }, + { + "properties": { + "radius": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "radius" + }, + { + "properties": { + "tacplus": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tacplus" + }, + { + "properties": { + "kerberos": { + "properties": { + "realm": { + "type": "string" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "kerberos" + }, + { + "description": "CIE is valid only when cas feature flag is enabled", + "properties": { + "cloud": { + "properties": { + "profile_name": { + "description": "The tenant profile name", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cloud" + } + ], + "type": "object" + }, + "multi_factor_auth": { + "properties": { + "factors": { + "items": { + "type": "string" + }, + "type": "array" + }, + "mfa_enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "single_sign_on": { + "properties": { + "kerberos_keytab": { + "maxLength": 8192, + "type": "string" + }, + "realm": { + "maxLength": 127, + "type": "string" + } + }, + "type": "object" + }, + "user_domain": { + "maxLength": 63, + "type": "string" + }, + "username_modifier": { + "enum": [ + "%USERINPUT%", + "%USERINPUT%@%USERDOMAIN%", + "%USERDOMAIN%\\\\%USERINPUT%" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "authentication-rules": { + "properties": { + "authentication_enforcement": { + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "hip_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_authentication_timeout": { + "default": false, + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "timeout": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "authentication-sequences": { + "properties": { + "authentication_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "use_domain_find_profile": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "auto-tag-actions": { + "properties": { + "actions": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "properties": { + "tagging": { + "properties": { + "action": { + "description": "Add or Remove tag option", + "enum": [ + "add-tag", + "remove-tag" + ], + "type": "string" + }, + "tags": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "target": { + "description": "Source or Destination Address, User, X-Forwarded-For Address", + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "required": [ + "target", + "action" + ], + "type": "object" + } + }, + "required": [ + "tagging" + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_type": { + "example": "container", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "quarantine": { + "type": "boolean" + }, + "send_to_panorama": { + "type": "boolean" + } + }, + "required": [ + "name", + "filter", + "log_type" + ], + "type": "object" + }, + "bandwidth-allocations": { + "properties": { + "allocated_bandwidth": { + "description": "bandwidth to allocate in Mbps", + "type": "number" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "name of the aggregated bandwidth region", + "type": "string" + }, + "qos": { + "properties": { + "customized": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + }, + "guaranteed_ratio": { + "type": "number" + }, + "profile": { + "type": "string" + } + }, + "type": "object" + }, + "spn_name_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "allocated_bandwidth" + ], + "type": "object" + }, + "certificate-profiles": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + }, + "certificates-get": { + "properties": { + "algorithm": { + "type": "string" + }, + "ca": { + "type": "boolean" + }, + "common_name": { + "type": "string" + }, + "common_name_int": { + "type": "string" + }, + "expiry_epoch": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "issuer": { + "type": "string" + }, + "issuer_hash": { + "type": "string" + }, + "not_valid_after": { + "type": "string" + }, + "not_valid_before": { + "type": "string" + }, + "public_key": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "subject_hash": { + "type": "string" + }, + "subject_int": { + "type": "string" + } + }, + "type": "object" + }, + "certificates-import": { + "properties": { + "certificate_file": { + "description": "base64 encoded content of the certificate file", + "type": "string" + }, + "format": { + "default": "pem", + "enum": [ + "pem", + "pkcs12", + "der" + ], + "type": "string" + }, + "key_file": { + "description": "base64 encoded content of the key file", + "type": "string" + }, + "name": { + "description": "name of the certificate", + "minLength": 1, + "type": "string" + }, + "passphrase": { + "description": "required when key_file is presented", + "type": "string" + } + }, + "required": [ + "name", + "certificate_file", + "format" + ], + "type": "object" + }, + "certificates-post": { + "properties": { + "algorithm": { + "oneOf": [ + { + "properties": { + "rsa_number_of_bits": { + "enum": [ + 512, + 1024, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "rsa_number_of_bits" + ], + "title": "rsa_number_of_bits" + }, + { + "properties": { + "ecdsa_number_of_bits": { + "enum": [ + 245, + 384, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "ecdsa_number_of_bits" + ], + "title": "ecdsa_number_of_bits" + } + ], + "type": "object" + }, + "alternate_email": { + "items": { + "type": "string" + }, + "type": "array" + }, + "certificate_name": { + "minLength": 1, + "type": "string" + }, + "common_name": { + "minLength": 1, + "type": "string" + }, + "country_code": { + "type": "string" + }, + "day_till_expiration": { + "type": "number" + }, + "department": { + "items": { + "type": "string" + }, + "type": "array" + }, + "digest": { + "enum": [ + "sha1", + "sha256", + "sha384", + "sha512", + "md5" + ], + "type": "string" + }, + "email": { + "maxLength": 255, + "type": "string" + }, + "hostname": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "ip": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "is_block_privateKey": { + "type": "boolean" + }, + "is_certificate_authority": { + "type": "boolean" + }, + "locality": { + "maxLength": 64, + "type": "string" + }, + "ocsp_responder_url": { + "maxLength": 64, + "type": "string" + }, + "signed_by": { + "maxLength": 64, + "type": "string" + }, + "state": { + "maxLength": 32, + "type": "string" + } + }, + "required": [ + "algorithm", + "certificate_name", + "common_name", + "digest" + ], + "type": "object" + }, + "candidate-config-versions": { + "properties": { + "admin": { + "type": "string" + }, + "created": { + "type": "number" + }, + "date": { + "type": "string" + }, + "deleted": { + "type": "number" + }, + "description": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "scope": { + "type": "string" + }, + "swg_config": { + "type": "string" + }, + "updated": { + "type": "number" + }, + "version": { + "type": "string" + } + }, + "type": "object" + }, + "jobs": { + "properties": { + "details": { + "type": "string" + }, + "end_ts": { + "type": "string" + }, + "id": { + "type": "string" + }, + "insert_ts": { + "type": "string" + }, + "job_result": { + "type": "string" + }, + "job_status": { + "type": "string" + }, + "job_type": { + "type": "string" + }, + "last_update": { + "type": "string" + }, + "opaque_int": { + "type": "string" + }, + "opaque_str": { + "type": "string" + }, + "owner": { + "type": "string" + }, + "parent_id": { + "type": "string" + }, + "percent": { + "type": "string" + }, + "result_i": { + "type": "string" + }, + "result_str": { + "type": "string" + }, + "session_id": { + "type": "string" + }, + "start_ts": { + "type": "string" + }, + "status_i": { + "type": "string" + }, + "status_str": { + "type": "string" + }, + "summary": { + "type": "string" + }, + "type_i": { + "type": "string" + }, + "type_str": { + "type": "string" + }, + "uname": { + "type": "string" + } + }, + "type": "object" + }, + "load-config": { + "properties": { + "version": { + "type": "number" + } + }, + "type": "object" + }, + "running-config-versions": { + "properties": { + "date": { + "type": "string" + }, + "device": { + "type": "string" + }, + "version": { + "type": "number" + } + }, + "type": "object" + }, + "dns-security-profiles": { + "properties": { + "botnet_domains": { + "properties": { + "dns_security_categories": { + "items": { + "properties": { + "action": { + "default": "default", + "enum": [ + "default", + "allow", + "block", + "sinkhole" + ], + "type": "string" + }, + "log_level": { + "default": "default", + "enum": [ + "default", + "none", + "low", + "informational", + "medium", + "high", + "critical" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "lists": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "block": { + "type": "object" + } + }, + "title": "block" + }, + { + "properties": { + "sinkhole": { + "type": "object" + } + }, + "title": "sinkhole" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "sinkhole": { + "properties": { + "ipv4_address": { + "enum": [ + "127.0.0.1", + "pan-sinkhole-default-ip" + ], + "type": "string" + }, + "ipv6_address": { + "enum": [ + "::1" + ], + "type": "string" + } + }, + "type": "object" + }, + "whitelist": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "decryption-exclusions": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "decryption-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space", + "pattern": "^[A-Za-z0-9]{1}[A-Za-z0-9_\\-\\.\\s]{0,}$", + "type": "string" + }, + "ssl_forward_proxy": { + "properties": { + "auto_include_altname": { + "default": false, + "type": "boolean" + }, + "block_client_cert": { + "default": false, + "type": "boolean" + }, + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_timeout_cert": { + "default": false, + "type": "boolean" + }, + "block_tls13_downgrade_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unknown_cert": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + }, + "restrict_cert_exts": { + "default": false, + "type": "boolean" + }, + "strip_alpn": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_inbound_proxy": { + "properties": { + "block_if_hsm_unavailable": { + "default": false, + "type": "boolean" + }, + "block_if_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_no_proxy": { + "properties": { + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_protocol_settings": { + "properties": { + "auth_algo_md5": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha1": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha256": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha384": { + "default": true, + "type": "boolean" + }, + "enc_algo_3des": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_chacha20_poly1305": { + "default": true, + "type": "boolean" + }, + "enc_algo_rc4": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "default": true, + "type": "boolean" + }, + "max_version": { + "default": "tls1-2", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "decryption-rules": { + "properties": { + "action": { + "enum": [ + "decrypt", + "no-decrypt" + ], + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_fail": { + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "log_success": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile": { + "type": "string" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "oneOf": [ + { + "properties": { + "ssl_forward_proxy": { + "type": "object" + } + }, + "title": "ssl_forward_proxy" + }, + { + "properties": { + "ssl_inbound_inspection": { + "description": "add the certificate name for SSL inbound inspection", + "type": "string" + } + }, + "required": [ + "ssl_inbound_inspection" + ], + "title": "ssl_inbound_inspection" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "objects-dynamic-user-groups": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "tag-based filter", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for dynamic user group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "filter" + ], + "type": "object" + }, + "objects-external-dynamic-lists": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "predefined_ip": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_ip" + }, + { + "properties": { + "predefined_url": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_url" + }, + { + "properties": { + "ip": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "ip" + }, + { + "properties": { + "domain": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "expand_domain": { + "default": false, + "description": "Enable/Disable expand domain", + "type": "boolean" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "domain" + }, + { + "properties": { + "url": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "url" + }, + { + "properties": { + "imsi": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 34, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imsi" + }, + { + "properties": { + "imei": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imei" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "file-blocking-profiles": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "default": "alert", + "enum": [ + "alert", + "block", + "continue" + ], + "type": "string" + }, + "application": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "direction": { + "default": "both", + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "action", + "direction", + "application", + "file_type" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-hip-objects": { + "properties": { + "anti_malware": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_scan_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "product_version": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + }, + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "real_time_protection": { + "description": "real time protection", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "virdef_version": { + "oneOf": [ + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_attributes": { + "items": { + "properties": { + "name": { + "description": "Attribute Name", + "type": "string" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "certificate_profile": { + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "certificate-profile", + "subPath": "name" + } + ] + } + }, + "type": "object" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "description": "Key name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Plist does not exist", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "properties": { + "name": { + "description": "Process Name", + "maxLength": 1023, + "type": "string" + }, + "running": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "description": "Registry key default value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Key does not exist or match specified value data", + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "description": "Registry value name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value_data": { + "description": "Registry value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "data_loss_prevention": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "disk_backup": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_backup_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encryption": { + "properties": { + "criteria": { + "description": "Encryption locations", + "properties": { + "encrypted_locations": { + "items": { + "properties": { + "encryption_state": { + "oneOf": [ + { + "properties": { + "is": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is_not" + } + ], + "type": "object" + }, + "name": { + "description": "Encryption location", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "firewall": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "host_info": { + "properties": { + "criteria": { + "properties": { + "client_version": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "domain": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_id": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_name": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "managed": { + "description": "If device is managed", + "type": "boolean" + }, + "os": { + "oneOf": [ + { + "properties": { + "contains": { + "oneOf": [ + { + "properties": { + "Microsoft": { + "default": "All", + "description": "Microsoft vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Microsoft" + ], + "title": "Microsoft" + }, + { + "properties": { + "Apple": { + "default": "All", + "description": "Apple vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Apple" + ], + "title": "Apple" + }, + { + "properties": { + "Google": { + "default": "All", + "description": "Google vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Google" + ], + "title": "Google" + }, + { + "properties": { + "Linux": { + "default": "All", + "description": "Linux vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Linux" + ], + "title": "Linux" + }, + { + "properties": { + "Other": { + "description": "Other vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Other" + ], + "title": "Other" + } + ], + "type": "object" + } + }, + "required": [ + "contains" + ], + "title": "contains" + } + ], + "type": "object" + }, + "serial_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mobile_device": { + "properties": { + "criteria": { + "properties": { + "applications": { + "properties": { + "has_malware": { + "oneOf": [ + { + "properties": { + "no": { + "type": "object" + } + }, + "title": "no" + }, + { + "properties": { + "yes": { + "properties": { + "excludes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "yes" + } + ], + "type": "object" + }, + "has_unmanaged_app": { + "description": "Has apps that are not managed", + "type": "boolean" + }, + "includes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encrypted": { + "description": "If device's disk is encrypted", + "type": "boolean" + }, + "imei": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "jailbroken": { + "description": "If device is by rooted/jailbroken", + "type": "boolean" + }, + "last_checkin_time": { + "oneOf": [ + { + "properties": { + "within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "model": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "passcode_set": { + "description": "If device's passcode is present", + "type": "boolean" + }, + "phone_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "tag": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "network_info": { + "properties": { + "criteria": { + "properties": { + "network": { + "oneOf": [ + { + "properties": { + "is": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "ethernet": { + "type": "object" + } + }, + "title": "ethernet" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "patch_management": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": "yes", + "description": "Is Installed", + "type": "boolean" + }, + "missing_patches": { + "properties": { + "check": { + "default": "has-any", + "enum": [ + "has-any", + "has-none", + "has-all" + ], + "type": "string" + }, + "patches": { + "items": { + "description": "patch security-bulletin-id or kb-article-id", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + }, + "severity": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + } + ], + "type": "object" + } + }, + "required": [ + "check" + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": "no", + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-hip-profiles": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "match": { + "maxLength": 2048, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "match" + ], + "type": "object" + }, + "http-header-profiles": { + "properties": { + "description": { + "type": "string" + }, + "http_header_insertion": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "items": { + "properties": { + "domains": { + "items": { + "type": "string" + }, + "type": "array" + }, + "headers": { + "items": { + "properties": { + "header": { + "type": "string" + }, + "log": { + "default": false, + "type": "boolean" + }, + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "required": [ + "name", + "header", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "domains", + "headers" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "ike-crypto-profiles": { + "properties": { + "authentication_multiple": { + "default": 0, + "description": "IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled", + "maximum": 50, + "type": "integer" + }, + "dh_group": { + "items": { + "default": "group2", + "description": "Phase-1 DH group", + "enum": [ + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm" + ], + "type": "string" + }, + "type": "array" + }, + "hash": { + "items": { + "default": "sha1", + "description": "Hashing algorithm", + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "encryption", + "hash", + "dh_group" + ], + "type": "object" + }, + "ike-gateways": { + "properties": { + "authentication": { + "oneOf": [ + { + "properties": { + "pre_shared_key": { + "properties": { + "key": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "pre_shared_key", + "type": "object" + }, + { + "properties": { + "certificate": { + "properties": { + "allow_id_payload_mismatch": { + "type": "boolean" + }, + "certificate_profile": { + "type": "string" + }, + "local_certificate": { + "properties": { + "local_certificate_name": { + "type": "string" + } + }, + "type": "object" + }, + "strict_validation_revocation": { + "type": "boolean" + }, + "use_management_as_source": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "title": "certificate", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_id": { + "properties": { + "id": { + "description": "Local ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[a-zA-Z0-9.-]+)$|^([$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "peer_address": { + "oneOf": [ + { + "properties": { + "ip": { + "description": "peer gateway has static IP address", + "type": "string" + } + }, + "title": "ip", + "type": "object" + }, + { + "properties": { + "fqdn": { + "description": "peer gateway FQDN name", + "maxLength": 255, + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "dynamic": { + "default": {}, + "type": "object" + } + }, + "title": "dynamic", + "type": "object" + } + ], + "type": "object" + }, + "peer_id": { + "properties": { + "id": { + "description": "Peer ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[\\*a-zA-Z0-9.-]+)$|^([\\*$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "enum": [ + "ipaddr", + "keyid", + "fqdn", + "ufqdn" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol": { + "properties": { + "ikev1": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "ikev2": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "version": { + "default": "ikev2-preferred", + "enum": [ + "ikev2-preferred", + "ikev1", + "ikev2" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol_common": { + "properties": { + "fragmentation": { + "properties": { + "enable": { + "default": false, + "enum": [ + false + ], + "type": "boolean" + } + }, + "type": "object" + }, + "nat_traversal": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "passive_mode": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "authentication", + "protocol", + "peer_address" + ], + "type": "object" + }, + "ipsec-crypto-profiles": { + "oneOf": [ + { + "properties": { + "esp": { + "properties": { + "authentication": { + "description": "Authentication algorithm", + "items": { + "default": "sha1", + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm", + "null" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "encryption", + "authentication" + ], + "type": "object" + } + }, + "required": [ + "esp" + ], + "title": "esp", + "type": "object" + }, + { + "properties": { + "ah": { + "properties": { + "authentication": { + "items": { + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "authentication" + ], + "type": "object" + } + }, + "required": [ + "ah" + ], + "title": "ah", + "type": "object" + } + ], + "properties": { + "dh_group": { + "default": "group2", + "description": "phase-2 DH group (PFS DH group)", + "enum": [ + "no-pfs", + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifesize": { + "oneOf": [ + { + "properties": { + "kb": { + "description": "specify lifesize in kilobytes(KB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "kb", + "type": "object" + }, + { + "properties": { + "mb": { + "description": "specify lifesize in megabytes(MB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "mb", + "type": "object" + }, + { + "properties": { + "gb": { + "description": "specify lifesize in gigabytes(GB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "gb", + "type": "object" + }, + { + "properties": { + "tb": { + "description": "specify lifesize in terabytes(TB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "tb", + "type": "object" + } + ], + "type": "object" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "lifetime" + ], + "type": "object" + }, + "ipsec-tunnels": { + "properties": { + "anti_replay": { + "description": "Enable Anti-Replay check on this tunnel", + "type": "boolean" + }, + "auto_key": { + "properties": { + "ike_gateway": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipsec_crypto_profile": { + "type": "string" + }, + "proxy_id": { + "description": "IPv4 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "proxy_id_v6": { + "description": "IPv6 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "ike_gateway", + "ipsec_crypto_profile" + ], + "type": "object" + }, + "copy_tos": { + "default": false, + "description": "Copy IP TOS bits from inner packet to IPSec packet (not recommended)", + "type": "boolean" + }, + "enable_gre_encapsulation": { + "default": false, + "description": "allow GRE over IPSec", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tunnel_monitor": { + "properties": { + "destination_ip": { + "description": "Destination IP to send ICMP probe", + "type": "string" + }, + "enable": { + "default": true, + "description": "Enable tunnel monitoring on this tunnel", + "type": "boolean" + }, + "proxy_id": { + "description": "Which proxy-id (or proxy-id-v6) the monitoring traffic will use", + "type": "string" + } + }, + "required": [ + "destination_ip" + ], + "type": "object" + } + }, + "required": [ + "name", + "auto_key" + ], + "type": "object" + }, + "edit-shared-infrastructure-settings": { + "properties": { + "egress_ip_notification_url": { + "type": "string" + }, + "infra_bgp_as": { + "type": "string" + }, + "infrastructure_subnet": { + "type": "string" + }, + "infrastructure_subnet_ipv6": { + "type": "string" + } + }, + "type": "object" + }, + "shared-infrastructure-settings": { + "properties": { + "api_key": { + "type": "string" + }, + "captive_portal_redirect_ip_address": { + "type": "string" + }, + "egress_ip_notification_url": { + "type": "string" + }, + "infra_bgp_as": { + "type": "string" + }, + "infrastructure_subnet": { + "type": "string" + }, + "infrastructure_subnet_ipv6": { + "type": "string" + }, + "ipv6": { + "type": "boolean" + }, + "loopback_ips": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tunnel_monitor_ip_address": { + "type": "string" + } + }, + "type": "object" + }, + "internal-dns-servers": { + "properties": { + "domain_name": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "required": [ + "name", + "domain_name", + "primary" + ], + "type": "object" + }, + "kerberos-server-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "server": { + "items": { + "properties": { + "host": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "ldap-server-profiles": { + "properties": { + "base": { + "maxLength": 255, + "type": "string" + }, + "bind_dn": { + "maxLength": 255, + "type": "string" + }, + "bind_password": { + "maxLength": 121, + "type": "string" + }, + "bind_timelimit": { + "maximum": 60, + "minimum": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ldap_type": { + "enum": [ + "active-directory", + "e-directory", + "sun", + "other" + ], + "type": "string" + }, + "retry_interval": { + "type": "integer" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + }, + "ssl": { + "type": "boolean" + }, + "timelimit": { + "type": "integer" + }, + "verify_server_certificate": { + "type": "boolean" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "license-types": { + "items": { + "properties": { + "display": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "local-user-groups": { + "properties": { + "name": { + "description": "Name of the group.\n", + "maxLength": 31, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "user": { + "description": "Array of user names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "local-users": { + "properties": { + "disabled": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "password": { + "maxLength": 63, + "type": "string" + } + }, + "required": [ + "name", + "password" + ], + "type": "object" + }, + "locations": { + "items": { + "properties": { + "aggregate_region": { + "type": "string" + }, + "continent": { + "type": "string" + }, + "display": { + "type": "string" + }, + "latitude": { + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + }, + "region": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "mfa-servers": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mfa_cert_profile": { + "type": "string" + }, + "mfa_vendor_type": { + "oneOf": [ + { + "properties": { + "okta_adaptive_v1": { + "properties": { + "okta_api_host": { + "type": "string" + }, + "okta_baseuri": { + "type": "string" + }, + "okta_org": { + "type": "string" + }, + "okta_timeout": { + "type": "string" + }, + "okta_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "okta_adaptive_v1" + }, + { + "properties": { + "ping_identity_v1": { + "properties": { + "ping_api_host": { + "type": "string" + }, + "ping_baseuri": { + "type": "string" + }, + "ping_org": { + "type": "string" + }, + "ping_org_alias": { + "type": "string" + }, + "ping_timeout": { + "type": "string" + }, + "ping_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ping_identity_v1" + }, + { + "properties": { + "rsa_securid_access_v1": { + "properties": { + "rsa_accessid": { + "type": "string" + }, + "rsa_accesskey": { + "type": "string" + }, + "rsa_api_host": { + "type": "string" + }, + "rsa_assurancepolicyid": { + "type": "string" + }, + "rsa_baseuri": { + "type": "string" + }, + "rsa_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "rsa_securid_access_v1" + }, + { + "properties": { + "duo_security_v2": { + "properties": { + "duo_api_host": { + "type": "string" + }, + "duo_baseuri": { + "type": "string" + }, + "duo_integration_key": { + "type": "string" + }, + "duo_secret_key": { + "type": "string" + }, + "duo_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "duo_security_v2" + } + ], + "type": "object" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "mfa_cert_profile" + ], + "type": "object" + }, + "agent-profiles": { + "properties": { + "agent_ui": { + "properties": { + "agent_user_override_timeout": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "max_agent_user_overrides": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "passcode": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "uninstall_password": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "welcome_page": { + "properties": { + "page": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "client_certificate": { + "properties": { + "local": { + "type": "string" + }, + "scep": { + "maxLength": 255, + "type": "string" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value": { + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + } + }, + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "maxLength": 1024, + "type": "string" + }, + "name": { + "maxLength": 1023, + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value_data": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gateways": { + "properties": { + "external": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "manual": { + "default": false, + "description": "If this GlobalProtect gateway can be manually selected", + "type": "boolean" + }, + "name": { + "type": "string" + }, + "priority_rule": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "priority": { + "enum": [ + "0", + "1", + "2", + "3", + "4", + "5" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "internal": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "source_ip": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gp_app_config": { + "properties": { + "config": { + "description": "Currently we only support connect-method and tunnel-mtu as app-config", + "items": { + "anyOf": [ + { + "$ref": "#/components/schemas/connect-method" + }, + { + "$ref": "#/components/schemas/tunnel-mtu" + } + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "hip_collection": { + "properties": { + "certificate_profile": { + "type": "string" + }, + "collect_hip_data": { + "type": "boolean" + }, + "custom_checks": { + "properties": { + "linux": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "mac_os": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "windows": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "registry_value": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "exclusion": { + "properties": { + "category": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "vendor": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "product": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "max_wait_time": { + "maximum": 60, + "minimum": 10, + "type": "number" + } + }, + "type": "object" + }, + "internal_host_detection": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv4 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "internal_host_detection_v6": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv6 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "machine_account_exists_with_serialno": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "type": "object" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "save_user_credentials": { + "description": "Indicates whether to save user credentials.\n\n* `0` : do not save\n* `1` : save\n* `2` : save username only\n* `3` : only with user fingerprint\n", + "enum": [ + "0", + "1", + "2", + "3" + ], + "type": "string" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "third_party_vpn_clients": { + "items": { + "enum": [ + "PAN Virtual Ethernet Adapter", + "Juniper Network Virtual Adapter", + "Cisco Systems VPN Adapter" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "authentication-settings": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "os": { + "default": "Any", + "enum": [ + "Any", + "Android", + "Browser", + "Chrome", + "IoT", + "Linux", + "Mac", + "Satellite", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "user_credential_or_client_cert_required": { + "type": "boolean" + } + }, + "required": [ + "authentication_profile", + "user_credential_or_client_cert_required", + "os" + ], + "type": "object" + }, + "connect-method": { + "properties": { + "name": { + "default": "connect-method", + "enum": [ + "connect-method" + ], + "type": "string" + }, + "value": { + "items": { + "enum": [ + "user-logon", + "pre-logon", + "on-demand", + "pre-logon-then-on-demand" + ], + "type": "string" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + "mobile-agent-global-settings": { + "properties": { + "agent_version": { + "type": "string" + }, + "manual_gateway": { + "description": "Use the locations from GET /infrastrustre-settings deployment field to setup manual gateways.", + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "mobile-agent-infrastructure-settings": { + "properties": { + "dns_servers": { + "items": { + "properties": { + "dns_suffix": { + "items": { + "type": "string" + }, + "type": "array" + }, + "internal_dns_match": { + "items": { + "properties": { + "domain_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + }, + "secondary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + }, + "secondary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "enable_wins": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "properties": { + "wins_servers": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ip_pools": { + "items": { + "properties": { + "ip_pool": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipv6": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "portal_hostname": { + "properties": { + "custom_domain": { + "properties": { + "cname": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "ssl_tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "default_domain": { + "properties": { + "hostname": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "udp_queries": { + "properties": { + "retries": { + "properties": { + "attempts": { + "description": "Maximum number of retries before trying next name server", + "maximum": 30, + "minimum": 1, + "type": "number" + }, + "interval": { + "description": "Time in seconds for another request to be sent", + "maximum": 30, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "dns_servers", + "ip_pools", + "portal_hostname" + ], + "type": "object" + }, + "mobile-agent-locations": { + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "move-auth-settings": { + "properties": { + "destination": { + "type": "string" + }, + "name": { + "type": "string" + }, + "where": { + "enum": [ + "before", + "after", + "top", + "bottom" + ], + "type": "string" + } + }, + "type": "object" + }, + "tunnel-mtu": { + "properties": { + "name": { + "default": "tunnel-mtu", + "enum": [ + "tunnel-mtu" + ], + "type": "string" + }, + "value": { + "description": "GlobalProtect Connection MTU (bytes)", + "items": { + "default": 1400, + "maximum": 1420, + "minimum": 1000, + "type": "number" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + "tunnel-profiles": { + "properties": { + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "maxLength": 31, + "minLength": 1, + "type": "string" + }, + "no_direct_access_to_local_network": { + "type": "boolean" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "retrieve_framed_ip_address": { + "type": "boolean" + }, + "source_address": { + "properties": { + "ip_address": { + "items": { + "type": "string" + }, + "type": "array" + }, + "region": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "split_tunneling": { + "properties": { + "access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "include_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "ocsp-responder": { + "properties": { + "host_name": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [:0-9a-zA-Z._-]", + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + } + }, + "required": [ + "name", + "host_name" + ], + "type": "object" + }, + "profile-groups": { + "properties": { + "dns_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "file_blocking": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "saas_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "spyware": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "url_filtering": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "virus_and_wildfire_analysis": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "vulnerability": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "qos-policy-rules": { + "properties": { + "action": { + "properties": { + "class": { + "type": "string" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "dscp_tos": { + "properties": { + "codepoints": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "ef": { + "type": "object" + } + }, + "title": "ef" + }, + { + "properties": { + "af": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "af" + }, + { + "properties": { + "cs": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cs" + }, + { + "properties": { + "tos": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tos" + }, + { + "properties": { + "custom": { + "properties": { + "codepoint": { + "properties": { + "binary_value": { + "type": "string" + }, + "codepoint_name": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "custom" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "schedule": { + "type": "string" + } + }, + "required": [ + "name", + "action" + ], + "type": "object" + }, + "qos-profiles": { + "properties": { + "aggregate_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 16000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "class_bandwidth_type": { + "oneOf": [ + { + "properties": { + "mbps": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "mbps", + "type": "object" + }, + { + "properties": { + "percentage": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "percentage", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "objects-quarantined-devices": { + "properties": { + "host_id": { + "description": "Device host id", + "type": "string" + }, + "ip": { + "description": "Device ip info", + "type": "string" + }, + "ipv6": { + "description": "Device ipv6 info", + "type": "string" + }, + "serial_number": { + "description": "Device serial number", + "type": "string" + } + }, + "required": [ + "host_id" + ], + "type": "object" + }, + "radius-server-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "CHAP": { + "type": "object" + } + }, + "title": "CHAP" + }, + { + "properties": { + "EAP_TTLS_with_PAP": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "EAP_TTLS_with_PAP" + }, + { + "properties": { + "PAP": { + "type": "object" + } + }, + "title": "PAP" + }, + { + "properties": { + "PEAP_MSCHAPv2": { + "properties": { + "allow_pwd_change": { + "type": "boolean" + }, + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_MSCHAPv2" + }, + { + "properties": { + "PEAP_with_GTC": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_with_GTC" + } + ], + "type": "object" + }, + "retries": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "server": { + "items": { + "properties": { + "ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 120, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "objects-regions": { + "properties": { + "address": { + "items": { + "type": "string", + "x-panMultiple": [] + }, + "type": "array" + }, + "geo_location": { + "properties": { + "latitude": { + "description": "latitude coordinate", + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "description": "longitude coordinate", + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "latitude", + "longitude" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "remote-networks": { + "properties": { + "ecmp_load_balancing": { + "default": "disable", + "enum": [ + "enable", + "disable" + ], + "type": "string" + }, + "ecmp_tunnels": { + "description": "ecmp_tunnels is required when ecmp_load_balancing is enable", + "items": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "ipsec_tunnel": { + "type": "string" + }, + "local_ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "required": [ + "name", + "ipsec_tunnel" + ], + "type": "object" + }, + "maxLength": 4, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ipsec_tunnel": { + "description": "ipsec_tunnel is required when ecmp_load_balancing is disable", + "type": "string" + }, + "license_type": { + "default": "FWAAS-AGGREGATE", + "description": "New customer will only be on aggregate bandwidth licensing", + "minLength": 1, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "region": { + "minLength": 1, + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "spn_name": { + "description": "spn-name is needed when license_type is FWAAS-AGGREGATE", + "type": "string" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "region", + "license_type" + ], + "type": "object" + }, + "saml-server-profiles": { + "properties": { + "certificate": { + "maxLength": 63, + "type": "string" + }, + "entity_id": { + "maxLength": 1024, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "max_clock_skew": { + "maximum": 900, + "minimum": 1, + "type": "integer" + }, + "slo_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_url": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "validate_idp_certificate": { + "type": "boolean" + }, + "want_auth_requests_signed": { + "type": "boolean" + } + }, + "required": [ + "certificate" + ], + "type": "object" + }, + "scep-profiles": { + "properties": { + "algorithm": { + "properties": { + "rsa": { + "properties": { + "rsa_nbits": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ca_identity_name": { + "type": "string" + }, + "certificate_attributes": { + "oneOf": [ + { + "properties": { + "rfc822name": { + "type": "string" + } + }, + "title": "rfc822name" + }, + { + "properties": { + "dnsname": { + "type": "string" + } + }, + "title": "dnsname" + }, + { + "properties": { + "uniform_resource_identifier": { + "type": "string" + } + }, + "title": "uniform_resource_identifier" + } + ], + "type": "object" + }, + "digest": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "scep_ca_cert": { + "type": "string" + }, + "scep_challenge": { + "oneOf": [ + { + "properties": { + "none": { + "default": "", + "enum": [ + "" + ], + "type": "string" + } + }, + "title": "none" + }, + { + "properties": { + "fixed": { + "description": "Challenge to use for SCEP server on mobile clients", + "maxLength": 1024, + "minLength": 0, + "type": "string" + } + }, + "title": "fixed" + }, + { + "properties": { + "dynamic": { + "properties": { + "otp_server_url": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "password": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "dynamic" + } + ], + "type": "object" + }, + "scep_client_cert": { + "type": "string" + }, + "scep_url": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "use_as_digital_signature": { + "type": "boolean" + }, + "use_for_key_encipherment": { + "type": "boolean" + } + }, + "required": [ + "name", + "scep_url", + "ca_identity_name", + "rsa_nbits", + "digest" + ], + "type": "object" + }, + "objects-schedules": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "schedule_type": { + "oneOf": [ + { + "properties": { + "recurring": { + "oneOf": [ + { + "properties": { + "weekly": { + "properties": { + "friday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "monday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "saturday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "sunday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "thursday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "tuesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "wednesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "weekly" + }, + { + "properties": { + "daily": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "daily" + } + ], + "type": "object" + } + }, + "title": "recurring" + }, + { + "properties": { + "non_recurring": { + "items": { + "description": "Datetime range specification YYYY/MM/DD@hh:mm-YYYY/MM/DD@hh:mm (e.g. 2006/08/01@10:00-2007/12/31@23:59)", + "maxLength": 33, + "minLength": 33, + "pattern": "[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "non_recurring" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "schedule_type" + ], + "type": "object" + }, + "security-rules": { + "properties": { + "action": { + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile_setting": { + "properties": { + "group": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "service-connection-groups": { + "properties": { + "disable_snat": { + "type": "boolean" + }, + "name": { + "description": "Name of the group.\n", + "type": "string" + }, + "pbf_only": { + "type": "boolean" + }, + "target": { + "description": "Array of service connection names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "target" + ], + "type": "object" + }, + "bgp-routing": { + "properties": { + "accept_route_over_SC": { + "type": "boolean" + }, + "add_host_route_to_ike_peer": { + "type": "boolean" + }, + "backbone_routing": { + "enum": [ + "no-asymmetric-routing", + "asymmetric-routing-only", + "asymmetric-routing-with-load-share" + ], + "type": "string" + }, + "outbound_routes_for_services": { + "items": { + "type": "string" + }, + "type": "array" + }, + "routing_preference": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "hot_potato_routing": { + "type": "object" + } + }, + "title": "hot_potato_routing" + } + ], + "type": "object" + }, + "withdraw_static_route": { + "type": "boolean" + } + }, + "type": "object" + }, + "service-connections": { + "properties": { + "backup_SC": { + "type": "string" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "local_ipv6_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peer_ipv6_address": { + "type": "string" + }, + "same_as_primary": { + "type": "boolean" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + }, + "ipsec_tunnel": { + "type": "string" + }, + "name": { + "type": "string" + }, + "nat_pool": { + "type": "string" + }, + "no_export_community": { + "enum": [ + "Disabled", + "Enabled-In", + "Enabled-Out", + "Enabled-Both" + ], + "type": "string" + }, + "onboarding_type": { + "default": "classic", + "enum": [ + "classic" + ], + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "fast_failover": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "qos": { + "properties": { + "enable": { + "type": "boolean" + }, + "qos_profile": { + "type": "string" + } + }, + "type": "object" + }, + "region": { + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "source_nat": { + "type": "boolean" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "ipsec_tunnel", + "region" + ], + "type": "object" + }, + "objects-service-groups": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "description": "Associate services or service groups", + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "service", + "subPath": "name" + }, + { + "location": "shared", + "schema": "service-group", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for service group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + }, + "objects-services": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "tcp": { + "properties": { + "override": { + "properties": { + "halfclose_timeout": { + "default": 120, + "description": "tcp session half-close timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timeout": { + "default": 3600, + "description": "tcp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timewait_timeout": { + "default": 15, + "description": "tcp session time-wait timeout value (in second)", + "maximum": 600, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "tcp" + }, + { + "properties": { + "udp": { + "properties": { + "override": { + "properties": { + "timeout": { + "default": 30, + "description": "udp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "udp" + } + ], + "type": "object" + }, + "tag": { + "description": "Tags for service object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "protocol" + ], + "type": "object" + }, + "tacacs-server-profiles": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "enum": [ + "CHAP", + "PAP" + ], + "type": "string" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 30, + "minimum": 1, + "type": "integer" + }, + "use_single_connection": { + "type": "boolean" + } + }, + "required": [ + "server", + "protocol" + ], + "type": "object" + }, + "tls-service-profiles": { + "properties": { + "certificate": { + "description": "SSL certificate file name", + "maxLength": 255, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Profile name", + "maxLength": 127, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "protocol_settings": { + "properties": { + "auth_algo_sha1": { + "description": "Allow authentication SHA1", + "type": "boolean" + }, + "auth_algo_sha256": { + "description": "Allow authentication SHA256", + "type": "boolean" + }, + "auth_algo_sha384": { + "description": "Allow authentication SHA384", + "type": "boolean" + }, + "enc_algo_3des": { + "description": "Allow algorithm 3DES", + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "description": "Allow algorithm AES-128-CBC", + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "description": "Allow algorithm AES-128-GCM", + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "description": "Allow algorithm AES-256-CBC", + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "description": "Allow algorithm AES-256-GCM", + "type": "boolean" + }, + "enc_algo_rc4": { + "description": "Allow algorithm RC4", + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "description": "Allow algorithm DHE", + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "description": "Allow algorithm ECDHE", + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "description": "Allow algorithm RSA", + "type": "boolean" + }, + "max_version": { + "default": "max", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "certificate", + "protocol_settings" + ], + "type": "object" + }, + "objects-tags": { + "properties": { + "color": { + "enum": [ + "Red", + "Green", + "Blue", + "Yellow", + "Copper", + "Orange", + "Purple", + "Gray", + "Light Green", + "Cyan", + "Light Gray", + "Blue Gray", + "Lime", + "Black", + "Gold", + "Brown", + "Olive", + "Maroon", + "Red-Orange", + "Yellow-Orange", + "Forest Green", + "Turquoise Blue", + "Azure Blue", + "Cerulean Blue", + "Midnight Blue", + "Medium Blue", + "Cobalt Blue", + "Violet Blue", + "Blue Violet", + "Medium Violet", + "Medium Rose", + "Lavender", + "Orchid", + "Thistle", + "Peach", + "Salmon", + "Magenta", + "Red Violet", + "Mahogany", + "Burnt Sienna", + "Chestnut" + ], + "type": "string" + }, + "comments": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 127, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "traffic-steering-rules": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "forward": { + "properties": { + "target": { + "type": "string" + } + }, + "type": "object" + }, + "no-pbf": { + "type": "object" + } + }, + "title": "forward", + "type": "object" + } + ], + "type": "object" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "service": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "service", + "source", + "target" + ], + "type": "object" + }, + "trusted-certificate-authorities": { + "properties": { + "common_name": { + "maxLength": 255, + "type": "string" + }, + "expiry_epoch": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "issuer": { + "type": "string" + }, + "name": { + "maxLength": 63, + "type": "string" + }, + "not_valid_after": { + "type": "string" + }, + "not_valid_before": { + "type": "string" + }, + "serial_number": { + "type": "string" + }, + "subject": { + "type": "string" + } + }, + "type": "object" + }, + "url-access-profiles": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cloud_inline_cat": { + "type": "boolean" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "credential_enforcement": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "log_severity": { + "default": "medium", + "type": "string" + }, + "mode": { + "properties": { + "disabled": { + "type": "object" + }, + "domain_credentials": { + "type": "object" + }, + "group_mapping": { + "type": "string" + }, + "ip_user": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_inline_cat": { + "type": "boolean" + }, + "log_container_page_only": { + "default": true, + "type": "boolean" + }, + "log_http_hdr_referer": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_user_agent": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_xff": { + "default": false, + "type": "boolean" + }, + "mlav_category_exception": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "safe_search_enforcement": { + "default": false, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "url-categories": { + "properties": { + "description": { + "type": "string" + }, + "list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "type": { + "default": "URL List", + "enum": [ + "URL List", + "Category Match" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "url-filtering-categories": { + "properties": { + "type": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "vulnerability-protection-profiles": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "any", + "brute-force", + "code-execution", + "code-obfuscation", + "command-execution", + "dos", + "exploit-kit", + "info-leak", + "insecure-credentials", + "overflow", + "phishing", + "protocol-anomaly", + "scan", + "sql-injection" + ], + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "host": { + "items": { + "enum": [ + "any", + "client", + "server" + ], + "type": "string" + }, + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "type": "string" + }, + "vendor_id": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source", + "destination", + "source-and-destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "vulnerability-protection-signatures": { + "properties": { + "affected_host": { + "oneOf": [ + { + "properties": { + "client": { + "type": "boolean" + } + }, + "title": "client" + }, + { + "properties": { + "server": { + "type": "boolean" + } + }, + "title": "server" + } + ], + "type": "object" + }, + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <41000-45000> and <6800001-6900000>", + "maximum": 6900000, + "minimum": 41000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "wildfire-anti-virus-profiles": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mlav_exception": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "packet_capture": { + "type": "boolean" + }, + "rules": { + "items": { + "properties": { + "analysis": { + "enum": [ + "public-cloud", + "private-cloud" + ], + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "direction": { + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "notes": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "parameters": { + "folder": { + "description": "The folder on which you want to perform this operation.\n", + "in": "query", + "name": "folder", + "required": true, + "schema": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + } + }, + "limit-optional": { + "description": "The maximum number of result objects to return per page.\n", + "in": "query", + "name": "limit", + "required": false, + "schema": { + "type": "number" + } + }, + "name-optional": { + "description": "The name of the entry.\n", + "in": "query", + "name": "name", + "required": false, + "schema": { + "type": "string" + } + }, + "offset-optional": { + "description": "The offset of the result entry.\n", + "in": "query", + "name": "offset", + "required": false, + "schema": { + "type": "number" + } + }, + "uuid-required": { + "description": "The resource's unique identifier.\n", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + "position": { + "description": "The position of a security rule\n", + "in": "query", + "name": "position", + "required": true, + "schema": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "name": { + "description": "The name of the entry.\n", + "in": "query", + "name": "name", + "required": true, + "schema": { + "type": "string" + } + }, + "aggregated-bandwidth-region-name-required": { + "description": "The name of the aggregated bandwidth region", + "in": "query", + "name": "name", + "required": true, + "schema": { + "type": "string" + } + }, + "aggregated-bandwidth-spn-name-list-required": { + "description": "Comma separated of the spn_name_list name per region", + "in": "query", + "name": "spn_name_list", + "required": true, + "schema": { + "type": "string" + } + }, + "jobid-required": { + "description": "The id of the job", + "in": "path", + "name": "id", + "required": true, + "schema": { + "type": "string" + } + }, + "version-required": { + "description": "The version of the running config", + "in": "path", + "name": "version", + "required": true, + "schema": { + "type": "string" + } + }, + "folder-noserviceconnection": { + "description": "The folder of the entry\n", + "in": "query", + "name": "folder", + "required": true, + "schema": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + } + }, + "device": { + "description": "The device of the entry\n", + "in": "query", + "name": "device", + "required": true, + "schema": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + } + }, + "snippet": { + "description": "The snippet of the entry\n", + "in": "query", + "name": "snippet", + "required": true, + "schema": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + } + }, + "folder-mobile-users": { + "in": "query", + "name": "folder", + "required": true, + "schema": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "host_id": { + "description": "Device host id\n", + "in": "query", + "name": "host_id", + "schema": { + "type": "string" + } + }, + "host_id_required": { + "description": "Device host id\n", + "in": "query", + "name": "host_id", + "required": true, + "schema": { + "type": "string" + } + }, + "serial_number": { + "description": "Device serial number\n", + "in": "query", + "name": "serial_number", + "schema": { + "type": "string" + } + }, + "type": { + "description": "The type of the schema node\n", + "in": "query", + "name": "type", + "required": true, + "schema": { + "enum": [ + "cloud", + "container" + ], + "type": "string" + } + } + }, + "responses": { + "access_errors": { + "content": { + "application/json": { + "examples": { + "auth_unauthorized": { + "$ref": "#/components/examples/json_403_panui_auth_unauthorized" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Forbidden" + }, + "auth_errors": { + "content": { + "application/json": { + "examples": { + "auth_not_authenticated": { + "$ref": "#/components/examples/json_401_panui_auth_not_authenticated" + }, + "invalid_credential": { + "$ref": "#/components/examples/json_401_panui_auth_invalid_credential" + }, + "key_expired": { + "$ref": "#/components/examples/json_401_panui_auth_key_expired" + }, + "key_too_long": { + "$ref": "#/components/examples/json_401_panui_auth_key_too_long" + }, + "need_password_change": { + "$ref": "#/components/examples/json_401_panui_auth_need_password_change" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Unauthorized" + }, + "bad_request_errors_basic": { + "content": { + "application/json": { + "examples": { + "input_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_input_format_mismatch" + }, + "invalid_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_invalid_query_parameter" + }, + "missing_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_missing_query_parameter" + }, + "output_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_output_format_mismatch" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Bad Request" + }, + "bad_request_errors_basic_with_body": { + "content": { + "application/json": { + "examples": { + "input_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_input_format_mismatch" + }, + "invalid_object": { + "$ref": "#/components/examples/json_400_panui_mgmt_invalid_object" + }, + "invalid_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_invalid_query_parameter" + }, + "missing_body": { + "$ref": "#/components/examples/json_400_panui_restapi_missing_body" + }, + "missing_query_parameter": { + "$ref": "#/components/examples/json_400_panui_restapi_missing_query_parameter" + }, + "output_format_mismatch": { + "$ref": "#/components/examples/json_400_panui_restapi_output_format_mismatch" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Bad Request" + }, + "conflict_errors": { + "content": { + "application/json": { + "examples": { + "name_not_unique": { + "$ref": "#/components/examples/json_409_panui_mgmt_name_not_unique" + }, + "object_not_unique": { + "$ref": "#/components/examples/json_409_panui_mgmt_object_not_unique" + }, + "reference_not_zero": { + "$ref": "#/components/examples/json_409_panui_mgmt_reference_not_zero" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Conflict" + }, + "default_errors": { + "content": { + "application/json": { + "examples": { + "action_not_supported": { + "$ref": "#/components/examples/json_405_panui_restapi_action_not_supported" + }, + "bad_xpath": { + "$ref": "#/components/examples/json_400_panui_mgmt_bad_xpath" + }, + "invalid_command": { + "$ref": "#/components/examples/json_400_panui_mgmt_invalid_command" + }, + "malformed_command": { + "$ref": "#/components/examples/json_400_panui_mgmt_malformed_command" + }, + "method_not_allowed": { + "$ref": "#/components/examples/json_501_panui_restapi_method_not_supported" + }, + "session_timeout": { + "$ref": "#/components/examples/json_504_panui_mgmt_session_timeout" + }, + "version_not_supported": { + "$ref": "#/components/examples/json_501_panui_restapi_version_not_supported" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "General Errors" + }, + "http_created": { + "description": "Created" + }, + "http_ok": { + "description": "Ok" + }, + "not_found": { + "content": { + "application/json": { + "examples": { + "object_not_present": { + "$ref": "#/components/examples/json_404_panui_mgmt_object_not_present" + } + }, + "schema": { + "$ref": "#/components/schemas/generic_error" + } + } + }, + "description": "Not Found" + } + }, + "securitySchemes": { + "oauth2ClientCredentials": { + "type": "oauth2", + "flows": { + "clientCredentials": { + "tokenUrl": "https://auth.apps.paloaltonetworks.com/auth/v1/oauth2/access_token", + "scopes": {} + } + } + } + } + } +} \ No newline at end of file diff --git a/Palo Alto/Prisma Access/README.md b/Palo Alto/Prisma Access/README.md new file mode 100644 index 0000000..44deeb3 --- /dev/null +++ b/Palo Alto/Prisma Access/README.md @@ -0,0 +1,116 @@ +Prisma Access is Palo Alto Networks' cloud-delivered SASE platform, providing network and security configuration (security policies, threat prevention profiles, remote networks, mobile users, and more) for a distributed workforce, managed via Strata Cloud Manager. + +This project provides an OpenAPI spec for automating against Prisma Access's SASE configuration API via an Integration Model, plus a Studio Project of ready-to-import CRUD workflows built on that model. + +## Table of Contents + +- [Contents](#contents) +- [Requirements](#requirements) +- [Integration Configuration](#integration-configuration) +- [OpenAPIs](#openapis) + - [`palo_alto_prisma_access-latest.json`](#palo_alto_prisma_access-latestjson) + - [`palo_alto_prisma_access-1.0.json`](#palo_alto_prisma_access-10json) +- [Studio Projects](#studio-projects) + - [Palo Alto Prisma Access Project](#palo-alto-prisma-access-project) + - [Folder Structure](#folder-structure) + - [Dependencies](#dependencies) + +## Contents + +| Asset | Description | +|---|---| +| [OpenAPIs/](./OpenAPIs/) | Palo Alto Prisma Access API OpenAPI specs | +| [Studio Projects/](./Studio%20Projects/) | Itential Platform project containing all 344 workflows in 68 folders | + +## Requirements + +| Requirement | Version | +|---|---| +| Itential Platform | 6.x | +| `Palo Alto Prisma Access:latest` Integration Model | Required to build automation against the OpenAPI spec, and to run the Studio Project below | + +## Integration Configuration + +Import `palo_alto_prisma_access-latest.json` as an Integration Model in **Admin > Integrations**, then create an integration pointing at Prisma Access's SASE API. + +Authentication is OAuth 2.0 (client credentials grant), using an IAM service account's client ID/secret and your Tenant Service Group (TSG) ID as the scope. Set `auth_method` to `client_secret_basic` — Palo Alto's token endpoint requires HTTP Basic client credentials, not the alternate body-based method. + +The instance's `authentication`/`server` properties should look like this once configured: + +```json +{ + "authentication": { + "oauth2ClientCredentials": { + "client_id": "", + "client_secret": "", + "auth_method": "client_secret_basic", + "scope": "tsg_id:", + "token_url": "https://auth.apps.paloaltonetworks.com/auth/v1/oauth2/access_token", + "refresh_url": "", + "token": { "access_token": "" } + } + }, + "server": { + "protocol": "https", + "host": "api.sase.paloaltonetworks.com", + "base_path": "" + } +} +``` + +## OpenAPIs + +| Spec | Version | Operations | Description | +|---|---|---|---| +| [`palo_alto_prisma_access-latest.json`](./OpenAPIs/palo_alto_prisma_access-latest.json) | latest | 344 | All 68 published SASE configuration resource categories — see breakdown below | +| [`palo_alto_prisma_access-1.0.json`](./OpenAPIs/palo_alto_prisma_access-1.0.json) | 1.0 | 344 | Same content, dated per the individual resource specs' own version (1.0) | + +### `palo_alto_prisma_access-latest.json` + +Merged from Palo Alto's own 68 separate per-resource OpenAPI specs, [published directly in their `pan.dev` developer GitHub org](https://github.com/PaloAltoNetworks/pan.dev/tree/master/openapi-specs/access/prisma-access-config). Reviewed against this repo's common-CRUD-for-automation policy: all 344 upstream operations across all 68 resource categories are already in scope for automation, so nothing was excluded. + +Resources included, by category: + +- **Network & Security Objects**: Addresses, Address Groups, Services, Service Groups, Applications, Application Groups/Filters, Tags, Regions, Schedules, External Dynamic Lists, Dynamic User Groups +- **Security Policies & Rules**: Security Rules, Decryption Rules, Application Override Rules, Traffic Steering Rules, QoS Policy Rules, Authentication Rules +- **Threat Prevention Profiles**: Anti-Spyware, Vulnerability Protection, WildFire Antivirus, File Blocking, DNS Security, Profile Groups +- **Authentication & User Management**: Authentication Profiles/Portals/Sequences, Local Users/Groups, LDAP/SAML/RADIUS/TACACS+/Kerberos/MFA server profiles +- **Certificates & Encryption**: Certificates, Certificate Profiles, Trusted CAs, Decryption Profiles/Exclusions, IKE Gateways/Crypto Profiles, IPSec Tunnels/Crypto Profiles, SCEP, OCSP Responder +- **Application Control**: URL Access Profiles, URL Categories, HIP Objects/Profiles +- **Network Infrastructure**: Remote Networks, Service Connections/Groups, Locations, Internal DNS Servers, Infrastructure Settings, Bandwidth Allocations, QoS Profiles +- **Mobile Agent (GlobalProtect)**: agent profiles, tunnel profiles, authentication/infrastructure/global settings +- **Other**: Tags, HTTP Header Profiles, TLS Service Profiles, Auto Tag Actions, Quarantined Devices, Configuration Management (candidate push/versioning), License Types + +Merging the 68 upstream files required resolving shared component definitions (parameter and response templates) referenced across files by the same name — where two files' definitions actually differed in content, the conflicting one was kept under a distinct name rather than silently overwritten. + +### `palo_alto_prisma_access-1.0.json` + +Identical content to `-latest.json` — kept as the dated file per this repo's convention of always pairing a curated spec with a preserved original, even when the review found nothing to exclude. Version `1.0` matches the individual upstream resource specs' own declared version. + +## Studio Projects + +### Palo Alto Prisma Access Project + +Backed by the **`Palo Alto Prisma Access:latest`** Integration Model (see [`palo_alto_prisma_access-latest.json`](./OpenAPIs/palo_alto_prisma_access-latest.json) above). The project contains **344 workflows** organized into **68 folders**, one per resource category. + +#### Folder Structure + +| Category | Folders | Workflows | +|---|---|---| +| Mobile Agent | MobileAgent | 24 | +| Configuration Management | ConfigurationManagement | 9 | +| Network Infrastructure | ServiceConnections, ServiceConnectionGroups, RemoteNetworks, Regions, InternalDNSServers, InfrastructureSettings, BandwidthAllocations, QoSProfiles, Locations | 40 | +| Security Policies & Rules | SecurityRules, DecryptionRules, ApplicationOverrideRules, TrafficSteeringRules, QoSPolicyRules, AuthenticationRules | 34 | +| Network & Security Objects | Addresses, AddressGroups, Services, ServiceGroups, Applications, ApplicationGroups, ApplicationFilters, Tags, Schedules, ExternalDynamicLists, DynamicUserGroups | 55 | +| Threat Prevention Profiles | AntiSpywareProfiles, AntiSpywareSignatures, VulnerabilityProtectionProfiles, VulnerabilityProtectionSignatures, WildFireAntivirusProfiles, FileBlockingProfiles, DNSSecurityProfiles, ProfileGroups | 39 | +| Authentication & User Management | AuthenticationProfiles, AuthenticationPortals, AuthenticationSequences, LocalUsers, LocalUserGroups, LDAPServerProfiles, SAMLServerProfiles, RadiusServerProfiles, TACACSServerProfiles, KerberosServerProfiles, MFAServers | 54 | +| Certificates & Encryption | Certificates, CertificateProfiles, TrustedCertificateAuthorities, DecryptionProfiles, DecryptionExclusions, IKEGateways, IKECryptoProfiles, IPSecTunnels, IPSecCryptoProfiles, SCEPProfiles, OCSPResponder | 50 | +| Application Control | URLAccessProfiles, URLCategories, URLFilteringCategories, HIPObjects, HIPProfiles | 21 | +| Other | HTTPHeaderProfiles, TLSServiceProfiles, AutoTagActions, QuarantinedDevices, LicenseTypes | 18 | + +#### Dependencies + +| Dependency | Notes | +|---|---| +| `Palo Alto Prisma Access:latest` Integration Model | Import from [`palo_alto_prisma_access-latest.json`](./OpenAPIs/palo_alto_prisma_access-latest.json) before importing the project | +| `Palo Alto Prisma Access` integration instance | Create in **Admin > Integrations** with the connection properties above. Workflows are wired to an integration instance named `Palo Alto Prisma Access` — update the `adapter_id` value in each workflow task if yours is named differently | diff --git a/Palo Alto/Prisma Access/Studio Projects/Palo Alto Prisma Access.project.json b/Palo Alto/Prisma Access/Studio Projects/Palo Alto Prisma Access.project.json new file mode 100644 index 0000000..37b6476 --- /dev/null +++ b/Palo Alto/Prisma Access/Studio Projects/Palo Alto Prisma Access.project.json @@ -0,0 +1,92677 @@ +{ + "_id": "6a9207908a376fbbe14b8eb3", + "name": "Palo Alto Prisma Access", + "description": "Palo Alto Prisma Access SASE network and security configuration workflows", + "components": [ + { + "iid": 0, + "reference": "19f8d984-8283-4422-9f70-d8a3e4703ce7", + "type": "workflow", + "folder": "/AddressGroups", + "document": { + "name": "Create an Address Group", + "description": "Create an Address Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-address-groups", + "canvasName": "post-sse-config-v1-address-groups", + "summary": "post-sse-config-v1-address-groups", + "description": "post-sse-config-v1-address-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "static": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "address-group", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "required": [ + "static" + ], + "title": "static" + }, + { + "properties": { + "dynamic": { + "properties": { + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + } + }, + "required": [ + "filter" + ], + "type": "object" + } + }, + "required": [ + "dynamic" + ], + "title": "dynamic" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "static": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "address-group", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "required": [ + "static" + ], + "title": "static" + }, + { + "properties": { + "dynamic": { + "properties": { + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + } + }, + "required": [ + "filter" + ], + "type": "object" + } + }, + "required": [ + "dynamic" + ], + "title": "dynamic" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b976836e-163d-4051-b313-57cbc8ecb5e2", + "created": "2026-08-28T22:10:30.551Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 1, + "reference": "80e72eca-4c20-46b6-824c-05de08ce0225", + "type": "workflow", + "folder": "/AddressGroups", + "document": { + "name": "Delete an Address Group", + "description": "Delete an Address Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-address-groups-id", + "canvasName": "delete-sse-config-v1-address-groups-id", + "summary": "delete-sse-config-v1-address-groups-id", + "description": "delete-sse-config-v1-address-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a2338686-7a0c-4a31-a2d3-5e1bf91904da", + "created": "2026-08-28T22:10:30.589Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 2, + "reference": "dc1e913d-9dee-43dd-a7aa-3a99fded1326", + "type": "workflow", + "folder": "/AddressGroups", + "document": { + "name": "Edit an Address Group", + "description": "Edit an Address Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-address-groups-id", + "canvasName": "put-sse-config-v1-address-groups-id", + "summary": "put-sse-config-v1-address-groups-id", + "description": "put-sse-config-v1-address-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "static": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "address-group", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "required": [ + "static" + ], + "title": "static" + }, + { + "properties": { + "dynamic": { + "properties": { + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + } + }, + "required": [ + "filter" + ], + "type": "object" + } + }, + "required": [ + "dynamic" + ], + "title": "dynamic" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "static": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "address-group", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "required": [ + "static" + ], + "title": "static" + }, + { + "properties": { + "dynamic": { + "properties": { + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + } + }, + "required": [ + "filter" + ], + "type": "object" + } + }, + "required": [ + "dynamic" + ], + "title": "dynamic" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "20c17f78-34b5-406c-b3e5-24d1b9f46c6b", + "created": "2026-08-28T22:10:30.674Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 3, + "reference": "25624cc4-feff-445e-ad7d-a7a6420030c7", + "type": "workflow", + "folder": "/AddressGroups", + "document": { + "name": "Get All Address Groups", + "description": "Get All Address Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-address-groups", + "canvasName": "get-sse-config-v1-address-groups", + "summary": "get-sse-config-v1-address-groups", + "description": "get-sse-config-v1-address-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cf9935cc-d5be-401d-be1a-592e56b348a5", + "created": "2026-08-28T22:10:30.494Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 4, + "reference": "03733f22-cab6-48a1-9598-ee77c36012e0", + "type": "workflow", + "folder": "/AddressGroups", + "document": { + "name": "Get an Address Group by ID", + "description": "Get an Address Group by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-address-groups-id", + "canvasName": "get-sse-config-v1-address-groups-id", + "summary": "get-sse-config-v1-address-groups-id", + "description": "get-sse-config-v1-address-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "69ee2220-1bb3-49dd-baac-b9a6c5270ff9", + "created": "2026-08-28T22:10:30.630Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 5, + "reference": "71d11ab9-24de-455e-aed6-5c79d8a153d1", + "type": "workflow", + "folder": "/Addresses", + "document": { + "name": "Create an Address", + "description": "Create an Address", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-addresses", + "canvasName": "post-sse-config-v1-addresses", + "summary": "post-sse-config-v1-addresses", + "description": "post-sse-config-v1-addresses", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "ip_netmask": { + "type": "string" + } + }, + "required": [ + "ip_netmask" + ], + "title": "ip_netmask" + }, + { + "properties": { + "ip_range": { + "type": "string" + } + }, + "required": [ + "ip_range" + ], + "title": "ip_range" + }, + { + "properties": { + "ip_wildcard": { + "type": "string" + } + }, + "required": [ + "ip_wildcard" + ], + "title": "ip_wildcard" + }, + { + "properties": { + "fqdn": { + "maxLength": 255, + "minLength": 1, + "pattern": "^[a-zA-Z0-9_]([a-zA-Z0-9._-])+[a-zA-Z0-9]$", + "type": "string" + } + }, + "required": [ + "fqdn" + ], + "title": "fqdn" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "type": { + "example": "container", + "readOnly": true, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "ip_netmask": { + "type": "string" + } + }, + "required": [ + "ip_netmask" + ], + "title": "ip_netmask" + }, + { + "properties": { + "ip_range": { + "type": "string" + } + }, + "required": [ + "ip_range" + ], + "title": "ip_range" + }, + { + "properties": { + "ip_wildcard": { + "type": "string" + } + }, + "required": [ + "ip_wildcard" + ], + "title": "ip_wildcard" + }, + { + "properties": { + "fqdn": { + "maxLength": 255, + "minLength": 1, + "pattern": "^[a-zA-Z0-9_]([a-zA-Z0-9._-])+[a-zA-Z0-9]$", + "type": "string" + } + }, + "required": [ + "fqdn" + ], + "title": "fqdn" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "type": { + "example": "container", + "readOnly": true, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6ef6d043-60c4-4df8-9390-c8355e32151c", + "created": "2026-08-28T22:10:30.742Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 6, + "reference": "e6522ccd-7fc4-4690-b350-0f0d0027caaa", + "type": "workflow", + "folder": "/Addresses", + "document": { + "name": "Delete an Address", + "description": "Delete an Address", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-addresses-id", + "canvasName": "delete-sse-config-v1-addresses-id", + "summary": "delete-sse-config-v1-addresses-id", + "description": "delete-sse-config-v1-addresses-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "fa34f7fc-0411-484a-a015-2b76d269d8b8", + "created": "2026-08-28T22:10:30.771Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 7, + "reference": "bbdf7a57-5048-4846-9780-8450fa8bf2ca", + "type": "workflow", + "folder": "/Addresses", + "document": { + "name": "Edit an Address", + "description": "Edit an Address", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-addresses-id", + "canvasName": "put-sse-config-v1-addresses-id", + "summary": "put-sse-config-v1-addresses-id", + "description": "put-sse-config-v1-addresses-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "ip_netmask": { + "type": "string" + } + }, + "required": [ + "ip_netmask" + ], + "title": "ip_netmask" + }, + { + "properties": { + "ip_range": { + "type": "string" + } + }, + "required": [ + "ip_range" + ], + "title": "ip_range" + }, + { + "properties": { + "ip_wildcard": { + "type": "string" + } + }, + "required": [ + "ip_wildcard" + ], + "title": "ip_wildcard" + }, + { + "properties": { + "fqdn": { + "maxLength": 255, + "minLength": 1, + "pattern": "^[a-zA-Z0-9_]([a-zA-Z0-9._-])+[a-zA-Z0-9]$", + "type": "string" + } + }, + "required": [ + "fqdn" + ], + "title": "fqdn" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "type": { + "example": "container", + "readOnly": true, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "ip_netmask": { + "type": "string" + } + }, + "required": [ + "ip_netmask" + ], + "title": "ip_netmask" + }, + { + "properties": { + "ip_range": { + "type": "string" + } + }, + "required": [ + "ip_range" + ], + "title": "ip_range" + }, + { + "properties": { + "ip_wildcard": { + "type": "string" + } + }, + "required": [ + "ip_wildcard" + ], + "title": "ip_wildcard" + }, + { + "properties": { + "fqdn": { + "maxLength": 255, + "minLength": 1, + "pattern": "^[a-zA-Z0-9_]([a-zA-Z0-9._-])+[a-zA-Z0-9]$", + "type": "string" + } + }, + "required": [ + "fqdn" + ], + "title": "fqdn" + } + ], + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "type": { + "example": "container", + "readOnly": true, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ef344f87-36c2-43f9-81c9-dec5c30c4160", + "created": "2026-08-28T22:10:30.839Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 8, + "reference": "7045e6a7-2823-4790-8ab5-c5a691014665", + "type": "workflow", + "folder": "/Addresses", + "document": { + "name": "Get an Address by ID", + "description": "Get an Address by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-addresses-id", + "canvasName": "get-sse-config-v1-addresses-id", + "summary": "get-sse-config-v1-addresses-id", + "description": "get-sse-config-v1-addresses-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "bc3e1a48-84e5-4a66-a522-72d18e37d881", + "created": "2026-08-28T22:10:30.804Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 9, + "reference": "3b977dbc-407a-423e-94f7-44f2c8835682", + "type": "workflow", + "folder": "/Addresses", + "document": { + "name": "List Addresses", + "description": "List Addresses", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-addresses", + "canvasName": "get-sse-config-v1-addresses", + "summary": "get-sse-config-v1-addresses", + "description": "get-sse-config-v1-addresses", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7eacfad1-dc4d-43c9-97ab-72e5429394c3", + "created": "2026-08-28T22:10:30.708Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 10, + "reference": "048406a0-62fd-4a80-b3ca-ed86795b088f", + "type": "workflow", + "folder": "/AntiSpywareProfiles", + "document": { + "name": "Create an Anti-spyware Profile", + "description": "Create an Anti-spyware Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-anti-spyware-profiles", + "canvasName": "post-sse-config-v1-anti-spyware-profiles", + "summary": "post-sse-config-v1-anti-spyware-profiles", + "description": "post-sse-config-v1-anti-spyware-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "cloud_inline_analysis": { + "default": false, + "type": "boolean" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "inline_exception_edl_url": { + "items": { + "type": "string" + }, + "maxLength": 127, + "type": "array" + }, + "inline_exception_ip_address": { + "items": { + "type": "string" + }, + "maxLength": 63, + "type": "array" + }, + "mica_engine_spyware_enabled": { + "items": { + "properties": { + "inline_policy_action": { + "default": "alert", + "enum": [ + "alert", + "allow", + "drop", + "reset-both", + "reset-client", + "reset-server" + ], + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "dns-proxy", + "backdoor", + "data-theft", + "autogen", + "spyware", + "dns-security", + "downloader", + "dns-phishing", + "phishing-kit", + "cryptominer", + "hacktool", + "dns-benign", + "dns-wildfire", + "botnet", + "dns-grayware", + "inline-cloud-c2", + "keylogger", + "p2p-communication", + "domain-edl", + "webshell", + "command-and-control", + "dns-ddns", + "net-worm", + "any", + "tls-fingerprint", + "dns-new-domain", + "dns", + "fraud", + "dns-c2", + "adware", + "post-exploitation", + "dns-malware", + "browser-hijack", + "dns-parked" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "minLength": 4, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "cloud_inline_analysis": { + "default": false, + "type": "boolean" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "inline_exception_edl_url": { + "items": { + "type": "string" + }, + "maxLength": 127, + "type": "array" + }, + "inline_exception_ip_address": { + "items": { + "type": "string" + }, + "maxLength": 63, + "type": "array" + }, + "mica_engine_spyware_enabled": { + "items": { + "properties": { + "inline_policy_action": { + "default": "alert", + "enum": [ + "alert", + "allow", + "drop", + "reset-both", + "reset-client", + "reset-server" + ], + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "dns-proxy", + "backdoor", + "data-theft", + "autogen", + "spyware", + "dns-security", + "downloader", + "dns-phishing", + "phishing-kit", + "cryptominer", + "hacktool", + "dns-benign", + "dns-wildfire", + "botnet", + "dns-grayware", + "inline-cloud-c2", + "keylogger", + "p2p-communication", + "domain-edl", + "webshell", + "command-and-control", + "dns-ddns", + "net-worm", + "any", + "tls-fingerprint", + "dns-new-domain", + "dns", + "fraud", + "dns-c2", + "adware", + "post-exploitation", + "dns-malware", + "browser-hijack", + "dns-parked" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "minLength": 4, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "18ae167e-4af9-4913-915e-caac4e8615f1", + "created": "2026-08-28T22:10:30.902Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 11, + "reference": "bc44790d-0ba5-4136-83c5-b1afd136ecd1", + "type": "workflow", + "folder": "/AntiSpywareProfiles", + "document": { + "name": "Delete an Anti-spyware Profile", + "description": "Delete an Anti-spyware Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-anti-spyware-profiles-id", + "canvasName": "delete-sse-config-v1-anti-spyware-profiles-id", + "summary": "delete-sse-config-v1-anti-spyware-profiles-id", + "description": "delete-sse-config-v1-anti-spyware-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "63e62414-ae8b-46ff-b54f-0c1b7e09937f", + "created": "2026-08-28T22:10:30.934Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 12, + "reference": "af53de98-91ec-4ebd-9449-4ebdbb17f52e", + "type": "workflow", + "folder": "/AntiSpywareProfiles", + "document": { + "name": "Edit an Anti-spyware Profile", + "description": "Edit an Anti-spyware Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-anti-spyware-profiles-id", + "canvasName": "put-sse-config-v1-anti-spyware-profiles-id", + "summary": "put-sse-config-v1-anti-spyware-profiles-id", + "description": "put-sse-config-v1-anti-spyware-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "cloud_inline_analysis": { + "default": false, + "type": "boolean" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "inline_exception_edl_url": { + "items": { + "type": "string" + }, + "maxLength": 127, + "type": "array" + }, + "inline_exception_ip_address": { + "items": { + "type": "string" + }, + "maxLength": 63, + "type": "array" + }, + "mica_engine_spyware_enabled": { + "items": { + "properties": { + "inline_policy_action": { + "default": "alert", + "enum": [ + "alert", + "allow", + "drop", + "reset-both", + "reset-client", + "reset-server" + ], + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "dns-proxy", + "backdoor", + "data-theft", + "autogen", + "spyware", + "dns-security", + "downloader", + "dns-phishing", + "phishing-kit", + "cryptominer", + "hacktool", + "dns-benign", + "dns-wildfire", + "botnet", + "dns-grayware", + "inline-cloud-c2", + "keylogger", + "p2p-communication", + "domain-edl", + "webshell", + "command-and-control", + "dns-ddns", + "net-worm", + "any", + "tls-fingerprint", + "dns-new-domain", + "dns", + "fraud", + "dns-c2", + "adware", + "post-exploitation", + "dns-malware", + "browser-hijack", + "dns-parked" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "minLength": 4, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "cloud_inline_analysis": { + "default": false, + "type": "boolean" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "inline_exception_edl_url": { + "items": { + "type": "string" + }, + "maxLength": 127, + "type": "array" + }, + "inline_exception_ip_address": { + "items": { + "type": "string" + }, + "maxLength": 63, + "type": "array" + }, + "mica_engine_spyware_enabled": { + "items": { + "properties": { + "inline_policy_action": { + "default": "alert", + "enum": [ + "alert", + "allow", + "drop", + "reset-both", + "reset-client", + "reset-server" + ], + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "dns-proxy", + "backdoor", + "data-theft", + "autogen", + "spyware", + "dns-security", + "downloader", + "dns-phishing", + "phishing-kit", + "cryptominer", + "hacktool", + "dns-benign", + "dns-wildfire", + "botnet", + "dns-grayware", + "inline-cloud-c2", + "keylogger", + "p2p-communication", + "domain-edl", + "webshell", + "command-and-control", + "dns-ddns", + "net-worm", + "any", + "tls-fingerprint", + "dns-new-domain", + "dns", + "fraud", + "dns-c2", + "adware", + "post-exploitation", + "dns-malware", + "browser-hijack", + "dns-parked" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "minLength": 4, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e820aa97-1f79-4b9e-932a-a01562861c6a", + "created": "2026-08-28T22:10:31.002Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 13, + "reference": "65bdbba9-6a67-4399-a2f4-538f348e27da", + "type": "workflow", + "folder": "/AntiSpywareProfiles", + "document": { + "name": "Get an Anti-spyware Profile by ID", + "description": "Get an Anti-spyware Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-anti-spyware-profiles-id", + "canvasName": "get-sse-config-v1-anti-spyware-profiles-id", + "summary": "get-sse-config-v1-anti-spyware-profiles-id", + "description": "get-sse-config-v1-anti-spyware-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5166f198-24cc-463a-8f65-4bd07bdd8fba", + "created": "2026-08-28T22:10:30.967Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 14, + "reference": "c62cf180-cd37-475a-9b98-b8718e8e22ac", + "type": "workflow", + "folder": "/AntiSpywareProfiles", + "document": { + "name": "List All Anti-spyware Profiles", + "description": "List All Anti-spyware Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-anti-spyware-profiles", + "canvasName": "get-sse-config-v1-anti-spyware-profiles", + "summary": "get-sse-config-v1-anti-spyware-profiles", + "description": "get-sse-config-v1-anti-spyware-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "41da7c29-378b-4ab2-a351-20368fb70810", + "created": "2026-08-28T22:10:30.869Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 15, + "reference": "83fb077c-1791-404d-b383-0154158f2314", + "type": "workflow", + "folder": "/AntiSpywareSignatures", + "document": { + "name": "Create an Anti-spyware Signature", + "description": "Create an Anti-spyware Signature", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-anti-spyware-signatures", + "canvasName": "post-sse-config-v1-anti-spyware-signatures", + "summary": "post-sse-config-v1-anti-spyware-signatures", + "description": "post-sse-config-v1-anti-spyware-signatures", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <15000-18000> and <6900001-7000000>", + "maximum": 70000000, + "minimum": 15000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <15000-18000> and <6900001-7000000>", + "maximum": 70000000, + "minimum": 15000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f6a8cdd3-2873-434c-ba3e-ae635fbfa265", + "created": "2026-08-28T22:10:31.078Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 16, + "reference": "a9e0e712-215a-4e53-94fd-5948f7742519", + "type": "workflow", + "folder": "/AntiSpywareSignatures", + "document": { + "name": "Delete an Anti-spyware Signature", + "description": "Delete an Anti-spyware Signature", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-anti-spyware-signatures-id", + "canvasName": "delete-sse-config-v1-anti-spyware-signatures-id", + "summary": "delete-sse-config-v1-anti-spyware-signatures-id", + "description": "delete-sse-config-v1-anti-spyware-signatures-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "98618beb-4adf-472d-9642-89d535e73e2a", + "created": "2026-08-28T22:10:31.117Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 17, + "reference": "dd46a046-2422-477e-8dee-79e3b2ba9ab7", + "type": "workflow", + "folder": "/AntiSpywareSignatures", + "document": { + "name": "Edit an Anti-spyware Signature", + "description": "Edit an Anti-spyware Signature", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-anti-spyware-signatures-id", + "canvasName": "put-sse-config-v1-anti-spyware-signatures-id", + "summary": "put-sse-config-v1-anti-spyware-signatures-id", + "description": "put-sse-config-v1-anti-spyware-signatures-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <15000-18000> and <6900001-7000000>", + "maximum": 70000000, + "minimum": 15000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <15000-18000> and <6900001-7000000>", + "maximum": 70000000, + "minimum": 15000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "03bf4861-442b-4dad-b503-f00a0a4c25a3", + "created": "2026-08-28T22:10:31.159Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 18, + "reference": "14fca1cf-5d35-437e-a110-97fabb7e7663", + "type": "workflow", + "folder": "/AntiSpywareSignatures", + "document": { + "name": "List All Anti-spyware Signatures", + "description": "List All Anti-spyware Signatures", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-anti-spyware-signatures", + "canvasName": "get-sse-config-v1-anti-spyware-signatures", + "summary": "get-sse-config-v1-anti-spyware-signatures", + "description": "get-sse-config-v1-anti-spyware-signatures", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "031bb6c9-c9c6-498b-a947-fda033175fa7", + "created": "2026-08-28T22:10:31.031Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 19, + "reference": "aec96568-a7c7-4ab7-be17-ace613e09932", + "type": "workflow", + "folder": "/ApplicationOverrideRules", + "document": { + "name": "Create an Application Override Rule", + "description": "Create an Application Override Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-app-override-rules", + "canvasName": "post-sse-config-v1-app-override-rules", + "summary": "post-sse-config-v1-app-override-rules", + "description": "post-sse-config-v1-app-override-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "application": { + "type": "string" + }, + "description": { + "maxLength": 1024, + "type": "string" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "port": { + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "protocol": { + "enum": [ + "tcp", + "udp" + ], + "type": "string" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "application", + "port", + "protocol", + "destination", + "from", + "source", + "to" + ], + "type": "object" + } + }, + "required": [ + "position", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "application": { + "type": "string" + }, + "description": { + "maxLength": 1024, + "type": "string" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "port": { + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "protocol": { + "enum": [ + "tcp", + "udp" + ], + "type": "string" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "application", + "port", + "protocol", + "destination", + "from", + "source", + "to" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d0bd7d80-2fdb-4336-b0a7-ae8f1c5719f4", + "created": "2026-08-28T22:10:31.233Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 20, + "reference": "a4a5074b-6050-4055-871b-083c41444cba", + "type": "workflow", + "folder": "/ApplicationOverrideRules", + "document": { + "name": "Delete an Application Override Rule", + "description": "Delete an Application Override Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-app-override-rules-id", + "canvasName": "delete-sse-config-v1-app-override-rules-id", + "summary": "delete-sse-config-v1-app-override-rules-id", + "description": "delete-sse-config-v1-app-override-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "c18ba288-fa28-4f6c-a3bd-0780e5e31c4a", + "created": "2026-08-28T22:10:31.262Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 21, + "reference": "c4a11b47-dcfd-4a20-a26c-7016c8ba506b", + "type": "workflow", + "folder": "/ApplicationOverrideRules", + "document": { + "name": "Edit an Application Override Rule", + "description": "Edit an Application Override Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-app-override-rules-id", + "canvasName": "put-sse-config-v1-app-override-rules-id", + "summary": "put-sse-config-v1-app-override-rules-id", + "description": "put-sse-config-v1-app-override-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "application": { + "type": "string" + }, + "description": { + "maxLength": 1024, + "type": "string" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "port": { + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "protocol": { + "enum": [ + "tcp", + "udp" + ], + "type": "string" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "application", + "port", + "protocol", + "destination", + "from", + "source", + "to" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "application": { + "type": "string" + }, + "description": { + "maxLength": 1024, + "type": "string" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "port": { + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "protocol": { + "enum": [ + "tcp", + "udp" + ], + "type": "string" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "application", + "port", + "protocol", + "destination", + "from", + "source", + "to" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2c8d25f4-0a14-44e0-912a-ecce547c1801", + "created": "2026-08-28T22:10:31.322Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 22, + "reference": "eb0f1305-931f-4fc2-8b10-f5d6ec712181", + "type": "workflow", + "folder": "/ApplicationOverrideRules", + "document": { + "name": "Get an Application Override Rule by ID", + "description": "Get an Application Override Rule by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-app-override-rules-id", + "canvasName": "get-sse-config-v1-app-override-rules-id", + "summary": "get-sse-config-v1-app-override-rules-id", + "description": "get-sse-config-v1-app-override-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "71c67815-d976-4b3e-bab7-db69629a1ec6", + "created": "2026-08-28T22:10:31.290Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 23, + "reference": "600bd58f-52c8-47a1-9dd9-8cf025d6a418", + "type": "workflow", + "folder": "/ApplicationOverrideRules", + "document": { + "name": "List All Application Override Rules", + "description": "List All Application Override Rules", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-app-override-rules", + "canvasName": "get-sse-config-v1-app-override-rules", + "summary": "get-sse-config-v1-app-override-rules", + "description": "get-sse-config-v1-app-override-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "position", + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7bc86fcc-e405-4547-aea4-1bb60b2b46a6", + "created": "2026-08-28T22:10:31.199Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 24, + "reference": "56561c09-d546-43a6-8308-edf4ab5443ec", + "type": "workflow", + "folder": "/ApplicationOverrideRules", + "document": { + "name": "Move an App Override Rule", + "description": "Move an App Override Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-app-override-rules-id:move", + "canvasName": "post-sse-config-v1-app-override-rules-id:move", + "summary": "post-sse-config-v1-app-override-rules-id:move", + "description": "post-sse-config-v1-app-override-rules-id:move", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + } + }, + "required": [ + "id", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5f16c2c5-08e7-43d2-b3b0-e480b40463b7", + "created": "2026-08-28T22:10:31.350Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 25, + "reference": "cb348ed4-86b5-416e-b8a8-1971bf198eca", + "type": "workflow", + "folder": "/ApplicationFilters", + "document": { + "name": "Create an Application Filter", + "description": "Create an Application Filter", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-application-filters", + "canvasName": "post-sse-config-v1-application-filters", + "summary": "post-sse-config-v1-application-filters", + "description": "post-sse-config-v1-application-filters", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "category": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "evasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "excessive_bandwidth_use": { + "description": "only True is a valid value", + "type": "boolean" + }, + "exclude": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "has_known_vulnerabilities": { + "description": "only True is a valid value", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "is_saas": { + "description": "only True is a valid value", + "type": "boolean" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "new_appid": { + "description": "only True is a valid value", + "type": "boolean" + }, + "pervasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "prone_to_misuse": { + "description": "only True is a valid value", + "type": "boolean" + }, + "risk": { + "items": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "type": "array" + }, + "saas_certifications": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "saas_risk": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "subcategory": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category/entry/subcategory", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "tagging": { + "oneOf": [ + { + "properties": { + "no_tag": { + "type": "boolean" + } + }, + "title": "no_tag" + }, + { + "properties": { + "tag": { + "items": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "tag", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "title": "tag" + } + ], + "type": "object" + }, + "technology": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "transfers_files": { + "description": "only True is a valid value", + "type": "boolean" + }, + "tunnels_other_apps": { + "description": "only True is a valid value", + "type": "boolean" + }, + "used_by_malware": { + "description": "only True is a valid value", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "category": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "evasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "excessive_bandwidth_use": { + "description": "only True is a valid value", + "type": "boolean" + }, + "exclude": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "has_known_vulnerabilities": { + "description": "only True is a valid value", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "is_saas": { + "description": "only True is a valid value", + "type": "boolean" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "new_appid": { + "description": "only True is a valid value", + "type": "boolean" + }, + "pervasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "prone_to_misuse": { + "description": "only True is a valid value", + "type": "boolean" + }, + "risk": { + "items": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "type": "array" + }, + "saas_certifications": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "saas_risk": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "subcategory": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category/entry/subcategory", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "tagging": { + "oneOf": [ + { + "properties": { + "no_tag": { + "type": "boolean" + } + }, + "title": "no_tag" + }, + { + "properties": { + "tag": { + "items": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "tag", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "title": "tag" + } + ], + "type": "object" + }, + "technology": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "transfers_files": { + "description": "only True is a valid value", + "type": "boolean" + }, + "tunnels_other_apps": { + "description": "only True is a valid value", + "type": "boolean" + }, + "used_by_malware": { + "description": "only True is a valid value", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "0784315d-ba9a-431b-b3d1-e7ed9be2690f", + "created": "2026-08-28T22:10:31.410Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 26, + "reference": "2a981aee-f5e1-4b3c-b6e1-7df9be18b84a", + "type": "workflow", + "folder": "/ApplicationFilters", + "document": { + "name": "Delete an Application Filter", + "description": "Delete an Application Filter", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-application-filters-id", + "canvasName": "delete-sse-config-v1-application-filters-id", + "summary": "delete-sse-config-v1-application-filters-id", + "description": "delete-sse-config-v1-application-filters-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3622afcc-e1cc-484a-a47e-a7a0710a0a42", + "created": "2026-08-28T22:10:31.444Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 27, + "reference": "4bb06b27-ec23-4e22-b172-1c4190133635", + "type": "workflow", + "folder": "/ApplicationFilters", + "document": { + "name": "Edit an Application Filter", + "description": "Edit an Application Filter", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-application-filters-id", + "canvasName": "put-sse-config-v1-application-filters-id", + "summary": "put-sse-config-v1-application-filters-id", + "description": "put-sse-config-v1-application-filters-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "category": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "evasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "excessive_bandwidth_use": { + "description": "only True is a valid value", + "type": "boolean" + }, + "exclude": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "has_known_vulnerabilities": { + "description": "only True is a valid value", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "is_saas": { + "description": "only True is a valid value", + "type": "boolean" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "new_appid": { + "description": "only True is a valid value", + "type": "boolean" + }, + "pervasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "prone_to_misuse": { + "description": "only True is a valid value", + "type": "boolean" + }, + "risk": { + "items": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "type": "array" + }, + "saas_certifications": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "saas_risk": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "subcategory": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category/entry/subcategory", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "tagging": { + "oneOf": [ + { + "properties": { + "no_tag": { + "type": "boolean" + } + }, + "title": "no_tag" + }, + { + "properties": { + "tag": { + "items": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "tag", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "title": "tag" + } + ], + "type": "object" + }, + "technology": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "transfers_files": { + "description": "only True is a valid value", + "type": "boolean" + }, + "tunnels_other_apps": { + "description": "only True is a valid value", + "type": "boolean" + }, + "used_by_malware": { + "description": "only True is a valid value", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "category": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "evasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "excessive_bandwidth_use": { + "description": "only True is a valid value", + "type": "boolean" + }, + "exclude": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "has_known_vulnerabilities": { + "description": "only True is a valid value", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "is_saas": { + "description": "only True is a valid value", + "type": "boolean" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "new_appid": { + "description": "only True is a valid value", + "type": "boolean" + }, + "pervasive": { + "description": "only True is a valid value", + "type": "boolean" + }, + "prone_to_misuse": { + "description": "only True is a valid value", + "type": "boolean" + }, + "risk": { + "items": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "type": "array" + }, + "saas_certifications": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "saas_risk": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "subcategory": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category/entry/subcategory", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "tagging": { + "oneOf": [ + { + "properties": { + "no_tag": { + "type": "boolean" + } + }, + "title": "no_tag" + }, + { + "properties": { + "tag": { + "items": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "tag", + "subPath": "name" + } + ] + }, + "type": "array" + } + }, + "title": "tag" + } + ], + "type": "object" + }, + "technology": { + "items": { + "maxLength": 128, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "transfers_files": { + "description": "only True is a valid value", + "type": "boolean" + }, + "tunnels_other_apps": { + "description": "only True is a valid value", + "type": "boolean" + }, + "used_by_malware": { + "description": "only True is a valid value", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9d329f00-be9e-4fce-b7c3-af49b0c4402f", + "created": "2026-08-28T22:10:31.512Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 28, + "reference": "20a622e3-ae44-459a-973e-4cbe23019149", + "type": "workflow", + "folder": "/ApplicationFilters", + "document": { + "name": "Get an Application Filter by ID", + "description": "Get an Application Filter by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-application-filters-id", + "canvasName": "get-sse-config-v1-application-filters-id", + "summary": "get-sse-config-v1-application-filters-id", + "description": "get-sse-config-v1-application-filters-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f53b1605-9ef6-4a4c-a943-a4e1ae2d5989", + "created": "2026-08-28T22:10:31.471Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 29, + "reference": "1b75a3fb-aa06-4f9b-b0bd-b0b560a839a8", + "type": "workflow", + "folder": "/ApplicationFilters", + "document": { + "name": "List Application Filters", + "description": "List Application Filters", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-application-filters", + "canvasName": "get-sse-config-v1-application-filters", + "summary": "get-sse-config-v1-application-filters", + "description": "get-sse-config-v1-application-filters", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "77f51458-353a-4ffe-9401-eb8e2d0ed445", + "created": "2026-08-28T22:10:31.377Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 30, + "reference": "d2f0f4ab-29d3-400f-848e-a6501a345672", + "type": "workflow", + "folder": "/ApplicationGroups", + "document": { + "name": "Create an Application Group", + "description": "Create an Application Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-application-groups", + "canvasName": "post-sse-config-v1-application-groups", + "summary": "post-sse-config-v1-application-groups", + "description": "post-sse-config-v1-application-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-group", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-filter", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-group", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-filter", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5a0a0a59-5511-49e7-9cbb-ef6147e63266", + "created": "2026-08-28T22:10:31.585Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 31, + "reference": "aca44aa7-be1a-4725-9391-73525b78a99b", + "type": "workflow", + "folder": "/ApplicationGroups", + "document": { + "name": "Delete an Application Group", + "description": "Delete an Application Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-application-groups-id", + "canvasName": "delete-sse-config-v1-application-groups-id", + "summary": "delete-sse-config-v1-application-groups-id", + "description": "delete-sse-config-v1-application-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "622728f2-e0a8-45b4-9766-907ebbbf8d6e", + "created": "2026-08-28T22:10:31.610Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 32, + "reference": "6602d427-b04c-469c-aeaf-96b7a06a7d3c", + "type": "workflow", + "folder": "/ApplicationGroups", + "document": { + "name": "Edit an Application Group", + "description": "Edit an Application Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-application-groups-id", + "canvasName": "put-sse-config-v1-application-groups-id", + "summary": "put-sse-config-v1-application-groups-id", + "description": "put-sse-config-v1-application-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "entry": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-group", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-filter", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "entry": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-group", + "subPath": "name" + }, + { + "location": "shared", + "schema": "application-filter", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cd25db74-80a0-4b68-a5ac-9b63d613d271", + "created": "2026-08-28T22:10:31.671Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 33, + "reference": "815205a4-3b76-4c43-b977-c3a684ecb8fb", + "type": "workflow", + "folder": "/ApplicationGroups", + "document": { + "name": "Get an Application Group by ID", + "description": "Get an Application Group by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-application-groups-id", + "canvasName": "get-sse-config-v1-application-groups-id", + "summary": "get-sse-config-v1-application-groups-id", + "description": "get-sse-config-v1-application-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f0a9f5fc-317b-481d-bb07-06341eecdf29", + "created": "2026-08-28T22:10:31.637Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 34, + "reference": "8b1d6698-a653-49fd-a38e-ffd79852f355", + "type": "workflow", + "folder": "/ApplicationGroups", + "document": { + "name": "List Application Groups", + "description": "List Application Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-application-groups", + "canvasName": "get-sse-config-v1-application-groups", + "summary": "get-sse-config-v1-application-groups", + "description": "get-sse-config-v1-application-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cc74f501-f751-4b92-a950-228aefe20d95", + "created": "2026-08-28T22:10:31.555Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 35, + "reference": "017550e8-740d-4ade-936e-97a06a67ad10", + "type": "workflow", + "folder": "/Applications", + "document": { + "name": "Create an Application", + "description": "Create an Application", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-applications", + "canvasName": "post-sse-config-v1-applications", + "summary": "post-sse-config-v1-applications", + "description": "post-sse-config-v1-applications", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "able_to_transfer_file": { + "type": "boolean" + }, + "alg_disable_capability": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "category": { + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "consume_big_bandwidth": { + "type": "boolean" + }, + "data_ident": { + "type": "boolean" + }, + "default": { + "oneOf": [ + { + "properties": { + "port": { + "items": { + "description": "protocol port specification : {tcp|udp}/{dynamic|port range list} (e.g. tcp/8080, tcp/80,443, tcp/0-1024,10000, udp/dynamic)", + "maxLength": 63, + "type": "string" + }, + "type": "array" + } + }, + "title": "port" + }, + { + "properties": { + "ident_by_ip_protocol": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "title": "ident_by_ip_protocol" + }, + { + "properties": { + "ident_by_icmp_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp_type" + }, + { + "properties": { + "ident_by_icmp6_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp6_type" + } + ], + "type": "object" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "evasive_behavior": { + "type": "boolean" + }, + "file_type_ident": { + "type": "boolean" + }, + "has_known_vulnerability": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "no_appid_caching": { + "type": "boolean" + }, + "parent_app": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "pervasive_use": { + "type": "boolean" + }, + "prone_to_misuse": { + "type": "boolean" + }, + "risk": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "signature": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "operator": { + "oneOf": [ + { + "properties": { + "pattern_match": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "pattern": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "context", + "pattern" + ], + "type": "object" + } + }, + "title": "pattern_match" + }, + { + "properties": { + "greater_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "greater_than" + }, + { + "properties": { + "less_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "less_than" + }, + { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string", + "x-panMultiple": [ + { + "maxLength": 127, + "type": "string" + }, + { + "enum": [ + "unknown-req-tcp", + "unknown-rsp-tcp", + "unknown-req-udp", + "unknown-rsp-udp" + ], + "type": "string" + } + ] + }, + "mask": { + "description": "4-byte hex value", + "maxLength": 10, + "pattern": "^[0][xX][0-9A-Fa-f]{8}$", + "type": "string" + }, + "position": { + "maxLength": 127, + "type": "string" + }, + "value": { + "maxLength": 10, + "type": "string" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "equal_to" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "operator" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "default": "protocol-data-unit", + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "subcategory": { + "maxLength": 63, + "type": "string" + }, + "tcp_half_closed_timeout": { + "description": "timeout for half-close session in seconds", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "tcp_time_wait_timeout": { + "description": "timeout for session in time_wait state in seconds", + "maximum": 600, + "minimum": 1, + "type": "integer" + }, + "tcp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "technology": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "tunnel_applications": { + "type": "boolean" + }, + "tunnel_other_application": { + "type": "boolean" + }, + "udp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "used_by_malware": { + "type": "boolean" + }, + "virus_ident": { + "type": "boolean" + } + }, + "required": [ + "name", + "category", + "subcategory", + "technology", + "risk" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "able_to_transfer_file": { + "type": "boolean" + }, + "alg_disable_capability": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "category": { + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "consume_big_bandwidth": { + "type": "boolean" + }, + "data_ident": { + "type": "boolean" + }, + "default": { + "oneOf": [ + { + "properties": { + "port": { + "items": { + "description": "protocol port specification : {tcp|udp}/{dynamic|port range list} (e.g. tcp/8080, tcp/80,443, tcp/0-1024,10000, udp/dynamic)", + "maxLength": 63, + "type": "string" + }, + "type": "array" + } + }, + "title": "port" + }, + { + "properties": { + "ident_by_ip_protocol": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "title": "ident_by_ip_protocol" + }, + { + "properties": { + "ident_by_icmp_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp_type" + }, + { + "properties": { + "ident_by_icmp6_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp6_type" + } + ], + "type": "object" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "evasive_behavior": { + "type": "boolean" + }, + "file_type_ident": { + "type": "boolean" + }, + "has_known_vulnerability": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "no_appid_caching": { + "type": "boolean" + }, + "parent_app": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "pervasive_use": { + "type": "boolean" + }, + "prone_to_misuse": { + "type": "boolean" + }, + "risk": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "signature": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "operator": { + "oneOf": [ + { + "properties": { + "pattern_match": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "pattern": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "context", + "pattern" + ], + "type": "object" + } + }, + "title": "pattern_match" + }, + { + "properties": { + "greater_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "greater_than" + }, + { + "properties": { + "less_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "less_than" + }, + { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string", + "x-panMultiple": [ + { + "maxLength": 127, + "type": "string" + }, + { + "enum": [ + "unknown-req-tcp", + "unknown-rsp-tcp", + "unknown-req-udp", + "unknown-rsp-udp" + ], + "type": "string" + } + ] + }, + "mask": { + "description": "4-byte hex value", + "maxLength": 10, + "pattern": "^[0][xX][0-9A-Fa-f]{8}$", + "type": "string" + }, + "position": { + "maxLength": 127, + "type": "string" + }, + "value": { + "maxLength": 10, + "type": "string" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "equal_to" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "operator" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "default": "protocol-data-unit", + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "subcategory": { + "maxLength": 63, + "type": "string" + }, + "tcp_half_closed_timeout": { + "description": "timeout for half-close session in seconds", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "tcp_time_wait_timeout": { + "description": "timeout for session in time_wait state in seconds", + "maximum": 600, + "minimum": 1, + "type": "integer" + }, + "tcp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "technology": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "tunnel_applications": { + "type": "boolean" + }, + "tunnel_other_application": { + "type": "boolean" + }, + "udp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "used_by_malware": { + "type": "boolean" + }, + "virus_ident": { + "type": "boolean" + } + }, + "required": [ + "name", + "category", + "subcategory", + "technology", + "risk" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ae10e9d2-17b2-4103-a6cf-67dbba992f8b", + "created": "2026-08-28T22:10:31.734Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 36, + "reference": "dcfa52e1-6e10-453f-b9db-51e5fd7badb2", + "type": "workflow", + "folder": "/Applications", + "document": { + "name": "Delete an Application", + "description": "Delete an Application", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-applications-id", + "canvasName": "delete-sse-config-v1-applications-id", + "summary": "delete-sse-config-v1-applications-id", + "description": "delete-sse-config-v1-applications-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cc6981c8-7a34-48ef-9751-08fd399a5c2e", + "created": "2026-08-28T22:10:31.770Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 37, + "reference": "219ad683-9980-469a-99c8-cc2c1b8e51ce", + "type": "workflow", + "folder": "/Applications", + "document": { + "name": "Edit an Application", + "description": "Edit an Application", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-applications-id", + "canvasName": "put-sse-config-v1-applications-id", + "summary": "put-sse-config-v1-applications-id", + "description": "put-sse-config-v1-applications-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "able_to_transfer_file": { + "type": "boolean" + }, + "alg_disable_capability": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "category": { + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "consume_big_bandwidth": { + "type": "boolean" + }, + "data_ident": { + "type": "boolean" + }, + "default": { + "oneOf": [ + { + "properties": { + "port": { + "items": { + "description": "protocol port specification : {tcp|udp}/{dynamic|port range list} (e.g. tcp/8080, tcp/80,443, tcp/0-1024,10000, udp/dynamic)", + "maxLength": 63, + "type": "string" + }, + "type": "array" + } + }, + "title": "port" + }, + { + "properties": { + "ident_by_ip_protocol": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "title": "ident_by_ip_protocol" + }, + { + "properties": { + "ident_by_icmp_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp_type" + }, + { + "properties": { + "ident_by_icmp6_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp6_type" + } + ], + "type": "object" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "evasive_behavior": { + "type": "boolean" + }, + "file_type_ident": { + "type": "boolean" + }, + "has_known_vulnerability": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "no_appid_caching": { + "type": "boolean" + }, + "parent_app": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "pervasive_use": { + "type": "boolean" + }, + "prone_to_misuse": { + "type": "boolean" + }, + "risk": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "signature": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "operator": { + "oneOf": [ + { + "properties": { + "pattern_match": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "pattern": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "context", + "pattern" + ], + "type": "object" + } + }, + "title": "pattern_match" + }, + { + "properties": { + "greater_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "greater_than" + }, + { + "properties": { + "less_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "less_than" + }, + { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string", + "x-panMultiple": [ + { + "maxLength": 127, + "type": "string" + }, + { + "enum": [ + "unknown-req-tcp", + "unknown-rsp-tcp", + "unknown-req-udp", + "unknown-rsp-udp" + ], + "type": "string" + } + ] + }, + "mask": { + "description": "4-byte hex value", + "maxLength": 10, + "pattern": "^[0][xX][0-9A-Fa-f]{8}$", + "type": "string" + }, + "position": { + "maxLength": 127, + "type": "string" + }, + "value": { + "maxLength": 10, + "type": "string" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "equal_to" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "operator" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "default": "protocol-data-unit", + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "subcategory": { + "maxLength": 63, + "type": "string" + }, + "tcp_half_closed_timeout": { + "description": "timeout for half-close session in seconds", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "tcp_time_wait_timeout": { + "description": "timeout for session in time_wait state in seconds", + "maximum": 600, + "minimum": 1, + "type": "integer" + }, + "tcp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "technology": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "tunnel_applications": { + "type": "boolean" + }, + "tunnel_other_application": { + "type": "boolean" + }, + "udp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "used_by_malware": { + "type": "boolean" + }, + "virus_ident": { + "type": "boolean" + } + }, + "required": [ + "name", + "category", + "subcategory", + "technology", + "risk" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "able_to_transfer_file": { + "type": "boolean" + }, + "alg_disable_capability": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "category": { + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/category", + "subPath": "name" + } + ] + }, + "consume_big_bandwidth": { + "type": "boolean" + }, + "data_ident": { + "type": "boolean" + }, + "default": { + "oneOf": [ + { + "properties": { + "port": { + "items": { + "description": "protocol port specification : {tcp|udp}/{dynamic|port range list} (e.g. tcp/8080, tcp/80,443, tcp/0-1024,10000, udp/dynamic)", + "maxLength": 63, + "type": "string" + }, + "type": "array" + } + }, + "title": "port" + }, + { + "properties": { + "ident_by_ip_protocol": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "title": "ident_by_ip_protocol" + }, + { + "properties": { + "ident_by_icmp_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp_type" + }, + { + "properties": { + "ident_by_icmp6_type": { + "properties": { + "code": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + }, + "type": { + "example": "0,1-255", + "type": "string", + "x-maximum": 255, + "x-minimum": 0 + } + }, + "required": [ + "type" + ], + "type": "object" + } + }, + "title": "ident_by_icmp6_type" + } + ], + "type": "object" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "evasive_behavior": { + "type": "boolean" + }, + "file_type_ident": { + "type": "boolean" + }, + "has_known_vulnerability": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "no_appid_caching": { + "type": "boolean" + }, + "parent_app": { + "maxLength": 127, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application", + "subPath": "name" + } + ] + }, + "pervasive_use": { + "type": "boolean" + }, + "prone_to_misuse": { + "type": "boolean" + }, + "risk": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "signature": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "operator": { + "oneOf": [ + { + "properties": { + "pattern_match": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "pattern": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "context", + "pattern" + ], + "type": "object" + } + }, + "title": "pattern_match" + }, + { + "properties": { + "greater_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "greater_than" + }, + { + "properties": { + "less_than": { + "properties": { + "context": { + "maxLength": 127, + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "value": { + "type": "string", + "x-panMultiple": [ + { + "type": "string" + } + ] + } + }, + "required": [ + "name", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "less_than" + }, + { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string", + "x-panMultiple": [ + { + "maxLength": 127, + "type": "string" + }, + { + "enum": [ + "unknown-req-tcp", + "unknown-rsp-tcp", + "unknown-req-udp", + "unknown-rsp-udp" + ], + "type": "string" + } + ] + }, + "mask": { + "description": "4-byte hex value", + "maxLength": 10, + "pattern": "^[0][xX][0-9A-Fa-f]{8}$", + "type": "string" + }, + "position": { + "maxLength": 127, + "type": "string" + }, + "value": { + "maxLength": 10, + "type": "string" + } + }, + "required": [ + "context", + "value" + ], + "type": "object" + } + }, + "title": "equal_to" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "operator" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "default": "protocol-data-unit", + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "subcategory": { + "maxLength": 63, + "type": "string" + }, + "tcp_half_closed_timeout": { + "description": "timeout for half-close session in seconds", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "tcp_time_wait_timeout": { + "description": "timeout for session in time_wait state in seconds", + "maximum": 600, + "minimum": 1, + "type": "integer" + }, + "tcp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "technology": { + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "content-preview/application-type/technology", + "subPath": "name" + } + ] + }, + "timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "tunnel_applications": { + "type": "boolean" + }, + "tunnel_other_application": { + "type": "boolean" + }, + "udp_timeout": { + "description": "timeout in seconds", + "maximum": 604800, + "minimum": 0, + "type": "integer" + }, + "used_by_malware": { + "type": "boolean" + }, + "virus_ident": { + "type": "boolean" + } + }, + "required": [ + "name", + "category", + "subcategory", + "technology", + "risk" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "4e69affe-1e08-466b-8303-3a6833f80427", + "created": "2026-08-28T22:10:31.834Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 38, + "reference": "56349a3e-0f3f-4be7-b133-75ad42935359", + "type": "workflow", + "folder": "/Applications", + "document": { + "name": "Get an Application by ID", + "description": "Get an Application by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-applications-id", + "canvasName": "get-sse-config-v1-applications-id", + "summary": "get-sse-config-v1-applications-id", + "description": "get-sse-config-v1-applications-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "dca1786f-b516-468d-a5f0-6a613463fbb1", + "created": "2026-08-28T22:10:31.799Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 39, + "reference": "79198271-818a-4c29-9bfd-86df40b78948", + "type": "workflow", + "folder": "/Applications", + "document": { + "name": "List Applications", + "description": "List Applications", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-applications", + "canvasName": "get-sse-config-v1-applications", + "summary": "get-sse-config-v1-applications", + "description": "get-sse-config-v1-applications", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ecd2110c-9541-49b3-9cc4-56e0c72998bd", + "created": "2026-08-28T22:10:31.698Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 40, + "reference": "4f2e395e-ff2e-4aa5-ac8d-9336d95218b6", + "type": "workflow", + "folder": "/AuthenticationPortals", + "document": { + "name": "Create an Authentication Portal", + "description": "Create an Authentication Portal", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-authentication-portals", + "canvasName": "post-sse-config-v1-authentication-portals", + "summary": "post-sse-config-v1-authentication-portals", + "description": "post-sse-config-v1-authentication-portals", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "certificate_profile": { + "type": "string" + }, + "gp_udp_port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "idle_timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "redirect_host": { + "type": "string" + }, + "timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "tls_service_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "certificate_profile": { + "type": "string" + }, + "gp_udp_port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "idle_timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "redirect_host": { + "type": "string" + }, + "timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "efb2dbc8-87e5-4a77-9d56-65025f646498", + "created": "2026-08-28T22:10:31.905Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 41, + "reference": "c1bcda6e-b0ad-44cd-85c4-6174e49a7cdb", + "type": "workflow", + "folder": "/AuthenticationPortals", + "document": { + "name": "Delete an Authentication Portal", + "description": "Delete an Authentication Portal", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-authentication-portals-id", + "canvasName": "delete-sse-config-v1-authentication-portals-id", + "summary": "delete-sse-config-v1-authentication-portals-id", + "description": "delete-sse-config-v1-authentication-portals-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ba27a9f2-4260-4c24-b7ef-9b8005482e48", + "created": "2026-08-28T22:10:31.938Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 42, + "reference": "39765d53-7284-4723-bf7a-6e7d9dfa2a0e", + "type": "workflow", + "folder": "/AuthenticationPortals", + "document": { + "name": "Edit an Authentication Portal", + "description": "Edit an Authentication Portal", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-authentication-portals-id", + "canvasName": "put-sse-config-v1-authentication-portals-id", + "summary": "put-sse-config-v1-authentication-portals-id", + "description": "put-sse-config-v1-authentication-portals-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "certificate_profile": { + "type": "string" + }, + "gp_udp_port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "idle_timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "redirect_host": { + "type": "string" + }, + "timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "tls_service_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "certificate_profile": { + "type": "string" + }, + "gp_udp_port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "idle_timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "redirect_host": { + "type": "string" + }, + "timer": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b1acc3b9-bb8a-47c1-9ec0-db6c525b9888", + "created": "2026-08-28T22:10:31.973Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 43, + "reference": "c53ef0a0-a6f2-4d2b-9a28-6fc655ff33f0", + "type": "workflow", + "folder": "/AuthenticationPortals", + "document": { + "name": "List All Authentication Portals", + "description": "List All Authentication Portals", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-authentication-portals", + "canvasName": "get-sse-config-v1-authentication-portals", + "summary": "get-sse-config-v1-authentication-portals", + "description": "get-sse-config-v1-authentication-portals", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "folder", + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cca0b024-767b-405e-966f-ce2d5cb1ddc3", + "created": "2026-08-28T22:10:31.874Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 44, + "reference": "33f5eed6-0f2f-4870-b10a-32b8e1aaabda", + "type": "workflow", + "folder": "/AuthenticationProfiles", + "document": { + "name": "Create an Authentication Profile", + "description": "Create an Authentication Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-authentication-profiles", + "canvasName": "post-sse-config-v1-authentication-profiles", + "summary": "post-sse-config-v1-authentication-profiles", + "description": "post-sse-config-v1-authentication-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "allow_list": { + "items": { + "default": [ + "all" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lockout": { + "properties": { + "failed_attempts": { + "maximum": 10, + "minimum": 0, + "type": "integer" + }, + "lockout_time": { + "maximum": 60, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "method": { + "oneOf": [ + { + "properties": { + "local_database": { + "type": "object" + } + }, + "title": "local_database" + }, + { + "properties": { + "saml_idp": { + "properties": { + "attribute_name_usergroup": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "attribute_name_username": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "certificate_profile": { + "maxLength": 31, + "type": "string" + }, + "enable_single_logout": { + "type": "boolean" + }, + "request_signing_certificate": { + "maxLength": 64, + "type": "string" + }, + "server_profile": { + "maxLength": 63, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "saml_idp" + }, + { + "properties": { + "ldap": { + "properties": { + "login_attribute": { + "type": "string" + }, + "passwd_exp_days": { + "type": "integer" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ldap" + }, + { + "properties": { + "radius": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "radius" + }, + { + "properties": { + "tacplus": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tacplus" + }, + { + "properties": { + "kerberos": { + "properties": { + "realm": { + "type": "string" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "kerberos" + }, + { + "description": "CIE is valid only when cas feature flag is enabled", + "properties": { + "cloud": { + "properties": { + "profile_name": { + "description": "The tenant profile name", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cloud" + } + ], + "type": "object" + }, + "multi_factor_auth": { + "properties": { + "factors": { + "items": { + "type": "string" + }, + "type": "array" + }, + "mfa_enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "single_sign_on": { + "properties": { + "kerberos_keytab": { + "maxLength": 8192, + "type": "string" + }, + "realm": { + "maxLength": 127, + "type": "string" + } + }, + "type": "object" + }, + "user_domain": { + "maxLength": 63, + "type": "string" + }, + "username_modifier": { + "enum": [ + "%USERINPUT%", + "%USERINPUT%@%USERDOMAIN%", + "%USERDOMAIN%\\\\%USERINPUT%" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "allow_list": { + "items": { + "default": [ + "all" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lockout": { + "properties": { + "failed_attempts": { + "maximum": 10, + "minimum": 0, + "type": "integer" + }, + "lockout_time": { + "maximum": 60, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "method": { + "oneOf": [ + { + "properties": { + "local_database": { + "type": "object" + } + }, + "title": "local_database" + }, + { + "properties": { + "saml_idp": { + "properties": { + "attribute_name_usergroup": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "attribute_name_username": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "certificate_profile": { + "maxLength": 31, + "type": "string" + }, + "enable_single_logout": { + "type": "boolean" + }, + "request_signing_certificate": { + "maxLength": 64, + "type": "string" + }, + "server_profile": { + "maxLength": 63, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "saml_idp" + }, + { + "properties": { + "ldap": { + "properties": { + "login_attribute": { + "type": "string" + }, + "passwd_exp_days": { + "type": "integer" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ldap" + }, + { + "properties": { + "radius": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "radius" + }, + { + "properties": { + "tacplus": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tacplus" + }, + { + "properties": { + "kerberos": { + "properties": { + "realm": { + "type": "string" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "kerberos" + }, + { + "description": "CIE is valid only when cas feature flag is enabled", + "properties": { + "cloud": { + "properties": { + "profile_name": { + "description": "The tenant profile name", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cloud" + } + ], + "type": "object" + }, + "multi_factor_auth": { + "properties": { + "factors": { + "items": { + "type": "string" + }, + "type": "array" + }, + "mfa_enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "single_sign_on": { + "properties": { + "kerberos_keytab": { + "maxLength": 8192, + "type": "string" + }, + "realm": { + "maxLength": 127, + "type": "string" + } + }, + "type": "object" + }, + "user_domain": { + "maxLength": 63, + "type": "string" + }, + "username_modifier": { + "enum": [ + "%USERINPUT%", + "%USERINPUT%@%USERDOMAIN%", + "%USERDOMAIN%\\\\%USERINPUT%" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "64b6950a-857c-4fde-a412-b7208d1da88d", + "created": "2026-08-28T22:10:32.038Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 45, + "reference": "3d94d2c8-eb6a-49e4-ae11-4d644afafae5", + "type": "workflow", + "folder": "/AuthenticationProfiles", + "document": { + "name": "Delete an Authentication Profile", + "description": "Delete an Authentication Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-authentication-profiles-id", + "canvasName": "delete-sse-config-v1-authentication-profiles-id", + "summary": "delete-sse-config-v1-authentication-profiles-id", + "description": "delete-sse-config-v1-authentication-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1987f6f9-1266-40c8-81c4-e8f1a32a7166", + "created": "2026-08-28T22:10:32.067Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 46, + "reference": "f3432fd7-04e7-4c09-90fc-af8fca56b6ec", + "type": "workflow", + "folder": "/AuthenticationProfiles", + "document": { + "name": "Edit an Authentication Profile", + "description": "Edit an Authentication Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-authentication-profiles-id", + "canvasName": "put-sse-config-v1-authentication-profiles-id", + "summary": "put-sse-config-v1-authentication-profiles-id", + "description": "put-sse-config-v1-authentication-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "allow_list": { + "items": { + "default": [ + "all" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lockout": { + "properties": { + "failed_attempts": { + "maximum": 10, + "minimum": 0, + "type": "integer" + }, + "lockout_time": { + "maximum": 60, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "method": { + "oneOf": [ + { + "properties": { + "local_database": { + "type": "object" + } + }, + "title": "local_database" + }, + { + "properties": { + "saml_idp": { + "properties": { + "attribute_name_usergroup": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "attribute_name_username": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "certificate_profile": { + "maxLength": 31, + "type": "string" + }, + "enable_single_logout": { + "type": "boolean" + }, + "request_signing_certificate": { + "maxLength": 64, + "type": "string" + }, + "server_profile": { + "maxLength": 63, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "saml_idp" + }, + { + "properties": { + "ldap": { + "properties": { + "login_attribute": { + "type": "string" + }, + "passwd_exp_days": { + "type": "integer" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ldap" + }, + { + "properties": { + "radius": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "radius" + }, + { + "properties": { + "tacplus": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tacplus" + }, + { + "properties": { + "kerberos": { + "properties": { + "realm": { + "type": "string" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "kerberos" + }, + { + "description": "CIE is valid only when cas feature flag is enabled", + "properties": { + "cloud": { + "properties": { + "profile_name": { + "description": "The tenant profile name", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cloud" + } + ], + "type": "object" + }, + "multi_factor_auth": { + "properties": { + "factors": { + "items": { + "type": "string" + }, + "type": "array" + }, + "mfa_enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "single_sign_on": { + "properties": { + "kerberos_keytab": { + "maxLength": 8192, + "type": "string" + }, + "realm": { + "maxLength": 127, + "type": "string" + } + }, + "type": "object" + }, + "user_domain": { + "maxLength": 63, + "type": "string" + }, + "username_modifier": { + "enum": [ + "%USERINPUT%", + "%USERINPUT%@%USERDOMAIN%", + "%USERDOMAIN%\\\\%USERINPUT%" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "allow_list": { + "items": { + "default": [ + "all" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lockout": { + "properties": { + "failed_attempts": { + "maximum": 10, + "minimum": 0, + "type": "integer" + }, + "lockout_time": { + "maximum": 60, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "method": { + "oneOf": [ + { + "properties": { + "local_database": { + "type": "object" + } + }, + "title": "local_database" + }, + { + "properties": { + "saml_idp": { + "properties": { + "attribute_name_usergroup": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "attribute_name_username": { + "maxLength": 63, + "minLength": 1, + "type": "string" + }, + "certificate_profile": { + "maxLength": 31, + "type": "string" + }, + "enable_single_logout": { + "type": "boolean" + }, + "request_signing_certificate": { + "maxLength": 64, + "type": "string" + }, + "server_profile": { + "maxLength": 63, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "saml_idp" + }, + { + "properties": { + "ldap": { + "properties": { + "login_attribute": { + "type": "string" + }, + "passwd_exp_days": { + "type": "integer" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ldap" + }, + { + "properties": { + "radius": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "radius" + }, + { + "properties": { + "tacplus": { + "properties": { + "checkgroup": { + "type": "boolean" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tacplus" + }, + { + "properties": { + "kerberos": { + "properties": { + "realm": { + "type": "string" + }, + "server_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "kerberos" + }, + { + "description": "CIE is valid only when cas feature flag is enabled", + "properties": { + "cloud": { + "properties": { + "profile_name": { + "description": "The tenant profile name", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cloud" + } + ], + "type": "object" + }, + "multi_factor_auth": { + "properties": { + "factors": { + "items": { + "type": "string" + }, + "type": "array" + }, + "mfa_enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "single_sign_on": { + "properties": { + "kerberos_keytab": { + "maxLength": 8192, + "type": "string" + }, + "realm": { + "maxLength": 127, + "type": "string" + } + }, + "type": "object" + }, + "user_domain": { + "maxLength": 63, + "type": "string" + }, + "username_modifier": { + "enum": [ + "%USERINPUT%", + "%USERINPUT%@%USERDOMAIN%", + "%USERDOMAIN%\\\\%USERINPUT%" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "fbf0939b-8dbc-429f-823e-546c71568731", + "created": "2026-08-28T22:10:32.128Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 47, + "reference": "a3c779be-b879-4a70-914d-4b9b790fb6d8", + "type": "workflow", + "folder": "/AuthenticationProfiles", + "document": { + "name": "Get an Authentication Profile", + "description": "Get an Authentication Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-authentication-profiles-id", + "canvasName": "get-sse-config-v1-authentication-profiles-id", + "summary": "get-sse-config-v1-authentication-profiles-id", + "description": "get-sse-config-v1-authentication-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1c2b9167-394a-4f39-924c-cc0391a0ee83", + "created": "2026-08-28T22:10:32.097Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 48, + "reference": "bd7abfab-0daa-4599-91f4-d3aef02fd911", + "type": "workflow", + "folder": "/AuthenticationProfiles", + "document": { + "name": "List All Authentication Profiles", + "description": "List All Authentication Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-authentication-profiles", + "canvasName": "get-sse-config-v1-authentication-profiles", + "summary": "get-sse-config-v1-authentication-profiles", + "description": "get-sse-config-v1-authentication-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2b9f9340-c895-4fc2-91db-9f37001c528f", + "created": "2026-08-28T22:10:32.004Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 49, + "reference": "42432f2d-3f82-4b58-bcfe-3cf9b2452e4b", + "type": "workflow", + "folder": "/AuthenticationRules", + "document": { + "name": "Create an Authentication Rule", + "description": "Create an Authentication Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-authentication-rules", + "canvasName": "post-sse-config-v1-authentication-rules", + "summary": "post-sse-config-v1-authentication-rules", + "description": "post-sse-config-v1-authentication-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_enforcement": { + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "hip_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_authentication_timeout": { + "default": false, + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "timeout": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "position", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_enforcement": { + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "hip_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_authentication_timeout": { + "default": false, + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "timeout": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6931ce99-0a36-4020-b3f0-2990544d1b13", + "created": "2026-08-28T22:10:32.188Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 50, + "reference": "23125a30-ac15-46c0-9c12-974c8f3aeb32", + "type": "workflow", + "folder": "/AuthenticationRules", + "document": { + "name": "Delete an Authentication Rule", + "description": "Delete an Authentication Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-authentication-rules-id", + "canvasName": "delete-sse-config-v1-authentication-rules-id", + "summary": "delete-sse-config-v1-authentication-rules-id", + "description": "delete-sse-config-v1-authentication-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "0a13728d-1f8a-4616-b103-c62192e95696", + "created": "2026-08-28T22:10:32.216Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 51, + "reference": "0d4305a2-e361-4fb1-b3d7-5871a0882439", + "type": "workflow", + "folder": "/AuthenticationRules", + "document": { + "name": "Edit an Authentication Rule", + "description": "Edit an Authentication Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-authentication-rules-id", + "canvasName": "put-sse-config-v1-authentication-rules-id", + "summary": "put-sse-config-v1-authentication-rules-id", + "description": "put-sse-config-v1-authentication-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_enforcement": { + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "hip_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_authentication_timeout": { + "default": false, + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "timeout": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_enforcement": { + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "default": false, + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "group_tag": { + "type": "string" + }, + "hip_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_authentication_timeout": { + "default": false, + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "default": false, + "type": "boolean" + }, + "negate_source": { + "default": false, + "type": "boolean" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "timeout": { + "maximum": 1440, + "minimum": 1, + "type": "integer" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "fcfe562e-7aff-4641-90b6-32d241250de6", + "created": "2026-08-28T22:10:32.244Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 52, + "reference": "ff0a4a8f-9294-4686-a670-000452fdcdf0", + "type": "workflow", + "folder": "/AuthenticationRules", + "document": { + "name": "List All Authentication Rules", + "description": "List All Authentication Rules", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-authentication-rules", + "canvasName": "get-sse-config-v1-authentication-rules", + "summary": "get-sse-config-v1-authentication-rules", + "description": "get-sse-config-v1-authentication-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "position", + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7a35789e-9c65-4359-b339-77853f90fac5", + "created": "2026-08-28T22:10:32.158Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 53, + "reference": "9a275a36-df96-4062-a688-10807af48315", + "type": "workflow", + "folder": "/AuthenticationRules", + "document": { + "name": "Move an Authentication Rule", + "description": "Move an Authentication Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-authentication-rules-id:move", + "canvasName": "post-sse-config-v1-authentication-rules-id:move", + "summary": "post-sse-config-v1-authentication-rules-id:move", + "description": "post-sse-config-v1-authentication-rules-id:move", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + } + }, + "required": [ + "id", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a284e3a8-62af-439d-8519-5c596c2868db", + "created": "2026-08-28T22:10:32.274Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 54, + "reference": "55aa9258-87dc-4ed5-ac1d-6e5b282a81c5", + "type": "workflow", + "folder": "/AuthenticationSequences", + "document": { + "name": "Create an Authentication Sequence", + "description": "Create an Authentication Sequence", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-authentication-sequences", + "canvasName": "post-sse-config-v1-authentication-sequences", + "summary": "post-sse-config-v1-authentication-sequences", + "description": "post-sse-config-v1-authentication-sequences", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "use_domain_find_profile": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "use_domain_find_profile": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e3bbc2a1-2199-4e39-8b1f-455c603362a7", + "created": "2026-08-28T22:10:32.330Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 55, + "reference": "62a1a922-f3d7-41fb-be08-c4846198954c", + "type": "workflow", + "folder": "/AuthenticationSequences", + "document": { + "name": "Delete an Authentication Sequence", + "description": "Delete an Authentication Sequence", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-authentication-sequences-id", + "canvasName": "delete-sse-config-v1-authentication-sequences-id", + "summary": "delete-sse-config-v1-authentication-sequences-id", + "description": "delete-sse-config-v1-authentication-sequences-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "4a0ff797-3222-4b25-8d1b-86401e43cb57", + "created": "2026-08-28T22:10:32.360Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 56, + "reference": "a124825a-93f2-4dc5-83d3-e2c1ce74787d", + "type": "workflow", + "folder": "/AuthenticationSequences", + "document": { + "name": "Edit an Authentication Sequence", + "description": "Edit an Authentication Sequence", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-authentication-sequences-id", + "canvasName": "put-sse-config-v1-authentication-sequences-id", + "summary": "put-sse-config-v1-authentication-sequences-id", + "description": "put-sse-config-v1-authentication-sequences-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "use_domain_find_profile": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_profiles": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "use_domain_find_profile": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a256aad6-f85f-4cbb-8859-7ed3b2c42c52", + "created": "2026-08-28T22:10:32.412Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 57, + "reference": "e09872c5-5fbc-4c1e-b0e1-fcfc9de8b202", + "type": "workflow", + "folder": "/AuthenticationSequences", + "document": { + "name": "Get an Authentication Sequence", + "description": "Get an Authentication Sequence", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-authentication-sequences-id", + "canvasName": "get-sse-config-v1-authentication-sequences-id", + "summary": "get-sse-config-v1-authentication-sequences-id", + "description": "get-sse-config-v1-authentication-sequences-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3c68c784-18d0-47a0-b092-a1065f17b11e", + "created": "2026-08-28T22:10:32.386Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 58, + "reference": "28c95c5c-deb5-4669-964b-da1a51e6cc9d", + "type": "workflow", + "folder": "/AuthenticationSequences", + "document": { + "name": "List All Authentication Sequence", + "description": "List All Authentication Sequence", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-authentication-sequences", + "canvasName": "get-sse-config-v1-authentication-sequences", + "summary": "get-sse-config-v1-authentication-sequences", + "description": "get-sse-config-v1-authentication-sequences", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "42400e18-1cb4-4316-ad57-0decfcdf228f", + "created": "2026-08-28T22:10:32.304Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 59, + "reference": "89cb278b-ad2e-486f-9585-435f86a17ead", + "type": "workflow", + "folder": "/AutoTagActions", + "document": { + "name": "Create Auto Tag Actions", + "description": "Create Auto Tag Actions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-auto-tag-actions", + "canvasName": "post-sse-config-v1-auto-tag-actions", + "summary": "post-sse-config-v1-auto-tag-actions", + "description": "post-sse-config-v1-auto-tag-actions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "actions": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "properties": { + "tagging": { + "properties": { + "action": { + "description": "Add or Remove tag option", + "enum": [ + "add-tag", + "remove-tag" + ], + "type": "string" + }, + "tags": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "target": { + "description": "Source or Destination Address, User, X-Forwarded-For Address", + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "required": [ + "target", + "action" + ], + "type": "object" + } + }, + "required": [ + "tagging" + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_type": { + "example": "container", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "quarantine": { + "type": "boolean" + }, + "send_to_panorama": { + "type": "boolean" + } + }, + "required": [ + "name", + "filter", + "log_type" + ], + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "actions": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "properties": { + "tagging": { + "properties": { + "action": { + "description": "Add or Remove tag option", + "enum": [ + "add-tag", + "remove-tag" + ], + "type": "string" + }, + "tags": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "target": { + "description": "Source or Destination Address, User, X-Forwarded-For Address", + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "required": [ + "target", + "action" + ], + "type": "object" + } + }, + "required": [ + "tagging" + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_type": { + "example": "container", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "quarantine": { + "type": "boolean" + }, + "send_to_panorama": { + "type": "boolean" + } + }, + "required": [ + "name", + "filter", + "log_type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9eb7d0a8-4db8-4d33-9869-ab74d49f2ba9", + "created": "2026-08-28T22:10:32.496Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 60, + "reference": "9f5db93a-09d0-494d-94da-4c5f2baa8ae0", + "type": "workflow", + "folder": "/AutoTagActions", + "document": { + "name": "Delete Auto Tag Actions", + "description": "Delete Auto Tag Actions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-auto-tag-actions", + "canvasName": "delete-sse-config-v1-auto-tag-actions", + "summary": "delete-sse-config-v1-auto-tag-actions", + "description": "delete-sse-config-v1-auto-tag-actions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "804b1f13-37ab-46ce-a669-a33fef51db0e", + "created": "2026-08-28T22:10:32.442Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 61, + "reference": "13e1dda2-5236-474d-bfd9-765ac098dcc6", + "type": "workflow", + "folder": "/AutoTagActions", + "document": { + "name": "Edit Auto Tag Actions", + "description": "Edit Auto Tag Actions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-auto-tag-actions", + "canvasName": "put-sse-config-v1-auto-tag-actions", + "summary": "put-sse-config-v1-auto-tag-actions", + "description": "put-sse-config-v1-auto-tag-actions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "actions": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "properties": { + "tagging": { + "properties": { + "action": { + "description": "Add or Remove tag option", + "enum": [ + "add-tag", + "remove-tag" + ], + "type": "string" + }, + "tags": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "target": { + "description": "Source or Destination Address, User, X-Forwarded-For Address", + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "required": [ + "target", + "action" + ], + "type": "object" + } + }, + "required": [ + "tagging" + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_type": { + "example": "container", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "quarantine": { + "type": "boolean" + }, + "send_to_panorama": { + "type": "boolean" + } + }, + "required": [ + "name", + "filter", + "log_type" + ], + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "actions": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "properties": { + "tagging": { + "properties": { + "action": { + "description": "Add or Remove tag option", + "enum": [ + "add-tag", + "remove-tag" + ], + "type": "string" + }, + "tags": { + "description": "Tags for address object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + }, + "target": { + "description": "Source or Destination Address, User, X-Forwarded-For Address", + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "required": [ + "target", + "action" + ], + "type": "object" + } + }, + "required": [ + "tagging" + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "Tag based filter defining group membership e.g. `tag1 AND tag2 OR tag3`", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_type": { + "example": "container", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "quarantine": { + "type": "boolean" + }, + "send_to_panorama": { + "type": "boolean" + } + }, + "required": [ + "name", + "filter", + "log_type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b17b3259-bdf7-4560-9873-a4a0361cb7ee", + "created": "2026-08-28T22:10:32.529Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 62, + "reference": "7ae2d591-2525-470b-b7d4-7fecbbca3d19", + "type": "workflow", + "folder": "/AutoTagActions", + "document": { + "name": "List Auto Tag Actions", + "description": "List Auto Tag Actions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-auto-tag-actions", + "canvasName": "get-sse-config-v1-auto-tag-actions", + "summary": "get-sse-config-v1-auto-tag-actions", + "description": "get-sse-config-v1-auto-tag-actions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2809bffe-634b-419b-9a69-ccb6f8cc92f5", + "created": "2026-08-28T22:10:32.469Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 63, + "reference": "c7067f13-3fea-42a5-ab3f-0f47f38814f8", + "type": "workflow", + "folder": "/BandwidthAllocations", + "document": { + "name": "Create Aggregated Bandwidth Regions", + "description": "Create Aggregated Bandwidth Regions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-bandwidth-allocations", + "canvasName": "post-sse-config-v1-bandwidth-allocations", + "summary": "post-sse-config-v1-bandwidth-allocations", + "description": "post-sse-config-v1-bandwidth-allocations", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "allocated_bandwidth": { + "description": "bandwidth to allocate in Mbps", + "type": "number" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "name of the aggregated bandwidth region", + "type": "string" + }, + "qos": { + "properties": { + "customized": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + }, + "guaranteed_ratio": { + "type": "number" + }, + "profile": { + "type": "string" + } + }, + "type": "object" + }, + "spn_name_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "allocated_bandwidth" + ], + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "allocated_bandwidth": { + "description": "bandwidth to allocate in Mbps", + "type": "number" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "name of the aggregated bandwidth region", + "type": "string" + }, + "qos": { + "properties": { + "customized": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + }, + "guaranteed_ratio": { + "type": "number" + }, + "profile": { + "type": "string" + } + }, + "type": "object" + }, + "spn_name_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "allocated_bandwidth" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "72af0c05-e468-4ffe-a114-0fa7dd03eefa", + "created": "2026-08-28T22:10:32.626Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 64, + "reference": "c7ecd437-1390-4a09-a0bf-91b90fe07114", + "type": "workflow", + "folder": "/BandwidthAllocations", + "document": { + "name": "Delete an Aggregated Bandwidth Region", + "description": "Delete an Aggregated Bandwidth Region", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-bandwidth-allocations", + "canvasName": "delete-sse-config-v1-bandwidth-allocations", + "summary": "delete-sse-config-v1-bandwidth-allocations", + "description": "delete-sse-config-v1-bandwidth-allocations", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "spn_name_list": "$var.job.spn_name_list" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "spn_name_list": { + "type": "string" + } + }, + "required": [ + "name", + "spn_name_list" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "spn_name_list": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f5df636d-959a-42e4-98a6-58f50b5e54b9", + "created": "2026-08-28T22:10:32.559Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 65, + "reference": "4f7dd2f5-1aa3-4cb9-a7b1-a62e41ad2b9a", + "type": "workflow", + "folder": "/BandwidthAllocations", + "document": { + "name": "Edit an Aggregated Bandwidth Region", + "description": "Edit an Aggregated Bandwidth Region", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-bandwidth-allocations", + "canvasName": "put-sse-config-v1-bandwidth-allocations", + "summary": "put-sse-config-v1-bandwidth-allocations", + "description": "put-sse-config-v1-bandwidth-allocations", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "allocated_bandwidth": { + "description": "bandwidth to allocate in Mbps", + "type": "number" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "name of the aggregated bandwidth region", + "type": "string" + }, + "qos": { + "properties": { + "customized": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + }, + "guaranteed_ratio": { + "type": "number" + }, + "profile": { + "type": "string" + } + }, + "type": "object" + }, + "spn_name_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "allocated_bandwidth" + ], + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "allocated_bandwidth": { + "description": "bandwidth to allocate in Mbps", + "type": "number" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "name of the aggregated bandwidth region", + "type": "string" + }, + "qos": { + "properties": { + "customized": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + }, + "guaranteed_ratio": { + "type": "number" + }, + "profile": { + "type": "string" + } + }, + "type": "object" + }, + "spn_name_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "allocated_bandwidth" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "36ac409a-005d-4451-81a7-53268b205d61", + "created": "2026-08-28T22:10:32.666Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 66, + "reference": "d65c30f1-55e1-4887-95db-b704bf45eebb", + "type": "workflow", + "folder": "/BandwidthAllocations", + "document": { + "name": "List Aggregated Bandwidth Regions", + "description": "List Aggregated Bandwidth Regions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-bandwidth-allocations", + "canvasName": "get-sse-config-v1-bandwidth-allocations", + "summary": "get-sse-config-v1-bandwidth-allocations", + "description": "get-sse-config-v1-bandwidth-allocations", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7d36685c-4ea3-45c9-9e7d-7b700f2a28ac", + "created": "2026-08-28T22:10:32.586Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 67, + "reference": "7bcf2147-60e8-4434-9aff-bd96cdac6c98", + "type": "workflow", + "folder": "/ServiceConnections", + "document": { + "name": "Create Service Connections", + "description": "Create Service Connections", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-service-connections", + "canvasName": "post-sse-config-v1-service-connections", + "summary": "post-sse-config-v1-service-connections", + "description": "post-sse-config-v1-service-connections", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "backup_SC": { + "type": "string" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "local_ipv6_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peer_ipv6_address": { + "type": "string" + }, + "same_as_primary": { + "type": "boolean" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + }, + "ipsec_tunnel": { + "type": "string" + }, + "name": { + "type": "string" + }, + "nat_pool": { + "type": "string" + }, + "no_export_community": { + "enum": [ + "Disabled", + "Enabled-In", + "Enabled-Out", + "Enabled-Both" + ], + "type": "string" + }, + "onboarding_type": { + "default": "classic", + "enum": [ + "classic" + ], + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "fast_failover": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "qos": { + "properties": { + "enable": { + "type": "boolean" + }, + "qos_profile": { + "type": "string" + } + }, + "type": "object" + }, + "region": { + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "source_nat": { + "type": "boolean" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "ipsec_tunnel", + "region" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "backup_SC": { + "type": "string" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "local_ipv6_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peer_ipv6_address": { + "type": "string" + }, + "same_as_primary": { + "type": "boolean" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + }, + "ipsec_tunnel": { + "type": "string" + }, + "name": { + "type": "string" + }, + "nat_pool": { + "type": "string" + }, + "no_export_community": { + "enum": [ + "Disabled", + "Enabled-In", + "Enabled-Out", + "Enabled-Both" + ], + "type": "string" + }, + "onboarding_type": { + "default": "classic", + "enum": [ + "classic" + ], + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "fast_failover": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "qos": { + "properties": { + "enable": { + "type": "boolean" + }, + "qos_profile": { + "type": "string" + } + }, + "type": "object" + }, + "region": { + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "source_nat": { + "type": "boolean" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "ipsec_tunnel", + "region" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b7099be3-a933-404f-9329-94d7cce492cf", + "created": "2026-08-28T22:10:39.373Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 68, + "reference": "4c3080c3-18d0-48e8-858c-fac2db7039da", + "type": "workflow", + "folder": "/ServiceConnections", + "document": { + "name": "Delete a Service Connection", + "description": "Delete a Service Connection", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-service-connections-id", + "canvasName": "delete-sse-config-v1-service-connections-id", + "summary": "delete-sse-config-v1-service-connections-id", + "description": "delete-sse-config-v1-service-connections-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "40682905-b52a-4cee-98e0-81ad44f7b10c", + "created": "2026-08-28T22:10:39.406Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 69, + "reference": "0e979697-6e42-4169-b398-4565874255cb", + "type": "workflow", + "folder": "/ServiceConnections", + "document": { + "name": "Edit a Service Connection", + "description": "Edit a Service Connection", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-service-connections-id", + "canvasName": "put-sse-config-v1-service-connections-id", + "summary": "put-sse-config-v1-service-connections-id", + "description": "put-sse-config-v1-service-connections-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "backup_SC": { + "type": "string" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "local_ipv6_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peer_ipv6_address": { + "type": "string" + }, + "same_as_primary": { + "type": "boolean" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + }, + "ipsec_tunnel": { + "type": "string" + }, + "name": { + "type": "string" + }, + "nat_pool": { + "type": "string" + }, + "no_export_community": { + "enum": [ + "Disabled", + "Enabled-In", + "Enabled-Out", + "Enabled-Both" + ], + "type": "string" + }, + "onboarding_type": { + "default": "classic", + "enum": [ + "classic" + ], + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "fast_failover": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "qos": { + "properties": { + "enable": { + "type": "boolean" + }, + "qos_profile": { + "type": "string" + } + }, + "type": "object" + }, + "region": { + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "source_nat": { + "type": "boolean" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "ipsec_tunnel", + "region" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "backup_SC": { + "type": "string" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "local_ipv6_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peer_ipv6_address": { + "type": "string" + }, + "same_as_primary": { + "type": "boolean" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + }, + "ipsec_tunnel": { + "type": "string" + }, + "name": { + "type": "string" + }, + "nat_pool": { + "type": "string" + }, + "no_export_community": { + "enum": [ + "Disabled", + "Enabled-In", + "Enabled-Out", + "Enabled-Both" + ], + "type": "string" + }, + "onboarding_type": { + "default": "classic", + "enum": [ + "classic" + ], + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "fast_failover": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "qos": { + "properties": { + "enable": { + "type": "boolean" + }, + "qos_profile": { + "type": "string" + } + }, + "type": "object" + }, + "region": { + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "source_nat": { + "type": "boolean" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "ipsec_tunnel", + "region" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "20328d0c-4d28-47e6-af75-00da273a7859", + "created": "2026-08-28T22:10:39.462Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 70, + "reference": "62d11a31-4aec-4a53-b080-1a98802ac8d7", + "type": "workflow", + "folder": "/ServiceConnections", + "document": { + "name": "Get a Service Connection", + "description": "Get a Service Connection", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-service-connections-id", + "canvasName": "get-sse-config-v1-service-connections-id", + "summary": "get-sse-config-v1-service-connections-id", + "description": "get-sse-config-v1-service-connections-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b82c555d-bdc5-41ba-b1b7-dc30696f4f21", + "created": "2026-08-28T22:10:39.434Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 71, + "reference": "b72e947b-3daa-4b92-9941-6450d38d7421", + "type": "workflow", + "folder": "/ServiceConnections", + "document": { + "name": "List Service Connections", + "description": "List Service Connections", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-service-connections", + "canvasName": "get-sse-config-v1-service-connections", + "summary": "get-sse-config-v1-service-connections", + "description": "get-sse-config-v1-service-connections", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e00c8c9b-e929-4099-825c-4665f5fabe35", + "created": "2026-08-28T22:10:39.342Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 72, + "reference": "eb9e9cd9-92c9-42d5-af5d-b55cd5232ade", + "type": "workflow", + "folder": "/ServiceConnections", + "document": { + "name": "Retrieve BGP Routing", + "description": "Retrieve BGP Routing", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-bgp-routing", + "canvasName": "get-sse-config-v1-bgp-routing", + "summary": "get-sse-config-v1-bgp-routing", + "description": "get-sse-config-v1-bgp-routing", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "position", + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e66f3986-f1e2-4bbf-ade5-074615e7e5b0", + "created": "2026-08-28T22:10:32.693Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 73, + "reference": "dd602e6b-03b2-4763-b4a6-a6191193eba7", + "type": "workflow", + "folder": "/ServiceConnections", + "document": { + "name": "Update BGP Routing", + "description": "Update BGP Routing", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-bgp-routing", + "canvasName": "put-sse-config-v1-bgp-routing", + "summary": "put-sse-config-v1-bgp-routing", + "description": "put-sse-config-v1-bgp-routing", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "accept_route_over_SC": { + "type": "boolean" + }, + "add_host_route_to_ike_peer": { + "type": "boolean" + }, + "backbone_routing": { + "enum": [ + "no-asymmetric-routing", + "asymmetric-routing-only", + "asymmetric-routing-with-load-share" + ], + "type": "string" + }, + "outbound_routes_for_services": { + "items": { + "type": "string" + }, + "type": "array" + }, + "routing_preference": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "hot_potato_routing": { + "type": "object" + } + }, + "title": "hot_potato_routing" + } + ], + "type": "object" + }, + "withdraw_static_route": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "accept_route_over_SC": { + "type": "boolean" + }, + "add_host_route_to_ike_peer": { + "type": "boolean" + }, + "backbone_routing": { + "enum": [ + "no-asymmetric-routing", + "asymmetric-routing-only", + "asymmetric-routing-with-load-share" + ], + "type": "string" + }, + "outbound_routes_for_services": { + "items": { + "type": "string" + }, + "type": "array" + }, + "routing_preference": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "hot_potato_routing": { + "type": "object" + } + }, + "title": "hot_potato_routing" + } + ], + "type": "object" + }, + "withdraw_static_route": { + "type": "boolean" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7cd9297c-6fd7-498b-80f5-5143f07b64f3", + "created": "2026-08-28T22:10:32.720Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 74, + "reference": "92b321d5-2cd8-415d-b794-3031bd89da0c", + "type": "workflow", + "folder": "/CertificateProfiles", + "document": { + "name": "Create Certificate Profiles", + "description": "Create Certificate Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-certificate-profiles", + "canvasName": "post-sse-config-v1-certificate-profiles", + "summary": "post-sse-config-v1-certificate-profiles", + "description": "post-sse-config-v1-certificate-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e6203bd9-a871-49b2-a472-6ac9bebb0875", + "created": "2026-08-28T22:10:32.777Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 75, + "reference": "01232bd1-a955-440b-ab8a-55c32596a632", + "type": "workflow", + "folder": "/CertificateProfiles", + "document": { + "name": "Delete a Certificate Profile", + "description": "Delete a Certificate Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-certificate-profiles-id", + "canvasName": "delete-sse-config-v1-certificate-profiles-id", + "summary": "delete-sse-config-v1-certificate-profiles-id", + "description": "delete-sse-config-v1-certificate-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9ba7ba2f-17dc-4f7f-b516-7e304ec6f8fb", + "created": "2026-08-28T22:10:32.803Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 76, + "reference": "34eb9f4e-d7a4-4a61-b7d2-3826a2ae20dc", + "type": "workflow", + "folder": "/CertificateProfiles", + "document": { + "name": "Get a Certificate Profile", + "description": "Get a Certificate Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-certificate-profiles-id", + "canvasName": "get-sse-config-v1-certificate-profiles-id", + "summary": "get-sse-config-v1-certificate-profiles-id", + "description": "get-sse-config-v1-certificate-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "997fdc3d-a370-4854-a9a3-9e528ad4cba1", + "created": "2026-08-28T22:10:32.829Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 77, + "reference": "70e7a8dc-ee6c-40fe-8706-05719524f378", + "type": "workflow", + "folder": "/CertificateProfiles", + "document": { + "name": "List Certificate Profiles", + "description": "List Certificate Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-certificate-profiles", + "canvasName": "get-sse-config-v1-certificate-profiles", + "summary": "get-sse-config-v1-certificate-profiles", + "description": "get-sse-config-v1-certificate-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "359d87d5-ef04-4ed1-9cb2-94f3acdfc471", + "created": "2026-08-28T22:10:32.747Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 78, + "reference": "7e9fdb2a-76bb-45cc-bec0-7ef57f08d49f", + "type": "workflow", + "folder": "/CertificateProfiles", + "document": { + "name": "Modify a Certificate Profile", + "description": "Modify a Certificate Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-certificate-profiles-id", + "canvasName": "put-sse-config-v1-certificate-profiles-id", + "summary": "put-sse-config-v1-certificate-profiles-id", + "description": "put-sse-config-v1-certificate-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2d204521-e2e4-4612-9d54-83ead0b0ed19", + "created": "2026-08-28T22:10:32.861Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 79, + "reference": "e5ca9b06-5bf6-48b7-bdd8-d5b551975540", + "type": "workflow", + "folder": "/Certificates", + "document": { + "name": "Create Certificates", + "description": "Create Certificates", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-certificates", + "canvasName": "post-sse-config-v1-certificates", + "summary": "post-sse-config-v1-certificates", + "description": "post-sse-config-v1-certificates", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "algorithm": { + "oneOf": [ + { + "properties": { + "rsa_number_of_bits": { + "enum": [ + 512, + 1024, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "rsa_number_of_bits" + ], + "title": "rsa_number_of_bits" + }, + { + "properties": { + "ecdsa_number_of_bits": { + "enum": [ + 245, + 384, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "ecdsa_number_of_bits" + ], + "title": "ecdsa_number_of_bits" + } + ], + "type": "object" + }, + "alternate_email": { + "items": { + "type": "string" + }, + "type": "array" + }, + "certificate_name": { + "minLength": 1, + "type": "string" + }, + "common_name": { + "minLength": 1, + "type": "string" + }, + "country_code": { + "type": "string" + }, + "day_till_expiration": { + "type": "number" + }, + "department": { + "items": { + "type": "string" + }, + "type": "array" + }, + "digest": { + "enum": [ + "sha1", + "sha256", + "sha384", + "sha512", + "md5" + ], + "type": "string" + }, + "email": { + "maxLength": 255, + "type": "string" + }, + "hostname": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "ip": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "is_block_privateKey": { + "type": "boolean" + }, + "is_certificate_authority": { + "type": "boolean" + }, + "locality": { + "maxLength": 64, + "type": "string" + }, + "ocsp_responder_url": { + "maxLength": 64, + "type": "string" + }, + "signed_by": { + "maxLength": 64, + "type": "string" + }, + "state": { + "maxLength": 32, + "type": "string" + } + }, + "required": [ + "algorithm", + "certificate_name", + "common_name", + "digest" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "algorithm": { + "oneOf": [ + { + "properties": { + "rsa_number_of_bits": { + "enum": [ + 512, + 1024, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "rsa_number_of_bits" + ], + "title": "rsa_number_of_bits" + }, + { + "properties": { + "ecdsa_number_of_bits": { + "enum": [ + 245, + 384, + 2048, + 3072, + 4096 + ], + "type": "number" + } + }, + "required": [ + "ecdsa_number_of_bits" + ], + "title": "ecdsa_number_of_bits" + } + ], + "type": "object" + }, + "alternate_email": { + "items": { + "type": "string" + }, + "type": "array" + }, + "certificate_name": { + "minLength": 1, + "type": "string" + }, + "common_name": { + "minLength": 1, + "type": "string" + }, + "country_code": { + "type": "string" + }, + "day_till_expiration": { + "type": "number" + }, + "department": { + "items": { + "type": "string" + }, + "type": "array" + }, + "digest": { + "enum": [ + "sha1", + "sha256", + "sha384", + "sha512", + "md5" + ], + "type": "string" + }, + "email": { + "maxLength": 255, + "type": "string" + }, + "hostname": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "ip": { + "items": { + "maxItems": 4, + "maxLength": 64, + "minLength": 1, + "type": "string" + }, + "type": "array" + }, + "is_block_privateKey": { + "type": "boolean" + }, + "is_certificate_authority": { + "type": "boolean" + }, + "locality": { + "maxLength": 64, + "type": "string" + }, + "ocsp_responder_url": { + "maxLength": 64, + "type": "string" + }, + "signed_by": { + "maxLength": 64, + "type": "string" + }, + "state": { + "maxLength": 32, + "type": "string" + } + }, + "required": [ + "algorithm", + "certificate_name", + "common_name", + "digest" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e13e5e46-544b-4220-9fca-a2ae92bac819", + "created": "2026-08-28T22:10:32.921Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 80, + "reference": "e4c1df35-c6f0-4b12-8eff-05f33e7d8b79", + "type": "workflow", + "folder": "/Certificates", + "document": { + "name": "Delete Certificates", + "description": "Delete Certificates", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-certificates-id", + "canvasName": "delete-sse-config-v1-certificates-id", + "summary": "delete-sse-config-v1-certificates-id", + "description": "delete-sse-config-v1-certificates-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d8382a91-3fe3-4949-9dfb-20356d5ac8b8", + "created": "2026-08-28T22:10:32.954Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 81, + "reference": "5c184cbe-5a0a-4ca4-af1b-9dc6d4095b38", + "type": "workflow", + "folder": "/Certificates", + "document": { + "name": "Import a Certificate", + "description": "Import a Certificate", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-certificates:import", + "canvasName": "post-sse-config-v1-certificates:import", + "summary": "post-sse-config-v1-certificates:import", + "description": "post-sse-config-v1-certificates:import", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "certificate_file": { + "description": "base64 encoded content of the certificate file", + "type": "string" + }, + "format": { + "default": "pem", + "enum": [ + "pem", + "pkcs12", + "der" + ], + "type": "string" + }, + "key_file": { + "description": "base64 encoded content of the key file", + "type": "string" + }, + "name": { + "description": "name of the certificate", + "minLength": 1, + "type": "string" + }, + "passphrase": { + "description": "required when key_file is presented", + "type": "string" + } + }, + "required": [ + "name", + "certificate_file", + "format" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "certificate_file": { + "description": "base64 encoded content of the certificate file", + "type": "string" + }, + "format": { + "default": "pem", + "enum": [ + "pem", + "pkcs12", + "der" + ], + "type": "string" + }, + "key_file": { + "description": "base64 encoded content of the key file", + "type": "string" + }, + "name": { + "description": "name of the certificate", + "minLength": 1, + "type": "string" + }, + "passphrase": { + "description": "required when key_file is presented", + "type": "string" + } + }, + "required": [ + "name", + "certificate_file", + "format" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "4627987a-15bf-4a6b-be1b-ef58061d91e3", + "created": "2026-08-28T22:10:32.988Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 82, + "reference": "bebc3ef2-c6e3-4531-a9e6-d54ec2b5737a", + "type": "workflow", + "folder": "/Certificates", + "document": { + "name": "List Certificates", + "description": "List Certificates", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-certificates", + "canvasName": "get-sse-config-v1-certificates", + "summary": "get-sse-config-v1-certificates", + "description": "get-sse-config-v1-certificates", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "94292649-3c07-4829-b311-2fab86498883", + "created": "2026-08-28T22:10:32.890Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 83, + "reference": "afb6003e-220a-4dae-9e1c-87a4a9cd7512", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "Get a Configuration by Version", + "description": "Get a Configuration by Version", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-config-versions-version", + "canvasName": "get-sse-config-v1-config-versions-version", + "summary": "get-sse-config-v1-config-versions-version", + "description": "get-sse-config-v1-config-versions-version", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "version": "$var.job.version" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "version": { + "type": "string" + } + }, + "required": [ + "version" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "version": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6933be5d-1d96-4491-8bcd-8dbbf7c2e3b3", + "created": "2026-08-28T22:10:33.146Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 84, + "reference": "7fa20bdb-fd3a-43b0-942c-b411e0fcf8f6", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "List Configuration Jobs", + "description": "List Configuration Jobs", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-jobs", + "canvasName": "get-sse-config-v1-jobs", + "summary": "get-sse-config-v1-jobs", + "description": "get-sse-config-v1-jobs", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "03b24a68-2ad0-45d1-a698-a7931b99eaa3", + "created": "2026-08-28T22:10:35.767Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 85, + "reference": "c3a15661-5519-4fc3-b6f0-7baea70f8a5b", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "List Configuration Snapshots", + "description": "List Configuration Snapshots", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-snapshots", + "canvasName": "get-sse-config-v1-snapshots", + "summary": "get-sse-config-v1-snapshots", + "description": "get-sse-config-v1-snapshots", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "87a26fff-7ada-41db-9b24-16f27bdfdf4d", + "created": "2026-08-28T22:10:39.864Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 86, + "reference": "bdf4aa8a-14ab-45a4-8335-38e5d93f8602", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "List a Configuration Job by ID", + "description": "List a Configuration Job by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-jobs-id", + "canvasName": "get-sse-config-v1-jobs-id", + "summary": "get-sse-config-v1-jobs-id", + "description": "get-sse-config-v1-jobs-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "77406f65-be39-4029-a154-ef9e50a9531f", + "created": "2026-08-28T22:10:35.801Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 87, + "reference": "04967ffc-0bf3-45e6-adbe-3ced4684a7b5", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "List the Candidate Configurations", + "description": "List the Candidate Configurations", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-config-versions", + "canvasName": "get-sse-config-v1-config-versions", + "summary": "get-sse-config-v1-config-versions", + "description": "get-sse-config-v1-config-versions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ad7ccfd4-d467-4368-9e06-9019b68d2faf", + "created": "2026-08-28T22:10:33.018Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 88, + "reference": "21b29d55-9fa8-4c1e-919c-0c87501086eb", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "Load a Configuration", + "description": "Load a Configuration", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-config-versions:load", + "canvasName": "post-sse-config-v1-config-versions:load", + "summary": "post-sse-config-v1-config-versions:load", + "description": "post-sse-config-v1-config-versions:load", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "version": { + "type": "number" + } + }, + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "version": { + "type": "number" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "86b578bd-a0ef-4086-93d1-fb20bc40f717", + "created": "2026-08-28T22:10:33.179Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 89, + "reference": "1ce461b9-ec71-4eed-b8b2-ea955eddf2cf", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "Push the Candidate Configuration", + "description": "Push the Candidate Configuration", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-config-versions-candidate:push", + "canvasName": "post-sse-config-v1-config-versions-candidate:push", + "summary": "post-sse-config-v1-config-versions-candidate:push", + "description": "post-sse-config-v1-config-versions-candidate:push", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "description": { + "type": "string" + }, + "folders": { + "description": "The target folder for the configuration push", + "items": { + "enum": [ + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "folders" + ], + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "description": { + "type": "string" + }, + "folders": { + "description": "The target folder for the configuration push", + "items": { + "enum": [ + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "folders" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "eb3d4796-779d-478c-b9ff-017ee5547d81", + "created": "2026-08-28T22:10:33.087Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 90, + "reference": "34e5bb17-d3ac-4178-9f17-c367b9e28337", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "Rollback to the Running Configuration", + "description": "Rollback to the Running Configuration", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-config-versions-candidate", + "canvasName": "delete-sse-config-v1-config-versions-candidate", + "summary": "delete-sse-config-v1-config-versions-candidate", + "description": "delete-sse-config-v1-config-versions-candidate", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ac985360-ba5d-493e-96ec-47db455d2543", + "created": "2026-08-28T22:10:33.053Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 91, + "reference": "660b11fd-cdda-40d9-9de3-8c818fa7502b", + "type": "workflow", + "folder": "/ConfigurationManagement", + "document": { + "name": "Show the Running Configuration", + "description": "Show the Running Configuration", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-config-versions-running", + "canvasName": "get-sse-config-v1-config-versions-running", + "summary": "get-sse-config-v1-config-versions-running", + "description": "get-sse-config-v1-config-versions-running", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "878ca0fb-78b7-47ee-8baa-dbb39793cf80", + "created": "2026-08-28T22:10:33.116Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 92, + "reference": "8e784741-b7d9-482f-b5f0-1d2ffcde655e", + "type": "workflow", + "folder": "/DecryptionExclusions", + "document": { + "name": "Create a Decryption Exclusion", + "description": "Create a Decryption Exclusion", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-decryption-exclusions", + "canvasName": "post-sse-config-v1-decryption-exclusions", + "summary": "post-sse-config-v1-decryption-exclusions", + "description": "post-sse-config-v1-decryption-exclusions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "bf55d7a4-5d78-4576-ae6d-4d46dba66c07", + "created": "2026-08-28T22:10:33.240Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 93, + "reference": "78ade8ab-df1a-475a-bfb2-79fc0005159a", + "type": "workflow", + "folder": "/DecryptionExclusions", + "document": { + "name": "Delete a Decryption Exclusion", + "description": "Delete a Decryption Exclusion", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-decryption-exclusions-id", + "canvasName": "delete-sse-config-v1-decryption-exclusions-id", + "summary": "delete-sse-config-v1-decryption-exclusions-id", + "description": "delete-sse-config-v1-decryption-exclusions-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7d1286a6-7b03-472f-aded-cfaf7dcfe65a", + "created": "2026-08-28T22:10:33.273Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 94, + "reference": "3f8bd846-8dcc-49aa-819a-95664cf123cf", + "type": "workflow", + "folder": "/DecryptionExclusions", + "document": { + "name": "Edit a Decryption Exclusion", + "description": "Edit a Decryption Exclusion", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-decryption-exclusions-id", + "canvasName": "put-sse-config-v1-decryption-exclusions-id", + "summary": "put-sse-config-v1-decryption-exclusions-id", + "description": "put-sse-config-v1-decryption-exclusions-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "800140b9-32f5-4ceb-9ba4-1002af35e60c", + "created": "2026-08-28T22:10:33.337Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 95, + "reference": "19fe2c8d-7df7-479a-b5cf-1c32b5e5ee90", + "type": "workflow", + "folder": "/DecryptionExclusions", + "document": { + "name": "Get a Decryption Exclusion by ID", + "description": "Get a Decryption Exclusion by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-decryption-exclusions-id", + "canvasName": "get-sse-config-v1-decryption-exclusions-id", + "summary": "get-sse-config-v1-decryption-exclusions-id", + "description": "get-sse-config-v1-decryption-exclusions-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f8f75139-6ae2-4877-8d79-d5f38a4cc2a7", + "created": "2026-08-28T22:10:33.304Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 96, + "reference": "80350225-89e2-4821-a4f7-a713734d70a4", + "type": "workflow", + "folder": "/DecryptionExclusions", + "document": { + "name": "List Decryption Exclusions", + "description": "List Decryption Exclusions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-decryption-exclusions", + "canvasName": "get-sse-config-v1-decryption-exclusions", + "summary": "get-sse-config-v1-decryption-exclusions", + "description": "get-sse-config-v1-decryption-exclusions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "661ae5bf-b77b-435b-9b51-8b0d8146f960", + "created": "2026-08-28T22:10:33.210Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 97, + "reference": "6bfc5b39-1115-4e99-ad6d-840dcddda4da", + "type": "workflow", + "folder": "/DecryptionProfiles", + "document": { + "name": "Create a Decryption Profile", + "description": "Create a Decryption Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-decryption-profiles", + "canvasName": "post-sse-config-v1-decryption-profiles", + "summary": "post-sse-config-v1-decryption-profiles", + "description": "post-sse-config-v1-decryption-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space", + "pattern": "^[A-Za-z0-9]{1}[A-Za-z0-9_\\-\\.\\s]{0,}$", + "type": "string" + }, + "ssl_forward_proxy": { + "properties": { + "auto_include_altname": { + "default": false, + "type": "boolean" + }, + "block_client_cert": { + "default": false, + "type": "boolean" + }, + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_timeout_cert": { + "default": false, + "type": "boolean" + }, + "block_tls13_downgrade_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unknown_cert": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + }, + "restrict_cert_exts": { + "default": false, + "type": "boolean" + }, + "strip_alpn": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_inbound_proxy": { + "properties": { + "block_if_hsm_unavailable": { + "default": false, + "type": "boolean" + }, + "block_if_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_no_proxy": { + "properties": { + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_protocol_settings": { + "properties": { + "auth_algo_md5": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha1": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha256": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha384": { + "default": true, + "type": "boolean" + }, + "enc_algo_3des": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_chacha20_poly1305": { + "default": true, + "type": "boolean" + }, + "enc_algo_rc4": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "default": true, + "type": "boolean" + }, + "max_version": { + "default": "tls1-2", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space", + "pattern": "^[A-Za-z0-9]{1}[A-Za-z0-9_\\-\\.\\s]{0,}$", + "type": "string" + }, + "ssl_forward_proxy": { + "properties": { + "auto_include_altname": { + "default": false, + "type": "boolean" + }, + "block_client_cert": { + "default": false, + "type": "boolean" + }, + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_timeout_cert": { + "default": false, + "type": "boolean" + }, + "block_tls13_downgrade_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unknown_cert": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + }, + "restrict_cert_exts": { + "default": false, + "type": "boolean" + }, + "strip_alpn": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_inbound_proxy": { + "properties": { + "block_if_hsm_unavailable": { + "default": false, + "type": "boolean" + }, + "block_if_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_no_proxy": { + "properties": { + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_protocol_settings": { + "properties": { + "auth_algo_md5": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha1": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha256": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha384": { + "default": true, + "type": "boolean" + }, + "enc_algo_3des": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_chacha20_poly1305": { + "default": true, + "type": "boolean" + }, + "enc_algo_rc4": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "default": true, + "type": "boolean" + }, + "max_version": { + "default": "tls1-2", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b20683fe-ceeb-4a0b-81ac-87e0330d6234", + "created": "2026-08-28T22:10:33.402Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 98, + "reference": "95a9d027-4240-431e-b600-7371a5428f84", + "type": "workflow", + "folder": "/DecryptionProfiles", + "document": { + "name": "Delete a Decryption Profile", + "description": "Delete a Decryption Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-decryption-profiles-id", + "canvasName": "delete-sse-config-v1-decryption-profiles-id", + "summary": "delete-sse-config-v1-decryption-profiles-id", + "description": "delete-sse-config-v1-decryption-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5eb1812b-a775-4e75-83f0-286958c7b414", + "created": "2026-08-28T22:10:33.432Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 99, + "reference": "e6c39585-9665-4560-b41e-27965008e218", + "type": "workflow", + "folder": "/DecryptionProfiles", + "document": { + "name": "Edit a Decryption Profile", + "description": "Edit a Decryption Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-decryption-profiles-id", + "canvasName": "put-sse-config-v1-decryption-profiles-id", + "summary": "put-sse-config-v1-decryption-profiles-id", + "description": "put-sse-config-v1-decryption-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space", + "pattern": "^[A-Za-z0-9]{1}[A-Za-z0-9_\\-\\.\\s]{0,}$", + "type": "string" + }, + "ssl_forward_proxy": { + "properties": { + "auto_include_altname": { + "default": false, + "type": "boolean" + }, + "block_client_cert": { + "default": false, + "type": "boolean" + }, + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_timeout_cert": { + "default": false, + "type": "boolean" + }, + "block_tls13_downgrade_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unknown_cert": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + }, + "restrict_cert_exts": { + "default": false, + "type": "boolean" + }, + "strip_alpn": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_inbound_proxy": { + "properties": { + "block_if_hsm_unavailable": { + "default": false, + "type": "boolean" + }, + "block_if_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_no_proxy": { + "properties": { + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_protocol_settings": { + "properties": { + "auth_algo_md5": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha1": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha256": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha384": { + "default": true, + "type": "boolean" + }, + "enc_algo_3des": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_chacha20_poly1305": { + "default": true, + "type": "boolean" + }, + "enc_algo_rc4": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "default": true, + "type": "boolean" + }, + "max_version": { + "default": "tls1-2", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space", + "pattern": "^[A-Za-z0-9]{1}[A-Za-z0-9_\\-\\.\\s]{0,}$", + "type": "string" + }, + "ssl_forward_proxy": { + "properties": { + "auto_include_altname": { + "default": false, + "type": "boolean" + }, + "block_client_cert": { + "default": false, + "type": "boolean" + }, + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_timeout_cert": { + "default": false, + "type": "boolean" + }, + "block_tls13_downgrade_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unknown_cert": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + }, + "restrict_cert_exts": { + "default": false, + "type": "boolean" + }, + "strip_alpn": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_inbound_proxy": { + "properties": { + "block_if_hsm_unavailable": { + "default": false, + "type": "boolean" + }, + "block_if_no_resource": { + "default": false, + "type": "boolean" + }, + "block_unsupported_cipher": { + "default": false, + "type": "boolean" + }, + "block_unsupported_version": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_no_proxy": { + "properties": { + "block_expired_certificate": { + "default": false, + "type": "boolean" + }, + "block_untrusted_issuer": { + "default": false, + "type": "boolean" + } + }, + "type": "object" + }, + "ssl_protocol_settings": { + "properties": { + "auth_algo_md5": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha1": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha256": { + "default": true, + "type": "boolean" + }, + "auth_algo_sha384": { + "default": true, + "type": "boolean" + }, + "enc_algo_3des": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "default": true, + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "default": true, + "type": "boolean" + }, + "enc_algo_chacha20_poly1305": { + "default": true, + "type": "boolean" + }, + "enc_algo_rc4": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "default": true, + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "default": true, + "type": "boolean" + }, + "max_version": { + "default": "tls1-2", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "sslv3", + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8e5e3e77-a8dd-4ce4-8ac3-b15fae52968e", + "created": "2026-08-28T22:10:33.503Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 100, + "reference": "3e6d9652-db77-4ce6-b4a0-e1282c330adb", + "type": "workflow", + "folder": "/DecryptionProfiles", + "document": { + "name": "Get a Decryption Profile by ID", + "description": "Get a Decryption Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-decryption-profiles-id", + "canvasName": "get-sse-config-v1-decryption-profiles-id", + "summary": "get-sse-config-v1-decryption-profiles-id", + "description": "get-sse-config-v1-decryption-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b1d0847f-3c87-49eb-8b03-ef023f529c1f", + "created": "2026-08-28T22:10:33.470Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 101, + "reference": "1e0a18bf-a650-4ede-9548-83caf1336086", + "type": "workflow", + "folder": "/DecryptionProfiles", + "document": { + "name": "List Decryption Profiles", + "description": "List Decryption Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-decryption-profiles", + "canvasName": "get-sse-config-v1-decryption-profiles", + "summary": "get-sse-config-v1-decryption-profiles", + "description": "get-sse-config-v1-decryption-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "243e398f-72ab-4a3a-bee7-be5b041a32cf", + "created": "2026-08-28T22:10:33.371Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 102, + "reference": "38015390-cd05-41d0-beb4-e7a4ae51cab5", + "type": "workflow", + "folder": "/DecryptionRules", + "document": { + "name": "Create a Decryption Rule", + "description": "Create a Decryption Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-decryption-rules", + "canvasName": "post-sse-config-v1-decryption-rules", + "summary": "post-sse-config-v1-decryption-rules", + "description": "post-sse-config-v1-decryption-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "action": { + "enum": [ + "decrypt", + "no-decrypt" + ], + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_fail": { + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "log_success": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile": { + "type": "string" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "oneOf": [ + { + "properties": { + "ssl_forward_proxy": { + "type": "object" + } + }, + "title": "ssl_forward_proxy" + }, + { + "properties": { + "ssl_inbound_inspection": { + "description": "add the certificate name for SSL inbound inspection", + "type": "string" + } + }, + "required": [ + "ssl_inbound_inspection" + ], + "title": "ssl_inbound_inspection" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + } + }, + "required": [ + "position", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "action": { + "enum": [ + "decrypt", + "no-decrypt" + ], + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_fail": { + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "log_success": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile": { + "type": "string" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "oneOf": [ + { + "properties": { + "ssl_forward_proxy": { + "type": "object" + } + }, + "title": "ssl_forward_proxy" + }, + { + "properties": { + "ssl_inbound_inspection": { + "description": "add the certificate name for SSL inbound inspection", + "type": "string" + } + }, + "required": [ + "ssl_inbound_inspection" + ], + "title": "ssl_inbound_inspection" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "35b8757e-5e59-46e4-a190-8c6a76168bec", + "created": "2026-08-28T22:10:33.570Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 103, + "reference": "d77283a0-8284-4477-aeb5-fb15fa2acae7", + "type": "workflow", + "folder": "/DecryptionRules", + "document": { + "name": "Delete a Decryption Rule", + "description": "Delete a Decryption Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-decryption-rules-id", + "canvasName": "delete-sse-config-v1-decryption-rules-id", + "summary": "delete-sse-config-v1-decryption-rules-id", + "description": "delete-sse-config-v1-decryption-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "58ce5c76-75cd-44a5-88a4-3413c6c514b9", + "created": "2026-08-28T22:10:33.600Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 104, + "reference": "3f0de40d-d3d1-424d-a93b-87094d12e6ee", + "type": "workflow", + "folder": "/DecryptionRules", + "document": { + "name": "Edit a Decryption Rule", + "description": "Edit a Decryption Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-decryption-rules-id", + "canvasName": "put-sse-config-v1-decryption-rules-id", + "summary": "put-sse-config-v1-decryption-rules-id", + "description": "put-sse-config-v1-decryption-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "enum": [ + "decrypt", + "no-decrypt" + ], + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_fail": { + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "log_success": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile": { + "type": "string" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "oneOf": [ + { + "properties": { + "ssl_forward_proxy": { + "type": "object" + } + }, + "title": "ssl_forward_proxy" + }, + { + "properties": { + "ssl_inbound_inspection": { + "description": "add the certificate name for SSL inbound inspection", + "type": "string" + } + }, + "required": [ + "ssl_inbound_inspection" + ], + "title": "ssl_inbound_inspection" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "enum": [ + "decrypt", + "no-decrypt" + ], + "type": "string" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_fail": { + "type": "boolean" + }, + "log_setting": { + "type": "string" + }, + "log_success": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile": { + "type": "string" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": { + "oneOf": [ + { + "properties": { + "ssl_forward_proxy": { + "type": "object" + } + }, + "title": "ssl_forward_proxy" + }, + { + "properties": { + "ssl_inbound_inspection": { + "description": "add the certificate name for SSL inbound inspection", + "type": "string" + } + }, + "required": [ + "ssl_inbound_inspection" + ], + "title": "ssl_inbound_inspection" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b061e9bd-02e9-420d-9564-7d6b68f57305", + "created": "2026-08-28T22:10:33.665Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 105, + "reference": "fab89efb-3273-4223-9f68-17c6d2e6b622", + "type": "workflow", + "folder": "/DecryptionRules", + "document": { + "name": "Get a Decryption Rule by ID", + "description": "Get a Decryption Rule by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-decryption-rules-id", + "canvasName": "get-sse-config-v1-decryption-rules-id", + "summary": "get-sse-config-v1-decryption-rules-id", + "description": "get-sse-config-v1-decryption-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d0603e40-add4-4cdd-8268-7557481ee4c1", + "created": "2026-08-28T22:10:33.630Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 106, + "reference": "610ea341-5eed-4c70-a3fb-09c8367459fe", + "type": "workflow", + "folder": "/DecryptionRules", + "document": { + "name": "List Decryption Rules", + "description": "List Decryption Rules", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-decryption-rules", + "canvasName": "get-sse-config-v1-decryption-rules", + "summary": "get-sse-config-v1-decryption-rules", + "description": "get-sse-config-v1-decryption-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "position", + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "99cd77cc-0cbe-4ad4-a156-807af579a08f", + "created": "2026-08-28T22:10:33.536Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 107, + "reference": "cdec340f-fa44-4e1c-9e76-bfa6fea0e510", + "type": "workflow", + "folder": "/DecryptionRules", + "document": { + "name": "Move a Decryption Rule", + "description": "Move a Decryption Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-decryption-rules-id:move", + "canvasName": "post-sse-config-v1-decryption-rules-id:move", + "summary": "post-sse-config-v1-decryption-rules-id:move", + "description": "post-sse-config-v1-decryption-rules-id:move", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + } + }, + "required": [ + "id", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a0f82c10-d907-4ecd-a0b2-eef619d877c8", + "created": "2026-08-28T22:10:33.695Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 108, + "reference": "ecb3294e-53bd-40cd-8a9f-bce184c9df9e", + "type": "workflow", + "folder": "/DNSSecurityProfiles", + "document": { + "name": "Create a DNS Security Profile", + "description": "Create a DNS Security Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-dns-security-profiles", + "canvasName": "post-sse-config-v1-dns-security-profiles", + "summary": "post-sse-config-v1-dns-security-profiles", + "description": "post-sse-config-v1-dns-security-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "botnet_domains": { + "properties": { + "dns_security_categories": { + "items": { + "properties": { + "action": { + "default": "default", + "enum": [ + "default", + "allow", + "block", + "sinkhole" + ], + "type": "string" + }, + "log_level": { + "default": "default", + "enum": [ + "default", + "none", + "low", + "informational", + "medium", + "high", + "critical" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "lists": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "block": { + "type": "object" + } + }, + "title": "block" + }, + { + "properties": { + "sinkhole": { + "type": "object" + } + }, + "title": "sinkhole" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "sinkhole": { + "properties": { + "ipv4_address": { + "enum": [ + "127.0.0.1", + "pan-sinkhole-default-ip" + ], + "type": "string" + }, + "ipv6_address": { + "enum": [ + "::1" + ], + "type": "string" + } + }, + "type": "object" + }, + "whitelist": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "botnet_domains": { + "properties": { + "dns_security_categories": { + "items": { + "properties": { + "action": { + "default": "default", + "enum": [ + "default", + "allow", + "block", + "sinkhole" + ], + "type": "string" + }, + "log_level": { + "default": "default", + "enum": [ + "default", + "none", + "low", + "informational", + "medium", + "high", + "critical" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "lists": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "block": { + "type": "object" + } + }, + "title": "block" + }, + { + "properties": { + "sinkhole": { + "type": "object" + } + }, + "title": "sinkhole" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "sinkhole": { + "properties": { + "ipv4_address": { + "enum": [ + "127.0.0.1", + "pan-sinkhole-default-ip" + ], + "type": "string" + }, + "ipv6_address": { + "enum": [ + "::1" + ], + "type": "string" + } + }, + "type": "object" + }, + "whitelist": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1c893f1c-ac9a-41ac-a7f2-38ff0a65ef4f", + "created": "2026-08-28T22:10:33.771Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 109, + "reference": "b88f7b83-0df4-45b2-8e1a-1a4b76fad6e5", + "type": "workflow", + "folder": "/DNSSecurityProfiles", + "document": { + "name": "Delete a DNS Security Profile", + "description": "Delete a DNS Security Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-dns-security-profiles-id", + "canvasName": "delete-sse-config-v1-dns-security-profiles-id", + "summary": "delete-sse-config-v1-dns-security-profiles-id", + "description": "delete-sse-config-v1-dns-security-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1f503060-ce9c-455a-9a47-27def4fb2838", + "created": "2026-08-28T22:10:33.815Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 110, + "reference": "b1fcaea6-2276-40d1-947e-153c19abc386", + "type": "workflow", + "folder": "/DNSSecurityProfiles", + "document": { + "name": "Edit a DNS Security Profile", + "description": "Edit a DNS Security Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-dns-security-profiles-id", + "canvasName": "put-sse-config-v1-dns-security-profiles-id", + "summary": "put-sse-config-v1-dns-security-profiles-id", + "description": "put-sse-config-v1-dns-security-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "botnet_domains": { + "properties": { + "dns_security_categories": { + "items": { + "properties": { + "action": { + "default": "default", + "enum": [ + "default", + "allow", + "block", + "sinkhole" + ], + "type": "string" + }, + "log_level": { + "default": "default", + "enum": [ + "default", + "none", + "low", + "informational", + "medium", + "high", + "critical" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "lists": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "block": { + "type": "object" + } + }, + "title": "block" + }, + { + "properties": { + "sinkhole": { + "type": "object" + } + }, + "title": "sinkhole" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "sinkhole": { + "properties": { + "ipv4_address": { + "enum": [ + "127.0.0.1", + "pan-sinkhole-default-ip" + ], + "type": "string" + }, + "ipv6_address": { + "enum": [ + "::1" + ], + "type": "string" + } + }, + "type": "object" + }, + "whitelist": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "botnet_domains": { + "properties": { + "dns_security_categories": { + "items": { + "properties": { + "action": { + "default": "default", + "enum": [ + "default", + "allow", + "block", + "sinkhole" + ], + "type": "string" + }, + "log_level": { + "default": "default", + "enum": [ + "default", + "none", + "low", + "informational", + "medium", + "high", + "critical" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "lists": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "block": { + "type": "object" + } + }, + "title": "block" + }, + { + "properties": { + "sinkhole": { + "type": "object" + } + }, + "title": "sinkhole" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "sinkhole": { + "properties": { + "ipv4_address": { + "enum": [ + "127.0.0.1", + "pan-sinkhole-default-ip" + ], + "type": "string" + }, + "ipv6_address": { + "enum": [ + "::1" + ], + "type": "string" + } + }, + "type": "object" + }, + "whitelist": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "04036961-46fd-4601-975e-827b42be2975", + "created": "2026-08-28T22:10:33.877Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 111, + "reference": "72dbbddb-3383-46f0-894f-65ad24981c45", + "type": "workflow", + "folder": "/DNSSecurityProfiles", + "document": { + "name": "Get a DNS Security Profile by ID", + "description": "Get a DNS Security Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-dns-security-profiles-id", + "canvasName": "get-sse-config-v1-dns-security-profiles-id", + "summary": "get-sse-config-v1-dns-security-profiles-id", + "description": "get-sse-config-v1-dns-security-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "587c7d38-832b-4d35-9920-90830f49478a", + "created": "2026-08-28T22:10:33.844Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 112, + "reference": "f82c64ab-f877-4dd1-8a4f-92856e939a07", + "type": "workflow", + "folder": "/DNSSecurityProfiles", + "document": { + "name": "List DNS Security Profiles", + "description": "List DNS Security Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-dns-security-profiles", + "canvasName": "get-sse-config-v1-dns-security-profiles", + "summary": "get-sse-config-v1-dns-security-profiles", + "description": "get-sse-config-v1-dns-security-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3b544f29-437f-4bcd-9ec1-9ea73bd49170", + "created": "2026-08-28T22:10:33.725Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 113, + "reference": "89ee504e-0c99-40ab-951c-00d9affbb36d", + "type": "workflow", + "folder": "/DynamicUserGroups", + "document": { + "name": "Create a Dynamic User Group", + "description": "Create a Dynamic User Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-dynamic-user-groups", + "canvasName": "post-sse-config-v1-dynamic-user-groups", + "summary": "post-sse-config-v1-dynamic-user-groups", + "description": "post-sse-config-v1-dynamic-user-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "tag-based filter", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for dynamic user group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "filter" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "tag-based filter", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for dynamic user group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "filter" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5ec45c9c-6b57-45b9-a8bd-53364ceff529", + "created": "2026-08-28T22:10:33.942Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 114, + "reference": "e3d039fb-65aa-4769-b9ae-e5e5ea96b34c", + "type": "workflow", + "folder": "/DynamicUserGroups", + "document": { + "name": "Delete a Dynamic User Group", + "description": "Delete a Dynamic User Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-dynamic-user-groups-id", + "canvasName": "delete-sse-config-v1-dynamic-user-groups-id", + "summary": "delete-sse-config-v1-dynamic-user-groups-id", + "description": "delete-sse-config-v1-dynamic-user-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a89ad9ec-7c9b-498f-be68-71219fe24a21", + "created": "2026-08-28T22:10:33.972Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 115, + "reference": "2e4452d9-6ee7-4f8d-85a2-34c42c16792f", + "type": "workflow", + "folder": "/DynamicUserGroups", + "document": { + "name": "Edit a Dynamic User Group", + "description": "Edit a Dynamic User Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-dynamic-user-groups-id", + "canvasName": "put-sse-config-v1-dynamic-user-groups-id", + "summary": "put-sse-config-v1-dynamic-user-groups-id", + "description": "put-sse-config-v1-dynamic-user-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "tag-based filter", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for dynamic user group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "filter" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "filter": { + "description": "tag-based filter", + "maxLength": 2047, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for dynamic user group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "filter" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9cccec94-54fc-47db-b8f9-4e42ad2d4339", + "created": "2026-08-28T22:10:34.031Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 116, + "reference": "ae25eecf-7dfe-4f89-876e-55ad0b8d633a", + "type": "workflow", + "folder": "/DynamicUserGroups", + "document": { + "name": "Get a Dynamic User Group by ID", + "description": "Get a Dynamic User Group by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-dynamic-user-groups-id", + "canvasName": "get-sse-config-v1-dynamic-user-groups-id", + "summary": "get-sse-config-v1-dynamic-user-groups-id", + "description": "get-sse-config-v1-dynamic-user-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6bff6b04-7282-4c6d-b0cd-2520fc929d93", + "created": "2026-08-28T22:10:33.999Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 117, + "reference": "16beeb7f-cceb-462f-82d1-aaffb901209c", + "type": "workflow", + "folder": "/DynamicUserGroups", + "document": { + "name": "List Dynamic User Groups", + "description": "List Dynamic User Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-dynamic-user-groups", + "canvasName": "get-sse-config-v1-dynamic-user-groups", + "summary": "get-sse-config-v1-dynamic-user-groups", + "description": "get-sse-config-v1-dynamic-user-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6902d60d-567e-4d07-9cb2-22a149d107ec", + "created": "2026-08-28T22:10:33.908Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 118, + "reference": "9a6b270b-64b2-44fe-a729-9443b0902739", + "type": "workflow", + "folder": "/InfrastructureSettings", + "document": { + "name": "Edit an Infrastructure Setting", + "description": "Edit an Infrastructure Setting", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-shared-infrastructure-settings", + "canvasName": "put-sse-config-v1-shared-infrastructure-settings", + "summary": "put-sse-config-v1-shared-infrastructure-settings", + "description": "put-sse-config-v1-shared-infrastructure-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "egress_ip_notification_url": { + "type": "string" + }, + "infra_bgp_as": { + "type": "string" + }, + "infrastructure_subnet": { + "type": "string" + }, + "infrastructure_subnet_ipv6": { + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "egress_ip_notification_url": { + "type": "string" + }, + "infra_bgp_as": { + "type": "string" + }, + "infrastructure_subnet": { + "type": "string" + }, + "infrastructure_subnet_ipv6": { + "type": "string" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "69a01671-8662-4bb4-b04b-272bdc23044b", + "created": "2026-08-28T22:10:39.828Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 119, + "reference": "b0df78b2-7ee3-46e9-8f06-89cbd6e81d02", + "type": "workflow", + "folder": "/InfrastructureSettings", + "document": { + "name": "List All Infrastructure Settings", + "description": "List All Infrastructure Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-shared-infrastructure-settings", + "canvasName": "get-sse-config-v1-shared-infrastructure-settings", + "summary": "get-sse-config-v1-shared-infrastructure-settings", + "description": "get-sse-config-v1-shared-infrastructure-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "969e81a7-99c7-4c18-b044-de4f63043abc", + "created": "2026-08-28T22:10:39.801Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 120, + "reference": "fc85abee-afc4-441f-b423-b372f6cc69bb", + "type": "workflow", + "folder": "/InfrastructureSettings", + "document": { + "name": "Set Up Application Defaults", + "description": "Set Up Application Defaults", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-enable", + "canvasName": "post-sse-config-v1-enable", + "summary": "post-sse-config-v1-enable", + "description": "post-sse-config-v1-enable", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "361d9e90-6edb-4445-b156-595331d0fd7b", + "created": "2026-08-28T22:10:34.056Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 121, + "reference": "8be21796-e9c4-4914-875b-039502ced1f2", + "type": "workflow", + "folder": "/ExternalDynamicLists", + "document": { + "name": "Create an External Dynamic List", + "description": "Create an External Dynamic List", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-external-dynamic-lists", + "canvasName": "post-sse-config-v1-external-dynamic-lists", + "summary": "post-sse-config-v1-external-dynamic-lists", + "description": "post-sse-config-v1-external-dynamic-lists", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "predefined_ip": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_ip" + }, + { + "properties": { + "predefined_url": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_url" + }, + { + "properties": { + "ip": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "ip" + }, + { + "properties": { + "domain": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "expand_domain": { + "default": false, + "description": "Enable/Disable expand domain", + "type": "boolean" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "domain" + }, + { + "properties": { + "url": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "url" + }, + { + "properties": { + "imsi": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 34, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imsi" + }, + { + "properties": { + "imei": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imei" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "predefined_ip": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_ip" + }, + { + "properties": { + "predefined_url": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_url" + }, + { + "properties": { + "ip": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "ip" + }, + { + "properties": { + "domain": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "expand_domain": { + "default": false, + "description": "Enable/Disable expand domain", + "type": "boolean" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "domain" + }, + { + "properties": { + "url": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "url" + }, + { + "properties": { + "imsi": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 34, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imsi" + }, + { + "properties": { + "imei": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imei" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "305c3b4c-282f-4a2b-886e-318618e4348c", + "created": "2026-08-28T22:10:34.140Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 122, + "reference": "93a55782-f225-4066-a508-7f5b201be0d7", + "type": "workflow", + "folder": "/ExternalDynamicLists", + "document": { + "name": "Delete an External Dynamic List", + "description": "Delete an External Dynamic List", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-external-dynamic-lists-id", + "canvasName": "delete-sse-config-v1-external-dynamic-lists-id", + "summary": "delete-sse-config-v1-external-dynamic-lists-id", + "description": "delete-sse-config-v1-external-dynamic-lists-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "07406c4f-efaa-4be2-9dd9-38f811655b9f", + "created": "2026-08-28T22:10:34.179Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 123, + "reference": "fdacd017-e762-4ec6-97eb-6d24942c7bbf", + "type": "workflow", + "folder": "/ExternalDynamicLists", + "document": { + "name": "Edit an External Dynamic List", + "description": "Edit an External Dynamic List", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-external-dynamic-lists-id", + "canvasName": "put-sse-config-v1-external-dynamic-lists-id", + "summary": "put-sse-config-v1-external-dynamic-lists-id", + "description": "put-sse-config-v1-external-dynamic-lists-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "predefined_ip": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_ip" + }, + { + "properties": { + "predefined_url": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_url" + }, + { + "properties": { + "ip": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "ip" + }, + { + "properties": { + "domain": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "expand_domain": { + "default": false, + "description": "Enable/Disable expand domain", + "type": "boolean" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "domain" + }, + { + "properties": { + "url": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "url" + }, + { + "properties": { + "imsi": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 34, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imsi" + }, + { + "properties": { + "imei": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imei" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "predefined_ip": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_ip" + }, + { + "properties": { + "predefined_url": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "url": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + } + }, + "title": "predefined_url" + }, + { + "properties": { + "ip": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "ip" + }, + { + "properties": { + "domain": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "expand_domain": { + "default": false, + "description": "Enable/Disable expand domain", + "type": "boolean" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "domain" + }, + { + "properties": { + "url": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 255, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "url" + }, + { + "properties": { + "imsi": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 34, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imsi" + }, + { + "properties": { + "imei": { + "properties": { + "auth": { + "properties": { + "password": { + "maxLength": 255, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "username", + "password" + ], + "type": "object" + }, + "certificate_profile": { + "default": "None", + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMultiple": [ + { + "type": "string" + }, + { + "enum": [ + "None" + ], + "type": "string" + } + ] + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "exception_list": { + "items": { + "maxLength": 32, + "type": "string" + }, + "type": "array" + }, + "recurring": { + "oneOf": [ + { + "properties": { + "five_minute": { + "type": "object" + } + }, + "required": [ + "five_minute" + ], + "title": "five_minute" + }, + { + "properties": { + "hourly": { + "type": "object" + } + }, + "required": [ + "hourly" + ], + "title": "hourly" + }, + { + "properties": { + "daily": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + } + }, + "required": [ + "at" + ], + "type": "object" + } + }, + "required": [ + "daily" + ], + "title": "daily" + }, + { + "properties": { + "weekly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_week": { + "enum": [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday" + ], + "type": "string" + } + }, + "required": [ + "day_of_week", + "at" + ], + "type": "object" + } + }, + "required": [ + "weekly" + ], + "title": "weekly" + }, + { + "properties": { + "monthly": { + "properties": { + "at": { + "default": "00", + "description": "Time specification hh (e.g. 20)", + "maxLength": 2, + "minLength": 2, + "pattern": "([01][0-9]|[2][0-3])", + "type": "string" + }, + "day_of_month": { + "maximum": 31, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "day_of_month", + "at" + ], + "type": "object" + } + }, + "required": [ + "monthly" + ], + "title": "monthly" + } + ], + "type": "object" + }, + "url": { + "default": "http://", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "url", + "recurring" + ], + "type": "object" + } + }, + "title": "imei" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b82539db-10d5-4d2e-b0ce-ee01e999c05f", + "created": "2026-08-28T22:10:34.256Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 124, + "reference": "f94aed23-36e4-44b1-bd31-32760917e19c", + "type": "workflow", + "folder": "/ExternalDynamicLists", + "document": { + "name": "Get an External Dynamic List", + "description": "Get an External Dynamic List", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-external-dynamic-lists-id", + "canvasName": "get-sse-config-v1-external-dynamic-lists-id", + "summary": "get-sse-config-v1-external-dynamic-lists-id", + "description": "get-sse-config-v1-external-dynamic-lists-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "56e23f04-2a04-4fe7-93c7-9cb917f2cece", + "created": "2026-08-28T22:10:34.208Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 125, + "reference": "4b86f28a-f798-4910-b581-53d300fdbb00", + "type": "workflow", + "folder": "/ExternalDynamicLists", + "document": { + "name": "List External Dynamic Lists", + "description": "List External Dynamic Lists", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-external-dynamic-lists", + "canvasName": "get-sse-config-v1-external-dynamic-lists", + "summary": "get-sse-config-v1-external-dynamic-lists", + "description": "get-sse-config-v1-external-dynamic-lists", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "119a75e3-008d-43f7-a8fa-4a35a8356091", + "created": "2026-08-28T22:10:34.085Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 126, + "reference": "2018ef96-dcae-45f6-8835-281e13ad8022", + "type": "workflow", + "folder": "/FileBlockingProfiles", + "document": { + "name": "Create a File Blocking Profile", + "description": "Create a File Blocking Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-file-blocking-profiles", + "canvasName": "post-sse-config-v1-file-blocking-profiles", + "summary": "post-sse-config-v1-file-blocking-profiles", + "description": "post-sse-config-v1-file-blocking-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "default": "alert", + "enum": [ + "alert", + "block", + "continue" + ], + "type": "string" + }, + "application": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "direction": { + "default": "both", + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "action", + "direction", + "application", + "file_type" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "default": "alert", + "enum": [ + "alert", + "block", + "continue" + ], + "type": "string" + }, + "application": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "direction": { + "default": "both", + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "action", + "direction", + "application", + "file_type" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "26101984-5308-40dd-a300-5d35ef90abdd", + "created": "2026-08-28T22:10:34.315Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 127, + "reference": "e55f883c-dea8-4b60-8df8-43067b4cd427", + "type": "workflow", + "folder": "/FileBlockingProfiles", + "document": { + "name": "Delete a File-blocking Profile", + "description": "Delete a File-blocking Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-file-blocking-profiles-id", + "canvasName": "delete-sse-config-v1-file-blocking-profiles-id", + "summary": "delete-sse-config-v1-file-blocking-profiles-id", + "description": "delete-sse-config-v1-file-blocking-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ff1d44e9-24e2-4756-9835-41cf2f565c9c", + "created": "2026-08-28T22:10:34.342Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 128, + "reference": "35d47640-6bc4-47cf-82fa-24d818248978", + "type": "workflow", + "folder": "/FileBlockingProfiles", + "document": { + "name": "Edit a File-blocking Profile", + "description": "Edit a File-blocking Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-file-blocking-profiles-id", + "canvasName": "put-sse-config-v1-file-blocking-profiles-id", + "summary": "put-sse-config-v1-file-blocking-profiles-id", + "description": "put-sse-config-v1-file-blocking-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "default": "alert", + "enum": [ + "alert", + "block", + "continue" + ], + "type": "string" + }, + "application": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "direction": { + "default": "both", + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "action", + "direction", + "application", + "file_type" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "default": "alert", + "enum": [ + "alert", + "block", + "continue" + ], + "type": "string" + }, + "application": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "direction": { + "default": "both", + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "minItems": 1, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "action", + "direction", + "application", + "file_type" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "02f2ad2e-5ced-47c5-8bc1-5d00b5f3eee9", + "created": "2026-08-28T22:10:34.401Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 129, + "reference": "7827dd05-a302-4f06-b779-a81176d8ff22", + "type": "workflow", + "folder": "/FileBlockingProfiles", + "document": { + "name": "Get a File Blocking Profile by ID", + "description": "Get a File Blocking Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-file-blocking-profiles-id", + "canvasName": "get-sse-config-v1-file-blocking-profiles-id", + "summary": "get-sse-config-v1-file-blocking-profiles-id", + "description": "get-sse-config-v1-file-blocking-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2a209d36-7001-4140-8488-6386bd917ff1", + "created": "2026-08-28T22:10:34.373Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 130, + "reference": "a8e6711c-8165-4703-9dce-10e3c614f087", + "type": "workflow", + "folder": "/FileBlockingProfiles", + "document": { + "name": "List File Blocking Profiles", + "description": "List File Blocking Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-file-blocking-profiles", + "canvasName": "get-sse-config-v1-file-blocking-profiles", + "summary": "get-sse-config-v1-file-blocking-profiles", + "description": "get-sse-config-v1-file-blocking-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "59287400-b44d-4ce3-a0d9-f46243672b57", + "created": "2026-08-28T22:10:34.287Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 131, + "reference": "71a852df-6b05-444e-8cdf-799747882b5f", + "type": "workflow", + "folder": "/HIPObjects", + "document": { + "name": "Create a HIP Object", + "description": "Create a HIP Object", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-hip-objects", + "canvasName": "post-sse-config-v1-hip-objects", + "summary": "post-sse-config-v1-hip-objects", + "description": "post-sse-config-v1-hip-objects", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "anti_malware": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_scan_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "product_version": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + }, + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "real_time_protection": { + "description": "real time protection", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "virdef_version": { + "oneOf": [ + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_attributes": { + "items": { + "properties": { + "name": { + "description": "Attribute Name", + "type": "string" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "certificate_profile": { + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "certificate-profile", + "subPath": "name" + } + ] + } + }, + "type": "object" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "description": "Key name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Plist does not exist", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "properties": { + "name": { + "description": "Process Name", + "maxLength": 1023, + "type": "string" + }, + "running": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "description": "Registry key default value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Key does not exist or match specified value data", + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "description": "Registry value name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value_data": { + "description": "Registry value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "data_loss_prevention": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "disk_backup": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_backup_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encryption": { + "properties": { + "criteria": { + "description": "Encryption locations", + "properties": { + "encrypted_locations": { + "items": { + "properties": { + "encryption_state": { + "oneOf": [ + { + "properties": { + "is": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is_not" + } + ], + "type": "object" + }, + "name": { + "description": "Encryption location", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "firewall": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "host_info": { + "properties": { + "criteria": { + "properties": { + "client_version": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "domain": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_id": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_name": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "managed": { + "description": "If device is managed", + "type": "boolean" + }, + "os": { + "oneOf": [ + { + "properties": { + "contains": { + "oneOf": [ + { + "properties": { + "Microsoft": { + "default": "All", + "description": "Microsoft vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Microsoft" + ], + "title": "Microsoft" + }, + { + "properties": { + "Apple": { + "default": "All", + "description": "Apple vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Apple" + ], + "title": "Apple" + }, + { + "properties": { + "Google": { + "default": "All", + "description": "Google vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Google" + ], + "title": "Google" + }, + { + "properties": { + "Linux": { + "default": "All", + "description": "Linux vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Linux" + ], + "title": "Linux" + }, + { + "properties": { + "Other": { + "description": "Other vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Other" + ], + "title": "Other" + } + ], + "type": "object" + } + }, + "required": [ + "contains" + ], + "title": "contains" + } + ], + "type": "object" + }, + "serial_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mobile_device": { + "properties": { + "criteria": { + "properties": { + "applications": { + "properties": { + "has_malware": { + "oneOf": [ + { + "properties": { + "no": { + "type": "object" + } + }, + "title": "no" + }, + { + "properties": { + "yes": { + "properties": { + "excludes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "yes" + } + ], + "type": "object" + }, + "has_unmanaged_app": { + "description": "Has apps that are not managed", + "type": "boolean" + }, + "includes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encrypted": { + "description": "If device's disk is encrypted", + "type": "boolean" + }, + "imei": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "jailbroken": { + "description": "If device is by rooted/jailbroken", + "type": "boolean" + }, + "last_checkin_time": { + "oneOf": [ + { + "properties": { + "within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "model": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "passcode_set": { + "description": "If device's passcode is present", + "type": "boolean" + }, + "phone_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "tag": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "network_info": { + "properties": { + "criteria": { + "properties": { + "network": { + "oneOf": [ + { + "properties": { + "is": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "ethernet": { + "type": "object" + } + }, + "title": "ethernet" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "patch_management": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": "yes", + "description": "Is Installed", + "type": "boolean" + }, + "missing_patches": { + "properties": { + "check": { + "default": "has-any", + "enum": [ + "has-any", + "has-none", + "has-all" + ], + "type": "string" + }, + "patches": { + "items": { + "description": "patch security-bulletin-id or kb-article-id", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + }, + "severity": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + } + ], + "type": "object" + } + }, + "required": [ + "check" + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": "no", + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "anti_malware": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_scan_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "product_version": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + }, + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "real_time_protection": { + "description": "real time protection", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "virdef_version": { + "oneOf": [ + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_attributes": { + "items": { + "properties": { + "name": { + "description": "Attribute Name", + "type": "string" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "certificate_profile": { + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "certificate-profile", + "subPath": "name" + } + ] + } + }, + "type": "object" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "description": "Key name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Plist does not exist", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "properties": { + "name": { + "description": "Process Name", + "maxLength": 1023, + "type": "string" + }, + "running": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "description": "Registry key default value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Key does not exist or match specified value data", + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "description": "Registry value name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value_data": { + "description": "Registry value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "data_loss_prevention": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "disk_backup": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_backup_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encryption": { + "properties": { + "criteria": { + "description": "Encryption locations", + "properties": { + "encrypted_locations": { + "items": { + "properties": { + "encryption_state": { + "oneOf": [ + { + "properties": { + "is": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is_not" + } + ], + "type": "object" + }, + "name": { + "description": "Encryption location", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "firewall": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "host_info": { + "properties": { + "criteria": { + "properties": { + "client_version": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "domain": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_id": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_name": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "managed": { + "description": "If device is managed", + "type": "boolean" + }, + "os": { + "oneOf": [ + { + "properties": { + "contains": { + "oneOf": [ + { + "properties": { + "Microsoft": { + "default": "All", + "description": "Microsoft vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Microsoft" + ], + "title": "Microsoft" + }, + { + "properties": { + "Apple": { + "default": "All", + "description": "Apple vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Apple" + ], + "title": "Apple" + }, + { + "properties": { + "Google": { + "default": "All", + "description": "Google vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Google" + ], + "title": "Google" + }, + { + "properties": { + "Linux": { + "default": "All", + "description": "Linux vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Linux" + ], + "title": "Linux" + }, + { + "properties": { + "Other": { + "description": "Other vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Other" + ], + "title": "Other" + } + ], + "type": "object" + } + }, + "required": [ + "contains" + ], + "title": "contains" + } + ], + "type": "object" + }, + "serial_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mobile_device": { + "properties": { + "criteria": { + "properties": { + "applications": { + "properties": { + "has_malware": { + "oneOf": [ + { + "properties": { + "no": { + "type": "object" + } + }, + "title": "no" + }, + { + "properties": { + "yes": { + "properties": { + "excludes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "yes" + } + ], + "type": "object" + }, + "has_unmanaged_app": { + "description": "Has apps that are not managed", + "type": "boolean" + }, + "includes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encrypted": { + "description": "If device's disk is encrypted", + "type": "boolean" + }, + "imei": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "jailbroken": { + "description": "If device is by rooted/jailbroken", + "type": "boolean" + }, + "last_checkin_time": { + "oneOf": [ + { + "properties": { + "within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "model": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "passcode_set": { + "description": "If device's passcode is present", + "type": "boolean" + }, + "phone_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "tag": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "network_info": { + "properties": { + "criteria": { + "properties": { + "network": { + "oneOf": [ + { + "properties": { + "is": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "ethernet": { + "type": "object" + } + }, + "title": "ethernet" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "patch_management": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": "yes", + "description": "Is Installed", + "type": "boolean" + }, + "missing_patches": { + "properties": { + "check": { + "default": "has-any", + "enum": [ + "has-any", + "has-none", + "has-all" + ], + "type": "string" + }, + "patches": { + "items": { + "description": "patch security-bulletin-id or kb-article-id", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + }, + "severity": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + } + ], + "type": "object" + } + }, + "required": [ + "check" + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": "no", + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "4e9a217f-a270-49ff-b8fa-df3166c02336", + "created": "2026-08-28T22:10:34.488Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 132, + "reference": "b417660b-4e9f-4bf9-bb15-7585dc4e8f0f", + "type": "workflow", + "folder": "/HIPObjects", + "document": { + "name": "Delete a HIP Object", + "description": "Delete a HIP Object", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-hip-objects-id", + "canvasName": "delete-sse-config-v1-hip-objects-id", + "summary": "delete-sse-config-v1-hip-objects-id", + "description": "delete-sse-config-v1-hip-objects-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b05f38a6-4c4b-4608-b091-bf2a47949199", + "created": "2026-08-28T22:10:34.524Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 133, + "reference": "a50fa5d9-6187-4f30-9e47-c6824d2110d5", + "type": "workflow", + "folder": "/HIPObjects", + "document": { + "name": "Edit a HIP Object", + "description": "Edit a HIP Object", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-hip-objects-id", + "canvasName": "put-sse-config-v1-hip-objects-id", + "summary": "put-sse-config-v1-hip-objects-id", + "description": "put-sse-config-v1-hip-objects-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "anti_malware": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_scan_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "product_version": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + }, + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "real_time_protection": { + "description": "real time protection", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "virdef_version": { + "oneOf": [ + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_attributes": { + "items": { + "properties": { + "name": { + "description": "Attribute Name", + "type": "string" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "certificate_profile": { + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "certificate-profile", + "subPath": "name" + } + ] + } + }, + "type": "object" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "description": "Key name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Plist does not exist", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "properties": { + "name": { + "description": "Process Name", + "maxLength": 1023, + "type": "string" + }, + "running": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "description": "Registry key default value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Key does not exist or match specified value data", + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "description": "Registry value name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value_data": { + "description": "Registry value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "data_loss_prevention": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "disk_backup": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_backup_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encryption": { + "properties": { + "criteria": { + "description": "Encryption locations", + "properties": { + "encrypted_locations": { + "items": { + "properties": { + "encryption_state": { + "oneOf": [ + { + "properties": { + "is": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is_not" + } + ], + "type": "object" + }, + "name": { + "description": "Encryption location", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "firewall": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "host_info": { + "properties": { + "criteria": { + "properties": { + "client_version": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "domain": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_id": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_name": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "managed": { + "description": "If device is managed", + "type": "boolean" + }, + "os": { + "oneOf": [ + { + "properties": { + "contains": { + "oneOf": [ + { + "properties": { + "Microsoft": { + "default": "All", + "description": "Microsoft vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Microsoft" + ], + "title": "Microsoft" + }, + { + "properties": { + "Apple": { + "default": "All", + "description": "Apple vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Apple" + ], + "title": "Apple" + }, + { + "properties": { + "Google": { + "default": "All", + "description": "Google vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Google" + ], + "title": "Google" + }, + { + "properties": { + "Linux": { + "default": "All", + "description": "Linux vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Linux" + ], + "title": "Linux" + }, + { + "properties": { + "Other": { + "description": "Other vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Other" + ], + "title": "Other" + } + ], + "type": "object" + } + }, + "required": [ + "contains" + ], + "title": "contains" + } + ], + "type": "object" + }, + "serial_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mobile_device": { + "properties": { + "criteria": { + "properties": { + "applications": { + "properties": { + "has_malware": { + "oneOf": [ + { + "properties": { + "no": { + "type": "object" + } + }, + "title": "no" + }, + { + "properties": { + "yes": { + "properties": { + "excludes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "yes" + } + ], + "type": "object" + }, + "has_unmanaged_app": { + "description": "Has apps that are not managed", + "type": "boolean" + }, + "includes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encrypted": { + "description": "If device's disk is encrypted", + "type": "boolean" + }, + "imei": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "jailbroken": { + "description": "If device is by rooted/jailbroken", + "type": "boolean" + }, + "last_checkin_time": { + "oneOf": [ + { + "properties": { + "within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "model": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "passcode_set": { + "description": "If device's passcode is present", + "type": "boolean" + }, + "phone_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "tag": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "network_info": { + "properties": { + "criteria": { + "properties": { + "network": { + "oneOf": [ + { + "properties": { + "is": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "ethernet": { + "type": "object" + } + }, + "title": "ethernet" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "patch_management": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": "yes", + "description": "Is Installed", + "type": "boolean" + }, + "missing_patches": { + "properties": { + "check": { + "default": "has-any", + "enum": [ + "has-any", + "has-none", + "has-all" + ], + "type": "string" + }, + "patches": { + "items": { + "description": "patch security-bulletin-id or kb-article-id", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + }, + "severity": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + } + ], + "type": "object" + } + }, + "required": [ + "check" + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": "no", + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "anti_malware": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_scan_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "product_version": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + }, + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "versions": { + "default": 1, + "description": "versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "versions" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "real_time_protection": { + "description": "real time protection", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "virdef_version": { + "oneOf": [ + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "versions": { + "default": 1, + "description": "specify versions range", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "versions" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_attributes": { + "items": { + "properties": { + "name": { + "description": "Attribute Name", + "type": "string" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "certificate_profile": { + "description": "Profile for authenticating client certificates", + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "certificate-profile", + "subPath": "name" + } + ] + } + }, + "type": "object" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "description": "Key name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value": { + "description": "Key value", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Plist does not exist", + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "properties": { + "name": { + "description": "Process Name", + "maxLength": 1023, + "type": "string" + }, + "running": { + "default": true, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "description": "Registry key default value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Key does not exist or match specified value data", + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "description": "Registry value name", + "maxLength": 1023, + "type": "string" + }, + "negate": { + "default": false, + "description": "Value does not exist or match specified value data", + "type": "boolean" + }, + "value_data": { + "description": "Registry value data", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "data_loss_prevention": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "disk_backup": { + "properties": { + "criteria": { + "properties": { + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + }, + "last_backup_time": { + "oneOf": [ + { + "properties": { + "not_available": { + "type": "object" + } + }, + "required": [ + "not_available" + ], + "title": "not_available" + }, + { + "properties": { + "within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "oneOf": [ + { + "properties": { + "days": { + "default": 1, + "description": "specify time in days", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "days" + }, + { + "properties": { + "hours": { + "default": 24, + "description": "specify time in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours" + } + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encryption": { + "properties": { + "criteria": { + "description": "Encryption locations", + "properties": { + "encrypted_locations": { + "items": { + "properties": { + "encryption_state": { + "oneOf": [ + { + "properties": { + "is": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "default": "encrypted", + "enum": [ + "encrypted", + "unencrypted", + "partial", + "unknown" + ], + "type": "string" + } + }, + "title": "is_not" + } + ], + "type": "object" + }, + "name": { + "description": "Encryption location", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "firewall": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": true, + "description": "Is Installed", + "type": "boolean" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": false, + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "description": "Product name", + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "host_info": { + "properties": { + "criteria": { + "properties": { + "client_version": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "domain": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_id": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "host_name": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "managed": { + "description": "If device is managed", + "type": "boolean" + }, + "os": { + "oneOf": [ + { + "properties": { + "contains": { + "oneOf": [ + { + "properties": { + "Microsoft": { + "default": "All", + "description": "Microsoft vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Microsoft" + ], + "title": "Microsoft" + }, + { + "properties": { + "Apple": { + "default": "All", + "description": "Apple vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Apple" + ], + "title": "Apple" + }, + { + "properties": { + "Google": { + "default": "All", + "description": "Google vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Google" + ], + "title": "Google" + }, + { + "properties": { + "Linux": { + "default": "All", + "description": "Linux vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Linux" + ], + "title": "Linux" + }, + { + "properties": { + "Other": { + "description": "Other vendor", + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "Other" + ], + "title": "Other" + } + ], + "type": "object" + } + }, + "required": [ + "contains" + ], + "title": "contains" + } + ], + "type": "object" + }, + "serial_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "criteria" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mobile_device": { + "properties": { + "criteria": { + "properties": { + "applications": { + "properties": { + "has_malware": { + "oneOf": [ + { + "properties": { + "no": { + "type": "object" + } + }, + "title": "no" + }, + { + "properties": { + "yes": { + "properties": { + "excludes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "yes" + } + ], + "type": "object" + }, + "has_unmanaged_app": { + "description": "Has apps that are not managed", + "type": "boolean" + }, + "includes": { + "items": { + "properties": { + "hash": { + "description": "application hash", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "package": { + "description": "application package name", + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "disk_encrypted": { + "description": "If device's disk is encrypted", + "type": "boolean" + }, + "imei": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "jailbroken": { + "description": "If device is by rooted/jailbroken", + "type": "boolean" + }, + "last_checkin_time": { + "oneOf": [ + { + "properties": { + "within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "within" + ], + "title": "within" + }, + { + "properties": { + "not_within": { + "properties": { + "days": { + "default": 30, + "description": "specify time in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "days" + ], + "type": "object" + } + }, + "required": [ + "not_within" + ], + "title": "not_within" + } + ], + "type": "object" + }, + "model": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "passcode_set": { + "description": "If device's passcode is present", + "type": "boolean" + }, + "phone_number": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + }, + "tag": { + "oneOf": [ + { + "properties": { + "contains": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "contains" + ], + "title": "contains" + }, + { + "properties": { + "is": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "network_info": { + "properties": { + "criteria": { + "properties": { + "network": { + "oneOf": [ + { + "properties": { + "is": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is" + }, + { + "properties": { + "is_not": { + "oneOf": [ + { + "properties": { + "wifi": { + "properties": { + "ssid": { + "description": "SSID", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "wifi" + }, + { + "properties": { + "mobile": { + "properties": { + "carrier": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + } + }, + "title": "mobile" + }, + { + "properties": { + "ethernet": { + "type": "object" + } + }, + "title": "ethernet" + }, + { + "properties": { + "unknown": { + "type": "object" + } + }, + "title": "unknown" + } + ], + "type": "object" + } + }, + "title": "is_not" + } + ], + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "patch_management": { + "properties": { + "criteria": { + "properties": { + "is_enabled": { + "description": "is enabled", + "enum": [ + "no", + "yes", + "not-available" + ], + "type": "string" + }, + "is_installed": { + "default": "yes", + "description": "Is Installed", + "type": "boolean" + }, + "missing_patches": { + "properties": { + "check": { + "default": "has-any", + "enum": [ + "has-any", + "has-none", + "has-all" + ], + "type": "string" + }, + "patches": { + "items": { + "description": "patch security-bulletin-id or kb-article-id", + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + }, + "severity": { + "oneOf": [ + { + "properties": { + "greater_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_equal" + ], + "title": "greater_equal" + }, + { + "properties": { + "greater_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "greater_than" + ], + "title": "greater_than" + }, + { + "properties": { + "is": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is" + ], + "title": "is" + }, + { + "properties": { + "is_not": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "is_not" + ], + "title": "is_not" + }, + { + "properties": { + "less_equal": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_equal" + ], + "title": "less_equal" + }, + { + "properties": { + "less_than": { + "maximum": 100000, + "minimum": 0, + "type": "integer" + } + }, + "required": [ + "less_than" + ], + "title": "less_than" + } + ], + "type": "object" + } + }, + "required": [ + "check" + ], + "type": "object" + } + }, + "type": "object" + }, + "exclude_vendor": { + "default": "no", + "type": "boolean" + }, + "vendor": { + "description": "Vendor name", + "items": { + "properties": { + "name": { + "maxLength": 103, + "type": "string" + }, + "product": { + "description": "Product name", + "items": { + "maxLength": 1023, + "pattern": ".*", + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "0460c6bb-56b8-4c9c-91ea-f01d6129f0eb", + "created": "2026-08-28T22:10:34.611Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 134, + "reference": "0703d7df-0cb5-4616-bb0a-982c5ea2a339", + "type": "workflow", + "folder": "/HIPObjects", + "document": { + "name": "Get a HIP Object by ID", + "description": "Get a HIP Object by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-hip-objects-id", + "canvasName": "get-sse-config-v1-hip-objects-id", + "summary": "get-sse-config-v1-hip-objects-id", + "description": "get-sse-config-v1-hip-objects-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8ccc9382-7454-4440-802f-95ee741d0979", + "created": "2026-08-28T22:10:34.552Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 135, + "reference": "0a6e9849-2903-4567-b141-a0e54eb3cae8", + "type": "workflow", + "folder": "/HIPObjects", + "document": { + "name": "List HIP Objects", + "description": "List HIP Objects", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-hip-objects", + "canvasName": "get-sse-config-v1-hip-objects", + "summary": "get-sse-config-v1-hip-objects", + "description": "get-sse-config-v1-hip-objects", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "c297bc40-0e80-4a66-991b-8803dfc8d543", + "created": "2026-08-28T22:10:34.428Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 136, + "reference": "12991fd9-e3ce-4036-95f1-28f0c38d1889", + "type": "workflow", + "folder": "/HIPProfiles", + "document": { + "name": "Create a HIP Profile", + "description": "Create a HIP Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-hip-profiles", + "canvasName": "post-sse-config-v1-hip-profiles", + "summary": "post-sse-config-v1-hip-profiles", + "description": "post-sse-config-v1-hip-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "match": { + "maxLength": 2048, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "match" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "match": { + "maxLength": 2048, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "match" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f329c7fc-5778-4264-8acc-35823b0b59c9", + "created": "2026-08-28T22:10:34.675Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 137, + "reference": "2223c154-8c83-4b60-aacc-dc6ecaa76bdc", + "type": "workflow", + "folder": "/HIPProfiles", + "document": { + "name": "Delete a HIP Profile", + "description": "Delete a HIP Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-hip-profiles-id", + "canvasName": "delete-sse-config-v1-hip-profiles-id", + "summary": "delete-sse-config-v1-hip-profiles-id", + "description": "delete-sse-config-v1-hip-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6245699a-be10-4c71-8161-3aa6dde9ebcb", + "created": "2026-08-28T22:10:34.705Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 138, + "reference": "ef043915-cc9b-4fba-8afe-2f2e85a4f6c7", + "type": "workflow", + "folder": "/HIPProfiles", + "document": { + "name": "Edit a HIP Profile", + "description": "Edit a HIP Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-hip-profiles-id", + "canvasName": "put-sse-config-v1-hip-profiles-id", + "summary": "put-sse-config-v1-hip-profiles-id", + "description": "put-sse-config-v1-hip-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "match": { + "maxLength": 2048, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "match" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "match": { + "maxLength": 2048, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "match" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "af8d06d6-37eb-42f2-b958-2d61e0d5720d", + "created": "2026-08-28T22:10:34.759Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 139, + "reference": "034e3a48-834b-4c25-ac1b-24b887bfd4fe", + "type": "workflow", + "folder": "/HIPProfiles", + "document": { + "name": "Get a HIP Profile by ID", + "description": "Get a HIP Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-hip-profiles-id", + "canvasName": "get-sse-config-v1-hip-profiles-id", + "summary": "get-sse-config-v1-hip-profiles-id", + "description": "get-sse-config-v1-hip-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a92ff70c-5879-40b1-80f5-cd5130b2e1d2", + "created": "2026-08-28T22:10:34.733Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 140, + "reference": "8c23e31c-c059-48eb-98c1-ed664979b926", + "type": "workflow", + "folder": "/HIPProfiles", + "document": { + "name": "List HIP Profiles", + "description": "List HIP Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-hip-profiles", + "canvasName": "get-sse-config-v1-hip-profiles", + "summary": "get-sse-config-v1-hip-profiles", + "description": "get-sse-config-v1-hip-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "324635a0-0ecb-471f-a0e3-ad698eb3c667", + "created": "2026-08-28T22:10:34.648Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 141, + "reference": "1b4c02e5-38ad-4de0-a6af-ffd30a9fa6cf", + "type": "workflow", + "folder": "/HTTPHeaderProfiles", + "document": { + "name": "Create an HTTP Header Profile", + "description": "Create an HTTP Header Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-http-header-profiles", + "canvasName": "post-sse-config-v1-http-header-profiles", + "summary": "post-sse-config-v1-http-header-profiles", + "description": "post-sse-config-v1-http-header-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "http_header_insertion": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "items": { + "properties": { + "domains": { + "items": { + "type": "string" + }, + "type": "array" + }, + "headers": { + "items": { + "properties": { + "header": { + "type": "string" + }, + "log": { + "default": false, + "type": "boolean" + }, + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "required": [ + "name", + "header", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "domains", + "headers" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "http_header_insertion": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "items": { + "properties": { + "domains": { + "items": { + "type": "string" + }, + "type": "array" + }, + "headers": { + "items": { + "properties": { + "header": { + "type": "string" + }, + "log": { + "default": false, + "type": "boolean" + }, + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "required": [ + "name", + "header", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "domains", + "headers" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "97545af7-83b3-4486-b647-adb5dc5bdfcb", + "created": "2026-08-28T22:10:34.817Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 142, + "reference": "7478bb34-f93b-4d03-93e8-0768380c9989", + "type": "workflow", + "folder": "/HTTPHeaderProfiles", + "document": { + "name": "Delete an HTTP Header Profile", + "description": "Delete an HTTP Header Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-http-header-profiles-id", + "canvasName": "delete-sse-config-v1-http-header-profiles-id", + "summary": "delete-sse-config-v1-http-header-profiles-id", + "description": "delete-sse-config-v1-http-header-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "494cd372-f112-4459-a45e-275116fd749f", + "created": "2026-08-28T22:10:34.845Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 143, + "reference": "aded4740-6399-4065-9895-ae6b14d60bd4", + "type": "workflow", + "folder": "/HTTPHeaderProfiles", + "document": { + "name": "Edit an HTTP Header Profile", + "description": "Edit an HTTP Header Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-http-header-profiles-id", + "canvasName": "put-sse-config-v1-http-header-profiles-id", + "summary": "put-sse-config-v1-http-header-profiles-id", + "description": "put-sse-config-v1-http-header-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "http_header_insertion": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "items": { + "properties": { + "domains": { + "items": { + "type": "string" + }, + "type": "array" + }, + "headers": { + "items": { + "properties": { + "header": { + "type": "string" + }, + "log": { + "default": false, + "type": "boolean" + }, + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "required": [ + "name", + "header", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "domains", + "headers" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "http_header_insertion": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "items": { + "properties": { + "domains": { + "items": { + "type": "string" + }, + "type": "array" + }, + "headers": { + "items": { + "properties": { + "header": { + "type": "string" + }, + "log": { + "default": false, + "type": "boolean" + }, + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "required": [ + "name", + "header", + "value" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "domains", + "headers" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "634f9728-67f4-4ea6-a497-5ccced5f3f6d", + "created": "2026-08-28T22:10:34.907Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 144, + "reference": "9a164fde-245a-44f2-a179-80d9b0994cc4", + "type": "workflow", + "folder": "/HTTPHeaderProfiles", + "document": { + "name": "Get an HTTP Header Profile by ID", + "description": "Get an HTTP Header Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-http-header-profiles-id", + "canvasName": "get-sse-config-v1-http-header-profiles-id", + "summary": "get-sse-config-v1-http-header-profiles-id", + "description": "get-sse-config-v1-http-header-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "647b5235-39a4-4572-be99-d1f252a336f3", + "created": "2026-08-28T22:10:34.876Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 145, + "reference": "60237dc7-189e-432b-b07e-7e56ffda8716", + "type": "workflow", + "folder": "/HTTPHeaderProfiles", + "document": { + "name": "List HTTP Header Profiles", + "description": "List HTTP Header Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-http-header-profiles", + "canvasName": "get-sse-config-v1-http-header-profiles", + "summary": "get-sse-config-v1-http-header-profiles", + "description": "get-sse-config-v1-http-header-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "731711d0-05bb-412e-b665-e2cb00f9f802", + "created": "2026-08-28T22:10:34.790Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 146, + "reference": "ecbdee05-10e5-40da-81ec-0155a76df071", + "type": "workflow", + "folder": "/IKECryptoProfiles", + "document": { + "name": "Create IKE Crypto Profiles", + "description": "Create IKE Crypto Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-ike-crypto-profiles", + "canvasName": "post-sse-config-v1-ike-crypto-profiles", + "summary": "post-sse-config-v1-ike-crypto-profiles", + "description": "post-sse-config-v1-ike-crypto-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_multiple": { + "default": 0, + "description": "IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled", + "maximum": 50, + "type": "integer" + }, + "dh_group": { + "items": { + "default": "group2", + "description": "Phase-1 DH group", + "enum": [ + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm" + ], + "type": "string" + }, + "type": "array" + }, + "hash": { + "items": { + "default": "sha1", + "description": "Hashing algorithm", + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "encryption", + "hash", + "dh_group" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication_multiple": { + "default": 0, + "description": "IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled", + "maximum": 50, + "type": "integer" + }, + "dh_group": { + "items": { + "default": "group2", + "description": "Phase-1 DH group", + "enum": [ + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm" + ], + "type": "string" + }, + "type": "array" + }, + "hash": { + "items": { + "default": "sha1", + "description": "Hashing algorithm", + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "encryption", + "hash", + "dh_group" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ebe70737-730a-4ff8-99d3-3ea7128bdbed", + "created": "2026-08-28T22:10:34.965Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 147, + "reference": "9d64eaf0-dcf1-4701-9e82-d0cf101adc7a", + "type": "workflow", + "folder": "/IKECryptoProfiles", + "document": { + "name": "Delete an IKE Crypto Profile", + "description": "Delete an IKE Crypto Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-ike-crypto-profiles-id", + "canvasName": "delete-sse-config-v1-ike-crypto-profiles-id", + "summary": "delete-sse-config-v1-ike-crypto-profiles-id", + "description": "delete-sse-config-v1-ike-crypto-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "07441103-f895-4b9f-8f64-11cb42686381", + "created": "2026-08-28T22:10:34.994Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 148, + "reference": "725461a9-03a9-484e-b403-9efe44eafe64", + "type": "workflow", + "folder": "/IKECryptoProfiles", + "document": { + "name": "Edit an IKE Crypto Profile", + "description": "Edit an IKE Crypto Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-ike-crypto-profiles-id", + "canvasName": "put-sse-config-v1-ike-crypto-profiles-id", + "summary": "put-sse-config-v1-ike-crypto-profiles-id", + "description": "put-sse-config-v1-ike-crypto-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_multiple": { + "default": 0, + "description": "IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled", + "maximum": 50, + "type": "integer" + }, + "dh_group": { + "items": { + "default": "group2", + "description": "Phase-1 DH group", + "enum": [ + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm" + ], + "type": "string" + }, + "type": "array" + }, + "hash": { + "items": { + "default": "sha1", + "description": "Hashing algorithm", + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "encryption", + "hash", + "dh_group" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication_multiple": { + "default": 0, + "description": "IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled", + "maximum": 50, + "type": "integer" + }, + "dh_group": { + "items": { + "default": "group2", + "description": "Phase-1 DH group", + "enum": [ + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm" + ], + "type": "string" + }, + "type": "array" + }, + "hash": { + "items": { + "default": "sha1", + "description": "Hashing algorithm", + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "encryption", + "hash", + "dh_group" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "547e56d7-e883-43f9-bb9e-21a9c645efe8", + "created": "2026-08-28T22:10:35.072Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 149, + "reference": "1c7b7c1c-9a1f-40ce-9763-48b497a2a8ba", + "type": "workflow", + "folder": "/IKECryptoProfiles", + "document": { + "name": "Get an IKE Crypto Profile", + "description": "Get an IKE Crypto Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ike-crypto-profiles-id", + "canvasName": "get-sse-config-v1-ike-crypto-profiles-id", + "summary": "get-sse-config-v1-ike-crypto-profiles-id", + "description": "get-sse-config-v1-ike-crypto-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "22be1e4e-325a-486b-ba64-632c96a57bbf", + "created": "2026-08-28T22:10:35.025Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 150, + "reference": "8a2467c6-36f1-496e-a341-81b3028dbd19", + "type": "workflow", + "folder": "/IKECryptoProfiles", + "document": { + "name": "List IKE Crypto Profiles", + "description": "List IKE Crypto Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ike-crypto-profiles", + "canvasName": "get-sse-config-v1-ike-crypto-profiles", + "summary": "get-sse-config-v1-ike-crypto-profiles", + "description": "get-sse-config-v1-ike-crypto-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3a93354c-51f9-4e98-a1e8-d21cf478c0ba", + "created": "2026-08-28T22:10:34.934Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 151, + "reference": "a28f8cdc-0270-4a49-9408-0bc73e203a2b", + "type": "workflow", + "folder": "/IKEGateways", + "document": { + "name": "Create IKE Gateways", + "description": "Create IKE Gateways", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-ike-gateways", + "canvasName": "post-sse-config-v1-ike-gateways", + "summary": "post-sse-config-v1-ike-gateways", + "description": "post-sse-config-v1-ike-gateways", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication": { + "oneOf": [ + { + "properties": { + "pre_shared_key": { + "properties": { + "key": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "pre_shared_key", + "type": "object" + }, + { + "properties": { + "certificate": { + "properties": { + "allow_id_payload_mismatch": { + "type": "boolean" + }, + "certificate_profile": { + "type": "string" + }, + "local_certificate": { + "properties": { + "local_certificate_name": { + "type": "string" + } + }, + "type": "object" + }, + "strict_validation_revocation": { + "type": "boolean" + }, + "use_management_as_source": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "title": "certificate", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_id": { + "properties": { + "id": { + "description": "Local ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[a-zA-Z0-9.-]+)$|^([$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "peer_address": { + "oneOf": [ + { + "properties": { + "ip": { + "description": "peer gateway has static IP address", + "type": "string" + } + }, + "title": "ip", + "type": "object" + }, + { + "properties": { + "fqdn": { + "description": "peer gateway FQDN name", + "maxLength": 255, + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "dynamic": { + "default": {}, + "type": "object" + } + }, + "title": "dynamic", + "type": "object" + } + ], + "type": "object" + }, + "peer_id": { + "properties": { + "id": { + "description": "Peer ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[\\*a-zA-Z0-9.-]+)$|^([\\*$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "enum": [ + "ipaddr", + "keyid", + "fqdn", + "ufqdn" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol": { + "properties": { + "ikev1": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "ikev2": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "version": { + "default": "ikev2-preferred", + "enum": [ + "ikev2-preferred", + "ikev1", + "ikev2" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol_common": { + "properties": { + "fragmentation": { + "properties": { + "enable": { + "default": false, + "enum": [ + false + ], + "type": "boolean" + } + }, + "type": "object" + }, + "nat_traversal": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "passive_mode": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "authentication", + "protocol", + "peer_address" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "authentication": { + "oneOf": [ + { + "properties": { + "pre_shared_key": { + "properties": { + "key": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "pre_shared_key", + "type": "object" + }, + { + "properties": { + "certificate": { + "properties": { + "allow_id_payload_mismatch": { + "type": "boolean" + }, + "certificate_profile": { + "type": "string" + }, + "local_certificate": { + "properties": { + "local_certificate_name": { + "type": "string" + } + }, + "type": "object" + }, + "strict_validation_revocation": { + "type": "boolean" + }, + "use_management_as_source": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "title": "certificate", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_id": { + "properties": { + "id": { + "description": "Local ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[a-zA-Z0-9.-]+)$|^([$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "peer_address": { + "oneOf": [ + { + "properties": { + "ip": { + "description": "peer gateway has static IP address", + "type": "string" + } + }, + "title": "ip", + "type": "object" + }, + { + "properties": { + "fqdn": { + "description": "peer gateway FQDN name", + "maxLength": 255, + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "dynamic": { + "default": {}, + "type": "object" + } + }, + "title": "dynamic", + "type": "object" + } + ], + "type": "object" + }, + "peer_id": { + "properties": { + "id": { + "description": "Peer ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[\\*a-zA-Z0-9.-]+)$|^([\\*$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "enum": [ + "ipaddr", + "keyid", + "fqdn", + "ufqdn" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol": { + "properties": { + "ikev1": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "ikev2": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "version": { + "default": "ikev2-preferred", + "enum": [ + "ikev2-preferred", + "ikev1", + "ikev2" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol_common": { + "properties": { + "fragmentation": { + "properties": { + "enable": { + "default": false, + "enum": [ + false + ], + "type": "boolean" + } + }, + "type": "object" + }, + "nat_traversal": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "passive_mode": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "authentication", + "protocol", + "peer_address" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ca604687-afd4-4b4a-8b7f-fa1af2fac28c", + "created": "2026-08-28T22:10:35.143Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 152, + "reference": "a4d97506-e66b-4667-b289-1972ed1e8067", + "type": "workflow", + "folder": "/IKEGateways", + "document": { + "name": "Delete an IKE Gateway", + "description": "Delete an IKE Gateway", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-ike-gateways-id", + "canvasName": "delete-sse-config-v1-ike-gateways-id", + "summary": "delete-sse-config-v1-ike-gateways-id", + "description": "delete-sse-config-v1-ike-gateways-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b4d6579d-6ded-40e2-9bf7-3b40c8cb936a", + "created": "2026-08-28T22:10:35.171Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 153, + "reference": "83e45354-3556-47a8-887c-30f04b0cb3ea", + "type": "workflow", + "folder": "/IKEGateways", + "document": { + "name": "Edit an IKE Gateway", + "description": "Edit an IKE Gateway", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-ike-gateways-id", + "canvasName": "put-sse-config-v1-ike-gateways-id", + "summary": "put-sse-config-v1-ike-gateways-id", + "description": "put-sse-config-v1-ike-gateways-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication": { + "oneOf": [ + { + "properties": { + "pre_shared_key": { + "properties": { + "key": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "pre_shared_key", + "type": "object" + }, + { + "properties": { + "certificate": { + "properties": { + "allow_id_payload_mismatch": { + "type": "boolean" + }, + "certificate_profile": { + "type": "string" + }, + "local_certificate": { + "properties": { + "local_certificate_name": { + "type": "string" + } + }, + "type": "object" + }, + "strict_validation_revocation": { + "type": "boolean" + }, + "use_management_as_source": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "title": "certificate", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_id": { + "properties": { + "id": { + "description": "Local ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[a-zA-Z0-9.-]+)$|^([$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "peer_address": { + "oneOf": [ + { + "properties": { + "ip": { + "description": "peer gateway has static IP address", + "type": "string" + } + }, + "title": "ip", + "type": "object" + }, + { + "properties": { + "fqdn": { + "description": "peer gateway FQDN name", + "maxLength": 255, + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "dynamic": { + "default": {}, + "type": "object" + } + }, + "title": "dynamic", + "type": "object" + } + ], + "type": "object" + }, + "peer_id": { + "properties": { + "id": { + "description": "Peer ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[\\*a-zA-Z0-9.-]+)$|^([\\*$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "enum": [ + "ipaddr", + "keyid", + "fqdn", + "ufqdn" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol": { + "properties": { + "ikev1": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "ikev2": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "version": { + "default": "ikev2-preferred", + "enum": [ + "ikev2-preferred", + "ikev1", + "ikev2" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol_common": { + "properties": { + "fragmentation": { + "properties": { + "enable": { + "default": false, + "enum": [ + false + ], + "type": "boolean" + } + }, + "type": "object" + }, + "nat_traversal": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "passive_mode": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "authentication", + "protocol", + "peer_address" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "authentication": { + "oneOf": [ + { + "properties": { + "pre_shared_key": { + "properties": { + "key": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "pre_shared_key", + "type": "object" + }, + { + "properties": { + "certificate": { + "properties": { + "allow_id_payload_mismatch": { + "type": "boolean" + }, + "certificate_profile": { + "type": "string" + }, + "local_certificate": { + "properties": { + "local_certificate_name": { + "type": "string" + } + }, + "type": "object" + }, + "strict_validation_revocation": { + "type": "boolean" + }, + "use_management_as_source": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "title": "certificate", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_id": { + "properties": { + "id": { + "description": "Local ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[a-zA-Z0-9.-]+)$|^([$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "peer_address": { + "oneOf": [ + { + "properties": { + "ip": { + "description": "peer gateway has static IP address", + "type": "string" + } + }, + "title": "ip", + "type": "object" + }, + { + "properties": { + "fqdn": { + "description": "peer gateway FQDN name", + "maxLength": 255, + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "dynamic": { + "default": {}, + "type": "object" + } + }, + "title": "dynamic", + "type": "object" + } + ], + "type": "object" + }, + "peer_id": { + "properties": { + "id": { + "description": "Peer ID string", + "maxLength": 1024, + "minLength": 1, + "pattern": "^(.+\\@[\\*a-zA-Z0-9.-]+)$|^([\\*$a-zA-Z0-9_:.-]+)$|^(([[:xdigit:]][[:xdigit:]])+)$|^([a-zA-Z0-9.]+=(\\\\,|[^,])+[, ]+)*([a-zA-Z0-9.]+=(\\\\,|[^,])+)$", + "type": "string" + }, + "type": { + "enum": [ + "ipaddr", + "keyid", + "fqdn", + "ufqdn" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol": { + "properties": { + "ikev1": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "ikev2": { + "properties": { + "dpd": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "ike_crypto_profile": { + "type": "string" + } + }, + "type": "object" + }, + "version": { + "default": "ikev2-preferred", + "enum": [ + "ikev2-preferred", + "ikev1", + "ikev2" + ], + "type": "string" + } + }, + "type": "object" + }, + "protocol_common": { + "properties": { + "fragmentation": { + "properties": { + "enable": { + "default": false, + "enum": [ + false + ], + "type": "boolean" + } + }, + "type": "object" + }, + "nat_traversal": { + "properties": { + "enable": { + "type": "boolean" + } + }, + "type": "object" + }, + "passive_mode": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "authentication", + "protocol", + "peer_address" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "c607545a-a503-4d95-9242-5abd444b1157", + "created": "2026-08-28T22:10:35.230Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 154, + "reference": "88c69447-7eb9-4464-b71d-60587f07faa5", + "type": "workflow", + "folder": "/IKEGateways", + "document": { + "name": "Get an IKE Gateway", + "description": "Get an IKE Gateway", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ike-gateways-id", + "canvasName": "get-sse-config-v1-ike-gateways-id", + "summary": "get-sse-config-v1-ike-gateways-id", + "description": "get-sse-config-v1-ike-gateways-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "50ef4807-437a-4933-9868-e4560af0987d", + "created": "2026-08-28T22:10:35.198Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 155, + "reference": "d0624cd5-63ce-41c0-88c5-29f3363d8587", + "type": "workflow", + "folder": "/IKEGateways", + "document": { + "name": "List IKE Gateways", + "description": "List IKE Gateways", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ike-gateways", + "canvasName": "get-sse-config-v1-ike-gateways", + "summary": "get-sse-config-v1-ike-gateways", + "description": "get-sse-config-v1-ike-gateways", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "92b7dfab-bace-4c5b-9264-acb7f139bd31", + "created": "2026-08-28T22:10:35.113Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 156, + "reference": "edd0909f-6ec1-4e09-bd22-c2ea6dcfc612", + "type": "workflow", + "folder": "/InternalDNSServers", + "document": { + "name": "Create an Internal DNS Server", + "description": "Create an Internal DNS Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-internal-dns-servers", + "canvasName": "post-sse-config-v1-internal-dns-servers", + "summary": "post-sse-config-v1-internal-dns-servers", + "description": "post-sse-config-v1-internal-dns-servers", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "domain_name": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "required": [ + "name", + "domain_name", + "primary" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "domain_name": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "required": [ + "name", + "domain_name", + "primary" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "10cf88a6-42f3-4a49-b0c8-2e24b4cf75eb", + "created": "2026-08-28T22:10:35.289Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 157, + "reference": "666580c6-86d1-4a95-88cb-2c9d907df4a5", + "type": "workflow", + "folder": "/InternalDNSServers", + "document": { + "name": "Delete an Internal DNS Server", + "description": "Delete an Internal DNS Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-internal-dns-servers-id", + "canvasName": "delete-sse-config-v1-internal-dns-servers-id", + "summary": "delete-sse-config-v1-internal-dns-servers-id", + "description": "delete-sse-config-v1-internal-dns-servers-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "87de2ef2-36a0-45a7-bde5-e55919746381", + "created": "2026-08-28T22:10:35.318Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 158, + "reference": "4652adc3-e066-4efa-bc29-6fc295faab6e", + "type": "workflow", + "folder": "/InternalDNSServers", + "document": { + "name": "Edit an Internal DNS Server", + "description": "Edit an Internal DNS Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-internal-dns-servers-id", + "canvasName": "put-sse-config-v1-internal-dns-servers-id", + "summary": "put-sse-config-v1-internal-dns-servers-id", + "description": "put-sse-config-v1-internal-dns-servers-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "domain_name": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "required": [ + "name", + "domain_name", + "primary" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "domain_name": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "required": [ + "name", + "domain_name", + "primary" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "68e8199c-b0ed-4719-8e4a-4636b50215a9", + "created": "2026-08-28T22:10:35.374Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 159, + "reference": "5fa65edc-b391-4e69-b765-ce76f6000e82", + "type": "workflow", + "folder": "/InternalDNSServers", + "document": { + "name": "Get an Internal DNS Server", + "description": "Get an Internal DNS Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-internal-dns-servers-id", + "canvasName": "get-sse-config-v1-internal-dns-servers-id", + "summary": "get-sse-config-v1-internal-dns-servers-id", + "description": "get-sse-config-v1-internal-dns-servers-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9770b7ec-b390-4706-90da-7d3c25e04db9", + "created": "2026-08-28T22:10:35.346Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 160, + "reference": "3b69b36b-e3e8-4d29-85b7-5f352e8653d2", + "type": "workflow", + "folder": "/InternalDNSServers", + "document": { + "name": "List Internal DNS Servers", + "description": "List Internal DNS Servers", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-internal-dns-servers", + "canvasName": "get-sse-config-v1-internal-dns-servers", + "summary": "get-sse-config-v1-internal-dns-servers", + "description": "get-sse-config-v1-internal-dns-servers", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2805bcf4-504a-494c-bf26-7951811b08aa", + "created": "2026-08-28T22:10:35.259Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 161, + "reference": "a6e56019-1278-4222-8627-412a680f716a", + "type": "workflow", + "folder": "/IPSecCryptoProfiles", + "document": { + "name": "Create IPSec Crypto Profiles", + "description": "Create IPSec Crypto Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-ipsec-crypto-profiles", + "canvasName": "post-sse-config-v1-ipsec-crypto-profiles", + "summary": "post-sse-config-v1-ipsec-crypto-profiles", + "description": "post-sse-config-v1-ipsec-crypto-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "esp": { + "properties": { + "authentication": { + "description": "Authentication algorithm", + "items": { + "default": "sha1", + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm", + "null" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "encryption", + "authentication" + ], + "type": "object" + } + }, + "required": [ + "esp" + ], + "title": "esp", + "type": "object" + }, + { + "properties": { + "ah": { + "properties": { + "authentication": { + "items": { + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "authentication" + ], + "type": "object" + } + }, + "required": [ + "ah" + ], + "title": "ah", + "type": "object" + } + ], + "properties": { + "dh_group": { + "default": "group2", + "description": "phase-2 DH group (PFS DH group)", + "enum": [ + "no-pfs", + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifesize": { + "oneOf": [ + { + "properties": { + "kb": { + "description": "specify lifesize in kilobytes(KB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "kb", + "type": "object" + }, + { + "properties": { + "mb": { + "description": "specify lifesize in megabytes(MB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "mb", + "type": "object" + }, + { + "properties": { + "gb": { + "description": "specify lifesize in gigabytes(GB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "gb", + "type": "object" + }, + { + "properties": { + "tb": { + "description": "specify lifesize in terabytes(TB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "tb", + "type": "object" + } + ], + "type": "object" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "lifetime" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "esp": { + "properties": { + "authentication": { + "description": "Authentication algorithm", + "items": { + "default": "sha1", + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm", + "null" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "encryption", + "authentication" + ], + "type": "object" + } + }, + "required": [ + "esp" + ], + "title": "esp", + "type": "object" + }, + { + "properties": { + "ah": { + "properties": { + "authentication": { + "items": { + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "authentication" + ], + "type": "object" + } + }, + "required": [ + "ah" + ], + "title": "ah", + "type": "object" + } + ], + "properties": { + "dh_group": { + "default": "group2", + "description": "phase-2 DH group (PFS DH group)", + "enum": [ + "no-pfs", + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifesize": { + "oneOf": [ + { + "properties": { + "kb": { + "description": "specify lifesize in kilobytes(KB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "kb", + "type": "object" + }, + { + "properties": { + "mb": { + "description": "specify lifesize in megabytes(MB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "mb", + "type": "object" + }, + { + "properties": { + "gb": { + "description": "specify lifesize in gigabytes(GB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "gb", + "type": "object" + }, + { + "properties": { + "tb": { + "description": "specify lifesize in terabytes(TB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "tb", + "type": "object" + } + ], + "type": "object" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "lifetime" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "47e6e004-f3e9-4209-9556-87278e343c7e", + "created": "2026-08-28T22:10:35.438Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 162, + "reference": "85efd258-41e7-437b-b88b-95794046d7b2", + "type": "workflow", + "folder": "/IPSecCryptoProfiles", + "document": { + "name": "Delete an IPSec Crypto Profile", + "description": "Delete an IPSec Crypto Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-ipsec-crypto-profiles-id", + "canvasName": "delete-sse-config-v1-ipsec-crypto-profiles-id", + "summary": "delete-sse-config-v1-ipsec-crypto-profiles-id", + "description": "delete-sse-config-v1-ipsec-crypto-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "af077584-6d1e-4803-adc2-c8624c65db66", + "created": "2026-08-28T22:10:35.464Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 163, + "reference": "0b24ed1f-8751-4f5a-ad83-cd202a4853b6", + "type": "workflow", + "folder": "/IPSecCryptoProfiles", + "document": { + "name": "Edit an IPSec Crypto Profile", + "description": "Edit an IPSec Crypto Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-ipsec-crypto-profiles-id", + "canvasName": "put-sse-config-v1-ipsec-crypto-profiles-id", + "summary": "put-sse-config-v1-ipsec-crypto-profiles-id", + "description": "put-sse-config-v1-ipsec-crypto-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "esp": { + "properties": { + "authentication": { + "description": "Authentication algorithm", + "items": { + "default": "sha1", + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm", + "null" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "encryption", + "authentication" + ], + "type": "object" + } + }, + "required": [ + "esp" + ], + "title": "esp", + "type": "object" + }, + { + "properties": { + "ah": { + "properties": { + "authentication": { + "items": { + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "authentication" + ], + "type": "object" + } + }, + "required": [ + "ah" + ], + "title": "ah", + "type": "object" + } + ], + "properties": { + "dh_group": { + "default": "group2", + "description": "phase-2 DH group (PFS DH group)", + "enum": [ + "no-pfs", + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifesize": { + "oneOf": [ + { + "properties": { + "kb": { + "description": "specify lifesize in kilobytes(KB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "kb", + "type": "object" + }, + { + "properties": { + "mb": { + "description": "specify lifesize in megabytes(MB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "mb", + "type": "object" + }, + { + "properties": { + "gb": { + "description": "specify lifesize in gigabytes(GB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "gb", + "type": "object" + }, + { + "properties": { + "tb": { + "description": "specify lifesize in terabytes(TB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "tb", + "type": "object" + } + ], + "type": "object" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "lifetime" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "oneOf": [ + { + "properties": { + "esp": { + "properties": { + "authentication": { + "description": "Authentication algorithm", + "items": { + "default": "sha1", + "type": "string" + }, + "type": "array" + }, + "encryption": { + "description": "Encryption algorithm", + "items": { + "default": "aes-128-cbc", + "enum": [ + "des", + "3des", + "aes-128-cbc", + "aes-192-cbc", + "aes-256-cbc", + "aes-128-gcm", + "aes-256-gcm", + "null" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "encryption", + "authentication" + ], + "type": "object" + } + }, + "required": [ + "esp" + ], + "title": "esp", + "type": "object" + }, + { + "properties": { + "ah": { + "properties": { + "authentication": { + "items": { + "enum": [ + "md5", + "sha1", + "sha256", + "sha384", + "sha512" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "authentication" + ], + "type": "object" + } + }, + "required": [ + "ah" + ], + "title": "ah", + "type": "object" + } + ], + "properties": { + "dh_group": { + "default": "group2", + "description": "phase-2 DH group (PFS DH group)", + "enum": [ + "no-pfs", + "group1", + "group2", + "group5", + "group14", + "group19", + "group20" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "lifesize": { + "oneOf": [ + { + "properties": { + "kb": { + "description": "specify lifesize in kilobytes(KB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "kb", + "type": "object" + }, + { + "properties": { + "mb": { + "description": "specify lifesize in megabytes(MB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "mb", + "type": "object" + }, + { + "properties": { + "gb": { + "description": "specify lifesize in gigabytes(GB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "gb", + "type": "object" + }, + { + "properties": { + "tb": { + "description": "specify lifesize in terabytes(TB)", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "tb", + "type": "object" + } + ], + "type": "object" + }, + "lifetime": { + "oneOf": [ + { + "properties": { + "seconds": { + "description": "specify lifetime in seconds", + "maximum": 65535, + "minimum": 180, + "type": "integer" + } + }, + "title": "seconds", + "type": "object" + }, + { + "properties": { + "minutes": { + "description": "specify lifetime in minutes", + "maximum": 65535, + "minimum": 3, + "type": "integer" + } + }, + "title": "minutes", + "type": "object" + }, + { + "properties": { + "hours": { + "description": "specify lifetime in hours", + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "title": "hours", + "type": "object" + }, + { + "properties": { + "days": { + "description": "specify lifetime in days", + "maximum": 365, + "minimum": 1, + "type": "integer" + } + }, + "title": "days", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name", + "lifetime" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f3a6aa78-8d73-4a85-86d3-a29f0174655d", + "created": "2026-08-28T22:10:35.526Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 164, + "reference": "073d6a26-4ae8-4004-a7fa-ba657a11c314", + "type": "workflow", + "folder": "/IPSecCryptoProfiles", + "document": { + "name": "Get an IPSec Crypto Profile", + "description": "Get an IPSec Crypto Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ipsec-crypto-profiles-id", + "canvasName": "get-sse-config-v1-ipsec-crypto-profiles-id", + "summary": "get-sse-config-v1-ipsec-crypto-profiles-id", + "description": "get-sse-config-v1-ipsec-crypto-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ae82a3e3-0d63-431b-a6d0-7eef2f475351", + "created": "2026-08-28T22:10:35.495Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 165, + "reference": "87c491ae-e4e9-4dde-97d1-413ee0a5773a", + "type": "workflow", + "folder": "/IPSecCryptoProfiles", + "document": { + "name": "List IPSec Crypto Profiles", + "description": "List IPSec Crypto Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ipsec-crypto-profiles", + "canvasName": "get-sse-config-v1-ipsec-crypto-profiles", + "summary": "get-sse-config-v1-ipsec-crypto-profiles", + "description": "get-sse-config-v1-ipsec-crypto-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "00aa767e-c18c-411c-8b92-29f727a2c4cd", + "created": "2026-08-28T22:10:35.407Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 166, + "reference": "e0e94223-acf4-45a4-af0a-8ebd1de7cefc", + "type": "workflow", + "folder": "/IPSecTunnels", + "document": { + "name": "Create IPSec Tunnels", + "description": "Create IPSec Tunnels", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-ipsec-tunnels", + "canvasName": "post-sse-config-v1-ipsec-tunnels", + "summary": "post-sse-config-v1-ipsec-tunnels", + "description": "post-sse-config-v1-ipsec-tunnels", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "anti_replay": { + "description": "Enable Anti-Replay check on this tunnel", + "type": "boolean" + }, + "auto_key": { + "properties": { + "ike_gateway": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipsec_crypto_profile": { + "type": "string" + }, + "proxy_id": { + "description": "IPv4 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "proxy_id_v6": { + "description": "IPv6 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "ike_gateway", + "ipsec_crypto_profile" + ], + "type": "object" + }, + "copy_tos": { + "default": false, + "description": "Copy IP TOS bits from inner packet to IPSec packet (not recommended)", + "type": "boolean" + }, + "enable_gre_encapsulation": { + "default": false, + "description": "allow GRE over IPSec", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tunnel_monitor": { + "properties": { + "destination_ip": { + "description": "Destination IP to send ICMP probe", + "type": "string" + }, + "enable": { + "default": true, + "description": "Enable tunnel monitoring on this tunnel", + "type": "boolean" + }, + "proxy_id": { + "description": "Which proxy-id (or proxy-id-v6) the monitoring traffic will use", + "type": "string" + } + }, + "required": [ + "destination_ip" + ], + "type": "object" + } + }, + "required": [ + "name", + "auto_key" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "anti_replay": { + "description": "Enable Anti-Replay check on this tunnel", + "type": "boolean" + }, + "auto_key": { + "properties": { + "ike_gateway": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipsec_crypto_profile": { + "type": "string" + }, + "proxy_id": { + "description": "IPv4 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "proxy_id_v6": { + "description": "IPv6 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "ike_gateway", + "ipsec_crypto_profile" + ], + "type": "object" + }, + "copy_tos": { + "default": false, + "description": "Copy IP TOS bits from inner packet to IPSec packet (not recommended)", + "type": "boolean" + }, + "enable_gre_encapsulation": { + "default": false, + "description": "allow GRE over IPSec", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tunnel_monitor": { + "properties": { + "destination_ip": { + "description": "Destination IP to send ICMP probe", + "type": "string" + }, + "enable": { + "default": true, + "description": "Enable tunnel monitoring on this tunnel", + "type": "boolean" + }, + "proxy_id": { + "description": "Which proxy-id (or proxy-id-v6) the monitoring traffic will use", + "type": "string" + } + }, + "required": [ + "destination_ip" + ], + "type": "object" + } + }, + "required": [ + "name", + "auto_key" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ba4e8675-5104-4ef4-b1f9-968b622e1fc9", + "created": "2026-08-28T22:10:35.602Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 167, + "reference": "a701e89f-d1af-49d1-acee-77ccf7b29c06", + "type": "workflow", + "folder": "/IPSecTunnels", + "document": { + "name": "Delete an IPSec Tunnel", + "description": "Delete an IPSec Tunnel", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-ipsec-tunnels-id", + "canvasName": "delete-sse-config-v1-ipsec-tunnels-id", + "summary": "delete-sse-config-v1-ipsec-tunnels-id", + "description": "delete-sse-config-v1-ipsec-tunnels-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "0a17f041-940a-45ed-8920-c707d67e4dca", + "created": "2026-08-28T22:10:35.662Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 168, + "reference": "536da61f-7ba6-4d3b-a182-3ce9b7ecb2cd", + "type": "workflow", + "folder": "/IPSecTunnels", + "document": { + "name": "Edit an IPSec Tunnel", + "description": "Edit an IPSec Tunnel", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-ipsec-tunnels-id", + "canvasName": "put-sse-config-v1-ipsec-tunnels-id", + "summary": "put-sse-config-v1-ipsec-tunnels-id", + "description": "put-sse-config-v1-ipsec-tunnels-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "anti_replay": { + "description": "Enable Anti-Replay check on this tunnel", + "type": "boolean" + }, + "auto_key": { + "properties": { + "ike_gateway": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipsec_crypto_profile": { + "type": "string" + }, + "proxy_id": { + "description": "IPv4 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "proxy_id_v6": { + "description": "IPv6 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "ike_gateway", + "ipsec_crypto_profile" + ], + "type": "object" + }, + "copy_tos": { + "default": false, + "description": "Copy IP TOS bits from inner packet to IPSec packet (not recommended)", + "type": "boolean" + }, + "enable_gre_encapsulation": { + "default": false, + "description": "allow GRE over IPSec", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tunnel_monitor": { + "properties": { + "destination_ip": { + "description": "Destination IP to send ICMP probe", + "type": "string" + }, + "enable": { + "default": true, + "description": "Enable tunnel monitoring on this tunnel", + "type": "boolean" + }, + "proxy_id": { + "description": "Which proxy-id (or proxy-id-v6) the monitoring traffic will use", + "type": "string" + } + }, + "required": [ + "destination_ip" + ], + "type": "object" + } + }, + "required": [ + "name", + "auto_key" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "anti_replay": { + "description": "Enable Anti-Replay check on this tunnel", + "type": "boolean" + }, + "auto_key": { + "properties": { + "ike_gateway": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipsec_crypto_profile": { + "type": "string" + }, + "proxy_id": { + "description": "IPv4 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "proxy_id_v6": { + "description": "IPv6 type of proxy_id values", + "items": { + "properties": { + "local": { + "type": "string" + }, + "name": { + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "number": { + "description": "IP protocol number", + "maximum": 254, + "minimum": 1, + "type": "integer" + } + }, + "title": "number", + "type": "object" + }, + { + "properties": { + "tcp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "tcp", + "type": "object" + }, + { + "properties": { + "udp": { + "properties": { + "local_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + }, + "remote_port": { + "default": 0, + "maximum": 65535, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + } + }, + "title": "udp", + "type": "object" + } + ], + "type": "object" + }, + "remote": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "ike_gateway", + "ipsec_crypto_profile" + ], + "type": "object" + }, + "copy_tos": { + "default": false, + "description": "Copy IP TOS bits from inner packet to IPSec packet (not recommended)", + "type": "boolean" + }, + "enable_gre_encapsulation": { + "default": false, + "description": "allow GRE over IPSec", + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tunnel_monitor": { + "properties": { + "destination_ip": { + "description": "Destination IP to send ICMP probe", + "type": "string" + }, + "enable": { + "default": true, + "description": "Enable tunnel monitoring on this tunnel", + "type": "boolean" + }, + "proxy_id": { + "description": "Which proxy-id (or proxy-id-v6) the monitoring traffic will use", + "type": "string" + } + }, + "required": [ + "destination_ip" + ], + "type": "object" + } + }, + "required": [ + "name", + "auto_key" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1de9de0f-6707-4feb-bd6b-cd8fc746ee3d", + "created": "2026-08-28T22:10:35.732Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 169, + "reference": "6cc53f41-5ac8-44df-8705-af3a2ac99649", + "type": "workflow", + "folder": "/IPSecTunnels", + "document": { + "name": "Get an IPSec Tunnel", + "description": "Get an IPSec Tunnel", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ipsec-tunnels-id", + "canvasName": "get-sse-config-v1-ipsec-tunnels-id", + "summary": "get-sse-config-v1-ipsec-tunnels-id", + "description": "get-sse-config-v1-ipsec-tunnels-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "572a9af7-1622-4480-90b5-af4ee83b2cb4", + "created": "2026-08-28T22:10:35.694Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 170, + "reference": "e494915d-4b7d-4271-a4cc-87d183e1a3d9", + "type": "workflow", + "folder": "/IPSecTunnels", + "document": { + "name": "List IPSec Tunnels", + "description": "List IPSec Tunnels", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ipsec-tunnels", + "canvasName": "get-sse-config-v1-ipsec-tunnels", + "summary": "get-sse-config-v1-ipsec-tunnels", + "description": "get-sse-config-v1-ipsec-tunnels", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "457bb6c8-690c-4fef-ab0b-103effe10c3e", + "created": "2026-08-28T22:10:35.558Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 171, + "reference": "13a0b087-dc99-4a43-afe2-f2b7c476e620", + "type": "workflow", + "folder": "/KerberosServerProfiles", + "document": { + "name": "Create a Kerberos Server Profile", + "description": "Create a Kerberos Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-kerberos-server-profiles", + "canvasName": "post-sse-config-v1-kerberos-server-profiles", + "summary": "post-sse-config-v1-kerberos-server-profiles", + "description": "post-sse-config-v1-kerberos-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "snippet": "$var.job.snippet", + "device": "$var.job.device", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "server": { + "items": { + "properties": { + "host": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "server" + ], + "type": "object" + } + }, + "required": [ + "folder", + "snippet", + "device", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "server": { + "items": { + "properties": { + "host": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f204aa5d-1c9b-44fc-b881-c9ccfcf8cef7", + "created": "2026-08-28T22:10:35.863Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 172, + "reference": "ce9128f2-4f54-4cce-ad82-26020e110cc6", + "type": "workflow", + "folder": "/KerberosServerProfiles", + "document": { + "name": "Delete a Kerberos Server Profile", + "description": "Delete a Kerberos Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-kerberos-server-profiles-id", + "canvasName": "delete-sse-config-v1-kerberos-server-profiles-id", + "summary": "delete-sse-config-v1-kerberos-server-profiles-id", + "description": "delete-sse-config-v1-kerberos-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ec1aea74-419b-45bb-8bee-7b29bb2a518e", + "created": "2026-08-28T22:10:35.891Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 173, + "reference": "de565fb4-568c-4e35-833c-c5ea0548f518", + "type": "workflow", + "folder": "/KerberosServerProfiles", + "document": { + "name": "Edit a Kerberos Server Profile", + "description": "Edit a Kerberos Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-kerberos-server-profiles-id", + "canvasName": "put-sse-config-v1-kerberos-server-profiles-id", + "summary": "put-sse-config-v1-kerberos-server-profiles-id", + "description": "put-sse-config-v1-kerberos-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "server": { + "items": { + "properties": { + "host": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "server" + ], + "type": "object" + } + }, + "required": [ + "id", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "server": { + "items": { + "properties": { + "host": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "449c9e50-9c49-4be2-a1ad-4d8eff16ce41", + "created": "2026-08-28T22:10:35.952Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 174, + "reference": "ae54a1cb-6040-40f2-942c-30330a11a648", + "type": "workflow", + "folder": "/KerberosServerProfiles", + "document": { + "name": "Get a Kerberos Server Profile", + "description": "Get a Kerberos Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-kerberos-server-profiles-id", + "canvasName": "get-sse-config-v1-kerberos-server-profiles-id", + "summary": "get-sse-config-v1-kerberos-server-profiles-id", + "description": "get-sse-config-v1-kerberos-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8f13583c-dcf4-40e1-9014-7d2bd431ae5f", + "created": "2026-08-28T22:10:35.918Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 175, + "reference": "746a3914-39f5-4c7f-9271-79e06e384d98", + "type": "workflow", + "folder": "/KerberosServerProfiles", + "document": { + "name": "List All Kerberos Server Profiles", + "description": "List All Kerberos Server Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-kerberos-server-profiles", + "canvasName": "get-sse-config-v1-kerberos-server-profiles", + "summary": "get-sse-config-v1-kerberos-server-profiles", + "description": "get-sse-config-v1-kerberos-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "snippet": "$var.job.snippet", + "device": "$var.job.device", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "snippet", + "device", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "aeb179de-bdb1-4754-92d1-40829fe7f0a0", + "created": "2026-08-28T22:10:35.831Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 176, + "reference": "ad9d5d03-8dc2-4b7a-a33d-442901625c40", + "type": "workflow", + "folder": "/LDAPServerProfiles", + "document": { + "name": "Create an LDAP Server Profile", + "description": "Create an LDAP Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-ldap-server-profiles", + "canvasName": "post-sse-config-v1-ldap-server-profiles", + "summary": "post-sse-config-v1-ldap-server-profiles", + "description": "post-sse-config-v1-ldap-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "base": { + "maxLength": 255, + "type": "string" + }, + "bind_dn": { + "maxLength": 255, + "type": "string" + }, + "bind_password": { + "maxLength": 121, + "type": "string" + }, + "bind_timelimit": { + "maximum": 60, + "minimum": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ldap_type": { + "enum": [ + "active-directory", + "e-directory", + "sun", + "other" + ], + "type": "string" + }, + "retry_interval": { + "type": "integer" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + }, + "ssl": { + "type": "boolean" + }, + "timelimit": { + "type": "integer" + }, + "verify_server_certificate": { + "type": "boolean" + } + }, + "required": [ + "server" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "base": { + "maxLength": 255, + "type": "string" + }, + "bind_dn": { + "maxLength": 255, + "type": "string" + }, + "bind_password": { + "maxLength": 121, + "type": "string" + }, + "bind_timelimit": { + "maximum": 60, + "minimum": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ldap_type": { + "enum": [ + "active-directory", + "e-directory", + "sun", + "other" + ], + "type": "string" + }, + "retry_interval": { + "type": "integer" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + }, + "ssl": { + "type": "boolean" + }, + "timelimit": { + "type": "integer" + }, + "verify_server_certificate": { + "type": "boolean" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "23e43627-1327-4b82-a887-63852747438a", + "created": "2026-08-28T22:10:36.011Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 177, + "reference": "61650a28-72e7-4010-9c99-d7cd9779d0ac", + "type": "workflow", + "folder": "/LDAPServerProfiles", + "document": { + "name": "Delete an LDAP Server Profile", + "description": "Delete an LDAP Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-ldap-server-profiles-id", + "canvasName": "delete-sse-config-v1-ldap-server-profiles-id", + "summary": "delete-sse-config-v1-ldap-server-profiles-id", + "description": "delete-sse-config-v1-ldap-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8575e9ea-e306-4298-9621-7b68fc4bb515", + "created": "2026-08-28T22:10:36.043Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 178, + "reference": "ad1dd048-018b-4a4e-a8de-e6bf8a334e51", + "type": "workflow", + "folder": "/LDAPServerProfiles", + "document": { + "name": "Edit an LDAP Server Profile", + "description": "Edit an LDAP Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-ldap-server-profiles-id", + "canvasName": "put-sse-config-v1-ldap-server-profiles-id", + "summary": "put-sse-config-v1-ldap-server-profiles-id", + "description": "put-sse-config-v1-ldap-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "base": { + "maxLength": 255, + "type": "string" + }, + "bind_dn": { + "maxLength": 255, + "type": "string" + }, + "bind_password": { + "maxLength": 121, + "type": "string" + }, + "bind_timelimit": { + "maximum": 60, + "minimum": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ldap_type": { + "enum": [ + "active-directory", + "e-directory", + "sun", + "other" + ], + "type": "string" + }, + "retry_interval": { + "type": "integer" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + }, + "ssl": { + "type": "boolean" + }, + "timelimit": { + "type": "integer" + }, + "verify_server_certificate": { + "type": "boolean" + } + }, + "required": [ + "server" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "base": { + "maxLength": 255, + "type": "string" + }, + "bind_dn": { + "maxLength": 255, + "type": "string" + }, + "bind_password": { + "maxLength": 121, + "type": "string" + }, + "bind_timelimit": { + "maximum": 60, + "minimum": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ldap_type": { + "enum": [ + "active-directory", + "e-directory", + "sun", + "other" + ], + "type": "string" + }, + "retry_interval": { + "type": "integer" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "type": "array" + }, + "ssl": { + "type": "boolean" + }, + "timelimit": { + "type": "integer" + }, + "verify_server_certificate": { + "type": "boolean" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3c8b66c7-3f72-465e-be50-64c3e2459258", + "created": "2026-08-28T22:10:36.098Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 179, + "reference": "668e7814-4954-414f-856c-340b36e1a628", + "type": "workflow", + "folder": "/LDAPServerProfiles", + "document": { + "name": "Get an LDAP Server Profile", + "description": "Get an LDAP Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ldap-server-profiles-id", + "canvasName": "get-sse-config-v1-ldap-server-profiles-id", + "summary": "get-sse-config-v1-ldap-server-profiles-id", + "description": "get-sse-config-v1-ldap-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "674448f8-f599-4f8c-9fed-becfee08621f", + "created": "2026-08-28T22:10:36.071Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 180, + "reference": "63b8e754-5a49-4f42-b878-5708ca7ce383", + "type": "workflow", + "folder": "/LDAPServerProfiles", + "document": { + "name": "List All LDAP Server Profiles", + "description": "List All LDAP Server Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ldap-server-profiles", + "canvasName": "get-sse-config-v1-ldap-server-profiles", + "summary": "get-sse-config-v1-ldap-server-profiles", + "description": "get-sse-config-v1-ldap-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "50914d9b-fb1a-4aca-b0c6-fd60d1e939e1", + "created": "2026-08-28T22:10:35.982Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 181, + "reference": "c55d5f92-e8ed-4d77-a6a6-325bdcb44bea", + "type": "workflow", + "folder": "/LicenseTypes", + "document": { + "name": "List Licenses", + "description": "List Licenses", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-license-types", + "canvasName": "get-sse-config-v1-license-types", + "summary": "get-sse-config-v1-license-types", + "description": "get-sse-config-v1-license-types", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cd746680-836e-46d3-a0e5-6e01d4cce7db", + "created": "2026-08-28T22:10:36.129Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 182, + "reference": "7a9e2433-fc32-45f8-97ce-67d2b01ae9fc", + "type": "workflow", + "folder": "/LocalUserGroups", + "document": { + "name": "Create Local User Groups", + "description": "Create Local User Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-local-user-groups", + "canvasName": "post-sse-config-v1-local-user-groups", + "summary": "post-sse-config-v1-local-user-groups", + "description": "post-sse-config-v1-local-user-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "name": { + "description": "Name of the group.\n", + "maxLength": 31, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "user": { + "description": "Array of user names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "name": { + "description": "Name of the group.\n", + "maxLength": 31, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "user": { + "description": "Array of user names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ca2644d6-36f8-44e6-9978-08da6cdb33f6", + "created": "2026-08-28T22:10:36.185Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 183, + "reference": "92953798-27f4-4348-99ab-c19cbb9eff82", + "type": "workflow", + "folder": "/LocalUserGroups", + "document": { + "name": "Delete a Local User Group", + "description": "Delete a Local User Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-local-user-groups-id", + "canvasName": "delete-sse-config-v1-local-user-groups-id", + "summary": "delete-sse-config-v1-local-user-groups-id", + "description": "delete-sse-config-v1-local-user-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "4a8cc70e-2ead-4332-85f0-fae3c0396fbb", + "created": "2026-08-28T22:10:36.215Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 184, + "reference": "5c2feab0-48de-488f-9403-b95a9944815f", + "type": "workflow", + "folder": "/LocalUserGroups", + "document": { + "name": "Edit a Local User Group", + "description": "Edit a Local User Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-local-user-groups-id", + "canvasName": "put-sse-config-v1-local-user-groups-id", + "summary": "put-sse-config-v1-local-user-groups-id", + "description": "put-sse-config-v1-local-user-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "name": { + "description": "Name of the group.\n", + "maxLength": 31, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "user": { + "description": "Array of user names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "name": { + "description": "Name of the group.\n", + "maxLength": 31, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "user": { + "description": "Array of user names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cddc4dd4-79ff-4e7f-8897-845404dc6391", + "created": "2026-08-28T22:10:36.271Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 185, + "reference": "72de3042-35e7-463e-b62b-24577b5d0238", + "type": "workflow", + "folder": "/LocalUserGroups", + "document": { + "name": "Get a Local User Group", + "description": "Get a Local User Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-local-user-groups-id", + "canvasName": "get-sse-config-v1-local-user-groups-id", + "summary": "get-sse-config-v1-local-user-groups-id", + "description": "get-sse-config-v1-local-user-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ee65c947-c373-479f-a0f5-5672546d9e56", + "created": "2026-08-28T22:10:36.242Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 186, + "reference": "e7e6b3ef-3dcc-4e56-aa65-2d4d2449f758", + "type": "workflow", + "folder": "/LocalUserGroups", + "document": { + "name": "List Local User Groups", + "description": "List Local User Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-local-user-groups", + "canvasName": "get-sse-config-v1-local-user-groups", + "summary": "get-sse-config-v1-local-user-groups", + "description": "get-sse-config-v1-local-user-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "25a71071-57da-4ed8-8638-2f4b2b2b7c34", + "created": "2026-08-28T22:10:36.156Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 187, + "reference": "c5dae80a-56dc-4e38-908f-9d4fc3b7fe74", + "type": "workflow", + "folder": "/LocalUsers", + "document": { + "name": "Create a Local User", + "description": "Create a Local User", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-local-users", + "canvasName": "post-sse-config-v1-local-users", + "summary": "post-sse-config-v1-local-users", + "description": "post-sse-config-v1-local-users", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "disabled": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "password": { + "maxLength": 63, + "type": "string" + } + }, + "required": [ + "name", + "password" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "disabled": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "password": { + "maxLength": 63, + "type": "string" + } + }, + "required": [ + "name", + "password" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "eb160aa7-77f7-40bc-862a-023fd8511a67", + "created": "2026-08-28T22:10:36.336Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 188, + "reference": "8c901018-6c2d-4bba-82fc-ea80c955c330", + "type": "workflow", + "folder": "/LocalUsers", + "document": { + "name": "Delete a Local User", + "description": "Delete a Local User", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-local-users-id", + "canvasName": "delete-sse-config-v1-local-users-id", + "summary": "delete-sse-config-v1-local-users-id", + "description": "delete-sse-config-v1-local-users-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5a2c5ec2-ff3b-4359-b0b2-e8bfefa24762", + "created": "2026-08-28T22:10:36.362Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 189, + "reference": "82435794-c196-4680-89ef-12d8e38967ee", + "type": "workflow", + "folder": "/LocalUsers", + "document": { + "name": "Edit a Local User", + "description": "Edit a Local User", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-local-users-id", + "canvasName": "put-sse-config-v1-local-users-id", + "summary": "put-sse-config-v1-local-users-id", + "description": "put-sse-config-v1-local-users-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "disabled": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "password": { + "maxLength": 63, + "type": "string" + } + }, + "required": [ + "name", + "password" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "disabled": { + "type": "boolean" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 31, + "type": "string" + }, + "password": { + "maxLength": 63, + "type": "string" + } + }, + "required": [ + "name", + "password" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "40cc8904-6ca5-4573-b9c9-f3d86173e243", + "created": "2026-08-28T22:10:36.420Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 190, + "reference": "ab5d29bc-c74d-46fb-9b00-22904f108beb", + "type": "workflow", + "folder": "/LocalUsers", + "document": { + "name": "Get a Local User", + "description": "Get a Local User", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-local-users-id", + "canvasName": "get-sse-config-v1-local-users-id", + "summary": "get-sse-config-v1-local-users-id", + "description": "get-sse-config-v1-local-users-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8dfc12c9-0ff3-4b9b-bf58-f92f90e464be", + "created": "2026-08-28T22:10:36.391Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 191, + "reference": "0ff715b2-865e-49ba-ac4c-75b6181f9eb2", + "type": "workflow", + "folder": "/LocalUsers", + "document": { + "name": "List All Local Users", + "description": "List All Local Users", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-local-users", + "canvasName": "get-sse-config-v1-local-users", + "summary": "get-sse-config-v1-local-users", + "description": "get-sse-config-v1-local-users", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3af13880-87d2-458d-9967-f9a8e717f1bc", + "created": "2026-08-28T22:10:36.307Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 192, + "reference": "1f42802e-1bd5-42ed-b000-39467130f556", + "type": "workflow", + "folder": "/Locations", + "document": { + "name": "List Locations", + "description": "List Locations", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-locations", + "canvasName": "get-sse-config-v1-locations", + "summary": "get-sse-config-v1-locations", + "description": "get-sse-config-v1-locations", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "82e95a73-8d5b-4125-a02c-553921b81e07", + "created": "2026-08-28T22:10:36.450Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 193, + "reference": "a45eaad0-fa38-493d-a131-96ade5992ef0", + "type": "workflow", + "folder": "/MFAServers", + "document": { + "name": "Create an MFA Server", + "description": "Create an MFA Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-mfa-servers", + "canvasName": "post-sse-config-v1-mfa-servers", + "summary": "post-sse-config-v1-mfa-servers", + "description": "post-sse-config-v1-mfa-servers", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mfa_cert_profile": { + "type": "string" + }, + "mfa_vendor_type": { + "oneOf": [ + { + "properties": { + "okta_adaptive_v1": { + "properties": { + "okta_api_host": { + "type": "string" + }, + "okta_baseuri": { + "type": "string" + }, + "okta_org": { + "type": "string" + }, + "okta_timeout": { + "type": "string" + }, + "okta_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "okta_adaptive_v1" + }, + { + "properties": { + "ping_identity_v1": { + "properties": { + "ping_api_host": { + "type": "string" + }, + "ping_baseuri": { + "type": "string" + }, + "ping_org": { + "type": "string" + }, + "ping_org_alias": { + "type": "string" + }, + "ping_timeout": { + "type": "string" + }, + "ping_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ping_identity_v1" + }, + { + "properties": { + "rsa_securid_access_v1": { + "properties": { + "rsa_accessid": { + "type": "string" + }, + "rsa_accesskey": { + "type": "string" + }, + "rsa_api_host": { + "type": "string" + }, + "rsa_assurancepolicyid": { + "type": "string" + }, + "rsa_baseuri": { + "type": "string" + }, + "rsa_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "rsa_securid_access_v1" + }, + { + "properties": { + "duo_security_v2": { + "properties": { + "duo_api_host": { + "type": "string" + }, + "duo_baseuri": { + "type": "string" + }, + "duo_integration_key": { + "type": "string" + }, + "duo_secret_key": { + "type": "string" + }, + "duo_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "duo_security_v2" + } + ], + "type": "object" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "mfa_cert_profile" + ], + "type": "object" + } + }, + "required": [ + "position", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mfa_cert_profile": { + "type": "string" + }, + "mfa_vendor_type": { + "oneOf": [ + { + "properties": { + "okta_adaptive_v1": { + "properties": { + "okta_api_host": { + "type": "string" + }, + "okta_baseuri": { + "type": "string" + }, + "okta_org": { + "type": "string" + }, + "okta_timeout": { + "type": "string" + }, + "okta_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "okta_adaptive_v1" + }, + { + "properties": { + "ping_identity_v1": { + "properties": { + "ping_api_host": { + "type": "string" + }, + "ping_baseuri": { + "type": "string" + }, + "ping_org": { + "type": "string" + }, + "ping_org_alias": { + "type": "string" + }, + "ping_timeout": { + "type": "string" + }, + "ping_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ping_identity_v1" + }, + { + "properties": { + "rsa_securid_access_v1": { + "properties": { + "rsa_accessid": { + "type": "string" + }, + "rsa_accesskey": { + "type": "string" + }, + "rsa_api_host": { + "type": "string" + }, + "rsa_assurancepolicyid": { + "type": "string" + }, + "rsa_baseuri": { + "type": "string" + }, + "rsa_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "rsa_securid_access_v1" + }, + { + "properties": { + "duo_security_v2": { + "properties": { + "duo_api_host": { + "type": "string" + }, + "duo_baseuri": { + "type": "string" + }, + "duo_integration_key": { + "type": "string" + }, + "duo_secret_key": { + "type": "string" + }, + "duo_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "duo_security_v2" + } + ], + "type": "object" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "mfa_cert_profile" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8a7cfa57-d3fa-4960-9aeb-7af64dfd8abb", + "created": "2026-08-28T22:10:36.509Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 194, + "reference": "b6a4557e-fa50-4c10-912e-3fc277ec0f81", + "type": "workflow", + "folder": "/MFAServers", + "document": { + "name": "Delete an MFA Server", + "description": "Delete an MFA Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-mfa-servers-id", + "canvasName": "delete-sse-config-v1-mfa-servers-id", + "summary": "delete-sse-config-v1-mfa-servers-id", + "description": "delete-sse-config-v1-mfa-servers-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5e3edbd8-7a45-4e97-a568-68005482bd8e", + "created": "2026-08-28T22:10:36.539Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 195, + "reference": "23f8fd06-da63-481d-9ffd-2a0ba279259f", + "type": "workflow", + "folder": "/MFAServers", + "document": { + "name": "Edit an MFA Server", + "description": "Edit an MFA Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-mfa-servers-id", + "canvasName": "put-sse-config-v1-mfa-servers-id", + "summary": "put-sse-config-v1-mfa-servers-id", + "description": "put-sse-config-v1-mfa-servers-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mfa_cert_profile": { + "type": "string" + }, + "mfa_vendor_type": { + "oneOf": [ + { + "properties": { + "okta_adaptive_v1": { + "properties": { + "okta_api_host": { + "type": "string" + }, + "okta_baseuri": { + "type": "string" + }, + "okta_org": { + "type": "string" + }, + "okta_timeout": { + "type": "string" + }, + "okta_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "okta_adaptive_v1" + }, + { + "properties": { + "ping_identity_v1": { + "properties": { + "ping_api_host": { + "type": "string" + }, + "ping_baseuri": { + "type": "string" + }, + "ping_org": { + "type": "string" + }, + "ping_org_alias": { + "type": "string" + }, + "ping_timeout": { + "type": "string" + }, + "ping_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ping_identity_v1" + }, + { + "properties": { + "rsa_securid_access_v1": { + "properties": { + "rsa_accessid": { + "type": "string" + }, + "rsa_accesskey": { + "type": "string" + }, + "rsa_api_host": { + "type": "string" + }, + "rsa_assurancepolicyid": { + "type": "string" + }, + "rsa_baseuri": { + "type": "string" + }, + "rsa_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "rsa_securid_access_v1" + }, + { + "properties": { + "duo_security_v2": { + "properties": { + "duo_api_host": { + "type": "string" + }, + "duo_baseuri": { + "type": "string" + }, + "duo_integration_key": { + "type": "string" + }, + "duo_secret_key": { + "type": "string" + }, + "duo_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "duo_security_v2" + } + ], + "type": "object" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "mfa_cert_profile" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mfa_cert_profile": { + "type": "string" + }, + "mfa_vendor_type": { + "oneOf": [ + { + "properties": { + "okta_adaptive_v1": { + "properties": { + "okta_api_host": { + "type": "string" + }, + "okta_baseuri": { + "type": "string" + }, + "okta_org": { + "type": "string" + }, + "okta_timeout": { + "type": "string" + }, + "okta_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "okta_adaptive_v1" + }, + { + "properties": { + "ping_identity_v1": { + "properties": { + "ping_api_host": { + "type": "string" + }, + "ping_baseuri": { + "type": "string" + }, + "ping_org": { + "type": "string" + }, + "ping_org_alias": { + "type": "string" + }, + "ping_timeout": { + "type": "string" + }, + "ping_token": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ping_identity_v1" + }, + { + "properties": { + "rsa_securid_access_v1": { + "properties": { + "rsa_accessid": { + "type": "string" + }, + "rsa_accesskey": { + "type": "string" + }, + "rsa_api_host": { + "type": "string" + }, + "rsa_assurancepolicyid": { + "type": "string" + }, + "rsa_baseuri": { + "type": "string" + }, + "rsa_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "rsa_securid_access_v1" + }, + { + "properties": { + "duo_security_v2": { + "properties": { + "duo_api_host": { + "type": "string" + }, + "duo_baseuri": { + "type": "string" + }, + "duo_integration_key": { + "type": "string" + }, + "duo_secret_key": { + "type": "string" + }, + "duo_timeout": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "duo_security_v2" + } + ], + "type": "object" + }, + "name": { + "type": "string" + } + }, + "required": [ + "name", + "mfa_cert_profile" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9f7c0fce-51e6-40d0-b998-63dfcea31989", + "created": "2026-08-28T22:10:36.599Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 196, + "reference": "68cf33f0-c59e-439a-8ca2-466a372fe241", + "type": "workflow", + "folder": "/MFAServers", + "document": { + "name": "Get an MFA Server", + "description": "Get an MFA Server", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mfa-servers-id", + "canvasName": "get-sse-config-v1-mfa-servers-id", + "summary": "get-sse-config-v1-mfa-servers-id", + "description": "get-sse-config-v1-mfa-servers-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "dc9913d1-df8a-4637-bfab-d83c120685de", + "created": "2026-08-28T22:10:36.569Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 197, + "reference": "3fc52575-c5da-4f02-8911-bacd804a44dc", + "type": "workflow", + "folder": "/MFAServers", + "document": { + "name": "List All MFA Servers", + "description": "List All MFA Servers", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mfa-servers", + "canvasName": "get-sse-config-v1-mfa-servers", + "summary": "get-sse-config-v1-mfa-servers", + "description": "get-sse-config-v1-mfa-servers", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8fde620c-cb39-4393-b845-3fd74471c43b", + "created": "2026-08-28T22:10:36.481Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 198, + "reference": "efb094bf-c2c4-4855-ac51-5c36fb97e6db", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Change Agent Profiles", + "description": "Change Agent Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-mobile-agent-agent-profiles", + "canvasName": "put-sse-config-v1-mobile-agent-agent-profiles", + "summary": "put-sse-config-v1-mobile-agent-agent-profiles", + "description": "put-sse-config-v1-mobile-agent-agent-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "agent_ui": { + "properties": { + "agent_user_override_timeout": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "max_agent_user_overrides": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "passcode": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "uninstall_password": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "welcome_page": { + "properties": { + "page": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "client_certificate": { + "properties": { + "local": { + "type": "string" + }, + "scep": { + "maxLength": 255, + "type": "string" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value": { + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + } + }, + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "maxLength": 1024, + "type": "string" + }, + "name": { + "maxLength": 1023, + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value_data": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gateways": { + "properties": { + "external": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "manual": { + "default": false, + "description": "If this GlobalProtect gateway can be manually selected", + "type": "boolean" + }, + "name": { + "type": "string" + }, + "priority_rule": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "priority": { + "enum": [ + "0", + "1", + "2", + "3", + "4", + "5" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "internal": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "source_ip": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gp_app_config": { + "properties": { + "config": { + "description": "Currently we only support connect-method and tunnel-mtu as app-config", + "items": { + "anyOf": [ + { + "properties": { + "name": { + "default": "connect-method", + "enum": [ + "connect-method" + ], + "type": "string" + }, + "value": { + "items": { + "enum": [ + "user-logon", + "pre-logon", + "on-demand", + "pre-logon-then-on-demand" + ], + "type": "string" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + { + "properties": { + "name": { + "default": "tunnel-mtu", + "enum": [ + "tunnel-mtu" + ], + "type": "string" + }, + "value": { + "description": "GlobalProtect Connection MTU (bytes)", + "items": { + "default": 1400, + "maximum": 1420, + "minimum": 1000, + "type": "number" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + } + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "hip_collection": { + "properties": { + "certificate_profile": { + "type": "string" + }, + "collect_hip_data": { + "type": "boolean" + }, + "custom_checks": { + "properties": { + "linux": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "mac_os": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "windows": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "registry_value": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "exclusion": { + "properties": { + "category": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "vendor": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "product": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "max_wait_time": { + "maximum": 60, + "minimum": 10, + "type": "number" + } + }, + "type": "object" + }, + "internal_host_detection": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv4 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "internal_host_detection_v6": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv6 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "machine_account_exists_with_serialno": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "type": "object" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "save_user_credentials": { + "description": "Indicates whether to save user credentials.\n\n* `0` : do not save\n* `1` : save\n* `2` : save username only\n* `3` : only with user fingerprint\n", + "enum": [ + "0", + "1", + "2", + "3" + ], + "type": "string" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "third_party_vpn_clients": { + "items": { + "enum": [ + "PAN Virtual Ethernet Adapter", + "Juniper Network Virtual Adapter", + "Cisco Systems VPN Adapter" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "name", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "agent_ui": { + "properties": { + "agent_user_override_timeout": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "max_agent_user_overrides": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "passcode": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "uninstall_password": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "welcome_page": { + "properties": { + "page": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "client_certificate": { + "properties": { + "local": { + "type": "string" + }, + "scep": { + "maxLength": 255, + "type": "string" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value": { + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + } + }, + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "maxLength": 1024, + "type": "string" + }, + "name": { + "maxLength": 1023, + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value_data": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gateways": { + "properties": { + "external": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "manual": { + "default": false, + "description": "If this GlobalProtect gateway can be manually selected", + "type": "boolean" + }, + "name": { + "type": "string" + }, + "priority_rule": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "priority": { + "enum": [ + "0", + "1", + "2", + "3", + "4", + "5" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "internal": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "source_ip": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gp_app_config": { + "properties": { + "config": { + "description": "Currently we only support connect-method and tunnel-mtu as app-config", + "items": { + "anyOf": [ + { + "properties": { + "name": { + "default": "connect-method", + "enum": [ + "connect-method" + ], + "type": "string" + }, + "value": { + "items": { + "enum": [ + "user-logon", + "pre-logon", + "on-demand", + "pre-logon-then-on-demand" + ], + "type": "string" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + { + "properties": { + "name": { + "default": "tunnel-mtu", + "enum": [ + "tunnel-mtu" + ], + "type": "string" + }, + "value": { + "description": "GlobalProtect Connection MTU (bytes)", + "items": { + "default": 1400, + "maximum": 1420, + "minimum": 1000, + "type": "number" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + } + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "hip_collection": { + "properties": { + "certificate_profile": { + "type": "string" + }, + "collect_hip_data": { + "type": "boolean" + }, + "custom_checks": { + "properties": { + "linux": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "mac_os": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "windows": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "registry_value": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "exclusion": { + "properties": { + "category": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "vendor": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "product": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "max_wait_time": { + "maximum": 60, + "minimum": 10, + "type": "number" + } + }, + "type": "object" + }, + "internal_host_detection": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv4 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "internal_host_detection_v6": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv6 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "machine_account_exists_with_serialno": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "type": "object" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "save_user_credentials": { + "description": "Indicates whether to save user credentials.\n\n* `0` : do not save\n* `1` : save\n* `2` : save username only\n* `3` : only with user fingerprint\n", + "enum": [ + "0", + "1", + "2", + "3" + ], + "type": "string" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "third_party_vpn_clients": { + "items": { + "enum": [ + "PAN Virtual Ethernet Adapter", + "Juniper Network Virtual Adapter", + "Cisco Systems VPN Adapter" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ca3aa8af-fcf1-4cb3-a83d-ef2b333b2d93", + "created": "2026-08-28T22:10:36.745Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 199, + "reference": "58e9d6d8-9819-42e0-af80-29aee6cd0d0e", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Create Agent Profiles", + "description": "Create Agent Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-mobile-agent-agent-profiles", + "canvasName": "post-sse-config-v1-mobile-agent-agent-profiles", + "summary": "post-sse-config-v1-mobile-agent-agent-profiles", + "description": "post-sse-config-v1-mobile-agent-agent-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "agent_ui": { + "properties": { + "agent_user_override_timeout": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "max_agent_user_overrides": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "passcode": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "uninstall_password": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "welcome_page": { + "properties": { + "page": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "client_certificate": { + "properties": { + "local": { + "type": "string" + }, + "scep": { + "maxLength": 255, + "type": "string" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value": { + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + } + }, + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "maxLength": 1024, + "type": "string" + }, + "name": { + "maxLength": 1023, + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value_data": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gateways": { + "properties": { + "external": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "manual": { + "default": false, + "description": "If this GlobalProtect gateway can be manually selected", + "type": "boolean" + }, + "name": { + "type": "string" + }, + "priority_rule": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "priority": { + "enum": [ + "0", + "1", + "2", + "3", + "4", + "5" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "internal": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "source_ip": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gp_app_config": { + "properties": { + "config": { + "description": "Currently we only support connect-method and tunnel-mtu as app-config", + "items": { + "anyOf": [ + { + "properties": { + "name": { + "default": "connect-method", + "enum": [ + "connect-method" + ], + "type": "string" + }, + "value": { + "items": { + "enum": [ + "user-logon", + "pre-logon", + "on-demand", + "pre-logon-then-on-demand" + ], + "type": "string" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + { + "properties": { + "name": { + "default": "tunnel-mtu", + "enum": [ + "tunnel-mtu" + ], + "type": "string" + }, + "value": { + "description": "GlobalProtect Connection MTU (bytes)", + "items": { + "default": 1400, + "maximum": 1420, + "minimum": 1000, + "type": "number" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + } + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "hip_collection": { + "properties": { + "certificate_profile": { + "type": "string" + }, + "collect_hip_data": { + "type": "boolean" + }, + "custom_checks": { + "properties": { + "linux": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "mac_os": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "windows": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "registry_value": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "exclusion": { + "properties": { + "category": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "vendor": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "product": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "max_wait_time": { + "maximum": 60, + "minimum": 10, + "type": "number" + } + }, + "type": "object" + }, + "internal_host_detection": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv4 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "internal_host_detection_v6": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv6 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "machine_account_exists_with_serialno": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "type": "object" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "save_user_credentials": { + "description": "Indicates whether to save user credentials.\n\n* `0` : do not save\n* `1` : save\n* `2` : save username only\n* `3` : only with user fingerprint\n", + "enum": [ + "0", + "1", + "2", + "3" + ], + "type": "string" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "third_party_vpn_clients": { + "items": { + "enum": [ + "PAN Virtual Ethernet Adapter", + "Juniper Network Virtual Adapter", + "Cisco Systems VPN Adapter" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "agent_ui": { + "properties": { + "agent_user_override_timeout": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "max_agent_user_overrides": { + "default": 0, + "minimum": 0, + "type": "number" + }, + "passcode": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "uninstall_password": { + "maxLength": 64, + "minLength": 6, + "type": "string" + }, + "welcome_page": { + "properties": { + "page": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + }, + "certificate": { + "properties": { + "criteria": { + "properties": { + "certificate_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "client_certificate": { + "properties": { + "local": { + "type": "string" + }, + "scep": { + "maxLength": 255, + "type": "string" + } + }, + "type": "object" + }, + "custom_checks": { + "properties": { + "criteria": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value": { + "maxLength": 1024, + "pattern": ".*", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + } + }, + "type": "object" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "default_value_data": { + "maxLength": 1024, + "type": "string" + }, + "name": { + "maxLength": 1023, + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "registry_value": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "negate": { + "type": "boolean" + }, + "value_data": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gateways": { + "properties": { + "external": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "manual": { + "default": false, + "description": "If this GlobalProtect gateway can be manually selected", + "type": "boolean" + }, + "name": { + "type": "string" + }, + "priority_rule": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "priority": { + "enum": [ + "0", + "1", + "2", + "3", + "4", + "5" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "internal": { + "properties": { + "list": { + "items": { + "properties": { + "choice": { + "oneOf": [ + { + "properties": { + "fqdn": { + "type": "string" + } + }, + "title": "fqdn", + "type": "object" + }, + { + "properties": { + "ip": { + "properties": { + "ipv4": { + "maxLength": 100, + "minLength": 0, + "pattern": "^([:0-9.])+$", + "type": "string" + }, + "ipv6": { + "maxLength": 100, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "ip", + "type": "object" + } + ], + "type": "object" + }, + "name": { + "type": "string" + }, + "source_ip": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "gp_app_config": { + "properties": { + "config": { + "description": "Currently we only support connect-method and tunnel-mtu as app-config", + "items": { + "anyOf": [ + { + "properties": { + "name": { + "default": "connect-method", + "enum": [ + "connect-method" + ], + "type": "string" + }, + "value": { + "items": { + "enum": [ + "user-logon", + "pre-logon", + "on-demand", + "pre-logon-then-on-demand" + ], + "type": "string" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + }, + { + "properties": { + "name": { + "default": "tunnel-mtu", + "enum": [ + "tunnel-mtu" + ], + "type": "string" + }, + "value": { + "description": "GlobalProtect Connection MTU (bytes)", + "items": { + "default": 1400, + "maximum": 1420, + "minimum": 1000, + "type": "number" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + } + }, + "type": "object" + } + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "hip_collection": { + "properties": { + "certificate_profile": { + "type": "string" + }, + "collect_hip_data": { + "type": "boolean" + }, + "custom_checks": { + "properties": { + "linux": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "mac_os": { + "properties": { + "plist": { + "items": { + "properties": { + "key": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "description": "Preference list", + "maxLength": 1023, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "windows": { + "properties": { + "process_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "registry_key": { + "items": { + "properties": { + "name": { + "description": "Registry key", + "maxLength": 1023, + "type": "string" + }, + "registry_value": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "exclusion": { + "properties": { + "category": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "vendor": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "product": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "max_wait_time": { + "maximum": 60, + "minimum": 10, + "type": "number" + } + }, + "type": "object" + }, + "internal_host_detection": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv4 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "internal_host_detection_v6": { + "properties": { + "hostname": { + "description": "Host name of the IPv4 in DNS record", + "maxLength": 256, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "ip_address": { + "description": "Internal IPv6 address of a host", + "type": "string" + } + }, + "type": "object" + }, + "machine_account_exists_with_serialno": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "type": "object" + } + }, + "type": "object" + }, + "name": { + "type": "string" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "save_user_credentials": { + "description": "Indicates whether to save user credentials.\n\n* `0` : do not save\n* `1` : save\n* `2` : save username only\n* `3` : only with user fingerprint\n", + "enum": [ + "0", + "1", + "2", + "3" + ], + "type": "string" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "third_party_vpn_clients": { + "items": { + "enum": [ + "PAN Virtual Ethernet Adapter", + "Juniper Network Virtual Adapter", + "Cisco Systems VPN Adapter" + ], + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "41bd6739-0818-48a4-811f-aa3a9cc3a9f7", + "created": "2026-08-28T22:10:36.706Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 200, + "reference": "15b90159-ecc3-42c2-908c-6a0760a645e7", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Create Authentication Settings", + "description": "Create Authentication Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-mobile-agent-authentication-settings", + "canvasName": "post-sse-config-v1-mobile-agent-authentication-settings", + "summary": "post-sse-config-v1-mobile-agent-authentication-settings", + "description": "post-sse-config-v1-mobile-agent-authentication-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "os": { + "default": "Any", + "enum": [ + "Any", + "Android", + "Browser", + "Chrome", + "IoT", + "Linux", + "Mac", + "Satellite", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "user_credential_or_client_cert_required": { + "type": "boolean" + } + }, + "required": [ + "authentication_profile", + "user_credential_or_client_cert_required", + "os" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "os": { + "default": "Any", + "enum": [ + "Any", + "Android", + "Browser", + "Chrome", + "IoT", + "Linux", + "Mac", + "Satellite", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "user_credential_or_client_cert_required": { + "type": "boolean" + } + }, + "required": [ + "authentication_profile", + "user_credential_or_client_cert_required", + "os" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "4d2429ba-ff9a-49b1-abe6-2f51e1835650", + "created": "2026-08-28T22:10:36.865Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 201, + "reference": "47a69193-490d-487b-b47f-424e5b23b012", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Create Infrastructure Settings", + "description": "Create Infrastructure Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-mobile-agent-infrastructure-settings", + "canvasName": "post-sse-config-v1-mobile-agent-infrastructure-settings", + "summary": "post-sse-config-v1-mobile-agent-infrastructure-settings", + "description": "post-sse-config-v1-mobile-agent-infrastructure-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "dns_servers": { + "items": { + "properties": { + "dns_suffix": { + "items": { + "type": "string" + }, + "type": "array" + }, + "internal_dns_match": { + "items": { + "properties": { + "domain_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + }, + "secondary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + }, + "secondary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "enable_wins": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "properties": { + "wins_servers": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ip_pools": { + "items": { + "properties": { + "ip_pool": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipv6": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "portal_hostname": { + "properties": { + "custom_domain": { + "properties": { + "cname": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "ssl_tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "default_domain": { + "properties": { + "hostname": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "udp_queries": { + "properties": { + "retries": { + "properties": { + "attempts": { + "description": "Maximum number of retries before trying next name server", + "maximum": 30, + "minimum": 1, + "type": "number" + }, + "interval": { + "description": "Time in seconds for another request to be sent", + "maximum": 30, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "dns_servers", + "ip_pools", + "portal_hostname" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "dns_servers": { + "items": { + "properties": { + "dns_suffix": { + "items": { + "type": "string" + }, + "type": "array" + }, + "internal_dns_match": { + "items": { + "properties": { + "domain_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + }, + "secondary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + }, + "secondary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "enable_wins": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "properties": { + "wins_servers": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ip_pools": { + "items": { + "properties": { + "ip_pool": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipv6": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "portal_hostname": { + "properties": { + "custom_domain": { + "properties": { + "cname": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "ssl_tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "default_domain": { + "properties": { + "hostname": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "udp_queries": { + "properties": { + "retries": { + "properties": { + "attempts": { + "description": "Maximum number of retries before trying next name server", + "maximum": 30, + "minimum": 1, + "type": "number" + }, + "interval": { + "description": "Time in seconds for another request to be sent", + "maximum": 30, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "dns_servers", + "ip_pools", + "portal_hostname" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "04d1e047-0ad8-4bc2-8304-f39142bcd212", + "created": "2026-08-28T22:10:37.117Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 202, + "reference": "71cbf1d2-0b8c-4754-b900-2d7a8e74630d", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Create Tunnel Profiles", + "description": "Create Tunnel Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-mobile-agent-tunnel-profiles", + "canvasName": "post-sse-config-v1-mobile-agent-tunnel-profiles", + "summary": "post-sse-config-v1-mobile-agent-tunnel-profiles", + "description": "post-sse-config-v1-mobile-agent-tunnel-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "maxLength": 31, + "minLength": 1, + "type": "string" + }, + "no_direct_access_to_local_network": { + "type": "boolean" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "retrieve_framed_ip_address": { + "type": "boolean" + }, + "source_address": { + "properties": { + "ip_address": { + "items": { + "type": "string" + }, + "type": "array" + }, + "region": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "split_tunneling": { + "properties": { + "access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "include_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "maxLength": 31, + "minLength": 1, + "type": "string" + }, + "no_direct_access_to_local_network": { + "type": "boolean" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "retrieve_framed_ip_address": { + "type": "boolean" + }, + "source_address": { + "properties": { + "ip_address": { + "items": { + "type": "string" + }, + "type": "array" + }, + "region": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "split_tunneling": { + "properties": { + "access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "include_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8b289e8c-b885-4b55-b781-dcbc4701c658", + "created": "2026-08-28T22:10:37.307Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 203, + "reference": "4c3a97c3-db6d-4068-a3f7-d5f09d8139dc", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Delete Agent Profiles", + "description": "Delete Agent Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-mobile-agent-agent-profiles", + "canvasName": "delete-sse-config-v1-mobile-agent-agent-profiles", + "summary": "delete-sse-config-v1-mobile-agent-agent-profiles", + "description": "delete-sse-config-v1-mobile-agent-agent-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "folder": "$var.job.folder" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "required": [ + "name", + "folder" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "df650871-36b3-4964-bfb9-e6de7530d44c", + "created": "2026-08-28T22:10:36.634Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 204, + "reference": "e1b5e34b-6e0b-45ee-8745-18b90e3b883d", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Delete Authentication Settings", + "description": "Delete Authentication Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-mobile-agent-authentication-settings", + "canvasName": "delete-sse-config-v1-mobile-agent-authentication-settings", + "summary": "delete-sse-config-v1-mobile-agent-authentication-settings", + "description": "delete-sse-config-v1-mobile-agent-authentication-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "folder": "$var.job.folder" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "required": [ + "name", + "folder" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7707d82f-bc60-4c88-843f-feb09abcc51b", + "created": "2026-08-28T22:10:36.805Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 205, + "reference": "05562455-ad63-46e0-8bb9-c7c9431ec7d0", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Delete Infrastructure Settings", + "description": "Delete Infrastructure Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-mobile-agent-infrastructure-settings", + "canvasName": "delete-sse-config-v1-mobile-agent-infrastructure-settings", + "summary": "delete-sse-config-v1-mobile-agent-infrastructure-settings", + "description": "delete-sse-config-v1-mobile-agent-infrastructure-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "folder": "$var.job.folder" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "required": [ + "name", + "folder" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "0e0a7c64-33c2-4f82-87c5-fc7225742d51", + "created": "2026-08-28T22:10:37.050Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 206, + "reference": "35025415-1876-415f-a821-1410c36a0833", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Delete Tunnel Profiles", + "description": "Delete Tunnel Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-mobile-agent-tunnel-profiles", + "canvasName": "delete-sse-config-v1-mobile-agent-tunnel-profiles", + "summary": "delete-sse-config-v1-mobile-agent-tunnel-profiles", + "description": "delete-sse-config-v1-mobile-agent-tunnel-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "folder": "$var.job.folder" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "required": [ + "name", + "folder" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9e56b7db-8337-42f8-a08d-98b959054440", + "created": "2026-08-28T22:10:37.247Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 207, + "reference": "66af4335-565a-4998-ab0d-8f7b4f3fad6e", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Edit Authentication Settings", + "description": "Edit Authentication Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-mobile-agent-authentication-settings", + "canvasName": "put-sse-config-v1-mobile-agent-authentication-settings", + "summary": "put-sse-config-v1-mobile-agent-authentication-settings", + "description": "put-sse-config-v1-mobile-agent-authentication-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "os": { + "default": "Any", + "enum": [ + "Any", + "Android", + "Browser", + "Chrome", + "IoT", + "Linux", + "Mac", + "Satellite", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "user_credential_or_client_cert_required": { + "type": "boolean" + } + }, + "required": [ + "authentication_profile", + "user_credential_or_client_cert_required", + "os" + ], + "type": "object" + } + }, + "required": [ + "name", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_profile": { + "type": "string" + }, + "os": { + "default": "Any", + "enum": [ + "Any", + "Android", + "Browser", + "Chrome", + "IoT", + "Linux", + "Mac", + "Satellite", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "user_credential_or_client_cert_required": { + "type": "boolean" + } + }, + "required": [ + "authentication_profile", + "user_credential_or_client_cert_required", + "os" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1ef79727-4ef2-429d-9dbb-6fb2ac1c644b", + "created": "2026-08-28T22:10:36.892Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 208, + "reference": "24d6fa9d-9bcc-4b24-8139-3afab4286bd4", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Edit Global Settings", + "description": "Edit Global Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-mobile-agent-global-settings", + "canvasName": "put-sse-config-v1-mobile-agent-global-settings", + "summary": "put-sse-config-v1-mobile-agent-global-settings", + "description": "put-sse-config-v1-mobile-agent-global-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "agent_version": { + "type": "string" + }, + "manual_gateway": { + "description": "Use the locations from GET /infrastrustre-settings deployment field to setup manual gateways.", + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "agent_version": { + "type": "string" + }, + "manual_gateway": { + "description": "Use the locations from GET /infrastrustre-settings deployment field to setup manual gateways.", + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "228a9608-2dfd-4dba-9564-2cdf9bccf72f", + "created": "2026-08-28T22:10:37.013Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 209, + "reference": "c94793f6-896e-48be-916a-1a73edad4418", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Edit GlobalProtect Infrastructure Settings", + "description": "Edit GlobalProtect Infrastructure Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-mobile-agent-infrastructure-settings", + "canvasName": "put-sse-config-v1-mobile-agent-infrastructure-settings", + "summary": "put-sse-config-v1-mobile-agent-infrastructure-settings", + "description": "put-sse-config-v1-mobile-agent-infrastructure-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "dns_servers": { + "items": { + "properties": { + "dns_suffix": { + "items": { + "type": "string" + }, + "type": "array" + }, + "internal_dns_match": { + "items": { + "properties": { + "domain_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + }, + "secondary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + }, + "secondary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "enable_wins": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "properties": { + "wins_servers": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ip_pools": { + "items": { + "properties": { + "ip_pool": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipv6": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "portal_hostname": { + "properties": { + "custom_domain": { + "properties": { + "cname": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "ssl_tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "default_domain": { + "properties": { + "hostname": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "udp_queries": { + "properties": { + "retries": { + "properties": { + "attempts": { + "description": "Maximum number of retries before trying next name server", + "maximum": 30, + "minimum": 1, + "type": "number" + }, + "interval": { + "description": "Time in seconds for another request to be sent", + "maximum": 30, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "dns_servers", + "ip_pools", + "portal_hostname" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "dns_servers": { + "items": { + "properties": { + "dns_suffix": { + "items": { + "type": "string" + }, + "type": "array" + }, + "internal_dns_match": { + "items": { + "properties": { + "domain_list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + }, + "secondary": { + "properties": { + "dns_server": { + "type": "object" + }, + "use_cloud_default": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "primary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + }, + "secondary_public_dns": { + "properties": { + "dns_server": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + }, + "enable_wins": { + "properties": { + "no": { + "type": "object" + }, + "yes": { + "properties": { + "wins_servers": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "primary": { + "type": "string" + }, + "secondary": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ip_pools": { + "items": { + "properties": { + "ip_pool": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "ipv6": { + "type": "boolean" + }, + "name": { + "type": "string" + }, + "portal_hostname": { + "properties": { + "custom_domain": { + "properties": { + "cname": { + "type": "string" + }, + "hostname": { + "type": "string" + }, + "ssl_tls_service_profile": { + "type": "string" + } + }, + "type": "object" + }, + "default_domain": { + "properties": { + "hostname": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "udp_queries": { + "properties": { + "retries": { + "properties": { + "attempts": { + "description": "Maximum number of retries before trying next name server", + "maximum": 30, + "minimum": 1, + "type": "number" + }, + "interval": { + "description": "Time in seconds for another request to be sent", + "maximum": 30, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "dns_servers", + "ip_pools", + "portal_hostname" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a3f4951f-912c-4aa6-8e0d-0d2d7ae321a5", + "created": "2026-08-28T22:10:37.159Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 210, + "reference": "08cf0652-5150-4f01-8609-a09601a21e09", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Edit Prisma Access Locations", + "description": "Edit Prisma Access Locations", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-mobile-agent-locations", + "canvasName": "put-sse-config-v1-mobile-agent-locations", + "summary": "put-sse-config-v1-mobile-agent-locations", + "description": "put-sse-config-v1-mobile-agent-locations", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "region": { + "items": { + "properties": { + "locations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "bf2e23bb-fecb-46fb-b69b-4c2b6cc06661", + "created": "2026-08-28T22:10:37.216Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 211, + "reference": "6be534c3-ddaa-4f93-a938-fb563268defa", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Enable Mobile Agent (GlobalProtect)", + "description": "Enable Mobile Agent (GlobalProtect)", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-mobile-agent-enable", + "canvasName": "post-sse-config-v1-mobile-agent-enable", + "summary": "post-sse-config-v1-mobile-agent-enable", + "description": "post-sse-config-v1-mobile-agent-enable", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "c54678f2-5bcd-45ee-b8a4-2f51175149e2", + "created": "2026-08-28T22:10:36.952Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 212, + "reference": "9b2fdb9d-a1f6-493e-b506-9f427ece7e6d", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Get Agent Profiles", + "description": "Get Agent Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-agent-profiles", + "canvasName": "get-sse-config-v1-mobile-agent-agent-profiles", + "summary": "get-sse-config-v1-mobile-agent-agent-profiles", + "description": "get-sse-config-v1-mobile-agent-agent-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "folder", + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9a743b36-4533-4c38-8ca8-ca4d208793b0", + "created": "2026-08-28T22:10:36.668Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 213, + "reference": "1f99e5c9-7373-4958-8501-2b4594bafdc2", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Get Authentication Settings", + "description": "Get Authentication Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-authentication-settings", + "canvasName": "get-sse-config-v1-mobile-agent-authentication-settings", + "summary": "get-sse-config-v1-mobile-agent-authentication-settings", + "description": "get-sse-config-v1-mobile-agent-authentication-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "folder", + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d80859c8-964e-4136-b2da-8527b2bfb476", + "created": "2026-08-28T22:10:36.832Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 214, + "reference": "4f79d317-2025-41c5-8baa-bdf835ea262f", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Get Available Agent Versions", + "description": "Get Available Agent Versions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-agent-versions", + "canvasName": "get-sse-config-v1-mobile-agent-agent-versions", + "summary": "get-sse-config-v1-mobile-agent-agent-versions", + "description": "get-sse-config-v1-mobile-agent-agent-versions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e54b4978-4843-4cc9-9c5d-3553232db06b", + "created": "2026-08-28T22:10:36.777Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 215, + "reference": "c8e03177-ed5b-45db-8d6f-02a08f732308", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Get Global Settings", + "description": "Get Global Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-global-settings", + "canvasName": "get-sse-config-v1-mobile-agent-global-settings", + "summary": "get-sse-config-v1-mobile-agent-global-settings", + "description": "get-sse-config-v1-mobile-agent-global-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "482753aa-e1e1-4ec0-bcc9-a1558ce85594", + "created": "2026-08-28T22:10:36.985Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 216, + "reference": "44eee113-6e64-467d-a7ba-4530269b91a8", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Get Prisma Access Locations", + "description": "Get Prisma Access Locations", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-locations", + "canvasName": "get-sse-config-v1-mobile-agent-locations", + "summary": "get-sse-config-v1-mobile-agent-locations", + "description": "get-sse-config-v1-mobile-agent-locations", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "required": [ + "folder" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7f1b18c7-22ba-4e0b-9e49-138a4819d4a7", + "created": "2026-08-28T22:10:37.189Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 217, + "reference": "46597f83-33b1-4f03-987b-2267a85139da", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Get Tunnel Profiles", + "description": "Get Tunnel Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-tunnel-profiles", + "canvasName": "get-sse-config-v1-mobile-agent-tunnel-profiles", + "summary": "get-sse-config-v1-mobile-agent-tunnel-profiles", + "description": "get-sse-config-v1-mobile-agent-tunnel-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "folder", + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e5586797-8424-4686-94bc-ef844ce21df2", + "created": "2026-08-28T22:10:37.277Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 218, + "reference": "64007b62-3a9a-4bbd-b73e-34c954765211", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Indicates Whether Mobile Agent Is Enabled", + "description": "Indicates Whether Mobile Agent Is Enabled", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-enable", + "canvasName": "get-sse-config-v1-mobile-agent-enable", + "summary": "get-sse-config-v1-mobile-agent-enable", + "description": "get-sse-config-v1-mobile-agent-enable", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": {} + }, + "outputSchema": { + "type": "object", + "properties": { + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e094094a-db40-40b3-b749-e46de4160c46", + "created": "2026-08-28T22:10:36.920Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 219, + "reference": "e954ad4d-fa3b-46b0-ac8e-fffadccf417c", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Move Authentication Settings", + "description": "Move Authentication Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-mobile-agent-user-authentication:move", + "canvasName": "post-sse-config-v1-mobile-agent-user-authentication:move", + "summary": "post-sse-config-v1-mobile-agent-user-authentication:move", + "description": "post-sse-config-v1-mobile-agent-user-authentication:move", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "name": "$var.job.name", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "type": "string" + }, + "name": { + "type": "string" + }, + "where": { + "enum": [ + "before", + "after", + "top", + "bottom" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "folder", + "name", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "name": { + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "type": "string" + }, + "name": { + "type": "string" + }, + "where": { + "enum": [ + "before", + "after", + "top", + "bottom" + ], + "type": "string" + } + }, + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f4b6490f-c7bb-43fa-901c-c59027a3f3d3", + "created": "2026-08-28T22:10:37.368Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 220, + "reference": "56a53456-f3d8-4acb-be85-c8c7e83a51e1", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Show Infrastructure Settings", + "description": "Show Infrastructure Settings", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-mobile-agent-infrastructure-settings", + "canvasName": "get-sse-config-v1-mobile-agent-infrastructure-settings", + "summary": "get-sse-config-v1-mobile-agent-infrastructure-settings", + "description": "get-sse-config-v1-mobile-agent-infrastructure-settings", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + } + }, + "required": [ + "folder" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "619d4bde-5f27-4d1d-9740-fa189a8250d8", + "created": "2026-08-28T22:10:37.084Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 221, + "reference": "901fc36a-83c4-43e0-bb93-a7a6e1088d6c", + "type": "workflow", + "folder": "/MobileAgent", + "document": { + "name": "Update Tunnel Profiles", + "description": "Update Tunnel Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-mobile-agent-tunnel-profiles", + "canvasName": "put-sse-config-v1-mobile-agent-tunnel-profiles", + "summary": "put-sse-config-v1-mobile-agent-tunnel-profiles", + "description": "put-sse-config-v1-mobile-agent-tunnel-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "name": "$var.job.name", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "maxLength": 31, + "minLength": 1, + "type": "string" + }, + "no_direct_access_to_local_network": { + "type": "boolean" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "retrieve_framed_ip_address": { + "type": "boolean" + }, + "source_address": { + "properties": { + "ip_address": { + "items": { + "type": "string" + }, + "type": "array" + }, + "region": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "split_tunneling": { + "properties": { + "access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "include_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "name", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "folder": { + "enum": [ + "Mobile Users" + ], + "type": "string" + }, + "spec": { + "properties": { + "authentication_override": { + "properties": { + "accept_cookie": { + "properties": { + "cookie_encrypt_decrypt_cert": { + "type": "string" + }, + "cookie_lifetime": { + "properties": { + "lifetime_in_days": { + "maximum": 365, + "minimum": 1, + "type": "number" + }, + "lifetime_in_hours": { + "maximum": 72, + "minimum": 1, + "type": "number" + }, + "lifetime_in_minutes": { + "maximum": 59, + "minimum": 1, + "type": "number" + } + }, + "type": "object" + }, + "generate_cookie": { + "type": "boolean" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "name": { + "maxLength": 31, + "minLength": 1, + "type": "string" + }, + "no_direct_access_to_local_network": { + "type": "boolean" + }, + "os": { + "items": { + "enum": [ + "Android", + "Chrome", + "IoT", + "Linux", + "Mac", + "Windows", + "WindowsUWP", + "iOS" + ], + "type": "string" + }, + "type": "array" + }, + "retrieve_framed_ip_address": { + "type": "boolean" + }, + "source_address": { + "properties": { + "ip_address": { + "items": { + "type": "string" + }, + "type": "array" + }, + "region": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "split_tunneling": { + "properties": { + "access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_access_route": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "exclude_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "include_applications": { + "items": { + "type": "string" + }, + "type": "array" + }, + "include_domains": { + "properties": { + "list": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "ports": { + "items": { + "maximum": 65535, + "minimum": 1, + "type": "number" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5a144340-87bf-4b36-8af1-d231be8de299", + "created": "2026-08-28T22:10:37.341Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 222, + "reference": "de5e5d2d-d445-45ba-9066-f59b961e3f2c", + "type": "workflow", + "folder": "/OCSPResponder", + "document": { + "name": "Create OCSP Responders", + "description": "Create OCSP Responders", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-ocsp-responder", + "canvasName": "post-sse-config-v1-ocsp-responder", + "summary": "post-sse-config-v1-ocsp-responder", + "description": "post-sse-config-v1-ocsp-responder", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "host_name": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [:0-9a-zA-Z._-]", + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + } + }, + "required": [ + "name", + "host_name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "host_name": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [:0-9a-zA-Z._-]", + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + } + }, + "required": [ + "name", + "host_name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3c724458-b853-4d09-9341-3e2914984015", + "created": "2026-08-28T22:10:37.430Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 223, + "reference": "9f27a656-d958-4e9f-81ab-3d7b1993ce23", + "type": "workflow", + "folder": "/OCSPResponder", + "document": { + "name": "Delete an OCSP Responder", + "description": "Delete an OCSP Responder", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-ocsp-responder-id", + "canvasName": "delete-sse-config-v1-ocsp-responder-id", + "summary": "delete-sse-config-v1-ocsp-responder-id", + "description": "delete-sse-config-v1-ocsp-responder-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3e1e6cd9-5244-42b3-ad4d-8fee30dcc617", + "created": "2026-08-28T22:10:37.460Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 224, + "reference": "8a1be663-e24e-4950-bc3d-618d3befef6d", + "type": "workflow", + "folder": "/OCSPResponder", + "document": { + "name": "Edit an OCSP Responder", + "description": "Edit an OCSP Responder", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-ocsp-responder-id", + "canvasName": "put-sse-config-v1-ocsp-responder-id", + "summary": "put-sse-config-v1-ocsp-responder-id", + "description": "put-sse-config-v1-ocsp-responder-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "host_name": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [:0-9a-zA-Z._-]", + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + } + }, + "required": [ + "name", + "host_name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "host_name": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [:0-9a-zA-Z._-]", + "maxLength": 63, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + } + }, + "required": [ + "name", + "host_name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "005a18c3-ca40-4ced-91f0-a65f16dd4f8e", + "created": "2026-08-28T22:10:37.519Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 225, + "reference": "27306d81-96bb-456c-afd2-0aff34268e7a", + "type": "workflow", + "folder": "/OCSPResponder", + "document": { + "name": "Get an OCSP Responder", + "description": "Get an OCSP Responder", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ocsp-responder-id", + "canvasName": "get-sse-config-v1-ocsp-responder-id", + "summary": "get-sse-config-v1-ocsp-responder-id", + "description": "get-sse-config-v1-ocsp-responder-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e7ad48a2-4ff4-4eb8-8d63-24764d32fcf3", + "created": "2026-08-28T22:10:37.488Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 226, + "reference": "559d5e21-1cae-40b0-bdee-ced39df10504", + "type": "workflow", + "folder": "/OCSPResponder", + "document": { + "name": "List OCSP Responders", + "description": "List OCSP Responders", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-ocsp-responder", + "canvasName": "get-sse-config-v1-ocsp-responder", + "summary": "get-sse-config-v1-ocsp-responder", + "description": "get-sse-config-v1-ocsp-responder", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "728622aa-f910-4112-bf4a-f58881ba6aa6", + "created": "2026-08-28T22:10:37.397Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 227, + "reference": "f3cd183c-54ea-46d7-8118-a9462e682d71", + "type": "workflow", + "folder": "/ProfileGroups", + "document": { + "name": "Create Profile Groups", + "description": "Create Profile Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-profile-groups", + "canvasName": "post-sse-config-v1-profile-groups", + "summary": "post-sse-config-v1-profile-groups", + "description": "post-sse-config-v1-profile-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "spec": { + "properties": { + "dns_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "file_blocking": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "saas_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "spyware": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "url_filtering": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "virus_and_wildfire_analysis": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "vulnerability": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "spec": { + "properties": { + "dns_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "file_blocking": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "saas_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "spyware": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "url_filtering": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "virus_and_wildfire_analysis": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "vulnerability": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "19807c48-5c77-4b1c-b888-87c27494d279", + "created": "2026-08-28T22:10:37.572Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 228, + "reference": "9dfadbeb-8ffc-49b0-bc07-ddc38f76a182", + "type": "workflow", + "folder": "/ProfileGroups", + "document": { + "name": "Delete a Profile Group", + "description": "Delete a Profile Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-profile-groups-id", + "canvasName": "delete-sse-config-v1-profile-groups-id", + "summary": "delete-sse-config-v1-profile-groups-id", + "description": "delete-sse-config-v1-profile-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "bc0497d4-0d97-4fbd-81de-e5a8a26d8193", + "created": "2026-08-28T22:10:37.605Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 229, + "reference": "09fdafff-6e63-4ad4-9d91-b425ea1562ab", + "type": "workflow", + "folder": "/ProfileGroups", + "document": { + "name": "Edit a Profile Group", + "description": "Edit a Profile Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-profile-groups-id", + "canvasName": "put-sse-config-v1-profile-groups-id", + "summary": "put-sse-config-v1-profile-groups-id", + "description": "put-sse-config-v1-profile-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "dns_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "file_blocking": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "saas_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "spyware": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "url_filtering": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "virus_and_wildfire_analysis": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "vulnerability": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "dns_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "file_blocking": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "saas_security": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "spyware": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "url_filtering": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "virus_and_wildfire_analysis": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + }, + "vulnerability": { + "items": { + "minItems": 1, + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "335dd3f8-e19f-4236-812b-b0bc41ae713c", + "created": "2026-08-28T22:10:37.658Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 230, + "reference": "12f0e011-bbcb-4a48-a5c4-e5bdf39eaf90", + "type": "workflow", + "folder": "/ProfileGroups", + "document": { + "name": "Get a Profile Group", + "description": "Get a Profile Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-profile-groups-id", + "canvasName": "get-sse-config-v1-profile-groups-id", + "summary": "get-sse-config-v1-profile-groups-id", + "description": "get-sse-config-v1-profile-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f1b469d4-2532-4926-86cd-c659021a800b", + "created": "2026-08-28T22:10:37.632Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 231, + "reference": "88b57ce8-f52b-47c7-8254-28a8fef0f08a", + "type": "workflow", + "folder": "/ProfileGroups", + "document": { + "name": "List Profile Groups", + "description": "List Profile Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-profile-groups", + "canvasName": "get-sse-config-v1-profile-groups", + "summary": "get-sse-config-v1-profile-groups", + "description": "get-sse-config-v1-profile-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ccf84d05-062d-43ef-8aa6-b3a749780d24", + "created": "2026-08-28T22:10:37.545Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 232, + "reference": "434863ef-f104-402f-8bf4-c3753f1f38e7", + "type": "workflow", + "folder": "/QoSPolicyRules", + "document": { + "name": "Create a QoS Policy Rule", + "description": "Create a QoS Policy Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-qos-policy-rules", + "canvasName": "post-sse-config-v1-qos-policy-rules", + "summary": "post-sse-config-v1-qos-policy-rules", + "description": "post-sse-config-v1-qos-policy-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "position": "$var.job.position", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "spec": { + "properties": { + "action": { + "properties": { + "class": { + "type": "string" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "dscp_tos": { + "properties": { + "codepoints": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "ef": { + "type": "object" + } + }, + "title": "ef" + }, + { + "properties": { + "af": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "af" + }, + { + "properties": { + "cs": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cs" + }, + { + "properties": { + "tos": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tos" + }, + { + "properties": { + "custom": { + "properties": { + "codepoint": { + "properties": { + "binary_value": { + "type": "string" + }, + "codepoint_name": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "custom" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "schedule": { + "type": "string" + } + }, + "required": [ + "name", + "action" + ], + "type": "object" + } + }, + "required": [ + "folder", + "position", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "spec": { + "properties": { + "action": { + "properties": { + "class": { + "type": "string" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "dscp_tos": { + "properties": { + "codepoints": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "ef": { + "type": "object" + } + }, + "title": "ef" + }, + { + "properties": { + "af": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "af" + }, + { + "properties": { + "cs": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cs" + }, + { + "properties": { + "tos": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tos" + }, + { + "properties": { + "custom": { + "properties": { + "codepoint": { + "properties": { + "binary_value": { + "type": "string" + }, + "codepoint_name": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "custom" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "schedule": { + "type": "string" + } + }, + "required": [ + "name", + "action" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "16d8153a-c3e4-4f77-902b-b98889b20f7f", + "created": "2026-08-28T22:10:37.721Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 233, + "reference": "9d488684-306e-4ea5-a278-548c2a643eed", + "type": "workflow", + "folder": "/QoSPolicyRules", + "document": { + "name": "Delete a QoS Policy Rule", + "description": "Delete a QoS Policy Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-qos-policy-rules-id", + "canvasName": "delete-sse-config-v1-qos-policy-rules-id", + "summary": "delete-sse-config-v1-qos-policy-rules-id", + "description": "delete-sse-config-v1-qos-policy-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "50ba8fe0-b2a5-4e90-9cef-36a9e1a3e2e6", + "created": "2026-08-28T22:10:37.748Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 234, + "reference": "fe5d7fbd-99a4-4831-bd0a-c19250d0191b", + "type": "workflow", + "folder": "/QoSPolicyRules", + "document": { + "name": "Edit a QoS Policy Rule", + "description": "Edit a QoS Policy Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-qos-policy-rules-id", + "canvasName": "put-sse-config-v1-qos-policy-rules-id", + "summary": "put-sse-config-v1-qos-policy-rules-id", + "description": "put-sse-config-v1-qos-policy-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "properties": { + "class": { + "type": "string" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "dscp_tos": { + "properties": { + "codepoints": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "ef": { + "type": "object" + } + }, + "title": "ef" + }, + { + "properties": { + "af": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "af" + }, + { + "properties": { + "cs": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cs" + }, + { + "properties": { + "tos": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tos" + }, + { + "properties": { + "custom": { + "properties": { + "codepoint": { + "properties": { + "binary_value": { + "type": "string" + }, + "codepoint_name": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "custom" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "schedule": { + "type": "string" + } + }, + "required": [ + "name", + "action" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "properties": { + "class": { + "type": "string" + } + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "dscp_tos": { + "properties": { + "codepoints": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "type": { + "oneOf": [ + { + "properties": { + "ef": { + "type": "object" + } + }, + "title": "ef" + }, + { + "properties": { + "af": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "af" + }, + { + "properties": { + "cs": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "cs" + }, + { + "properties": { + "tos": { + "properties": { + "codepoint": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "tos" + }, + { + "properties": { + "custom": { + "properties": { + "codepoint": { + "properties": { + "binary_value": { + "type": "string" + }, + "codepoint_name": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "custom" + } + ], + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "type": "string" + }, + "schedule": { + "type": "string" + } + }, + "required": [ + "name", + "action" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e5f0e833-412e-45a0-8054-7c7211c3b8ee", + "created": "2026-08-28T22:10:37.806Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 235, + "reference": "df073794-b65a-4ce5-a31b-d00a3648d064", + "type": "workflow", + "folder": "/QoSPolicyRules", + "document": { + "name": "Get a QoS Policy Rule by ID", + "description": "Get a QoS Policy Rule by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-qos-policy-rules-id", + "canvasName": "get-sse-config-v1-qos-policy-rules-id", + "summary": "get-sse-config-v1-qos-policy-rules-id", + "description": "get-sse-config-v1-qos-policy-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "400c62ce-9a41-41d3-a8e0-7339b1d0bf2a", + "created": "2026-08-28T22:10:37.778Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 236, + "reference": "b08eba49-3a23-4855-bd18-f6a7a3806eed", + "type": "workflow", + "folder": "/QoSPolicyRules", + "document": { + "name": "List QoS Policy Rules", + "description": "List QoS Policy Rules", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-qos-policy-rules", + "canvasName": "get-sse-config-v1-qos-policy-rules", + "summary": "get-sse-config-v1-qos-policy-rules", + "description": "get-sse-config-v1-qos-policy-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "position": "$var.job.position", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "position", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "18e11c62-8a33-49d2-8dd1-e9fd099e1ac1", + "created": "2026-08-28T22:10:37.690Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 237, + "reference": "f5011914-fcb8-44be-9cc4-dd9c69ab941e", + "type": "workflow", + "folder": "/QoSPolicyRules", + "document": { + "name": "Move a QoS Policy Rule", + "description": "Move a QoS Policy Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-qos-policy-rules-id:move", + "canvasName": "post-sse-config-v1-qos-policy-rules-id:move", + "summary": "post-sse-config-v1-qos-policy-rules-id:move", + "description": "post-sse-config-v1-qos-policy-rules-id:move", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + } + }, + "required": [ + "id", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9b3f10c2-0a63-433e-85b3-4af20e49c2f9", + "created": "2026-08-28T22:10:37.835Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 238, + "reference": "639be3ed-830a-4ddf-8bc7-5f2f8b3473ae", + "type": "workflow", + "folder": "/QoSProfiles", + "document": { + "name": "Create a QoS Profile", + "description": "Create a QoS Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-qos-profiles", + "canvasName": "post-sse-config-v1-qos-profiles", + "summary": "post-sse-config-v1-qos-profiles", + "description": "post-sse-config-v1-qos-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "aggregate_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 16000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "class_bandwidth_type": { + "oneOf": [ + { + "properties": { + "mbps": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "mbps", + "type": "object" + }, + { + "properties": { + "percentage": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "percentage", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "aggregate_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 16000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "class_bandwidth_type": { + "oneOf": [ + { + "properties": { + "mbps": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "mbps", + "type": "object" + }, + { + "properties": { + "percentage": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "percentage", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f42eb407-7c57-47fc-9292-3a2259641ae4", + "created": "2026-08-28T22:10:37.897Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 239, + "reference": "3883853d-7fa2-491f-9e5d-85831682af9a", + "type": "workflow", + "folder": "/QoSProfiles", + "document": { + "name": "Delete a QoS Profile", + "description": "Delete a QoS Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-qos-profiles-id", + "canvasName": "delete-sse-config-v1-qos-profiles-id", + "summary": "delete-sse-config-v1-qos-profiles-id", + "description": "delete-sse-config-v1-qos-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d0d845bf-ea12-4fc8-85a2-103c8158c356", + "created": "2026-08-28T22:10:37.925Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 240, + "reference": "4acbc4a2-4826-443a-97a6-632ce4c19ec1", + "type": "workflow", + "folder": "/QoSProfiles", + "document": { + "name": "Edit a QoS Profile", + "description": "Edit a QoS Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-qos-profiles-id", + "canvasName": "put-sse-config-v1-qos-profiles-id", + "summary": "put-sse-config-v1-qos-profiles-id", + "description": "put-sse-config-v1-qos-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "aggregate_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 16000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "class_bandwidth_type": { + "oneOf": [ + { + "properties": { + "mbps": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "mbps", + "type": "object" + }, + { + "properties": { + "percentage": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "percentage", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "aggregate_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 16000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "class_bandwidth_type": { + "oneOf": [ + { + "properties": { + "mbps": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in mbps", + "maximum": 60000, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "mbps", + "type": "object" + }, + { + "properties": { + "percentage": { + "properties": { + "class": { + "description": "QoS setting for traffic classes", + "items": { + "properties": { + "class_bandwidth": { + "properties": { + "egress_guaranteed": { + "description": "guaranteed sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + "egress_max": { + "description": "max sending bandwidth in percentage", + "maximum": 100, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "name": { + "description": "Traffic class", + "maxLength": 31, + "type": "string" + }, + "priority": { + "default": "medium", + "description": "traffic class priority", + "enum": [ + "real-time", + "high", + "medium", + "low" + ], + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "percentage", + "type": "object" + } + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1ca62651-8950-4b11-ba67-547c5d11e72b", + "created": "2026-08-28T22:10:37.996Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 241, + "reference": "b81051bf-f124-4c46-aa05-7e564fb13618", + "type": "workflow", + "folder": "/QoSProfiles", + "document": { + "name": "Get a QoS Profile", + "description": "Get a QoS Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-qos-profiles-id", + "canvasName": "get-sse-config-v1-qos-profiles-id", + "summary": "get-sse-config-v1-qos-profiles-id", + "description": "get-sse-config-v1-qos-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d4d4008b-e0fe-47f2-b291-3bdfb1a2fcbf", + "created": "2026-08-28T22:10:37.964Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 242, + "reference": "bf12c870-5ff0-4894-b9c6-670a099f0af1", + "type": "workflow", + "folder": "/QoSProfiles", + "document": { + "name": "List QoS Profiles", + "description": "List QoS Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-qos-profiles", + "canvasName": "get-sse-config-v1-qos-profiles", + "summary": "get-sse-config-v1-qos-profiles", + "description": "get-sse-config-v1-qos-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "32da1e10-916f-499a-b632-b426a3285851", + "created": "2026-08-28T22:10:37.866Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 243, + "reference": "b9020fb9-00c0-4f9a-9670-8d6e76a79e73", + "type": "workflow", + "folder": "/QuarantinedDevices", + "document": { + "name": "Delete Quarantined Devices", + "description": "Delete Quarantined Devices", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-quarantined-devices", + "canvasName": "delete-sse-config-v1-quarantined-devices", + "summary": "delete-sse-config-v1-quarantined-devices", + "description": "delete-sse-config-v1-quarantined-devices", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "host_id": "$var.job.host_id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "host_id": { + "type": "string" + } + }, + "required": [ + "host_id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "host_id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3420c101-f4d6-4042-a88b-8b35cca24e57", + "created": "2026-08-28T22:10:38.023Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 244, + "reference": "b4966965-0099-4fa7-a7ce-b7d3b67602f1", + "type": "workflow", + "folder": "/QuarantinedDevices", + "document": { + "name": "List Quarantined Devices", + "description": "List Quarantined Devices", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-quarantined-devices", + "canvasName": "get-sse-config-v1-quarantined-devices", + "summary": "get-sse-config-v1-quarantined-devices", + "description": "get-sse-config-v1-quarantined-devices", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "host_id": "$var.job.host_id", + "serial_number": "$var.job.serial_number" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "host_id": { + "type": "string" + }, + "serial_number": { + "type": "string" + } + }, + "required": [ + "host_id", + "serial_number" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "host_id": { + "type": "string" + }, + "serial_number": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f23bb429-c478-406b-80cc-7a609e8004fb", + "created": "2026-08-28T22:10:38.055Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 245, + "reference": "ee1a08cb-8519-4a89-a115-0dcf2585eac1", + "type": "workflow", + "folder": "/QuarantinedDevices", + "document": { + "name": "Quarantine Devices", + "description": "Quarantine Devices", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-quarantined-devices", + "canvasName": "post-sse-config-v1-quarantined-devices", + "summary": "post-sse-config-v1-quarantined-devices", + "description": "post-sse-config-v1-quarantined-devices", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "host_id": { + "description": "Device host id", + "type": "string" + }, + "ip": { + "description": "Device ip info", + "type": "string" + }, + "ipv6": { + "description": "Device ipv6 info", + "type": "string" + }, + "serial_number": { + "description": "Device serial number", + "type": "string" + } + }, + "required": [ + "host_id" + ], + "type": "object" + } + }, + "required": [ + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "spec": { + "properties": { + "host_id": { + "description": "Device host id", + "type": "string" + }, + "ip": { + "description": "Device ip info", + "type": "string" + }, + "ipv6": { + "description": "Device ipv6 info", + "type": "string" + }, + "serial_number": { + "description": "Device serial number", + "type": "string" + } + }, + "required": [ + "host_id" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6303240a-be5b-4587-bdb1-7ecd8256bc22", + "created": "2026-08-28T22:10:38.081Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 246, + "reference": "646623b9-8baa-46d9-9e4e-6e9bf2447426", + "type": "workflow", + "folder": "/RadiusServerProfiles", + "document": { + "name": "Create a Radius Server Profile", + "description": "Create a Radius Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-radius-server-profiles", + "canvasName": "post-sse-config-v1-radius-server-profiles", + "summary": "post-sse-config-v1-radius-server-profiles", + "description": "post-sse-config-v1-radius-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "snippet": "$var.job.snippet", + "device": "$var.job.device", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "CHAP": { + "type": "object" + } + }, + "title": "CHAP" + }, + { + "properties": { + "EAP_TTLS_with_PAP": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "EAP_TTLS_with_PAP" + }, + { + "properties": { + "PAP": { + "type": "object" + } + }, + "title": "PAP" + }, + { + "properties": { + "PEAP_MSCHAPv2": { + "properties": { + "allow_pwd_change": { + "type": "boolean" + }, + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_MSCHAPv2" + }, + { + "properties": { + "PEAP_with_GTC": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_with_GTC" + } + ], + "type": "object" + }, + "retries": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "server": { + "items": { + "properties": { + "ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 120, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "server" + ], + "type": "object" + } + }, + "required": [ + "folder", + "snippet", + "device", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "CHAP": { + "type": "object" + } + }, + "title": "CHAP" + }, + { + "properties": { + "EAP_TTLS_with_PAP": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "EAP_TTLS_with_PAP" + }, + { + "properties": { + "PAP": { + "type": "object" + } + }, + "title": "PAP" + }, + { + "properties": { + "PEAP_MSCHAPv2": { + "properties": { + "allow_pwd_change": { + "type": "boolean" + }, + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_MSCHAPv2" + }, + { + "properties": { + "PEAP_with_GTC": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_with_GTC" + } + ], + "type": "object" + }, + "retries": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "server": { + "items": { + "properties": { + "ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 120, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e2da3583-b05f-4cb9-9660-4a387a4fcc84", + "created": "2026-08-28T22:10:38.158Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 247, + "reference": "703d49b5-d01d-4bfd-9b37-c8dfa7918bfc", + "type": "workflow", + "folder": "/RadiusServerProfiles", + "document": { + "name": "Delete a Radius Server Profile", + "description": "Delete a Radius Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-radius-server-profiles-id", + "canvasName": "delete-sse-config-v1-radius-server-profiles-id", + "summary": "delete-sse-config-v1-radius-server-profiles-id", + "description": "delete-sse-config-v1-radius-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ed844960-5004-43e0-84b5-3b467e8471a0", + "created": "2026-08-28T22:10:38.186Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 248, + "reference": "e6af5781-3257-49f3-b949-c1986b751526", + "type": "workflow", + "folder": "/RadiusServerProfiles", + "document": { + "name": "Edit a Radius Server Profile", + "description": "Edit a Radius Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-radius-server-profiles-id", + "canvasName": "put-sse-config-v1-radius-server-profiles-id", + "summary": "put-sse-config-v1-radius-server-profiles-id", + "description": "put-sse-config-v1-radius-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "CHAP": { + "type": "object" + } + }, + "title": "CHAP" + }, + { + "properties": { + "EAP_TTLS_with_PAP": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "EAP_TTLS_with_PAP" + }, + { + "properties": { + "PAP": { + "type": "object" + } + }, + "title": "PAP" + }, + { + "properties": { + "PEAP_MSCHAPv2": { + "properties": { + "allow_pwd_change": { + "type": "boolean" + }, + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_MSCHAPv2" + }, + { + "properties": { + "PEAP_with_GTC": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_with_GTC" + } + ], + "type": "object" + }, + "retries": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "server": { + "items": { + "properties": { + "ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 120, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "server" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "CHAP": { + "type": "object" + } + }, + "title": "CHAP" + }, + { + "properties": { + "EAP_TTLS_with_PAP": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "EAP_TTLS_with_PAP" + }, + { + "properties": { + "PAP": { + "type": "object" + } + }, + "title": "PAP" + }, + { + "properties": { + "PEAP_MSCHAPv2": { + "properties": { + "allow_pwd_change": { + "type": "boolean" + }, + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_MSCHAPv2" + }, + { + "properties": { + "PEAP_with_GTC": { + "properties": { + "anon_outer_id": { + "type": "boolean" + }, + "radius_cert_profile": { + "type": "string" + } + }, + "type": "object" + } + }, + "title": "PEAP_with_GTC" + } + ], + "type": "object" + }, + "retries": { + "maximum": 5, + "minimum": 1, + "type": "integer" + }, + "server": { + "items": { + "properties": { + "ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 120, + "minimum": 1, + "type": "integer" + } + }, + "required": [ + "server" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8ac2e9e0-fae6-4f3b-80fd-b4a0a4904741", + "created": "2026-08-28T22:10:38.246Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 249, + "reference": "bea42d80-4619-4a67-9785-51e747e383a4", + "type": "workflow", + "folder": "/RadiusServerProfiles", + "document": { + "name": "Get a Radius Server Profile", + "description": "Get a Radius Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-radius-server-profiles-id", + "canvasName": "get-sse-config-v1-radius-server-profiles-id", + "summary": "get-sse-config-v1-radius-server-profiles-id", + "description": "get-sse-config-v1-radius-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "082dd8c3-267e-4321-a3b8-0c294b80194e", + "created": "2026-08-28T22:10:38.215Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 250, + "reference": "16f49c2d-c775-4959-98cd-bbffed64d631", + "type": "workflow", + "folder": "/RadiusServerProfiles", + "document": { + "name": "List All Radius Server Profiles", + "description": "List All Radius Server Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-radius-server-profiles", + "canvasName": "get-sse-config-v1-radius-server-profiles", + "summary": "get-sse-config-v1-radius-server-profiles", + "description": "get-sse-config-v1-radius-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "snippet": "$var.job.snippet", + "device": "$var.job.device", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "snippet", + "device", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2b2f1310-b2dc-40aa-8432-df164d4c1d99", + "created": "2026-08-28T22:10:38.111Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 251, + "reference": "81bd5410-abe2-4913-a9ef-ae48caf78312", + "type": "workflow", + "folder": "/Regions", + "document": { + "name": "Create a Region", + "description": "Create a Region", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-regions", + "canvasName": "post-sse-config-v1-regions", + "summary": "post-sse-config-v1-regions", + "description": "post-sse-config-v1-regions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "address": { + "items": { + "type": "string", + "x-panMultiple": [] + }, + "type": "array" + }, + "geo_location": { + "properties": { + "latitude": { + "description": "latitude coordinate", + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "description": "longitude coordinate", + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "latitude", + "longitude" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "address": { + "items": { + "type": "string", + "x-panMultiple": [] + }, + "type": "array" + }, + "geo_location": { + "properties": { + "latitude": { + "description": "latitude coordinate", + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "description": "longitude coordinate", + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "latitude", + "longitude" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2a653d66-4a59-4821-8968-9b095d88210a", + "created": "2026-08-28T22:10:38.304Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 252, + "reference": "4a3d9274-0d04-43d8-9919-3d54fb04c9c4", + "type": "workflow", + "folder": "/Regions", + "document": { + "name": "Delete a Region", + "description": "Delete a Region", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-regions-id", + "canvasName": "delete-sse-config-v1-regions-id", + "summary": "delete-sse-config-v1-regions-id", + "description": "delete-sse-config-v1-regions-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "c6b87d40-b894-4509-9b5f-1495cf93cee4", + "created": "2026-08-28T22:10:38.334Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 253, + "reference": "405ea32b-7fd1-4e8d-8fe7-21945285aaac", + "type": "workflow", + "folder": "/Regions", + "document": { + "name": "Edit a Region", + "description": "Edit a Region", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-regions-id", + "canvasName": "put-sse-config-v1-regions-id", + "summary": "put-sse-config-v1-regions-id", + "description": "put-sse-config-v1-regions-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "address": { + "items": { + "type": "string", + "x-panMultiple": [] + }, + "type": "array" + }, + "geo_location": { + "properties": { + "latitude": { + "description": "latitude coordinate", + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "description": "longitude coordinate", + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "latitude", + "longitude" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "address": { + "items": { + "type": "string", + "x-panMultiple": [] + }, + "type": "array" + }, + "geo_location": { + "properties": { + "latitude": { + "description": "latitude coordinate", + "format": "float", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "longitude": { + "description": "longitude coordinate", + "format": "float", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "latitude", + "longitude" + ], + "type": "object" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "30514d53-81ef-464a-aeaf-bfb6f7f2e7a7", + "created": "2026-08-28T22:10:38.387Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 254, + "reference": "c0faa1e9-a441-4b43-9d82-d358a01ad834", + "type": "workflow", + "folder": "/Regions", + "document": { + "name": "Get a Region by ID", + "description": "Get a Region by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-regions-id", + "canvasName": "get-sse-config-v1-regions-id", + "summary": "get-sse-config-v1-regions-id", + "description": "get-sse-config-v1-regions-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3799bb16-3493-458b-af80-bbaccb4f662e", + "created": "2026-08-28T22:10:38.361Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 255, + "reference": "fbee4e15-1c59-410b-a67c-4c7439e90237", + "type": "workflow", + "folder": "/Regions", + "document": { + "name": "List Regions", + "description": "List Regions", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-regions", + "canvasName": "get-sse-config-v1-regions", + "summary": "get-sse-config-v1-regions", + "description": "get-sse-config-v1-regions", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5e9465ac-9973-4c98-8e31-8fc7a0adce7c", + "created": "2026-08-28T22:10:38.277Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 256, + "reference": "eac50893-6d62-4aea-8ada-699bda26f0b5", + "type": "workflow", + "folder": "/RemoteNetworks", + "document": { + "name": "Create Remote Networks", + "description": "Create Remote Networks", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-remote-networks", + "canvasName": "post-sse-config-v1-remote-networks", + "summary": "post-sse-config-v1-remote-networks", + "description": "post-sse-config-v1-remote-networks", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "ecmp_load_balancing": { + "default": "disable", + "enum": [ + "enable", + "disable" + ], + "type": "string" + }, + "ecmp_tunnels": { + "description": "ecmp_tunnels is required when ecmp_load_balancing is enable", + "items": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "ipsec_tunnel": { + "type": "string" + }, + "local_ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "required": [ + "name", + "ipsec_tunnel" + ], + "type": "object" + }, + "maxLength": 4, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ipsec_tunnel": { + "description": "ipsec_tunnel is required when ecmp_load_balancing is disable", + "type": "string" + }, + "license_type": { + "default": "FWAAS-AGGREGATE", + "description": "New customer will only be on aggregate bandwidth licensing", + "minLength": 1, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "region": { + "minLength": 1, + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "spn_name": { + "description": "spn-name is needed when license_type is FWAAS-AGGREGATE", + "type": "string" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "region", + "license_type" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "ecmp_load_balancing": { + "default": "disable", + "enum": [ + "enable", + "disable" + ], + "type": "string" + }, + "ecmp_tunnels": { + "description": "ecmp_tunnels is required when ecmp_load_balancing is enable", + "items": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "ipsec_tunnel": { + "type": "string" + }, + "local_ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "required": [ + "name", + "ipsec_tunnel" + ], + "type": "object" + }, + "maxLength": 4, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ipsec_tunnel": { + "description": "ipsec_tunnel is required when ecmp_load_balancing is disable", + "type": "string" + }, + "license_type": { + "default": "FWAAS-AGGREGATE", + "description": "New customer will only be on aggregate bandwidth licensing", + "minLength": 1, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "region": { + "minLength": 1, + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "spn_name": { + "description": "spn-name is needed when license_type is FWAAS-AGGREGATE", + "type": "string" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "region", + "license_type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1b002c11-864a-4f5a-8abd-6bf4e1b0d009", + "created": "2026-08-28T22:10:38.447Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 257, + "reference": "076eae61-a11e-4347-989a-4569de5ff6d7", + "type": "workflow", + "folder": "/RemoteNetworks", + "document": { + "name": "Delete a Remote Network", + "description": "Delete a Remote Network", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-remote-networks-id", + "canvasName": "delete-sse-config-v1-remote-networks-id", + "summary": "delete-sse-config-v1-remote-networks-id", + "description": "delete-sse-config-v1-remote-networks-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d856e0fa-eb43-405a-9640-64e7010ef5e4", + "created": "2026-08-28T22:10:38.473Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 258, + "reference": "652a1d96-6e4e-41a4-ad8a-bc799c7dae4c", + "type": "workflow", + "folder": "/RemoteNetworks", + "document": { + "name": "Edit a Remote Network", + "description": "Edit a Remote Network", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-remote-networks-id", + "canvasName": "put-sse-config-v1-remote-networks-id", + "summary": "put-sse-config-v1-remote-networks-id", + "description": "put-sse-config-v1-remote-networks-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "ecmp_load_balancing": { + "default": "disable", + "enum": [ + "enable", + "disable" + ], + "type": "string" + }, + "ecmp_tunnels": { + "description": "ecmp_tunnels is required when ecmp_load_balancing is enable", + "items": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "ipsec_tunnel": { + "type": "string" + }, + "local_ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "required": [ + "name", + "ipsec_tunnel" + ], + "type": "object" + }, + "maxLength": 4, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ipsec_tunnel": { + "description": "ipsec_tunnel is required when ecmp_load_balancing is disable", + "type": "string" + }, + "license_type": { + "default": "FWAAS-AGGREGATE", + "description": "New customer will only be on aggregate bandwidth licensing", + "minLength": 1, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "region": { + "minLength": 1, + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "spn_name": { + "description": "spn-name is needed when license_type is FWAAS-AGGREGATE", + "type": "string" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "region", + "license_type" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "ecmp_load_balancing": { + "default": "disable", + "enum": [ + "enable", + "disable" + ], + "type": "string" + }, + "ecmp_tunnels": { + "description": "ecmp_tunnels is required when ecmp_load_balancing is enable", + "items": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "ipsec_tunnel": { + "type": "string" + }, + "local_ip_address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "required": [ + "name", + "ipsec_tunnel" + ], + "type": "object" + }, + "maxLength": 4, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "ipsec_tunnel": { + "description": "ipsec_tunnel is required when ecmp_load_balancing is disable", + "type": "string" + }, + "license_type": { + "default": "FWAAS-AGGREGATE", + "description": "New customer will only be on aggregate bandwidth licensing", + "minLength": 1, + "type": "string" + }, + "name": { + "description": "Alphanumeric string begin with letter: [0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "properties": { + "bgp": { + "properties": { + "do_not_export_routes": { + "type": "boolean" + }, + "enable": { + "type": "boolean" + }, + "local_ip_address": { + "type": "string" + }, + "originate_default_route": { + "type": "boolean" + }, + "peer_as": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "peering_type": { + "description": "Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering.", + "enum": [ + "exchange-v4-over-v4", + "exchange-v4-v6-over-v4", + "exchange-v4-over-v4-v6-over-v6", + "exchange-v6-over-v6" + ], + "type": "string" + }, + "secret": { + "type": "string" + }, + "summarize_mobile_user_routes": { + "type": "boolean" + } + }, + "type": "object" + }, + "bgp_peer": { + "properties": { + "local_ip_address": { + "type": "string" + }, + "peer_ip_address": { + "type": "string" + }, + "secret": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "region": { + "minLength": 1, + "type": "string" + }, + "secondary_ipsec_tunnel": { + "type": "string" + }, + "spn_name": { + "description": "spn-name is needed when license_type is FWAAS-AGGREGATE", + "type": "string" + }, + "subnets": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "region", + "license_type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "71f49dca-773d-44b0-a761-4c05ecd0e349", + "created": "2026-08-28T22:10:38.533Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 259, + "reference": "942c4d9d-c0a5-4b44-89b3-b38287ee832e", + "type": "workflow", + "folder": "/RemoteNetworks", + "document": { + "name": "Get a Remote Network", + "description": "Get a Remote Network", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-remote-networks-id", + "canvasName": "get-sse-config-v1-remote-networks-id", + "summary": "get-sse-config-v1-remote-networks-id", + "description": "get-sse-config-v1-remote-networks-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8889be9a-dadb-4303-81a4-35f43263c446", + "created": "2026-08-28T22:10:38.503Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 260, + "reference": "1aface32-9e3b-49a7-8f65-cb165497e229", + "type": "workflow", + "folder": "/RemoteNetworks", + "document": { + "name": "List Remote Networks", + "description": "List Remote Networks", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-remote-networks", + "canvasName": "get-sse-config-v1-remote-networks", + "summary": "get-sse-config-v1-remote-networks", + "description": "get-sse-config-v1-remote-networks", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "fd96bf6c-bd93-41d0-928f-edb43c6114c9", + "created": "2026-08-28T22:10:38.419Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 261, + "reference": "cec11eef-b5d5-4c23-979b-0116c2a3042f", + "type": "workflow", + "folder": "/SAMLServerProfiles", + "document": { + "name": "Create a SAML Server Profile", + "description": "Create a SAML Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-saml-server-profiles", + "canvasName": "post-sse-config-v1-saml-server-profiles", + "summary": "post-sse-config-v1-saml-server-profiles", + "description": "post-sse-config-v1-saml-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "certificate": { + "maxLength": 63, + "type": "string" + }, + "entity_id": { + "maxLength": 1024, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "max_clock_skew": { + "maximum": 900, + "minimum": 1, + "type": "integer" + }, + "slo_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_url": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "validate_idp_certificate": { + "type": "boolean" + }, + "want_auth_requests_signed": { + "type": "boolean" + } + }, + "required": [ + "certificate" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "certificate": { + "maxLength": 63, + "type": "string" + }, + "entity_id": { + "maxLength": 1024, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "max_clock_skew": { + "maximum": 900, + "minimum": 1, + "type": "integer" + }, + "slo_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_url": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "validate_idp_certificate": { + "type": "boolean" + }, + "want_auth_requests_signed": { + "type": "boolean" + } + }, + "required": [ + "certificate" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5af0111f-71b8-4d1b-b245-27746ff72a2a", + "created": "2026-08-28T22:10:38.595Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 262, + "reference": "021fe9ea-b02c-4905-907d-7f86491bbb29", + "type": "workflow", + "folder": "/SAMLServerProfiles", + "document": { + "name": "Delete a SAML Server Profile", + "description": "Delete a SAML Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-saml-server-profiles-id", + "canvasName": "delete-sse-config-v1-saml-server-profiles-id", + "summary": "delete-sse-config-v1-saml-server-profiles-id", + "description": "delete-sse-config-v1-saml-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "fb83729b-c435-42a4-b099-534bc0ef9db6", + "created": "2026-08-28T22:10:38.622Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 263, + "reference": "3033098b-a5c0-4876-96fa-44a645e178d1", + "type": "workflow", + "folder": "/SAMLServerProfiles", + "document": { + "name": "Edit a SAML Server Profile", + "description": "Edit a SAML Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-saml-server-profiles-id", + "canvasName": "put-sse-config-v1-saml-server-profiles-id", + "summary": "put-sse-config-v1-saml-server-profiles-id", + "description": "put-sse-config-v1-saml-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "certificate": { + "maxLength": 63, + "type": "string" + }, + "entity_id": { + "maxLength": 1024, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "max_clock_skew": { + "maximum": 900, + "minimum": 1, + "type": "integer" + }, + "slo_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_url": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "validate_idp_certificate": { + "type": "boolean" + }, + "want_auth_requests_signed": { + "type": "boolean" + } + }, + "required": [ + "certificate" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "certificate": { + "maxLength": 63, + "type": "string" + }, + "entity_id": { + "maxLength": 1024, + "minLength": 1, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "max_clock_skew": { + "maximum": 900, + "minimum": 1, + "type": "integer" + }, + "slo_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_bindings": { + "enum": [ + "post", + "redirect" + ], + "type": "string" + }, + "sso_url": { + "maxLength": 255, + "minLength": 1, + "type": "string" + }, + "validate_idp_certificate": { + "type": "boolean" + }, + "want_auth_requests_signed": { + "type": "boolean" + } + }, + "required": [ + "certificate" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3af3f365-dd2d-43a9-bf6b-cafd2e1126f8", + "created": "2026-08-28T22:10:38.680Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 264, + "reference": "585e806d-75d5-43ba-baa2-183222b6812e", + "type": "workflow", + "folder": "/SAMLServerProfiles", + "document": { + "name": "Get a SAML Server Profile", + "description": "Get a SAML Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-saml-server-profiles-id", + "canvasName": "get-sse-config-v1-saml-server-profiles-id", + "summary": "get-sse-config-v1-saml-server-profiles-id", + "description": "get-sse-config-v1-saml-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3fd8a949-c8a1-4491-afc9-c8c12673d7d2", + "created": "2026-08-28T22:10:38.649Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 265, + "reference": "be14e18e-e46c-4fb3-8911-add7383444a6", + "type": "workflow", + "folder": "/SAMLServerProfiles", + "document": { + "name": "List All SAML Server Profiles", + "description": "List All SAML Server Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-saml-server-profiles", + "canvasName": "get-sse-config-v1-saml-server-profiles", + "summary": "get-sse-config-v1-saml-server-profiles", + "description": "get-sse-config-v1-saml-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e0a3246b-5945-4a62-bc91-4accb30437ff", + "created": "2026-08-28T22:10:38.561Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 266, + "reference": "fb939083-f59b-4a68-8388-abd6edacd92b", + "type": "workflow", + "folder": "/SCEPProfiles", + "document": { + "name": "Create SCEP Profiles", + "description": "Create SCEP Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-scep-profiles", + "canvasName": "post-sse-config-v1-scep-profiles", + "summary": "post-sse-config-v1-scep-profiles", + "description": "post-sse-config-v1-scep-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "type": "$var.job.type", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "type": { + "enum": [ + "cloud", + "container" + ], + "type": "string" + }, + "spec": { + "properties": { + "algorithm": { + "properties": { + "rsa": { + "properties": { + "rsa_nbits": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ca_identity_name": { + "type": "string" + }, + "certificate_attributes": { + "oneOf": [ + { + "properties": { + "rfc822name": { + "type": "string" + } + }, + "title": "rfc822name" + }, + { + "properties": { + "dnsname": { + "type": "string" + } + }, + "title": "dnsname" + }, + { + "properties": { + "uniform_resource_identifier": { + "type": "string" + } + }, + "title": "uniform_resource_identifier" + } + ], + "type": "object" + }, + "digest": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "scep_ca_cert": { + "type": "string" + }, + "scep_challenge": { + "oneOf": [ + { + "properties": { + "none": { + "default": "", + "enum": [ + "" + ], + "type": "string" + } + }, + "title": "none" + }, + { + "properties": { + "fixed": { + "description": "Challenge to use for SCEP server on mobile clients", + "maxLength": 1024, + "minLength": 0, + "type": "string" + } + }, + "title": "fixed" + }, + { + "properties": { + "dynamic": { + "properties": { + "otp_server_url": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "password": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "dynamic" + } + ], + "type": "object" + }, + "scep_client_cert": { + "type": "string" + }, + "scep_url": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "use_as_digital_signature": { + "type": "boolean" + }, + "use_for_key_encipherment": { + "type": "boolean" + } + }, + "required": [ + "name", + "scep_url", + "ca_identity_name", + "rsa_nbits", + "digest" + ], + "type": "object" + } + }, + "required": [ + "type", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "type": { + "enum": [ + "cloud", + "container" + ], + "type": "string" + }, + "spec": { + "properties": { + "algorithm": { + "properties": { + "rsa": { + "properties": { + "rsa_nbits": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ca_identity_name": { + "type": "string" + }, + "certificate_attributes": { + "oneOf": [ + { + "properties": { + "rfc822name": { + "type": "string" + } + }, + "title": "rfc822name" + }, + { + "properties": { + "dnsname": { + "type": "string" + } + }, + "title": "dnsname" + }, + { + "properties": { + "uniform_resource_identifier": { + "type": "string" + } + }, + "title": "uniform_resource_identifier" + } + ], + "type": "object" + }, + "digest": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "scep_ca_cert": { + "type": "string" + }, + "scep_challenge": { + "oneOf": [ + { + "properties": { + "none": { + "default": "", + "enum": [ + "" + ], + "type": "string" + } + }, + "title": "none" + }, + { + "properties": { + "fixed": { + "description": "Challenge to use for SCEP server on mobile clients", + "maxLength": 1024, + "minLength": 0, + "type": "string" + } + }, + "title": "fixed" + }, + { + "properties": { + "dynamic": { + "properties": { + "otp_server_url": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "password": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "dynamic" + } + ], + "type": "object" + }, + "scep_client_cert": { + "type": "string" + }, + "scep_url": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "use_as_digital_signature": { + "type": "boolean" + }, + "use_for_key_encipherment": { + "type": "boolean" + } + }, + "required": [ + "name", + "scep_url", + "ca_identity_name", + "rsa_nbits", + "digest" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "0712ae27-58de-4319-9d49-b4f71d2c11bd", + "created": "2026-08-28T22:10:38.737Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 267, + "reference": "4b719eb2-c24d-4abc-8246-545bebde955a", + "type": "workflow", + "folder": "/SCEPProfiles", + "document": { + "name": "Delete a SCEP Profile", + "description": "Delete a SCEP Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-scep-profiles-id", + "canvasName": "delete-sse-config-v1-scep-profiles-id", + "summary": "delete-sse-config-v1-scep-profiles-id", + "description": "delete-sse-config-v1-scep-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "16638633-9a31-48a7-95a9-9be3d739a3ee", + "created": "2026-08-28T22:10:38.769Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 268, + "reference": "db30065e-5c41-4783-8538-a6b47dce0abb", + "type": "workflow", + "folder": "/SCEPProfiles", + "document": { + "name": "Edit a SCEP Profile", + "description": "Edit a SCEP Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-scep-profiles-id", + "canvasName": "put-sse-config-v1-scep-profiles-id", + "summary": "put-sse-config-v1-scep-profiles-id", + "description": "put-sse-config-v1-scep-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "algorithm": { + "properties": { + "rsa": { + "properties": { + "rsa_nbits": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ca_identity_name": { + "type": "string" + }, + "certificate_attributes": { + "oneOf": [ + { + "properties": { + "rfc822name": { + "type": "string" + } + }, + "title": "rfc822name" + }, + { + "properties": { + "dnsname": { + "type": "string" + } + }, + "title": "dnsname" + }, + { + "properties": { + "uniform_resource_identifier": { + "type": "string" + } + }, + "title": "uniform_resource_identifier" + } + ], + "type": "object" + }, + "digest": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "scep_ca_cert": { + "type": "string" + }, + "scep_challenge": { + "oneOf": [ + { + "properties": { + "none": { + "default": "", + "enum": [ + "" + ], + "type": "string" + } + }, + "title": "none" + }, + { + "properties": { + "fixed": { + "description": "Challenge to use for SCEP server on mobile clients", + "maxLength": 1024, + "minLength": 0, + "type": "string" + } + }, + "title": "fixed" + }, + { + "properties": { + "dynamic": { + "properties": { + "otp_server_url": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "password": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "dynamic" + } + ], + "type": "object" + }, + "scep_client_cert": { + "type": "string" + }, + "scep_url": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "use_as_digital_signature": { + "type": "boolean" + }, + "use_for_key_encipherment": { + "type": "boolean" + } + }, + "required": [ + "name", + "scep_url", + "ca_identity_name", + "rsa_nbits", + "digest" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "algorithm": { + "properties": { + "rsa": { + "properties": { + "rsa_nbits": { + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "ca_identity_name": { + "type": "string" + }, + "certificate_attributes": { + "oneOf": [ + { + "properties": { + "rfc822name": { + "type": "string" + } + }, + "title": "rfc822name" + }, + { + "properties": { + "dnsname": { + "type": "string" + } + }, + "title": "dnsname" + }, + { + "properties": { + "uniform_resource_identifier": { + "type": "string" + } + }, + "title": "uniform_resource_identifier" + } + ], + "type": "object" + }, + "digest": { + "type": "string" + }, + "fingerprint": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "scep_ca_cert": { + "type": "string" + }, + "scep_challenge": { + "oneOf": [ + { + "properties": { + "none": { + "default": "", + "enum": [ + "" + ], + "type": "string" + } + }, + "title": "none" + }, + { + "properties": { + "fixed": { + "description": "Challenge to use for SCEP server on mobile clients", + "maxLength": 1024, + "minLength": 0, + "type": "string" + } + }, + "title": "fixed" + }, + { + "properties": { + "dynamic": { + "properties": { + "otp_server_url": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "password": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "username": { + "maxLength": 255, + "minLength": 0, + "type": "string" + } + }, + "type": "object" + } + }, + "title": "dynamic" + } + ], + "type": "object" + }, + "scep_client_cert": { + "type": "string" + }, + "scep_url": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "use_as_digital_signature": { + "type": "boolean" + }, + "use_for_key_encipherment": { + "type": "boolean" + } + }, + "required": [ + "name", + "scep_url", + "ca_identity_name", + "rsa_nbits", + "digest" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "18d9f2b4-b374-4f50-8dd9-a085aa13221b", + "created": "2026-08-28T22:10:38.831Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 269, + "reference": "3eeda3bb-8823-4909-9507-d825d1096d0c", + "type": "workflow", + "folder": "/SCEPProfiles", + "document": { + "name": "Get a SCEP Profile", + "description": "Get a SCEP Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-scep-profiles-id", + "canvasName": "get-sse-config-v1-scep-profiles-id", + "summary": "get-sse-config-v1-scep-profiles-id", + "description": "get-sse-config-v1-scep-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "bd354007-86a3-405e-827b-12b32451009d", + "created": "2026-08-28T22:10:38.800Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 270, + "reference": "16194974-d885-4625-848d-7377383c6418", + "type": "workflow", + "folder": "/SCEPProfiles", + "document": { + "name": "List SCEP Profiles", + "description": "List SCEP Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-scep-profiles", + "canvasName": "get-sse-config-v1-scep-profiles", + "summary": "get-sse-config-v1-scep-profiles", + "description": "get-sse-config-v1-scep-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "fd47a361-c281-4705-b2d3-d2633cbde1fd", + "created": "2026-08-28T22:10:38.709Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 271, + "reference": "7fe7f5b0-8e52-4d8c-9538-bf157a856707", + "type": "workflow", + "folder": "/Schedules", + "document": { + "name": "Create a Schedule", + "description": "Create a Schedule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-schedules", + "canvasName": "post-sse-config-v1-schedules", + "summary": "post-sse-config-v1-schedules", + "description": "post-sse-config-v1-schedules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "schedule_type": { + "oneOf": [ + { + "properties": { + "recurring": { + "oneOf": [ + { + "properties": { + "weekly": { + "properties": { + "friday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "monday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "saturday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "sunday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "thursday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "tuesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "wednesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "weekly" + }, + { + "properties": { + "daily": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "daily" + } + ], + "type": "object" + } + }, + "title": "recurring" + }, + { + "properties": { + "non_recurring": { + "items": { + "description": "Datetime range specification YYYY/MM/DD@hh:mm-YYYY/MM/DD@hh:mm (e.g. 2006/08/01@10:00-2007/12/31@23:59)", + "maxLength": 33, + "minLength": 33, + "pattern": "[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "non_recurring" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "schedule_type" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "schedule_type": { + "oneOf": [ + { + "properties": { + "recurring": { + "oneOf": [ + { + "properties": { + "weekly": { + "properties": { + "friday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "monday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "saturday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "sunday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "thursday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "tuesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "wednesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "weekly" + }, + { + "properties": { + "daily": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "daily" + } + ], + "type": "object" + } + }, + "title": "recurring" + }, + { + "properties": { + "non_recurring": { + "items": { + "description": "Datetime range specification YYYY/MM/DD@hh:mm-YYYY/MM/DD@hh:mm (e.g. 2006/08/01@10:00-2007/12/31@23:59)", + "maxLength": 33, + "minLength": 33, + "pattern": "[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "non_recurring" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "schedule_type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "c86b6a9b-2472-462b-a102-fac6a64d03ba", + "created": "2026-08-28T22:10:38.896Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 272, + "reference": "cbb2ee12-3e77-4ce5-8135-43053cec486a", + "type": "workflow", + "folder": "/Schedules", + "document": { + "name": "Delete a Schedule", + "description": "Delete a Schedule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-schedules-id", + "canvasName": "delete-sse-config-v1-schedules-id", + "summary": "delete-sse-config-v1-schedules-id", + "description": "delete-sse-config-v1-schedules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "351a5657-39a0-46b1-9cf3-be88d2dfbadd", + "created": "2026-08-28T22:10:38.923Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 273, + "reference": "9417e013-c94d-4ab5-936d-a662e0183d14", + "type": "workflow", + "folder": "/Schedules", + "document": { + "name": "Edit a Schedule", + "description": "Edit a Schedule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-schedules-id", + "canvasName": "put-sse-config-v1-schedules-id", + "summary": "put-sse-config-v1-schedules-id", + "description": "put-sse-config-v1-schedules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "schedule_type": { + "oneOf": [ + { + "properties": { + "recurring": { + "oneOf": [ + { + "properties": { + "weekly": { + "properties": { + "friday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "monday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "saturday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "sunday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "thursday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "tuesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "wednesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "weekly" + }, + { + "properties": { + "daily": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "daily" + } + ], + "type": "object" + } + }, + "title": "recurring" + }, + { + "properties": { + "non_recurring": { + "items": { + "description": "Datetime range specification YYYY/MM/DD@hh:mm-YYYY/MM/DD@hh:mm (e.g. 2006/08/01@10:00-2007/12/31@23:59)", + "maxLength": 33, + "minLength": 33, + "pattern": "[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "non_recurring" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "schedule_type" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 31, + "type": "string" + }, + "schedule_type": { + "oneOf": [ + { + "properties": { + "recurring": { + "oneOf": [ + { + "properties": { + "weekly": { + "properties": { + "friday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "monday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "saturday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "sunday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "thursday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "tuesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + }, + "wednesday": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "title": "weekly" + }, + { + "properties": { + "daily": { + "items": { + "description": "Time range specification hh:mm-hh:mm (e.g. 10:00-23:59)", + "maxLength": 11, + "minLength": 11, + "pattern": "([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "daily" + } + ], + "type": "object" + } + }, + "title": "recurring" + }, + { + "properties": { + "non_recurring": { + "items": { + "description": "Datetime range specification YYYY/MM/DD@hh:mm-YYYY/MM/DD@hh:mm (e.g. 2006/08/01@10:00-2007/12/31@23:59)", + "maxLength": 33, + "minLength": 33, + "pattern": "[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\\/([0][1-9]|[1][0-2])\\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])", + "type": "string" + }, + "type": "array" + } + }, + "title": "non_recurring" + } + ], + "type": "object" + } + }, + "required": [ + "name", + "schedule_type" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "fbb53674-5a2b-44fb-99e3-e54c186583b7", + "created": "2026-08-28T22:10:38.987Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 274, + "reference": "784ed1a7-fe2d-4642-94d8-598ada7679ed", + "type": "workflow", + "folder": "/Schedules", + "document": { + "name": "Get a Schedule by ID", + "description": "Get a Schedule by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-schedules-id", + "canvasName": "get-sse-config-v1-schedules-id", + "summary": "get-sse-config-v1-schedules-id", + "description": "get-sse-config-v1-schedules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8a6c6435-38bb-4893-b9ad-9ac0daf7c65e", + "created": "2026-08-28T22:10:38.955Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 275, + "reference": "dc8a2a54-79cc-44d6-ae3e-002314cc9369", + "type": "workflow", + "folder": "/Schedules", + "document": { + "name": "List Schedules", + "description": "List Schedules", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-schedules", + "canvasName": "get-sse-config-v1-schedules", + "summary": "get-sse-config-v1-schedules", + "description": "get-sse-config-v1-schedules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "75e0b000-445f-4051-9416-d829e5c65e40", + "created": "2026-08-28T22:10:38.865Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 276, + "reference": "6ed8a77e-6571-49b0-80be-e56f1d63298a", + "type": "workflow", + "folder": "/SecurityRules", + "document": { + "name": "Create a Security Rule", + "description": "Create a Security Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-security-rules", + "canvasName": "post-sse-config-v1-security-rules", + "summary": "post-sse-config-v1-security-rules", + "description": "post-sse-config-v1-security-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "action": { + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile_setting": { + "properties": { + "group": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + } + }, + "required": [ + "position", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "action": { + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile_setting": { + "properties": { + "group": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "212892b3-0481-41d0-bba6-23c4011543e7", + "created": "2026-08-28T22:10:39.050Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 277, + "reference": "aa91591a-c591-4ce2-89c1-71d180b882a9", + "type": "workflow", + "folder": "/SecurityRules", + "document": { + "name": "Delete a Security Rule", + "description": "Delete a Security Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-security-rules-id", + "canvasName": "delete-sse-config-v1-security-rules-id", + "summary": "delete-sse-config-v1-security-rules-id", + "description": "delete-sse-config-v1-security-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9c00f4a8-76fa-4b22-993b-c45bef0d8b25", + "created": "2026-08-28T22:10:39.080Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 278, + "reference": "960a9318-f902-4bec-8b66-497299b1c2e5", + "type": "workflow", + "folder": "/SecurityRules", + "document": { + "name": "Edit a Security Rule", + "description": "Edit a Security Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-security-rules-id", + "canvasName": "put-sse-config-v1-security-rules-id", + "summary": "put-sse-config-v1-security-rules-id", + "description": "put-sse-config-v1-security-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile_setting": { + "properties": { + "group": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": { + "type": "string" + }, + "destination": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "disabled": { + "type": "boolean" + }, + "from": { + "items": { + "type": "string" + }, + "type": "array" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "log_setting": { + "type": "string" + }, + "name": { + "type": "string" + }, + "negate_destination": { + "type": "boolean" + }, + "negate_source": { + "type": "boolean" + }, + "profile_setting": { + "properties": { + "group": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "service": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_hip": { + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "items": { + "type": "string" + }, + "type": "array" + }, + "tag": { + "items": { + "type": "string" + }, + "type": "array" + }, + "to": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "from", + "source", + "source_user", + "to", + "destination", + "application", + "service", + "category", + "action" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e35891d4-d115-43ff-b9d8-fdefff6ebd15", + "created": "2026-08-28T22:10:39.137Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 279, + "reference": "75cc27d4-877d-4c82-a95a-f656aedc1838", + "type": "workflow", + "folder": "/SecurityRules", + "document": { + "name": "Get a Security Rule", + "description": "Get a Security Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-security-rules-id", + "canvasName": "get-sse-config-v1-security-rules-id", + "summary": "get-sse-config-v1-security-rules-id", + "description": "get-sse-config-v1-security-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5083554d-c9db-4bf4-ab8e-28167640a887", + "created": "2026-08-28T22:10:39.106Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 280, + "reference": "4502baba-7e52-4c9b-9b6c-d424aa8bba3c", + "type": "workflow", + "folder": "/SecurityRules", + "document": { + "name": "List Security Rules", + "description": "List Security Rules", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-security-rules", + "canvasName": "get-sse-config-v1-security-rules", + "summary": "get-sse-config-v1-security-rules", + "description": "get-sse-config-v1-security-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "position": "$var.job.position", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "position", + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "position": { + "default": "pre", + "enum": [ + "pre", + "post" + ], + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5b3220ff-dc8f-4f89-9850-d1ba7e00d5c4", + "created": "2026-08-28T22:10:39.017Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 281, + "reference": "fd4ca67d-b620-430b-ad8e-e8f0dca6c636", + "type": "workflow", + "folder": "/SecurityRules", + "document": { + "name": "Move a Security Rule", + "description": "Move a Security Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-security-rules-id:move", + "canvasName": "post-sse-config-v1-security-rules-id:move", + "summary": "post-sse-config-v1-security-rules-id:move", + "description": "post-sse-config-v1-security-rules-id:move", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + } + }, + "required": [ + "id", + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "destination": { + "description": "A destination of the rule. Valid destination values are top, bottom, before and after.", + "enum": [ + "top", + "bottom", + "before", + "after" + ], + "type": "string" + }, + "destination_rule": { + "description": "A destination_rule attribute is required only if the destination value is before or after. Valid destination_rule values are existing rule UUIDs within the same container.", + "type": "string" + }, + "rulebase": { + "description": "A base of a rule. Valid rulebase values are pre and post.", + "enum": [ + "pre", + "post" + ], + "type": "string" + } + }, + "required": [ + "destination", + "rulebase" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2ed0fdd4-ce2d-4413-8d82-ec232dc9d374", + "created": "2026-08-28T22:10:39.169Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 282, + "reference": "99406988-5bcc-43d9-8c5d-9d04391b196d", + "type": "workflow", + "folder": "/ServiceConnectionGroups", + "document": { + "name": "Create Service Connection Groups", + "description": "Create Service Connection Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-service-connection-groups", + "canvasName": "post-sse-config-v1-service-connection-groups", + "summary": "post-sse-config-v1-service-connection-groups", + "description": "post-sse-config-v1-service-connection-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "disable_snat": { + "type": "boolean" + }, + "name": { + "description": "Name of the group.\n", + "type": "string" + }, + "pbf_only": { + "type": "boolean" + }, + "target": { + "description": "Array of service connection names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "target" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "disable_snat": { + "type": "boolean" + }, + "name": { + "description": "Name of the group.\n", + "type": "string" + }, + "pbf_only": { + "type": "boolean" + }, + "target": { + "description": "Array of service connection names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "target" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "8f59f5e6-d57a-4cd6-a7d4-fd0f08d6682e", + "created": "2026-08-28T22:10:39.228Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 283, + "reference": "3da4c89c-3c08-45e7-9104-300347f503dc", + "type": "workflow", + "folder": "/ServiceConnectionGroups", + "document": { + "name": "Delete a Service Connection Group", + "description": "Delete a Service Connection Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-service-connection-groups-id", + "canvasName": "delete-sse-config-v1-service-connection-groups-id", + "summary": "delete-sse-config-v1-service-connection-groups-id", + "description": "delete-sse-config-v1-service-connection-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "65951ba5-96d5-4024-a661-7518a211c1d2", + "created": "2026-08-28T22:10:39.255Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 284, + "reference": "9b67dec6-5ed1-4d98-9b13-b2f711a0a42a", + "type": "workflow", + "folder": "/ServiceConnectionGroups", + "document": { + "name": "Edit a Service Connection Group", + "description": "Edit a Service Connection Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-service-connection-groups-id", + "canvasName": "put-sse-config-v1-service-connection-groups-id", + "summary": "put-sse-config-v1-service-connection-groups-id", + "description": "put-sse-config-v1-service-connection-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "disable_snat": { + "type": "boolean" + }, + "name": { + "description": "Name of the group.\n", + "type": "string" + }, + "pbf_only": { + "type": "boolean" + }, + "target": { + "description": "Array of service connection names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "target" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "disable_snat": { + "type": "boolean" + }, + "name": { + "description": "Name of the group.\n", + "type": "string" + }, + "pbf_only": { + "type": "boolean" + }, + "target": { + "description": "Array of service connection names that belong to this group.\n", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "target" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "bbe81d02-f2fe-4946-9f94-acdffbda9925", + "created": "2026-08-28T22:10:39.314Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 285, + "reference": "179ca63d-6bd0-455b-aaef-6d587cb0ca7c", + "type": "workflow", + "folder": "/ServiceConnectionGroups", + "document": { + "name": "Get a Service Connection Group", + "description": "Get a Service Connection Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-service-connection-groups-id", + "canvasName": "get-sse-config-v1-service-connection-groups-id", + "summary": "get-sse-config-v1-service-connection-groups-id", + "description": "get-sse-config-v1-service-connection-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "cf0cf030-6432-49f1-8daa-9aa39a508ef4", + "created": "2026-08-28T22:10:39.284Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 286, + "reference": "e5c65bef-9541-454e-a256-cd2290086cfb", + "type": "workflow", + "folder": "/ServiceConnectionGroups", + "document": { + "name": "List Service Connection Groups", + "description": "List Service Connection Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-service-connection-groups", + "canvasName": "get-sse-config-v1-service-connection-groups", + "summary": "get-sse-config-v1-service-connection-groups", + "description": "get-sse-config-v1-service-connection-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3fd1fe5e-0765-4bad-a726-f629ee5d5a91", + "created": "2026-08-28T22:10:39.196Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 287, + "reference": "855a7e6d-b038-4d77-ae2b-d12d65089595", + "type": "workflow", + "folder": "/ServiceGroups", + "document": { + "name": "Create a Service Group", + "description": "Create a Service Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-service-groups", + "canvasName": "post-sse-config-v1-service-groups", + "summary": "post-sse-config-v1-service-groups", + "description": "post-sse-config-v1-service-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "description": "Associate services or service groups", + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "service", + "subPath": "name" + }, + { + "location": "shared", + "schema": "service-group", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for service group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "description": "Associate services or service groups", + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "service", + "subPath": "name" + }, + { + "location": "shared", + "schema": "service-group", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for service group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "452c41dd-30f1-46b1-b353-f2a04189e718", + "created": "2026-08-28T22:10:39.525Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 288, + "reference": "7aea7f99-e07a-4beb-9cd4-f4bb51605c85", + "type": "workflow", + "folder": "/ServiceGroups", + "document": { + "name": "Delete a Service Group", + "description": "Delete a Service Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-service-groups-id", + "canvasName": "delete-sse-config-v1-service-groups-id", + "summary": "delete-sse-config-v1-service-groups-id", + "description": "delete-sse-config-v1-service-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "740a263f-746b-4bc2-9f9d-98d9d4e6f19a", + "created": "2026-08-28T22:10:39.555Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 289, + "reference": "fcb4f0af-68e7-4016-a7ad-0dd2ff7ec120", + "type": "workflow", + "folder": "/ServiceGroups", + "document": { + "name": "Edit a Service Group", + "description": "Edit a Service Group", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-service-groups-id", + "canvasName": "put-sse-config-v1-service-groups-id", + "summary": "put-sse-config-v1-service-groups-id", + "description": "put-sse-config-v1-service-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "description": "Associate services or service groups", + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "service", + "subPath": "name" + }, + { + "location": "shared", + "schema": "service-group", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for service group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "members": { + "items": { + "description": "Associate services or service groups", + "maxLength": 63, + "type": "string", + "x-panMemberOf": [ + { + "location": "shared", + "schema": "service", + "subPath": "name" + }, + { + "location": "shared", + "schema": "service-group", + "subPath": "name" + } + ] + }, + "type": "array" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "tag": { + "description": "Tags for service group object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "members" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "66f5bce9-49c4-426f-acfd-ca33f3daad51", + "created": "2026-08-28T22:10:39.615Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 290, + "reference": "8b15ffce-ef1c-4ccf-ad92-ad92cbdc7c71", + "type": "workflow", + "folder": "/ServiceGroups", + "document": { + "name": "Get a Service Group by ID", + "description": "Get a Service Group by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-service-groups-id", + "canvasName": "get-sse-config-v1-service-groups-id", + "summary": "get-sse-config-v1-service-groups-id", + "description": "get-sse-config-v1-service-groups-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "467f73ed-6e88-4ee6-8dc0-3770fc1b0d02", + "created": "2026-08-28T22:10:39.588Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 291, + "reference": "bd8a4cb0-2b0b-4259-b9d8-e291fb7acd0d", + "type": "workflow", + "folder": "/ServiceGroups", + "document": { + "name": "List Service Groups", + "description": "List Service Groups", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-service-groups", + "canvasName": "get-sse-config-v1-service-groups", + "summary": "get-sse-config-v1-service-groups", + "description": "get-sse-config-v1-service-groups", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "253ec25a-f005-4941-9a71-3f68e38e6a5f", + "created": "2026-08-28T22:10:39.493Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 292, + "reference": "0dd36a86-66cc-4c96-a96e-aa8615828864", + "type": "workflow", + "folder": "/Services", + "document": { + "name": "Create a Service Object", + "description": "Create a Service Object", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-services", + "canvasName": "post-sse-config-v1-services", + "summary": "post-sse-config-v1-services", + "description": "post-sse-config-v1-services", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "tcp": { + "properties": { + "override": { + "properties": { + "halfclose_timeout": { + "default": 120, + "description": "tcp session half-close timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timeout": { + "default": 3600, + "description": "tcp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timewait_timeout": { + "default": 15, + "description": "tcp session time-wait timeout value (in second)", + "maximum": 600, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "tcp" + }, + { + "properties": { + "udp": { + "properties": { + "override": { + "properties": { + "timeout": { + "default": 30, + "description": "udp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "udp" + } + ], + "type": "object" + }, + "tag": { + "description": "Tags for service object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "protocol" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "tcp": { + "properties": { + "override": { + "properties": { + "halfclose_timeout": { + "default": 120, + "description": "tcp session half-close timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timeout": { + "default": 3600, + "description": "tcp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timewait_timeout": { + "default": 15, + "description": "tcp session time-wait timeout value (in second)", + "maximum": 600, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "tcp" + }, + { + "properties": { + "udp": { + "properties": { + "override": { + "properties": { + "timeout": { + "default": 30, + "description": "udp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "udp" + } + ], + "type": "object" + }, + "tag": { + "description": "Tags for service object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "protocol" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "e09f1c3f-32e8-49b3-bfcb-049818b7bdc1", + "created": "2026-08-28T22:10:39.678Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 293, + "reference": "22ad6aa8-f51d-4b92-973a-1c5abf47c09d", + "type": "workflow", + "folder": "/Services", + "document": { + "name": "Delete a Service", + "description": "Delete a Service", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-services-id", + "canvasName": "delete-sse-config-v1-services-id", + "summary": "delete-sse-config-v1-services-id", + "description": "delete-sse-config-v1-services-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "115a161d-ed5d-499b-9570-efd958e32950", + "created": "2026-08-28T22:10:39.706Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 294, + "reference": "b4387741-aea0-48b1-abe7-25e5e39d2e1c", + "type": "workflow", + "folder": "/Services", + "document": { + "name": "Edit a Service", + "description": "Edit a Service", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-services-id", + "canvasName": "put-sse-config-v1-services-id", + "summary": "put-sse-config-v1-services-id", + "description": "put-sse-config-v1-services-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "tcp": { + "properties": { + "override": { + "properties": { + "halfclose_timeout": { + "default": 120, + "description": "tcp session half-close timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timeout": { + "default": 3600, + "description": "tcp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timewait_timeout": { + "default": 15, + "description": "tcp session time-wait timeout value (in second)", + "maximum": 600, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "tcp" + }, + { + "properties": { + "udp": { + "properties": { + "override": { + "properties": { + "timeout": { + "default": 30, + "description": "udp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "udp" + } + ], + "type": "object" + }, + "tag": { + "description": "Tags for service object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "protocol" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "protocol": { + "oneOf": [ + { + "properties": { + "tcp": { + "properties": { + "override": { + "properties": { + "halfclose_timeout": { + "default": 120, + "description": "tcp session half-close timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timeout": { + "default": 3600, + "description": "tcp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + }, + "timewait_timeout": { + "default": 15, + "description": "tcp session time-wait timeout value (in second)", + "maximum": 600, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "tcp" + }, + { + "properties": { + "udp": { + "properties": { + "override": { + "properties": { + "timeout": { + "default": 30, + "description": "udp session timeout value (in second)", + "maximum": 604800, + "minimum": 1, + "type": "integer" + } + }, + "type": "object" + }, + "port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + }, + "source_port": { + "maxLength": 1023, + "minLength": 1, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + } + }, + "title": "udp" + } + ], + "type": "object" + }, + "tag": { + "description": "Tags for service object", + "items": { + "maxLength": 127, + "type": "string" + }, + "maxItems": 64, + "type": "array" + } + }, + "required": [ + "name", + "protocol" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ada575be-6f1f-42b0-9ed8-30409d36d826", + "created": "2026-08-28T22:10:39.771Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 295, + "reference": "d3c45f3d-2008-4747-8d31-68fc26bf69fe", + "type": "workflow", + "folder": "/Services", + "document": { + "name": "Get a Service by ID", + "description": "Get a Service by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-services-id", + "canvasName": "get-sse-config-v1-services-id", + "summary": "get-sse-config-v1-services-id", + "description": "get-sse-config-v1-services-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "45ad8f63-e9e6-4fe6-b9f8-80c93f86bbb9", + "created": "2026-08-28T22:10:39.735Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 296, + "reference": "7890e3ca-763e-4485-a945-7316b7d35620", + "type": "workflow", + "folder": "/Services", + "document": { + "name": "List Services", + "description": "List Services", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-services", + "canvasName": "get-sse-config-v1-services", + "summary": "get-sse-config-v1-services", + "description": "get-sse-config-v1-services", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2e7e2923-950f-45b6-81a2-46eaf7585476", + "created": "2026-08-28T22:10:39.644Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 297, + "reference": "0f60638b-bce3-42f8-b226-d8af3dc97cf0", + "type": "workflow", + "folder": "/TACACSServerProfiles", + "document": { + "name": "Create a TACACS Server Profile", + "description": "Create a TACACS Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-tacacs-server-profiles", + "canvasName": "post-sse-config-v1-tacacs-server-profiles", + "summary": "post-sse-config-v1-tacacs-server-profiles", + "description": "post-sse-config-v1-tacacs-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "snippet": "$var.job.snippet", + "device": "$var.job.device", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "enum": [ + "CHAP", + "PAP" + ], + "type": "string" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 30, + "minimum": 1, + "type": "integer" + }, + "use_single_connection": { + "type": "boolean" + } + }, + "required": [ + "server", + "protocol" + ], + "type": "object" + } + }, + "required": [ + "folder", + "snippet", + "device", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "enum": [ + "CHAP", + "PAP" + ], + "type": "string" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 30, + "minimum": 1, + "type": "integer" + }, + "use_single_connection": { + "type": "boolean" + } + }, + "required": [ + "server", + "protocol" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "73e4bdf5-9302-46c4-a06a-763decff141f", + "created": "2026-08-28T22:10:39.926Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 298, + "reference": "e291585e-3755-4b4d-9976-c9ce28653975", + "type": "workflow", + "folder": "/TACACSServerProfiles", + "document": { + "name": "Delete a TACACS Server Profile", + "description": "Delete a TACACS Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-tacacs-server-profiles-id", + "canvasName": "delete-sse-config-v1-tacacs-server-profiles-id", + "summary": "delete-sse-config-v1-tacacs-server-profiles-id", + "description": "delete-sse-config-v1-tacacs-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "70250a50-e22c-4822-9a8f-ff2cf1b25644", + "created": "2026-08-28T22:10:39.959Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 299, + "reference": "9b40772a-7baf-4eed-8cd8-3e3bd35817e1", + "type": "workflow", + "folder": "/TACACSServerProfiles", + "document": { + "name": "Edit a TACACS Server Profile", + "description": "Edit a TACACS Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-tacacs-server-profiles-id", + "canvasName": "put-sse-config-v1-tacacs-server-profiles-id", + "summary": "put-sse-config-v1-tacacs-server-profiles-id", + "description": "put-sse-config-v1-tacacs-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "enum": [ + "CHAP", + "PAP" + ], + "type": "string" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 30, + "minimum": 1, + "type": "integer" + }, + "use_single_connection": { + "type": "boolean" + } + }, + "required": [ + "server", + "protocol" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "protocol": { + "enum": [ + "CHAP", + "PAP" + ], + "type": "string" + }, + "server": { + "items": { + "properties": { + "address": { + "type": "string" + }, + "name": { + "type": "string" + }, + "port": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "secret": { + "maxLength": 64, + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "timeout": { + "maximum": 30, + "minimum": 1, + "type": "integer" + }, + "use_single_connection": { + "type": "boolean" + } + }, + "required": [ + "server", + "protocol" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9419b89a-7f1f-490d-8b5c-1807dbbf4f17", + "created": "2026-08-28T22:10:40.016Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 300, + "reference": "3d56c025-1665-4a0f-b61a-1fa4965291f7", + "type": "workflow", + "folder": "/TACACSServerProfiles", + "document": { + "name": "Get a TACACS Server Profile", + "description": "Get a TACACS Server Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-tacacs-server-profiles-id", + "canvasName": "get-sse-config-v1-tacacs-server-profiles-id", + "summary": "get-sse-config-v1-tacacs-server-profiles-id", + "description": "get-sse-config-v1-tacacs-server-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "6ab98082-77d5-477f-b197-9d224ace94e1", + "created": "2026-08-28T22:10:39.989Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 301, + "reference": "783d8c29-6884-4e36-93bd-9d678c98c93f", + "type": "workflow", + "folder": "/TACACSServerProfiles", + "document": { + "name": "List All TACACS Server Profiles", + "description": "List All TACACS Server Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-tacacs-server-profiles", + "canvasName": "get-sse-config-v1-tacacs-server-profiles", + "summary": "get-sse-config-v1-tacacs-server-profiles", + "description": "get-sse-config-v1-tacacs-server-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "snippet": "$var.job.snippet", + "device": "$var.job.device", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "snippet", + "device", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "snippet": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "device": { + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f90697dd-d60c-497c-9c98-468581d8a913", + "created": "2026-08-28T22:10:39.897Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 302, + "reference": "3677186a-1d16-468c-8739-a1cb96933b7c", + "type": "workflow", + "folder": "/Tags", + "document": { + "name": "Create a Tag", + "description": "Create a Tag", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-tags", + "canvasName": "post-sse-config-v1-tags", + "summary": "post-sse-config-v1-tags", + "description": "post-sse-config-v1-tags", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "color": { + "enum": [ + "Red", + "Green", + "Blue", + "Yellow", + "Copper", + "Orange", + "Purple", + "Gray", + "Light Green", + "Cyan", + "Light Gray", + "Blue Gray", + "Lime", + "Black", + "Gold", + "Brown", + "Olive", + "Maroon", + "Red-Orange", + "Yellow-Orange", + "Forest Green", + "Turquoise Blue", + "Azure Blue", + "Cerulean Blue", + "Midnight Blue", + "Medium Blue", + "Cobalt Blue", + "Violet Blue", + "Blue Violet", + "Medium Violet", + "Medium Rose", + "Lavender", + "Orchid", + "Thistle", + "Peach", + "Salmon", + "Magenta", + "Red Violet", + "Mahogany", + "Burnt Sienna", + "Chestnut" + ], + "type": "string" + }, + "comments": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 127, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "color": { + "enum": [ + "Red", + "Green", + "Blue", + "Yellow", + "Copper", + "Orange", + "Purple", + "Gray", + "Light Green", + "Cyan", + "Light Gray", + "Blue Gray", + "Lime", + "Black", + "Gold", + "Brown", + "Olive", + "Maroon", + "Red-Orange", + "Yellow-Orange", + "Forest Green", + "Turquoise Blue", + "Azure Blue", + "Cerulean Blue", + "Midnight Blue", + "Medium Blue", + "Cobalt Blue", + "Violet Blue", + "Blue Violet", + "Medium Violet", + "Medium Rose", + "Lavender", + "Orchid", + "Thistle", + "Peach", + "Salmon", + "Magenta", + "Red Violet", + "Mahogany", + "Burnt Sienna", + "Chestnut" + ], + "type": "string" + }, + "comments": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 127, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2862d9c7-2753-45cb-927b-21231e5e5e64", + "created": "2026-08-28T22:10:40.066Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 303, + "reference": "ab184f9a-c11e-4817-ae49-cc53baac81ce", + "type": "workflow", + "folder": "/Tags", + "document": { + "name": "Delete a Tag", + "description": "Delete a Tag", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-tags-id", + "canvasName": "delete-sse-config-v1-tags-id", + "summary": "delete-sse-config-v1-tags-id", + "description": "delete-sse-config-v1-tags-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a7f69f11-0eff-492b-96f6-a6e1b5a81e15", + "created": "2026-08-28T22:10:40.095Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 304, + "reference": "1ee67aa5-6839-43b3-be23-9f971a62668b", + "type": "workflow", + "folder": "/Tags", + "document": { + "name": "Edit a Tag", + "description": "Edit a Tag", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-tags-id", + "canvasName": "put-sse-config-v1-tags-id", + "summary": "put-sse-config-v1-tags-id", + "description": "put-sse-config-v1-tags-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "color": { + "enum": [ + "Red", + "Green", + "Blue", + "Yellow", + "Copper", + "Orange", + "Purple", + "Gray", + "Light Green", + "Cyan", + "Light Gray", + "Blue Gray", + "Lime", + "Black", + "Gold", + "Brown", + "Olive", + "Maroon", + "Red-Orange", + "Yellow-Orange", + "Forest Green", + "Turquoise Blue", + "Azure Blue", + "Cerulean Blue", + "Midnight Blue", + "Medium Blue", + "Cobalt Blue", + "Violet Blue", + "Blue Violet", + "Medium Violet", + "Medium Rose", + "Lavender", + "Orchid", + "Thistle", + "Peach", + "Salmon", + "Magenta", + "Red Violet", + "Mahogany", + "Burnt Sienna", + "Chestnut" + ], + "type": "string" + }, + "comments": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 127, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "color": { + "enum": [ + "Red", + "Green", + "Blue", + "Yellow", + "Copper", + "Orange", + "Purple", + "Gray", + "Light Green", + "Cyan", + "Light Gray", + "Blue Gray", + "Lime", + "Black", + "Gold", + "Brown", + "Olive", + "Maroon", + "Red-Orange", + "Yellow-Orange", + "Forest Green", + "Turquoise Blue", + "Azure Blue", + "Cerulean Blue", + "Midnight Blue", + "Medium Blue", + "Cobalt Blue", + "Violet Blue", + "Blue Violet", + "Medium Violet", + "Medium Rose", + "Lavender", + "Orchid", + "Thistle", + "Peach", + "Salmon", + "Magenta", + "Red Violet", + "Mahogany", + "Burnt Sienna", + "Chestnut" + ], + "type": "string" + }, + "comments": { + "maxLength": 1023, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "maxLength": 127, + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "12f04d74-6a82-4f48-83ce-f42948bf8b8b", + "created": "2026-08-28T22:10:40.157Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 305, + "reference": "0a0f7fb0-9320-4a1d-a65f-a487eae8a18a", + "type": "workflow", + "folder": "/Tags", + "document": { + "name": "Get a Tag by ID", + "description": "Get a Tag by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-tags-id", + "canvasName": "get-sse-config-v1-tags-id", + "summary": "get-sse-config-v1-tags-id", + "description": "get-sse-config-v1-tags-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3226191d-e0a7-41a3-9f87-5f9fdac43b93", + "created": "2026-08-28T22:10:40.129Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 306, + "reference": "c7df25b5-9eb5-41c1-810d-477452a1be04", + "type": "workflow", + "folder": "/Tags", + "document": { + "name": "Prisma Access List Tags", + "description": "Prisma Access List Tags", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-tags", + "canvasName": "get-sse-config-v1-tags", + "summary": "get-sse-config-v1-tags", + "description": "get-sse-config-v1-tags", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "911a3e90-be1f-4e64-90d6-4a898feee6d8", + "created": "2026-08-28T22:11:00.461Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 307, + "reference": "1ab0fa56-148c-4a2d-9f70-0d289f2615c6", + "type": "workflow", + "folder": "/TLSServiceProfiles", + "document": { + "name": "Create TLS Service Profiles", + "description": "Create TLS Service Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-tls-service-profiles", + "canvasName": "post-sse-config-v1-tls-service-profiles", + "summary": "post-sse-config-v1-tls-service-profiles", + "description": "post-sse-config-v1-tls-service-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "certificate": { + "description": "SSL certificate file name", + "maxLength": 255, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Profile name", + "maxLength": 127, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "protocol_settings": { + "properties": { + "auth_algo_sha1": { + "description": "Allow authentication SHA1", + "type": "boolean" + }, + "auth_algo_sha256": { + "description": "Allow authentication SHA256", + "type": "boolean" + }, + "auth_algo_sha384": { + "description": "Allow authentication SHA384", + "type": "boolean" + }, + "enc_algo_3des": { + "description": "Allow algorithm 3DES", + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "description": "Allow algorithm AES-128-CBC", + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "description": "Allow algorithm AES-128-GCM", + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "description": "Allow algorithm AES-256-CBC", + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "description": "Allow algorithm AES-256-GCM", + "type": "boolean" + }, + "enc_algo_rc4": { + "description": "Allow algorithm RC4", + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "description": "Allow algorithm DHE", + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "description": "Allow algorithm ECDHE", + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "description": "Allow algorithm RSA", + "type": "boolean" + }, + "max_version": { + "default": "max", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "certificate", + "protocol_settings" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "certificate": { + "description": "SSL certificate file name", + "maxLength": 255, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Profile name", + "maxLength": 127, + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "protocol_settings": { + "properties": { + "auth_algo_sha1": { + "description": "Allow authentication SHA1", + "type": "boolean" + }, + "auth_algo_sha256": { + "description": "Allow authentication SHA256", + "type": "boolean" + }, + "auth_algo_sha384": { + "description": "Allow authentication SHA384", + "type": "boolean" + }, + "enc_algo_3des": { + "description": "Allow algorithm 3DES", + "type": "boolean" + }, + "enc_algo_aes_128_cbc": { + "description": "Allow algorithm AES-128-CBC", + "type": "boolean" + }, + "enc_algo_aes_128_gcm": { + "description": "Allow algorithm AES-128-GCM", + "type": "boolean" + }, + "enc_algo_aes_256_cbc": { + "description": "Allow algorithm AES-256-CBC", + "type": "boolean" + }, + "enc_algo_aes_256_gcm": { + "description": "Allow algorithm AES-256-GCM", + "type": "boolean" + }, + "enc_algo_rc4": { + "description": "Allow algorithm RC4", + "type": "boolean" + }, + "keyxchg_algo_dhe": { + "description": "Allow algorithm DHE", + "type": "boolean" + }, + "keyxchg_algo_ecdhe": { + "description": "Allow algorithm ECDHE", + "type": "boolean" + }, + "keyxchg_algo_rsa": { + "description": "Allow algorithm RSA", + "type": "boolean" + }, + "max_version": { + "default": "max", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2", + "tls1-3", + "max" + ], + "type": "string" + }, + "min_version": { + "default": "tls1-0", + "enum": [ + "tls1-0", + "tls1-1", + "tls1-2" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "certificate", + "protocol_settings" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "bf6336ee-304a-4282-98c7-4865838908ef", + "created": "2026-08-28T22:10:40.219Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 308, + "reference": "e87db652-74cb-40fd-87d1-978687f715de", + "type": "workflow", + "folder": "/TLSServiceProfiles", + "document": { + "name": "Delete a TLS Service Profile", + "description": "Delete a TLS Service Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-tls-service-profiles-id", + "canvasName": "delete-sse-config-v1-tls-service-profiles-id", + "summary": "delete-sse-config-v1-tls-service-profiles-id", + "description": "delete-sse-config-v1-tls-service-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f5741841-74f9-4d13-9c16-26db07aad465", + "created": "2026-08-28T22:10:40.258Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 309, + "reference": "297ebea6-2e4e-44d5-92db-a6e7758bc566", + "type": "workflow", + "folder": "/TLSServiceProfiles", + "document": { + "name": "Edit a TLS Service Profile", + "description": "Edit a TLS Service Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-tls-service-profiles-id", + "canvasName": "put-sse-config-v1-tls-service-profiles-id", + "summary": "put-sse-config-v1-tls-service-profiles-id", + "description": "put-sse-config-v1-tls-service-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "block_expired_cert": { + "type": "boolean" + }, + "block_timeout_cert": { + "type": "boolean" + }, + "block_unauthenticated_cert": { + "type": "boolean" + }, + "block_unknown_cert": { + "type": "boolean" + }, + "ca_certificates": { + "items": { + "properties": { + "default_ocsp_url": { + "type": "string" + }, + "name": { + "type": "string" + }, + "ocsp_verify_cert": { + "type": "string" + }, + "template_name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "cert_status_timeout": { + "type": "string" + }, + "crl_receive_timeout": { + "type": "string" + }, + "domain": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Alphanumeric string [ 0-9a-zA-Z._-]", + "maxLength": 63, + "type": "string" + }, + "ocsp_receive_timeout": { + "type": "string" + }, + "use_crl": { + "type": "boolean" + }, + "use_ocsp": { + "type": "boolean" + }, + "username_field": { + "properties": { + "subject": { + "enum": [ + "common-name" + ], + "type": "string" + }, + "subject_alt": { + "enum": [ + "email" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "required": [ + "name", + "ca_certificates" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "56cab312-5220-4f48-8286-e108bd461551", + "created": "2026-08-28T22:10:40.323Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 310, + "reference": "f00fc7fb-206d-45f3-a2a9-250fc0cc10c8", + "type": "workflow", + "folder": "/TLSServiceProfiles", + "document": { + "name": "Get a TLS Service Profile", + "description": "Get a TLS Service Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-tls-service-profiles-id", + "canvasName": "get-sse-config-v1-tls-service-profiles-id", + "summary": "get-sse-config-v1-tls-service-profiles-id", + "description": "get-sse-config-v1-tls-service-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": [ + "folder", + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a7b9c87b-fc7e-46f4-a853-0c4ba2d38ead", + "created": "2026-08-28T22:10:40.288Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 311, + "reference": "3fac2876-abf1-43fb-a116-fa723dc18ef1", + "type": "workflow", + "folder": "/TLSServiceProfiles", + "document": { + "name": "List TLS Service Profiles", + "description": "List TLS Service Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-tls-service-profiles", + "canvasName": "get-sse-config-v1-tls-service-profiles", + "summary": "get-sse-config-v1-tls-service-profiles", + "description": "get-sse-config-v1-tls-service-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "15efedd8-c67c-45bc-b49d-517f2dbc5202", + "created": "2026-08-28T22:10:40.184Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 312, + "reference": "c1e476a7-d86d-4e64-aff8-3817cb28d89b", + "type": "workflow", + "folder": "/TrafficSteeringRules", + "document": { + "name": "Create a Service Connection", + "description": "Create a Service Connection", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-traffic-steering-rules", + "canvasName": "post-sse-config-v1-traffic-steering-rules", + "summary": "post-sse-config-v1-traffic-steering-rules", + "description": "post-sse-config-v1-traffic-steering-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "forward": { + "properties": { + "target": { + "type": "string" + } + }, + "type": "object" + }, + "no-pbf": { + "type": "object" + } + }, + "title": "forward", + "type": "object" + } + ], + "type": "object" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "service": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "service", + "source", + "target" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "forward": { + "properties": { + "target": { + "type": "string" + } + }, + "type": "object" + }, + "no-pbf": { + "type": "object" + } + }, + "title": "forward", + "type": "object" + } + ], + "type": "object" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "service": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "service", + "source", + "target" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "d1d464c1-8e7e-4262-b683-eae2de3f08d8", + "created": "2026-08-28T22:10:40.382Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 313, + "reference": "37cd0746-ee08-4edd-8183-658bb426ad97", + "type": "workflow", + "folder": "/TrafficSteeringRules", + "document": { + "name": "Delete a Traffic Steering Rule", + "description": "Delete a Traffic Steering Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-traffic-steering-rules-id", + "canvasName": "delete-sse-config-v1-traffic-steering-rules-id", + "summary": "delete-sse-config-v1-traffic-steering-rules-id", + "description": "delete-sse-config-v1-traffic-steering-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5f62eb47-fd46-4559-af54-c3ee0d95b309", + "created": "2026-08-28T22:10:40.412Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 314, + "reference": "d5246d6b-d0f1-40d4-88f7-b6902a7216a5", + "type": "workflow", + "folder": "/TrafficSteeringRules", + "document": { + "name": "Edit a Traffic Steering Rule", + "description": "Edit a Traffic Steering Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-traffic-steering-rules-id", + "canvasName": "put-sse-config-v1-traffic-steering-rules-id", + "summary": "put-sse-config-v1-traffic-steering-rules-id", + "description": "put-sse-config-v1-traffic-steering-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "forward": { + "properties": { + "target": { + "type": "string" + } + }, + "type": "object" + }, + "no-pbf": { + "type": "object" + } + }, + "title": "forward", + "type": "object" + } + ], + "type": "object" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "service": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "service", + "source", + "target" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "forward": { + "properties": { + "target": { + "type": "string" + } + }, + "type": "object" + }, + "no-pbf": { + "type": "object" + } + }, + "title": "forward", + "type": "object" + } + ], + "type": "object" + }, + "category": { + "items": { + "type": "string" + }, + "type": "array" + }, + "destination": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "service": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + }, + "source_user": { + "default": [ + "any" + ], + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "name", + "service", + "source", + "target" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "596c6367-0e48-4b91-b5dc-8fe4c5e56142", + "created": "2026-08-28T22:10:40.470Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 315, + "reference": "919e8af1-9e32-4e39-bf65-d34b350b4016", + "type": "workflow", + "folder": "/TrafficSteeringRules", + "document": { + "name": "Get a Traffic Steering Rule", + "description": "Get a Traffic Steering Rule", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-traffic-steering-rules-id", + "canvasName": "get-sse-config-v1-traffic-steering-rules-id", + "summary": "get-sse-config-v1-traffic-steering-rules-id", + "description": "get-sse-config-v1-traffic-steering-rules-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "b65551a0-b642-419c-acf4-c672d47676fa", + "created": "2026-08-28T22:10:40.442Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 316, + "reference": "d94cdcd4-4454-4270-8ed5-4a85c17d2b68", + "type": "workflow", + "folder": "/TrafficSteeringRules", + "document": { + "name": "List Traffic Steering Rules", + "description": "List Traffic Steering Rules", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-traffic-steering-rules", + "canvasName": "get-sse-config-v1-traffic-steering-rules", + "summary": "get-sse-config-v1-traffic-steering-rules", + "description": "get-sse-config-v1-traffic-steering-rules", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5550891d-5044-4e02-90c7-e0b258957207", + "created": "2026-08-28T22:10:40.353Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 317, + "reference": "f83d99e7-bd9a-4129-8bf8-416630e3aa10", + "type": "workflow", + "folder": "/TrustedCertificateAuthorities", + "document": { + "name": "List Trusted Certificate Authorities", + "description": "List Trusted Certificate Authorities", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-trusted-certificate-authorities", + "canvasName": "get-sse-config-v1-trusted-certificate-authorities", + "summary": "get-sse-config-v1-trusted-certificate-authorities", + "description": "get-sse-config-v1-trusted-certificate-authorities", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "4a82f642-adab-4541-b354-222137eeeaae", + "created": "2026-08-28T22:10:40.501Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 318, + "reference": "d0e4f72d-2971-46f6-bc46-c6c2d1de31ed", + "type": "workflow", + "folder": "/URLAccessProfiles", + "document": { + "name": "Create a URL Access Profile", + "description": "Create a URL Access Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-url-access-profiles", + "canvasName": "post-sse-config-v1-url-access-profiles", + "summary": "post-sse-config-v1-url-access-profiles", + "description": "post-sse-config-v1-url-access-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cloud_inline_cat": { + "type": "boolean" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "credential_enforcement": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "log_severity": { + "default": "medium", + "type": "string" + }, + "mode": { + "properties": { + "disabled": { + "type": "object" + }, + "domain_credentials": { + "type": "object" + }, + "group_mapping": { + "type": "string" + }, + "ip_user": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_inline_cat": { + "type": "boolean" + }, + "log_container_page_only": { + "default": true, + "type": "boolean" + }, + "log_http_hdr_referer": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_user_agent": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_xff": { + "default": false, + "type": "boolean" + }, + "mlav_category_exception": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "safe_search_enforcement": { + "default": false, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cloud_inline_cat": { + "type": "boolean" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "credential_enforcement": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "log_severity": { + "default": "medium", + "type": "string" + }, + "mode": { + "properties": { + "disabled": { + "type": "object" + }, + "domain_credentials": { + "type": "object" + }, + "group_mapping": { + "type": "string" + }, + "ip_user": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_inline_cat": { + "type": "boolean" + }, + "log_container_page_only": { + "default": true, + "type": "boolean" + }, + "log_http_hdr_referer": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_user_agent": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_xff": { + "default": false, + "type": "boolean" + }, + "mlav_category_exception": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "safe_search_enforcement": { + "default": false, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "69b74cda-fa8f-4a3b-bc63-5671524b9c0d", + "created": "2026-08-28T22:10:40.566Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 319, + "reference": "b2a480df-890b-4310-a66a-61aea9e73ac8", + "type": "workflow", + "folder": "/URLAccessProfiles", + "document": { + "name": "Delete a URL Access Profile", + "description": "Delete a URL Access Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-url-access-profiles-id", + "canvasName": "delete-sse-config-v1-url-access-profiles-id", + "summary": "delete-sse-config-v1-url-access-profiles-id", + "description": "delete-sse-config-v1-url-access-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "3306772b-443f-4f7b-b66f-0fdf6e62dff7", + "created": "2026-08-28T22:10:40.599Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 320, + "reference": "5f19b1b4-a4b5-4e33-bcdf-35f88a0e73b6", + "type": "workflow", + "folder": "/URLAccessProfiles", + "document": { + "name": "Edit a URL Access Profile", + "description": "Edit a URL Access Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-url-access-profiles-id", + "canvasName": "put-sse-config-v1-url-access-profiles-id", + "summary": "put-sse-config-v1-url-access-profiles-id", + "description": "put-sse-config-v1-url-access-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cloud_inline_cat": { + "type": "boolean" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "credential_enforcement": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "log_severity": { + "default": "medium", + "type": "string" + }, + "mode": { + "properties": { + "disabled": { + "type": "object" + }, + "domain_credentials": { + "type": "object" + }, + "group_mapping": { + "type": "string" + }, + "ip_user": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_inline_cat": { + "type": "boolean" + }, + "log_container_page_only": { + "default": true, + "type": "boolean" + }, + "log_http_hdr_referer": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_user_agent": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_xff": { + "default": false, + "type": "boolean" + }, + "mlav_category_exception": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "safe_search_enforcement": { + "default": false, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "cloud_inline_cat": { + "type": "boolean" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "credential_enforcement": { + "properties": { + "alert": { + "items": { + "type": "string" + }, + "type": "array" + }, + "allow": { + "items": { + "type": "string" + }, + "type": "array" + }, + "block": { + "items": { + "type": "string" + }, + "type": "array" + }, + "continue": { + "items": { + "type": "string" + }, + "type": "array" + }, + "log_severity": { + "default": "medium", + "type": "string" + }, + "mode": { + "properties": { + "disabled": { + "type": "object" + }, + "domain_credentials": { + "type": "object" + }, + "group_mapping": { + "type": "string" + }, + "ip_user": { + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "description": { + "maxLength": 255, + "minLength": 0, + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "local_inline_cat": { + "type": "boolean" + }, + "log_container_page_only": { + "default": true, + "type": "boolean" + }, + "log_http_hdr_referer": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_user_agent": { + "default": false, + "type": "boolean" + }, + "log_http_hdr_xff": { + "default": false, + "type": "boolean" + }, + "mlav_category_exception": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "safe_search_enforcement": { + "default": false, + "type": "boolean" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "91ca8be7-d092-44da-bd00-6cb858a648c4", + "created": "2026-08-28T22:10:40.656Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 321, + "reference": "b61d8bf4-745a-407b-9d2b-70381dd4a94c", + "type": "workflow", + "folder": "/URLAccessProfiles", + "document": { + "name": "Get a URL Access Profile by ID", + "description": "Get a URL Access Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-url-access-profiles-id", + "canvasName": "get-sse-config-v1-url-access-profiles-id", + "summary": "get-sse-config-v1-url-access-profiles-id", + "description": "get-sse-config-v1-url-access-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "02fd56b5-442b-40a5-86ba-10938865e208", + "created": "2026-08-28T22:10:40.629Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 322, + "reference": "9106c846-e2d0-4e6e-b152-8db21bebdd51", + "type": "workflow", + "folder": "/URLAccessProfiles", + "document": { + "name": "List URL Access Profiles", + "description": "List URL Access Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-url-access-profiles", + "canvasName": "get-sse-config-v1-url-access-profiles", + "summary": "get-sse-config-v1-url-access-profiles", + "description": "get-sse-config-v1-url-access-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a9da6a59-a04c-42c2-9126-cecb0f93f3a3", + "created": "2026-08-28T22:10:40.530Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 323, + "reference": "be22761e-e18e-4674-b5f8-23cbe8295a30", + "type": "workflow", + "folder": "/URLCategories", + "document": { + "name": "Create a Custom URL Category", + "description": "Create a Custom URL Category", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-url-categories", + "canvasName": "post-sse-config-v1-url-categories", + "summary": "post-sse-config-v1-url-categories", + "description": "post-sse-config-v1-url-categories", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "type": { + "default": "URL List", + "enum": [ + "URL List", + "Category Match" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "type": { + "default": "URL List", + "enum": [ + "URL List", + "Category Match" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "269bd1bb-7fec-4924-ac87-8d490bc1e73d", + "created": "2026-08-28T22:10:40.714Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 324, + "reference": "e65f0159-c2ad-46a1-988f-b93475befdba", + "type": "workflow", + "folder": "/URLCategories", + "document": { + "name": "Delete a Custom URL Category", + "description": "Delete a Custom URL Category", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-url-categories-id", + "canvasName": "delete-sse-config-v1-url-categories-id", + "summary": "delete-sse-config-v1-url-categories-id", + "description": "delete-sse-config-v1-url-categories-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "a5686399-2b38-4ed2-b599-64435d9231a4", + "created": "2026-08-28T22:10:40.745Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 325, + "reference": "d1b12b1a-90e4-4f19-a4d8-3d5bb04a897b", + "type": "workflow", + "folder": "/URLCategories", + "document": { + "name": "Edit a Custom URL Category", + "description": "Edit a Custom URL Category", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-url-categories-id", + "canvasName": "put-sse-config-v1-url-categories-id", + "summary": "put-sse-config-v1-url-categories-id", + "description": "put-sse-config-v1-url-categories-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "type": { + "default": "URL List", + "enum": [ + "URL List", + "Category Match" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "list": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "type": { + "default": "URL List", + "enum": [ + "URL List", + "Category Match" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "822040da-ef06-472f-bfa8-85701348e293", + "created": "2026-08-28T22:10:40.820Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 326, + "reference": "49b7e3a2-ecce-4c89-af28-9cf85e5f0607", + "type": "workflow", + "folder": "/URLCategories", + "document": { + "name": "Get a URL Category by ID", + "description": "Get a URL Category by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-url-categories-id", + "canvasName": "get-sse-config-v1-url-categories-id", + "summary": "get-sse-config-v1-url-categories-id", + "description": "get-sse-config-v1-url-categories-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "616c5b4a-2bc1-49c4-9072-4dfda12b2ed1", + "created": "2026-08-28T22:10:40.786Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 327, + "reference": "3b36800e-4b14-4d62-9eb6-c3a3c05d0762", + "type": "workflow", + "folder": "/URLCategories", + "document": { + "name": "List URL Categories", + "description": "List URL Categories", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-url-categories", + "canvasName": "get-sse-config-v1-url-categories", + "summary": "get-sse-config-v1-url-categories", + "description": "get-sse-config-v1-url-categories", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "93a970c6-a950-4570-8be0-cf25b4701e9f", + "created": "2026-08-28T22:10:40.687Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 328, + "reference": "f5b5ca87-db49-4720-b7e2-fd88faa71948", + "type": "workflow", + "folder": "/URLFilteringCategories", + "document": { + "name": "List URL Filtering Categories", + "description": "List URL Filtering Categories", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-url-filtering-categories", + "canvasName": "get-sse-config-v1-url-filtering-categories", + "summary": "get-sse-config-v1-url-filtering-categories", + "description": "get-sse-config-v1-url-filtering-categories", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "name": "$var.job.name", + "limit": "$var.job.limit", + "offset": "$var.job.offset" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "name": { + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + } + }, + "required": [ + "folder", + "name", + "limit", + "offset" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "name": { + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "170eba1c-d33c-4438-b0f9-fa88e8b80642", + "created": "2026-08-28T22:10:40.854Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 329, + "reference": "a5af67a7-6ede-485f-a6e5-a99c648ea812", + "type": "workflow", + "folder": "/VulnerabilityProtectionProfiles", + "document": { + "name": "Create a Vulnerability Protection Profile", + "description": "Create a Vulnerability Protection Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-vulnerability-protection-profiles", + "canvasName": "post-sse-config-v1-vulnerability-protection-profiles", + "summary": "post-sse-config-v1-vulnerability-protection-profiles", + "description": "post-sse-config-v1-vulnerability-protection-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "any", + "brute-force", + "code-execution", + "code-obfuscation", + "command-execution", + "dos", + "exploit-kit", + "info-leak", + "insecure-credentials", + "overflow", + "phishing", + "protocol-anomaly", + "scan", + "sql-injection" + ], + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "host": { + "items": { + "enum": [ + "any", + "client", + "server" + ], + "type": "string" + }, + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "type": "string" + }, + "vendor_id": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source", + "destination", + "source-and-destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "any", + "brute-force", + "code-execution", + "code-obfuscation", + "command-execution", + "dos", + "exploit-kit", + "info-leak", + "insecure-credentials", + "overflow", + "phishing", + "protocol-anomaly", + "scan", + "sql-injection" + ], + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "host": { + "items": { + "enum": [ + "any", + "client", + "server" + ], + "type": "string" + }, + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "type": "string" + }, + "vendor_id": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source", + "destination", + "source-and-destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "2966d63e-8670-499b-8c3a-9f9c2f45d68e", + "created": "2026-08-28T22:10:40.931Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 330, + "reference": "c0e6bf75-0a0f-4bd7-aef2-c1e5d2384b6a", + "type": "workflow", + "folder": "/VulnerabilityProtectionProfiles", + "document": { + "name": "Delete a Vulnerability Protection Profile", + "description": "Delete a Vulnerability Protection Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-vulnerability-protection-profiles-id", + "canvasName": "delete-sse-config-v1-vulnerability-protection-profiles-id", + "summary": "delete-sse-config-v1-vulnerability-protection-profiles-id", + "description": "delete-sse-config-v1-vulnerability-protection-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "13edc8cb-002c-4bea-a190-6ed30bc5e65e", + "created": "2026-08-28T22:10:40.959Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 331, + "reference": "db8fd186-1a22-467a-839a-7947e2f6ccec", + "type": "workflow", + "folder": "/VulnerabilityProtectionProfiles", + "document": { + "name": "Edit a Vulnerability Protection Profile", + "description": "Edit a Vulnerability Protection Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-vulnerability-protection-profiles-id", + "canvasName": "put-sse-config-v1-vulnerability-protection-profiles-id", + "summary": "put-sse-config-v1-vulnerability-protection-profiles-id", + "description": "put-sse-config-v1-vulnerability-protection-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "any", + "brute-force", + "code-execution", + "code-obfuscation", + "command-execution", + "dos", + "exploit-kit", + "info-leak", + "insecure-credentials", + "overflow", + "phishing", + "protocol-anomaly", + "scan", + "sql-injection" + ], + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "host": { + "items": { + "enum": [ + "any", + "client", + "server" + ], + "type": "string" + }, + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "type": "string" + }, + "vendor_id": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source", + "destination", + "source-and-destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "rules": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "category": { + "enum": [ + "any", + "brute-force", + "code-execution", + "code-obfuscation", + "command-execution", + "dos", + "exploit-kit", + "info-leak", + "insecure-credentials", + "overflow", + "phishing", + "protocol-anomaly", + "scan", + "sql-injection" + ], + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "host": { + "items": { + "enum": [ + "any", + "client", + "server" + ], + "type": "string" + }, + "type": "string" + }, + "name": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "severity": { + "items": { + "type": "string" + }, + "type": "array" + }, + "threat_name": { + "type": "string" + }, + "vendor_id": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "action": { + "oneOf": [ + { + "properties": { + "default": { + "type": "object" + } + }, + "title": "default" + }, + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "exempt_ip": { + "items": { + "properties": { + "name": { + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + }, + "name": { + "type": "string" + }, + "notes": { + "type": "string" + }, + "packet_capture": { + "enum": [ + "disable", + "single-packet", + "extended-capture" + ], + "type": "string" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 65535, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source", + "destination", + "source-and-destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "7c924b22-432f-4ddf-aa7c-15516ac084b5", + "created": "2026-08-28T22:10:41.043Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 332, + "reference": "0b680935-6a8c-4f90-8313-7db70010b975", + "type": "workflow", + "folder": "/VulnerabilityProtectionProfiles", + "document": { + "name": "Get a Vulnerability Protection Profile by ID", + "description": "Get a Vulnerability Protection Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-vulnerability-protection-profiles-id", + "canvasName": "get-sse-config-v1-vulnerability-protection-profiles-id", + "summary": "get-sse-config-v1-vulnerability-protection-profiles-id", + "description": "get-sse-config-v1-vulnerability-protection-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "91f05af5-5222-4abf-93f6-a9d339a1f30b", + "created": "2026-08-28T22:10:40.993Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 333, + "reference": "6f15b0a8-d506-4aed-a85c-d7a39e9daf37", + "type": "workflow", + "folder": "/VulnerabilityProtectionProfiles", + "document": { + "name": "List Vulnerability Protection Profiles", + "description": "List Vulnerability Protection Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-vulnerability-protection-profiles", + "canvasName": "get-sse-config-v1-vulnerability-protection-profiles", + "summary": "get-sse-config-v1-vulnerability-protection-profiles", + "description": "get-sse-config-v1-vulnerability-protection-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "04e87456-3b24-400b-95d2-11e8628790a1", + "created": "2026-08-28T22:10:40.894Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 334, + "reference": "47874583-9dbb-4470-9ca0-01c46e185dc1", + "type": "workflow", + "folder": "/VulnerabilityProtectionSignatures", + "document": { + "name": "Create a Vulnerability Protection Signature", + "description": "Create a Vulnerability Protection Signature", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-vulnerability-protection-signatures", + "canvasName": "post-sse-config-v1-vulnerability-protection-signatures", + "summary": "post-sse-config-v1-vulnerability-protection-signatures", + "description": "post-sse-config-v1-vulnerability-protection-signatures", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "affected_host": { + "oneOf": [ + { + "properties": { + "client": { + "type": "boolean" + } + }, + "title": "client" + }, + { + "properties": { + "server": { + "type": "boolean" + } + }, + "title": "server" + } + ], + "type": "object" + }, + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <41000-45000> and <6800001-6900000>", + "maximum": 6900000, + "minimum": 41000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "affected_host": { + "oneOf": [ + { + "properties": { + "client": { + "type": "boolean" + } + }, + "title": "client" + }, + { + "properties": { + "server": { + "type": "boolean" + } + }, + "title": "server" + } + ], + "type": "object" + }, + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <41000-45000> and <6800001-6900000>", + "maximum": 6900000, + "minimum": 41000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "1c8730a2-ab98-49ce-9424-3fd190c452b0", + "created": "2026-08-28T22:10:41.143Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 335, + "reference": "86d3fa7d-ea5e-4589-a2c3-f5c865fb0295", + "type": "workflow", + "folder": "/VulnerabilityProtectionSignatures", + "document": { + "name": "Delete a Vulnerability-protection Signature", + "description": "Delete a Vulnerability-protection Signature", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-vulnerability-protection-signatures-id", + "canvasName": "delete-sse-config-v1-vulnerability-protection-signatures-id", + "summary": "delete-sse-config-v1-vulnerability-protection-signatures-id", + "description": "delete-sse-config-v1-vulnerability-protection-signatures-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "16edb725-488c-4716-b46b-7af880cd9056", + "created": "2026-08-28T22:10:41.173Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 336, + "reference": "183db138-fd95-474c-81c0-f6d6a15c61b1", + "type": "workflow", + "folder": "/VulnerabilityProtectionSignatures", + "document": { + "name": "Edit a Vulnerability-protection Signature", + "description": "Edit a Vulnerability-protection Signature", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-vulnerability-protection-signatures-id", + "canvasName": "put-sse-config-v1-vulnerability-protection-signatures-id", + "summary": "put-sse-config-v1-vulnerability-protection-signatures-id", + "description": "put-sse-config-v1-vulnerability-protection-signatures-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "affected_host": { + "oneOf": [ + { + "properties": { + "client": { + "type": "boolean" + } + }, + "title": "client" + }, + { + "properties": { + "server": { + "type": "boolean" + } + }, + "title": "server" + } + ], + "type": "object" + }, + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <41000-45000> and <6800001-6900000>", + "maximum": 6900000, + "minimum": 41000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "affected_host": { + "oneOf": [ + { + "properties": { + "client": { + "type": "boolean" + } + }, + "title": "client" + }, + { + "properties": { + "server": { + "type": "boolean" + } + }, + "title": "server" + } + ], + "type": "object" + }, + "bugtraq": { + "items": { + "type": "string" + }, + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "cve": { + "items": { + "type": "string" + }, + "type": "array" + }, + "default_action": { + "oneOf": [ + { + "properties": { + "allow": { + "type": "object" + } + }, + "title": "allow" + }, + { + "properties": { + "alert": { + "type": "object" + } + }, + "title": "alert" + }, + { + "properties": { + "drop": { + "type": "object" + } + }, + "title": "drop" + }, + { + "properties": { + "reset_client": { + "type": "object" + } + }, + "title": "reset_client" + }, + { + "properties": { + "reset_server": { + "type": "object" + } + }, + "title": "reset_server" + }, + { + "properties": { + "reset_both": { + "type": "object" + } + }, + "title": "reset_both" + }, + { + "properties": { + "block_ip": { + "properties": { + "duration": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "title": "block_ip" + } + ], + "type": "object" + }, + "direction": { + "enum": [ + "client2server", + "server2client", + "both" + ], + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "reference": { + "items": { + "type": "string" + }, + "type": "array" + }, + "severity": { + "enum": [ + "critical", + "low", + "high", + "medium", + "informational" + ], + "type": "string" + }, + "signature": { + "oneOf": [ + { + "properties": { + "combination": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "threat_id": { + "type": "string" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "time_attribute": { + "properties": { + "interval": { + "maximum": 3600, + "minimum": 1, + "type": "integer" + }, + "threshold": { + "maximum": 255, + "minimum": 1, + "type": "integer" + }, + "track_by": { + "enum": [ + "source-and-destination", + "source", + "destination" + ], + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "title": "combination" + }, + { + "properties": { + "standard": { + "items": { + "properties": { + "and_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "or_condition": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "operator": { + "properties": { + "equal_to": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "greater_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "less_than": { + "properties": { + "context": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "value": { + "maximum": 4294967295, + "minimum": 0, + "type": "integer" + } + }, + "type": "object" + }, + "pattern_match": { + "properties": { + "context": { + "type": "string" + }, + "negate": { + "default": false, + "type": "boolean" + }, + "pattern": { + "type": "string" + }, + "qualifier": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "type": "object" + }, + "required": [ + "name" + ], + "type": "array" + }, + "comment": { + "maxLength": 256, + "minLength": 0, + "type": "string" + }, + "name": { + "type": "string" + }, + "order_free": { + "default": false, + "type": "boolean" + }, + "scope": { + "enum": [ + "protocol-data-unit", + "session" + ], + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "title": "standard" + } + ], + "type": "object" + }, + "threat_id": { + "description": "threat id range <41000-45000> and <6800001-6900000>", + "maximum": 6900000, + "minimum": 41000, + "type": "integer" + }, + "threatname": { + "maxLength": 1024, + "type": "string" + }, + "vendor": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "threat_id", + "threatname" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "560a9b51-9523-4f31-bc2a-3e54ffa20142", + "created": "2026-08-28T22:10:41.236Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 337, + "reference": "7943b48a-fc2a-44d9-9d74-585b0cfa1872", + "type": "workflow", + "folder": "/VulnerabilityProtectionSignatures", + "document": { + "name": "Get a Vulnerability Protection Signature by ID", + "description": "Get a Vulnerability Protection Signature by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-vulnerability-protection-signatures-id", + "canvasName": "get-sse-config-v1-vulnerability-protection-signatures-id", + "summary": "get-sse-config-v1-vulnerability-protection-signatures-id", + "description": "get-sse-config-v1-vulnerability-protection-signatures-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "f48534fe-4bdf-4a48-a00f-731feaa03b32", + "created": "2026-08-28T22:10:41.199Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 338, + "reference": "7b8c5d58-16b7-4b54-b703-551d7f9ad19b", + "type": "workflow", + "folder": "/VulnerabilityProtectionSignatures", + "document": { + "name": "List Vulnerability Protection Signatures", + "description": "List Vulnerability Protection Signatures", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-vulnerability-protection-signatures", + "canvasName": "get-sse-config-v1-vulnerability-protection-signatures", + "summary": "get-sse-config-v1-vulnerability-protection-signatures", + "description": "get-sse-config-v1-vulnerability-protection-signatures", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ae26e6ab-e5cc-47d8-adbe-8b4cc8d33be2", + "created": "2026-08-28T22:10:41.096Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 339, + "reference": "bcfc8611-921e-4757-9dfa-14befe06dc56", + "type": "workflow", + "folder": "/WildFireAntivirusProfiles", + "document": { + "name": "Create a WildFire Antivirus Profile", + "description": "Create a WildFire Antivirus Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "post-sse-config-v1-wildfire-anti-virus-profiles", + "canvasName": "post-sse-config-v1-wildfire-anti-virus-profiles", + "summary": "post-sse-config-v1-wildfire-anti-virus-profiles", + "description": "post-sse-config-v1-wildfire-anti-virus-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mlav_exception": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "packet_capture": { + "type": "boolean" + }, + "rules": { + "items": { + "properties": { + "analysis": { + "enum": [ + "public-cloud", + "private-cloud" + ], + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "direction": { + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "notes": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "folder", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mlav_exception": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "packet_capture": { + "type": "boolean" + }, + "rules": { + "items": { + "properties": { + "analysis": { + "enum": [ + "public-cloud", + "private-cloud" + ], + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "direction": { + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "notes": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "ee929658-dd8e-4cbb-bbc4-3540f50407de", + "created": "2026-08-28T22:10:41.296Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 340, + "reference": "52600c9e-fab3-41ab-9f81-89113f833186", + "type": "workflow", + "folder": "/WildFireAntivirusProfiles", + "document": { + "name": "Delete a Wildfire and Antivirus Profile", + "description": "Delete a Wildfire and Antivirus Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "delete-sse-config-v1-wildfire-anti-virus-profiles-id", + "canvasName": "delete-sse-config-v1-wildfire-anti-virus-profiles-id", + "summary": "delete-sse-config-v1-wildfire-anti-virus-profiles-id", + "description": "delete-sse-config-v1-wildfire-anti-virus-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "95d6783d-57b9-4498-bd28-6e5fad4fd0be", + "created": "2026-08-28T22:10:41.332Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 341, + "reference": "5848d9ad-e009-4fa9-bbdd-f491dffb8a6f", + "type": "workflow", + "folder": "/WildFireAntivirusProfiles", + "document": { + "name": "Edit a Wildfire and Antivirus Profile", + "description": "Edit a Wildfire and Antivirus Profile", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "put-sse-config-v1-wildfire-anti-virus-profiles-id", + "canvasName": "put-sse-config-v1-wildfire-anti-virus-profiles-id", + "summary": "put-sse-config-v1-wildfire-anti-virus-profiles-id", + "description": "put-sse-config-v1-wildfire-anti-virus-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id", + "bodyContentType": "application/json", + "requestBodyPayload": "$var.job.spec" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mlav_exception": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "packet_capture": { + "type": "boolean" + }, + "rules": { + "items": { + "properties": { + "analysis": { + "enum": [ + "public-cloud", + "private-cloud" + ], + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "direction": { + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "notes": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + } + }, + "required": [ + "id", + "spec" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "spec": { + "properties": { + "description": { + "type": "string" + }, + "id": { + "description": "uuid of the resource", + "example": "abcd-1234", + "readOnly": true, + "type": "string" + }, + "mlav_exception": { + "items": { + "properties": { + "description": { + "type": "string" + }, + "filename": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "name": { + "pattern": "^[a-zA-Z0-9._-]+$", + "type": "string" + }, + "packet_capture": { + "type": "boolean" + }, + "rules": { + "items": { + "properties": { + "analysis": { + "enum": [ + "public-cloud", + "private-cloud" + ], + "type": "string" + }, + "application": { + "items": { + "type": "string" + }, + "type": "array" + }, + "direction": { + "enum": [ + "download", + "upload", + "both" + ], + "type": "string" + }, + "file_type": { + "items": { + "type": "string" + }, + "type": "array" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "threat_exception": { + "items": { + "properties": { + "name": { + "type": "string" + }, + "notes": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "5b26513d-9970-4d74-9147-05711864031b", + "created": "2026-08-28T22:10:41.401Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 342, + "reference": "77a586ca-5a1e-4384-802a-e6cadad383c9", + "type": "workflow", + "folder": "/WildFireAntivirusProfiles", + "document": { + "name": "Get a WildFire Antivirus Profile by ID", + "description": "Get a WildFire Antivirus Profile by ID", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-wildfire-anti-virus-profiles-id", + "canvasName": "get-sse-config-v1-wildfire-anti-virus-profiles-id", + "summary": "get-sse-config-v1-wildfire-anti-virus-profiles-id", + "description": "get-sse-config-v1-wildfire-anti-virus-profiles-id", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "id": "$var.job.id" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + } + }, + "required": [ + "id" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "9861d7b3-f0e6-4b07-89e9-3d330f65ca22", + "created": "2026-08-28T22:10:41.359Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + }, + { + "iid": 343, + "reference": "ede8920c-6fd7-4610-a09c-95cb8b2e3494", + "type": "workflow", + "folder": "/WildFireAntivirusProfiles", + "document": { + "name": "List WildFire Antivirus Profiles", + "description": "List WildFire Antivirus Profiles", + "type": "automation", + "font_size": 12, + "tasks": { + "workflow_start": { + "name": "workflow_start", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 0 + } + }, + "a1a1": { + "name": "get-sse-config-v1-wildfire-anti-virus-profiles", + "canvasName": "get-sse-config-v1-wildfire-anti-virus-profiles", + "summary": "get-sse-config-v1-wildfire-anti-virus-profiles", + "description": "get-sse-config-v1-wildfire-anti-virus-profiles", + "location": "Adapter", + "locationType": "Palo Alto Prisma Access:latest", + "app": "Palo Alto Prisma Access:latest", + "type": "automatic", + "displayName": "Palo Alto Prisma Access", + "variables": { + "incoming": { + "adapter_id": "Palo Alto Prisma Access", + "folder": "$var.job.folder", + "limit": "$var.job.limit", + "offset": "$var.job.offset", + "name": "$var.job.name" + }, + "outgoing": { + "response": null + }, + "error": "", + "decorators": [] + }, + "groups": [], + "actor": "Pronghorn", + "scheduled": false, + "nodeLocation": { + "x": 264, + "y": 150 + } + }, + "workflow_end": { + "name": "workflow_end", + "groups": [], + "nodeLocation": { + "x": 264, + "y": 300 + } + } + }, + "transitions": { + "workflow_start": { + "a1a1": { + "type": "standard", + "state": "success" + } + }, + "a1a1": { + "workflow_end": { + "type": "standard", + "state": "success" + } + }, + "workflow_end": {} + }, + "inputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "required": [ + "folder", + "limit", + "offset", + "name" + ] + }, + "outputSchema": { + "type": "object", + "properties": { + "folder": { + "enum": [ + "Shared", + "Mobile Users", + "Remote Networks", + "Service Connections", + "Mobile Users Container", + "Mobile Users Explicit Proxy" + ], + "pattern": "^[0-9a-zA-Z._-\\s]{1,}$", + "type": "string" + }, + "limit": { + "type": "number" + }, + "offset": { + "type": "number" + }, + "name": { + "type": "string" + }, + "_id": { + "type": "string", + "pattern": "^[0-9a-f]{24}$" + }, + "initiator": { + "type": "string" + } + } + }, + "last_updated": "2026-08-28T22:11:37.453Z", + "last_updated_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "lastUpdatedVersion": "4.69.69", + "uuid": "82811ceb-2519-48aa-9bf0-82b06f147dc8", + "created": "2026-08-28T22:10:41.267Z", + "created_by": { + "provenance": "LDAP", + "username": "admin@itential", + "firstname": "admin@itential", + "inactive": false + }, + "createdVersion": "5.55.5", + "scenarios": [], + "canvasVersion": 3, + "tags": [], + "groups": [], + "migrationVersion": 8 + } + } + ], + "folders": [ + { + "nodeType": "folder", + "name": "AddressGroups", + "children": [ + { + "iid": 0, + "nodeType": "component" + }, + { + "iid": 1, + "nodeType": "component" + }, + { + "iid": 2, + "nodeType": "component" + }, + { + "iid": 3, + "nodeType": "component" + }, + { + "iid": 4, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Addresses", + "children": [ + { + "iid": 5, + "nodeType": "component" + }, + { + "iid": 6, + "nodeType": "component" + }, + { + "iid": 7, + "nodeType": "component" + }, + { + "iid": 8, + "nodeType": "component" + }, + { + "iid": 9, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "AntiSpywareProfiles", + "children": [ + { + "iid": 10, + "nodeType": "component" + }, + { + "iid": 11, + "nodeType": "component" + }, + { + "iid": 12, + "nodeType": "component" + }, + { + "iid": 13, + "nodeType": "component" + }, + { + "iid": 14, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "AntiSpywareSignatures", + "children": [ + { + "iid": 15, + "nodeType": "component" + }, + { + "iid": 16, + "nodeType": "component" + }, + { + "iid": 17, + "nodeType": "component" + }, + { + "iid": 18, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ApplicationOverrideRules", + "children": [ + { + "iid": 19, + "nodeType": "component" + }, + { + "iid": 20, + "nodeType": "component" + }, + { + "iid": 21, + "nodeType": "component" + }, + { + "iid": 22, + "nodeType": "component" + }, + { + "iid": 23, + "nodeType": "component" + }, + { + "iid": 24, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ApplicationFilters", + "children": [ + { + "iid": 25, + "nodeType": "component" + }, + { + "iid": 26, + "nodeType": "component" + }, + { + "iid": 27, + "nodeType": "component" + }, + { + "iid": 28, + "nodeType": "component" + }, + { + "iid": 29, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ApplicationGroups", + "children": [ + { + "iid": 30, + "nodeType": "component" + }, + { + "iid": 31, + "nodeType": "component" + }, + { + "iid": 32, + "nodeType": "component" + }, + { + "iid": 33, + "nodeType": "component" + }, + { + "iid": 34, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Applications", + "children": [ + { + "iid": 35, + "nodeType": "component" + }, + { + "iid": 36, + "nodeType": "component" + }, + { + "iid": 37, + "nodeType": "component" + }, + { + "iid": 38, + "nodeType": "component" + }, + { + "iid": 39, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "AuthenticationPortals", + "children": [ + { + "iid": 40, + "nodeType": "component" + }, + { + "iid": 41, + "nodeType": "component" + }, + { + "iid": 42, + "nodeType": "component" + }, + { + "iid": 43, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "AuthenticationProfiles", + "children": [ + { + "iid": 44, + "nodeType": "component" + }, + { + "iid": 45, + "nodeType": "component" + }, + { + "iid": 46, + "nodeType": "component" + }, + { + "iid": 47, + "nodeType": "component" + }, + { + "iid": 48, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "AuthenticationRules", + "children": [ + { + "iid": 49, + "nodeType": "component" + }, + { + "iid": 50, + "nodeType": "component" + }, + { + "iid": 51, + "nodeType": "component" + }, + { + "iid": 52, + "nodeType": "component" + }, + { + "iid": 53, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "AuthenticationSequences", + "children": [ + { + "iid": 54, + "nodeType": "component" + }, + { + "iid": 55, + "nodeType": "component" + }, + { + "iid": 56, + "nodeType": "component" + }, + { + "iid": 57, + "nodeType": "component" + }, + { + "iid": 58, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "AutoTagActions", + "children": [ + { + "iid": 59, + "nodeType": "component" + }, + { + "iid": 60, + "nodeType": "component" + }, + { + "iid": 61, + "nodeType": "component" + }, + { + "iid": 62, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "BandwidthAllocations", + "children": [ + { + "iid": 63, + "nodeType": "component" + }, + { + "iid": 64, + "nodeType": "component" + }, + { + "iid": 65, + "nodeType": "component" + }, + { + "iid": 66, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ServiceConnections", + "children": [ + { + "iid": 67, + "nodeType": "component" + }, + { + "iid": 68, + "nodeType": "component" + }, + { + "iid": 69, + "nodeType": "component" + }, + { + "iid": 70, + "nodeType": "component" + }, + { + "iid": 71, + "nodeType": "component" + }, + { + "iid": 72, + "nodeType": "component" + }, + { + "iid": 73, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "CertificateProfiles", + "children": [ + { + "iid": 74, + "nodeType": "component" + }, + { + "iid": 75, + "nodeType": "component" + }, + { + "iid": 76, + "nodeType": "component" + }, + { + "iid": 77, + "nodeType": "component" + }, + { + "iid": 78, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Certificates", + "children": [ + { + "iid": 79, + "nodeType": "component" + }, + { + "iid": 80, + "nodeType": "component" + }, + { + "iid": 81, + "nodeType": "component" + }, + { + "iid": 82, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ConfigurationManagement", + "children": [ + { + "iid": 83, + "nodeType": "component" + }, + { + "iid": 84, + "nodeType": "component" + }, + { + "iid": 85, + "nodeType": "component" + }, + { + "iid": 86, + "nodeType": "component" + }, + { + "iid": 87, + "nodeType": "component" + }, + { + "iid": 88, + "nodeType": "component" + }, + { + "iid": 89, + "nodeType": "component" + }, + { + "iid": 90, + "nodeType": "component" + }, + { + "iid": 91, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "DecryptionExclusions", + "children": [ + { + "iid": 92, + "nodeType": "component" + }, + { + "iid": 93, + "nodeType": "component" + }, + { + "iid": 94, + "nodeType": "component" + }, + { + "iid": 95, + "nodeType": "component" + }, + { + "iid": 96, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "DecryptionProfiles", + "children": [ + { + "iid": 97, + "nodeType": "component" + }, + { + "iid": 98, + "nodeType": "component" + }, + { + "iid": 99, + "nodeType": "component" + }, + { + "iid": 100, + "nodeType": "component" + }, + { + "iid": 101, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "DecryptionRules", + "children": [ + { + "iid": 102, + "nodeType": "component" + }, + { + "iid": 103, + "nodeType": "component" + }, + { + "iid": 104, + "nodeType": "component" + }, + { + "iid": 105, + "nodeType": "component" + }, + { + "iid": 106, + "nodeType": "component" + }, + { + "iid": 107, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "DNSSecurityProfiles", + "children": [ + { + "iid": 108, + "nodeType": "component" + }, + { + "iid": 109, + "nodeType": "component" + }, + { + "iid": 110, + "nodeType": "component" + }, + { + "iid": 111, + "nodeType": "component" + }, + { + "iid": 112, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "DynamicUserGroups", + "children": [ + { + "iid": 113, + "nodeType": "component" + }, + { + "iid": 114, + "nodeType": "component" + }, + { + "iid": 115, + "nodeType": "component" + }, + { + "iid": 116, + "nodeType": "component" + }, + { + "iid": 117, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "InfrastructureSettings", + "children": [ + { + "iid": 118, + "nodeType": "component" + }, + { + "iid": 119, + "nodeType": "component" + }, + { + "iid": 120, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ExternalDynamicLists", + "children": [ + { + "iid": 121, + "nodeType": "component" + }, + { + "iid": 122, + "nodeType": "component" + }, + { + "iid": 123, + "nodeType": "component" + }, + { + "iid": 124, + "nodeType": "component" + }, + { + "iid": 125, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "FileBlockingProfiles", + "children": [ + { + "iid": 126, + "nodeType": "component" + }, + { + "iid": 127, + "nodeType": "component" + }, + { + "iid": 128, + "nodeType": "component" + }, + { + "iid": 129, + "nodeType": "component" + }, + { + "iid": 130, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "HIPObjects", + "children": [ + { + "iid": 131, + "nodeType": "component" + }, + { + "iid": 132, + "nodeType": "component" + }, + { + "iid": 133, + "nodeType": "component" + }, + { + "iid": 134, + "nodeType": "component" + }, + { + "iid": 135, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "HIPProfiles", + "children": [ + { + "iid": 136, + "nodeType": "component" + }, + { + "iid": 137, + "nodeType": "component" + }, + { + "iid": 138, + "nodeType": "component" + }, + { + "iid": 139, + "nodeType": "component" + }, + { + "iid": 140, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "HTTPHeaderProfiles", + "children": [ + { + "iid": 141, + "nodeType": "component" + }, + { + "iid": 142, + "nodeType": "component" + }, + { + "iid": 143, + "nodeType": "component" + }, + { + "iid": 144, + "nodeType": "component" + }, + { + "iid": 145, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "IKECryptoProfiles", + "children": [ + { + "iid": 146, + "nodeType": "component" + }, + { + "iid": 147, + "nodeType": "component" + }, + { + "iid": 148, + "nodeType": "component" + }, + { + "iid": 149, + "nodeType": "component" + }, + { + "iid": 150, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "IKEGateways", + "children": [ + { + "iid": 151, + "nodeType": "component" + }, + { + "iid": 152, + "nodeType": "component" + }, + { + "iid": 153, + "nodeType": "component" + }, + { + "iid": 154, + "nodeType": "component" + }, + { + "iid": 155, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "InternalDNSServers", + "children": [ + { + "iid": 156, + "nodeType": "component" + }, + { + "iid": 157, + "nodeType": "component" + }, + { + "iid": 158, + "nodeType": "component" + }, + { + "iid": 159, + "nodeType": "component" + }, + { + "iid": 160, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "IPSecCryptoProfiles", + "children": [ + { + "iid": 161, + "nodeType": "component" + }, + { + "iid": 162, + "nodeType": "component" + }, + { + "iid": 163, + "nodeType": "component" + }, + { + "iid": 164, + "nodeType": "component" + }, + { + "iid": 165, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "IPSecTunnels", + "children": [ + { + "iid": 166, + "nodeType": "component" + }, + { + "iid": 167, + "nodeType": "component" + }, + { + "iid": 168, + "nodeType": "component" + }, + { + "iid": 169, + "nodeType": "component" + }, + { + "iid": 170, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "KerberosServerProfiles", + "children": [ + { + "iid": 171, + "nodeType": "component" + }, + { + "iid": 172, + "nodeType": "component" + }, + { + "iid": 173, + "nodeType": "component" + }, + { + "iid": 174, + "nodeType": "component" + }, + { + "iid": 175, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "LDAPServerProfiles", + "children": [ + { + "iid": 176, + "nodeType": "component" + }, + { + "iid": 177, + "nodeType": "component" + }, + { + "iid": 178, + "nodeType": "component" + }, + { + "iid": 179, + "nodeType": "component" + }, + { + "iid": 180, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "LicenseTypes", + "children": [ + { + "iid": 181, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "LocalUserGroups", + "children": [ + { + "iid": 182, + "nodeType": "component" + }, + { + "iid": 183, + "nodeType": "component" + }, + { + "iid": 184, + "nodeType": "component" + }, + { + "iid": 185, + "nodeType": "component" + }, + { + "iid": 186, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "LocalUsers", + "children": [ + { + "iid": 187, + "nodeType": "component" + }, + { + "iid": 188, + "nodeType": "component" + }, + { + "iid": 189, + "nodeType": "component" + }, + { + "iid": 190, + "nodeType": "component" + }, + { + "iid": 191, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Locations", + "children": [ + { + "iid": 192, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "MFAServers", + "children": [ + { + "iid": 193, + "nodeType": "component" + }, + { + "iid": 194, + "nodeType": "component" + }, + { + "iid": 195, + "nodeType": "component" + }, + { + "iid": 196, + "nodeType": "component" + }, + { + "iid": 197, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "MobileAgent", + "children": [ + { + "iid": 198, + "nodeType": "component" + }, + { + "iid": 199, + "nodeType": "component" + }, + { + "iid": 200, + "nodeType": "component" + }, + { + "iid": 201, + "nodeType": "component" + }, + { + "iid": 202, + "nodeType": "component" + }, + { + "iid": 203, + "nodeType": "component" + }, + { + "iid": 204, + "nodeType": "component" + }, + { + "iid": 205, + "nodeType": "component" + }, + { + "iid": 206, + "nodeType": "component" + }, + { + "iid": 207, + "nodeType": "component" + }, + { + "iid": 208, + "nodeType": "component" + }, + { + "iid": 209, + "nodeType": "component" + }, + { + "iid": 210, + "nodeType": "component" + }, + { + "iid": 211, + "nodeType": "component" + }, + { + "iid": 212, + "nodeType": "component" + }, + { + "iid": 213, + "nodeType": "component" + }, + { + "iid": 214, + "nodeType": "component" + }, + { + "iid": 215, + "nodeType": "component" + }, + { + "iid": 216, + "nodeType": "component" + }, + { + "iid": 217, + "nodeType": "component" + }, + { + "iid": 218, + "nodeType": "component" + }, + { + "iid": 219, + "nodeType": "component" + }, + { + "iid": 220, + "nodeType": "component" + }, + { + "iid": 221, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "OCSPResponder", + "children": [ + { + "iid": 222, + "nodeType": "component" + }, + { + "iid": 223, + "nodeType": "component" + }, + { + "iid": 224, + "nodeType": "component" + }, + { + "iid": 225, + "nodeType": "component" + }, + { + "iid": 226, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ProfileGroups", + "children": [ + { + "iid": 227, + "nodeType": "component" + }, + { + "iid": 228, + "nodeType": "component" + }, + { + "iid": 229, + "nodeType": "component" + }, + { + "iid": 230, + "nodeType": "component" + }, + { + "iid": 231, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "QoSPolicyRules", + "children": [ + { + "iid": 232, + "nodeType": "component" + }, + { + "iid": 233, + "nodeType": "component" + }, + { + "iid": 234, + "nodeType": "component" + }, + { + "iid": 235, + "nodeType": "component" + }, + { + "iid": 236, + "nodeType": "component" + }, + { + "iid": 237, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "QoSProfiles", + "children": [ + { + "iid": 238, + "nodeType": "component" + }, + { + "iid": 239, + "nodeType": "component" + }, + { + "iid": 240, + "nodeType": "component" + }, + { + "iid": 241, + "nodeType": "component" + }, + { + "iid": 242, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "QuarantinedDevices", + "children": [ + { + "iid": 243, + "nodeType": "component" + }, + { + "iid": 244, + "nodeType": "component" + }, + { + "iid": 245, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "RadiusServerProfiles", + "children": [ + { + "iid": 246, + "nodeType": "component" + }, + { + "iid": 247, + "nodeType": "component" + }, + { + "iid": 248, + "nodeType": "component" + }, + { + "iid": 249, + "nodeType": "component" + }, + { + "iid": 250, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Regions", + "children": [ + { + "iid": 251, + "nodeType": "component" + }, + { + "iid": 252, + "nodeType": "component" + }, + { + "iid": 253, + "nodeType": "component" + }, + { + "iid": 254, + "nodeType": "component" + }, + { + "iid": 255, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "RemoteNetworks", + "children": [ + { + "iid": 256, + "nodeType": "component" + }, + { + "iid": 257, + "nodeType": "component" + }, + { + "iid": 258, + "nodeType": "component" + }, + { + "iid": 259, + "nodeType": "component" + }, + { + "iid": 260, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "SAMLServerProfiles", + "children": [ + { + "iid": 261, + "nodeType": "component" + }, + { + "iid": 262, + "nodeType": "component" + }, + { + "iid": 263, + "nodeType": "component" + }, + { + "iid": 264, + "nodeType": "component" + }, + { + "iid": 265, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "SCEPProfiles", + "children": [ + { + "iid": 266, + "nodeType": "component" + }, + { + "iid": 267, + "nodeType": "component" + }, + { + "iid": 268, + "nodeType": "component" + }, + { + "iid": 269, + "nodeType": "component" + }, + { + "iid": 270, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Schedules", + "children": [ + { + "iid": 271, + "nodeType": "component" + }, + { + "iid": 272, + "nodeType": "component" + }, + { + "iid": 273, + "nodeType": "component" + }, + { + "iid": 274, + "nodeType": "component" + }, + { + "iid": 275, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "SecurityRules", + "children": [ + { + "iid": 276, + "nodeType": "component" + }, + { + "iid": 277, + "nodeType": "component" + }, + { + "iid": 278, + "nodeType": "component" + }, + { + "iid": 279, + "nodeType": "component" + }, + { + "iid": 280, + "nodeType": "component" + }, + { + "iid": 281, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ServiceConnectionGroups", + "children": [ + { + "iid": 282, + "nodeType": "component" + }, + { + "iid": 283, + "nodeType": "component" + }, + { + "iid": 284, + "nodeType": "component" + }, + { + "iid": 285, + "nodeType": "component" + }, + { + "iid": 286, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "ServiceGroups", + "children": [ + { + "iid": 287, + "nodeType": "component" + }, + { + "iid": 288, + "nodeType": "component" + }, + { + "iid": 289, + "nodeType": "component" + }, + { + "iid": 290, + "nodeType": "component" + }, + { + "iid": 291, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Services", + "children": [ + { + "iid": 292, + "nodeType": "component" + }, + { + "iid": 293, + "nodeType": "component" + }, + { + "iid": 294, + "nodeType": "component" + }, + { + "iid": 295, + "nodeType": "component" + }, + { + "iid": 296, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "TACACSServerProfiles", + "children": [ + { + "iid": 297, + "nodeType": "component" + }, + { + "iid": 298, + "nodeType": "component" + }, + { + "iid": 299, + "nodeType": "component" + }, + { + "iid": 300, + "nodeType": "component" + }, + { + "iid": 301, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "Tags", + "children": [ + { + "iid": 302, + "nodeType": "component" + }, + { + "iid": 303, + "nodeType": "component" + }, + { + "iid": 304, + "nodeType": "component" + }, + { + "iid": 305, + "nodeType": "component" + }, + { + "iid": 306, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "TLSServiceProfiles", + "children": [ + { + "iid": 307, + "nodeType": "component" + }, + { + "iid": 308, + "nodeType": "component" + }, + { + "iid": 309, + "nodeType": "component" + }, + { + "iid": 310, + "nodeType": "component" + }, + { + "iid": 311, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "TrafficSteeringRules", + "children": [ + { + "iid": 312, + "nodeType": "component" + }, + { + "iid": 313, + "nodeType": "component" + }, + { + "iid": 314, + "nodeType": "component" + }, + { + "iid": 315, + "nodeType": "component" + }, + { + "iid": 316, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "TrustedCertificateAuthorities", + "children": [ + { + "iid": 317, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "URLAccessProfiles", + "children": [ + { + "iid": 318, + "nodeType": "component" + }, + { + "iid": 319, + "nodeType": "component" + }, + { + "iid": 320, + "nodeType": "component" + }, + { + "iid": 321, + "nodeType": "component" + }, + { + "iid": 322, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "URLCategories", + "children": [ + { + "iid": 323, + "nodeType": "component" + }, + { + "iid": 324, + "nodeType": "component" + }, + { + "iid": 325, + "nodeType": "component" + }, + { + "iid": 326, + "nodeType": "component" + }, + { + "iid": 327, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "URLFilteringCategories", + "children": [ + { + "iid": 328, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "VulnerabilityProtectionProfiles", + "children": [ + { + "iid": 329, + "nodeType": "component" + }, + { + "iid": 330, + "nodeType": "component" + }, + { + "iid": 331, + "nodeType": "component" + }, + { + "iid": 332, + "nodeType": "component" + }, + { + "iid": 333, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "VulnerabilityProtectionSignatures", + "children": [ + { + "iid": 334, + "nodeType": "component" + }, + { + "iid": 335, + "nodeType": "component" + }, + { + "iid": 336, + "nodeType": "component" + }, + { + "iid": 337, + "nodeType": "component" + }, + { + "iid": 338, + "nodeType": "component" + } + ] + }, + { + "nodeType": "folder", + "name": "WildFireAntivirusProfiles", + "children": [ + { + "iid": 339, + "nodeType": "component" + }, + { + "iid": 340, + "nodeType": "component" + }, + { + "iid": 341, + "nodeType": "component" + }, + { + "iid": 342, + "nodeType": "component" + }, + { + "iid": 343, + "nodeType": "component" + } + ] + } + ], + "createdBy": { + "_id": "699f3e2b85569c9f5d8e1f38", + "provenance": "LDAP", + "username": "admin@itential" + }, + "lastUpdatedBy": { + "_id": "699f3e2b85569c9f5d8e1f38", + "provenance": "LDAP", + "username": "admin@itential" + }, + "created": "2026-08-28T22:11:29.635Z", + "lastUpdated": "2026-08-28T22:11:29.635Z", + "iid": 53, + "thumbnail": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAABkCAYAAADg+Hn3AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhGVYSWZNTQAqAAAACAAFARIAAwAAAAEAAQAAARoABQAAAAEAAABKARsABQAAAAEAAABSASgAAwAAAAEAAgAAh2kABAAAAAEAAABaAAAAAAAAAEgAAAABAAAASAAAAAEAA6ABAAMAAAABAAEAAKACAAQAAAABAAABSqADAAQAAAABAAAAZAAAAABcVM/PAAAACXBIWXMAAAsTAAALEwEAmpwYAAACymlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNi4wLjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj4zMzA8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjEyMDwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpwIzk+AABAAElEQVR4AXT9C4IjObIsidan76LeSmbns5mZqnwiogYyss8ZBOkOmKmpfQAHnWRk5J9//v/+r//7jz///POPf3/99QedX/z8+ccff/3iifjPX3/8+vMPfv7893R//vnXr3+RaSRSPU/wSf4AB572L7I6d3wndVgwRKutpjwlq590lLP/42/1Q+1IqNoIz4z+fxQZNg3Np/93fiYv3sPUB1tmf5V1Afz5d4H+9Rcl+VM/f/6iEH/8+9cvRn9THBR/6VkpFgx//YGTv6WQ9G8jAPPXH3/+RV+Q4j8JEFE2+EAgIPvk6K10gL/AViAhSpwaf05uiPaVGiIRGgfx5lf2f4rFKQRDDjHbzeY4GyP7ZVoMVOdLf7MUbuC2JhTxFRPBv2M/vXG0eobO0txuKEPdVg99eXLpZI90YSL/jgsvO8E/yN5gutM4CPM9fGw/ukmGPBxpfVqle8H99PiwIn/wh8+acij/Dddg8scliOdgp3c0wQe7mE7vSRsuP+eL9eVFt/rHZwDTZ/d0iVvziVkiywweZiCnJ1sEXfK4Ca3LpqZxkcz+1sLz6dmGH5YgFq7HrsI5KDIP+C4RTnSNkY7LVs2iCSGIjvlsKZirMf2+LkK55Fx3mo+zDgf95WM4jkDz8+uPf+VLfkJ2LAFc2+oQWqdi8vwfHFgKdgAN2xO44jTwikHmxifcunrFWIRiYuiZQLo4fv1yAzU2FYj1/69w7RzTim0FtI5knXvjMkAv+IfurBmglywuuvDwk4tdvwb0x69/pKfLAgoz8szRwNDFr5OMoV9I7GzJQPxy8RkXIf+DvcnrqNcQ1Gz9rSkYuPzJrQ3PvCjYv3/9Zan+/vMfXLWJmR+SdgpY2br+Zcc35l8W2Ea/VULy/6Jnc21MX+7WsvBqbmB6AGNVmhhi2wtTBQdIKf754/8l1yYFzJXOOcZbNQhbFeDDSWLIIcUOSYURQO6G2MrB/l/tWxxGL9dsUGXTNZSZZdOKeuFWzx70Yc4QSV375AZgfhWfkl5hGJtNd68j0fGIHvfsPjzFBxvY8h1FDAWC1XN6dSpjYhqGY8W6Y8IX2kEM40oVqjLTK9J3CmMtMXr4MjlA+Ln88MlAWZs3hJcKwq3JP5l4Y34M1re1y8tl1Ni78uIwz0Ukj13iIBYCb2648bFG7Q+q1KfLSu/f8W6SIL/YgL7pNFwuFgjAi/Ms1Xmdb0ajS0d3NoxCm0SJYG8MDKJJufodUh5LX+Kn5vLA3gUZu7ow4wZsJ50H/RCnNbg6gUY9jFe/qhpXtPdK8BYORrsW3bFMwGpMx1UiqsC1qTxcLBLH1yZrVMC8qrylqnJeXecdtm5DEqDGTbvJP/hCJb3JSGHF/+7Oy7CTcgIXwhSYV/P4032MsUFwcqJsf+d2E8bdXiV3f/oLvKtZCy926d4G/M/ulb07ldiNA6S3khIj+mvL0I0yywvLRQP4b4L7B9Xf0mj06x8PuiPRv9Cp/Q/ZgbZuTvO//3rbR4fA5AT8d6U2LiCg3TYpx1++CHjjWhz//oPd3zKsiNg1P+TihFVmTEyvBN2yVqeS45UFp2ZJ7YlK58XEqLis0d/xO84rwUpmUDzsA/aCuL4XWq936g2D9qbLGTAsw9HvZqQBpbW2qrcMGij42dB9WwHoHbK3JOiaQDg1YjjzaE14RqrmNatuFr57cLnZOgryyaBYb/lNOdxNA/aWGlRXBH1JbHSaHLpXqcKR42FkqkzaKsfASTKccukOXTLGFLZYQBSB5GBJuKGcXTwPhBdrrza5AcrLD0cmgkG2npGo/csAnGuxTy4Q8V9/72rIBo67+tRBoDU4u/RdO5svvU+Omjp0K4SkjcDNKZsdtzg+eKmyZvq44BgYY7Yy6nEQjjwc90odozLgU2lqvOKUT7oYfCcosOpYeJgLBz45u9AR+37PC9X1LYv3kUavm7+oDD4MNxfaoKoOyFYAywpY98gSD+9+3KrVPnIdiHhX78G1R9qBcAvTpcUm6UU4tvy2GpWI8ZpsBW4JuYkgdfpcPfTc5Y0SOFIzrMir+ULBW+H4VnYuF5t9tr1VEJZiWpgJjcFCGZvtFoZuetvLuCKSP6ZgfRACE+ErEfec7OPLeTfCVpqN69f/8VMGHfJSNONfbtBhEcBraL/Amj7czduvv/7Ffmmj5M6ezS+f3dMtKjZkdJsmzjhy0Ht0Z7zp45641wNU2nu7anr1y5Gutjx+/UMn7f9JLawJUGZ8+VKq4DYCu80ZkrgRKNtBFArDMrDR20vvXfhvDZS2xil2Jk2P/kaL8Pz5CqfwNM4D9rP9919AqZ3+8/PSszZxU2L903eob+7qOKyM1s39pTWjbWCW6F+sCmD5wrCsDDYCwqPPTQXycem/ZS8vffEuIpcUk/XHv3+zteLMae5MqblqIUEtnOh4Z4QjeTOuPr94ywXQ0DeFvFAu9k7q9GF9xns5wI4JzRfWyU4UlQ5pucXW9xwaKDXHqWGtSO1D66YwryHe0ZcNHjOWx4XjXYZNhwKBaIfu8a9MIA6SDjvxGEARR1psDAbRwI1HrAce2elLT64G3f/HMlshAM4W8yUnwaLgzO5Th5c5E0C84tvnGXNXqP40VhpzemOXRuGJGYDNobhlkD/I2DYiAOxEus8LqgByMKzpV7U65bSpuPxNhQeRuGViiztP4jz4WJEQkBD67iaQlxtGLDxnQf6tDpC2EZJPdm42eSUb960y652wehl0acs5d5u/3J1MkM2St+FVXLVxEq93pIZQgF0tdLvdMQ7L2KF+MbCxodexMSXaPGFnCM6HXUgLdGLj2qcK2D15AgPRgNh3pi/DP/jhY1hbdWmTZCwMBtMb0+1G4HYnSSc+LUeboA3gPGMrerj5qK8nIKaWfsI7ykaTQpDYjx9iQXLzQI+WK1fdDQDcepgSH+q80Gvh6ElUo3Ob6UdYjQQMbJi39wBZ7MbNq2I5NEESSoVJ9YLDaPlYhufiFjCdjtUJnpsuLubCmmyznPX2U+PQVmzbb6aMEGNCwl10BWIcAj0Ka4dHELM0py6DbQIKfVmWx5D8iAu8S8hY8oG4KmtvQu4snBlqXavfgmEo5jQv7m0gzSb6ZTqcfW3OZLo4I0Le8jUq40Mzg2qiaDFpAbSs7St98aRK2CFPNxncUZZsmyNdNssikYo0Cbu50DNDt+Yrt+e+MSgzLxBafbpe7d5aiadUeii6IJZUPp5G/722ZuemsXeD1lw7weMXb4PhKmapp/vJp6jAzU7bHF1QyMgNM4ReoO1SnOWV/FFfH6HWi6DeGxh7s5Add0h9eaNZPDsWnnlw19Bm6gsOrw6xnr1wAmUjdcGJq56UyelQ6cK3w25luF7PvXA5J5LsswIw1jaXIGgwOxfytdyTLKGquxJzRwpQMT54fEqmxDmUyltffTdhdJpDbH79Pxi4jBCp157T8mbYrqAdjdC8Q1YPDFBHexMwTjflyR9m59VB1Y80sxpcopBeCngq9lPhvtayEiXQaC7GhlqEw14DhC03hQISRHPjwEiNfTbPqzL5Jz8bZUmGGkaJPDmY36vFrKZj3X7nRpGzrQsC1btxbgwTc8E8ZqLQleHnmgjz3qyaux8btWY46gxR4zlm2KarXCcLsYTi6o4vznG8WJbW8Ur1ai8JS1cGzWotC3pdlHEvDGOZpTGaDkNzwtgwz1wQre1eMV0Yb5NWo7DcHNDsZ5svsA0S5sd49AeOM8Gi58sc4+NoHItnd88CoxAIVIOlq12b5BxYsLx77MIsEO9CZmH+qRqbZAJnsrkpibrxYP34fKtgFFeZ70sGgGXrJgCmO885EZ8WI1eLOAnZY8ze3DGatSqsGTL2KqfFcj4ZZC6lubj5P4hc3wqhPmyEsswFUWgsNmqttvFZZmpkEVKBg+NtRr7ShOWrmYRUMX/sfGZgLfZKvpU+nS6WB9RExzJ3Y+uduTkZDSffufshAYhqourystQ9mO9Fjk5/TgWbZqGWOwYG2AuNedA4yWMe8TDWNGGKHDecWH3IcVmaH1qp/kd7fM/uVTV+XDsWYzPf9SbzdZGAvNstrsOkFIhd+A6L7QP5wVNhGK92gCFTZr1k+GxoG8apKtoitOfzBeq5qDhH5/D4EOiiacXHM/PMNWY+0TBOxdismygXlnon7YU3unnWgDl1EJRhNYtjVxvkWjf3EjnogjZZN6TxXwzoxbZ2nCC9J8EqGpf+1pK+tmU+fBwvzOI2HGGYfJr7kGRTpfGAl2/ZERR12hiswwI5IiF1OYJYjkJTmBYDa+5NCXreehen+68F80ePQIzHVxPe2yGgobsYd+fpMuyWx9JRHG16k/eSBe/lLW7EeJRkoZsbLr66+oVlIbBSV+QdUG8M2fOFyBsUa+Bm18Z6lKgMp1lBzQz1ZQhelykdazs9Yb1PI3TTl9Z2eBqiXX1LZ7+wTJe+b0l5peYrmO1t6tJkhM7YZlRK1IyydLPoOsmvX3wZv5F1K17Jqa1U+PEGlMYc6NtJoPF51V9/r787UaQVDgz2Qty5Bv7YFjxX3S5yIHIJ9m6DL2/oicUOv7kD4oyRhzeneughxBHfTWGAVUEV7m7QnHXJeGB4YQD7gVXthqA17twqlvTPFTO9VLVI6R0Ns3kKToQgh/OUP0iLd4r01RDl9073CqBB8zs+c95FLf3yTuOU8TOrN7WX60XSVSLY2HxNbrnKYp+HxpT7VTSh84yOF0+U9/F7YOSe3WCagZsXOZ6e2P/ks1Be/AhE9sXo9UAIhMOxdxYWXydy0hiycDcjcPPtaYn5sSpvQHiitQiYNLGMtQmkuY9csf7JsZojl3LhgbWvBy3f3Wt0CLtudn9JpJJH6ikaRnIuI5elauj0pF8HF0yW2T1BMYyJAGivL/36OKnjAbOPMI/orNk13jMhKA/O29cMIQZdLmW+WojHgnzW/HVQefdSPlXL8H1MbwBlq0c3FKn179NJcIfYqBJsoNLb+ikYNH5EemONViZ5nLuS0itIwyntaLrpwUI+pMTr+imQAjsbVvRkhCUHP5uZxXAVGP8ttKIqYEulh21pLi4Wxa9/2cjcSCPm5EXDInUJFu8uoPwDbqV11/bCd2UZ6D8kZ6hsjHOJzM+IdP2PH8rz41v76gKkL9IICX4hJP7WKu7l4MEORXqbG0lpfcFydSP5Yi12gC9B+WYPUJqbvSqpjaT8dLyLHh2wrvToFmdQKYZvru9uTyfk4jT8fzXtLOsnnsYcUozbHCdwEzFYQQJOzvgxlIcptQbOXgNNOS9/9G0o50R5+HFWENG+MvCTT11BIqz7i+c7RrEwm4dXZYU6e+OVQ1vX3vlqoRen6tOLy0HOUKAqV2ouxnBYCn4Bt88WwZkQXwx9alQerqVdj/Dx0alCmjgMejFt3SFHI3VuPLS2l4lGitJ3iPyErQy45DDKxeJSFxAxJ1R6yMbqEHnbQxIdSO+a0cJxBWrQpKBB/OYtNIRQ4Eauc/U22uqD1CD0Wls/fB9uPbdLrlgVVWQuVL9Wc6wfnGNdCkukTVJWEDmx/5rXkG8vXUzoZf4EMRaQvkc8KecwIHe5vVe+RVwQWvBQstZdmew/ZUJrUDrxEWhnr19prLpmo2kDjm//85U5maqM5s+pKnmGTqy+50ZLBhdE0lWtxeavKrlY9e7C+A/dppHct3E2XqHB7IsssJroS0vmo/f+FhN5Cw2uYnBD1A55YyDovfgW7/xl2KQUhkLDPjf2T/IppRdONQM23LPZBokBnwwsa+y7IXWM3Kobo/lyxDpvx4Ya6qTqnAFG+tD0GTT6r4PctId8I9mSvzAd5Pc8w23ZykPdY0A2W8FGMuZJNUDcSTnPR8fIS6DcjRtyFnrjZYa/+HIQyV4GZF6b2TgsedQpPVwkUt80zhD83UAMyjEiTNoQiYriWs/axeB62Is32/UMeZF1jVwWnVexsxuHPMfR3f75ksKuxRFCVPQ5DT73XHvWQKyAbRZ0kPkdJQKWq0cerWe5JKXFax9dRQarE+l07PVnzbWmpxu6dpbTFpjWtW5P0KYXZ7Ry5cnj7GXPgAN7P3ohfgswCz3iyItRXVEWs8OQHtOJfJvoD6VdOXDjNAl/zdESWSffKI3jgJ/gEnOI4t2FWJQQMFkSI+/x7X6oRPo28pi9o3MxaD9fFtK+kSoy9WJRrcymGrEbkBAItNdEsEhZRpSBQNensymgenvyMU903DTaNJ2FHJPiqnWff86DHBD95W8BuAdLoh0vOrxLf5FDrE+04kUx6LNhlwWy+e3MuGiaCBcTlIqEeCg33TCgL6mELuDuaOorNl7lPJqJs7fAxfV/6JmmenUe19kpRdMByNwOVYHFG5PRffvKNgYN/PWD3OEYU5abcqkDPx+fEiQuS1TZHmmI4ErpmO3MI7N7VRv3lcoF8mqunXSN6zdSkE0vCFURtlycc23aBPXitlQEYTTMr1BryCOt9u4gniVjs9R7MWxSHc2AzejKf8sKrojiZr21sYV9OBGuJmE15yxnV+XbkOQRgociAcNwN0E5lRVNi8v1R57+wkbNAN+NhJtr19bpyMRSYS5vTn6smiULVAAPe8WL596v6dKosrEyCLY5B1X5sQyooNQ4evkTl9yfT+NQMywWzrdhelF0Sy2FLl9mkC+CgiPLcruCSJQ64UETIs/AM81X2HtfAb6rc+LH0HzniJ4BEK5J3K/lLGZduTF2O6PIYt4Ko+Pi8I6ulyNUW6X42WShw776GxFBzNxAuotD14waU29l1dvnafu5qfTt8Vvgq9VQgosB07PtFRRZQ/SluRlarAnUbr05jPK9CKBSsHzpU0vJaE2VduWCDMzWNjIXqcsGndekDW358O132HyeDsERcnYxYzfVfOUsP1dyv3uK7uJUN9HZmaNN0GK2OskU8WN954NjsSEN8LGMYQfRa9oI9zB7+lIAeKzz+Cn3B/fDIwbji5nCfbikHiVnLdTI7BVle7nRxal6p6zaF8OjdrDAYmAijFHu2dn3oxG8qIgdNougWesgcBon99kKkPPFHrHQ5OPqotakoU7QejLXwuKgrx7ykeHFK49mGb0LnBHS3PrZE5dYYbvjDY6W9e6/fNO+ewJJSsgODTOMXJQ48zJcAHtLjloHsIHIgAE9usWLfd6NOjkf6Ln+pG1u0sqhLGy7/6pDZLLkI12gww3/53/8OOX8SUD3cpPyXBWzg7kRUVK9CuTCPdocjMfDyijT+kayC+fyF0eLM6MKY8SwWHLrcnwh/XcvVNHisII05VDgGiB5d58qLIiTZIvrOgLLNgb2GcZiu3pWiD//ZTOutqxGF6Q+stE2n1gQB9FpH8j3Rkbhw1C2ETEw1D4TNK32hYUFk3eGpLhfHu+tvkEWfDtYvxBOAMZnuFKXFTI++kycf3pVykQNSpBUWXlqGWhvdVsSrFd/Is+WdJCVoa/DgWOaeyVukratqZ3DnTjd9ON6goMyDKnb4qY6paXASGgX+GIb/vbSAwx7TB/CJ1Wg7WflmLPczq+a5hK0OdjyB4KxpZt79dP5mqrMyjxdKtQxWG77h8vXpuAj657KWXX5b5/IZoFlDfc22niMrXWJT2MeZHeNUij5LD/6yMRo1to6/zkxcLVsUIUYISLXccuiq0FLfXkdGIq6uJBcAVg3/qK7m5j8cmplUcTwcPlUI7+Jd36R3slFroPcCspEMBhAx4icIIH6rcWEAFcZTMDxCy4Y0UxU//aJV+q47Mhp3t4d03GILKedIRyJZvTV0W4HwwA1/FnSv4L4neWZSQizBZ2pMa+XM3+dhBWnF27pIsQLaAlcDrbCpLsAvfqSVynUF7XIuZmV40LWNRhhNAbNWhJiJzq0GgroTjCUtqLXTLQVeRIjKyzV2wz3Oq9YHXS6kdtBi9nXPJTeTmvvP6UZVCw9DFwF6j6ftCNwnCw8sZ6MrwSp1DUAvecQawD46p8nHsCT3vpFZbpXQnl3446N//qwEMH6St1Gra+VzsiLEfX+BcxWk18XqTFXPdvXml7t1sgGfBFlp3DE1VtwlqY8504SxsdTd3arxeVVXeh73g5ZKHN2frY8ERmmycz2R+0Gf/O528Nzptnzxdmup62hGzCdyNzziQIlg2wc4c2h8WlYjMSgTN0sOtpfqVEqgaMYV4cwydFKlQ7Me33Nt7pDFoNUtqtPy5F1Nj9w+FqMYVW+V61NonLiMY/8w4HD+TwP/RqRfYGcwfnT9pYRti2f/Lc6WgvquvCw4WOf4nbHj8ZafnZ/ZPp0P5t73RSmH5uhaQVGcGEaoDwYcXS5KkDk6FPh0kIYeXODsodcArHSNn532aWgS0OIVrEDqIPbl0S9J4zqyJs9ZwVuzlqo/89pNNBQsghMp4i2tyjUVKM7cIX60uH+6e7S54KpQyyEM0JMRoiM6DVzLJwTmEtuJl1WcEl3mmP+QTLdl3RBTvrVYRc5hyg45lsftKIw88fjilbXK5hToKKSTkYBaQjaNSEVsDiVS9Vrh2/Fzbk7BoSePeXVfOnrQ/yqTSldajaRXB0uAQF2FTcB2LRJePUYnzaZjaskObgj9FBgvA45dRUhm8+PqfStL13HoT+FP850i0HZa3/5LwSWl3VNtYXyEF+TVgLw44z+8X/QdnYNPNxUB5Qjf4zNqfaj/6PLxXz64QaXRw/EXHdjhgjtH+eP7pNXwpcDMFe2MVKxr5nj49fBKiNMbEbJPh+AIdbgVbCeMvG12dT95PuoYG0tfDwSy/rDw8bQKHZs0E2pb0+HtQ7z5eZWHLvzYp25GdLuBSec+xGorfUxA0hWHncNBEPKchq5iwsz70W843Ox3W++dV0RCxoXn5F6OzPX48S00KOYJu6ghzQE3RmMMUOGSGWmyyLSOQGqTqW42bzxp1zqP7FEBbB5X1pZvnm55R9X2P5V84Z5yNuWwYHOs6RYvLvLbtmM3Vsl0mgTNy/LJ9N52tV8VBbVlJdLwpfYbFD4+KF3E3hjZ4q+Wtl7CbgVcqmen+PQ7vPUqA3vyLFwITzDSEsF6o8XUzv/iOcrnr4IaxfF0BdpTsaz19xewsBha5POZ30OxlEWz7mY17/zmUI4Oy2KJZasOfAj17M5HjdWn3D6s3a9H1BVsVcjekA+FvaMSUDnGaoXWFMeCVvFw3MH98SxZTv4bF5/HB+uOI/3+o1O5Gnd6x1vvtD48xDf7iwW40frvDD4oTPmCyta70JPkCbh+VCebpifNK8fMtx4Le/TPV5JXu5vc0sHMDnnd+k83Njmt9pC4ltN6HMgz0V1Dh3xxaFSSJrmnLCQMMqO8V6em+iS2+9ctjK+MaLppR48i+5zFRvbeADowxOHbiy1oc9YJxfrIvzeagggD0BuYsUFViqnSVve97a9+4JgvuDmRz1PfDhO9m41GMvmmz5zHR4h/zIHBgixE8IJXfkw/JFLI9m2GAD20lPds78gxS3sTTEU+vUBls3RTpuiHlXcWfGCEBNqAjdQQvRqn37VtPqvRY6NMzsHmGAXZmSuo0sHFiO0CpyV5/BcFtMj5vwzPpDFrCsJ9pYXp0yBd3WIPv77Ysd/eg7Wt8f7sz/0D6eLXMK5Nw6Gj8QkL7neb9m3pIZdXwQ4byPyq938RMnIza5YBDa9aFLuIsqvrnh2qgjOZePJZWXoQQ93R7H4oJd3SikcKrGYcRTd8XnhGg7HOGXMVLzWn9atkdqT5Ly4kmz44RBUJEpw8KwWI8rDizOsDpw/UaS/0cWiqNgwvlTieZF+VrWkekQw3GOFgUfzTqeovqSfGF6xP7NTgJFGa6+6nehcfXnjLCmR56fkGmfma+EuH81LrPkh4nM3974+xzdMtgBcurNDiwtf5Dkh82jHR8TxD5/hovuUFtl3f9CJyTVjQejrzK2ous0vR+QmNwuLSrw8+KNWhILu2TxU+GIh7ZKSAFQA7gLyw7Arzq1MjR605FeM29a4rJYv51Px1huAvjlJbCgzNSaj6ibGWEVKuKWyt5Nully8WHrdtjM5MfwBgcDqGK4P1NSPiHM+5ww/oZB+QldzzQ32Q4RsRPAtllABtKd9yNxYCiFhg8K4jwxzd2CCrMd5JZi8eErdLAQ1WyidCp2q3MNTrSL2CwX8SiQF7PcoYd3HfgfyZHH57MLKmB/N18eKZKX947ybADSrJbUGa14682WPE33i6PfinAv/ruXkLmztri7ZlHTuNiGMWTZ+kFKaqR+mFVFkr9TZuFKA6NoqEWlVMJIazu/6PD9IpbSBnSWiZLNNyiERxHLbT87R/J4M8aepqUH2tRX5bOseMYgHly/YE1weyE8SNs9XmHLO5mEuqmi9FlBaeE/88M+tLgrGkZ5PBtUR2ehAPz2/edALLwK3EltH9dUd7XvBPPtN3AF9ley6kxM/fXQjV+adja5lZAXuLTA9QXnRp0urs5emjpeyEXEBoLEjG/2gaJT3C+3B50Fft0lm+WLFnLZiEa4dDnPS3W6l291k7rrRaDMapTZ+Rmr8+ph/nGJjbG1dxuDCBuCnDPPJcV1dGHzwop8mfwO/46//eJdniJsXMvQLWOPBvC2BciDVFhYebrveSfkrfm4WRia6vczpJgiC79dynKgr6/ijEC4rhOHpjV7Tb9tm9iQi6jsrdHjo64Rprj8GYrNoou4kZn5ZQGcQydF8S7A/MvE4PfO05vItXc5ORxqyoGDTQUiAzk0vHOWvV7RMS/MszxneXajDF5MvabIWtAaGGrcVYMAycLZy7iT4V4hGXDC9F7E0q728LtQomka5aozeZ7CMP2ILhn+rEeHAk/I+R22aaJyMtc3kmTA4lvRFi4N55vgTfMN46L+18NzPRh8wPmcOU3y1impgFuFnuM5BjWI04xsNR8nPto1GK1e2jj7BPEvEdLWdr+W2fYbqNcX68YYhD1ffHGCIDk4vn6Y0lKuEcWtkayAnz4v102e2491ShL9AULrGrq9foMU3m9lOzbGHM01XXh90fBubEHmNUPerNr57mZF7ixd8Z12w07m5uSGSmKgo2ogeDULc7JtrEANtKXNk2Mp3W49HPTIIHdI/fmX6a0wBtDNz5cU3m4ppTJ+r9PZTUIMTy1z8CCU+uaA/5+/svxHRBd6aIZwSh8lxMLFuDfanrZVaCFhIR8fO1yrD2dBhEmPIfivtX+rekL31ytYdkkzYAxZ+netJPHFqQT5Mq/bODn70y//J/KuOp2v66xPXXdjo/FmlZkOcV+gfnI/fmLFdrFr5DZZhtmDiksy31V1kz3cbC6ZY7L0CnXj0AX6WUD1+Y7GFM8S1z13l7J5YnzJ/cfRWPSiue2DDbdlpw0NYNbVuD9ucjC49qM6IqucrwYUlizkIagkZDdc4RQjhWxvbDfvUBqbCVeeX/5UxEAdkS0kB7ew9jTFph9mhgVzdQf8n7kw+yyMkFo+Qcy8mCk7cP0FUTzCrAP0IELaH6Vefr/TnvdxJKtvFVpwf5+LF+qTnJUe/VekczCRzFJ1XOyfglJyf1zCjCBz3za86m2rbrfxcK3OO0r1/BYbxfFnRYmzbEKXcUnjuKu+12jXry78OmU03SXpOqfToPue3HvzMUBtgNS3ipNPG6yYrD80vORcjQ7jYFUZIHPrUqxIXZhwMW41FPeKPpxxqLtjgymeE0mQLWrOxuL1lVTDo/+N4Sjcot231vGVr15OWZcQf3+bH/vNt9FHqBwdN49zklYjEWpqj9SKjtijygBkK/fi55XxWDmC1ZNf/zDJjoa99+3DpgJOAn7b2V8FZpXuGxOMNGTYzQd4XLMaMuMk3jy9+JMhyhbyXLIYmRkNTiK6cBuot64tL/udTkm4ONEUuRTSe0VkqVRy4qGx2F2O/YqTumul/2qgMURfzfp2JfEcPSISxd+LwbbllaBJbM4D6UGeONFkNfnI8q/E40veC3tGNtL0GOXe0ASvdusVi2cPoPcS50gaBlNGq+6/gjXZtpfvgEH77X8zr5UFuQOabn+PaNYIO4fCvdC2seJXPIz2SvhlHOosVgj4Ohp18MekUL06J2gFi7M5T6Xe6kP8vLZufnGJ+8l3/fHxqYaDeV+zi3PLTsgQ+gbTRuhAwLz/jtAtrTrujbMyBd5RF7CbghREwRo25V0CvOfIO8+bQGg9v/+yuNLtrXQDZad7mo31ciI2x3ZsQwo5z5Lof/w83AHpc3RcRyFoq+PwgrZDj7Fe5ydv//sXf7StNgwHFE6AS9LklYUb8wQYDknB6cGEJ6PYueopEiJThcvA/61Jhe3v4CZ7c1IHz43ltZG908rdTfA0vyllLAYfJ2nCcANaLAXk99TwNzDwd2p7OTHSlXg7SL7mNUbD5//l/tEBfaMta/X+3Zfa4NNiTE6oMqhy2H2s2Fz+EsYqGJO0nBQNxrN9PH8r8gOWO124Yzyg+zM7K47NK9MvrcA6iPFyc6D5xHe6K2Sj+7FwZE4VfmIfhVHxfvUtvQuP49Nb5AT/Kk8z+GxdV+Wb3I+fhFjcML8mLwfRypF90+p9jF+BV67DP17cIPxURrKZPLJUsFdKQcvbhNWIfXThTZeF6y3uxeLAuDY4PfWticI9uICH+Kwdlz3R947lZQwC8uzdvEsT17MSQgTZ7pa42w/zYdRaXd8m1symvVHGAnyHu9MG4GZe8TTaHqmhC1nNUzwNxliL9PRizY/WXjzQXw2T6SZWyDK+mMLrCXJL592bFevEdAm/8LrYP1jr+6e9R9prF/YW3dn7Z7i9s0Ngs6Vr+/BFEuXen7mdbBmrzLfY/+GVs+LcGJDgia31er3pgfzQGXXw/RHZL9GQfAoTZmtXP5i1aih9nup9gtHMZentH9yJqYCUVYu94JjjsH9RMIN5WgteXRZuMPAnxLbKzJZLeoHDxd0X81ttZ24rQyz60P8OgzsTGzt+K1RpOrAPUiukWS9F+TD7prlzvCB7wqL0oxiOXvvIJJ35y3eQDGsyajGf+sppzg6imn2DiNhFtLao2tjb1dTf+cbxVFfjr81kivq5R2HWF2uyvt0Gwj+Dpz1gDM1GPKOk7E2hmHFKfiXm//JTPv73j/uDWmWa1Cj8BYOLG8UcjvOIAOEy6Cie7QmK6PD3N9ulSc3hXvwBI4z0/hfR4tKNu8iY/t6prn44+QVinTtiwDuy6eZnD9oxwxWWYkvphq3p6mdq1l2zZv403/rOTFaS76s9NbzzGhtqge/MUMysEdzY3127UdGoI56tdXqw4Lnd2hr3uzLKy0mV9+x0IgdDf5iy3/S39YWKO6j8x+T5Hd3xqy+ds0OuFS4iLe2+P9NzuqGf/+k77rlY23r7iAQZXBQH36ylpHFnrEi5t4VZResSqTcV6SPA9a//GdRSIinI45T9+n/OL11bja3Vvl9Z1QM80KRpLWUDa3m8SPI7ZsGCIFsxP7hi8GCyByfTaclJELrHw26QVpNSnVITghPVlJQInWkXHPvNcXMfPAE1RLHhx8UlEa/xcOPZ6ujbsG6lc/3ZFBWAVeuJ8I1Gr0dVMwTOOYzbmMQrrMYvepGh9UUgrWqx18Usv/ahWZ8fTz3biw5xWnOH+bM/wv8SP3Jge+Y8SjQHb5yd8UomKlJM5lOHUj+B8Zev0Z7HDy1nxqjH9Xu2CHtfyTxLH/H4K4tBaXfDyVruJPd7PepLO97zGqy3yVnBcDl3Ne2EXuS9tNAbnZz13d1dfIZsLNeBhMbyvoipO4yYdhHtO9sirdlzFe2/t735h2NWrtNz0Hld9EGwRu3ZyCpU1N4FWF1lNb0DoMEfHVc4IoH1zgMcgFrOjSeRWRZJbdrKGXNzrB24B+PsnVqvshPbXdvgvPHDelX0GUHgFs+y96+y3VtTYDORmYd0Fh5pQMk+snxxgsE1ydnoPxmExOsyu2SZDgfS/uI05/riTnJMLR4Dth/B1T/xhi9clSRG6XbHUs1zwM2zGEGhX4+7RlZJ5Qo1ukxTQHA3MvT8IjH1pFNtKcNpXoG4OtPGDkBqYpv/gW0OnOhtGsvtcgaZO8uLRbY2TD4C9q9XmxhGI6ZYj8G+HVklgxXr6Uv4mcZp09/P8RX8tC+mWHNLFLufxTvAZnlRXxzHA1vkDp/5iTvzVjoWX9y/wen5mmutm49UFvCbl8vRV4kWJXi5Ad8oDfS/a6vAU0oQ8YDZiVHDooe5EUzSyVMIk8LylqoCVY7yf1/5nL2q1dZX8mH0t+Hk6uY4T2b1ZlHgYN0EH5N8l8TaqCzjbNqEtmmLTlg6RtMRa4nIgNsz4OLgxEUehneyq0M6SwbYH/xR2CDh/xF0M8kx3qttAPS1IKwLmcZf9gsjFt+tm++LjjKfF9/HtpeGlmYDQXHmZb6WbsPa+qvQhfsoVO7L+l0L/EfSsiop+rnil6Q5JBlfUFhXGxRDv2NXXq/PpV4OMEBnWgpwnI3PD+ZT/2e4829kpuYQ/SsZvyUQ9jE4ELxhtLAeN5Onchqgg2Golz2JLqLZUXV7zuyUha9MhLIVqL6mv3adLepQpameoC/ml+gMeHrbxRoyh/BB8Nkj1iq2Zsahfq9v14GutOSrxpGvjfbh1tlgN5Noox53IYJ9y55/Dn/1PLDiRUd1v+hvr+X/qLrA0rw8OoNP2lWB8rddalT8b+I/Pb7Kz33odWp3AzN8l+4hWp1Vs/tP8wDvWtI39OJTMxQeYWVgT6RYlVHLNMg3w+vgGuoXCWULHN38PVU0wfhziKwVYO5OzEgOK46fNYzj0VGALUqzNpeub7fUda6/EGzk5eC7hPtiaXbxiMV/24QbPYqa3OW9OAOebU/TirE93n5EZxFtEI/B2hdoAwcrbu+40MTfljsTql08mpoijySJosusnS6nOb72d+/pQc+44x6gjCkiPDPjgzrN3UyinOFiGltvQ0HH65IbEx/BqLapnL9CL005t0adwvA74kTgZu5MMPMADp/spX7UtQtL0VlmzDtk3FfQKCvEAqRzx4M5VBhPQLJny51BxhSHn2yTN1jpKBkwz+GfNcQEpvBhFJHzBZsBhbR70MiZfLIzbIh8tfcf6f1aclYF74X8cO4eG5k2B54OaxcNEL5XlK/SxbC6wuaGQr9FGGJxU/xt94DdezWb65kCrQub8SQ/DJ5N0PCK/zdFHEsknouGt089AND2c81TeCP43bqHKPTg7PzFdiMiq4BSHhsu6foI6Ap0ai2tDf3LS17PLKSZl2R3vh8OxWJ8TGo/9xufswb/YZ+MZfPNtsIyzuX68h8W4EIVcPGJnj4zLyASf7771BqnP3pHTb4VuU4s0X5i55IqxAMXZKaj5JMQ5veUpkTYWlL4L78qHw/kkrh4jxh1+X4nvDCkgOPzscL+0L6UJ6t06rkWkjKF+PfN7lCAYC5vO3LX2f+2Co9/f8Y7KEZ9YdnV2dVERovajS9cO0YyyI1QY8H2Q8RsJx+fZ3jVTUN9d21uB8sxeszLBd3U4nsiOwj7qsp2X4/S0txCbzkpBd1HqN3qr9Jpe5eifHzpwVvx7Z7TdfQ05f5uhWYAD5R8Q6DNTa2VYWdI3I1/naPazp0/tisfdqjjyXjrDiq8Wk/l5oyGt2Ory4dTEq9G5tKvsgmz4Drr6fHTJFDm3L9a4AEopmXSuz9EiTZCSnBjku6WI6uJJLfbZrRZVHnF2+qTfSoLGGEb9PbYA5yo/ubrxp/+bjynLYTQJvl18PEPOyo3RHFb/2SswmvQpD6tMe1rXw3ofTqlscn1sf/LYfwT1Rb+AZtEqebFFtpjdTF8U9Z4vBrey6IE1iB72vxbF1kHrEk7vyLfXL+JxGScK7V266nmy9GL0snAuv1/yAPHPsLk5uFa2SbWZOr/4Ozrq6t3cjXXQlwGuUjdeRm24fpA597fS9YsIeX9qrXhEyAeHfv1S+Xa9nKmmwUTozef2wvwoh5O+jvIGLoOuLzjvW5g3X95Rrhga+aeUvBXEfU7OtiifOwNGvZJYLNz4n2PxH6yvHLkDYbh7GGZ80mrLgJ6HFPeLhQnTpZRCUHef9Cx5ggwtUi6+Bkf61D+xzl/2t28sOtmlNJvO9AuIAeky8p8pUd/bcOfAoFlaTpBGPi067VefZFzc6JuZVrhctDvx6sL6IB4xE+NDHp4Pc5HOJ6Btkjtr14Sqpe9igCgn82S5fmvS5g2Db46TuUa2lAwBQFjTkpRQ0S7XUaofh+OvJlsk76z24RaWxOPPMzE+fefPgXguhjg0fkC645rIpV7tnhyl0Iehu/GHQwCIHzgWMEVBcIkv7eeQeD/d1zmKx3kFUatIj1VMyrxPIcxmxeriqH44FNE/ltOJOL1cZ0mPPoptbNiA2RXyw07x7aL6s1atW/kUwOEySZdMdjHqtoQSj75rHQ7XGo634W1fWVTZsh9wbhNCJ1PT4w6RmYTw9dmnTrw0ldX3ytLCfci8VaDHZ9cgZz/m34R8fLJ7yih7NLvsEhnJ4pmPL8xxfjBBqh+tWwVy+UV2O09x9/WBwJwURV58Bz+n2C5Mw4rSyvgBOHod6I9qI+OfjUckA67yG48IjPlqvH/MXqGV0QB9SE4yQqU079AsXcLPKZWJZava2DYkqoFvoyApNBNdFTIr41nN2H6cDsX7y/J+2Gf/LBnBx6sXsoswnXKtvOvUnzxJCsIBw0vUTfXDqmq2YYZ84Sbq88b4NjQc6xgHVLBm9UqxT0CcXcXBFhsjv35aPseFUR9nAo1ENlq5cJ5sF0wL4sWxFEIWj0a1syiYcT25S+PTnv0PkV71azOryqQNoq90DJop87m+uKEW53C/HQXaWJ2rwRPIg23myKIa1/riHGNnTfeQae2g6ZFs6PH4H1/zgf5mINyD5WLZG4sXkkyqm+F6L243mZ96QOHkFn9P8zxf6rXhJoiem+Pj1pdGG3elcLlt1brXje0gylNiA9n+tXMir382N/GuMIdh26Tmohi8jkCCM5keeTcdjLTRowqbPLQ2QvoGK70iD9PTlXSxKgUSCMURSBEeEdr1IxnP4zOAbhMFx2tnzv5D7VhbbkbY4+B+XeOWRJe3Ug0E8DBgoYan00H7FSFDSC2+rxOHfTgTYMZ8uy5CxlE7SDIZAa95R3fudfObAWNFY7IAU2d4d8VszgbwZkUDXT4b667uyd6FUHLPV/w5MnY7EnTsYwde4qxFiZ58EJMQz8OPJ/yvYB3OGafrP06Ga6bsT/b2WVoY9lLL4HBVvqQR+JB7hhpcqR7+cT5jPSlb1HZZVDURDn1G3PFwSN8G9uptPIYYgpU0u3Ov7enLl756VkDU1Ztx8SN6XAtmTPOX0YB3HI/8wxm3RJ4/32QnmU+1KTllm9Ok//NAfI/vAm4F3wHR9O0a0X4Y47IeJf6YR3aiYY1i6+3r62D4fj119B/dj/ny/uFdJqI3B7rFAsHW5E2r4zFNF16M8vloeSk3vOOOt8NhuXa9YB53tncRzaf+uhssKWW75eIOIl/eSWwFu4cVUw51UjiSEwFw8XKTpLdqHBFLYzd6e8qM16hHYFVTKJksn2P1E3zrGX+ALDkc80iH+fQZ9q03zpt7bXivD5GfDrnZLOkWq28Xu3hRt5uacem8y6McELERGodlvKooNMuI2FguMQPlDmh5/UhOOZG8066+hqTpuf7pHw4xDuDyhlkdZ4bfqh1eXdLiOx/TgV0szotlECqCw64dR9pZKTpDr+7XV4Fqlhkz7DcHqJ+bavZCxF2zL6XnM03T221XSqMC4q4150kM6qffhzu4Km71FyeDqTcr6c6nclm9+Gy37Jb/4MlfIC7TlsAL7YNRc8LjLgLxMOTDRBeYkvEe9rwnH36hB3K1gW9O7BskoDg9y3V0Q/5GHTbOifMRGb1POB/dqLZCIj+NzLZ3NobTr2gNP3pU4lPZObjd12SSIl90phPoErzx9SUIX4nf3O+cHFJUx/c8bKzcQMLpT07H+nSc3W6ZghaLeLECuLFLIdb3IWx6vD315V/QX6xxy/+u0G2ECboEpej3NI+LfFtumHuHWQweuno5+9ZX3451a7vtJ4ExeXnjVb3LziXQ2A9SeNPnVd7YuOTzDa08BmSH0boC6PcC4WeTDPI1eWtsv0cZCj27lr4MiU0NPHTm0M0hIRcLIt9G62hf9xAzIx3tLblfKEEzW214CjA6B1azgBUXkB+C+SuRr/U3G9+glBjEt7MsMTyZWAM1xxXj8814OGSeKduzGyqlxoXnyco9zKqPqRu/X/hLg/pI6g8sD/pOu8NMbpy3cpa4/ELvsHO24Y3SWrYkwQizdHB44tMAjtnOhq7iWhrK7uA2vJYKQ+P94HTBiFVxuahRNlcJGVQGVNN+z8AursPf+HmQ2SkwTzl/dPJiLKZYC0CvMzaXnhuEQpes/S0rY0BeTPXCVELselt5xC9mWXJF5/XDI//ZHv6nzBK+alsM7W2d3yAJ1uknjOs52SCj6sNi/242cGIipINXHUXbZ3DK0CsDE/OdHb/6lC6BNt0M3DyUidefH+jNfr443s/j/Y67JPUhh085IPZHf9J3f5OOsdgnC8VchSdylGwBgtqI2EsWc1+4yMvYBfJ8dLPkmL++A4c1sU5at5fozLE/68YvReP5QRvEfxMzFPFRnG3wZ8/gKqSPbq2aAnOh83bv/ElY4+xGOW++IPiljBbGuv/2VCj/QgcZ/wwv3axNAV0+OODSZHtpoIfEvxYEjaH6s0OdZzMptmyS3PU4tFlak/H8Wrtpg/E9bAgPD0qB/OfrDfVzugqJqkh+yuV0docrJWxC+AlxLxCEdP8PN+lMCWbRcbSTP8nfQNlLQaWemXpOreoPVJxhqsBrr1F13833Kiwk6uP0Bb3GaY9Gxa15fDEid8npwsM+EFnwcBkWVJb6/QQC6hzG8Fw5NJpWbmsEm1bd06DL+T50EcqPmX0A9C2gk7i2s7FV2POVa7F0nILFh9WCQvHsZVkO9loccll7BTWjsO3c2kzwpCk/h0OV/1sPKZ/LO7+hfop/Zc6vOkOMq7PjF4fyb2P1NVb70oqPw7MY18M5oyYpx2Yg29AIiSPO/I0j3vPjRry8xM2nem0MoP66c0F/fAm3QgmgVcMlsryyw/T8cW5zdR167UHgPyX0rebukRDLAdy36jlwYvqC6DJD5zwWU1Wd/FZzcboysN1dowuNAEwPUwOZgTGZl0LzTOys0THnpaJiC9PExJhMLEPs34JIlFOVwLaapClSCRXrmX6yXGnnrxiiHDPhYIv4r/ar/iuVpnV2AiWpXVfD90cwdaTPXRmD/cT/tHvyR6cHN6Of8vEpMrB0wovC2SNYpFMo52mzotUIhEUWX5LTQidy7w3ULzn9C9R+G38z896jbobVavD1+nE61r4/Uk/E4vJPt5th6xKeg+5ANOScSS/Ti17BdB5FDlsYZL0Pa772j2fIszh3MaCoJlbMdmlsIB5/p9rFAP6RRiDSWQgpwcd59ZVv0sWd7cke0WECejj+zSdrvXl7Mz2UVdgLwhvv7HHs/z1esD9dvf7Df84oqucDQOX3fCMearP09SW0NXOwxi8Sr2YE/Yh7P/W12/Or6cL/TAXqmDy/uMbPON7pUad3I0oOOJtbcyrd6N4GOd5dEc0tXN5XIVcVTn8sz72NVtWdnAuWPpMgtf8C2PHFxO7Z2KW+NwQynMGYc9BVvbHAAMV/038iP2RyPmDbPvOWhe716nV8G2m8xWv8qAyhzbvZX7xJRWLHf1erYxei98PEzeiG9tRJRa+3xtxayuhBNXdaqY+9ENNYRarmzZ0fkUkQpgPCrJXaosiXSMHG8lb3mYSU+zfTwNFv6gE3OtGM7hjW4oC5uNssF98yR0fHFN/sJPfLJ2OqZBbOOHQ1Th3YL1RF3iXrhxz4NdTjEqTw2uu5VhT3gOPly7hpIRpzC35QTs6s0ayJTeYnNr1Qu06dTn0W1/vtItlGpu5jTifNBI2m9Oikf8Aizm42Zn65h93hxfYyHgNIOoUVj4OjO+E+zUEGkD+UX2ua1t1xZIXxuKrbkRURMe6tjSPbfFVrfX5yGGVTs2U7AccgBlyf0R4ZL+NUp//2C0NsBK2mi2GcieUEsP5tWBdUG5R0zqE8/njmsA1Q/JOnPb2yXQnDb2z/4QWEQRCfY+vR5lhQ0yvHsJ9PX5yb4cXFJAmRm45/sZC+Mgmzb3ryrTxRR/peRY/fGru3crJxri+RrjTRaX2dM7bPHagmcmnm55JdNDkMo1j4DDDZQIGt8LW244JBPz/iokOs6j9WHlVDL7HdDHFmY9C4zyGDAuJ6deOzMTJwjUs4Ot1YD+OWwhR3SysQ4WyzLOQbt5vabzcWq2PO62Z6Dj4c6T6ltXgYkUwxPbvnEFWV+BDaGVJXwej4RyigVGHNFPvBtW8kkExAbwV0yNPWUnHomKffcmvCeAgVCv6rbe0g1OeQ2QsjCK3aLE3rxYNMpMPXmii42hgQ/ozvwZbV4tl6+HLKY875fI45x3NxqP6oXqw/dMX05Azk2+w4cLRIXty3eL4lzEaccDwfd/kne4IQOShvh7Sf+fWJie4qoJpvdRfZYsnwYMo3f0+qYv2dXg7PdrVs5IGn06lLk188npWdbTgPyMV35hg+8W1oCtw4tH3P6Td2RSp/POOXT5vbJzLY54ZgGQ1/fcbvahN/yxXM6vBWa1znp3gWdv4lJR6y5nsdu25cTN77nHWx7sI5302Z77p9m509yXsLcgHeHSn6RJz/A2ev8sUt0lhPv3dujorXQIQxfq957uqCjQuQ36MYlhLfVXEbg5xIPIbzBCBHCJTZ51tvwnxXjj7IuLugMPh1K2+1Wla+dZHHT0sF6Sx2OLgVEI0Mt95GohObm10yTa/4mlA7hOFf2diAYbYKF+EH/8qjibYqTqmbeyRK35yEoSCcRRhvhowe3/EIp7sC2V1u5QfaWW0XLa3pF8NbZvPgUZ41Os8dgnEoY/ATo9dqdWYojaM0PDtYtRM61PzFVqGda9rLOgJA2yTkO4ecsm1OyaMzZDgw1McdGl1YjyqO7SfKSkwD78FcL9Rq6PoqILDEz0FWisWeGi77Rtia04TR1l/SxTfQcHnRZlgNoqg4Zn/jA4we6at3AjHrPOrhMIrgdMfxLmyx2d352Ub1QyZGnSul+WDgMmS4Z3M7THJtfaq/jeuDR7gNVP3X5rupaqP8Ntr/4sDVuPUpFxxtpjr79JFZe2Q9CbwzCG/s/uRX3YRfaL5n+mLbOG/IEnAj2k1XnNKw5Wir3I0K2/v2JR/I924ODD829X2WydgVaQ4ezNkmD72Z12fUJMlxTzruUE7CzGQiDCif3/5cq8JYz1B+auE/YeSlRVYM/Q69UESy87mBGXhMIiBxvxSaj6bDhRwmnKBzVTWXVs4W4FO/iApL/5cBsbw7MleWrS8vru/4Vcj+T9IgbLRV0goIoEmNDTE3NM7CZOwPe74nGqfLVaNNmIpXTbstSWbO4B5eNpw6+ULkYGprDo4zFxNyNDqW0T5Yyf1iQiXQJ4LxcbavyxN8cgMGVcO8q9cY96P41sEXZmW2zpC6SqI8Z8WOfrVafs/GPIa9MwrXy/iQtelxRj7EVpP9F6+lmAUY8fl6sY49RBz0Dvwi/+Jjxf6ABgH2w+1MNLhZB8b0nCNkm6n8v+DeBSrVtz3PM30vLEqfZlTz/JscEsdq2hDOwhx+f47pydS6esb1A0vxrJ9cdsIko39LuOWmv0Ho2T87HThG+WSKtlKVfX1t83z+Tq4eUPvacc79B5eSD+gAVnfVxUwVdj35hY0qP59MK9Tu8jE1J6flW2AyuEpReHcYtxAk8iTbxGrKLLf55WNUSQ0ivRPvQnDH34JAgxVj/pliELyto1xr4rj/CgI9ThHq2rjh9Y6ApqkBd5db5AwExy/G4PuAwhtO4OfMsts8wWjlezsta6hPJ0Ho5N7nHgvj9w3v3KGwBf6v7u5if9Plxzi6JznL2VY2q7NYKrz9QywMdQAAQABJREFUTYkFKMv5ssjOzC2pmfjysBy1w1KDD0/huhrTqD/uiZgo6nvVOuvLR8cRfcYr1OYV7ckHa6CJJNfeJGi3WUW1x0AoLGsxAnFWw4r/0SR8lfP91OIQQMYZT5Lj429jSzDO62LzI0Apro1n2GZKbn7M4YfD0POmfuswxnBoVld0M3sbbIJkXhvoBDyh3Zr50LnCBWH4uVykd/wUH/vF6jDVAR6u3FAU7cPI854A34aFCLmZcYxs/oxZHmXPLpn47IdLFxZ//40/7MNo79PWt+Cc3T/4Xcj5Uv7hevzERiI/4/AGy99NZFfr80l1lZDLyo2quHWCwvur9Met2BalmydqAJsBetXMjBHZ/2xeU2CHpCR2FWp4Kml1vVZMN5MfmWPs09EhVrdX1W4JDyaBa87GW2+OQO7aDPX+iV7T014yGlAaQrSPTQsfd92InqOqIa3Q57MNQz9+GeSOm88XD2cfbwi9ff6DwYSK36wO94DqBdE8m8HZPtltZMyw68CAejYjZ5blyaWxgJ57crCallTbHsUZQA3AXt91D5ipGuxijq1ozh16cIIwleXT4mXkt+TdjRrGEHrJ/zvLoNAW5HH2uXJmj/vZFeoszPDjW9wL/VEW2626L49M5CNIe852XR5qbv3YS/5w5/JjIN9WKJv1qOJ7i/zlbFWNc8TzVSy+gENuuRbP+s/PhfeGYNbe2eAq9Q/gR2cmV5wXx9M9fxJ+pgpq8y0fo3lg5QxmM7yqp07O4OWsJv2WT6OHUZMPjtu8jheDYRz/1LnZblV+9Odb+w+HMgYvzjbX7H7wPh7PxgZhnLOlUm6uyFJ9dFws1MTNT/yuHpXtTH7dqHSpinNTheqwELZjhbMo+tq5k92mTryOB5jIuXXsazrU86ng5J1QEYs1smly/Kf1VDzHkTvv3UyXdugCqQ+V/0aPtqUvqZFdeF0Z2v14WJmRjY+/HhTsuPvrOmfwrBzuijAImmMP3OvSeBt+/hKrzIDTz76rW9WT2S1dFe0pmx4Iu4vMIzNnjj/MKO1vtSh3hPzMg2cYtSmOpestePNiDABxsWDAPlt5lXa2Y8Mof3S9QP1noEMFDfs8mVvYIymexyMNAkPTUtL0+ngtHbAUzSQawZyYpOT2ESS6Xaw66vm/OIsFpDBbpk02W5x8CLIdsJg+cZ1Mo3B0unNlbOmk2fhiEY/cGMpRh7RHI14HQrL4gb3uXTunPz51P9sbn9f4PDj+8J5B2M9hFh97Oi0BsMY77foM2sjEWp/Onz4bjzJtxHkA8V1O3w0xHtT9OhKV+NhhIf7LMT/qf8fMtxuGvX7yObyebxPs9X8xDPs3A2YMxk9s3RGaD052U8aCijsUyAjkdCOcvZNvTBjzmMw7xSYWKnMDrMBwiiMb+koev6r0HR3FVYw31cmG8VrBGqzw1tAc5FdezHm6mQodhs8o/cQBNffKrnpKDuq0JpGdIaHzZUUQpy4sP8YsHJ1L71dKQUvE3htPyg14grurbEoFTfuNnLGlV28stWJoLopRWXZAdN9YAU/SKWE1D4P856VU5Kb5CfCQm954VGPmzx300t00guPjDlmOSnbuCfKizvlsJakXa2HuEDnllJu+/yqJVFseLa7l8kIx0Xd/r4wAefixA9ParGoMTwXwvKEzbjJ7PE79CLi7YpW0TMNnjnTyRsYUIGR4SXeXt7P+tVBmVlwaG2uaBZEYo3aLSjSj2Q8jeDh5uMPIphzlEGTqnrTrzOE1FbXTXkxPeqpKlfEHS+cze0eSk/nSWxe3MOSp7NsjCJdPqT3ZBwfC5QzsVvJsL64uLfvqPeyxs31ztY7qj3tnxvLy02ajf/uPC91HHufpRMml7GHq53I+fuIfTt5yOt5igYq34d4wpJObcZsegXvVOz+G6Tbz5s2tR/961PZqEA/g+0/B4GRzZS3EfR+QakSMyEbc5Ph2n2Wi6YIEM7XrCi8VfroAN8/Axn1HuXch9m9Okv6H+15D9WAaCfHH2cc2AW8sq44QxEZlL776HEhEilrWboY+Dmeedr2okw/6e18/JcWxrAB1vuESphzjMBJKdSUUez4qD0l5Brq7SHr0aQ9vHnIl1a86ngsZAaIO4cQKBXEbi79YPmuB6VExTYePUd7ixUzntlg8yJ7+ozPmyQLhEn+mS7uTeoQuE2upVMni4lh/cTVaTrGOh+6nzRqWJCpm8zDJ4xaAHoGp1sxthsGv+7/3My2zyvhZuASwvD6kc31O2oB1pq/O5uf4npy2HU85rqmV1D4B/y9DuIzqHtGKUlZEU42Gmj8qL3D14R7mv2QCxH82KvHKrlBxZPNZ3q5gSVv1LrfsPfvDpbANELx2CB7Hx07be86+D8py7NjPCuPPXn64MGC4vr7yB8+Tf/xGczGEb/kUE7NofJkXrZ8dyuWdZXUz6PD5CiO8ePxutMvGoVd84bnD2vMKV7CRghDFGXBX+mqAQG2orOfkWaV+GPRQFVRWm5hjb6n7q+KM+Vrb35dkJ9k/tiZWhk0kXr1zG68beu6VzYvsr5Kq/ObcC7d/pw04705L/YtMoJ8+7DI29WXhBW9rGpHq7ESeVs7JrGKhcx5SEgefU6VW1OtVahK4WfpgLSJBZnoe82OfVNb/zl5BrB5Gt1l9cebDOA8fqUsnHkZF7E1yXq2NXUqxroTPVm61455ebwvVMfFx9ENc4rmdNV94Me6qe/aYfdruxsbzQwx+vi7zBQBgNZj5J+4M33pQNz79fOzPY7SuI7Pn8ZOvuJSfvb21yW7BnRaNubn0VLsGroU2JkryOIyoMH+C7BfjsE5vZop/Ay+iJxtOAJzaHDYJg2mUL25DDHNn9cmmlmUb3vmNk8jfBpheHUbbgOSzf+dPHCDxKcanTl2d4h7XbL5jYQ9/JsX64ZYm3+BenAA//j++xxNEm7Ob300Ff7er6S62XXrDEXR3gpe/y/7Zj4qcCMg4bE+n4NP/X+Str0CZzf7iutJnr7YXX8kymq8wzykDdndFLTvPbJiWyQuMUWuNHo/WsEBdck/cdwymfmRdmFpKZ2JesdsJgIjbpjdiiQDf3WQklVGfYG+D7NeCEBnI/Dx/jE8sudM4/QlH+GyGFWA+TQO9KBB4ru92va45GsVV56SaVBBBRGl/9v71YzeyX3/55ZT9i2Od40+4WB6i2UBkTPe+YfHk8sU6GycL8faSi0P+1dsjrRyAoX/cUQmjQzNJVfpZDqOYNsQEzCEBKMASbXaMDUKwp3PyfCl+bMoeVJbpVH8iqa9OP+UG6uE21u5JAP7WluPTei4n/Z5vuW0/MZMge8IEIid44s/5JXEIJ8qIf4iL0U1KCu1muyvpCcwj3QEaQ/J4nIu3sairLxe83ppppufwDNq4bvzsdh6nV7HPn7zqH1aen/3hzoexnv5hxjVOg/mOjfYb1+wYPxlnr043GmxUo2PB0zuM03Z9AQ0DitDgowfnoHFMjodxqRrTtInD7eAY5VsQMxO8Juepo3hyzvyHZt287L9ymBY//OqQs5EZd3WkZrD++nofxflJvdjbFSNnfKCJRSDrjvS+0Q6OpMuYP6bB/x6+oL1xlCSbzvQI4CXUv4t+8gHzn0WXhT2tdzDcT7PL0wdfAJVtuQmYvN5tj+/yVWZMhnDWDOnR5pEs+rM9ChdoU+vnJrYXQiazS36HeE+XgXh3HM6LQeX8t6nwojRixHbM4ZG4G7X6jMkmF2rFm0f6t98q1EdIfVybOM7N/QSGtHwfFnmt6c2J8T6ttNUBjLLKoMkBzn0MireoHQqYcaW4/ldjaT5eFK8hqmLmhCRXHYatG/LZzmw5ra/VNiE5sLjauoyKF9iz9my2jS+eF5bnpwvBWCrjfrGb7xfnW2R9Hybs1QThbKfTrlpx9suMi4A3bF895mDmy/+pUN43dh0wLI7+F0P51Z/84bJB4Y964955XMNNLnZ60C8Oyqfcd5K+l8S4XxXSDmduAdp87x6zY4fhwnzvDMIYq3Ecn/HcI19Ok27GR+f6Fm1LW+dZnXL4h8N8cU7r6NuD1FGYj7TQSSv2lowgtrAz5Fd32tjuN+x0jwnK/SLj96JwUSF2N9KJ1bUkOvJ4Xcz3YuEmScukKs+h/GLTkvQf/4DoKzwkbtDB6JdFO+zJ3knLrDnbfX0vAqs4cXJzNgDmL7/zDcbNQeeiVNXP5ewAtgwk4+kJlB8ue2FViLe6XGb6qQaDerSmy9WRBEupkR8HEBdu4WOJjX84+tVMP9qcMkZt1MtnagE4MJwPJQxoBZqtff+e3WzSA5tTWQXzMIezjeszPD5JaYk7YJtgnlMi8cL0323L5c9nIzr3Y5v+oWK9WJO9ejLwV3CtgXbvmftFIrzyV+1wOc/3KyxXc7ZuknI426Lepl6kF9jXNdgmYuAuarqG+fCvn0Q5gq0k+nTU55mO9G1CyuFNTt+z8veC5zjb5I8T2XHFIZ9jlt7G9ven3D5+1Iv7yZOdvskNfW/zRRzX79j5Lqf8XCwZPl080BA1cq8EOk3Xy4u0ESJNScez/lTQzFVAJ4GTTp7ldE4Fpk1cNkzg6pTBrJ5+JJtkjVyQnPQ7oENmuotwfX8VnHpt8QxVvz+KoS1srGajV94QPi+s+1Zcyr11Hty3y60g/SLyP9ai2xJsE23IgbYdlwxNM/5i3cWvO2x9p650+++qERSbWEYFSN2ubGOV0rYdm86N5dLeAhVnZGgz7dRsiaLSbXzyaG7lEfB6SAkleg9s+RcFbT6uDVXyfafOQa2wVI+Q41RZZDec0v3LIC/fWza5NLeVIxoDNKwGBR1BMTyhXI/7cPq3K3s99Ib47lvtX65xz2xogVELcmbPVhez03gZzkOw/GSSZxEbPeQkT/Y9F9/btc5KU2NyGkU+qlkpNC5P5MX5rfGnf2NNn7F4Hrd8tUk5GceGYlrNjH/TK/9iWl5OjHg50TmL2dg/ucrJn2wC9YLVbZM014dZ3vkT3lPf6Bnoo03w4d0kn0wM/eJJ9vpP7li8PE/2zj94De98ff1dLCZF1cch3+RKnY3FbbSO1V/MjMQ6tn10h1FgPWra0Alvb4+b6ycXwJNJN2fBNxz+2aQE9DgzYdVkM6hvvRH/3pB4R+nLwCm60PxDvUn8Kso/CsEmdHo9hr3rzDGv4e3UV03xZTNgmwDWN6LTcomPmCKrLPY+m6RqdLk9CJxXenRzMTuycHfYVaJh6iUvLsVVHpilLBjr0U6bSStmRhW81ZEf/e9ZBfeCgGguNaZHK6btJvLjV6u0nn5uABCpbDuqHsN10RNefgpvc5hWfApi9mVaFD51W3iCvp3USr53iMdrBYw4Ow9rjqNnqNfQJ/tEcYCH+1hIA0Gn45OsjcY6PbvbeB7E89fmYsr3Y1Z7IM9fx3Cjc0z9VkcBi/0Uy6E4xtORwyef+hmdbJqbuGTfPnYM9mP/PZXctNNrdYs77myIoc0EV16ryhwDn7zx5IiGARj2jcUg0HZvyc823GE/3FHH/Tax3XWe/Hjk96lPN8NvjM8X8p+xHVbc49V6PFPGZ1eMvGfjuHw5fGXTq0D7m5zh/xjP/mYXkmwE0uRU4Okp6juedCfXqbi3IQrqjvKzGWWRFfPmEjNBv/XeekvjgeadXwtMD6TrVQR3rx064bdiuNly2TPCS3gxLna+74pdzeKPAs1KByi64Ivk3Q0++bxxxHcbya7Cr2EA41rWEur0N3v9IDMWw8yk80VnX3un87V5MM/IggupHAO9z20bBdhGMGx2srg5+PoyhODDXm9hjfdhVgZHaTVaI8wn8aXMR6FzahM6gjtlI16XZZTxGIpt0i9u0CJ008m2UTOAu7aihXXler4scZ+UyKFwa+WsF3eOABZLhvUSX4QPku+jmMwjPhZToh0+AjsvGnANl+Vn3rNYDr/P9jNdPMa/HMbYeN7aGOwmYz2YmUc9uwns7IKnL89hW0kMdn644wH49NoY29uAGqt//ACnn7+3WT372Y3v9/5ief6/eHwx6OfiS5ds8X6x5uTzuAiEbuMw1xfzbIbdWLRyW3L9ydBjvPaTfTAIaM9OsJIXQ8rs6yEf3lG9H7qtnrP30y4W6Ys7az+P/H0ZZSLllhn/vyqLMl5viQy5sb8W+m+3kb7LJH7b3SkaKl/2+u56a5IzptGEMwwE/sky3NQv6Kq7K8edVrdeEdkSrlVK/C4T8b69v89CF2Z5CdbuIzKDNjxjtHFCXZqeDe9t3+tnKsU4xNKIe943LkYwFctvusNow3MV1GjjSmA/lHIQbjFrniXXZ0xyyIKgODZK/0LNx1t5QsVMecYJJkXyfKUcf/EskgHCPCyDh/1suAaXEFr1AxwOkQTIrI2V+blJpks9jqCPw7ztG22deo6K+zt6gu/0BvpxMCY/s9xrqIo5eSkr4dJM3nTjr+lRsQg+eWmr749/8pdnsgVcJAhkVKmuzajhD/zTHc6p0+aWXOeNo7mP5IkU4Dgn91J4OP18Nz775zv5uB/Gt+766gueT2xfm5aSvh4GLrqfDTP9G3smjn7s89TunRl+7OLg8OGibA7CKORhPsqW11emOpVxCbmnnfoe6HUyv6aEUYRvPKMwwmmP9zMoJpm6+r7cGp3uY8f4XQZPta9arAAGLBluL13+bJKXmcSCtyqJsw3DjDP5k1/nWxarqj7bJPcbPwjvr6+yGWCEtjtR5MWrX9kv6+MQtkzd+LzjXXB+ZNjvaT71M13uSnvQufaqufJOCIb22Zy0WdSc+6BUNY3QjJjndgdF8s++8/N/OVQ57Nr9NIvb8pS5pf2t8UsCsMlZBKfbZi8U31DB8vSFlNMq5GGW8H8k+tIAgauak34NMQjHsOc3hnwAim2oRXxxp5m2VO0aGhyF6FlSAvWVdU6ZzC/45ItrnozrO55MPslt8lSaHZUn0uYUnMNnc/gPwau+2JG6odQ44YkfqXZ2oNoV47nM6YixhU95qxVdm0bFVb/nNi362pK/ty72k8eCDh7HybFb/3yrE4etX460+TUW55fM6LT54JSPn9Pv/ezAn7+H8xc2itfPNJ9/zn8zlsOm5vkuT+TL43ILo8PffRpdduLzP3ycJxv/4pocBU3f86/l9alvskHgvo56jfD//Dj8aG/Rv3yIfavnAPusTHMLzTqgJGBd1HGOaWtKXu4oKZ9vpPm48k/+bXZe0T95VFbYZc3//dNsxcaWZxIGyokdDEeV1C882CD5fyAM6jKLoUuj0HSJoRPWV93GEpEfVBq4Sxh4bg2qh1eWRLbucOvQv4SeLjH30/FHBubsjghu2KhMPOp+3yR12H8nuVow6tIBd3EZUvYSusDk0rFFse/A7tk55ulP+nThYUy6qi6ZMmJiOlPnJdjbBnn1BO9ng5u6m3+7s/6U5Xl5fh3bjIx5Xkp6v77d78cAw15wWmSpta1IxBfWVltd7jX9siCMcb4FnvkQLDrYrBGs5RIcavTiPi2jicHZeUtEiOla54yuJg5X1ZFML/i/5bPV2uccb6SPZJA9vecuh3TIAaUTQ6e46GxzYV0ch+P4PId9+If9ysNCHN/ZddcZr3htn93O+eMw2+PCe2MO/sjh+H2JMx7j/6mjr+TFefn+9DcdCnVx609ezgp/2CpkiH5nMY5f3Rw92cM6/sjrM8pug4d3Vchb+/1EXFtSGbo+WKG7auwzy4cvbgm6TBHepRbnj4OfUfrl7i1MvHpVunmeBy4YGrLzsrig/9Wf94FYV56kwAqcG8wy8xJQ7SbKmf8bog2V6vJL2zh1MxOqfwzHdOH9GMypydBewg0me/osL3XUEsLc+YwP/3ic1vc33TQYOj/mYFjH0sb3OIt5/guaMVHlKVvpryl9Tq2N+kNq4041IlH540xB6MYYX0VlOLJbjVKNTw+L057ytY+f2HbRdsd3F2FiLDcHcCDQtpCeL10gT0NfsVUrGEPntbW0UCy9w44JpFGeISO7POJbfDsmfDrjuLKEPbmWrbZnojIuNROeaIqOeR99yo0ToF9VFtNcogdnjiHt87SvvKc6OsUS9vpiMNxGM9nDxXc2j8er7F1pw83mp/z1h1sMkxkXeIKQ7+mN6av/KRe7PL426C/mOC7HOF7/5WTuTwbYeL9+1b2aiFp/5//qH4c6gdXwBz4x8vTJ7b+RXPd8slN5UmfjhYBFyCq+33VmMNU2mlDUyAXzW1PRKgLddfJDy20kamfXOznPfeg0ag2/QQKUW0EXLndgXT3v8nB6EnHarxRlHwEbJN8WL7aWjNl05WcU67x5I8JPnj1uxerjtVM7POMfnXVFL6xRhSW/2k7mvW0h8NnRv88ikx7/lTnO+iir8oo3Hwr4WKHoNKb9FvX0SM+4ebIWSTq/VdMkpToivb2qUDZfyzZGfk5ccG5RtveiVj/J9cCW0oXw6mclep1qfufzh+djkHsXdoINC75NCmJDdvM1xSvdLbg5bP5/fMMl9NHIma2dnE+zYxF2UU93EP0Ez0DLBE7LJHcc6OuL8TTixerF7rNrVA7mkbnnntbwcHdWbnMO7Lohvelr0zm79PS/m5r1nN/v5jb+7Djoy83sp238yrN9fJ5ff7px/o6b74f7afNiX25x4/f7i+6Tl7t55+tqQs7FefFwSi9Gq9/Hz2Yc0wUcTrzCa+O4VfBTzpzpMyOw1fsZuUmG3cVhLmvfK5KriI20Lcgtz9u9lPPEWvwEsbXx3nobHVDgfXkidVcVY366IXxj74MSc0hGDNiCMeouhv3hENf9x92nl5+ZoPQnVyVidC9jQ/BXcdTvEOR48vUVB/qpn0m3cM+eV5neZs/Br/319lWYNAjCF4kR0a1QjQjBVyZiqWSns8rZEHLy3fVdtVGpPtevCOJOiq9ypZhIFMb7DBTdtnc7jxxCM7jvwlYLjTPf65fAiZJ/dbi0BCpvZooc/NLX3xleLOrFl99Hd1kI/dH9RPwo0P3Yd+PxTYRsMwN4WAWP7nU+y+RAxd0MnFGn9U35kb308wH+e8cIw5luE4uxIO2pOvX6DOLi8DjVdwcm9vTx00/+bGBwQxLkpta/kMlmm5ZL422M5unTDalNTNvX1z7uwzMQm+1vmMc7HSZwHJZ+n2ueH/lcup7z9/iMT/mdXZdyND4Mp9mIkYfDT5l8Fg9p/OptX/nZae/zsAcb7uSchvG4xwQMzk3r6OLzn1J0u3egbOWw6avDFt6324baXze6FXhADbruHK/19yjN+P2FoDYA3nZ2ifhrPyj3d5IuHZ31y0FEhkhf9SRvszAmP75EIdbL0DBIA87VTkUfoQ7h3tzG1D+d1l6zZkqcDFoqo+MU/1fTb5elpmDsh/LbH0YOHPerS9ztvrEa+fVl04ehIC8e5er9P85xm1xYYFhUa/Na9hto6D99xLokRfk0Hjue/X1VtV+epKJeAoAA88yujUbDjSsHGjbySjNPmZvGypXjRb5Ajgs76+Db6vmHFif5yUZ7AxW1MN7ryAQIlfMMUejwTRBPXPpglLres9k5kvTifsrWV/azvehFx2stINdvz1gW889NbLF40cImMMH5bDwbvXrFeQGKG2fSyQto8rc5bsMZ7WRyfDcLOZ68L1Jw0Dg/32+pjc11Ll+bJbHUP5lzKubp0YJTJm4xaqd8G+/643123/z6VzzHx6nK7a+c0z9OuS1Cv7u5rhWaP+RT6zFYdnE9rHNTTHPwaiYGzdmvvxzo33ymDHXcRujDuTt+LTHof92yJ29Te/0EKj5xuOL5JUaL+ZpGtRO57k3IdiK/9abaaIiyP/Zgv7tDXDjb9FmKZjQ63pqaOM2xqvRyA+JABH6+V0OlWSOBeNWx4wXKNcrAjwltrNUXvss2vhwoBehey5gLGHfFFNcv/pWpgZIKq2aqrn7BI94JR10OxudHrEgb32cZCZ4sOwZZLmiPhkEi7nGuPI7bcFAU2yrsBo1OSUfSiufooPHiToZcXsugzBTGNc9pH+CwszSO8e1OTTOX4fg0scVJIOWpFsWVPr/hjic3HN62pr18xeaB5nwly/B44Z9nAT0wmseM3uH8ODy6aX7Ii4HxmJ3l4zm/GWRsFJeVXdpOxuJgc1ORUWwDGWr6bwy+Axve0/LzorW9C1tyNw1di/AsRnzn32TTPfxnI8tm34fOXts93/jd/X25v5jxzd/j7Jtx4lwcv3MNv7g/eJIPa24vF/rPL6LuJDubEyDr9fiNE3Fx1y1+RauJerHq9Dksg6e39/SJZ2c3fLLMOsSD7bt+jNm+cp8dEOjqDe22PCea3DygUX73RYah5Qfd2hPtekCO+pz4rbf31+DbsXzLHFDUwsnEDHobDLR7enQq3Pu665Sv5YbZvS+sGOCNo9R06lhT7AyG3cb9faA7G/5s0ODY/kn0R9/vmkhWY7kJ4GINadgh5kcPonS6MjkYYZeZYUvU3eOgIgp5vkGzQ4dREe/Oxm5ImquS1328fsP001wI4lVB2WcjjhTYHtFnnDDV68n9geHpSjIhUfgRq59l66U45PJzZ8ugIdLynvZkSLVTK64agrLO/qQ7+7IDyWM8z06OZuy5+XBDK/MnpsJg/EkErb5tul7/51HZ7AfSdPbPTvmzMOZd3Ld9qwCuP5fyWxJb7FrOtkuhvpjgcdrPDt3bOKfv4vvIxi1W2+neebrDp6MPUPlPvP09jeF7J/eREbQ2/a4k2N3pPZ7FPU76GL1432eNz664yK7L+fk09xcPOro/YlkfSJh0hxHY766Ax2r5nA7R8DOMc7IEoNR/MY2RNV2nE9R8avL/b+4MFxzJbSPsu13n/R84t5f6vgJIanZ9thP/CEdqkkChALJJqNXSzEzBhmI1RiwJy+CnN7KuTYm94PrQplNjqLqul6w+/MiXKeEijUnqrmC46QRrInQkCTXCLELA3YWcBfieS0z+Cvpv+W4lCz5kEAHIky+P06Ado90RBcIRrshZESn6wG+w+mR108cfMYxPoD6850fm6B1at9VgbZcWP0obAFwMyvQgzRxOBWIMOj8MHY8IJwaHkANMxugY167zKsfEoGkwRIJnJkuOeHKKCiYqLTgviBRT22BWdqtf4jNFhBcLsRHyU9ooaEGNnCYiG+VRJSoaYBw+CrwoOlzsMZ9Tl2Rdee1od2WKI0A9pkaQ8rK3/Ug0KurYp8G4ROXQdStVZKtoH5BxHEpYRnYgu7lHI2f5CddkE9UmO2TQdfOGHUwOraPLeJkL4qI+iev09woOjrXbpIhNZSSf9WlSjc/83tvlDTk/8qe9vvRrvNgTB/XGVM7GNDp4Mi3ladwxmSvL8sLpz+FLD97gqKNsXNNXNDLaAIzFJky1e+tRUcmLTW1pFa9y2tV1XdvOYWuXQTNV1op7MCt2AcMCuMthyNthTOzE6ir73r0Wikl+s637TpaNmjM0jiZqZ4yVakzqCXxj5D1pPCX84JmaOGImN6C1q0U5iJsWwYCzjdAyDpVW562BgK512/3yX8QNlSGBSUCOG6n3IyPbcEySh2caGy/d/U9r2C6OhrqJ0H5PmBt4case4eYi1Ek1kIswFjCZuP1QmKuzQm6yE79mMW0YsA6RdHnlDAk6x4+WMjpPDtTpE7ETwzECZOCQszEkRk4fBRLmRhjaJsBKRpe4iwUlAw2t7UekZY1sOz1gWKFTVHPI8/KlM5SF4svFVv7FJkZMt0zIht4N33iUD3bx+waDpEFpIosXcBF1s9NGNv1pkyB7ZVVdMRdX/Nvf9st3ZU1m9PNkpAz1+K2cfhNqde2je/tpx5Y5cxxR9q125PnBnq0aKvsbJ1wR1SYNOYkha0Isem0uBgtlg4OA2FuHbPCpaIqltTzIirE17VkzUbFG5QOXsvjT/pC5eMNNxCi6NnfvrQwW2iyttmdfiFfIv/CCJrheIsDFSw+S2OQQH34Qbt+PxcPITAGK2nuaeEqXX3vkbOxO0HPk7FjfkuO0kwJ57ZFNgTf2OOcu3wSB0kD2U2lGTTgtb2edh4PYDyLXZnn72dmqEG4gb942bu3KyULZSX0cEnpIjmbdwPi0H3/iq6olvuEmpFWmX2VrqZq+nEayCWV811dkx2kM6Mqb2GCugV6cSyD+AZNiyxgNnIKREJGxaf11cRlGsCzWnHDUOK1dCdOOf+cbrvQiF3IjylJZGR4p4RtyNuQWr/+nv+dPzuAV50CNzHEgX+4I63f0YyOWtgRjl/YmufJVea4O9VGfmzTxB4dvX8NnIjmyzpFJJwew/koD+GQtrxCPrFd7YqMHa3KMYGVNlvjKzMORePY3dzgX6qNgV9UWff3KEYNvWBlvdcjLFYao7A8XcseXudxYi408QNpwsUJJ4NgipLKd1nJGJF4I69IGUig6RtvILcW4tuhHXs7UdBLTDGXQVh4SigUIdF0zkw1cF0RcR+d4KCuBwB0AyZR+mONoRTPksP9oPBmDH+ZEz20/HXCvkpmbT3z+xh/mjSb3DLUBZSTeLNMLynhG4xAnTio/gMEWjoxGaFpcqUyUWLUQhUMkLIsqDmBTb/8ZIEJu0R11QecIvbfwOBXusJ1qWJezBB0Acb9JUqcAGjHdPBsp47Pj4jhhVVQVZ5L5idu0LCYMpnhxSGcewPS0r5JYEhMKRF+m4sQqPAdwQtvAVnuFgmYcoz9BE0JHBfSIx7HnLtJFMEvGo6/IXbGxCh7mchUDH/1Z1drVuwrU2nlmNKmWoy1p07JOBDN3JFn1Obj6ShPZzFf6s6rFKZdzY+wmLl1tGCdxWEOeDgvfvu3oYgAvdvv0qo2xKy8HPCbZwa0ukLEP7uWKH/liSITnK0WvLxPp8BPP0dXW2JYnOny+V5swnxeMiSMQ/VrjOf0+t11uhFGpMxmMXURYqet8FQSWsjaD0F65itouUJscrBV+aatjTRtzPwdwcQHuvmXet4Bj6Uk49WxH392tKvcouXcY9qxkfhpApsqoeR/NCudWppuAF9hoSFk44CySDPDTK0z3Q3pNP2hSOFv1GIXJMT2QbtKcKy5s/0gILIMUomgLt9OOWxN0PStX0wg54Re6xrJxUIWUhiuDOj1GjLuWg4iGCeDYt7GEu0lIDvW1AtUgozHJtxdbZxUUtm5gOxyYRcJBYd9Dens6Kjw6NaAlO/Oc4L3XqTyH4JmL7TY2vQxvMV0ygIt8E5nGemIOwHN8/BcwppFH7dwMFCtXRYI8cxuMXC/v4amGFft5Hm/cgwhHW/CCnZ7tousHub4Hhyv6TWp1bJIUVBvItIuazQQ7K/LUwdqnBpMaPLLiUqexyQkdH56sn8rTPwlssa9seMduuawf7sNFfPgfHXNCLPuhzSZoZOpmTAc/41w7cYwYzhxOPeNlwMqxG85UclPXT/qjTwWbWNprC0AMQgq+WEor3HZVnlpUW8RNh3PB6qSIyQEZ3fxGzaroKtwDPZVpqPFwHbs9I8uqzO8UMmN+os0QA3KtkkDiinuBRpTLRq4QM0remSOa/xuTlvepANaZ14VxwWpwuwRCiSW/Vx2S+Og2d9r4cIWv6/BlTXFgCSXx7Bjpr64jM6VXSsD4GoxABstj7qF1/53N7OzAubzYNJNpzcHRSMmcgJ16/UQU2lKJJ/Vo0KPjpVkZvgj9uKRD4UNy77nSVtA415/3NvLCxGvTTHFR+Ccm7MYHihSphx/VJrERFTRkBxscLMXUFe3bqpmeUNhA1gaxeBURieqIa99Fy1WyXAQ0OiwZ5nGMILgOh86WtneYQ6HyZ1Rt6gvfYxuxrTEwyQ4h08py5QzRlj+H3oGa9R77TQLW8IWryaQ2yFmJxfWt9uqpmyCxg3ueAWtnH9v7NhzcflrNOD5xT1+OJwb6M476T+KMrGNuzPp3DJXDzdQs3hhHf7GNPWHB3nkCIy62g0dPqfwTh1B5IbYhKrZC2lWkGjK3+GszkMVSs84P/gvWbkDiR0d1+m4Seo2ll4LVs/2/Sw6c1MM6SVbw2zWsV7x63eMn1tJnMSWx5umHHIg0OhUSviWPaadOz9klM90nSYLEHfr82fD2ECpmYoByxcduyhcXA03Te6INtlhBUTFLSkqQ7BOnHb5uEAPgCRPPbiO2sLGi1yJd26nlLYGWQNlRrYOKVDXaluI8qmMuhIfb2UJF6tMQigiQIc4zioanrB05eoIGBTa6EMPNHC0Judd5i6Q6AD8XdYhDQwgyjNC2srScYoBK6/d0q+/5NiJvZTizUcFLocKaI6iemPIpzoGNZtEOXSQxxPbwDN/K0VZUduLgyr029dMNXKTysYGzuNZNLrGFg7nOIgSj3OSDrNyuZnF9q2qiSb/y2IydNe08sUW/V5mV7VUnmDf5XZvFR20832MoFzOUS0Z9MEdplL842jFpkkQHHtnjBz32K6POQ+zOY/Vjix8w1mnTWvzYRuUYBYETOza2c6AeAHqa4qa9WvYCcc9qKKhwkBbs1BPolJVlBSRcklgxWwO7aDqzR1HMGq1Fj7lHmcSYq0pgOMvkTCKM17P54mm+Y8n64WozKItLZ5MfKyokTMBuVNq+EQu+ty0BMHSLg2DTSOfirCK8EeKMqDJOunl63YKfRhuduByqrziG/k02ovDjANSwlM/4AzGhTCwlh6V+9Mt+hpoYHFqajtjxodt5MICgKNqoSBxBShWA/tXDNrjUtnFBccyRYD+K8K1WjskyYl1GJ3Zg83afl0TC03lvH3QS8Us5lGlnbOAyL0rxm1IZ43ZEkRiQGCEz+AlTNUuB9SodHHl2od+5gtd3AQPqzMp45yixeGZm0pyBGaduCTeNCcH2Joa41LG6BqqI8MFQrl3b+FIXBb7w3qvM+miy6NUefvUVKj+gifEm1ftWt/PwfnCDHXhs+4wdfiau2tLPKo+QZe5VKDb2g49APD7H1qtFesRD/GNLsv/mWmc8cD1jmT5y5j+w2KMfTOadmXIO0lA+sQeijvSzeqPBIAU98wmINg3mVLvFyCBkMIMFp2Ht4dFk7FkOFHf14eJ0N250gWqDOuPLKptsRBqLrJ9JDG/6FGTr6672OkCeREn4cc/a3QiZMQpZqXFHQNNogxNPd0y4Ci2wowrEt+p9W20eVR/t71kqbhAEXPVhwbDz9ju9DbLOoosWSPnTMrTAJwTV2BsB9VhqhbC2Dbbo48cugwiGmACBp6mhNXAUdb7QGBmK8uhrQ++nckOK8WjLF9+coRQTB3HgLMVTS3vPYGeA7K5jBrq8+PbsGBC3MZhPWS6P4xoxKrGdD3nso6c38m1GvKd8VIRRJDHDl3LPXnSxvfLqEXTS0iDogHQ71vjVc7jZ9BQ2O/KIxp/djBfAzkKa6Y+Jjt30hZoEiNI5jgxu/PqMFXP3JgliBGMSEbeYta1+cRDB5WbRNvoQwAlHuUhi+FxdfYqJYWMaLC8S8C2X9fTFgpu35fJPf/j1wZhIqszBsd925wpdE11n0xh2LqIMnX5iXg65kHe8Rw5QXeJo0/mol/KQiIERS9dBgcpWjmhw1YJPi6UyxHQp7dcDKwQ1NYX22jG+LJ5VofY8AEa4fJybJVhbsC35FUnfEdOrlVeTDKYZhiuRKOxGwro8BRQiDP31HHQRYDFAd5Ow8MMz5uavOoSu9y5pPfSNYONqHjzqNMzWGBspAr3u1SuXwGyuiQ/ylo1h+6kbLfG01E34WD/8fzXPCvETVENKBgs1Y0NSiyDbtAuexv1AZ/VE6ulMlVuzfsumN32z/JfDzFs+WBIEmhRPSJjjnqGrbCjV5zjIDUsrxEuOEXYAw7GDkmrdoB2F6wG4ZXymjVoa5A2kFbrELx/HAa3bairssngwi8ceg4RYuxeDQ+Tl2Jphu5+ADpzNTwHDnJFgEK2+bcY0+vG/uE0e+zYUFD7Qq5ua/kmEyqoHU2x90O9b6chDVP29EvSKEJso1k4MfpFhg39tXx9wtc9y7RfTK2Ns9UNNHMg7J/ZnPtbfTEH9RRfkwces7cjgod+amdl2GtgkjnNOvuBFYDCN00x/29uAX5iHo12186Gfq1KXc4b4IbTXQ7AP/MgO4kPp/8xBlVDIdaxg2AXFhzOArzSya8wL0ucyB4n4oMUz9UxMt4G2PSAeLiDokzx2m5U2Pf3HovY9Bu8lF7UkHCxInIWdxUg3ScZF+PjcFQjDmpgYGDxT24SN3cp0z0jkVS4+B3ctkjFVjptT4HKaqFEooEonAXSWiAM69I3KQeT1iG9InbsFo9eZi21s4OZUXPrrC+HIHbn+ubJksJYx27lAs6oLMPAgTT7qS+wUCZ8xJArGUu1M3OlHunP86WLwDmPCooLlAk8rDeOQrv7YzJYFWXPYuCY5LGPwaH1miQoPH8utyWI91x764tPHVvtgw9FEknp4YINjkxtYMOcPUky/mPCG5F6lto0OG98uU0//+MIvP7G9b81rs5j98viJMXHJE3L48zhJz34OygKqfv0Gi//gaVB3/Mhqgx2tg5t+bdBdm2Lbj3h0re1DMnIbtCOqdCUr+xn7rhrGsQUO1msSlNLM09kEYNaO+q/KQ8lficigTYLMHgkQdYT5oJuv/jAlpAnOcjTuayaPT2pNRsBIrlxgufW4zyXCEctGNEQ14ZoU/cs62dJejAo9B9xBkp9YcVcH7lGnxo2D7A24KgTgLcUKQRyaiHFM0kBBJRiadNseI/UrQRkMKM1cLc5WGToj1WFzywQfoXLPYlq4E8TQbvEVx9uDCZeaCRw14TENjXWE8GRcag5VugyX02gDrJjBMQcFnyHztj6Q40u97r2QZnyOJKYEdHHYtccxDhLPrB2wV42CXVpQ5PVXPuyKLRdqxzsER+8uvP5pCQl+z8GYuLnrLBKEISQJNX7spo+zCJGbEODUZOqj++yzGqD1qjCG9DZhoeNUtz/yCOBfGZi9oiTB3U+5a2vS1ab94g3VcZAs6yN1iBl/+9T7LP7I0yBm9NYMXduLiyq68UlLP62xaZ+6HJVdPcTVDDY2lBcvRpwaupatjyBS5mz7R7+iEbijp81asUw/c5tt5a4x9lVTL9+kgVd127v4piZR9toL63xn3O2kMoJMihvFG2XlYOAW1cxaMMHnSMdNw0lIjPagksPbZvawREp+7iBwWkupbUPFrhcJuMmRtJ0YME3JAecUZnaadI/3jxeTjubA1tZhxN1L5WhysMSjw8ReNzM69GMkHjAzgXRNJSCeTpPdJqNyBQn54LUKpXedoaYNK5xDmZ5N5YTNYPEABqw+9NdehPj3fcDhAHTRtEhivS3dDWgCNzaiq6E4LJ0sZJJj3agi+nAh5Nqfxbn20cNFwjAad4hk3dhD5ulNmzHik6rzxkuplqPDf+dCTJZQV1FHgA0c9OBUquxJEsi1G5vhMClNG24TT2zh5wl3ryZ7BQi/yYs6HTBNdMSA3dqmlhd5cavr1WKxbXeumlB7GdHf1gnm+Il/ecLn6Vl+5q26+m98+BRnjGNDPOG785U2/X2OHgE4NPIMF53TVx8EpymFsZ3NAB7SKTS3Gwal6nuKj87GAF+b5TEmUgbK8bs6zb4YuRwXQC3o1t+5YHMAXcuOrZcl7MVME0c+H5A4R113a4Zmwk+j2RET2SetpR3Rs8WZ1qaJEJEI/wiFIk5t6ZigHRtsMVdnm5ZJM0djzpG6pms2HrGoAiMG74VY/izbiqEH04kKQH5iu1FrIy4ygeCCoYu1a6IhCJtDo27HwIw4aEoEtBxr2os1MP5APFfsgXECkLVtpGPYWWLo8xBDRE4XXuTtX3PK9op3guZ1hgDyygVF2tcPVLVXNsriNRK7GwOWz6LDitY/HBBM33YQ9Tl4J8L5dLwOHJaCTkwGGzFUE7ptLo9YPZTG2s2oW8FVLoaEh8S30AHZzoENzORoF+kmisrLrW780d77ktiRDK0jR/dxtRjnTX7lJ5Ymz5XXPzKTIHxiNr7pv74ZB7yMRZ+fXBtLdY0nMOMgvsY44wro6BgHOPjBbf22o3eurIdjZRjbLo/dEMGlHN342L4OXQ4DAnOUw+96QNiC/kMUQbxExI4cezAkjEmaco79VnAwR29B9hb/QCPTawLorPRlSodCe/nCWabEYfYic2SPSOnbwZt5YKGTSc7Kj7mppXpnjohIYqVI23f123MiFI67CJpBNMDfQOHhqpV66Nt2zhqWqiYefGPacdQIM+lsTHIqGQBbJiE644omGy7/6iKSGO48DaZG6RgTRjMZ6xqcQWAuCAnnIMkSqw6QSd+h7looZ7DhbFzY50kynPhIkNDJDBvYnQ2mwDZaZ6OfXc3puDOgYanDdH9PW1boo5v2w8hmYHGojp1Lw96Fe3bAWYYjVRcY2sQ13GiLAHBNVCOKK8QmtqMOR+ScI7RU4PU7R/ErT004i2vSqg1tsOj6DMvKYqSOWj+DC5APVl5ZrwaXK3Vsyo3t2g+fXG1vUrYOL1jajiY1N6nobszEyFjbx59IZdVVtvMFNo88GVfbO96IHSt6bEWlJgaMEDEXo2q/KhSgBmPz6FdRu/p1VYKvWTkBpj8izUZ0cBXencDKK+/lOoZP4ysnqq+y/G7iLGB+S5FPAYhy2dk7fvlxzTIQb1sawqC6/MeSPTvm8HI1MzchKy03HOm79Z1pDye8pG2iaLEBHA95bqJ1MxtHcewG5wjc7s5lwR5xNckiZJabTUYt0ZhOrqhfZFkFmBsYXDseaP1HaS+JgCcxEEfGiJhmxyLrQ6NuF8e8cPUT8ZiAM8V1lXae5VpOQBE43c5tIo5FYzcW7BvEYHkJPAOd0OLoxAB6hgVsC02eyqDcQtu8HO3xVcMJQ2T5K0dgK0JqjtVsHWGM2YSjsM0I6SufkyKkxtAu/IwB1Xmm0WSBLD/26xPO7WMgrijb9JtAmuTePsmqV5aDebgXBz8JzgSV2kQa2Sal4tYHfBe/HNo6nkl28bN8G/ti6Vc24398H5uNE07wjmPmQ9nTXszg0sX62GFLsQ4ZddutP/VCsVa5uGO/tq/glSFPOZxu0y/+RlbkPWJzlu9pXP3byn9h5L13/tw3f0x9v9SXTd00FihsXY1psG8RRWiW49qFnen3IasZLOmSnyS9JJgdRsy4SvJMJAMnVRksKQjiSZruMdp1hv8YMpI80262anJtfkR3fXgJ4S6ODNPR7sZ208KmAju33WWQKlr0KPHvP+UIDofol5SOcXbEsLKttfTQpiaPP8wyepykxZHZKi3cO+V/fsv1248seVELuCHcOOI1VP6RJtwz7x3ghMJw1gODgCPfPqj77FZnJ2bJdPDktOKUmQHs6J5hSTDMchkzo5f4zkBP0AQcPkKT7zFGgh07ewote/JVXlnOO75+gUU/7mV5k4kTGADz2mcdnEQxY1sdeES4oU3d5Ias/fvW+asOfZ+bEItlide2nE2A+IRfHzmsrrK5Ig1mudJ0q+jDbYAuVnLUHuzlXR2yO56jx+PgU32208dPIPpce2rKwU9bmXDiqHCgB9tzNHogCwCfQre7ezpTYUdB/57n009jdmiXU1YzCzxlTbWV5CtHbA9oAanhpiRRslcJq1thwZH22iAq17pw7gXNxsH9sEyeyOhyaqFTXqbl0xy3fjOIuUk7DzcvoHaNgy1qoeKPbvBdRkqOcOO4Q2da/KJjZOPJhqCAK4OGFj6NPoJRKYOaIgYdnexEBkMxtvZ6BksrED4n4uH0uwT/nVn5npuv+SPGeQs6LKGNrdONvzokLRFi+mSnjNcYcvCRA/YAuBLnfm5E6xax1rKgmNJMp6HwEPBWGCJRjmfamPifx4gEtriQD0U5nTmDaLRKnZrqQVK214ATevyskCaFAdxzWJkwYhPjFKhQHlnPRkQZAwkkJL3PNZzKAua/FGEDHtXarwyhsjSwMQ7aUEdQPLrRq6vcZBckyY65FKMP9sXg89u4sH3jVOZfjOR8/8Zv6OIHf9y3xDZxZoWhjG0UJrrI8Q/X/mUg2+l7L3J0i9n4exVLjBMDOGKkn13cdnmx1T5RpqmOcVHoE5t12ojp44dSObwjYz2gj2Yg6jhoq1UP2FDKkdr9+thVLQAM1JS3DaclQuSuAap0ji592q99Fn2mQofR3CLHdN/2RdwWiTIPdh8OOXE4SY98x3hz8KqDDcwHDDM2YU7h2EfQb0cCiKxssNYbbGPMwNZTlRGUcGagUmej/zpwBFE3QMKjE3lCHBfDxVebWIl1EaHJQf61GbojezCBEB8qadPAlRw5AwpRgJnadg7ix/JPXtIRkOTgoMocaJJDfTAKM1+HA2x4eHVoexzFIBfvcZ9Bx1UM8mAbGUoP9adfmoSCXv8I8rSvEkBEu6oMjldNFsFOqWElQkyxbKEF0rUxkyAv8oNLK0JcrQwT1PBZJKqW5kXjF/u1rM6kImM4RleKWsub5lp1ckQoky/dJhjiwEf78o0tPH1GnwZ4kyj49LU5tt/YPWSohIxnMBB5SY6dZ6k8wOT2D2HBWe7xEXvj0GfbvTLMck5MG//eczxXkSEJbbmIAfdypWaU+EQ+GFpvPPa1AZ+faTs/+PVZeZq3zyRt/7Ff2anR0UkhLus9sIyU79lXffHoKjIulhBLQJpRHL1IEbWZnafJ004MBUEVeebG/vLQ2TYN1u33Jj+3LaJhSJMZIyRfkNjhnFKMWBD8JFS+PEk9jzqABqaAvZ9JL/gI3HZg4cnzhCPzSu1cDF2S9GTxIYssCp4IOGEljCzDYlUNAwNCVTV4MkIEDCfQq8MkMh6IUbSbxnAou8LDGeD5gAMOOqzwLQWSlGxxcjofuqCZoijHxId+F2F0m2CIh8gGTqBl5gXsw1cQxVY6BFS7UDs+vIVSbMj8k3kTAQQ8ouSuQx5NBOweHKP4l0pMgwM806uVxh42chHiALSHy0yEo2PdlMlWAJ5H2cBHELWrFN14IVxk0hze2oLxiT7tYsNEPwfqk4yCUJ5LNJIOnLm32PCSFFe2NVhO4eHRHjt+yyO6EIjJAR/wrW1r5LU/usO3OmzqB5vji7bjmXEt/45BmxkPMrA50Aq0z2m7DLEPhqJ+cRVpqw7987QzmLUTFxBrsdwDWDsI3iUx8kWh/uBdhXUNHZFAqEhXlBGUPB2wHa9bKt3MnwTEaimdTT/MsYWWzTDxp24SzIiwc5OT+LrpgsvDl05MeGL7eko3V0AEnUAE7HRzXbRxN6ZuAVczXH0Uo/+gcK2XxJOzCjNlB4VOe13iYB6OSy0AHzt1dipts7AeC9Un1DPGjmamYX0zPBZpg4k5q45Chc48o2RdIskP8xU8sxSs89Kxee4QkpKun+GtyUxhmLh6bvqvE4YPHwcf2AWnDAj9PVITTQr3J6k4FGuYLKDjIFf4XCyJKQz0lxLjulD+NCP/6AnbAa4GSGFI4imPKyu1WOYt80Xbp8L2SRzOn1UOBJydiS9V2ETMqfLKSdzK5OXSIPC2AdN+E1IET4KE633LnH7e08JPIjzfh+RESVx8+doODDcTU2M1vmT56jahVpe/IrSL4ze+YG18GRdDqx0xp4OA53DTWxm4Yiqjv3p1dFPEq1v8yLWvQsyAmW79pWYdjumtV1AasdO0wvavyvrCDwUP7KXjyQAqL2KPi5g1vxF9IWTbRiQ9jbz1hoA+yyUtdqurg+6GkZ2Ry8OTLNn5wVSrY9tjkIpHe2Cga2KLLNcnWkRxNi5ivU9tP21CyU+OoGsgrYdxMWCrYHj/bxm5lGFBrGgmaFDI6qNWDhlc9AvR7kxbdXSzExgCc+aQmBJtGCJXtemo35fjiEw5qCQIgiFuEQxoBdR8uNLExCjymHlvfD0L0fC2HNLYSkNkJAblTlU6MpxxnfEpCX4FwdHMBaanrWchoo52PjAauro04DSnjEV6iHjCh946bUs62kTOoK591dhRWD8tiT9tuitCY1uZwz86pv1YMhcfWNZ74pQs9bd8mmVb3CYzZWSdk1D0w6mfpLl1bBdD8vWHeI4AAByfSURBVPMZf8hWzje+evVYrIkVvgD4AUdC9SqWOvbfuNnJiU2y/J57nfJmLOXveM/b++BTPpKkOGMOP8l09PmrQns2ScPOWYdfzogszQoxGo4Rt4+z97lKZKcdvzLNIfJVUYPbNbFyg4xu5Viie/u0VzoRh6sMX7FC51C7dn7CsWxTdoNBx3vmnIr84V5WSzJgwvAz7ygjMVTOTkZJ5kzJb+2wSWnaaOJpny2UFh0btrhdnZuFOQ1lGFPoAYutjZ2dBr3py4Hrm4Pn1e2UTmj9EIdI7MZ6AkDHkCTt8YmrUxHxRgMwo0LCuDUUj6mNwSakxG0uUjI67y5kAeLOA/53yERyHGnQcNOUHlEowZD+qsz2EEpALf1cbce0CxxHwzM4witXFH09cjYdGf2Uxqj3Wq0Te5EHjIhYDop2T4mxOb8MMqi4jMykI1MOkThRbmpmgPOdH2Y3KyoHPORBYjhl/KqiXYg4AnH3A9amhmAUZdDqQx4vRiNBweqiTxjlJXm0jZPaZniiiSkSriYPRnz0TTprq6ljII69l1juYENI2w9lwuSHTN/DSxS8wDKfTxy089nfJEnqXo0Sx++/k8QXn3p/0MlB3XjCc65ywfUDqGubMzVjy4AyVyRix778TGgK5y1XxC5fVpX+I59ky1bJlMYILLa26AQzbWQrh2j7Y7YW4llrW7CnvzzKY7Rc9BfTuRBxDusHwfIio/1ybHt14G8pWl2WLLdLUhwGy602zHpweaThlqEOLm3WuRatPNsIYlwV8g1p23jIzLpZIwOpOcPthxYMuFlKxfTYjGDh422htfysHNmhi+T6bGuPq9EpSFPHaCXARXgf93iRdKbjT17V/bNx9VSH2DQG4KfcKYoosR8yfTpwfpeQla3XNHXtcgUTiGRMmMY7seDVTV1orgwC0GQEQaXF5cswyZK+yRPujpuWQVnnVOju6GZ+o0SEC/3mYCqi1lDXu4LYUlnEgjQCM8NgqfS0kS6EtIsnWXRUvnplQ6TfB/aLFJ9PkDtZzirYRJZzhXuGkz9qq147bOHhQEy2W7MKESjDA23rwQ0eHBiSH3oSBbImK64E2/aKEJ0+ZGLK0ueQIMGNve0c/h6VV5sxkne4yo3tPueK8+iJKT7yXH/E1PjqRx9I9Dt4MNxvnTEZpXbo8dUkGbPTTtMEmSpzwDx3iSHHhtIKtitDjp+/KmP+ydNlLSl619KQvO2Xd3lWdvpp7DpUN4RTHRGNcme9d3U5lnnrLUVHJ12G5QcoT2yc4JziH/mb6E55E053j1dUYY2sUxdv7gT9I+sEsnCh9F7nYISwtmcqiTw9vFDb3bMgEcOg1HXbHJGPjhHGRooBNJdEj9zYM4p08cyj3tLEV/rB1TkvyfTnqhG6jtPI0mPQSrPwxrAfcoHERSPtQOggVhq7qJcnDZpypZ6GQhwaV0fk2Eo0Q9SxBBKGp6ydx5pGYwaDOhLua+4L17hjwAZsWJ3fE11k+C0zQTZc9cZcS/p8zckAWDFwg+1FJyMmqLEui1d7cLDsdJNNWmKWnFdAEkTW+UiNnn6evcqJZmWgCD9kfh0HDNiapA0LP8j6Q3j9qczEFMmboNqODDs4rdunvVh16MU8CWxl+E+7zyTJtPfPoqWp3dUvLzzY1Rbutb9+GQH4xTw1sfKMTltGC8fIkVGQdS6mj2zk1OHOmSqYeQfV3t1ti0e3BaDyFUytbQl+1nyRv13ab/+L8c/dDQANbSMvDB6709g+c0HJcuUbf7TiNGPOysrWUR0IDyYiXwTM1EXrrIwtsPzBGAwzQZjkKglCdxp92nSAiKkfemeEkoG1gcHY0UCmcWv4OJv78bJq9MYWKLsMZUpcvJTQ2OcAgvhScmUHgQ8FiB1zgIUo5jDEbTkqEO74NNiV+akTsoDTkK5TIglSOTnYUNxDVPo9Iudap7QC34kMjVNPBvmJBijn5Yx+jBGHWg5cMGUIuMpkYGift+bhAHXp2+0kkBE6GWLmZdM2BwbMUJyTdmzjaYLAf654d8wl9/ThkVOHj4AzRm24P6ftR1zYA6v9hx57C1FIdWttRhajTSrYm3CCN5GMrqE0uYCtbq7+1mZqvBHPx33IEJB4jh8xkYUI+X89nPi6MXR89M8V6okNXH0Vj2f87LjKE0jjHfmNAYGPjzmESybIVo8kbbiv7C4BoTn0VLtsEZ3ydra99YK+9hvZar/0FvyswYtMK3ogql2Lt921Xsy7htfm5dENJMPHXw9y03Rpu78ZdbpBeJn3JenAlkUPYogbTnYHG8SrtSYz59y1btQ4TYOtmVlnYiMouXtbj1FCuwaYYFBXmvMqZpKAoUF2s8Kd/vkwBxotYpzY7D7U+bXD3WQw8fY62pb4aKjpjhsjyIFwCpwKCPG6uweeeJWlxo6bv7nIyhUcOC7ik6lwkB5zApPdXY0bLwgw5G0DoDfXw7+HzC9r6sHzFYEwo08LD2umt7Jx9IVNpQACQNh4a/daV8fRoT5dZYZAaOmdQLO52HmW5SLM+PCGHmeVn+hmfJiuhboQeo5GWD2adVODnt3I6cJPHVoSA+DKmqyaTBbbBADjsYuNCUNT/Ode4fornTKpozgJK0b8vMlIztjCx/MkPPqR83ZbHnwOF3PWn3J7dYdeno1tamT4RDm1MdgbG9jij0IFlLhaI10ZrQI5FptjHkOvDDmF8dBmzaXFfVGXsXWvGNSDBScWJIKUrVkZt6z06q8usqs+YkQfHCwntChe/NPW5ksfkw+e6MWhSIO/HhR9lhXvl5pOquk6zjVX7shsWtQy08bKZKaw494dHjKKkzpYpWEMxtwZLYCgddW9oSQmwcKUQ7hCMh3B6UMNwnfA3tuTo5FKqOu4x+GUJTVeKeRgHI2hIRtvV0xMG0dTTXqFGBg6BTHAMSeMZyzyYKkSUw1Y6CeODqYXu4Qmhjh3zmj6pU9tGLwhz+j04ViQju6p0wwyKIAgct8I3xkjYC0V0OJ8oRQgugf7jCP4+a2gbiOI8vQcZHHUPjsChsChy7PzCVUKCdAyTnwHjgx6tueXAozllOrobOAiJxufPI7yAk1C6AzCBYmbzAGvfww/shy814acTmcLXdzOmQ6HbqbmdfgkxyjwTfLjLOclLle70Sr7PWcuV4/zNGHRji/wfPioXZoYcE+POezV5nBm7NwaYAquH2S1aRJsDMaPHGrrlUfGtCDjxzqYnVex1dWu2JjULkLsA1ew9gY0GABg1sdAFWb8XXNBhGraYDORTSjAxeqjPfs0P2ScQAveWmitdGu1r+IFrx3goZlqUdb/UPZFQZdB9YqScZFC3C5Z3dzHZT8zNey6SWCKjjt3I6uRkGIbUAswLqJcmIVHxCy7tdg9foHcHqM5vL4VDF1+t9l5NolzAQoiy+Zbf12RqcMpp5gcQOmRhis9vtsERYfRgWFf1TiN5x7L0TEtdIjX2pHw5SjHk0WPNDyjD2i2HGJNbOCXYsUYaY+MFcSqQsYxYscSF20xrjFBZNBWzjZ2HR/WXqbKxLKLiz0nAXEuUY3f/QMnwxdwnRvI+Iwukx+TnCM+QIt9wzZxoY1g53/c4oErahaQd2+Iq26pDSE5nBXD9CnTj9RppWAbBd+fwX8yMrBESE1MqfROBFjMUSxdJi/jl54UIyUBpQ1ViygYkaubdtTpfsjyf1I8td/CS0Ik0eABdhKiH95oF136Jicw8AShLC3+ayK6TZzWzmuY4pT13TliEI0LDtvYpkUfO9afpvSJaf2r1yRSfoiBY2vGRrf+bnvEKMZGGGbtl0K7aZYVLlGNw47zOuc+J1ufwxOVZ2FtNrahOBV6sJRtL0+lzzEAsWuwKvrjiE2/9su3sH+1xp4vnGdp5ZEq5H/m70PyEtFR8qoeVH5jIxBOKgFMFLzz0ybSbMDGxWrPkuYB7Ae3PGeCmLg0EWdqWa9VNCmnE5vuhFxk8b4YfdEl8YbiGIUdF+jridgxd6EFtBMIp+1i0QSYD5WGuWNKx9gQ4nerLMoGWvodSxFz3Dj7SQ7xqNhVcu07HOS4MQBXS50aZVUdEjjuG4bOuYxNOoAVZqihcgqCwEvwJWWiCTxCvW9AvFOPvVtSlpi01LzsyILiCy3SRdqxzG9HmTsAjXF2sC1DSwzWs1bkARqE7a6ZbnVcc5qxngAAzWkmMzAMjiYD5pWBwYUMPyRnepGRSGa80ALBPj86blv7xUfu2DqP/rZMfJCMmgA7BhOkPsrX5Jc28Q0fvm+7XsHJEx36jyRJn4gyBuSNo77LFZF6uOTmnNKwj6HzgAwxDz6FppFjxfCj2Dpt+2ugqYcXUwGSiy9f8UOuvhKAV8esZkxZO5ywW95O287/ANp+MWupDPWWAVF5mtNY9ah2C9ZiheCX439R93uUjDRzn7Hli1WZ6R0js8KAWRRcufhaFi8sUk8ddcL1fXGNCJ6WJ8W3ghFwJQMwR0vPg/OLT2QjijmgEUkFIP21JcmiHjtsi2dpTtNGSRRyUQhBX34Jsf1AplMRYoIkQV7JYN1y9b24J9TT1G2w/Ok1J8HZwKJjXF4NWNZReNGaGRDPaNLuvKdZl87PJE7JQOSPHpv0QSUJgukszxmMLx6hNfgeJx7m4sRCECkdd+A7L5GTXP2gZ2Kd08HY2K+QcD2UaDJAu6nT/rF/jigy5BS/DjhJtJLOP1zpA2vC6XsIaMqPrx1ETyMa4pTaRt7EavAmnPI2ScFR/jFyvsKrF/+tazhdImGGi6tk/UY4S+fIimPK1se08ZH9Unxkf8fnPIl52wHATdnkSA82bXM4cm1GLgJcn0PIiaiEqaNlXJNfq8nOmTmw37i1qzFmh/cRnTiRrfzU0zj9YFiDM7SDX+4yGCKiKWv9LMlHc9DApnNkaTBPvK/actluvKv739Z86h0XuVrIe0sviphy1o6142SjRMbQiQZl8Lwt5t0ZQP5qrecgmGhdeumby+Bx3ZdwdgZEWEIgq3J7SFISF+pMOZez0Rzoi6pYtm3eFAdQFY3uohJF6LAfdXEJec4wwBY0JOEI8qeAehXTwONJM1W+A64Rx2MPxtzuaNKBp4OJnFFKpg0OZVTMIf0c5rUBfOcEYMpMt2MjtSf4bO6JKbaMRZN+HYC9n3MCjmoGi+feKUmNiWmxl0xIUtx8w6fEMBgYv7vDzIbT7Y09XlPO0Hpqs5pJ6s6vs5k+JvjkYGbCjAyBgDDRp1CzqCRHLqAqeCFgWNB4rCF9dcpW3+GIDYwQeFLE6oNemJot02rY4IqhhjvPYDaeSZBUjYIwmargOCu+/S5z72XCByYGtWkfJ3kYFyPxKWfa1KOX1/7KF1v79AxcGxdacczRPPQbF9cX3Pjk8NZf2oJESGVLk2PHyFl+VupZmH1dKki9mh7UP32axxrlAqhTNsac+jecKv9Dx3X5Pc5y7cPZ0hdzuLoIu6kMiXXmDLPHvpFZ08uNySgzF4w/CN6q93Ur3RnODDVXl92onSS9BWOPNDto+zlg7e8KmYCwxQFBRMXbDK9SMxtjh4Fbtts8Zx6LFAmLYq/1gZxeCgmDxW5TFsU9ZFL07CVpRAw5fggCe41yvLvacUgWPQuZ0kDw5HpMfqlvvPIQw6Hw1DBEzC7iPhkcuhG/HSWo4O/pq6e84kXMtU5Oz298PJ5KztxDMXqP+M3TSlxe8ByUYXCvkbtshArET3NSMxrmP1HFAfheb9LpeAOAjmE0rJ0qxlJRPHRQ4VssjpQzSMfMdKeFJ+Gt7U6fM2JM+A41ayAXrhERLtOMDeGi5u1TpsOZUZ+B8QV1fheK2Al/fz+b5OcsYoNx+MQwLoD5jJMhrJ01fZ0uFkRkRT4f/BA31xpouiioiZvRegXMMPWFC7QoU6fhU95yEyd6a/SrGyynjxfQUB6eiNrpFNmtcuSrny4+v5b6GcXq4yXx4/KUn22rfl0fMA24DPpK4Tii9bXqr/2V/wfqpf6epcUq4s4QL5zOZarESv7jWnKGiQVbbl/6uHFZgwgzhGQbNgKxYd8SWxJBmJroGCsy+dNBmbKJI821hCXOgDhxeStrnw+NFHCVExnqJk7kKX7NJyyTPhheC/vvBKYIg3wEpeGB2eg4AN3VhddwJVajbxQISeXU0nmkH6wh0CTKgHI0vTfZMugIZ87UziFV0V6yB81ZIUfDRZn56ujrmPuZbCgo4PdkMWWdYl7SzJ/Zjjj1ARS6gCLIEzcYyBMQ2p0ABgNKGcsibylYLzJ4gAg2MBMK+nECsDMXhDOIM6+0MswmovDHmtGqy+pjBJIxJOQo1YNxRpY/fzQq64XcwhJleaBJHxmuEgpu0uBFOzU4woJmsMONXew5TPYhaZG37RJ3OPkk219RlAsGwwUnL3+0Ypp8GKBNKn2sb3hYbdbwhoInt8AaK3dV4A5m/DALziuxD18R6eCQKmVbF6Mwg4pOUHwxxpxI+nIWkmPtl0uBsrYqv9pthQN6jENbXrr6nMgWi6xyEH9dSnox218uNP8q12X5563l5Pzx1pY1kNVvyVB5j5SzxTJx3I6aM8XgO8vIA2GSY8ue6TRYzWQZejhzFnBowd5HDo7ScxSp+zAQOHPYCccI48YXOcsKQbybtGwSG9EkHIYhMYqUaRPj7RW7femqZ5HbxZTCQhqONIqk4qHDHBxu/4RElsZMxPjFwlWICdghsWtngME1FeE1BXFex9hBLLhM8FGH88xaZkRe7iXqCzfjkKH88IXF0xmefKATNd9i6CaOoJNoEM4RDufFSGrObZy4OQkrejjxulMV4/EIACkRNoyl4nJp9w2+YdUfuJrRaFtrZmA9OA0jjW2vvkxIgZB0TC7SwN2AwoYJUnwb0/pYn4y2c5F1AxHTRy2A009MkYHjDkbk3/Iiwe9lC4tG/wHwVaRNnNRQJLllhuGQp9Q1YJbmXTvA4zKNxkD8xIfvDWk5rdVmGzifuosEUnyVD1v7qSlwqqMNRunU7BCER9cFNSKxtJFey2Oi1ORIPCCYuJxnsOZjLc8prW/clVD7z4A+Rb+CFfGJWxn4jmYl/3699iRKRuQmzBRyddTkqBeSZ5IoS493IqCYqaCsM2amfdZRLKIjX+Xp1MDhFWAY6jE6bJibHtMi96YDeEqvcOEpyljUxXEHL7Xa9ImMd4qr9FzUYayGmHeI/OCxSXEXBczIGcmAEW2JaKREzoZzVxJc+hhOIecUmlrNXBGzWJilA4ZosAs1dshqyhCcKFc5Lw7jCEtQdh0RE1gpXI6gLya5RRK3vOUiKRFR8E1czDkhIeCAW6occ8rJg+xMQ0mbOkfOKiZ5v9ogNEKVp2/TQ7lTiIyyO11/YcJLCf246yQAmTHqd9GYSMjyRxukx4x7fCBMPIw5593pQezmBIUoNfOdWv4c0sQtUjng4ckxKEZl26+Cah6NPCBytZrxZSqdFlzhXA7bcOCLI3ZlbU27skyqL3zyIpMIsHY5OLuYOUW8Jh1bxrA81PxEQCJWHi7GyrTlCjSnl7M19qkxVj8yTotv9enHVlNnLAJkrWyc9sjoH9lpjMwZLpB1uWpmjLZL6bUHuooF/0KE3aPG6p+WxX+1XXf/lCAAsFx6ff/bH3kL7aeRpptounMCIEHaZw0nN7p9IjkrkYxDH0UaWU/tw+w7yl6kZo5CtOs/5rEJILK2YsxS5NThcMSwQamAY1ek1tgR/diLIVrfZKWXWHMYbWBpidmPHtCxaKcIDD2fVIs9BgAI/imE4dtt/KwKhnWZ5ccuV5vk7DcC7LMfGRIF4zzCBLYBKDLYHTdD4O0nC//PP/JSxWsYyxuGTrr4353oKGdnQWhonjLyJPDYcqiOlv/+AS5kLHD0lNAQFH7z7ARoIH+Y2Z5wA85BX2n6IgKP7SGL75g1rQgeP3ggSf/dZdOweA1iA+cYa+7hoTSOtBlFSQ0h3kBHwoNR4uRb1rPzYHiFdzSEHd6G7Z8ZaztH3GV6Yasss/wt76ti4ilsEuTKjWTIknBqeA2a7N0Zrn2GS0h5Yodb5PNcHX7qq9iZ5hJjHXzcECcT29gUX64A6qXcEDFX1moqh62Mt2Zsr1zmlRkLc71W1w6c0lFdRJcB/b5wf9pg12hpPQUh5SGS41P0qoW/h1/yPoCHWum6fCD/sLlphu/UZsU3jqxalppb1zzG6nPqo3G1ZmF4Uy+TmLfrHPGAkgWtfbejaYtlFJWK/Mm1nGvwwdbIqqnDvRXzFoLbokyT0PzwTeNes2DEGpwM5avoDMSlxS2FXFCRnTqVBi9XEgsD5NwRui1qB584CBNtDqMGwtAYNvdLM2a8F2iQIt6DnkKSrSZP8gIcPLlPSM3frnNaAFQGYCzHv9Hk1DBVwWQ0ZgRacDiExOW7AekR9/Jiou/QEKc0eYYkltgaW3jQeZrbwHnsnAzmwZI/m8dqMRNwjyMA/a/emEJpPy/AkzKqhpwp5pFDdExiTgUvzflTPxnOb/yCZzA/vBckjEtcDRhtdFCSQvURO1II41PeAUELOJCpc1skK4UkN4nOK0MowHgPMG10KOQ2VPuZboBhZOqSYfjBJ5sFTwmBfPnDnAk2TBDz5I7I+u0HTPWjLDDCRg4aU/qaps4onXlu6qDUX9mNURyjxxi790lQhy8N9gL6HGykbaGfRnV5IUBIh3FRb5m21dsePSLwXGtkbMmVu2jQJEiU4fSEYIN4ShHtrHjrxfxV/e9g/4rnV7rl5q13vo3Hm0YXXE4NZ8W5Z/kGx4AzdhKLN7gyZu5pkqBmPfq+NwJWvRdzWTTus7nvyeTERWRM5qQtqCleDEHkto0ANFdN+SrOqdNM0SIBukRjn6ssNyueXa3aJjS6wRMOxPVEvoqCmwsAqLY4uEgzBUHnUIv3VG/gzIT22Do9zbhSwbnjYiDQOGCYMn5XIaBo8MmcyHF9YmZs2IKvD4YcEm1j7FRGyVYiecc+OFhwigntNFFl2MxJ+h56nttDOE+T+EwLXFylnr21EwQxlokdJ+lY0doGwzIKziFzY0Rp0/LM+U4FLRHDjG2iyg7LISCYIyUidExe2b2YJish0g6DQCYWhskHQ+1GkXuGcJfa6fQUYM3EkKDEBmObDiKSW4Ihcwkg1DRRMq8pvkxET0gJhyCaEKPPRa197mUuBwRihpE44sHbCbYZZxyYrNNIDLjTJwf86h8Z7WyP378jaZhg09QdTcZg0CvPuhU94sMltgdklLKmET47CPG5gMuM5kBokySVBcu5zBTtKRUoBQie6dCfJmb/b4tfOM8UkvSYyvypIN5gOIQMkf+TmoG4M9Pkgi6dnJo/kgNJh8ydU897Eq4MjqR2VQeXn+DK5tFlwbxwpZQJiy51VOyCvHSbuLl8AW3J2k7P2GKSR0i1hZf8SXEI2IbD7QerheWYNvHHpaHApn58CM1hQolWb5rpL616LGVwBEUespSU5jDlGoCg9YPYNmqYKT3SYmwKToMewaLdoAABsM/JSIB5KJSMeSwmVshduEDKjnSAI0ROUmAg4uvOyPoqRhzRIInN0CtCEgFX7UwpqOCctlwGoSMZ5SKMVzeTStA5MbzRcFypOj7IOV9ZRKEh9RCNQsaR+CKbl25fhrm8IhzSblpA4ExqMpHmj92e15loy8ZqzuN52z0OzuAYRC/GHQpJrzc7GJtJN+GSzGgzMKKUnWSZXl0kXJgR+LNuUk/CIoMo9fwIJTSfqEjU2HOQXyWnvYz+l+kqxHm1CcYpuX4147Albd/PrCyUnsKeAFE2Jy4EQhe//acGU5Atm2yTTAZUxDSHhwTRlF9LV/tzbXxfxL+SfYH8n7r/A6isvic82r4AAAAAAElFTkSuQmCC", + "backgroundColor": "#FFFFFF", + "referencedComponentHashes": [] +} \ No newline at end of file diff --git a/README.md b/README.md index 27a46c1..998dcf2 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Assets are organized by vendor and product. Each folder may contain one or more | **OpenAI** | AI / LLM APIs | | **Paessler** | PRTG monitoring | | **PagerDuty** | Incident management | -| **Palo Alto** | Panorama · Prisma Cloud CSPM | +| **Palo Alto** | Panorama · Prisma Access · Prisma Cloud CSPM | | **RingCentral** | Unified communications | | **Ruckus** | Fastiron | | **Selector** | AIOps |