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
|
@@ -335,6 +335,7 @@
|
|
|
335
335
|
"PolicyMutationError": true,
|
|
336
336
|
"PolicyMutationRevisionInput": true,
|
|
337
337
|
"PolicyMutationStatus": true,
|
|
338
|
+
"PolicyRuleActivePeriod": true,
|
|
338
339
|
"PolicyRulePositionEnum": true,
|
|
339
340
|
"PolicyRulePositionInput": true,
|
|
340
341
|
"PolicyRuleTrackingAlert": true,
|
|
@@ -916,7 +917,7 @@
|
|
|
916
917
|
"responseStr": "errors:$policyMutationError ",
|
|
917
918
|
"type": {
|
|
918
919
|
"definition": {
|
|
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
|
|
920
|
+
"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\"",
|
|
920
921
|
"enumValues": null,
|
|
921
922
|
"fields": {
|
|
922
923
|
"errorCode": {
|
|
@@ -1221,6 +1222,122 @@
|
|
|
1221
1222
|
},
|
|
1222
1223
|
"varName": "action"
|
|
1223
1224
|
},
|
|
1225
|
+
"activePeriod": {
|
|
1226
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
1227
|
+
"args": {},
|
|
1228
|
+
"deprecationReason": null,
|
|
1229
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
1230
|
+
"id_str": "internetFirewall___moveRule___rule___rule___activePeriod",
|
|
1231
|
+
"isDeprecated": false,
|
|
1232
|
+
"name": "activePeriod",
|
|
1233
|
+
"path": "internetFirewall.moveRule.rule.rule.activePeriod",
|
|
1234
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
1235
|
+
"required": true,
|
|
1236
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
1237
|
+
"type": {
|
|
1238
|
+
"definition": {
|
|
1239
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
1240
|
+
"enumValues": null,
|
|
1241
|
+
"fields": {
|
|
1242
|
+
"effectiveFrom": {
|
|
1243
|
+
"args": {},
|
|
1244
|
+
"deprecationReason": null,
|
|
1245
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
1246
|
+
"id_str": "internetFirewall___moveRule___rule___rule___activePeriod___effectiveFrom",
|
|
1247
|
+
"isDeprecated": false,
|
|
1248
|
+
"name": "effectiveFrom",
|
|
1249
|
+
"path": "internetFirewall.moveRule.rule.rule.activePeriod.effectiveFrom",
|
|
1250
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
1251
|
+
"required": false,
|
|
1252
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
1253
|
+
"type": {
|
|
1254
|
+
"kind": [
|
|
1255
|
+
"SCALAR"
|
|
1256
|
+
],
|
|
1257
|
+
"name": "DateTime",
|
|
1258
|
+
"non_null": false
|
|
1259
|
+
},
|
|
1260
|
+
"varName": "effectiveFrom"
|
|
1261
|
+
},
|
|
1262
|
+
"expiresAt": {
|
|
1263
|
+
"args": {},
|
|
1264
|
+
"deprecationReason": null,
|
|
1265
|
+
"description": "The time the rule expires, if not used, default null",
|
|
1266
|
+
"id_str": "internetFirewall___moveRule___rule___rule___activePeriod___expiresAt",
|
|
1267
|
+
"isDeprecated": false,
|
|
1268
|
+
"name": "expiresAt",
|
|
1269
|
+
"path": "internetFirewall.moveRule.rule.rule.activePeriod.expiresAt",
|
|
1270
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
1271
|
+
"required": false,
|
|
1272
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
1273
|
+
"type": {
|
|
1274
|
+
"kind": [
|
|
1275
|
+
"SCALAR"
|
|
1276
|
+
],
|
|
1277
|
+
"name": "DateTime",
|
|
1278
|
+
"non_null": false
|
|
1279
|
+
},
|
|
1280
|
+
"varName": "expiresAt"
|
|
1281
|
+
},
|
|
1282
|
+
"useEffectiveFrom": {
|
|
1283
|
+
"args": {},
|
|
1284
|
+
"deprecationReason": null,
|
|
1285
|
+
"description": null,
|
|
1286
|
+
"id_str": "internetFirewall___moveRule___rule___rule___activePeriod___useEffectiveFrom",
|
|
1287
|
+
"isDeprecated": false,
|
|
1288
|
+
"name": "useEffectiveFrom",
|
|
1289
|
+
"path": "internetFirewall.moveRule.rule.rule.activePeriod.useEffectiveFrom",
|
|
1290
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
1291
|
+
"required": true,
|
|
1292
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
1293
|
+
"type": {
|
|
1294
|
+
"kind": [
|
|
1295
|
+
"NON_NULL",
|
|
1296
|
+
"SCALAR"
|
|
1297
|
+
],
|
|
1298
|
+
"name": "Boolean",
|
|
1299
|
+
"non_null": false
|
|
1300
|
+
},
|
|
1301
|
+
"varName": "useEffectiveFrom"
|
|
1302
|
+
},
|
|
1303
|
+
"useExpiresAt": {
|
|
1304
|
+
"args": {},
|
|
1305
|
+
"deprecationReason": null,
|
|
1306
|
+
"description": null,
|
|
1307
|
+
"id_str": "internetFirewall___moveRule___rule___rule___activePeriod___useExpiresAt",
|
|
1308
|
+
"isDeprecated": false,
|
|
1309
|
+
"name": "useExpiresAt",
|
|
1310
|
+
"path": "internetFirewall.moveRule.rule.rule.activePeriod.useExpiresAt",
|
|
1311
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
1312
|
+
"required": true,
|
|
1313
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
1314
|
+
"type": {
|
|
1315
|
+
"kind": [
|
|
1316
|
+
"NON_NULL",
|
|
1317
|
+
"SCALAR"
|
|
1318
|
+
],
|
|
1319
|
+
"name": "Boolean",
|
|
1320
|
+
"non_null": false
|
|
1321
|
+
},
|
|
1322
|
+
"varName": "useExpiresAt"
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"inputFields": null,
|
|
1326
|
+
"interfaces": {},
|
|
1327
|
+
"kind": "OBJECT",
|
|
1328
|
+
"name": "PolicyRuleActivePeriod",
|
|
1329
|
+
"possibleTypes": null
|
|
1330
|
+
},
|
|
1331
|
+
"indexType": "object",
|
|
1332
|
+
"kind": [
|
|
1333
|
+
"NON_NULL",
|
|
1334
|
+
"OBJECT"
|
|
1335
|
+
],
|
|
1336
|
+
"name": "PolicyRuleActivePeriod",
|
|
1337
|
+
"non_null": false
|
|
1338
|
+
},
|
|
1339
|
+
"varName": "policyRuleActivePeriod"
|
|
1340
|
+
},
|
|
1224
1341
|
"connectionOrigin": {
|
|
1225
1342
|
"alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
|
|
1226
1343
|
"args": {},
|
|
@@ -1277,7 +1394,7 @@
|
|
|
1277
1394
|
"alias": "countryRefCountry: country",
|
|
1278
1395
|
"args": {},
|
|
1279
1396
|
"deprecationReason": null,
|
|
1280
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
1397
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1281
1398
|
"id_str": "internetFirewall___moveRule___rule___rule___country",
|
|
1282
1399
|
"isDeprecated": false,
|
|
1283
1400
|
"name": "country",
|
|
@@ -1376,7 +1493,7 @@
|
|
|
1376
1493
|
"alias": "internetFirewallDestinationDestination: destination",
|
|
1377
1494
|
"args": {},
|
|
1378
1495
|
"deprecationReason": null,
|
|
1379
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
1496
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1380
1497
|
"id_str": "internetFirewall___moveRule___rule___rule___destination",
|
|
1381
1498
|
"isDeprecated": false,
|
|
1382
1499
|
"name": "destination",
|
|
@@ -1895,7 +2012,7 @@
|
|
|
1895
2012
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
1896
2013
|
"args": {},
|
|
1897
2014
|
"deprecationReason": null,
|
|
1898
|
-
"description": "Custom Categories
|
|
2015
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
1899
2016
|
"id_str": "internetFirewall___moveRule___rule___rule___destination___customCategory",
|
|
1900
2017
|
"isDeprecated": false,
|
|
1901
2018
|
"name": "customCategory",
|
|
@@ -2339,7 +2456,7 @@
|
|
|
2339
2456
|
"alias": "deviceProfileRefDevice: device",
|
|
2340
2457
|
"args": {},
|
|
2341
2458
|
"deprecationReason": null,
|
|
2342
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
2459
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2343
2460
|
"id_str": "internetFirewall___moveRule___rule___rule___device",
|
|
2344
2461
|
"isDeprecated": false,
|
|
2345
2462
|
"name": "device",
|
|
@@ -2589,7 +2706,7 @@
|
|
|
2589
2706
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
2590
2707
|
"args": {},
|
|
2591
2708
|
"deprecationReason": null,
|
|
2592
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
2709
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2593
2710
|
"id_str": "internetFirewall___moveRule___rule___rule___deviceOS",
|
|
2594
2711
|
"isDeprecated": false,
|
|
2595
2712
|
"name": "deviceOS",
|
|
@@ -3348,7 +3465,7 @@
|
|
|
3348
3465
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
3349
3466
|
"args": {},
|
|
3350
3467
|
"deprecationReason": null,
|
|
3351
|
-
"description": "Custom Categories
|
|
3468
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
3352
3469
|
"id_str": "internetFirewall___moveRule___rule___rule___exceptions___destination___customCategory",
|
|
3353
3470
|
"isDeprecated": false,
|
|
3354
3471
|
"name": "customCategory",
|
|
@@ -5859,7 +5976,7 @@
|
|
|
5859
5976
|
"alias": "internetFirewallServiceTypeService: service",
|
|
5860
5977
|
"args": {},
|
|
5861
5978
|
"deprecationReason": null,
|
|
5862
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
5979
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5863
5980
|
"id_str": "internetFirewall___moveRule___rule___rule___service",
|
|
5864
5981
|
"isDeprecated": false,
|
|
5865
5982
|
"name": "service",
|
|
@@ -6168,7 +6285,7 @@
|
|
|
6168
6285
|
"alias": "internetFirewallSourceSource: source",
|
|
6169
6286
|
"args": {},
|
|
6170
6287
|
"deprecationReason": null,
|
|
6171
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
6288
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
6172
6289
|
"id_str": "internetFirewall___moveRule___rule___rule___source",
|
|
6173
6290
|
"isDeprecated": false,
|
|
6174
6291
|
"name": "source",
|
|
@@ -7139,7 +7256,7 @@
|
|
|
7139
7256
|
"enabled": {
|
|
7140
7257
|
"args": {},
|
|
7141
7258
|
"deprecationReason": null,
|
|
7142
|
-
"description": "TRUE
|
|
7259
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
7143
7260
|
"id_str": "internetFirewall___moveRule___rule___rule___tracking___alert___enabled",
|
|
7144
7261
|
"isDeprecated": false,
|
|
7145
7262
|
"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": {
|
|
@@ -240,6 +240,7 @@
|
|
|
240
240
|
"PolicyMutationRevisionInput": true,
|
|
241
241
|
"PolicyMutationStatus": true,
|
|
242
242
|
"PolicyRevision": true,
|
|
243
|
+
"PolicyRuleActivePeriod": true,
|
|
243
244
|
"PolicyRuleTrackingAlert": true,
|
|
244
245
|
"PolicyRuleTrackingEvent": true,
|
|
245
246
|
"PolicyRuleTrackingFrequencyEnum": true,
|
|
@@ -624,7 +625,7 @@
|
|
|
624
625
|
"responseStr": "errors:$policyMutationError ",
|
|
625
626
|
"type": {
|
|
626
627
|
"definition": {
|
|
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
|
|
628
|
+
"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\"",
|
|
628
629
|
"enumValues": null,
|
|
629
630
|
"fields": {
|
|
630
631
|
"errorCode": {
|
|
@@ -1201,6 +1202,122 @@
|
|
|
1201
1202
|
},
|
|
1202
1203
|
"varName": "action"
|
|
1203
1204
|
},
|
|
1205
|
+
"activePeriod": {
|
|
1206
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
1207
|
+
"args": {},
|
|
1208
|
+
"deprecationReason": null,
|
|
1209
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
1210
|
+
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___activePeriod",
|
|
1211
|
+
"isDeprecated": false,
|
|
1212
|
+
"name": "activePeriod",
|
|
1213
|
+
"path": "internetFirewall.publishPolicyRevision.policy.rules.rule.activePeriod",
|
|
1214
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
1215
|
+
"required": true,
|
|
1216
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
1217
|
+
"type": {
|
|
1218
|
+
"definition": {
|
|
1219
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
1220
|
+
"enumValues": null,
|
|
1221
|
+
"fields": {
|
|
1222
|
+
"effectiveFrom": {
|
|
1223
|
+
"args": {},
|
|
1224
|
+
"deprecationReason": null,
|
|
1225
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
1226
|
+
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___effectiveFrom",
|
|
1227
|
+
"isDeprecated": false,
|
|
1228
|
+
"name": "effectiveFrom",
|
|
1229
|
+
"path": "internetFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.effectiveFrom",
|
|
1230
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
1231
|
+
"required": false,
|
|
1232
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
1233
|
+
"type": {
|
|
1234
|
+
"kind": [
|
|
1235
|
+
"SCALAR"
|
|
1236
|
+
],
|
|
1237
|
+
"name": "DateTime",
|
|
1238
|
+
"non_null": false
|
|
1239
|
+
},
|
|
1240
|
+
"varName": "effectiveFrom"
|
|
1241
|
+
},
|
|
1242
|
+
"expiresAt": {
|
|
1243
|
+
"args": {},
|
|
1244
|
+
"deprecationReason": null,
|
|
1245
|
+
"description": "The time the rule expires, if not used, default null",
|
|
1246
|
+
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___expiresAt",
|
|
1247
|
+
"isDeprecated": false,
|
|
1248
|
+
"name": "expiresAt",
|
|
1249
|
+
"path": "internetFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.expiresAt",
|
|
1250
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
1251
|
+
"required": false,
|
|
1252
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
1253
|
+
"type": {
|
|
1254
|
+
"kind": [
|
|
1255
|
+
"SCALAR"
|
|
1256
|
+
],
|
|
1257
|
+
"name": "DateTime",
|
|
1258
|
+
"non_null": false
|
|
1259
|
+
},
|
|
1260
|
+
"varName": "expiresAt"
|
|
1261
|
+
},
|
|
1262
|
+
"useEffectiveFrom": {
|
|
1263
|
+
"args": {},
|
|
1264
|
+
"deprecationReason": null,
|
|
1265
|
+
"description": null,
|
|
1266
|
+
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___useEffectiveFrom",
|
|
1267
|
+
"isDeprecated": false,
|
|
1268
|
+
"name": "useEffectiveFrom",
|
|
1269
|
+
"path": "internetFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.useEffectiveFrom",
|
|
1270
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
1271
|
+
"required": true,
|
|
1272
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
1273
|
+
"type": {
|
|
1274
|
+
"kind": [
|
|
1275
|
+
"NON_NULL",
|
|
1276
|
+
"SCALAR"
|
|
1277
|
+
],
|
|
1278
|
+
"name": "Boolean",
|
|
1279
|
+
"non_null": false
|
|
1280
|
+
},
|
|
1281
|
+
"varName": "useEffectiveFrom"
|
|
1282
|
+
},
|
|
1283
|
+
"useExpiresAt": {
|
|
1284
|
+
"args": {},
|
|
1285
|
+
"deprecationReason": null,
|
|
1286
|
+
"description": null,
|
|
1287
|
+
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___activePeriod___useExpiresAt",
|
|
1288
|
+
"isDeprecated": false,
|
|
1289
|
+
"name": "useExpiresAt",
|
|
1290
|
+
"path": "internetFirewall.publishPolicyRevision.policy.rules.rule.activePeriod.useExpiresAt",
|
|
1291
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
1292
|
+
"required": true,
|
|
1293
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
1294
|
+
"type": {
|
|
1295
|
+
"kind": [
|
|
1296
|
+
"NON_NULL",
|
|
1297
|
+
"SCALAR"
|
|
1298
|
+
],
|
|
1299
|
+
"name": "Boolean",
|
|
1300
|
+
"non_null": false
|
|
1301
|
+
},
|
|
1302
|
+
"varName": "useExpiresAt"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"inputFields": null,
|
|
1306
|
+
"interfaces": {},
|
|
1307
|
+
"kind": "OBJECT",
|
|
1308
|
+
"name": "PolicyRuleActivePeriod",
|
|
1309
|
+
"possibleTypes": null
|
|
1310
|
+
},
|
|
1311
|
+
"indexType": "object",
|
|
1312
|
+
"kind": [
|
|
1313
|
+
"NON_NULL",
|
|
1314
|
+
"OBJECT"
|
|
1315
|
+
],
|
|
1316
|
+
"name": "PolicyRuleActivePeriod",
|
|
1317
|
+
"non_null": false
|
|
1318
|
+
},
|
|
1319
|
+
"varName": "policyRuleActivePeriod"
|
|
1320
|
+
},
|
|
1204
1321
|
"connectionOrigin": {
|
|
1205
1322
|
"alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
|
|
1206
1323
|
"args": {},
|
|
@@ -1257,7 +1374,7 @@
|
|
|
1257
1374
|
"alias": "countryRefCountry: country",
|
|
1258
1375
|
"args": {},
|
|
1259
1376
|
"deprecationReason": null,
|
|
1260
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
1377
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1261
1378
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___country",
|
|
1262
1379
|
"isDeprecated": false,
|
|
1263
1380
|
"name": "country",
|
|
@@ -1356,7 +1473,7 @@
|
|
|
1356
1473
|
"alias": "internetFirewallDestinationDestination: destination",
|
|
1357
1474
|
"args": {},
|
|
1358
1475
|
"deprecationReason": null,
|
|
1359
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
1476
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1360
1477
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___destination",
|
|
1361
1478
|
"isDeprecated": false,
|
|
1362
1479
|
"name": "destination",
|
|
@@ -1875,7 +1992,7 @@
|
|
|
1875
1992
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
1876
1993
|
"args": {},
|
|
1877
1994
|
"deprecationReason": null,
|
|
1878
|
-
"description": "Custom Categories
|
|
1995
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
1879
1996
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___destination___customCategory",
|
|
1880
1997
|
"isDeprecated": false,
|
|
1881
1998
|
"name": "customCategory",
|
|
@@ -2319,7 +2436,7 @@
|
|
|
2319
2436
|
"alias": "deviceProfileRefDevice: device",
|
|
2320
2437
|
"args": {},
|
|
2321
2438
|
"deprecationReason": null,
|
|
2322
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
2439
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2323
2440
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___device",
|
|
2324
2441
|
"isDeprecated": false,
|
|
2325
2442
|
"name": "device",
|
|
@@ -2569,7 +2686,7 @@
|
|
|
2569
2686
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
2570
2687
|
"args": {},
|
|
2571
2688
|
"deprecationReason": null,
|
|
2572
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
2689
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2573
2690
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___deviceOS",
|
|
2574
2691
|
"isDeprecated": false,
|
|
2575
2692
|
"name": "deviceOS",
|
|
@@ -3328,7 +3445,7 @@
|
|
|
3328
3445
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
3329
3446
|
"args": {},
|
|
3330
3447
|
"deprecationReason": null,
|
|
3331
|
-
"description": "Custom Categories
|
|
3448
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
3332
3449
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___exceptions___destination___customCategory",
|
|
3333
3450
|
"isDeprecated": false,
|
|
3334
3451
|
"name": "customCategory",
|
|
@@ -5839,7 +5956,7 @@
|
|
|
5839
5956
|
"alias": "internetFirewallServiceTypeService: service",
|
|
5840
5957
|
"args": {},
|
|
5841
5958
|
"deprecationReason": null,
|
|
5842
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
5959
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5843
5960
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___service",
|
|
5844
5961
|
"isDeprecated": false,
|
|
5845
5962
|
"name": "service",
|
|
@@ -6148,7 +6265,7 @@
|
|
|
6148
6265
|
"alias": "internetFirewallSourceSource: source",
|
|
6149
6266
|
"args": {},
|
|
6150
6267
|
"deprecationReason": null,
|
|
6151
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
6268
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
6152
6269
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___source",
|
|
6153
6270
|
"isDeprecated": false,
|
|
6154
6271
|
"name": "source",
|
|
@@ -7119,7 +7236,7 @@
|
|
|
7119
7236
|
"enabled": {
|
|
7120
7237
|
"args": {},
|
|
7121
7238
|
"deprecationReason": null,
|
|
7122
|
-
"description": "TRUE
|
|
7239
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
7123
7240
|
"id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___tracking___alert___enabled",
|
|
7124
7241
|
"isDeprecated": false,
|
|
7125
7242
|
"name": "enabled",
|