catocli 2.0.4__py3-none-any.whl → 2.0.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of catocli might be problematic. Click here for more details.
- build/lib/catocli/Utils/clidriver.py +268 -0
- build/lib/catocli/Utils/profile_manager.py +188 -0
- build/lib/catocli/Utils/version_checker.py +192 -0
- build/lib/catocli/__init__.py +2 -0
- build/lib/catocli/__main__.py +12 -0
- build/lib/catocli/parsers/configure/__init__.py +115 -0
- build/lib/catocli/parsers/configure/configure.py +307 -0
- build/lib/catocli/parsers/custom/__init__.py +57 -0
- build/lib/catocli/parsers/custom/customLib.py +561 -0
- build/lib/catocli/parsers/custom/export_rules/__init__.py +42 -0
- build/lib/catocli/parsers/custom/export_rules/export_rules.py +234 -0
- build/lib/catocli/parsers/custom/export_sites/__init__.py +21 -0
- build/lib/catocli/parsers/custom/export_sites/export_sites.py +372 -0
- build/lib/catocli/parsers/custom/import_rules_to_tf/__init__.py +58 -0
- build/lib/catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +451 -0
- build/lib/catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
- build/lib/catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
- build/lib/catocli/parsers/mutation_accountManagement/__init__.py +48 -0
- build/lib/catocli/parsers/mutation_admin/__init__.py +48 -0
- build/lib/catocli/parsers/mutation_container/__init__.py +138 -0
- build/lib/catocli/parsers/mutation_hardware/__init__.py +22 -0
- build/lib/catocli/parsers/mutation_policy/__init__.py +1305 -0
- build/lib/catocli/parsers/mutation_sandbox/__init__.py +35 -0
- build/lib/catocli/parsers/mutation_site/__init__.py +373 -0
- build/lib/catocli/parsers/mutation_sites/__init__.py +373 -0
- build/lib/catocli/parsers/mutation_xdr/__init__.py +48 -0
- build/lib/catocli/parsers/parserApiClient.py +513 -0
- build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountManagement/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountMetrics/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountRoles/__init__.py +16 -0
- build/lib/catocli/parsers/query_accountSnapshot/__init__.py +16 -0
- build/lib/catocli/parsers/query_admin/__init__.py +16 -0
- build/lib/catocli/parsers/query_admins/__init__.py +16 -0
- build/lib/catocli/parsers/query_appStats/__init__.py +16 -0
- build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +16 -0
- build/lib/catocli/parsers/query_auditFeed/__init__.py +16 -0
- build/lib/catocli/parsers/query_catalogs/__init__.py +16 -0
- build/lib/catocli/parsers/query_container/__init__.py +16 -0
- build/lib/catocli/parsers/query_devices/__init__.py +16 -0
- build/lib/catocli/parsers/query_entityLookup/__init__.py +16 -0
- build/lib/catocli/parsers/query_events/__init__.py +16 -0
- build/lib/catocli/parsers/query_eventsFeed/__init__.py +16 -0
- build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +16 -0
- build/lib/catocli/parsers/query_hardware/__init__.py +16 -0
- build/lib/catocli/parsers/query_hardwareManagement/__init__.py +16 -0
- build/lib/catocli/parsers/query_licensing/__init__.py +16 -0
- build/lib/catocli/parsers/query_policy/__init__.py +161 -0
- build/lib/catocli/parsers/query_sandbox/__init__.py +16 -0
- build/lib/catocli/parsers/query_site/__init__.py +100 -0
- build/lib/catocli/parsers/query_siteLocation/__init__.py +13 -0
- build/lib/catocli/parsers/query_subDomains/__init__.py +16 -0
- build/lib/catocli/parsers/query_xdr/__init__.py +35 -0
- build/lib/catocli/parsers/raw/__init__.py +12 -0
- build/lib/graphql_client/__init__.py +11 -0
- build/lib/graphql_client/api/__init__.py +3 -0
- build/lib/graphql_client/api/call_api.py +84 -0
- build/lib/graphql_client/api_client.py +192 -0
- build/lib/graphql_client/api_client_types.py +409 -0
- build/lib/graphql_client/configuration.py +232 -0
- build/lib/graphql_client/models/__init__.py +13 -0
- build/lib/graphql_client/models/no_schema.py +71 -0
- build/lib/schema/catolib.py +1141 -0
- build/lib/schema/importSchema.py +60 -0
- build/lib/schema/remove_policyid.py +89 -0
- build/lib/schema/remove_policyid_mutations.py +89 -0
- build/lib/scripts/catolib.py +62 -0
- build/lib/scripts/export_if_rules_to_json.py +188 -0
- build/lib/scripts/export_wf_rules_to_json.py +111 -0
- build/lib/scripts/import_wf_rules_to_tfstate.py +331 -0
- build/lib/vendor/certifi/__init__.py +4 -0
- build/lib/vendor/certifi/__main__.py +12 -0
- build/lib/vendor/certifi/core.py +114 -0
- build/lib/vendor/certifi/py.typed +0 -0
- build/lib/vendor/six.py +998 -0
- build/lib/vendor/urllib3/__init__.py +211 -0
- build/lib/vendor/urllib3/_base_connection.py +172 -0
- build/lib/vendor/urllib3/_collections.py +483 -0
- build/lib/vendor/urllib3/_request_methods.py +278 -0
- build/lib/vendor/urllib3/_version.py +16 -0
- build/lib/vendor/urllib3/connection.py +1033 -0
- build/lib/vendor/urllib3/connectionpool.py +1182 -0
- build/lib/vendor/urllib3/contrib/__init__.py +0 -0
- build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
- build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
- build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
- build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
- build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
- build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
- build/lib/vendor/urllib3/contrib/socks.py +228 -0
- build/lib/vendor/urllib3/exceptions.py +321 -0
- build/lib/vendor/urllib3/fields.py +341 -0
- build/lib/vendor/urllib3/filepost.py +89 -0
- build/lib/vendor/urllib3/http2/__init__.py +53 -0
- build/lib/vendor/urllib3/http2/connection.py +356 -0
- build/lib/vendor/urllib3/http2/probe.py +87 -0
- build/lib/vendor/urllib3/poolmanager.py +637 -0
- build/lib/vendor/urllib3/py.typed +2 -0
- build/lib/vendor/urllib3/response.py +1265 -0
- build/lib/vendor/urllib3/util/__init__.py +42 -0
- build/lib/vendor/urllib3/util/connection.py +137 -0
- build/lib/vendor/urllib3/util/proxy.py +43 -0
- build/lib/vendor/urllib3/util/request.py +256 -0
- build/lib/vendor/urllib3/util/response.py +101 -0
- build/lib/vendor/urllib3/util/retry.py +533 -0
- build/lib/vendor/urllib3/util/ssl_.py +513 -0
- build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
- build/lib/vendor/urllib3/util/ssltransport.py +276 -0
- build/lib/vendor/urllib3/util/timeout.py +275 -0
- build/lib/vendor/urllib3/util/url.py +471 -0
- build/lib/vendor/urllib3/util/util.py +42 -0
- build/lib/vendor/urllib3/util/wait.py +124 -0
- catocli/Utils/clidriver.py +1 -4
- catocli/__init__.py +1 -1
- catocli/parsers/custom/export_sites/export_sites.py +2 -2
- catocli/parsers/mutation_container/__init__.py +116 -0
- catocli/parsers/mutation_container_fqdn/README.md +7 -0
- catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
- catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
- catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
- catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
- catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
- catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
- catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
- catocli/parsers/parserApiClient.py +25 -11
- catocli/parsers/query_policy/README.md +0 -17
- catocli/parsers/query_policy/__init__.py +153 -8
- catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
- catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
- catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
- catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
- catocli/parsers/query_policy_internetFirewall/README.md +7 -0
- catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
- catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
- catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
- catocli/parsers/query_policy_socketLan/README.md +7 -0
- catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
- catocli/parsers/query_policy_terminalServer/README.md +7 -0
- catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
- catocli/parsers/query_policy_wanFirewall/README.md +7 -0
- catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
- catocli/parsers/query_policy_wanNetwork/README.md +7 -0
- catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
- catocli/parsers/query_site/README.md +0 -16
- catocli/parsers/query_site/__init__.py +92 -8
- catocli/parsers/query_site_availableVersionList/README.md +17 -0
- catocli/parsers/query_site_bgpPeer/README.md +17 -0
- catocli/parsers/query_site_bgpPeerList/README.md +17 -0
- catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
- catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
- catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
- catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
- catocli/parsers/raw/README.md +0 -14
- catocli/parsers/raw/__init__.py +0 -2
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/METADATA +1 -1
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/RECORD +290 -120
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/top_level.txt +1 -0
- graphql_client/api/call_api.py +4 -3
- models/mutation.container.fqdn.addValues.json +866 -0
- models/mutation.container.fqdn.createFromFile.json +819 -0
- models/mutation.container.fqdn.removeValues.json +866 -0
- models/mutation.container.fqdn.updateFromFile.json +1045 -0
- models/mutation.container.ipAddressRange.addValues.json +1020 -0
- models/mutation.container.ipAddressRange.createFromFile.json +819 -0
- models/mutation.container.ipAddressRange.removeValues.json +1020 -0
- models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
- models/mutation.policy.appTenantRestriction.addRule.json +8 -8
- models/mutation.policy.appTenantRestriction.addSection.json +1 -1
- models/mutation.policy.appTenantRestriction.createPolicyRevision.json +2 -2
- models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +2 -2
- models/mutation.policy.appTenantRestriction.moveRule.json +2 -2
- models/mutation.policy.appTenantRestriction.moveSection.json +1 -1
- models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +2 -2
- models/mutation.policy.appTenantRestriction.removeRule.json +2 -2
- models/mutation.policy.appTenantRestriction.removeSection.json +1 -1
- models/mutation.policy.appTenantRestriction.updatePolicy.json +2 -2
- models/mutation.policy.appTenantRestriction.updateRule.json +8 -8
- models/mutation.policy.appTenantRestriction.updateSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.addRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.addSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +1 -1
- models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +1 -1
- models/mutation.policy.dynamicIpAllocation.moveRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.moveSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +1 -1
- models/mutation.policy.dynamicIpAllocation.removeRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.removeSection.json +1 -1
- models/mutation.policy.dynamicIpAllocation.updatePolicy.json +1 -1
- models/mutation.policy.dynamicIpAllocation.updateRule.json +1 -1
- models/mutation.policy.dynamicIpAllocation.updateSection.json +1 -1
- models/mutation.policy.internetFirewall.addRule.json +502 -55
- models/mutation.policy.internetFirewall.addSection.json +1 -1
- models/mutation.policy.internetFirewall.createPolicyRevision.json +127 -10
- models/mutation.policy.internetFirewall.discardPolicyRevision.json +127 -10
- models/mutation.policy.internetFirewall.moveRule.json +127 -10
- models/mutation.policy.internetFirewall.moveSection.json +1 -1
- models/mutation.policy.internetFirewall.publishPolicyRevision.json +127 -10
- models/mutation.policy.internetFirewall.removeRule.json +127 -10
- models/mutation.policy.internetFirewall.removeSection.json +1 -1
- models/mutation.policy.internetFirewall.updatePolicy.json +127 -10
- models/mutation.policy.internetFirewall.updateRule.json +493 -55
- models/mutation.policy.internetFirewall.updateSection.json +1 -1
- models/mutation.policy.remotePortFwd.addRule.json +5 -5
- models/mutation.policy.remotePortFwd.addSection.json +1 -1
- models/mutation.policy.remotePortFwd.createPolicyRevision.json +2 -2
- models/mutation.policy.remotePortFwd.discardPolicyRevision.json +2 -2
- models/mutation.policy.remotePortFwd.moveRule.json +2 -2
- models/mutation.policy.remotePortFwd.moveSection.json +1 -1
- models/mutation.policy.remotePortFwd.publishPolicyRevision.json +2 -2
- models/mutation.policy.remotePortFwd.removeRule.json +2 -2
- models/mutation.policy.remotePortFwd.removeSection.json +1 -1
- models/mutation.policy.remotePortFwd.updatePolicy.json +2 -2
- models/mutation.policy.remotePortFwd.updateRule.json +5 -5
- models/mutation.policy.remotePortFwd.updateSection.json +1 -1
- models/mutation.policy.socketLan.addRule.json +16 -16
- models/mutation.policy.socketLan.addSection.json +1 -1
- models/mutation.policy.socketLan.createPolicyRevision.json +4 -4
- models/mutation.policy.socketLan.discardPolicyRevision.json +4 -4
- models/mutation.policy.socketLan.moveRule.json +4 -4
- models/mutation.policy.socketLan.moveSection.json +1 -1
- models/mutation.policy.socketLan.publishPolicyRevision.json +4 -4
- models/mutation.policy.socketLan.removeRule.json +4 -4
- models/mutation.policy.socketLan.removeSection.json +1 -1
- models/mutation.policy.socketLan.updatePolicy.json +4 -4
- models/mutation.policy.socketLan.updateRule.json +16 -16
- models/mutation.policy.socketLan.updateSection.json +1 -1
- models/mutation.policy.terminalServer.addRule.json +1 -1
- models/mutation.policy.terminalServer.addSection.json +1 -1
- models/mutation.policy.terminalServer.createPolicyRevision.json +1 -1
- models/mutation.policy.terminalServer.discardPolicyRevision.json +1 -1
- models/mutation.policy.terminalServer.moveRule.json +1 -1
- models/mutation.policy.terminalServer.moveSection.json +1 -1
- models/mutation.policy.terminalServer.publishPolicyRevision.json +1 -1
- models/mutation.policy.terminalServer.removeRule.json +1 -1
- models/mutation.policy.terminalServer.removeSection.json +1 -1
- models/mutation.policy.terminalServer.updatePolicy.json +1 -1
- models/mutation.policy.terminalServer.updateRule.json +1 -1
- models/mutation.policy.terminalServer.updateSection.json +1 -1
- models/mutation.policy.wanFirewall.addRule.json +500 -53
- models/mutation.policy.wanFirewall.addSection.json +1 -1
- models/mutation.policy.wanFirewall.createPolicyRevision.json +128 -11
- models/mutation.policy.wanFirewall.discardPolicyRevision.json +128 -11
- models/mutation.policy.wanFirewall.moveRule.json +128 -11
- models/mutation.policy.wanFirewall.moveSection.json +1 -1
- models/mutation.policy.wanFirewall.publishPolicyRevision.json +128 -11
- models/mutation.policy.wanFirewall.removeRule.json +128 -11
- models/mutation.policy.wanFirewall.removeSection.json +1 -1
- models/mutation.policy.wanFirewall.updatePolicy.json +128 -11
- models/mutation.policy.wanFirewall.updateRule.json +491 -53
- models/mutation.policy.wanFirewall.updateSection.json +1 -1
- models/mutation.policy.wanNetwork.addRule.json +13 -13
- models/mutation.policy.wanNetwork.addSection.json +1 -1
- models/mutation.policy.wanNetwork.createPolicyRevision.json +1 -1
- models/mutation.policy.wanNetwork.discardPolicyRevision.json +1 -1
- models/mutation.policy.wanNetwork.moveRule.json +1 -1
- models/mutation.policy.wanNetwork.moveSection.json +1 -1
- models/mutation.policy.wanNetwork.publishPolicyRevision.json +1 -1
- models/mutation.policy.wanNetwork.removeRule.json +1 -1
- models/mutation.policy.wanNetwork.removeSection.json +1 -1
- models/mutation.policy.wanNetwork.updatePolicy.json +1 -1
- models/mutation.policy.wanNetwork.updateRule.json +13 -13
- models/mutation.policy.wanNetwork.updateSection.json +1 -1
- models/query.policy.appTenantRestriction.policy.json +3086 -0
- models/query.policy.dynamicIpAllocation.policy.json +1934 -0
- models/query.policy.internetFirewall.policy.json +7833 -0
- models/query.policy.json +233 -0
- models/query.policy.remotePortFwd.policy.json +2387 -0
- models/query.policy.socketLan.policy.json +7140 -0
- models/query.policy.terminalServer.policy.json +1632 -0
- models/query.policy.wanFirewall.policy.json +9212 -0
- models/query.policy.wanNetwork.policy.json +8010 -0
- models/query.site.availableVersionList.json +365 -0
- models/query.site.bgpPeer.json +1917 -0
- models/query.site.bgpPeerList.json +2076 -0
- models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
- models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
- models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
- models/query.site.siteBgpStatus.json +869 -0
- schema/catolib.py +13 -6
- schema/remove_policyid.py +89 -0
- schema/remove_policyid_mutations.py +89 -0
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/LICENSE +0 -0
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/WHEEL +0 -0
- {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/entry_points.txt +0 -0
|
@@ -217,6 +217,108 @@
|
|
|
217
217
|
},
|
|
218
218
|
"varName": "action"
|
|
219
219
|
},
|
|
220
|
+
"activePeriod": {
|
|
221
|
+
"defaultValue": null,
|
|
222
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
223
|
+
"id_str": "updateRule___input___rule___activePeriod",
|
|
224
|
+
"name": "activePeriod",
|
|
225
|
+
"path": "updateRule.input.rule.activePeriod",
|
|
226
|
+
"requestStr": "$policyRuleActivePeriodUpdateInput:PolicyRuleActivePeriodUpdateInput ",
|
|
227
|
+
"required": false,
|
|
228
|
+
"responseStr": "activePeriod:$policyRuleActivePeriodUpdateInput ",
|
|
229
|
+
"type": {
|
|
230
|
+
"definition": {
|
|
231
|
+
"description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
|
|
232
|
+
"enumValues": null,
|
|
233
|
+
"fields": null,
|
|
234
|
+
"inputFields": {
|
|
235
|
+
"effectiveFrom": {
|
|
236
|
+
"defaultValue": null,
|
|
237
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
238
|
+
"id_str": "updateRule___input___rule___activePeriod___effectiveFrom",
|
|
239
|
+
"name": "effectiveFrom",
|
|
240
|
+
"path": "updateRule.input.rule.activePeriod.effectiveFrom",
|
|
241
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
242
|
+
"required": false,
|
|
243
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
244
|
+
"type": {
|
|
245
|
+
"kind": [
|
|
246
|
+
"SCALAR"
|
|
247
|
+
],
|
|
248
|
+
"name": "DateTime",
|
|
249
|
+
"non_null": false
|
|
250
|
+
},
|
|
251
|
+
"varName": "effectiveFrom"
|
|
252
|
+
},
|
|
253
|
+
"expiresAt": {
|
|
254
|
+
"defaultValue": null,
|
|
255
|
+
"description": "The time the rule expires, if not used, default null",
|
|
256
|
+
"id_str": "updateRule___input___rule___activePeriod___expiresAt",
|
|
257
|
+
"name": "expiresAt",
|
|
258
|
+
"path": "updateRule.input.rule.activePeriod.expiresAt",
|
|
259
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
260
|
+
"required": false,
|
|
261
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
262
|
+
"type": {
|
|
263
|
+
"kind": [
|
|
264
|
+
"SCALAR"
|
|
265
|
+
],
|
|
266
|
+
"name": "DateTime",
|
|
267
|
+
"non_null": false
|
|
268
|
+
},
|
|
269
|
+
"varName": "expiresAt"
|
|
270
|
+
},
|
|
271
|
+
"useEffectiveFrom": {
|
|
272
|
+
"defaultValue": null,
|
|
273
|
+
"description": null,
|
|
274
|
+
"id_str": "updateRule___input___rule___activePeriod___useEffectiveFrom",
|
|
275
|
+
"name": "useEffectiveFrom",
|
|
276
|
+
"path": "updateRule.input.rule.activePeriod.useEffectiveFrom",
|
|
277
|
+
"requestStr": "$useEffectiveFrom:Boolean ",
|
|
278
|
+
"required": false,
|
|
279
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
280
|
+
"type": {
|
|
281
|
+
"kind": [
|
|
282
|
+
"SCALAR"
|
|
283
|
+
],
|
|
284
|
+
"name": "Boolean",
|
|
285
|
+
"non_null": false
|
|
286
|
+
},
|
|
287
|
+
"varName": "useEffectiveFrom"
|
|
288
|
+
},
|
|
289
|
+
"useExpiresAt": {
|
|
290
|
+
"defaultValue": null,
|
|
291
|
+
"description": null,
|
|
292
|
+
"id_str": "updateRule___input___rule___activePeriod___useExpiresAt",
|
|
293
|
+
"name": "useExpiresAt",
|
|
294
|
+
"path": "updateRule.input.rule.activePeriod.useExpiresAt",
|
|
295
|
+
"requestStr": "$useExpiresAt:Boolean ",
|
|
296
|
+
"required": false,
|
|
297
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
298
|
+
"type": {
|
|
299
|
+
"kind": [
|
|
300
|
+
"SCALAR"
|
|
301
|
+
],
|
|
302
|
+
"name": "Boolean",
|
|
303
|
+
"non_null": false
|
|
304
|
+
},
|
|
305
|
+
"varName": "useExpiresAt"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"interfaces": null,
|
|
309
|
+
"kind": "INPUT_OBJECT",
|
|
310
|
+
"name": "PolicyRuleActivePeriodUpdateInput",
|
|
311
|
+
"possibleTypes": null
|
|
312
|
+
},
|
|
313
|
+
"indexType": "input_object",
|
|
314
|
+
"kind": [
|
|
315
|
+
"INPUT_OBJECT"
|
|
316
|
+
],
|
|
317
|
+
"name": "PolicyRuleActivePeriodUpdateInput",
|
|
318
|
+
"non_null": false
|
|
319
|
+
},
|
|
320
|
+
"varName": "policyRuleActivePeriodUpdateInput"
|
|
321
|
+
},
|
|
220
322
|
"connectionOrigin": {
|
|
221
323
|
"defaultValue": null,
|
|
222
324
|
"description": "Connection origin of the traffic",
|
|
@@ -267,7 +369,7 @@
|
|
|
267
369
|
},
|
|
268
370
|
"country": {
|
|
269
371
|
"defaultValue": null,
|
|
270
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
372
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
271
373
|
"id_str": "updateRule___input___rule___country",
|
|
272
374
|
"name": "country",
|
|
273
375
|
"path": "updateRule.input.rule.country",
|
|
@@ -379,7 +481,7 @@
|
|
|
379
481
|
},
|
|
380
482
|
"destination": {
|
|
381
483
|
"defaultValue": null,
|
|
382
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
484
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
383
485
|
"id_str": "updateRule___input___rule___destination",
|
|
384
486
|
"name": "destination",
|
|
385
487
|
"path": "updateRule.input.rule.destination",
|
|
@@ -612,7 +714,7 @@
|
|
|
612
714
|
"inputFields": {
|
|
613
715
|
"by": {
|
|
614
716
|
"defaultValue": "ID",
|
|
615
|
-
"description": "Defines the object identification method
|
|
717
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
616
718
|
"id_str": "updateRule___input___rule___destination___containers___fqdnContainer___by",
|
|
617
719
|
"name": "by",
|
|
618
720
|
"path": "updateRule.input.rule.destination.containers.fqdnContainer.by",
|
|
@@ -706,7 +808,7 @@
|
|
|
706
808
|
"inputFields": {
|
|
707
809
|
"by": {
|
|
708
810
|
"defaultValue": "ID",
|
|
709
|
-
"description": "Defines the object identification method
|
|
811
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
710
812
|
"id_str": "updateRule___input___rule___destination___containers___ipAddressRangeContainer___by",
|
|
711
813
|
"name": "by",
|
|
712
814
|
"path": "updateRule.input.rule.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -988,7 +1090,7 @@
|
|
|
988
1090
|
},
|
|
989
1091
|
"customCategory": {
|
|
990
1092
|
"defaultValue": null,
|
|
991
|
-
"description": "Custom Categories
|
|
1093
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
992
1094
|
"id_str": "updateRule___input___rule___destination___customCategory",
|
|
993
1095
|
"name": "customCategory",
|
|
994
1096
|
"path": "updateRule.input.rule.destination.customCategory",
|
|
@@ -1455,7 +1557,7 @@
|
|
|
1455
1557
|
},
|
|
1456
1558
|
"device": {
|
|
1457
1559
|
"defaultValue": null,
|
|
1458
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
1560
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1459
1561
|
"id_str": "updateRule___input___rule___device",
|
|
1460
1562
|
"name": "device",
|
|
1461
1563
|
"path": "updateRule.input.rule.device",
|
|
@@ -1699,7 +1801,7 @@
|
|
|
1699
1801
|
},
|
|
1700
1802
|
"deviceOS": {
|
|
1701
1803
|
"defaultValue": null,
|
|
1702
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
1804
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
1703
1805
|
"id_str": "updateRule___input___rule___deviceOS",
|
|
1704
1806
|
"name": "deviceOS",
|
|
1705
1807
|
"path": "updateRule.input.rule.deviceOS",
|
|
@@ -2179,7 +2281,7 @@
|
|
|
2179
2281
|
"inputFields": {
|
|
2180
2282
|
"by": {
|
|
2181
2283
|
"defaultValue": "ID",
|
|
2182
|
-
"description": "Defines the object identification method
|
|
2284
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
2183
2285
|
"id_str": "updateRule___input___rule___exceptions___destination___containers___fqdnContainer___by",
|
|
2184
2286
|
"name": "by",
|
|
2185
2287
|
"path": "updateRule.input.rule.exceptions.destination.containers.fqdnContainer.by",
|
|
@@ -2274,7 +2376,7 @@
|
|
|
2274
2376
|
"inputFields": {
|
|
2275
2377
|
"by": {
|
|
2276
2378
|
"defaultValue": "ID",
|
|
2277
|
-
"description": "Defines the object identification method
|
|
2379
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
2278
2380
|
"id_str": "updateRule___input___rule___exceptions___destination___containers___ipAddressRangeContainer___by",
|
|
2279
2381
|
"name": "by",
|
|
2280
2382
|
"path": "updateRule.input.rule.exceptions.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -2560,7 +2662,7 @@
|
|
|
2560
2662
|
},
|
|
2561
2663
|
"customCategory": {
|
|
2562
2664
|
"defaultValue": "[]",
|
|
2563
|
-
"description": "Custom Categories
|
|
2665
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
2564
2666
|
"id_str": "updateRule___input___rule___exceptions___destination___customCategory",
|
|
2565
2667
|
"name": "customCategory",
|
|
2566
2668
|
"path": "updateRule.input.rule.exceptions.destination.customCategory",
|
|
@@ -3715,7 +3817,7 @@
|
|
|
3715
3817
|
"inputFields": {
|
|
3716
3818
|
"by": {
|
|
3717
3819
|
"defaultValue": "ID",
|
|
3718
|
-
"description": "Defines the object identification method
|
|
3820
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
3719
3821
|
"id_str": "updateRule___input___rule___exceptions___source___floatingSubnet___by",
|
|
3720
3822
|
"name": "by",
|
|
3721
3823
|
"path": "updateRule.input.rule.exceptions.source.floatingSubnet.by",
|
|
@@ -5104,7 +5206,7 @@
|
|
|
5104
5206
|
},
|
|
5105
5207
|
"service": {
|
|
5106
5208
|
"defaultValue": null,
|
|
5107
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
5209
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5108
5210
|
"id_str": "updateRule___input___rule___service",
|
|
5109
5211
|
"name": "service",
|
|
5110
5212
|
"path": "updateRule.input.rule.service",
|
|
@@ -5409,7 +5511,7 @@
|
|
|
5409
5511
|
},
|
|
5410
5512
|
"source": {
|
|
5411
5513
|
"defaultValue": null,
|
|
5412
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
5514
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
5413
5515
|
"id_str": "updateRule___input___rule___source",
|
|
5414
5516
|
"name": "source",
|
|
5415
5517
|
"path": "updateRule.input.rule.source",
|
|
@@ -5439,7 +5541,7 @@
|
|
|
5439
5541
|
"inputFields": {
|
|
5440
5542
|
"by": {
|
|
5441
5543
|
"defaultValue": "ID",
|
|
5442
|
-
"description": "Defines the object identification method
|
|
5544
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
5443
5545
|
"id_str": "updateRule___input___rule___source___floatingSubnet___by",
|
|
5444
5546
|
"name": "by",
|
|
5445
5547
|
"path": "updateRule.input.rule.source.floatingSubnet.by",
|
|
@@ -6519,7 +6621,7 @@
|
|
|
6519
6621
|
"inputFields": {
|
|
6520
6622
|
"enabled": {
|
|
6521
6623
|
"defaultValue": null,
|
|
6522
|
-
"description": "TRUE
|
|
6624
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
6523
6625
|
"id_str": "updateRule___input___rule___tracking___alert___enabled",
|
|
6524
6626
|
"name": "enabled",
|
|
6525
6627
|
"path": "updateRule.input.rule.tracking.alert.enabled",
|
|
@@ -7068,6 +7170,8 @@
|
|
|
7068
7170
|
"PolicyMutationError": true,
|
|
7069
7171
|
"PolicyMutationRevisionInput": true,
|
|
7070
7172
|
"PolicyMutationStatus": true,
|
|
7173
|
+
"PolicyRuleActivePeriod": true,
|
|
7174
|
+
"PolicyRuleActivePeriodUpdateInput": true,
|
|
7071
7175
|
"PolicyRuleTrackingAlert": true,
|
|
7072
7176
|
"PolicyRuleTrackingAlertUpdateInput": true,
|
|
7073
7177
|
"PolicyRuleTrackingEvent": true,
|
|
@@ -7304,6 +7408,108 @@
|
|
|
7304
7408
|
},
|
|
7305
7409
|
"varName": "action"
|
|
7306
7410
|
},
|
|
7411
|
+
"activePeriod": {
|
|
7412
|
+
"defaultValue": null,
|
|
7413
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
7414
|
+
"id_str": "updateRule___input___rule___activePeriod",
|
|
7415
|
+
"name": "activePeriod",
|
|
7416
|
+
"path": "updateRule.input.rule.activePeriod",
|
|
7417
|
+
"requestStr": "$policyRuleActivePeriodUpdateInput:PolicyRuleActivePeriodUpdateInput ",
|
|
7418
|
+
"required": false,
|
|
7419
|
+
"responseStr": "activePeriod:$policyRuleActivePeriodUpdateInput ",
|
|
7420
|
+
"type": {
|
|
7421
|
+
"definition": {
|
|
7422
|
+
"description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
|
|
7423
|
+
"enumValues": null,
|
|
7424
|
+
"fields": null,
|
|
7425
|
+
"inputFields": {
|
|
7426
|
+
"effectiveFrom": {
|
|
7427
|
+
"defaultValue": null,
|
|
7428
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
7429
|
+
"id_str": "updateRule___input___rule___activePeriod___effectiveFrom",
|
|
7430
|
+
"name": "effectiveFrom",
|
|
7431
|
+
"path": "updateRule.input.rule.activePeriod.effectiveFrom",
|
|
7432
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
7433
|
+
"required": false,
|
|
7434
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
7435
|
+
"type": {
|
|
7436
|
+
"kind": [
|
|
7437
|
+
"SCALAR"
|
|
7438
|
+
],
|
|
7439
|
+
"name": "DateTime",
|
|
7440
|
+
"non_null": false
|
|
7441
|
+
},
|
|
7442
|
+
"varName": "effectiveFrom"
|
|
7443
|
+
},
|
|
7444
|
+
"expiresAt": {
|
|
7445
|
+
"defaultValue": null,
|
|
7446
|
+
"description": "The time the rule expires, if not used, default null",
|
|
7447
|
+
"id_str": "updateRule___input___rule___activePeriod___expiresAt",
|
|
7448
|
+
"name": "expiresAt",
|
|
7449
|
+
"path": "updateRule.input.rule.activePeriod.expiresAt",
|
|
7450
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
7451
|
+
"required": false,
|
|
7452
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
7453
|
+
"type": {
|
|
7454
|
+
"kind": [
|
|
7455
|
+
"SCALAR"
|
|
7456
|
+
],
|
|
7457
|
+
"name": "DateTime",
|
|
7458
|
+
"non_null": false
|
|
7459
|
+
},
|
|
7460
|
+
"varName": "expiresAt"
|
|
7461
|
+
},
|
|
7462
|
+
"useEffectiveFrom": {
|
|
7463
|
+
"defaultValue": null,
|
|
7464
|
+
"description": null,
|
|
7465
|
+
"id_str": "updateRule___input___rule___activePeriod___useEffectiveFrom",
|
|
7466
|
+
"name": "useEffectiveFrom",
|
|
7467
|
+
"path": "updateRule.input.rule.activePeriod.useEffectiveFrom",
|
|
7468
|
+
"requestStr": "$useEffectiveFrom:Boolean ",
|
|
7469
|
+
"required": false,
|
|
7470
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
7471
|
+
"type": {
|
|
7472
|
+
"kind": [
|
|
7473
|
+
"SCALAR"
|
|
7474
|
+
],
|
|
7475
|
+
"name": "Boolean",
|
|
7476
|
+
"non_null": false
|
|
7477
|
+
},
|
|
7478
|
+
"varName": "useEffectiveFrom"
|
|
7479
|
+
},
|
|
7480
|
+
"useExpiresAt": {
|
|
7481
|
+
"defaultValue": null,
|
|
7482
|
+
"description": null,
|
|
7483
|
+
"id_str": "updateRule___input___rule___activePeriod___useExpiresAt",
|
|
7484
|
+
"name": "useExpiresAt",
|
|
7485
|
+
"path": "updateRule.input.rule.activePeriod.useExpiresAt",
|
|
7486
|
+
"requestStr": "$useExpiresAt:Boolean ",
|
|
7487
|
+
"required": false,
|
|
7488
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
7489
|
+
"type": {
|
|
7490
|
+
"kind": [
|
|
7491
|
+
"SCALAR"
|
|
7492
|
+
],
|
|
7493
|
+
"name": "Boolean",
|
|
7494
|
+
"non_null": false
|
|
7495
|
+
},
|
|
7496
|
+
"varName": "useExpiresAt"
|
|
7497
|
+
}
|
|
7498
|
+
},
|
|
7499
|
+
"interfaces": null,
|
|
7500
|
+
"kind": "INPUT_OBJECT",
|
|
7501
|
+
"name": "PolicyRuleActivePeriodUpdateInput",
|
|
7502
|
+
"possibleTypes": null
|
|
7503
|
+
},
|
|
7504
|
+
"indexType": "input_object",
|
|
7505
|
+
"kind": [
|
|
7506
|
+
"INPUT_OBJECT"
|
|
7507
|
+
],
|
|
7508
|
+
"name": "PolicyRuleActivePeriodUpdateInput",
|
|
7509
|
+
"non_null": false
|
|
7510
|
+
},
|
|
7511
|
+
"varName": "policyRuleActivePeriodUpdateInput"
|
|
7512
|
+
},
|
|
7307
7513
|
"connectionOrigin": {
|
|
7308
7514
|
"defaultValue": null,
|
|
7309
7515
|
"description": "Connection origin of the traffic",
|
|
@@ -7354,7 +7560,7 @@
|
|
|
7354
7560
|
},
|
|
7355
7561
|
"country": {
|
|
7356
7562
|
"defaultValue": null,
|
|
7357
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
7563
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7358
7564
|
"id_str": "updateRule___input___rule___country",
|
|
7359
7565
|
"name": "country",
|
|
7360
7566
|
"path": "updateRule.input.rule.country",
|
|
@@ -7466,7 +7672,7 @@
|
|
|
7466
7672
|
},
|
|
7467
7673
|
"destination": {
|
|
7468
7674
|
"defaultValue": null,
|
|
7469
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
7675
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
7470
7676
|
"id_str": "updateRule___input___rule___destination",
|
|
7471
7677
|
"name": "destination",
|
|
7472
7678
|
"path": "updateRule.input.rule.destination",
|
|
@@ -7699,7 +7905,7 @@
|
|
|
7699
7905
|
"inputFields": {
|
|
7700
7906
|
"by": {
|
|
7701
7907
|
"defaultValue": "ID",
|
|
7702
|
-
"description": "Defines the object identification method
|
|
7908
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
7703
7909
|
"id_str": "updateRule___input___rule___destination___containers___fqdnContainer___by",
|
|
7704
7910
|
"name": "by",
|
|
7705
7911
|
"path": "updateRule.input.rule.destination.containers.fqdnContainer.by",
|
|
@@ -7793,7 +7999,7 @@
|
|
|
7793
7999
|
"inputFields": {
|
|
7794
8000
|
"by": {
|
|
7795
8001
|
"defaultValue": "ID",
|
|
7796
|
-
"description": "Defines the object identification method
|
|
8002
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
7797
8003
|
"id_str": "updateRule___input___rule___destination___containers___ipAddressRangeContainer___by",
|
|
7798
8004
|
"name": "by",
|
|
7799
8005
|
"path": "updateRule.input.rule.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -8075,7 +8281,7 @@
|
|
|
8075
8281
|
},
|
|
8076
8282
|
"customCategory": {
|
|
8077
8283
|
"defaultValue": null,
|
|
8078
|
-
"description": "Custom Categories
|
|
8284
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
8079
8285
|
"id_str": "updateRule___input___rule___destination___customCategory",
|
|
8080
8286
|
"name": "customCategory",
|
|
8081
8287
|
"path": "updateRule.input.rule.destination.customCategory",
|
|
@@ -8542,7 +8748,7 @@
|
|
|
8542
8748
|
},
|
|
8543
8749
|
"device": {
|
|
8544
8750
|
"defaultValue": null,
|
|
8545
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
8751
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
8546
8752
|
"id_str": "updateRule___input___rule___device",
|
|
8547
8753
|
"name": "device",
|
|
8548
8754
|
"path": "updateRule.input.rule.device",
|
|
@@ -8786,7 +8992,7 @@
|
|
|
8786
8992
|
},
|
|
8787
8993
|
"deviceOS": {
|
|
8788
8994
|
"defaultValue": null,
|
|
8789
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
8995
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
8790
8996
|
"id_str": "updateRule___input___rule___deviceOS",
|
|
8791
8997
|
"name": "deviceOS",
|
|
8792
8998
|
"path": "updateRule.input.rule.deviceOS",
|
|
@@ -9266,7 +9472,7 @@
|
|
|
9266
9472
|
"inputFields": {
|
|
9267
9473
|
"by": {
|
|
9268
9474
|
"defaultValue": "ID",
|
|
9269
|
-
"description": "Defines the object identification method
|
|
9475
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
9270
9476
|
"id_str": "updateRule___input___rule___exceptions___destination___containers___fqdnContainer___by",
|
|
9271
9477
|
"name": "by",
|
|
9272
9478
|
"path": "updateRule.input.rule.exceptions.destination.containers.fqdnContainer.by",
|
|
@@ -9361,7 +9567,7 @@
|
|
|
9361
9567
|
"inputFields": {
|
|
9362
9568
|
"by": {
|
|
9363
9569
|
"defaultValue": "ID",
|
|
9364
|
-
"description": "Defines the object identification method
|
|
9570
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
9365
9571
|
"id_str": "updateRule___input___rule___exceptions___destination___containers___ipAddressRangeContainer___by",
|
|
9366
9572
|
"name": "by",
|
|
9367
9573
|
"path": "updateRule.input.rule.exceptions.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -9647,7 +9853,7 @@
|
|
|
9647
9853
|
},
|
|
9648
9854
|
"customCategory": {
|
|
9649
9855
|
"defaultValue": "[]",
|
|
9650
|
-
"description": "Custom Categories
|
|
9856
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
9651
9857
|
"id_str": "updateRule___input___rule___exceptions___destination___customCategory",
|
|
9652
9858
|
"name": "customCategory",
|
|
9653
9859
|
"path": "updateRule.input.rule.exceptions.destination.customCategory",
|
|
@@ -10802,7 +11008,7 @@
|
|
|
10802
11008
|
"inputFields": {
|
|
10803
11009
|
"by": {
|
|
10804
11010
|
"defaultValue": "ID",
|
|
10805
|
-
"description": "Defines the object identification method
|
|
11011
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
10806
11012
|
"id_str": "updateRule___input___rule___exceptions___source___floatingSubnet___by",
|
|
10807
11013
|
"name": "by",
|
|
10808
11014
|
"path": "updateRule.input.rule.exceptions.source.floatingSubnet.by",
|
|
@@ -12191,7 +12397,7 @@
|
|
|
12191
12397
|
},
|
|
12192
12398
|
"service": {
|
|
12193
12399
|
"defaultValue": null,
|
|
12194
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
12400
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
12195
12401
|
"id_str": "updateRule___input___rule___service",
|
|
12196
12402
|
"name": "service",
|
|
12197
12403
|
"path": "updateRule.input.rule.service",
|
|
@@ -12496,7 +12702,7 @@
|
|
|
12496
12702
|
},
|
|
12497
12703
|
"source": {
|
|
12498
12704
|
"defaultValue": null,
|
|
12499
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
12705
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
12500
12706
|
"id_str": "updateRule___input___rule___source",
|
|
12501
12707
|
"name": "source",
|
|
12502
12708
|
"path": "updateRule.input.rule.source",
|
|
@@ -12526,7 +12732,7 @@
|
|
|
12526
12732
|
"inputFields": {
|
|
12527
12733
|
"by": {
|
|
12528
12734
|
"defaultValue": "ID",
|
|
12529
|
-
"description": "Defines the object identification method
|
|
12735
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
12530
12736
|
"id_str": "updateRule___input___rule___source___floatingSubnet___by",
|
|
12531
12737
|
"name": "by",
|
|
12532
12738
|
"path": "updateRule.input.rule.source.floatingSubnet.by",
|
|
@@ -13606,7 +13812,7 @@
|
|
|
13606
13812
|
"inputFields": {
|
|
13607
13813
|
"enabled": {
|
|
13608
13814
|
"defaultValue": null,
|
|
13609
|
-
"description": "TRUE
|
|
13815
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
13610
13816
|
"id_str": "updateRule___input___rule___tracking___alert___enabled",
|
|
13611
13817
|
"name": "enabled",
|
|
13612
13818
|
"path": "updateRule.input.rule.tracking.alert.enabled",
|
|
@@ -14275,6 +14481,108 @@
|
|
|
14275
14481
|
},
|
|
14276
14482
|
"varName": "action"
|
|
14277
14483
|
},
|
|
14484
|
+
"activePeriod": {
|
|
14485
|
+
"defaultValue": null,
|
|
14486
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
14487
|
+
"id_str": "updateRule___input___rule___activePeriod",
|
|
14488
|
+
"name": "activePeriod",
|
|
14489
|
+
"path": "updateRule.input.rule.activePeriod",
|
|
14490
|
+
"requestStr": "$policyRuleActivePeriodUpdateInput:PolicyRuleActivePeriodUpdateInput ",
|
|
14491
|
+
"required": false,
|
|
14492
|
+
"responseStr": "activePeriod:$policyRuleActivePeriodUpdateInput ",
|
|
14493
|
+
"type": {
|
|
14494
|
+
"definition": {
|
|
14495
|
+
"description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
|
|
14496
|
+
"enumValues": null,
|
|
14497
|
+
"fields": null,
|
|
14498
|
+
"inputFields": {
|
|
14499
|
+
"effectiveFrom": {
|
|
14500
|
+
"defaultValue": null,
|
|
14501
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
14502
|
+
"id_str": "updateRule___input___rule___activePeriod___effectiveFrom",
|
|
14503
|
+
"name": "effectiveFrom",
|
|
14504
|
+
"path": "updateRule.input.rule.activePeriod.effectiveFrom",
|
|
14505
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
14506
|
+
"required": false,
|
|
14507
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
14508
|
+
"type": {
|
|
14509
|
+
"kind": [
|
|
14510
|
+
"SCALAR"
|
|
14511
|
+
],
|
|
14512
|
+
"name": "DateTime",
|
|
14513
|
+
"non_null": false
|
|
14514
|
+
},
|
|
14515
|
+
"varName": "effectiveFrom"
|
|
14516
|
+
},
|
|
14517
|
+
"expiresAt": {
|
|
14518
|
+
"defaultValue": null,
|
|
14519
|
+
"description": "The time the rule expires, if not used, default null",
|
|
14520
|
+
"id_str": "updateRule___input___rule___activePeriod___expiresAt",
|
|
14521
|
+
"name": "expiresAt",
|
|
14522
|
+
"path": "updateRule.input.rule.activePeriod.expiresAt",
|
|
14523
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
14524
|
+
"required": false,
|
|
14525
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
14526
|
+
"type": {
|
|
14527
|
+
"kind": [
|
|
14528
|
+
"SCALAR"
|
|
14529
|
+
],
|
|
14530
|
+
"name": "DateTime",
|
|
14531
|
+
"non_null": false
|
|
14532
|
+
},
|
|
14533
|
+
"varName": "expiresAt"
|
|
14534
|
+
},
|
|
14535
|
+
"useEffectiveFrom": {
|
|
14536
|
+
"defaultValue": null,
|
|
14537
|
+
"description": null,
|
|
14538
|
+
"id_str": "updateRule___input___rule___activePeriod___useEffectiveFrom",
|
|
14539
|
+
"name": "useEffectiveFrom",
|
|
14540
|
+
"path": "updateRule.input.rule.activePeriod.useEffectiveFrom",
|
|
14541
|
+
"requestStr": "$useEffectiveFrom:Boolean ",
|
|
14542
|
+
"required": false,
|
|
14543
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
14544
|
+
"type": {
|
|
14545
|
+
"kind": [
|
|
14546
|
+
"SCALAR"
|
|
14547
|
+
],
|
|
14548
|
+
"name": "Boolean",
|
|
14549
|
+
"non_null": false
|
|
14550
|
+
},
|
|
14551
|
+
"varName": "useEffectiveFrom"
|
|
14552
|
+
},
|
|
14553
|
+
"useExpiresAt": {
|
|
14554
|
+
"defaultValue": null,
|
|
14555
|
+
"description": null,
|
|
14556
|
+
"id_str": "updateRule___input___rule___activePeriod___useExpiresAt",
|
|
14557
|
+
"name": "useExpiresAt",
|
|
14558
|
+
"path": "updateRule.input.rule.activePeriod.useExpiresAt",
|
|
14559
|
+
"requestStr": "$useExpiresAt:Boolean ",
|
|
14560
|
+
"required": false,
|
|
14561
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
14562
|
+
"type": {
|
|
14563
|
+
"kind": [
|
|
14564
|
+
"SCALAR"
|
|
14565
|
+
],
|
|
14566
|
+
"name": "Boolean",
|
|
14567
|
+
"non_null": false
|
|
14568
|
+
},
|
|
14569
|
+
"varName": "useExpiresAt"
|
|
14570
|
+
}
|
|
14571
|
+
},
|
|
14572
|
+
"interfaces": null,
|
|
14573
|
+
"kind": "INPUT_OBJECT",
|
|
14574
|
+
"name": "PolicyRuleActivePeriodUpdateInput",
|
|
14575
|
+
"possibleTypes": null
|
|
14576
|
+
},
|
|
14577
|
+
"indexType": "input_object",
|
|
14578
|
+
"kind": [
|
|
14579
|
+
"INPUT_OBJECT"
|
|
14580
|
+
],
|
|
14581
|
+
"name": "PolicyRuleActivePeriodUpdateInput",
|
|
14582
|
+
"non_null": false
|
|
14583
|
+
},
|
|
14584
|
+
"varName": "policyRuleActivePeriodUpdateInput"
|
|
14585
|
+
},
|
|
14278
14586
|
"connectionOrigin": {
|
|
14279
14587
|
"defaultValue": null,
|
|
14280
14588
|
"description": "Connection origin of the traffic",
|
|
@@ -14325,7 +14633,7 @@
|
|
|
14325
14633
|
},
|
|
14326
14634
|
"country": {
|
|
14327
14635
|
"defaultValue": null,
|
|
14328
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
14636
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
14329
14637
|
"id_str": "updateRule___input___rule___country",
|
|
14330
14638
|
"name": "country",
|
|
14331
14639
|
"path": "updateRule.input.rule.country",
|
|
@@ -14437,7 +14745,7 @@
|
|
|
14437
14745
|
},
|
|
14438
14746
|
"destination": {
|
|
14439
14747
|
"defaultValue": null,
|
|
14440
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
14748
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
14441
14749
|
"id_str": "updateRule___input___rule___destination",
|
|
14442
14750
|
"name": "destination",
|
|
14443
14751
|
"path": "updateRule.input.rule.destination",
|
|
@@ -14670,7 +14978,7 @@
|
|
|
14670
14978
|
"inputFields": {
|
|
14671
14979
|
"by": {
|
|
14672
14980
|
"defaultValue": "ID",
|
|
14673
|
-
"description": "Defines the object identification method
|
|
14981
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
14674
14982
|
"id_str": "updateRule___input___rule___destination___containers___fqdnContainer___by",
|
|
14675
14983
|
"name": "by",
|
|
14676
14984
|
"path": "updateRule.input.rule.destination.containers.fqdnContainer.by",
|
|
@@ -14764,7 +15072,7 @@
|
|
|
14764
15072
|
"inputFields": {
|
|
14765
15073
|
"by": {
|
|
14766
15074
|
"defaultValue": "ID",
|
|
14767
|
-
"description": "Defines the object identification method
|
|
15075
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
14768
15076
|
"id_str": "updateRule___input___rule___destination___containers___ipAddressRangeContainer___by",
|
|
14769
15077
|
"name": "by",
|
|
14770
15078
|
"path": "updateRule.input.rule.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -15046,7 +15354,7 @@
|
|
|
15046
15354
|
},
|
|
15047
15355
|
"customCategory": {
|
|
15048
15356
|
"defaultValue": null,
|
|
15049
|
-
"description": "Custom Categories
|
|
15357
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
15050
15358
|
"id_str": "updateRule___input___rule___destination___customCategory",
|
|
15051
15359
|
"name": "customCategory",
|
|
15052
15360
|
"path": "updateRule.input.rule.destination.customCategory",
|
|
@@ -15513,7 +15821,7 @@
|
|
|
15513
15821
|
},
|
|
15514
15822
|
"device": {
|
|
15515
15823
|
"defaultValue": null,
|
|
15516
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
15824
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
15517
15825
|
"id_str": "updateRule___input___rule___device",
|
|
15518
15826
|
"name": "device",
|
|
15519
15827
|
"path": "updateRule.input.rule.device",
|
|
@@ -15757,7 +16065,7 @@
|
|
|
15757
16065
|
},
|
|
15758
16066
|
"deviceOS": {
|
|
15759
16067
|
"defaultValue": null,
|
|
15760
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
16068
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
15761
16069
|
"id_str": "updateRule___input___rule___deviceOS",
|
|
15762
16070
|
"name": "deviceOS",
|
|
15763
16071
|
"path": "updateRule.input.rule.deviceOS",
|
|
@@ -16237,7 +16545,7 @@
|
|
|
16237
16545
|
"inputFields": {
|
|
16238
16546
|
"by": {
|
|
16239
16547
|
"defaultValue": "ID",
|
|
16240
|
-
"description": "Defines the object identification method
|
|
16548
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
16241
16549
|
"id_str": "updateRule___input___rule___exceptions___destination___containers___fqdnContainer___by",
|
|
16242
16550
|
"name": "by",
|
|
16243
16551
|
"path": "updateRule.input.rule.exceptions.destination.containers.fqdnContainer.by",
|
|
@@ -16332,7 +16640,7 @@
|
|
|
16332
16640
|
"inputFields": {
|
|
16333
16641
|
"by": {
|
|
16334
16642
|
"defaultValue": "ID",
|
|
16335
|
-
"description": "Defines the object identification method
|
|
16643
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
16336
16644
|
"id_str": "updateRule___input___rule___exceptions___destination___containers___ipAddressRangeContainer___by",
|
|
16337
16645
|
"name": "by",
|
|
16338
16646
|
"path": "updateRule.input.rule.exceptions.destination.containers.ipAddressRangeContainer.by",
|
|
@@ -16618,7 +16926,7 @@
|
|
|
16618
16926
|
},
|
|
16619
16927
|
"customCategory": {
|
|
16620
16928
|
"defaultValue": "[]",
|
|
16621
|
-
"description": "Custom Categories
|
|
16929
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
16622
16930
|
"id_str": "updateRule___input___rule___exceptions___destination___customCategory",
|
|
16623
16931
|
"name": "customCategory",
|
|
16624
16932
|
"path": "updateRule.input.rule.exceptions.destination.customCategory",
|
|
@@ -17773,7 +18081,7 @@
|
|
|
17773
18081
|
"inputFields": {
|
|
17774
18082
|
"by": {
|
|
17775
18083
|
"defaultValue": "ID",
|
|
17776
|
-
"description": "Defines the object identification method
|
|
18084
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
17777
18085
|
"id_str": "updateRule___input___rule___exceptions___source___floatingSubnet___by",
|
|
17778
18086
|
"name": "by",
|
|
17779
18087
|
"path": "updateRule.input.rule.exceptions.source.floatingSubnet.by",
|
|
@@ -19162,7 +19470,7 @@
|
|
|
19162
19470
|
},
|
|
19163
19471
|
"service": {
|
|
19164
19472
|
"defaultValue": null,
|
|
19165
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
19473
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
19166
19474
|
"id_str": "updateRule___input___rule___service",
|
|
19167
19475
|
"name": "service",
|
|
19168
19476
|
"path": "updateRule.input.rule.service",
|
|
@@ -19467,7 +19775,7 @@
|
|
|
19467
19775
|
},
|
|
19468
19776
|
"source": {
|
|
19469
19777
|
"defaultValue": null,
|
|
19470
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
19778
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
19471
19779
|
"id_str": "updateRule___input___rule___source",
|
|
19472
19780
|
"name": "source",
|
|
19473
19781
|
"path": "updateRule.input.rule.source",
|
|
@@ -19497,7 +19805,7 @@
|
|
|
19497
19805
|
"inputFields": {
|
|
19498
19806
|
"by": {
|
|
19499
19807
|
"defaultValue": "ID",
|
|
19500
|
-
"description": "Defines the object identification method
|
|
19808
|
+
"description": "Defines the object identification method – by ID (default) or by name",
|
|
19501
19809
|
"id_str": "updateRule___input___rule___source___floatingSubnet___by",
|
|
19502
19810
|
"name": "by",
|
|
19503
19811
|
"path": "updateRule.input.rule.source.floatingSubnet.by",
|
|
@@ -20577,7 +20885,7 @@
|
|
|
20577
20885
|
"inputFields": {
|
|
20578
20886
|
"enabled": {
|
|
20579
20887
|
"defaultValue": null,
|
|
20580
|
-
"description": "TRUE
|
|
20888
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
20581
20889
|
"id_str": "updateRule___input___rule___tracking___alert___enabled",
|
|
20582
20890
|
"name": "enabled",
|
|
20583
20891
|
"path": "updateRule.input.rule.tracking.alert.enabled",
|
|
@@ -21068,7 +21376,7 @@
|
|
|
21068
21376
|
"responseStr": "errors:$policyMutationError ",
|
|
21069
21377
|
"type": {
|
|
21070
21378
|
"definition": {
|
|
21071
|
-
"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
|
|
21379
|
+
"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\"",
|
|
21072
21380
|
"enumValues": null,
|
|
21073
21381
|
"fields": {
|
|
21074
21382
|
"errorCode": {
|
|
@@ -21373,6 +21681,122 @@
|
|
|
21373
21681
|
},
|
|
21374
21682
|
"varName": "action"
|
|
21375
21683
|
},
|
|
21684
|
+
"activePeriod": {
|
|
21685
|
+
"alias": "policyRuleActivePeriodActivePeriod: activePeriod",
|
|
21686
|
+
"args": {},
|
|
21687
|
+
"deprecationReason": null,
|
|
21688
|
+
"description": "The time period during which the rule is active, outside this period, the rule is inactive",
|
|
21689
|
+
"id_str": "internetFirewall___updateRule___rule___rule___activePeriod",
|
|
21690
|
+
"isDeprecated": false,
|
|
21691
|
+
"name": "activePeriod",
|
|
21692
|
+
"path": "internetFirewall.updateRule.rule.rule.activePeriod",
|
|
21693
|
+
"requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
|
|
21694
|
+
"required": true,
|
|
21695
|
+
"responseStr": "activePeriod:$policyRuleActivePeriod ",
|
|
21696
|
+
"type": {
|
|
21697
|
+
"definition": {
|
|
21698
|
+
"description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
|
|
21699
|
+
"enumValues": null,
|
|
21700
|
+
"fields": {
|
|
21701
|
+
"effectiveFrom": {
|
|
21702
|
+
"args": {},
|
|
21703
|
+
"deprecationReason": null,
|
|
21704
|
+
"description": "The time the rule becomes active, if not used, default null",
|
|
21705
|
+
"id_str": "internetFirewall___updateRule___rule___rule___activePeriod___effectiveFrom",
|
|
21706
|
+
"isDeprecated": false,
|
|
21707
|
+
"name": "effectiveFrom",
|
|
21708
|
+
"path": "internetFirewall.updateRule.rule.rule.activePeriod.effectiveFrom",
|
|
21709
|
+
"requestStr": "$effectiveFrom:DateTime ",
|
|
21710
|
+
"required": false,
|
|
21711
|
+
"responseStr": "effectiveFrom:$effectiveFrom ",
|
|
21712
|
+
"type": {
|
|
21713
|
+
"kind": [
|
|
21714
|
+
"SCALAR"
|
|
21715
|
+
],
|
|
21716
|
+
"name": "DateTime",
|
|
21717
|
+
"non_null": false
|
|
21718
|
+
},
|
|
21719
|
+
"varName": "effectiveFrom"
|
|
21720
|
+
},
|
|
21721
|
+
"expiresAt": {
|
|
21722
|
+
"args": {},
|
|
21723
|
+
"deprecationReason": null,
|
|
21724
|
+
"description": "The time the rule expires, if not used, default null",
|
|
21725
|
+
"id_str": "internetFirewall___updateRule___rule___rule___activePeriod___expiresAt",
|
|
21726
|
+
"isDeprecated": false,
|
|
21727
|
+
"name": "expiresAt",
|
|
21728
|
+
"path": "internetFirewall.updateRule.rule.rule.activePeriod.expiresAt",
|
|
21729
|
+
"requestStr": "$expiresAt:DateTime ",
|
|
21730
|
+
"required": false,
|
|
21731
|
+
"responseStr": "expiresAt:$expiresAt ",
|
|
21732
|
+
"type": {
|
|
21733
|
+
"kind": [
|
|
21734
|
+
"SCALAR"
|
|
21735
|
+
],
|
|
21736
|
+
"name": "DateTime",
|
|
21737
|
+
"non_null": false
|
|
21738
|
+
},
|
|
21739
|
+
"varName": "expiresAt"
|
|
21740
|
+
},
|
|
21741
|
+
"useEffectiveFrom": {
|
|
21742
|
+
"args": {},
|
|
21743
|
+
"deprecationReason": null,
|
|
21744
|
+
"description": null,
|
|
21745
|
+
"id_str": "internetFirewall___updateRule___rule___rule___activePeriod___useEffectiveFrom",
|
|
21746
|
+
"isDeprecated": false,
|
|
21747
|
+
"name": "useEffectiveFrom",
|
|
21748
|
+
"path": "internetFirewall.updateRule.rule.rule.activePeriod.useEffectiveFrom",
|
|
21749
|
+
"requestStr": "$useEffectiveFrom:Boolean! ",
|
|
21750
|
+
"required": true,
|
|
21751
|
+
"responseStr": "useEffectiveFrom:$useEffectiveFrom ",
|
|
21752
|
+
"type": {
|
|
21753
|
+
"kind": [
|
|
21754
|
+
"NON_NULL",
|
|
21755
|
+
"SCALAR"
|
|
21756
|
+
],
|
|
21757
|
+
"name": "Boolean",
|
|
21758
|
+
"non_null": false
|
|
21759
|
+
},
|
|
21760
|
+
"varName": "useEffectiveFrom"
|
|
21761
|
+
},
|
|
21762
|
+
"useExpiresAt": {
|
|
21763
|
+
"args": {},
|
|
21764
|
+
"deprecationReason": null,
|
|
21765
|
+
"description": null,
|
|
21766
|
+
"id_str": "internetFirewall___updateRule___rule___rule___activePeriod___useExpiresAt",
|
|
21767
|
+
"isDeprecated": false,
|
|
21768
|
+
"name": "useExpiresAt",
|
|
21769
|
+
"path": "internetFirewall.updateRule.rule.rule.activePeriod.useExpiresAt",
|
|
21770
|
+
"requestStr": "$useExpiresAt:Boolean! ",
|
|
21771
|
+
"required": true,
|
|
21772
|
+
"responseStr": "useExpiresAt:$useExpiresAt ",
|
|
21773
|
+
"type": {
|
|
21774
|
+
"kind": [
|
|
21775
|
+
"NON_NULL",
|
|
21776
|
+
"SCALAR"
|
|
21777
|
+
],
|
|
21778
|
+
"name": "Boolean",
|
|
21779
|
+
"non_null": false
|
|
21780
|
+
},
|
|
21781
|
+
"varName": "useExpiresAt"
|
|
21782
|
+
}
|
|
21783
|
+
},
|
|
21784
|
+
"inputFields": null,
|
|
21785
|
+
"interfaces": {},
|
|
21786
|
+
"kind": "OBJECT",
|
|
21787
|
+
"name": "PolicyRuleActivePeriod",
|
|
21788
|
+
"possibleTypes": null
|
|
21789
|
+
},
|
|
21790
|
+
"indexType": "object",
|
|
21791
|
+
"kind": [
|
|
21792
|
+
"NON_NULL",
|
|
21793
|
+
"OBJECT"
|
|
21794
|
+
],
|
|
21795
|
+
"name": "PolicyRuleActivePeriod",
|
|
21796
|
+
"non_null": false
|
|
21797
|
+
},
|
|
21798
|
+
"varName": "policyRuleActivePeriod"
|
|
21799
|
+
},
|
|
21376
21800
|
"connectionOrigin": {
|
|
21377
21801
|
"alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
|
|
21378
21802
|
"args": {},
|
|
@@ -21429,7 +21853,7 @@
|
|
|
21429
21853
|
"alias": "countryRefCountry: country",
|
|
21430
21854
|
"args": {},
|
|
21431
21855
|
"deprecationReason": null,
|
|
21432
|
-
"description": "Source country traffic matching criteria.\nLogical
|
|
21856
|
+
"description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
21433
21857
|
"id_str": "internetFirewall___updateRule___rule___rule___country",
|
|
21434
21858
|
"isDeprecated": false,
|
|
21435
21859
|
"name": "country",
|
|
@@ -21528,7 +21952,7 @@
|
|
|
21528
21952
|
"alias": "internetFirewallDestinationDestination: destination",
|
|
21529
21953
|
"args": {},
|
|
21530
21954
|
"deprecationReason": null,
|
|
21531
|
-
"description": "Destination traffic matching criteria.\nLogical
|
|
21955
|
+
"description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
21532
21956
|
"id_str": "internetFirewall___updateRule___rule___rule___destination",
|
|
21533
21957
|
"isDeprecated": false,
|
|
21534
21958
|
"name": "destination",
|
|
@@ -22047,7 +22471,7 @@
|
|
|
22047
22471
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
22048
22472
|
"args": {},
|
|
22049
22473
|
"deprecationReason": null,
|
|
22050
|
-
"description": "Custom Categories
|
|
22474
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
22051
22475
|
"id_str": "internetFirewall___updateRule___rule___rule___destination___customCategory",
|
|
22052
22476
|
"isDeprecated": false,
|
|
22053
22477
|
"name": "customCategory",
|
|
@@ -22491,7 +22915,7 @@
|
|
|
22491
22915
|
"alias": "deviceProfileRefDevice: device",
|
|
22492
22916
|
"args": {},
|
|
22493
22917
|
"deprecationReason": null,
|
|
22494
|
-
"description": "Source Device Profile traffic matching criteria.\nLogical
|
|
22918
|
+
"description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
22495
22919
|
"id_str": "internetFirewall___updateRule___rule___rule___device",
|
|
22496
22920
|
"isDeprecated": false,
|
|
22497
22921
|
"name": "device",
|
|
@@ -22741,7 +23165,7 @@
|
|
|
22741
23165
|
"alias": "operatingSystemDeviceOS: deviceOS",
|
|
22742
23166
|
"args": {},
|
|
22743
23167
|
"deprecationReason": null,
|
|
22744
|
-
"description": "Source device Operating System traffic matching criteria.\nLogical
|
|
23168
|
+
"description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
22745
23169
|
"id_str": "internetFirewall___updateRule___rule___rule___deviceOS",
|
|
22746
23170
|
"isDeprecated": false,
|
|
22747
23171
|
"name": "deviceOS",
|
|
@@ -23500,7 +23924,7 @@
|
|
|
23500
23924
|
"alias": "customCategoryRefCustomCategory: customCategory",
|
|
23501
23925
|
"args": {},
|
|
23502
23926
|
"deprecationReason": null,
|
|
23503
|
-
"description": "Custom Categories
|
|
23927
|
+
"description": "Custom Categories – Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
|
|
23504
23928
|
"id_str": "internetFirewall___updateRule___rule___rule___exceptions___destination___customCategory",
|
|
23505
23929
|
"isDeprecated": false,
|
|
23506
23930
|
"name": "customCategory",
|
|
@@ -26011,7 +26435,7 @@
|
|
|
26011
26435
|
"alias": "internetFirewallServiceTypeService: service",
|
|
26012
26436
|
"args": {},
|
|
26013
26437
|
"deprecationReason": null,
|
|
26014
|
-
"description": "Destination service traffic matching criteria.\nLogical
|
|
26438
|
+
"description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
26015
26439
|
"id_str": "internetFirewall___updateRule___rule___rule___service",
|
|
26016
26440
|
"isDeprecated": false,
|
|
26017
26441
|
"name": "service",
|
|
@@ -26320,7 +26744,7 @@
|
|
|
26320
26744
|
"alias": "internetFirewallSourceSource: source",
|
|
26321
26745
|
"args": {},
|
|
26322
26746
|
"deprecationReason": null,
|
|
26323
|
-
"description": "Source traffic matching criteria.\nLogical
|
|
26747
|
+
"description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
|
|
26324
26748
|
"id_str": "internetFirewall___updateRule___rule___rule___source",
|
|
26325
26749
|
"isDeprecated": false,
|
|
26326
26750
|
"name": "source",
|
|
@@ -27291,7 +27715,7 @@
|
|
|
27291
27715
|
"enabled": {
|
|
27292
27716
|
"args": {},
|
|
27293
27717
|
"deprecationReason": null,
|
|
27294
|
-
"description": "TRUE
|
|
27718
|
+
"description": "TRUE – send alerts when the rule is matched, FALSE – don’t send alerts when the rule is matched",
|
|
27295
27719
|
"id_str": "internetFirewall___updateRule___rule___rule___tracking___alert___enabled",
|
|
27296
27720
|
"isDeprecated": false,
|
|
27297
27721
|
"name": "enabled",
|
|
@@ -27832,6 +28256,20 @@
|
|
|
27832
28256
|
"action": {
|
|
27833
28257
|
"action": "enum(InternetFirewallActionEnum)"
|
|
27834
28258
|
},
|
|
28259
|
+
"activePeriod": {
|
|
28260
|
+
"effectiveFrom": {
|
|
28261
|
+
"effectiveFrom": "DateTime"
|
|
28262
|
+
},
|
|
28263
|
+
"expiresAt": {
|
|
28264
|
+
"expiresAt": "DateTime"
|
|
28265
|
+
},
|
|
28266
|
+
"useEffectiveFrom": {
|
|
28267
|
+
"useEffectiveFrom": "Boolean"
|
|
28268
|
+
},
|
|
28269
|
+
"useExpiresAt": {
|
|
28270
|
+
"useExpiresAt": "Boolean"
|
|
28271
|
+
}
|
|
28272
|
+
},
|
|
27835
28273
|
"connectionOrigin": {
|
|
27836
28274
|
"connectionOrigin": "enum(ConnectionOriginEnum)"
|
|
27837
28275
|
},
|