catocli 2.0.3__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_rules/__init__.py +2 -0
- catocli/parsers/custom/export_rules/export_rules.py +29 -5
- catocli/parsers/custom/export_sites/__init__.py +1 -0
- catocli/parsers/custom/export_sites/export_sites.py +10 -3
- 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 +183 -7
- 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-2.0.3.dist-info → catocli-2.0.5.dist-info}/METADATA +1 -1
- {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/RECORD +291 -121
- {catocli-2.0.3.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.3.dist-info → catocli-2.0.5.dist-info}/LICENSE +0 -0
- {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/WHEEL +0 -0
- {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/entry_points.txt +0 -0
|
@@ -221,6 +221,7 @@
|
|
|
221
221
|
"PolicyMutationError": true,
|
|
222
222
|
"PolicyMutationRevisionInput": true,
|
|
223
223
|
"PolicyMutationStatus": true,
|
|
224
|
+
"PolicyRuleActivePeriod": true,
|
|
224
225
|
"PolicyRuleTrackingAlert": true,
|
|
225
226
|
"PolicyRuleTrackingEvent": true,
|
|
226
227
|
"PolicyRuleTrackingFrequencyEnum": true,
|
|
@@ -572,7 +573,7 @@
|
|
|
572
573
|
"responseStr": "errors:$policyMutationError ",
|
|
573
574
|
"type": {
|
|
574
575
|
"definition": {
|
|
575
|
-
"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
|
|
576
|
+
"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\"",
|
|
576
577
|
"enumValues": null,
|
|
577
578
|
"fields": {
|
|
578
579
|
"errorCode": {
|
|
@@ -877,6 +878,122 @@
|
|
|
877
878
|
},
|
|
878
879
|
"varName": "action"
|
|
879
880
|
},
|
|
881
|
+
"activePeriod": {
|
|
882
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
883
|
+
"args": {},
|
|
884
|
+
"deprecationReason": null,
|
|
885
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
886
|
+
"id_str": "internetFirewall___removeRule___rule___rule___activePeriod",
|
|
887
|
+
"isDeprecated": false,
|
|
888
|
+
"name": "activePeriod",
|
|
889
|
+
"path": "internetFirewall.removeRule.rule.rule.activePeriod",
|
|
890
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
891
|
+
"required": true,
|
|
892
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
893
|
+
"type": {
|
|
894
|
+
"definition": {
|
|
895
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
896
|
+
"enumValues": null,
|
|
897
|
+
"fields": {
|
|
898
|
+
"effectiveFrom": {
|
|
899
|
+
"args": {},
|
|
900
|
+
"deprecationReason": null,
|
|
901
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
902
|
+
"id_str": "internetFirewall___removeRule___rule___rule___activePeriod___effectiveFrom",
|
|
903
|
+
"isDeprecated": false,
|
|
904
|
+
"name": "effectiveFrom",
|
|
905
|
+
"path": "internetFirewall.removeRule.rule.rule.activePeriod.effectiveFrom",
|
|
906
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
907
|
+
"required": false,
|
|
908
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
909
|
+
"type": {
|
|
910
|
+
"kind": [
|
|
911
|
+
"SCALAR"
|
|
912
|
+
],
|
|
913
|
+
"name": "DateTime",
|
|
914
|
+
"non_null": false
|
|
915
|
+
},
|
|
916
|
+
"varName": "effectiveFrom"
|
|
917
|
+
},
|
|
918
|
+
"expiresAt": {
|
|
919
|
+
"args": {},
|
|
920
|
+
"deprecationReason": null,
|
|
921
|
+
"description": "The time the rule expires, if not used, default null",
|
|
922
|
+
"id_str": "internetFirewall___removeRule___rule___rule___activePeriod___expiresAt",
|
|
923
|
+
"isDeprecated": false,
|
|
924
|
+
"name": "expiresAt",
|
|
925
|
+
"path": "internetFirewall.removeRule.rule.rule.activePeriod.expiresAt",
|
|
926
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
927
|
+
"required": false,
|
|
928
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
929
|
+
"type": {
|
|
930
|
+
"kind": [
|
|
931
|
+
"SCALAR"
|
|
932
|
+
],
|
|
933
|
+
"name": "DateTime",
|
|
934
|
+
"non_null": false
|
|
935
|
+
},
|
|
936
|
+
"varName": "expiresAt"
|
|
937
|
+
},
|
|
938
|
+
"useEffectiveFrom": {
|
|
939
|
+
"args": {},
|
|
940
|
+
"deprecationReason": null,
|
|
941
|
+
"description": null,
|
|
942
|
+
"id_str": "internetFirewall___removeRule___rule___rule___activePeriod___useEffectiveFrom",
|
|
943
|
+
"isDeprecated": false,
|
|
944
|
+
"name": "useEffectiveFrom",
|
|
945
|
+
"path": "internetFirewall.removeRule.rule.rule.activePeriod.useEffectiveFrom",
|
|
946
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
947
|
+
"required": true,
|
|
948
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
949
|
+
"type": {
|
|
950
|
+
"kind": [
|
|
951
|
+
"NON_NULL",
|
|
952
|
+
"SCALAR"
|
|
953
|
+
],
|
|
954
|
+
"name": "Boolean",
|
|
955
|
+
"non_null": false
|
|
956
|
+
},
|
|
957
|
+
"varName": "useEffectiveFrom"
|
|
958
|
+
},
|
|
959
|
+
"useExpiresAt": {
|
|
960
|
+
"args": {},
|
|
961
|
+
"deprecationReason": null,
|
|
962
|
+
"description": null,
|
|
963
|
+
"id_str": "internetFirewall___removeRule___rule___rule___activePeriod___useExpiresAt",
|
|
964
|
+
"isDeprecated": false,
|
|
965
|
+
"name": "useExpiresAt",
|
|
966
|
+
"path": "internetFirewall.removeRule.rule.rule.activePeriod.useExpiresAt",
|
|
967
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
968
|
+
"required": true,
|
|
969
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
970
|
+
"type": {
|
|
971
|
+
"kind": [
|
|
972
|
+
"NON_NULL",
|
|
973
|
+
"SCALAR"
|
|
974
|
+
],
|
|
975
|
+
"name": "Boolean",
|
|
976
|
+
"non_null": false
|
|
977
|
+
},
|
|
978
|
+
"varName": "useExpiresAt"
|
|
979
|
+
}
|
|
980
|
+
},
|
|
981
|
+
"inputFields": null,
|
|
982
|
+
"interfaces": {},
|
|
983
|
+
"kind": "OBJECT",
|
|
984
|
+
"name": "PolicyRuleActivePeriod",
|
|
985
|
+
"possibleTypes": null
|
|
986
|
+
},
|
|
987
|
+
"indexType": "object",
|
|
988
|
+
"kind": [
|
|
989
|
+
"NON_NULL",
|
|
990
|
+
"OBJECT"
|
|
991
|
+
],
|
|
992
|
+
"name": "PolicyRuleActivePeriod",
|
|
993
|
+
"non_null": false
|
|
994
|
+
},
|
|
995
|
+
"varName": "policyRuleActivePeriod"
|
|
996
|
+
},
|
|
880
997
|
"connectionOrigin": {
|
|
881
998
|
"alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
|
|
882
999
|
"args": {},
|
|
@@ -933,7 +1050,7 @@
|
|
|
933
1050
|
"alias": "countryRefCountry: country",
|
|
934
1051
|
"args": {},
|
|
935
1052
|
"deprecationReason": null,
|
|
936
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
1053
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
937
1054
|
"id_str": "internetFirewall___removeRule___rule___rule___country",
|
|
938
1055
|
"isDeprecated": false,
|
|
939
1056
|
"name": "country",
|
|
@@ -1032,7 +1149,7 @@
|
|
|
1032
1149
|
"alias": "internetFirewallDestinationDestination: destination",
|
|
1033
1150
|
"args": {},
|
|
1034
1151
|
"deprecationReason": null,
|
|
1035
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
1152
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1036
1153
|
"id_str": "internetFirewall___removeRule___rule___rule___destination",
|
|
1037
1154
|
"isDeprecated": false,
|
|
1038
1155
|
"name": "destination",
|
|
@@ -1551,7 +1668,7 @@
|
|
|
1551
1668
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
1552
1669
|
"args": {},
|
|
1553
1670
|
"deprecationReason": null,
|
|
1554
|
-
"description": "Custom Categories
|
|
1671
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
1555
1672
|
"id_str": "internetFirewall___removeRule___rule___rule___destination___customCategory",
|
|
1556
1673
|
"isDeprecated": false,
|
|
1557
1674
|
"name": "customCategory",
|
|
@@ -1995,7 +2112,7 @@
|
|
|
1995
2112
|
"alias": "deviceProfileRefDevice: device",
|
|
1996
2113
|
"args": {},
|
|
1997
2114
|
"deprecationReason": null,
|
|
1998
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
2115
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1999
2116
|
"id_str": "internetFirewall___removeRule___rule___rule___device",
|
|
2000
2117
|
"isDeprecated": false,
|
|
2001
2118
|
"name": "device",
|
|
@@ -2245,7 +2362,7 @@
|
|
|
2245
2362
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
2246
2363
|
"args": {},
|
|
2247
2364
|
"deprecationReason": null,
|
|
2248
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
2365
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2249
2366
|
"id_str": "internetFirewall___removeRule___rule___rule___deviceOS",
|
|
2250
2367
|
"isDeprecated": false,
|
|
2251
2368
|
"name": "deviceOS",
|
|
@@ -3004,7 +3121,7 @@
|
|
|
3004
3121
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
3005
3122
|
"args": {},
|
|
3006
3123
|
"deprecationReason": null,
|
|
3007
|
-
"description": "Custom Categories
|
|
3124
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
3008
3125
|
"id_str": "internetFirewall___removeRule___rule___rule___exceptions___destination___customCategory",
|
|
3009
3126
|
"isDeprecated": false,
|
|
3010
3127
|
"name": "customCategory",
|
|
@@ -5515,7 +5632,7 @@
|
|
|
5515
5632
|
"alias": "internetFirewallServiceTypeService: service",
|
|
5516
5633
|
"args": {},
|
|
5517
5634
|
"deprecationReason": null,
|
|
5518
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
5635
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5519
5636
|
"id_str": "internetFirewall___removeRule___rule___rule___service",
|
|
5520
5637
|
"isDeprecated": false,
|
|
5521
5638
|
"name": "service",
|
|
@@ -5824,7 +5941,7 @@
|
|
|
5824
5941
|
"alias": "internetFirewallSourceSource: source",
|
|
5825
5942
|
"args": {},
|
|
5826
5943
|
"deprecationReason": null,
|
|
5827
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
5944
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5828
5945
|
"id_str": "internetFirewall___removeRule___rule___rule___source",
|
|
5829
5946
|
"isDeprecated": false,
|
|
5830
5947
|
"name": "source",
|
|
@@ -6795,7 +6912,7 @@
|
|
|
6795
6912
|
"enabled": {
|
|
6796
6913
|
"args": {},
|
|
6797
6914
|
"deprecationReason": null,
|
|
6798
|
-
"description": "TRUE
|
|
6915
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
6799
6916
|
"id_str": "internetFirewall___removeRule___rule___rule___tracking___alert___enabled",
|
|
6800
6917
|
"isDeprecated": false,
|
|
6801
6918
|
"name": "enabled",
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
"responseStr": "errors:$policyMutationError ",
|
|
527
527
|
"type": {
|
|
528
528
|
"definition": {
|
|
529
|
-
"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
|
|
529
|
+
"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\"",
|
|
530
530
|
"enumValues": null,
|
|
531
531
|
"fields": {
|
|
532
532
|
"errorCode": {
|
|
@@ -247,6 +247,7 @@
|
|
|
247
247
|
"PolicyMutationRevisionInput": true,
|
|
248
248
|
"PolicyMutationStatus": true,
|
|
249
249
|
"PolicyRevision": true,
|
|
250
|
+
"PolicyRuleActivePeriod": true,
|
|
250
251
|
"PolicyRuleTrackingAlert": true,
|
|
251
252
|
"PolicyRuleTrackingEvent": true,
|
|
252
253
|
"PolicyRuleTrackingFrequencyEnum": true,
|
|
@@ -646,7 +647,7 @@
|
|
|
646
647
|
"responseStr": "errors:$policyMutationError ",
|
|
647
648
|
"type": {
|
|
648
649
|
"definition": {
|
|
649
|
-
"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
|
|
650
|
+
"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\"",
|
|
650
651
|
"enumValues": null,
|
|
651
652
|
"fields": {
|
|
652
653
|
"errorCode": {
|
|
@@ -1223,6 +1224,122 @@
|
|
|
1223
1224
|
},
|
|
1224
1225
|
"varName": "action"
|
|
1225
1226
|
},
|
|
1227
|
+
"activePeriod": {
|
|
1228
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
1229
|
+
"args": {},
|
|
1230
|
+
"deprecationReason": null,
|
|
1231
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
1232
|
+
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod",
|
|
1233
|
+
"isDeprecated": false,
|
|
1234
|
+
"name": "activePeriod",
|
|
1235
|
+
"path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod",
|
|
1236
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
1237
|
+
"required": true,
|
|
1238
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
1239
|
+
"type": {
|
|
1240
|
+
"definition": {
|
|
1241
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
1242
|
+
"enumValues": null,
|
|
1243
|
+
"fields": {
|
|
1244
|
+
"effectiveFrom": {
|
|
1245
|
+
"args": {},
|
|
1246
|
+
"deprecationReason": null,
|
|
1247
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
1248
|
+
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___effectiveFrom",
|
|
1249
|
+
"isDeprecated": false,
|
|
1250
|
+
"name": "effectiveFrom",
|
|
1251
|
+
"path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.effectiveFrom",
|
|
1252
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
1253
|
+
"required": false,
|
|
1254
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
1255
|
+
"type": {
|
|
1256
|
+
"kind": [
|
|
1257
|
+
"SCALAR"
|
|
1258
|
+
],
|
|
1259
|
+
"name": "DateTime",
|
|
1260
|
+
"non_null": false
|
|
1261
|
+
},
|
|
1262
|
+
"varName": "effectiveFrom"
|
|
1263
|
+
},
|
|
1264
|
+
"expiresAt": {
|
|
1265
|
+
"args": {},
|
|
1266
|
+
"deprecationReason": null,
|
|
1267
|
+
"description": "The time the rule expires, if not used, default null",
|
|
1268
|
+
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___expiresAt",
|
|
1269
|
+
"isDeprecated": false,
|
|
1270
|
+
"name": "expiresAt",
|
|
1271
|
+
"path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.expiresAt",
|
|
1272
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
1273
|
+
"required": false,
|
|
1274
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
1275
|
+
"type": {
|
|
1276
|
+
"kind": [
|
|
1277
|
+
"SCALAR"
|
|
1278
|
+
],
|
|
1279
|
+
"name": "DateTime",
|
|
1280
|
+
"non_null": false
|
|
1281
|
+
},
|
|
1282
|
+
"varName": "expiresAt"
|
|
1283
|
+
},
|
|
1284
|
+
"useEffectiveFrom": {
|
|
1285
|
+
"args": {},
|
|
1286
|
+
"deprecationReason": null,
|
|
1287
|
+
"description": null,
|
|
1288
|
+
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___useEffectiveFrom",
|
|
1289
|
+
"isDeprecated": false,
|
|
1290
|
+
"name": "useEffectiveFrom",
|
|
1291
|
+
"path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.useEffectiveFrom",
|
|
1292
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
1293
|
+
"required": true,
|
|
1294
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
1295
|
+
"type": {
|
|
1296
|
+
"kind": [
|
|
1297
|
+
"NON_NULL",
|
|
1298
|
+
"SCALAR"
|
|
1299
|
+
],
|
|
1300
|
+
"name": "Boolean",
|
|
1301
|
+
"non_null": false
|
|
1302
|
+
},
|
|
1303
|
+
"varName": "useEffectiveFrom"
|
|
1304
|
+
},
|
|
1305
|
+
"useExpiresAt": {
|
|
1306
|
+
"args": {},
|
|
1307
|
+
"deprecationReason": null,
|
|
1308
|
+
"description": null,
|
|
1309
|
+
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___useExpiresAt",
|
|
1310
|
+
"isDeprecated": false,
|
|
1311
|
+
"name": "useExpiresAt",
|
|
1312
|
+
"path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.useExpiresAt",
|
|
1313
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
1314
|
+
"required": true,
|
|
1315
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
1316
|
+
"type": {
|
|
1317
|
+
"kind": [
|
|
1318
|
+
"NON_NULL",
|
|
1319
|
+
"SCALAR"
|
|
1320
|
+
],
|
|
1321
|
+
"name": "Boolean",
|
|
1322
|
+
"non_null": false
|
|
1323
|
+
},
|
|
1324
|
+
"varName": "useExpiresAt"
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
"inputFields": null,
|
|
1328
|
+
"interfaces": {},
|
|
1329
|
+
"kind": "OBJECT",
|
|
1330
|
+
"name": "PolicyRuleActivePeriod",
|
|
1331
|
+
"possibleTypes": null
|
|
1332
|
+
},
|
|
1333
|
+
"indexType": "object",
|
|
1334
|
+
"kind": [
|
|
1335
|
+
"NON_NULL",
|
|
1336
|
+
"OBJECT"
|
|
1337
|
+
],
|
|
1338
|
+
"name": "PolicyRuleActivePeriod",
|
|
1339
|
+
"non_null": false
|
|
1340
|
+
},
|
|
1341
|
+
"varName": "policyRuleActivePeriod"
|
|
1342
|
+
},
|
|
1226
1343
|
"connectionOrigin": {
|
|
1227
1344
|
"alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
|
|
1228
1345
|
"args": {},
|
|
@@ -1279,7 +1396,7 @@
|
|
|
1279
1396
|
"alias": "countryRefCountry: country",
|
|
1280
1397
|
"args": {},
|
|
1281
1398
|
"deprecationReason": null,
|
|
1282
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
1399
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1283
1400
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___country",
|
|
1284
1401
|
"isDeprecated": false,
|
|
1285
1402
|
"name": "country",
|
|
@@ -1378,7 +1495,7 @@
|
|
|
1378
1495
|
"alias": "internetFirewallDestinationDestination: destination",
|
|
1379
1496
|
"args": {},
|
|
1380
1497
|
"deprecationReason": null,
|
|
1381
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
1498
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1382
1499
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___destination",
|
|
1383
1500
|
"isDeprecated": false,
|
|
1384
1501
|
"name": "destination",
|
|
@@ -1897,7 +2014,7 @@
|
|
|
1897
2014
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
1898
2015
|
"args": {},
|
|
1899
2016
|
"deprecationReason": null,
|
|
1900
|
-
"description": "Custom Categories
|
|
2017
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
1901
2018
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___destination___customCategory",
|
|
1902
2019
|
"isDeprecated": false,
|
|
1903
2020
|
"name": "customCategory",
|
|
@@ -2341,7 +2458,7 @@
|
|
|
2341
2458
|
"alias": "deviceProfileRefDevice: device",
|
|
2342
2459
|
"args": {},
|
|
2343
2460
|
"deprecationReason": null,
|
|
2344
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
2461
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2345
2462
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___device",
|
|
2346
2463
|
"isDeprecated": false,
|
|
2347
2464
|
"name": "device",
|
|
@@ -2591,7 +2708,7 @@
|
|
|
2591
2708
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
2592
2709
|
"args": {},
|
|
2593
2710
|
"deprecationReason": null,
|
|
2594
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
2711
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
2595
2712
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___deviceOS",
|
|
2596
2713
|
"isDeprecated": false,
|
|
2597
2714
|
"name": "deviceOS",
|
|
@@ -3350,7 +3467,7 @@
|
|
|
3350
3467
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
3351
3468
|
"args": {},
|
|
3352
3469
|
"deprecationReason": null,
|
|
3353
|
-
"description": "Custom Categories
|
|
3470
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
3354
3471
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___exceptions___destination___customCategory",
|
|
3355
3472
|
"isDeprecated": false,
|
|
3356
3473
|
"name": "customCategory",
|
|
@@ -5861,7 +5978,7 @@
|
|
|
5861
5978
|
"alias": "internetFirewallServiceTypeService: service",
|
|
5862
5979
|
"args": {},
|
|
5863
5980
|
"deprecationReason": null,
|
|
5864
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
5981
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5865
5982
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___service",
|
|
5866
5983
|
"isDeprecated": false,
|
|
5867
5984
|
"name": "service",
|
|
@@ -6170,7 +6287,7 @@
|
|
|
6170
6287
|
"alias": "internetFirewallSourceSource: source",
|
|
6171
6288
|
"args": {},
|
|
6172
6289
|
"deprecationReason": null,
|
|
6173
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
6290
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
6174
6291
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___source",
|
|
6175
6292
|
"isDeprecated": false,
|
|
6176
6293
|
"name": "source",
|
|
@@ -7141,7 +7258,7 @@
|
|
|
7141
7258
|
"enabled": {
|
|
7142
7259
|
"args": {},
|
|
7143
7260
|
"deprecationReason": null,
|
|
7144
|
-
"description": "TRUE
|
|
7261
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
7145
7262
|
"id_str": "internetFirewall___updatePolicy___policy___rules___rule___tracking___alert___enabled",
|
|
7146
7263
|
"isDeprecated": false,
|
|
7147
7264
|
"name": "enabled",
|