catocli 2.0.4__py3-none-any.whl → 2.0.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of catocli might be problematic. Click here for more details.
- build/lib/catocli/Utils/clidriver.py +268 -0
- build/lib/catocli/Utils/profile_manager.py +188 -0
- build/lib/catocli/Utils/version_checker.py +192 -0
- build/lib/catocli/__init__.py +2 -0
- build/lib/catocli/__main__.py +12 -0
- build/lib/catocli/parsers/configure/__init__.py +115 -0
- build/lib/catocli/parsers/configure/configure.py +307 -0
- build/lib/catocli/parsers/custom/__init__.py +57 -0
- build/lib/catocli/parsers/custom/customLib.py +561 -0
- build/lib/catocli/parsers/custom/export_rules/__init__.py +42 -0
- build/lib/catocli/parsers/custom/export_rules/export_rules.py +234 -0
- build/lib/catocli/parsers/custom/export_sites/__init__.py +21 -0
- build/lib/catocli/parsers/custom/export_sites/export_sites.py +372 -0
- build/lib/catocli/parsers/custom/import_rules_to_tf/__init__.py +58 -0
- build/lib/catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +451 -0
- build/lib/catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
- build/lib/catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
- build/lib/catocli/parsers/mutation_accountManagement/__init__.py +48 -0
- build/lib/catocli/parsers/mutation_admin/__init__.py +48 -0
- build/lib/catocli/parsers/mutation_container/__init__.py +138 -0
- build/lib/catocli/parsers/mutation_hardware/__init__.py +22 -0
- build/lib/catocli/parsers/mutation_policy/__init__.py +1305 -0
- build/lib/catocli/parsers/mutation_sandbox/__init__.py +35 -0
- build/lib/catocli/parsers/mutation_site/__init__.py +373 -0
- build/lib/catocli/parsers/mutation_sites/__init__.py +373 -0
- build/lib/catocli/parsers/mutation_xdr/__init__.py +48 -0
- build/lib/catocli/parsers/parserApiClient.py +513 -0
- build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountManagement/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountMetrics/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountRoles/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountSnapshot/__init__.py +16 -0
- build/lib/catocli/parsers/query_admin/__init__.py +16 -0
- build/lib/catocli/parsers/query_admins/__init__.py +16 -0
- build/lib/catocli/parsers/query_appStats/__init__.py +16 -0
- build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +16 -0
- build/lib/catocli/parsers/query_auditFeed/__init__.py +16 -0
- build/lib/catocli/parsers/query_catalogs/__init__.py +16 -0
- build/lib/catocli/parsers/query_container/__init__.py +16 -0
- build/lib/catocli/parsers/query_devices/__init__.py +16 -0
- build/lib/catocli/parsers/query_entityLookup/__init__.py +16 -0
- build/lib/catocli/parsers/query_events/__init__.py +16 -0
- build/lib/catocli/parsers/query_eventsFeed/__init__.py +16 -0
- build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +16 -0
- build/lib/catocli/parsers/query_hardware/__init__.py +16 -0
- build/lib/catocli/parsers/query_hardwareManagement/__init__.py +16 -0
- build/lib/catocli/parsers/query_licensing/__init__.py +16 -0
- build/lib/catocli/parsers/query_policy/__init__.py +161 -0
- build/lib/catocli/parsers/query_sandbox/__init__.py +16 -0
- build/lib/catocli/parsers/query_site/__init__.py +100 -0
- build/lib/catocli/parsers/query_siteLocation/__init__.py +13 -0
- build/lib/catocli/parsers/query_subDomains/__init__.py +16 -0
- build/lib/catocli/parsers/query_xdr/__init__.py +35 -0
- build/lib/catocli/parsers/raw/__init__.py +12 -0
- build/lib/graphql_client/__init__.py +11 -0
- build/lib/graphql_client/api/__init__.py +3 -0
- build/lib/graphql_client/api/call_api.py +84 -0
- build/lib/graphql_client/api_client.py +192 -0
- build/lib/graphql_client/api_client_types.py +409 -0
- build/lib/graphql_client/configuration.py +232 -0
- build/lib/graphql_client/models/__init__.py +13 -0
- build/lib/graphql_client/models/no_schema.py +71 -0
- build/lib/schema/catolib.py +1141 -0
- build/lib/schema/importSchema.py +60 -0
- build/lib/schema/remove_policyid.py +89 -0
- build/lib/schema/remove_policyid_mutations.py +89 -0
- build/lib/scripts/catolib.py +62 -0
- build/lib/scripts/export_if_rules_to_json.py +188 -0
- build/lib/scripts/export_wf_rules_to_json.py +111 -0
- build/lib/scripts/import_wf_rules_to_tfstate.py +331 -0
- build/lib/vendor/certifi/__init__.py +4 -0
- build/lib/vendor/certifi/__main__.py +12 -0
- build/lib/vendor/certifi/core.py +114 -0
- build/lib/vendor/certifi/py.typed +0 -0
- build/lib/vendor/six.py +998 -0
- build/lib/vendor/urllib3/__init__.py +211 -0
- build/lib/vendor/urllib3/_base_connection.py +172 -0
- build/lib/vendor/urllib3/_collections.py +483 -0
- build/lib/vendor/urllib3/_request_methods.py +278 -0
- build/lib/vendor/urllib3/_version.py +16 -0
- build/lib/vendor/urllib3/connection.py +1033 -0
- build/lib/vendor/urllib3/connectionpool.py +1182 -0
- build/lib/vendor/urllib3/contrib/__init__.py +0 -0
- build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
- build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
- build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
- build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
- build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
- build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
- build/lib/vendor/urllib3/contrib/socks.py +228 -0
- build/lib/vendor/urllib3/exceptions.py +321 -0
- build/lib/vendor/urllib3/fields.py +341 -0
- build/lib/vendor/urllib3/filepost.py +89 -0
- build/lib/vendor/urllib3/http2/__init__.py +53 -0
- build/lib/vendor/urllib3/http2/connection.py +356 -0
- build/lib/vendor/urllib3/http2/probe.py +87 -0
- build/lib/vendor/urllib3/poolmanager.py +637 -0
- build/lib/vendor/urllib3/py.typed +2 -0
- build/lib/vendor/urllib3/response.py +1265 -0
- build/lib/vendor/urllib3/util/__init__.py +42 -0
- build/lib/vendor/urllib3/util/connection.py +137 -0
- build/lib/vendor/urllib3/util/proxy.py +43 -0
- build/lib/vendor/urllib3/util/request.py +256 -0
- build/lib/vendor/urllib3/util/response.py +101 -0
- build/lib/vendor/urllib3/util/retry.py +533 -0
- build/lib/vendor/urllib3/util/ssl_.py +513 -0
- build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
- build/lib/vendor/urllib3/util/ssltransport.py +276 -0
- build/lib/vendor/urllib3/util/timeout.py +275 -0
- build/lib/vendor/urllib3/util/url.py +471 -0
- build/lib/vendor/urllib3/util/util.py +42 -0
- build/lib/vendor/urllib3/util/wait.py +124 -0
- catocli/Utils/clidriver.py +1 -4
- catocli/__init__.py +1 -1
- catocli/parsers/custom/export_sites/export_sites.py +2 -2
- catocli/parsers/mutation_container/__init__.py +116 -0
- catocli/parsers/mutation_container_fqdn/README.md +7 -0
- catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
- catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
- catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
- catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
- catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
- catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
- catocli/parsers/parserApiClient.py +25 -11
- catocli/parsers/query_policy/README.md +0 -17
- catocli/parsers/query_policy/__init__.py +153 -8
- catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
- catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
- catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
- catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
- catocli/parsers/query_policy_internetFirewall/README.md +7 -0
- catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
- catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
- catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
- catocli/parsers/query_policy_socketLan/README.md +7 -0
- catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
- catocli/parsers/query_policy_terminalServer/README.md +7 -0
- catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
- catocli/parsers/query_policy_wanFirewall/README.md +7 -0
- catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
- catocli/parsers/query_policy_wanNetwork/README.md +7 -0
- catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
- catocli/parsers/query_site/README.md +0 -16
- catocli/parsers/query_site/__init__.py +92 -8
- catocli/parsers/query_site_availableVersionList/README.md +17 -0
- catocli/parsers/query_site_bgpPeer/README.md +17 -0
- catocli/parsers/query_site_bgpPeerList/README.md +17 -0
- catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
- catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
- catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
- catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
- catocli/parsers/raw/README.md +0 -14
- catocli/parsers/raw/__init__.py +0 -2
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/METADATA +1 -1
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/RECORD +290 -120
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/top_level.txt +1 -0
- graphql_client/api/call_api.py +4 -3
- models/mutation.container.fqdn.addValues.json +866 -0
- models/mutation.container.fqdn.createFromFile.json +819 -0
- models/mutation.container.fqdn.removeValues.json +866 -0
- models/mutation.container.fqdn.updateFromFile.json +1045 -0
- models/mutation.container.ipAddressRange.addValues.json +1020 -0
- models/mutation.container.ipAddressRange.createFromFile.json +819 -0
- models/mutation.container.ipAddressRange.removeValues.json +1020 -0
- models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
- models/mutation.policy.appTenantRestriction.addRule.json +8 -8
- models/mutation.policy.appTenantRestriction.addSection.json +1 -1
- models/mutation.policy.appTenantRestriction.createPolicyRevision.json +2 -2
- models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +2 -2
- models/mutation.policy.appTenantRestriction.moveRule.json +2 -2
- models/mutation.policy.appTenantRestriction.moveSection.json +1 -1
- models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +2 -2
- models/mutation.policy.appTenantRestriction.removeRule.json +2 -2
- models/mutation.policy.appTenantRestriction.removeSection.json +1 -1
- models/mutation.policy.appTenantRestriction.updatePolicy.json +2 -2
- models/mutation.policy.appTenantRestriction.updateRule.json +8 -8
- models/mutation.policy.appTenantRestriction.updateSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.addRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.addSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +1 -1
- models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +1 -1
- models/mutation.policy.dynamicIpAllocation.moveRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.moveSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +1 -1
- models/mutation.policy.dynamicIpAllocation.removeRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.removeSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.updatePolicy.json +1 -1
- models/mutation.policy.dynamicIpAllocation.updateRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.updateSection.json +1 -1
- models/mutation.policy.internetFirewall.addRule.json +502 -55
- models/mutation.policy.internetFirewall.addSection.json +1 -1
- models/mutation.policy.internetFirewall.createPolicyRevision.json +127 -10
- models/mutation.policy.internetFirewall.discardPolicyRevision.json +127 -10
- models/mutation.policy.internetFirewall.moveRule.json +127 -10
- models/mutation.policy.internetFirewall.moveSection.json +1 -1
- models/mutation.policy.internetFirewall.publishPolicyRevision.json +127 -10
- models/mutation.policy.internetFirewall.removeRule.json +127 -10
- models/mutation.policy.internetFirewall.removeSection.json +1 -1
- models/mutation.policy.internetFirewall.updatePolicy.json +127 -10
- models/mutation.policy.internetFirewall.updateRule.json +493 -55
- models/mutation.policy.internetFirewall.updateSection.json +1 -1
- models/mutation.policy.remotePortFwd.addRule.json +5 -5
- models/mutation.policy.remotePortFwd.addSection.json +1 -1
- models/mutation.policy.remotePortFwd.createPolicyRevision.json +2 -2
- models/mutation.policy.remotePortFwd.discardPolicyRevision.json +2 -2
- models/mutation.policy.remotePortFwd.moveRule.json +2 -2
- models/mutation.policy.remotePortFwd.moveSection.json +1 -1
- models/mutation.policy.remotePortFwd.publishPolicyRevision.json +2 -2
- models/mutation.policy.remotePortFwd.removeRule.json +2 -2
- models/mutation.policy.remotePortFwd.removeSection.json +1 -1
- models/mutation.policy.remotePortFwd.updatePolicy.json +2 -2
- models/mutation.policy.remotePortFwd.updateRule.json +5 -5
- models/mutation.policy.remotePortFwd.updateSection.json +1 -1
- models/mutation.policy.socketLan.addRule.json +16 -16
- models/mutation.policy.socketLan.addSection.json +1 -1
- models/mutation.policy.socketLan.createPolicyRevision.json +4 -4
- models/mutation.policy.socketLan.discardPolicyRevision.json +4 -4
- models/mutation.policy.socketLan.moveRule.json +4 -4
- models/mutation.policy.socketLan.moveSection.json +1 -1
- models/mutation.policy.socketLan.publishPolicyRevision.json +4 -4
- models/mutation.policy.socketLan.removeRule.json +4 -4
- models/mutation.policy.socketLan.removeSection.json +1 -1
- models/mutation.policy.socketLan.updatePolicy.json +4 -4
- models/mutation.policy.socketLan.updateRule.json +16 -16
- models/mutation.policy.socketLan.updateSection.json +1 -1
- models/mutation.policy.terminalServer.addRule.json +1 -1
- models/mutation.policy.terminalServer.addSection.json +1 -1
- models/mutation.policy.terminalServer.createPolicyRevision.json +1 -1
- models/mutation.policy.terminalServer.discardPolicyRevision.json +1 -1
- models/mutation.policy.terminalServer.moveRule.json +1 -1
- models/mutation.policy.terminalServer.moveSection.json +1 -1
- models/mutation.policy.terminalServer.publishPolicyRevision.json +1 -1
- models/mutation.policy.terminalServer.removeRule.json +1 -1
- models/mutation.policy.terminalServer.removeSection.json +1 -1
- models/mutation.policy.terminalServer.updatePolicy.json +1 -1
- models/mutation.policy.terminalServer.updateRule.json +1 -1
- models/mutation.policy.terminalServer.updateSection.json +1 -1
- models/mutation.policy.wanFirewall.addRule.json +500 -53
- models/mutation.policy.wanFirewall.addSection.json +1 -1
- models/mutation.policy.wanFirewall.createPolicyRevision.json +128 -11
- models/mutation.policy.wanFirewall.discardPolicyRevision.json +128 -11
- models/mutation.policy.wanFirewall.moveRule.json +128 -11
- models/mutation.policy.wanFirewall.moveSection.json +1 -1
- models/mutation.policy.wanFirewall.publishPolicyRevision.json +128 -11
- models/mutation.policy.wanFirewall.removeRule.json +128 -11
- models/mutation.policy.wanFirewall.removeSection.json +1 -1
- models/mutation.policy.wanFirewall.updatePolicy.json +128 -11
- models/mutation.policy.wanFirewall.updateRule.json +491 -53
- models/mutation.policy.wanFirewall.updateSection.json +1 -1
- models/mutation.policy.wanNetwork.addRule.json +13 -13
- models/mutation.policy.wanNetwork.addSection.json +1 -1
- models/mutation.policy.wanNetwork.createPolicyRevision.json +1 -1
- models/mutation.policy.wanNetwork.discardPolicyRevision.json +1 -1
- models/mutation.policy.wanNetwork.moveRule.json +1 -1
- models/mutation.policy.wanNetwork.moveSection.json +1 -1
- models/mutation.policy.wanNetwork.publishPolicyRevision.json +1 -1
- models/mutation.policy.wanNetwork.removeRule.json +1 -1
- models/mutation.policy.wanNetwork.removeSection.json +1 -1
- models/mutation.policy.wanNetwork.updatePolicy.json +1 -1
- models/mutation.policy.wanNetwork.updateRule.json +13 -13
- models/mutation.policy.wanNetwork.updateSection.json +1 -1
- models/query.policy.appTenantRestriction.policy.json +3086 -0
- models/query.policy.dynamicIpAllocation.policy.json +1934 -0
- models/query.policy.internetFirewall.policy.json +7833 -0
- models/query.policy.json +233 -0
- models/query.policy.remotePortFwd.policy.json +2387 -0
- models/query.policy.socketLan.policy.json +7140 -0
- models/query.policy.terminalServer.policy.json +1632 -0
- models/query.policy.wanFirewall.policy.json +9212 -0
- models/query.policy.wanNetwork.policy.json +8010 -0
- models/query.site.availableVersionList.json +365 -0
- models/query.site.bgpPeer.json +1917 -0
- models/query.site.bgpPeerList.json +2076 -0
- models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
- models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
- models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
- models/query.site.siteBgpStatus.json +869 -0
- schema/catolib.py +13 -6
- schema/remove_policyid.py +89 -0
- schema/remove_policyid_mutations.py +89 -0
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/LICENSE +0 -0
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/WHEEL +0 -0
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/entry_points.txt +0 -0
|
@@ -323,6 +323,7 @@
|
|
|
323
323
|
"PolicyMutationError": true,
|
|
324
324
|
"PolicyMutationRevisionInput": true,
|
|
325
325
|
"PolicyMutationStatus": true,
|
|
326
|
+
"PolicyRuleActivePeriod": true,
|
|
326
327
|
"PolicyRulePositionEnum": true,
|
|
327
328
|
"PolicyRulePositionInput": true,
|
|
328
329
|
"PolicyRuleTrackingAlert": true,
|
|
@@ -915,7 +916,7 @@
|
|
|
915
916
|
"responseStr": "errors:$policyMutationError ",
|
|
916
917
|
"type": {
|
|
917
918
|
"definition": {
|
|
918
|
-
"description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can
|
|
919
|
+
"description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can’t publish policy due to an internal error. Please try again in a few minutes\"\n\n\n## Rule Errors\n\n### `ruleIsLocked`\n- **Error Message:** \"Rule is locked by another revision\"\n\n### `ruleWasRemoved`\n- **Error Message:** \"Rule was already removed\"\n\n### `ruleNotExist`\n- **Error Message:** \"Rule does not exist\"\n\n### `ruleSectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `ruleSectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `rulePositionInvalid`\n- **Error Message:** \"Rule position is invalid\"\n\n### `ruleNameIsEmpty`\n- **Error Message:** \"Rule name can't be empty\"\n\n### `ruleNameAlreadyExists`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `ruleSystemModification`\n- **Error Message:** \"Can't modify a system rule\"\n\n### `ruleSystemMove`\n- **Error Message:** \"Can't add a rule above the system rules\"\n\n### `ruleHasInvalidEntity`\n- **Error Message:** \"Rule has an invalid entity\"\n\n### `failedValidatingRule`\n- **Error Message:** \"Something went wrong, couldn't validate rule\"\n\n\n## Section Errors\n\n### `sectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `sectionSystemMove`\n- **Error Message:** \"Section with system rules cannot be moved or removed\"\n\n### `sectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `sectionPositionInvalid`\n- **Error Message:** \"Section position is invalid\"",
|
|
919
920
|
"enumValues": null,
|
|
920
921
|
"fields": {
|
|
921
922
|
"errorCode": {
|
|
@@ -1214,11 +1215,127 @@
|
|
|
1214
1215
|
},
|
|
1215
1216
|
"varName": "action"
|
|
1216
1217
|
},
|
|
1218
|
+
"activePeriod": {
|
|
1219
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
1220
|
+
"args": {},
|
|
1221
|
+
"deprecationReason": null,
|
|
1222
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
1223
|
+
"id_str": "wanFirewall___moveRule___rule___rule___activePeriod",
|
|
1224
|
+
"isDeprecated": false,
|
|
1225
|
+
"name": "activePeriod",
|
|
1226
|
+
"path": "wanFirewall.moveRule.rule.rule.activePeriod",
|
|
1227
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
1228
|
+
"required": true,
|
|
1229
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
1230
|
+
"type": {
|
|
1231
|
+
"definition": {
|
|
1232
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
1233
|
+
"enumValues": null,
|
|
1234
|
+
"fields": {
|
|
1235
|
+
"effectiveFrom": {
|
|
1236
|
+
"args": {},
|
|
1237
|
+
"deprecationReason": null,
|
|
1238
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
1239
|
+
"id_str": "wanFirewall___moveRule___rule___rule___activePeriod___effectiveFrom",
|
|
1240
|
+
"isDeprecated": false,
|
|
1241
|
+
"name": "effectiveFrom",
|
|
1242
|
+
"path": "wanFirewall.moveRule.rule.rule.activePeriod.effectiveFrom",
|
|
1243
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
1244
|
+
"required": false,
|
|
1245
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
1246
|
+
"type": {
|
|
1247
|
+
"kind": [
|
|
1248
|
+
"SCALAR"
|
|
1249
|
+
],
|
|
1250
|
+
"name": "DateTime",
|
|
1251
|
+
"non_null": false
|
|
1252
|
+
},
|
|
1253
|
+
"varName": "effectiveFrom"
|
|
1254
|
+
},
|
|
1255
|
+
"expiresAt": {
|
|
1256
|
+
"args": {},
|
|
1257
|
+
"deprecationReason": null,
|
|
1258
|
+
"description": "The time the rule expires, if not used, default null",
|
|
1259
|
+
"id_str": "wanFirewall___moveRule___rule___rule___activePeriod___expiresAt",
|
|
1260
|
+
"isDeprecated": false,
|
|
1261
|
+
"name": "expiresAt",
|
|
1262
|
+
"path": "wanFirewall.moveRule.rule.rule.activePeriod.expiresAt",
|
|
1263
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
1264
|
+
"required": false,
|
|
1265
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
1266
|
+
"type": {
|
|
1267
|
+
"kind": [
|
|
1268
|
+
"SCALAR"
|
|
1269
|
+
],
|
|
1270
|
+
"name": "DateTime",
|
|
1271
|
+
"non_null": false
|
|
1272
|
+
},
|
|
1273
|
+
"varName": "expiresAt"
|
|
1274
|
+
},
|
|
1275
|
+
"useEffectiveFrom": {
|
|
1276
|
+
"args": {},
|
|
1277
|
+
"deprecationReason": null,
|
|
1278
|
+
"description": null,
|
|
1279
|
+
"id_str": "wanFirewall___moveRule___rule___rule___activePeriod___useEffectiveFrom",
|
|
1280
|
+
"isDeprecated": false,
|
|
1281
|
+
"name": "useEffectiveFrom",
|
|
1282
|
+
"path": "wanFirewall.moveRule.rule.rule.activePeriod.useEffectiveFrom",
|
|
1283
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
1284
|
+
"required": true,
|
|
1285
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
1286
|
+
"type": {
|
|
1287
|
+
"kind": [
|
|
1288
|
+
"NON_NULL",
|
|
1289
|
+
"SCALAR"
|
|
1290
|
+
],
|
|
1291
|
+
"name": "Boolean",
|
|
1292
|
+
"non_null": false
|
|
1293
|
+
},
|
|
1294
|
+
"varName": "useEffectiveFrom"
|
|
1295
|
+
},
|
|
1296
|
+
"useExpiresAt": {
|
|
1297
|
+
"args": {},
|
|
1298
|
+
"deprecationReason": null,
|
|
1299
|
+
"description": null,
|
|
1300
|
+
"id_str": "wanFirewall___moveRule___rule___rule___activePeriod___useExpiresAt",
|
|
1301
|
+
"isDeprecated": false,
|
|
1302
|
+
"name": "useExpiresAt",
|
|
1303
|
+
"path": "wanFirewall.moveRule.rule.rule.activePeriod.useExpiresAt",
|
|
1304
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
1305
|
+
"required": true,
|
|
1306
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
1307
|
+
"type": {
|
|
1308
|
+
"kind": [
|
|
1309
|
+
"NON_NULL",
|
|
1310
|
+
"SCALAR"
|
|
1311
|
+
],
|
|
1312
|
+
"name": "Boolean",
|
|
1313
|
+
"non_null": false
|
|
1314
|
+
},
|
|
1315
|
+
"varName": "useExpiresAt"
|
|
1316
|
+
}
|
|
1317
|
+
},
|
|
1318
|
+
"inputFields": null,
|
|
1319
|
+
"interfaces": {},
|
|
1320
|
+
"kind": "OBJECT",
|
|
1321
|
+
"name": "PolicyRuleActivePeriod",
|
|
1322
|
+
"possibleTypes": null
|
|
1323
|
+
},
|
|
1324
|
+
"indexType": "object",
|
|
1325
|
+
"kind": [
|
|
1326
|
+
"NON_NULL",
|
|
1327
|
+
"OBJECT"
|
|
1328
|
+
],
|
|
1329
|
+
"name": "PolicyRuleActivePeriod",
|
|
1330
|
+
"non_null": false
|
|
1331
|
+
},
|
|
1332
|
+
"varName": "policyRuleActivePeriod"
|
|
1333
|
+
},
|
|
1217
1334
|
"application": {
|
|
1218
1335
|
"alias": "wanFirewallApplicationApplication: application",
|
|
1219
1336
|
"args": {},
|
|
1220
1337
|
"deprecationReason": null,
|
|
1221
|
-
"description": "Application traffic matching criteria.\nLogical
|
|
1338
|
+
"description": "Application traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1222
1339
|
"id_str": "wanFirewall___moveRule___rule___rule___application",
|
|
1223
1340
|
"isDeprecated": false,
|
|
1224
1341
|
"name": "application",
|
|
@@ -1469,7 +1586,7 @@
|
|
|
1469
1586
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
1470
1587
|
"args": {},
|
|
1471
1588
|
"deprecationReason": null,
|
|
1472
|
-
"description": "Custom Categories
|
|
1589
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
1473
1590
|
"id_str": "wanFirewall___moveRule___rule___rule___application___customCategory",
|
|
1474
1591
|
"isDeprecated": false,
|
|
1475
1592
|
"name": "customCategory",
|
|
@@ -1942,7 +2059,7 @@
|
|
|
1942
2059
|
"alias": "countryRefCountry: country",
|
|
1943
2060
|
"args": {},
|
|
1944
2061
|
"deprecationReason": null,
|
|
1945
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
2062
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1946
2063
|
"id_str": "wanFirewall___moveRule___rule___rule___country",
|
|
1947
2064
|
"isDeprecated": false,
|
|
1948
2065
|
"name": "country",
|
|
@@ -2041,7 +2158,7 @@
|
|
|
2041
2158
|
"alias": "wanFirewallDestinationDestination: destination",
|
|
2042
2159
|
"args": {},
|
|
2043
2160
|
"deprecationReason": null,
|
|
2044
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
2161
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2045
2162
|
"id_str": "wanFirewall___moveRule___rule___rule___destination",
|
|
2046
2163
|
"isDeprecated": false,
|
|
2047
2164
|
"name": "destination",
|
|
@@ -2979,7 +3096,7 @@
|
|
|
2979
3096
|
"alias": "deviceProfileRefDevice: device",
|
|
2980
3097
|
"args": {},
|
|
2981
3098
|
"deprecationReason": null,
|
|
2982
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
3099
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2983
3100
|
"id_str": "wanFirewall___moveRule___rule___rule___device",
|
|
2984
3101
|
"isDeprecated": false,
|
|
2985
3102
|
"name": "device",
|
|
@@ -3229,7 +3346,7 @@
|
|
|
3229
3346
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
3230
3347
|
"args": {},
|
|
3231
3348
|
"deprecationReason": null,
|
|
3232
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
3349
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
3233
3350
|
"id_str": "wanFirewall___moveRule___rule___rule___deviceOS",
|
|
3234
3351
|
"isDeprecated": false,
|
|
3235
3352
|
"name": "deviceOS",
|
|
@@ -3636,7 +3753,7 @@
|
|
|
3636
3753
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
3637
3754
|
"args": {},
|
|
3638
3755
|
"deprecationReason": null,
|
|
3639
|
-
"description": "Custom Categories
|
|
3756
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
3640
3757
|
"id_str": "wanFirewall___moveRule___rule___rule___exceptions___application___customCategory",
|
|
3641
3758
|
"isDeprecated": false,
|
|
3642
3759
|
"name": "customCategory",
|
|
@@ -7238,7 +7355,7 @@
|
|
|
7238
7355
|
"alias": "wanFirewallServiceTypeService: service",
|
|
7239
7356
|
"args": {},
|
|
7240
7357
|
"deprecationReason": null,
|
|
7241
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
7358
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7242
7359
|
"id_str": "wanFirewall___moveRule___rule___rule___service",
|
|
7243
7360
|
"isDeprecated": false,
|
|
7244
7361
|
"name": "service",
|
|
@@ -7547,7 +7664,7 @@
|
|
|
7547
7664
|
"alias": "wanFirewallSourceSource: source",
|
|
7548
7665
|
"args": {},
|
|
7549
7666
|
"deprecationReason": null,
|
|
7550
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
7667
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7551
7668
|
"id_str": "wanFirewall___moveRule___rule___rule___source",
|
|
7552
7669
|
"isDeprecated": false,
|
|
7553
7670
|
"name": "source",
|
|
@@ -8518,7 +8635,7 @@
|
|
|
8518
8635
|
"enabled": {
|
|
8519
8636
|
"args": {},
|
|
8520
8637
|
"deprecationReason": null,
|
|
8521
|
-
"description": "TRUE
|
|
8638
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
8522
8639
|
"id_str": "wanFirewall___moveRule___rule___rule___tracking___alert___enabled",
|
|
8523
8640
|
"isDeprecated": false,
|
|
8524
8641
|
"name": "enabled",
|
|
@@ -819,7 +819,7 @@
|
|
|
819
819
|
"responseStr": "errors:$policyMutationError ",
|
|
820
820
|
"type": {
|
|
821
821
|
"definition": {
|
|
822
|
-
"description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can
|
|
822
|
+
"description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can’t publish policy due to an internal error. Please try again in a few minutes\"\n\n\n## Rule Errors\n\n### `ruleIsLocked`\n- **Error Message:** \"Rule is locked by another revision\"\n\n### `ruleWasRemoved`\n- **Error Message:** \"Rule was already removed\"\n\n### `ruleNotExist`\n- **Error Message:** \"Rule does not exist\"\n\n### `ruleSectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `ruleSectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `rulePositionInvalid`\n- **Error Message:** \"Rule position is invalid\"\n\n### `ruleNameIsEmpty`\n- **Error Message:** \"Rule name can't be empty\"\n\n### `ruleNameAlreadyExists`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `ruleSystemModification`\n- **Error Message:** \"Can't modify a system rule\"\n\n### `ruleSystemMove`\n- **Error Message:** \"Can't add a rule above the system rules\"\n\n### `ruleHasInvalidEntity`\n- **Error Message:** \"Rule has an invalid entity\"\n\n### `failedValidatingRule`\n- **Error Message:** \"Something went wrong, couldn't validate rule\"\n\n\n## Section Errors\n\n### `sectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `sectionSystemMove`\n- **Error Message:** \"Section with system rules cannot be moved or removed\"\n\n### `sectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `sectionPositionInvalid`\n- **Error Message:** \"Section position is invalid\"",
|
|
823
823
|
"enumValues": null,
|
|
824
824
|
"fields": {
|
|
825
825
|
"errorCode": {
|
|
@@ -227,6 +227,7 @@
|
|
|
227
227
|
"PolicyMutationRevisionInput": true,
|
|
228
228
|
"PolicyMutationStatus": true,
|
|
229
229
|
"PolicyRevision": true,
|
|
230
|
+
"PolicyRuleActivePeriod": true,
|
|
230
231
|
"PolicyRuleTrackingAlert": true,
|
|
231
232
|
"PolicyRuleTrackingEvent": true,
|
|
232
233
|
"PolicyRuleTrackingFrequencyEnum": true,
|
|
@@ -623,7 +624,7 @@
|
|
|
623
624
|
"responseStr": "errors:$policyMutationError ",
|
|
624
625
|
"type": {
|
|
625
626
|
"definition": {
|
|
626
|
-
"description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can
|
|
627
|
+
"description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can’t publish policy due to an internal error. Please try again in a few minutes\"\n\n\n## Rule Errors\n\n### `ruleIsLocked`\n- **Error Message:** \"Rule is locked by another revision\"\n\n### `ruleWasRemoved`\n- **Error Message:** \"Rule was already removed\"\n\n### `ruleNotExist`\n- **Error Message:** \"Rule does not exist\"\n\n### `ruleSectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `ruleSectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `rulePositionInvalid`\n- **Error Message:** \"Rule position is invalid\"\n\n### `ruleNameIsEmpty`\n- **Error Message:** \"Rule name can't be empty\"\n\n### `ruleNameAlreadyExists`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `ruleSystemModification`\n- **Error Message:** \"Can't modify a system rule\"\n\n### `ruleSystemMove`\n- **Error Message:** \"Can't add a rule above the system rules\"\n\n### `ruleHasInvalidEntity`\n- **Error Message:** \"Rule has an invalid entity\"\n\n### `failedValidatingRule`\n- **Error Message:** \"Something went wrong, couldn't validate rule\"\n\n\n## Section Errors\n\n### `sectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `sectionSystemMove`\n- **Error Message:** \"Section with system rules cannot be moved or removed\"\n\n### `sectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `sectionPositionInvalid`\n- **Error Message:** \"Section position is invalid\"",
|
|
627
628
|
"enumValues": null,
|
|
628
629
|
"fields": {
|
|
629
630
|
"errorCode": {
|
|
@@ -1194,11 +1195,127 @@
|
|
|
1194
1195
|
},
|
|
1195
1196
|
"varName": "action"
|
|
1196
1197
|
},
|
|
1198
|
+
"activePeriod": {
|
|
1199
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
1200
|
+
"args": {},
|
|
1201
|
+
"deprecationReason": null,
|
|
1202
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
1203
|
+
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___activePeriod",
|
|
1204
|
+
"isDeprecated": false,
|
|
1205
|
+
"name": "activePeriod",
|
|
1206
|
+
"path": "wanFirewall.publishPolicyRevision.policy.rules.rule.activePeriod",
|
|
1207
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
1208
|
+
"required": true,
|
|
1209
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
1210
|
+
"type": {
|
|
1211
|
+
"definition": {
|
|
1212
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
1213
|
+
"enumValues": null,
|
|
1214
|
+
"fields": {
|
|
1215
|
+
"effectiveFrom": {
|
|
1216
|
+
"args": {},
|
|
1217
|
+
"deprecationReason": null,
|
|
1218
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
1219
|
+
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___effectiveFrom",
|
|
1220
|
+
"isDeprecated": false,
|
|
1221
|
+
"name": "effectiveFrom",
|
|
1222
|
+
"path": "wanFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.effectiveFrom",
|
|
1223
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
1224
|
+
"required": false,
|
|
1225
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
1226
|
+
"type": {
|
|
1227
|
+
"kind": [
|
|
1228
|
+
"SCALAR"
|
|
1229
|
+
],
|
|
1230
|
+
"name": "DateTime",
|
|
1231
|
+
"non_null": false
|
|
1232
|
+
},
|
|
1233
|
+
"varName": "effectiveFrom"
|
|
1234
|
+
},
|
|
1235
|
+
"expiresAt": {
|
|
1236
|
+
"args": {},
|
|
1237
|
+
"deprecationReason": null,
|
|
1238
|
+
"description": "The time the rule expires, if not used, default null",
|
|
1239
|
+
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___expiresAt",
|
|
1240
|
+
"isDeprecated": false,
|
|
1241
|
+
"name": "expiresAt",
|
|
1242
|
+
"path": "wanFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.expiresAt",
|
|
1243
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
1244
|
+
"required": false,
|
|
1245
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
1246
|
+
"type": {
|
|
1247
|
+
"kind": [
|
|
1248
|
+
"SCALAR"
|
|
1249
|
+
],
|
|
1250
|
+
"name": "DateTime",
|
|
1251
|
+
"non_null": false
|
|
1252
|
+
},
|
|
1253
|
+
"varName": "expiresAt"
|
|
1254
|
+
},
|
|
1255
|
+
"useEffectiveFrom": {
|
|
1256
|
+
"args": {},
|
|
1257
|
+
"deprecationReason": null,
|
|
1258
|
+
"description": null,
|
|
1259
|
+
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___useEffectiveFrom",
|
|
1260
|
+
"isDeprecated": false,
|
|
1261
|
+
"name": "useEffectiveFrom",
|
|
1262
|
+
"path": "wanFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.useEffectiveFrom",
|
|
1263
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
1264
|
+
"required": true,
|
|
1265
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
1266
|
+
"type": {
|
|
1267
|
+
"kind": [
|
|
1268
|
+
"NON_NULL",
|
|
1269
|
+
"SCALAR"
|
|
1270
|
+
],
|
|
1271
|
+
"name": "Boolean",
|
|
1272
|
+
"non_null": false
|
|
1273
|
+
},
|
|
1274
|
+
"varName": "useEffectiveFrom"
|
|
1275
|
+
},
|
|
1276
|
+
"useExpiresAt": {
|
|
1277
|
+
"args": {},
|
|
1278
|
+
"deprecationReason": null,
|
|
1279
|
+
"description": null,
|
|
1280
|
+
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___useExpiresAt",
|
|
1281
|
+
"isDeprecated": false,
|
|
1282
|
+
"name": "useExpiresAt",
|
|
1283
|
+
"path": "wanFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.useExpiresAt",
|
|
1284
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
1285
|
+
"required": true,
|
|
1286
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
1287
|
+
"type": {
|
|
1288
|
+
"kind": [
|
|
1289
|
+
"NON_NULL",
|
|
1290
|
+
"SCALAR"
|
|
1291
|
+
],
|
|
1292
|
+
"name": "Boolean",
|
|
1293
|
+
"non_null": false
|
|
1294
|
+
},
|
|
1295
|
+
"varName": "useExpiresAt"
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
"inputFields": null,
|
|
1299
|
+
"interfaces": {},
|
|
1300
|
+
"kind": "OBJECT",
|
|
1301
|
+
"name": "PolicyRuleActivePeriod",
|
|
1302
|
+
"possibleTypes": null
|
|
1303
|
+
},
|
|
1304
|
+
"indexType": "object",
|
|
1305
|
+
"kind": [
|
|
1306
|
+
"NON_NULL",
|
|
1307
|
+
"OBJECT"
|
|
1308
|
+
],
|
|
1309
|
+
"name": "PolicyRuleActivePeriod",
|
|
1310
|
+
"non_null": false
|
|
1311
|
+
},
|
|
1312
|
+
"varName": "policyRuleActivePeriod"
|
|
1313
|
+
},
|
|
1197
1314
|
"application": {
|
|
1198
1315
|
"alias": "wanFirewallApplicationApplication: application",
|
|
1199
1316
|
"args": {},
|
|
1200
1317
|
"deprecationReason": null,
|
|
1201
|
-
"description": "Application traffic matching criteria.\nLogical
|
|
1318
|
+
"description": "Application traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1202
1319
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___application",
|
|
1203
1320
|
"isDeprecated": false,
|
|
1204
1321
|
"name": "application",
|
|
@@ -1449,7 +1566,7 @@
|
|
|
1449
1566
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
1450
1567
|
"args": {},
|
|
1451
1568
|
"deprecationReason": null,
|
|
1452
|
-
"description": "Custom Categories
|
|
1569
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
1453
1570
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___application___customCategory",
|
|
1454
1571
|
"isDeprecated": false,
|
|
1455
1572
|
"name": "customCategory",
|
|
@@ -1922,7 +2039,7 @@
|
|
|
1922
2039
|
"alias": "countryRefCountry: country",
|
|
1923
2040
|
"args": {},
|
|
1924
2041
|
"deprecationReason": null,
|
|
1925
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
2042
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1926
2043
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___country",
|
|
1927
2044
|
"isDeprecated": false,
|
|
1928
2045
|
"name": "country",
|
|
@@ -2021,7 +2138,7 @@
|
|
|
2021
2138
|
"alias": "wanFirewallDestinationDestination: destination",
|
|
2022
2139
|
"args": {},
|
|
2023
2140
|
"deprecationReason": null,
|
|
2024
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
2141
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2025
2142
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___destination",
|
|
2026
2143
|
"isDeprecated": false,
|
|
2027
2144
|
"name": "destination",
|
|
@@ -2959,7 +3076,7 @@
|
|
|
2959
3076
|
"alias": "deviceProfileRefDevice: device",
|
|
2960
3077
|
"args": {},
|
|
2961
3078
|
"deprecationReason": null,
|
|
2962
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
3079
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2963
3080
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___device",
|
|
2964
3081
|
"isDeprecated": false,
|
|
2965
3082
|
"name": "device",
|
|
@@ -3209,7 +3326,7 @@
|
|
|
3209
3326
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
3210
3327
|
"args": {},
|
|
3211
3328
|
"deprecationReason": null,
|
|
3212
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
3329
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
3213
3330
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___deviceOS",
|
|
3214
3331
|
"isDeprecated": false,
|
|
3215
3332
|
"name": "deviceOS",
|
|
@@ -3616,7 +3733,7 @@
|
|
|
3616
3733
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
3617
3734
|
"args": {},
|
|
3618
3735
|
"deprecationReason": null,
|
|
3619
|
-
"description": "Custom Categories
|
|
3736
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
3620
3737
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___exceptions___application___customCategory",
|
|
3621
3738
|
"isDeprecated": false,
|
|
3622
3739
|
"name": "customCategory",
|
|
@@ -7218,7 +7335,7 @@
|
|
|
7218
7335
|
"alias": "wanFirewallServiceTypeService: service",
|
|
7219
7336
|
"args": {},
|
|
7220
7337
|
"deprecationReason": null,
|
|
7221
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
7338
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7222
7339
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___service",
|
|
7223
7340
|
"isDeprecated": false,
|
|
7224
7341
|
"name": "service",
|
|
@@ -7527,7 +7644,7 @@
|
|
|
7527
7644
|
"alias": "wanFirewallSourceSource: source",
|
|
7528
7645
|
"args": {},
|
|
7529
7646
|
"deprecationReason": null,
|
|
7530
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
7647
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7531
7648
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___source",
|
|
7532
7649
|
"isDeprecated": false,
|
|
7533
7650
|
"name": "source",
|
|
@@ -8498,7 +8615,7 @@
|
|
|
8498
8615
|
"enabled": {
|
|
8499
8616
|
"args": {},
|
|
8500
8617
|
"deprecationReason": null,
|
|
8501
|
-
"description": "TRUE
|
|
8618
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
8502
8619
|
"id_str": "wanFirewall___publishPolicyRevision___policy___rules___rule___tracking___alert___enabled",
|
|
8503
8620
|
"isDeprecated": false,
|
|
8504
8621
|
"name": "enabled",
|