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
|
@@ -222,6 +222,111 @@
|
|
|
222
222
|
},
|
|
223
223
|
"varName": "action"
|
|
224
224
|
},
|
|
225
|
+
"activePeriod": {
|
|
226
|
+
"defaultValue": "{useEffectiveFrom: false, useExpiresAt: false}",
|
|
227
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
228
|
+
"id_str": "addRule___input___rule___activePeriod",
|
|
229
|
+
"name": "activePeriod",
|
|
230
|
+
"path": "addRule.input.rule.activePeriod",
|
|
231
|
+
"requestStr": "$policyRuleActivePeriodInput:PolicyRuleActivePeriodInput! ",
|
|
232
|
+
"required": true,
|
|
233
|
+
"responseStr": "activePeriod:$policyRuleActivePeriodInput ",
|
|
234
|
+
"type": {
|
|
235
|
+
"definition": {
|
|
236
|
+
"description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
|
|
237
|
+
"enumValues": null,
|
|
238
|
+
"fields": null,
|
|
239
|
+
"inputFields": {
|
|
240
|
+
"effectiveFrom": {
|
|
241
|
+
"defaultValue": null,
|
|
242
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
243
|
+
"id_str": "addRule___input___rule___activePeriod___effectiveFrom",
|
|
244
|
+
"name": "effectiveFrom",
|
|
245
|
+
"path": "addRule.input.rule.activePeriod.effectiveFrom",
|
|
246
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
247
|
+
"required": false,
|
|
248
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
249
|
+
"type": {
|
|
250
|
+
"kind": [
|
|
251
|
+
"SCALAR"
|
|
252
|
+
],
|
|
253
|
+
"name": "DateTime",
|
|
254
|
+
"non_null": false
|
|
255
|
+
},
|
|
256
|
+
"varName": "effectiveFrom"
|
|
257
|
+
},
|
|
258
|
+
"expiresAt": {
|
|
259
|
+
"defaultValue": null,
|
|
260
|
+
"description": "The time the rule expires, if not used, default null",
|
|
261
|
+
"id_str": "addRule___input___rule___activePeriod___expiresAt",
|
|
262
|
+
"name": "expiresAt",
|
|
263
|
+
"path": "addRule.input.rule.activePeriod.expiresAt",
|
|
264
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
265
|
+
"required": false,
|
|
266
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
267
|
+
"type": {
|
|
268
|
+
"kind": [
|
|
269
|
+
"SCALAR"
|
|
270
|
+
],
|
|
271
|
+
"name": "DateTime",
|
|
272
|
+
"non_null": false
|
|
273
|
+
},
|
|
274
|
+
"varName": "expiresAt"
|
|
275
|
+
},
|
|
276
|
+
"useEffectiveFrom": {
|
|
277
|
+
"defaultValue": "false",
|
|
278
|
+
"description": null,
|
|
279
|
+
"id_str": "addRule___input___rule___activePeriod___useEffectiveFrom",
|
|
280
|
+
"name": "useEffectiveFrom",
|
|
281
|
+
"path": "addRule.input.rule.activePeriod.useEffectiveFrom",
|
|
282
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
283
|
+
"required": true,
|
|
284
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
285
|
+
"type": {
|
|
286
|
+
"kind": [
|
|
287
|
+
"NON_NULL",
|
|
288
|
+
"SCALAR"
|
|
289
|
+
],
|
|
290
|
+
"name": "Boolean",
|
|
291
|
+
"non_null": false
|
|
292
|
+
},
|
|
293
|
+
"varName": "useEffectiveFrom"
|
|
294
|
+
},
|
|
295
|
+
"useExpiresAt": {
|
|
296
|
+
"defaultValue": "false",
|
|
297
|
+
"description": null,
|
|
298
|
+
"id_str": "addRule___input___rule___activePeriod___useExpiresAt",
|
|
299
|
+
"name": "useExpiresAt",
|
|
300
|
+
"path": "addRule.input.rule.activePeriod.useExpiresAt",
|
|
301
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
302
|
+
"required": true,
|
|
303
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
304
|
+
"type": {
|
|
305
|
+
"kind": [
|
|
306
|
+
"NON_NULL",
|
|
307
|
+
"SCALAR"
|
|
308
|
+
],
|
|
309
|
+
"name": "Boolean",
|
|
310
|
+
"non_null": false
|
|
311
|
+
},
|
|
312
|
+
"varName": "useExpiresAt"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"interfaces": null,
|
|
316
|
+
"kind": "INPUT_OBJECT",
|
|
317
|
+
"name": "PolicyRuleActivePeriodInput",
|
|
318
|
+
"possibleTypes": null
|
|
319
|
+
},
|
|
320
|
+
"indexType": "input_object",
|
|
321
|
+
"kind": [
|
|
322
|
+
"NON_NULL",
|
|
323
|
+
"INPUT_OBJECT"
|
|
324
|
+
],
|
|
325
|
+
"name": "PolicyRuleActivePeriodInput",
|
|
326
|
+
"non_null": false
|
|
327
|
+
},
|
|
328
|
+
"varName": "policyRuleActivePeriodInput"
|
|
329
|
+
},
|
|
225
330
|
"connectionOrigin": {
|
|
226
331
|
"defaultValue": "ANY",
|
|
227
332
|
"description": "Connection origin of the traffic",
|
|
@@ -273,7 +378,7 @@
|
|
|
273
378
|
},
|
|
274
379
|
"country": {
|
|
275
380
|
"defaultValue": "[]",
|
|
276
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
381
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
277
382
|
"id_str": "addRule___input___rule___country",
|
|
278
383
|
"name": "country",
|
|
279
384
|
"path": "addRule.input.rule.country",
|
|
@@ -387,7 +492,7 @@
|
|
|
387
492
|
},
|
|
388
493
|
"destination": {
|
|
389
494
|
"defaultValue": "{application: [], customApp: [], appCategory: [], customCategory: [], sanctionedAppsCategory: [], country: [], domain: [], fqdn: [], ip: [], subnet: [], ipRange: [], globalIpRange: [], remoteAsn: [], containers: {fqdnContainer: [], ipAddressRangeContainer: []}}",
|
|
390
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
495
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
391
496
|
"id_str": "addRule___input___rule___destination",
|
|
392
497
|
"name": "destination",
|
|
393
498
|
"path": "addRule.input.rule.destination",
|
|
@@ -622,7 +727,7 @@
|
|
|
622
727
|
"inputFields": {
|
|
623
728
|
"by": {
|
|
624
729
|
"defaultValue": "ID",
|
|
625
|
-
"description": "Defines the object identification method
|
|
730
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
626
731
|
"id_str": "addRule___input___rule___destination___containers___fqdnContainer___by",
|
|
627
732
|
"name": "by",
|
|
628
733
|
"path": "addRule.input.rule.destination.containers.fqdnContainer.by",
|
|
@@ -717,7 +822,7 @@
|
|
|
717
822
|
"inputFields": {
|
|
718
823
|
"by": {
|
|
719
824
|
"defaultValue": "ID",
|
|
720
|
-
"description": "Defines the object identification method
|
|
825
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
721
826
|
"id_str": "addRule___input___rule___destination___containers___ipAddressRangeContainer___by",
|
|
722
827
|
"name": "by",
|
|
723
828
|
"path": "addRule.input.rule.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -1003,7 +1108,7 @@
|
|
|
1003
1108
|
},
|
|
1004
1109
|
"customCategory": {
|
|
1005
1110
|
"defaultValue": "[]",
|
|
1006
|
-
"description": "Custom Categories
|
|
1111
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
1007
1112
|
"id_str": "addRule___input___rule___destination___customCategory",
|
|
1008
1113
|
"name": "customCategory",
|
|
1009
1114
|
"path": "addRule.input.rule.destination.customCategory",
|
|
@@ -1480,7 +1585,7 @@
|
|
|
1480
1585
|
},
|
|
1481
1586
|
"device": {
|
|
1482
1587
|
"defaultValue": "[]",
|
|
1483
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
1588
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1484
1589
|
"id_str": "addRule___input___rule___device",
|
|
1485
1590
|
"name": "device",
|
|
1486
1591
|
"path": "addRule.input.rule.device",
|
|
@@ -1732,7 +1837,7 @@
|
|
|
1732
1837
|
},
|
|
1733
1838
|
"deviceOS": {
|
|
1734
1839
|
"defaultValue": "[]",
|
|
1735
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
1840
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1736
1841
|
"id_str": "addRule___input___rule___deviceOS",
|
|
1737
1842
|
"name": "deviceOS",
|
|
1738
1843
|
"path": "addRule.input.rule.deviceOS",
|
|
@@ -2214,7 +2319,7 @@
|
|
|
2214
2319
|
"inputFields": {
|
|
2215
2320
|
"by": {
|
|
2216
2321
|
"defaultValue": "ID",
|
|
2217
|
-
"description": "Defines the object identification method
|
|
2322
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
2218
2323
|
"id_str": "addRule___input___rule___exceptions___destination___containers___fqdnContainer___by",
|
|
2219
2324
|
"name": "by",
|
|
2220
2325
|
"path": "addRule.input.rule.exceptions.destination.containers.fqdnContainer.by",
|
|
@@ -2309,7 +2414,7 @@
|
|
|
2309
2414
|
"inputFields": {
|
|
2310
2415
|
"by": {
|
|
2311
2416
|
"defaultValue": "ID",
|
|
2312
|
-
"description": "Defines the object identification method
|
|
2417
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
2313
2418
|
"id_str": "addRule___input___rule___exceptions___destination___containers___ipAddressRangeContainer___by",
|
|
2314
2419
|
"name": "by",
|
|
2315
2420
|
"path": "addRule.input.rule.exceptions.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -2595,7 +2700,7 @@
|
|
|
2595
2700
|
},
|
|
2596
2701
|
"customCategory": {
|
|
2597
2702
|
"defaultValue": "[]",
|
|
2598
|
-
"description": "Custom Categories
|
|
2703
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
2599
2704
|
"id_str": "addRule___input___rule___exceptions___destination___customCategory",
|
|
2600
2705
|
"name": "customCategory",
|
|
2601
2706
|
"path": "addRule.input.rule.exceptions.destination.customCategory",
|
|
@@ -3750,7 +3855,7 @@
|
|
|
3750
3855
|
"inputFields": {
|
|
3751
3856
|
"by": {
|
|
3752
3857
|
"defaultValue": "ID",
|
|
3753
|
-
"description": "Defines the object identification method
|
|
3858
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
3754
3859
|
"id_str": "addRule___input___rule___exceptions___source___floatingSubnet___by",
|
|
3755
3860
|
"name": "by",
|
|
3756
3861
|
"path": "addRule.input.rule.exceptions.source.floatingSubnet.by",
|
|
@@ -5148,7 +5253,7 @@
|
|
|
5148
5253
|
},
|
|
5149
5254
|
"service": {
|
|
5150
5255
|
"defaultValue": "{standard: [], custom: []}",
|
|
5151
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
5256
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5152
5257
|
"id_str": "addRule___input___rule___service",
|
|
5153
5258
|
"name": "service",
|
|
5154
5259
|
"path": "addRule.input.rule.service",
|
|
@@ -5456,7 +5561,7 @@
|
|
|
5456
5561
|
},
|
|
5457
5562
|
"source": {
|
|
5458
5563
|
"defaultValue": "{ip: [], host: [], site: [], subnet: [], ipRange: [], globalIpRange: [], networkInterface: [], siteNetworkSubnet: [], floatingSubnet: [], user: [], usersGroup: [], group: [], systemGroup: []}",
|
|
5459
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
5564
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5460
5565
|
"id_str": "addRule___input___rule___source",
|
|
5461
5566
|
"name": "source",
|
|
5462
5567
|
"path": "addRule.input.rule.source",
|
|
@@ -5486,7 +5591,7 @@
|
|
|
5486
5591
|
"inputFields": {
|
|
5487
5592
|
"by": {
|
|
5488
5593
|
"defaultValue": "ID",
|
|
5489
|
-
"description": "Defines the object identification method
|
|
5594
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
5490
5595
|
"id_str": "addRule___input___rule___source___floatingSubnet___by",
|
|
5491
5596
|
"name": "by",
|
|
5492
5597
|
"path": "addRule.input.rule.source.floatingSubnet.by",
|
|
@@ -6580,7 +6685,7 @@
|
|
|
6580
6685
|
"inputFields": {
|
|
6581
6686
|
"enabled": {
|
|
6582
6687
|
"defaultValue": "false",
|
|
6583
|
-
"description": "TRUE
|
|
6688
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
6584
6689
|
"id_str": "addRule___input___rule___tracking___alert___enabled",
|
|
6585
6690
|
"name": "enabled",
|
|
6586
6691
|
"path": "addRule.input.rule.tracking.alert.enabled",
|
|
@@ -7224,6 +7329,8 @@
|
|
|
7224
7329
|
"PolicyMutationError": true,
|
|
7225
7330
|
"PolicyMutationRevisionInput": true,
|
|
7226
7331
|
"PolicyMutationStatus": true,
|
|
7332
|
+
"PolicyRuleActivePeriod": true,
|
|
7333
|
+
"PolicyRuleActivePeriodInput": true,
|
|
7227
7334
|
"PolicyRulePositionEnum": true,
|
|
7228
7335
|
"PolicyRulePositionInput": true,
|
|
7229
7336
|
"PolicyRuleTrackingAlert": true,
|
|
@@ -7480,6 +7587,111 @@
|
|
|
7480
7587
|
},
|
|
7481
7588
|
"varName": "action"
|
|
7482
7589
|
},
|
|
7590
|
+
"activePeriod": {
|
|
7591
|
+
"defaultValue": "{useEffectiveFrom: false, useExpiresAt: false}",
|
|
7592
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
7593
|
+
"id_str": "addRule___input___rule___activePeriod",
|
|
7594
|
+
"name": "activePeriod",
|
|
7595
|
+
"path": "addRule.input.rule.activePeriod",
|
|
7596
|
+
"requestStr": "$policyRuleActivePeriodInput:PolicyRuleActivePeriodInput! ",
|
|
7597
|
+
"required": true,
|
|
7598
|
+
"responseStr": "activePeriod:$policyRuleActivePeriodInput ",
|
|
7599
|
+
"type": {
|
|
7600
|
+
"definition": {
|
|
7601
|
+
"description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
|
|
7602
|
+
"enumValues": null,
|
|
7603
|
+
"fields": null,
|
|
7604
|
+
"inputFields": {
|
|
7605
|
+
"effectiveFrom": {
|
|
7606
|
+
"defaultValue": null,
|
|
7607
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
7608
|
+
"id_str": "addRule___input___rule___activePeriod___effectiveFrom",
|
|
7609
|
+
"name": "effectiveFrom",
|
|
7610
|
+
"path": "addRule.input.rule.activePeriod.effectiveFrom",
|
|
7611
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
7612
|
+
"required": false,
|
|
7613
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
7614
|
+
"type": {
|
|
7615
|
+
"kind": [
|
|
7616
|
+
"SCALAR"
|
|
7617
|
+
],
|
|
7618
|
+
"name": "DateTime",
|
|
7619
|
+
"non_null": false
|
|
7620
|
+
},
|
|
7621
|
+
"varName": "effectiveFrom"
|
|
7622
|
+
},
|
|
7623
|
+
"expiresAt": {
|
|
7624
|
+
"defaultValue": null,
|
|
7625
|
+
"description": "The time the rule expires, if not used, default null",
|
|
7626
|
+
"id_str": "addRule___input___rule___activePeriod___expiresAt",
|
|
7627
|
+
"name": "expiresAt",
|
|
7628
|
+
"path": "addRule.input.rule.activePeriod.expiresAt",
|
|
7629
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
7630
|
+
"required": false,
|
|
7631
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
7632
|
+
"type": {
|
|
7633
|
+
"kind": [
|
|
7634
|
+
"SCALAR"
|
|
7635
|
+
],
|
|
7636
|
+
"name": "DateTime",
|
|
7637
|
+
"non_null": false
|
|
7638
|
+
},
|
|
7639
|
+
"varName": "expiresAt"
|
|
7640
|
+
},
|
|
7641
|
+
"useEffectiveFrom": {
|
|
7642
|
+
"defaultValue": "false",
|
|
7643
|
+
"description": null,
|
|
7644
|
+
"id_str": "addRule___input___rule___activePeriod___useEffectiveFrom",
|
|
7645
|
+
"name": "useEffectiveFrom",
|
|
7646
|
+
"path": "addRule.input.rule.activePeriod.useEffectiveFrom",
|
|
7647
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
7648
|
+
"required": true,
|
|
7649
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
7650
|
+
"type": {
|
|
7651
|
+
"kind": [
|
|
7652
|
+
"NON_NULL",
|
|
7653
|
+
"SCALAR"
|
|
7654
|
+
],
|
|
7655
|
+
"name": "Boolean",
|
|
7656
|
+
"non_null": false
|
|
7657
|
+
},
|
|
7658
|
+
"varName": "useEffectiveFrom"
|
|
7659
|
+
},
|
|
7660
|
+
"useExpiresAt": {
|
|
7661
|
+
"defaultValue": "false",
|
|
7662
|
+
"description": null,
|
|
7663
|
+
"id_str": "addRule___input___rule___activePeriod___useExpiresAt",
|
|
7664
|
+
"name": "useExpiresAt",
|
|
7665
|
+
"path": "addRule.input.rule.activePeriod.useExpiresAt",
|
|
7666
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
7667
|
+
"required": true,
|
|
7668
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
7669
|
+
"type": {
|
|
7670
|
+
"kind": [
|
|
7671
|
+
"NON_NULL",
|
|
7672
|
+
"SCALAR"
|
|
7673
|
+
],
|
|
7674
|
+
"name": "Boolean",
|
|
7675
|
+
"non_null": false
|
|
7676
|
+
},
|
|
7677
|
+
"varName": "useExpiresAt"
|
|
7678
|
+
}
|
|
7679
|
+
},
|
|
7680
|
+
"interfaces": null,
|
|
7681
|
+
"kind": "INPUT_OBJECT",
|
|
7682
|
+
"name": "PolicyRuleActivePeriodInput",
|
|
7683
|
+
"possibleTypes": null
|
|
7684
|
+
},
|
|
7685
|
+
"indexType": "input_object",
|
|
7686
|
+
"kind": [
|
|
7687
|
+
"NON_NULL",
|
|
7688
|
+
"INPUT_OBJECT"
|
|
7689
|
+
],
|
|
7690
|
+
"name": "PolicyRuleActivePeriodInput",
|
|
7691
|
+
"non_null": false
|
|
7692
|
+
},
|
|
7693
|
+
"varName": "policyRuleActivePeriodInput"
|
|
7694
|
+
},
|
|
7483
7695
|
"connectionOrigin": {
|
|
7484
7696
|
"defaultValue": "ANY",
|
|
7485
7697
|
"description": "Connection origin of the traffic",
|
|
@@ -7531,7 +7743,7 @@
|
|
|
7531
7743
|
},
|
|
7532
7744
|
"country": {
|
|
7533
7745
|
"defaultValue": "[]",
|
|
7534
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
7746
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7535
7747
|
"id_str": "addRule___input___rule___country",
|
|
7536
7748
|
"name": "country",
|
|
7537
7749
|
"path": "addRule.input.rule.country",
|
|
@@ -7645,7 +7857,7 @@
|
|
|
7645
7857
|
},
|
|
7646
7858
|
"destination": {
|
|
7647
7859
|
"defaultValue": "{application: [], customApp: [], appCategory: [], customCategory: [], sanctionedAppsCategory: [], country: [], domain: [], fqdn: [], ip: [], subnet: [], ipRange: [], globalIpRange: [], remoteAsn: [], containers: {fqdnContainer: [], ipAddressRangeContainer: []}}",
|
|
7648
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
7860
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7649
7861
|
"id_str": "addRule___input___rule___destination",
|
|
7650
7862
|
"name": "destination",
|
|
7651
7863
|
"path": "addRule.input.rule.destination",
|
|
@@ -7880,7 +8092,7 @@
|
|
|
7880
8092
|
"inputFields": {
|
|
7881
8093
|
"by": {
|
|
7882
8094
|
"defaultValue": "ID",
|
|
7883
|
-
"description": "Defines the object identification method
|
|
8095
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
7884
8096
|
"id_str": "addRule___input___rule___destination___containers___fqdnContainer___by",
|
|
7885
8097
|
"name": "by",
|
|
7886
8098
|
"path": "addRule.input.rule.destination.containers.fqdnContainer.by",
|
|
@@ -7975,7 +8187,7 @@
|
|
|
7975
8187
|
"inputFields": {
|
|
7976
8188
|
"by": {
|
|
7977
8189
|
"defaultValue": "ID",
|
|
7978
|
-
"description": "Defines the object identification method
|
|
8190
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
7979
8191
|
"id_str": "addRule___input___rule___destination___containers___ipAddressRangeContainer___by",
|
|
7980
8192
|
"name": "by",
|
|
7981
8193
|
"path": "addRule.input.rule.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -8261,7 +8473,7 @@
|
|
|
8261
8473
|
},
|
|
8262
8474
|
"customCategory": {
|
|
8263
8475
|
"defaultValue": "[]",
|
|
8264
|
-
"description": "Custom Categories
|
|
8476
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
8265
8477
|
"id_str": "addRule___input___rule___destination___customCategory",
|
|
8266
8478
|
"name": "customCategory",
|
|
8267
8479
|
"path": "addRule.input.rule.destination.customCategory",
|
|
@@ -8738,7 +8950,7 @@
|
|
|
8738
8950
|
},
|
|
8739
8951
|
"device": {
|
|
8740
8952
|
"defaultValue": "[]",
|
|
8741
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
8953
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
8742
8954
|
"id_str": "addRule___input___rule___device",
|
|
8743
8955
|
"name": "device",
|
|
8744
8956
|
"path": "addRule.input.rule.device",
|
|
@@ -8990,7 +9202,7 @@
|
|
|
8990
9202
|
},
|
|
8991
9203
|
"deviceOS": {
|
|
8992
9204
|
"defaultValue": "[]",
|
|
8993
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
9205
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
8994
9206
|
"id_str": "addRule___input___rule___deviceOS",
|
|
8995
9207
|
"name": "deviceOS",
|
|
8996
9208
|
"path": "addRule.input.rule.deviceOS",
|
|
@@ -9472,7 +9684,7 @@
|
|
|
9472
9684
|
"inputFields": {
|
|
9473
9685
|
"by": {
|
|
9474
9686
|
"defaultValue": "ID",
|
|
9475
|
-
"description": "Defines the object identification method
|
|
9687
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
9476
9688
|
"id_str": "addRule___input___rule___exceptions___destination___containers___fqdnContainer___by",
|
|
9477
9689
|
"name": "by",
|
|
9478
9690
|
"path": "addRule.input.rule.exceptions.destination.containers.fqdnContainer.by",
|
|
@@ -9567,7 +9779,7 @@
|
|
|
9567
9779
|
"inputFields": {
|
|
9568
9780
|
"by": {
|
|
9569
9781
|
"defaultValue": "ID",
|
|
9570
|
-
"description": "Defines the object identification method
|
|
9782
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
9571
9783
|
"id_str": "addRule___input___rule___exceptions___destination___containers___ipAddressRangeContainer___by",
|
|
9572
9784
|
"name": "by",
|
|
9573
9785
|
"path": "addRule.input.rule.exceptions.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -9853,7 +10065,7 @@
|
|
|
9853
10065
|
},
|
|
9854
10066
|
"customCategory": {
|
|
9855
10067
|
"defaultValue": "[]",
|
|
9856
|
-
"description": "Custom Categories
|
|
10068
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
9857
10069
|
"id_str": "addRule___input___rule___exceptions___destination___customCategory",
|
|
9858
10070
|
"name": "customCategory",
|
|
9859
10071
|
"path": "addRule.input.rule.exceptions.destination.customCategory",
|
|
@@ -11008,7 +11220,7 @@
|
|
|
11008
11220
|
"inputFields": {
|
|
11009
11221
|
"by": {
|
|
11010
11222
|
"defaultValue": "ID",
|
|
11011
|
-
"description": "Defines the object identification method
|
|
11223
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
11012
11224
|
"id_str": "addRule___input___rule___exceptions___source___floatingSubnet___by",
|
|
11013
11225
|
"name": "by",
|
|
11014
11226
|
"path": "addRule.input.rule.exceptions.source.floatingSubnet.by",
|
|
@@ -12406,7 +12618,7 @@
|
|
|
12406
12618
|
},
|
|
12407
12619
|
"service": {
|
|
12408
12620
|
"defaultValue": "{standard: [], custom: []}",
|
|
12409
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
12621
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
12410
12622
|
"id_str": "addRule___input___rule___service",
|
|
12411
12623
|
"name": "service",
|
|
12412
12624
|
"path": "addRule.input.rule.service",
|
|
@@ -12714,7 +12926,7 @@
|
|
|
12714
12926
|
},
|
|
12715
12927
|
"source": {
|
|
12716
12928
|
"defaultValue": "{ip: [], host: [], site: [], subnet: [], ipRange: [], globalIpRange: [], networkInterface: [], siteNetworkSubnet: [], floatingSubnet: [], user: [], usersGroup: [], group: [], systemGroup: []}",
|
|
12717
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
12929
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
12718
12930
|
"id_str": "addRule___input___rule___source",
|
|
12719
12931
|
"name": "source",
|
|
12720
12932
|
"path": "addRule.input.rule.source",
|
|
@@ -12744,7 +12956,7 @@
|
|
|
12744
12956
|
"inputFields": {
|
|
12745
12957
|
"by": {
|
|
12746
12958
|
"defaultValue": "ID",
|
|
12747
|
-
"description": "Defines the object identification method
|
|
12959
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
12748
12960
|
"id_str": "addRule___input___rule___source___floatingSubnet___by",
|
|
12749
12961
|
"name": "by",
|
|
12750
12962
|
"path": "addRule.input.rule.source.floatingSubnet.by",
|
|
@@ -13838,7 +14050,7 @@
|
|
|
13838
14050
|
"inputFields": {
|
|
13839
14051
|
"enabled": {
|
|
13840
14052
|
"defaultValue": "false",
|
|
13841
|
-
"description": "TRUE
|
|
14053
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
13842
14054
|
"id_str": "addRule___input___rule___tracking___alert___enabled",
|
|
13843
14055
|
"name": "enabled",
|
|
13844
14056
|
"path": "addRule.input.rule.tracking.alert.enabled",
|
|
@@ -14690,6 +14902,111 @@
|
|
|
14690
14902
|
},
|
|
14691
14903
|
"varName": "action"
|
|
14692
14904
|
},
|
|
14905
|
+
"activePeriod": {
|
|
14906
|
+
"defaultValue": "{useEffectiveFrom: false, useExpiresAt: false}",
|
|
14907
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
14908
|
+
"id_str": "addRule___input___rule___activePeriod",
|
|
14909
|
+
"name": "activePeriod",
|
|
14910
|
+
"path": "addRule.input.rule.activePeriod",
|
|
14911
|
+
"requestStr": "$policyRuleActivePeriodInput:PolicyRuleActivePeriodInput! ",
|
|
14912
|
+
"required": true,
|
|
14913
|
+
"responseStr": "activePeriod:$policyRuleActivePeriodInput ",
|
|
14914
|
+
"type": {
|
|
14915
|
+
"definition": {
|
|
14916
|
+
"description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
|
|
14917
|
+
"enumValues": null,
|
|
14918
|
+
"fields": null,
|
|
14919
|
+
"inputFields": {
|
|
14920
|
+
"effectiveFrom": {
|
|
14921
|
+
"defaultValue": null,
|
|
14922
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
14923
|
+
"id_str": "addRule___input___rule___activePeriod___effectiveFrom",
|
|
14924
|
+
"name": "effectiveFrom",
|
|
14925
|
+
"path": "addRule.input.rule.activePeriod.effectiveFrom",
|
|
14926
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
14927
|
+
"required": false,
|
|
14928
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
14929
|
+
"type": {
|
|
14930
|
+
"kind": [
|
|
14931
|
+
"SCALAR"
|
|
14932
|
+
],
|
|
14933
|
+
"name": "DateTime",
|
|
14934
|
+
"non_null": false
|
|
14935
|
+
},
|
|
14936
|
+
"varName": "effectiveFrom"
|
|
14937
|
+
},
|
|
14938
|
+
"expiresAt": {
|
|
14939
|
+
"defaultValue": null,
|
|
14940
|
+
"description": "The time the rule expires, if not used, default null",
|
|
14941
|
+
"id_str": "addRule___input___rule___activePeriod___expiresAt",
|
|
14942
|
+
"name": "expiresAt",
|
|
14943
|
+
"path": "addRule.input.rule.activePeriod.expiresAt",
|
|
14944
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
14945
|
+
"required": false,
|
|
14946
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
14947
|
+
"type": {
|
|
14948
|
+
"kind": [
|
|
14949
|
+
"SCALAR"
|
|
14950
|
+
],
|
|
14951
|
+
"name": "DateTime",
|
|
14952
|
+
"non_null": false
|
|
14953
|
+
},
|
|
14954
|
+
"varName": "expiresAt"
|
|
14955
|
+
},
|
|
14956
|
+
"useEffectiveFrom": {
|
|
14957
|
+
"defaultValue": "false",
|
|
14958
|
+
"description": null,
|
|
14959
|
+
"id_str": "addRule___input___rule___activePeriod___useEffectiveFrom",
|
|
14960
|
+
"name": "useEffectiveFrom",
|
|
14961
|
+
"path": "addRule.input.rule.activePeriod.useEffectiveFrom",
|
|
14962
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
14963
|
+
"required": true,
|
|
14964
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
14965
|
+
"type": {
|
|
14966
|
+
"kind": [
|
|
14967
|
+
"NON_NULL",
|
|
14968
|
+
"SCALAR"
|
|
14969
|
+
],
|
|
14970
|
+
"name": "Boolean",
|
|
14971
|
+
"non_null": false
|
|
14972
|
+
},
|
|
14973
|
+
"varName": "useEffectiveFrom"
|
|
14974
|
+
},
|
|
14975
|
+
"useExpiresAt": {
|
|
14976
|
+
"defaultValue": "false",
|
|
14977
|
+
"description": null,
|
|
14978
|
+
"id_str": "addRule___input___rule___activePeriod___useExpiresAt",
|
|
14979
|
+
"name": "useExpiresAt",
|
|
14980
|
+
"path": "addRule.input.rule.activePeriod.useExpiresAt",
|
|
14981
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
14982
|
+
"required": true,
|
|
14983
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
14984
|
+
"type": {
|
|
14985
|
+
"kind": [
|
|
14986
|
+
"NON_NULL",
|
|
14987
|
+
"SCALAR"
|
|
14988
|
+
],
|
|
14989
|
+
"name": "Boolean",
|
|
14990
|
+
"non_null": false
|
|
14991
|
+
},
|
|
14992
|
+
"varName": "useExpiresAt"
|
|
14993
|
+
}
|
|
14994
|
+
},
|
|
14995
|
+
"interfaces": null,
|
|
14996
|
+
"kind": "INPUT_OBJECT",
|
|
14997
|
+
"name": "PolicyRuleActivePeriodInput",
|
|
14998
|
+
"possibleTypes": null
|
|
14999
|
+
},
|
|
15000
|
+
"indexType": "input_object",
|
|
15001
|
+
"kind": [
|
|
15002
|
+
"NON_NULL",
|
|
15003
|
+
"INPUT_OBJECT"
|
|
15004
|
+
],
|
|
15005
|
+
"name": "PolicyRuleActivePeriodInput",
|
|
15006
|
+
"non_null": false
|
|
15007
|
+
},
|
|
15008
|
+
"varName": "policyRuleActivePeriodInput"
|
|
15009
|
+
},
|
|
14693
15010
|
"connectionOrigin": {
|
|
14694
15011
|
"defaultValue": "ANY",
|
|
14695
15012
|
"description": "Connection origin of the traffic",
|
|
@@ -14741,7 +15058,7 @@
|
|
|
14741
15058
|
},
|
|
14742
15059
|
"country": {
|
|
14743
15060
|
"defaultValue": "[]",
|
|
14744
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
15061
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
14745
15062
|
"id_str": "addRule___input___rule___country",
|
|
14746
15063
|
"name": "country",
|
|
14747
15064
|
"path": "addRule.input.rule.country",
|
|
@@ -14855,7 +15172,7 @@
|
|
|
14855
15172
|
},
|
|
14856
15173
|
"destination": {
|
|
14857
15174
|
"defaultValue": "{application: [], customApp: [], appCategory: [], customCategory: [], sanctionedAppsCategory: [], country: [], domain: [], fqdn: [], ip: [], subnet: [], ipRange: [], globalIpRange: [], remoteAsn: [], containers: {fqdnContainer: [], ipAddressRangeContainer: []}}",
|
|
14858
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
15175
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
14859
15176
|
"id_str": "addRule___input___rule___destination",
|
|
14860
15177
|
"name": "destination",
|
|
14861
15178
|
"path": "addRule.input.rule.destination",
|
|
@@ -15090,7 +15407,7 @@
|
|
|
15090
15407
|
"inputFields": {
|
|
15091
15408
|
"by": {
|
|
15092
15409
|
"defaultValue": "ID",
|
|
15093
|
-
"description": "Defines the object identification method
|
|
15410
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
15094
15411
|
"id_str": "addRule___input___rule___destination___containers___fqdnContainer___by",
|
|
15095
15412
|
"name": "by",
|
|
15096
15413
|
"path": "addRule.input.rule.destination.containers.fqdnContainer.by",
|
|
@@ -15185,7 +15502,7 @@
|
|
|
15185
15502
|
"inputFields": {
|
|
15186
15503
|
"by": {
|
|
15187
15504
|
"defaultValue": "ID",
|
|
15188
|
-
"description": "Defines the object identification method
|
|
15505
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
15189
15506
|
"id_str": "addRule___input___rule___destination___containers___ipAddressRangeContainer___by",
|
|
15190
15507
|
"name": "by",
|
|
15191
15508
|
"path": "addRule.input.rule.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -15471,7 +15788,7 @@
|
|
|
15471
15788
|
},
|
|
15472
15789
|
"customCategory": {
|
|
15473
15790
|
"defaultValue": "[]",
|
|
15474
|
-
"description": "Custom Categories
|
|
15791
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
15475
15792
|
"id_str": "addRule___input___rule___destination___customCategory",
|
|
15476
15793
|
"name": "customCategory",
|
|
15477
15794
|
"path": "addRule.input.rule.destination.customCategory",
|
|
@@ -15948,7 +16265,7 @@
|
|
|
15948
16265
|
},
|
|
15949
16266
|
"device": {
|
|
15950
16267
|
"defaultValue": "[]",
|
|
15951
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
16268
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
15952
16269
|
"id_str": "addRule___input___rule___device",
|
|
15953
16270
|
"name": "device",
|
|
15954
16271
|
"path": "addRule.input.rule.device",
|
|
@@ -16200,7 +16517,7 @@
|
|
|
16200
16517
|
},
|
|
16201
16518
|
"deviceOS": {
|
|
16202
16519
|
"defaultValue": "[]",
|
|
16203
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
16520
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
16204
16521
|
"id_str": "addRule___input___rule___deviceOS",
|
|
16205
16522
|
"name": "deviceOS",
|
|
16206
16523
|
"path": "addRule.input.rule.deviceOS",
|
|
@@ -16682,7 +16999,7 @@
|
|
|
16682
16999
|
"inputFields": {
|
|
16683
17000
|
"by": {
|
|
16684
17001
|
"defaultValue": "ID",
|
|
16685
|
-
"description": "Defines the object identification method
|
|
17002
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
16686
17003
|
"id_str": "addRule___input___rule___exceptions___destination___containers___fqdnContainer___by",
|
|
16687
17004
|
"name": "by",
|
|
16688
17005
|
"path": "addRule.input.rule.exceptions.destination.containers.fqdnContainer.by",
|
|
@@ -16777,7 +17094,7 @@
|
|
|
16777
17094
|
"inputFields": {
|
|
16778
17095
|
"by": {
|
|
16779
17096
|
"defaultValue": "ID",
|
|
16780
|
-
"description": "Defines the object identification method
|
|
17097
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
16781
17098
|
"id_str": "addRule___input___rule___exceptions___destination___containers___ipAddressRangeContainer___by",
|
|
16782
17099
|
"name": "by",
|
|
16783
17100
|
"path": "addRule.input.rule.exceptions.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -17063,7 +17380,7 @@
|
|
|
17063
17380
|
},
|
|
17064
17381
|
"customCategory": {
|
|
17065
17382
|
"defaultValue": "[]",
|
|
17066
|
-
"description": "Custom Categories
|
|
17383
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
17067
17384
|
"id_str": "addRule___input___rule___exceptions___destination___customCategory",
|
|
17068
17385
|
"name": "customCategory",
|
|
17069
17386
|
"path": "addRule.input.rule.exceptions.destination.customCategory",
|
|
@@ -18218,7 +18535,7 @@
|
|
|
18218
18535
|
"inputFields": {
|
|
18219
18536
|
"by": {
|
|
18220
18537
|
"defaultValue": "ID",
|
|
18221
|
-
"description": "Defines the object identification method
|
|
18538
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
18222
18539
|
"id_str": "addRule___input___rule___exceptions___source___floatingSubnet___by",
|
|
18223
18540
|
"name": "by",
|
|
18224
18541
|
"path": "addRule.input.rule.exceptions.source.floatingSubnet.by",
|
|
@@ -19616,7 +19933,7 @@
|
|
|
19616
19933
|
},
|
|
19617
19934
|
"service": {
|
|
19618
19935
|
"defaultValue": "{standard: [], custom: []}",
|
|
19619
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
19936
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
19620
19937
|
"id_str": "addRule___input___rule___service",
|
|
19621
19938
|
"name": "service",
|
|
19622
19939
|
"path": "addRule.input.rule.service",
|
|
@@ -19924,7 +20241,7 @@
|
|
|
19924
20241
|
},
|
|
19925
20242
|
"source": {
|
|
19926
20243
|
"defaultValue": "{ip: [], host: [], site: [], subnet: [], ipRange: [], globalIpRange: [], networkInterface: [], siteNetworkSubnet: [], floatingSubnet: [], user: [], usersGroup: [], group: [], systemGroup: []}",
|
|
19927
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
20244
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
19928
20245
|
"id_str": "addRule___input___rule___source",
|
|
19929
20246
|
"name": "source",
|
|
19930
20247
|
"path": "addRule.input.rule.source",
|
|
@@ -19954,7 +20271,7 @@
|
|
|
19954
20271
|
"inputFields": {
|
|
19955
20272
|
"by": {
|
|
19956
20273
|
"defaultValue": "ID",
|
|
19957
|
-
"description": "Defines the object identification method
|
|
20274
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
19958
20275
|
"id_str": "addRule___input___rule___source___floatingSubnet___by",
|
|
19959
20276
|
"name": "by",
|
|
19960
20277
|
"path": "addRule.input.rule.source.floatingSubnet.by",
|
|
@@ -21048,7 +21365,7 @@
|
|
|
21048
21365
|
"inputFields": {
|
|
21049
21366
|
"enabled": {
|
|
21050
21367
|
"defaultValue": "false",
|
|
21051
|
-
"description": "TRUE
|
|
21368
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
21052
21369
|
"id_str": "addRule___input___rule___tracking___alert___enabled",
|
|
21053
21370
|
"name": "enabled",
|
|
21054
21371
|
"path": "addRule.input.rule.tracking.alert.enabled",
|
|
@@ -21548,7 +21865,7 @@
|
|
|
21548
21865
|
"responseStr": "errors:$policyMutationError ",
|
|
21549
21866
|
"type": {
|
|
21550
21867
|
"definition": {
|
|
21551
|
-
"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
|
|
21868
|
+
"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\"",
|
|
21552
21869
|
"enumValues": null,
|
|
21553
21870
|
"fields": {
|
|
21554
21871
|
"errorCode": {
|
|
@@ -21853,6 +22170,122 @@
|
|
|
21853
22170
|
},
|
|
21854
22171
|
"varName": "action"
|
|
21855
22172
|
},
|
|
22173
|
+
"activePeriod": {
|
|
22174
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
22175
|
+
"args": {},
|
|
22176
|
+
"deprecationReason": null,
|
|
22177
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
22178
|
+
"id_str": "internetFirewall___addRule___rule___rule___activePeriod",
|
|
22179
|
+
"isDeprecated": false,
|
|
22180
|
+
"name": "activePeriod",
|
|
22181
|
+
"path": "internetFirewall.addRule.rule.rule.activePeriod",
|
|
22182
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
22183
|
+
"required": true,
|
|
22184
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
22185
|
+
"type": {
|
|
22186
|
+
"definition": {
|
|
22187
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
22188
|
+
"enumValues": null,
|
|
22189
|
+
"fields": {
|
|
22190
|
+
"effectiveFrom": {
|
|
22191
|
+
"args": {},
|
|
22192
|
+
"deprecationReason": null,
|
|
22193
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
22194
|
+
"id_str": "internetFirewall___addRule___rule___rule___activePeriod___effectiveFrom",
|
|
22195
|
+
"isDeprecated": false,
|
|
22196
|
+
"name": "effectiveFrom",
|
|
22197
|
+
"path": "internetFirewall.addRule.rule.rule.activePeriod.effectiveFrom",
|
|
22198
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
22199
|
+
"required": false,
|
|
22200
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
22201
|
+
"type": {
|
|
22202
|
+
"kind": [
|
|
22203
|
+
"SCALAR"
|
|
22204
|
+
],
|
|
22205
|
+
"name": "DateTime",
|
|
22206
|
+
"non_null": false
|
|
22207
|
+
},
|
|
22208
|
+
"varName": "effectiveFrom"
|
|
22209
|
+
},
|
|
22210
|
+
"expiresAt": {
|
|
22211
|
+
"args": {},
|
|
22212
|
+
"deprecationReason": null,
|
|
22213
|
+
"description": "The time the rule expires, if not used, default null",
|
|
22214
|
+
"id_str": "internetFirewall___addRule___rule___rule___activePeriod___expiresAt",
|
|
22215
|
+
"isDeprecated": false,
|
|
22216
|
+
"name": "expiresAt",
|
|
22217
|
+
"path": "internetFirewall.addRule.rule.rule.activePeriod.expiresAt",
|
|
22218
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
22219
|
+
"required": false,
|
|
22220
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
22221
|
+
"type": {
|
|
22222
|
+
"kind": [
|
|
22223
|
+
"SCALAR"
|
|
22224
|
+
],
|
|
22225
|
+
"name": "DateTime",
|
|
22226
|
+
"non_null": false
|
|
22227
|
+
},
|
|
22228
|
+
"varName": "expiresAt"
|
|
22229
|
+
},
|
|
22230
|
+
"useEffectiveFrom": {
|
|
22231
|
+
"args": {},
|
|
22232
|
+
"deprecationReason": null,
|
|
22233
|
+
"description": null,
|
|
22234
|
+
"id_str": "internetFirewall___addRule___rule___rule___activePeriod___useEffectiveFrom",
|
|
22235
|
+
"isDeprecated": false,
|
|
22236
|
+
"name": "useEffectiveFrom",
|
|
22237
|
+
"path": "internetFirewall.addRule.rule.rule.activePeriod.useEffectiveFrom",
|
|
22238
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
22239
|
+
"required": true,
|
|
22240
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
22241
|
+
"type": {
|
|
22242
|
+
"kind": [
|
|
22243
|
+
"NON_NULL",
|
|
22244
|
+
"SCALAR"
|
|
22245
|
+
],
|
|
22246
|
+
"name": "Boolean",
|
|
22247
|
+
"non_null": false
|
|
22248
|
+
},
|
|
22249
|
+
"varName": "useEffectiveFrom"
|
|
22250
|
+
},
|
|
22251
|
+
"useExpiresAt": {
|
|
22252
|
+
"args": {},
|
|
22253
|
+
"deprecationReason": null,
|
|
22254
|
+
"description": null,
|
|
22255
|
+
"id_str": "internetFirewall___addRule___rule___rule___activePeriod___useExpiresAt",
|
|
22256
|
+
"isDeprecated": false,
|
|
22257
|
+
"name": "useExpiresAt",
|
|
22258
|
+
"path": "internetFirewall.addRule.rule.rule.activePeriod.useExpiresAt",
|
|
22259
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
22260
|
+
"required": true,
|
|
22261
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
22262
|
+
"type": {
|
|
22263
|
+
"kind": [
|
|
22264
|
+
"NON_NULL",
|
|
22265
|
+
"SCALAR"
|
|
22266
|
+
],
|
|
22267
|
+
"name": "Boolean",
|
|
22268
|
+
"non_null": false
|
|
22269
|
+
},
|
|
22270
|
+
"varName": "useExpiresAt"
|
|
22271
|
+
}
|
|
22272
|
+
},
|
|
22273
|
+
"inputFields": null,
|
|
22274
|
+
"interfaces": {},
|
|
22275
|
+
"kind": "OBJECT",
|
|
22276
|
+
"name": "PolicyRuleActivePeriod",
|
|
22277
|
+
"possibleTypes": null
|
|
22278
|
+
},
|
|
22279
|
+
"indexType": "object",
|
|
22280
|
+
"kind": [
|
|
22281
|
+
"NON_NULL",
|
|
22282
|
+
"OBJECT"
|
|
22283
|
+
],
|
|
22284
|
+
"name": "PolicyRuleActivePeriod",
|
|
22285
|
+
"non_null": false
|
|
22286
|
+
},
|
|
22287
|
+
"varName": "policyRuleActivePeriod"
|
|
22288
|
+
},
|
|
21856
22289
|
"connectionOrigin": {
|
|
21857
22290
|
"alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
|
|
21858
22291
|
"args": {},
|
|
@@ -21909,7 +22342,7 @@
|
|
|
21909
22342
|
"alias": "countryRefCountry: country",
|
|
21910
22343
|
"args": {},
|
|
21911
22344
|
"deprecationReason": null,
|
|
21912
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
22345
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
21913
22346
|
"id_str": "internetFirewall___addRule___rule___rule___country",
|
|
21914
22347
|
"isDeprecated": false,
|
|
21915
22348
|
"name": "country",
|
|
@@ -22008,7 +22441,7 @@
|
|
|
22008
22441
|
"alias": "internetFirewallDestinationDestination: destination",
|
|
22009
22442
|
"args": {},
|
|
22010
22443
|
"deprecationReason": null,
|
|
22011
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
22444
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
22012
22445
|
"id_str": "internetFirewall___addRule___rule___rule___destination",
|
|
22013
22446
|
"isDeprecated": false,
|
|
22014
22447
|
"name": "destination",
|
|
@@ -22527,7 +22960,7 @@
|
|
|
22527
22960
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
22528
22961
|
"args": {},
|
|
22529
22962
|
"deprecationReason": null,
|
|
22530
|
-
"description": "Custom Categories
|
|
22963
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
22531
22964
|
"id_str": "internetFirewall___addRule___rule___rule___destination___customCategory",
|
|
22532
22965
|
"isDeprecated": false,
|
|
22533
22966
|
"name": "customCategory",
|
|
@@ -22971,7 +23404,7 @@
|
|
|
22971
23404
|
"alias": "deviceProfileRefDevice: device",
|
|
22972
23405
|
"args": {},
|
|
22973
23406
|
"deprecationReason": null,
|
|
22974
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
23407
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
22975
23408
|
"id_str": "internetFirewall___addRule___rule___rule___device",
|
|
22976
23409
|
"isDeprecated": false,
|
|
22977
23410
|
"name": "device",
|
|
@@ -23221,7 +23654,7 @@
|
|
|
23221
23654
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
23222
23655
|
"args": {},
|
|
23223
23656
|
"deprecationReason": null,
|
|
23224
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
23657
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
23225
23658
|
"id_str": "internetFirewall___addRule___rule___rule___deviceOS",
|
|
23226
23659
|
"isDeprecated": false,
|
|
23227
23660
|
"name": "deviceOS",
|
|
@@ -23980,7 +24413,7 @@
|
|
|
23980
24413
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
23981
24414
|
"args": {},
|
|
23982
24415
|
"deprecationReason": null,
|
|
23983
|
-
"description": "Custom Categories
|
|
24416
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
23984
24417
|
"id_str": "internetFirewall___addRule___rule___rule___exceptions___destination___customCategory",
|
|
23985
24418
|
"isDeprecated": false,
|
|
23986
24419
|
"name": "customCategory",
|
|
@@ -26491,7 +26924,7 @@
|
|
|
26491
26924
|
"alias": "internetFirewallServiceTypeService: service",
|
|
26492
26925
|
"args": {},
|
|
26493
26926
|
"deprecationReason": null,
|
|
26494
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
26927
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
26495
26928
|
"id_str": "internetFirewall___addRule___rule___rule___service",
|
|
26496
26929
|
"isDeprecated": false,
|
|
26497
26930
|
"name": "service",
|
|
@@ -26800,7 +27233,7 @@
|
|
|
26800
27233
|
"alias": "internetFirewallSourceSource: source",
|
|
26801
27234
|
"args": {},
|
|
26802
27235
|
"deprecationReason": null,
|
|
26803
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
27236
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
26804
27237
|
"id_str": "internetFirewall___addRule___rule___rule___source",
|
|
26805
27238
|
"isDeprecated": false,
|
|
26806
27239
|
"name": "source",
|
|
@@ -27771,7 +28204,7 @@
|
|
|
27771
28204
|
"enabled": {
|
|
27772
28205
|
"args": {},
|
|
27773
28206
|
"deprecationReason": null,
|
|
27774
|
-
"description": "TRUE
|
|
28207
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
27775
28208
|
"id_str": "internetFirewall___addRule___rule___rule___tracking___alert___enabled",
|
|
27776
28209
|
"isDeprecated": false,
|
|
27777
28210
|
"name": "enabled",
|
|
@@ -28302,6 +28735,20 @@
|
|
|
28302
28735
|
"action": {
|
|
28303
28736
|
"action": "enum(InternetFirewallActionEnum)"
|
|
28304
28737
|
},
|
|
28738
|
+
"activePeriod": {
|
|
28739
|
+
"effectiveFrom": {
|
|
28740
|
+
"effectiveFrom": "DateTime"
|
|
28741
|
+
},
|
|
28742
|
+
"expiresAt": {
|
|
28743
|
+
"expiresAt": "DateTime"
|
|
28744
|
+
},
|
|
28745
|
+
"useEffectiveFrom": {
|
|
28746
|
+
"useEffectiveFrom": "Boolean"
|
|
28747
|
+
},
|
|
28748
|
+
"useExpiresAt": {
|
|
28749
|
+
"useExpiresAt": "Boolean"
|
|
28750
|
+
}
|
|
28751
|
+
},
|
|
28305
28752
|
"connectionOrigin": {
|
|
28306
28753
|
"connectionOrigin": "enum(ConnectionOriginEnum)"
|
|
28307
28754
|
},
|