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.

Files changed (290) hide show
  1. build/lib/catocli/Utils/clidriver.py +268 -0
  2. build/lib/catocli/Utils/profile_manager.py +188 -0
  3. build/lib/catocli/Utils/version_checker.py +192 -0
  4. build/lib/catocli/__init__.py +2 -0
  5. build/lib/catocli/__main__.py +12 -0
  6. build/lib/catocli/parsers/configure/__init__.py +115 -0
  7. build/lib/catocli/parsers/configure/configure.py +307 -0
  8. build/lib/catocli/parsers/custom/__init__.py +57 -0
  9. build/lib/catocli/parsers/custom/customLib.py +561 -0
  10. build/lib/catocli/parsers/custom/export_rules/__init__.py +42 -0
  11. build/lib/catocli/parsers/custom/export_rules/export_rules.py +234 -0
  12. build/lib/catocli/parsers/custom/export_sites/__init__.py +21 -0
  13. build/lib/catocli/parsers/custom/export_sites/export_sites.py +372 -0
  14. build/lib/catocli/parsers/custom/import_rules_to_tf/__init__.py +58 -0
  15. build/lib/catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +451 -0
  16. build/lib/catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
  17. build/lib/catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
  18. build/lib/catocli/parsers/mutation_accountManagement/__init__.py +48 -0
  19. build/lib/catocli/parsers/mutation_admin/__init__.py +48 -0
  20. build/lib/catocli/parsers/mutation_container/__init__.py +138 -0
  21. build/lib/catocli/parsers/mutation_hardware/__init__.py +22 -0
  22. build/lib/catocli/parsers/mutation_policy/__init__.py +1305 -0
  23. build/lib/catocli/parsers/mutation_sandbox/__init__.py +35 -0
  24. build/lib/catocli/parsers/mutation_site/__init__.py +373 -0
  25. build/lib/catocli/parsers/mutation_sites/__init__.py +373 -0
  26. build/lib/catocli/parsers/mutation_xdr/__init__.py +48 -0
  27. build/lib/catocli/parsers/parserApiClient.py +513 -0
  28. build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +16 -0
  29. build/lib/catocli/parsers/query_accountManagement/__init__.py +16 -0
  30. build/lib/catocli/parsers/query_accountMetrics/__init__.py +16 -0
  31. build/lib/catocli/parsers/query_accountRoles/__init__.py +16 -0
  32. build/lib/catocli/parsers/query_accountSnapshot/__init__.py +16 -0
  33. build/lib/catocli/parsers/query_admin/__init__.py +16 -0
  34. build/lib/catocli/parsers/query_admins/__init__.py +16 -0
  35. build/lib/catocli/parsers/query_appStats/__init__.py +16 -0
  36. build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +16 -0
  37. build/lib/catocli/parsers/query_auditFeed/__init__.py +16 -0
  38. build/lib/catocli/parsers/query_catalogs/__init__.py +16 -0
  39. build/lib/catocli/parsers/query_container/__init__.py +16 -0
  40. build/lib/catocli/parsers/query_devices/__init__.py +16 -0
  41. build/lib/catocli/parsers/query_entityLookup/__init__.py +16 -0
  42. build/lib/catocli/parsers/query_events/__init__.py +16 -0
  43. build/lib/catocli/parsers/query_eventsFeed/__init__.py +16 -0
  44. build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +16 -0
  45. build/lib/catocli/parsers/query_hardware/__init__.py +16 -0
  46. build/lib/catocli/parsers/query_hardwareManagement/__init__.py +16 -0
  47. build/lib/catocli/parsers/query_licensing/__init__.py +16 -0
  48. build/lib/catocli/parsers/query_policy/__init__.py +161 -0
  49. build/lib/catocli/parsers/query_sandbox/__init__.py +16 -0
  50. build/lib/catocli/parsers/query_site/__init__.py +100 -0
  51. build/lib/catocli/parsers/query_siteLocation/__init__.py +13 -0
  52. build/lib/catocli/parsers/query_subDomains/__init__.py +16 -0
  53. build/lib/catocli/parsers/query_xdr/__init__.py +35 -0
  54. build/lib/catocli/parsers/raw/__init__.py +12 -0
  55. build/lib/graphql_client/__init__.py +11 -0
  56. build/lib/graphql_client/api/__init__.py +3 -0
  57. build/lib/graphql_client/api/call_api.py +84 -0
  58. build/lib/graphql_client/api_client.py +192 -0
  59. build/lib/graphql_client/api_client_types.py +409 -0
  60. build/lib/graphql_client/configuration.py +232 -0
  61. build/lib/graphql_client/models/__init__.py +13 -0
  62. build/lib/graphql_client/models/no_schema.py +71 -0
  63. build/lib/schema/catolib.py +1141 -0
  64. build/lib/schema/importSchema.py +60 -0
  65. build/lib/schema/remove_policyid.py +89 -0
  66. build/lib/schema/remove_policyid_mutations.py +89 -0
  67. build/lib/scripts/catolib.py +62 -0
  68. build/lib/scripts/export_if_rules_to_json.py +188 -0
  69. build/lib/scripts/export_wf_rules_to_json.py +111 -0
  70. build/lib/scripts/import_wf_rules_to_tfstate.py +331 -0
  71. build/lib/vendor/certifi/__init__.py +4 -0
  72. build/lib/vendor/certifi/__main__.py +12 -0
  73. build/lib/vendor/certifi/core.py +114 -0
  74. build/lib/vendor/certifi/py.typed +0 -0
  75. build/lib/vendor/six.py +998 -0
  76. build/lib/vendor/urllib3/__init__.py +211 -0
  77. build/lib/vendor/urllib3/_base_connection.py +172 -0
  78. build/lib/vendor/urllib3/_collections.py +483 -0
  79. build/lib/vendor/urllib3/_request_methods.py +278 -0
  80. build/lib/vendor/urllib3/_version.py +16 -0
  81. build/lib/vendor/urllib3/connection.py +1033 -0
  82. build/lib/vendor/urllib3/connectionpool.py +1182 -0
  83. build/lib/vendor/urllib3/contrib/__init__.py +0 -0
  84. build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
  85. build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
  86. build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
  87. build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
  88. build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
  89. build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
  90. build/lib/vendor/urllib3/contrib/socks.py +228 -0
  91. build/lib/vendor/urllib3/exceptions.py +321 -0
  92. build/lib/vendor/urllib3/fields.py +341 -0
  93. build/lib/vendor/urllib3/filepost.py +89 -0
  94. build/lib/vendor/urllib3/http2/__init__.py +53 -0
  95. build/lib/vendor/urllib3/http2/connection.py +356 -0
  96. build/lib/vendor/urllib3/http2/probe.py +87 -0
  97. build/lib/vendor/urllib3/poolmanager.py +637 -0
  98. build/lib/vendor/urllib3/py.typed +2 -0
  99. build/lib/vendor/urllib3/response.py +1265 -0
  100. build/lib/vendor/urllib3/util/__init__.py +42 -0
  101. build/lib/vendor/urllib3/util/connection.py +137 -0
  102. build/lib/vendor/urllib3/util/proxy.py +43 -0
  103. build/lib/vendor/urllib3/util/request.py +256 -0
  104. build/lib/vendor/urllib3/util/response.py +101 -0
  105. build/lib/vendor/urllib3/util/retry.py +533 -0
  106. build/lib/vendor/urllib3/util/ssl_.py +513 -0
  107. build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
  108. build/lib/vendor/urllib3/util/ssltransport.py +276 -0
  109. build/lib/vendor/urllib3/util/timeout.py +275 -0
  110. build/lib/vendor/urllib3/util/url.py +471 -0
  111. build/lib/vendor/urllib3/util/util.py +42 -0
  112. build/lib/vendor/urllib3/util/wait.py +124 -0
  113. catocli/Utils/clidriver.py +1 -4
  114. catocli/__init__.py +1 -1
  115. catocli/parsers/custom/export_sites/export_sites.py +2 -2
  116. catocli/parsers/mutation_container/__init__.py +116 -0
  117. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  118. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  119. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  120. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  121. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  122. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  123. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  124. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  125. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  126. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  127. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  128. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  129. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  130. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  131. catocli/parsers/parserApiClient.py +25 -11
  132. catocli/parsers/query_policy/README.md +0 -17
  133. catocli/parsers/query_policy/__init__.py +153 -8
  134. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  135. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  136. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  137. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  138. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  139. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  140. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  141. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  142. catocli/parsers/query_policy_socketLan/README.md +7 -0
  143. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  144. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  145. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  146. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  147. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  148. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  149. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  150. catocli/parsers/query_site/README.md +0 -16
  151. catocli/parsers/query_site/__init__.py +92 -8
  152. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  153. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  154. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  155. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  156. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  157. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  158. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  159. catocli/parsers/raw/README.md +0 -14
  160. catocli/parsers/raw/__init__.py +0 -2
  161. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/METADATA +1 -1
  162. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/RECORD +290 -120
  163. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/top_level.txt +1 -0
  164. graphql_client/api/call_api.py +4 -3
  165. models/mutation.container.fqdn.addValues.json +866 -0
  166. models/mutation.container.fqdn.createFromFile.json +819 -0
  167. models/mutation.container.fqdn.removeValues.json +866 -0
  168. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  169. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  170. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  171. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  172. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  173. models/mutation.policy.appTenantRestriction.addRule.json +8 -8
  174. models/mutation.policy.appTenantRestriction.addSection.json +1 -1
  175. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +2 -2
  176. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +2 -2
  177. models/mutation.policy.appTenantRestriction.moveRule.json +2 -2
  178. models/mutation.policy.appTenantRestriction.moveSection.json +1 -1
  179. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +2 -2
  180. models/mutation.policy.appTenantRestriction.removeRule.json +2 -2
  181. models/mutation.policy.appTenantRestriction.removeSection.json +1 -1
  182. models/mutation.policy.appTenantRestriction.updatePolicy.json +2 -2
  183. models/mutation.policy.appTenantRestriction.updateRule.json +8 -8
  184. models/mutation.policy.appTenantRestriction.updateSection.json +1 -1
  185. models/mutation.policy.dynamicIpAllocation.addRule.json +1 -1
  186. models/mutation.policy.dynamicIpAllocation.addSection.json +1 -1
  187. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +1 -1
  188. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +1 -1
  189. models/mutation.policy.dynamicIpAllocation.moveRule.json +1 -1
  190. models/mutation.policy.dynamicIpAllocation.moveSection.json +1 -1
  191. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +1 -1
  192. models/mutation.policy.dynamicIpAllocation.removeRule.json +1 -1
  193. models/mutation.policy.dynamicIpAllocation.removeSection.json +1 -1
  194. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +1 -1
  195. models/mutation.policy.dynamicIpAllocation.updateRule.json +1 -1
  196. models/mutation.policy.dynamicIpAllocation.updateSection.json +1 -1
  197. models/mutation.policy.internetFirewall.addRule.json +502 -55
  198. models/mutation.policy.internetFirewall.addSection.json +1 -1
  199. models/mutation.policy.internetFirewall.createPolicyRevision.json +127 -10
  200. models/mutation.policy.internetFirewall.discardPolicyRevision.json +127 -10
  201. models/mutation.policy.internetFirewall.moveRule.json +127 -10
  202. models/mutation.policy.internetFirewall.moveSection.json +1 -1
  203. models/mutation.policy.internetFirewall.publishPolicyRevision.json +127 -10
  204. models/mutation.policy.internetFirewall.removeRule.json +127 -10
  205. models/mutation.policy.internetFirewall.removeSection.json +1 -1
  206. models/mutation.policy.internetFirewall.updatePolicy.json +127 -10
  207. models/mutation.policy.internetFirewall.updateRule.json +493 -55
  208. models/mutation.policy.internetFirewall.updateSection.json +1 -1
  209. models/mutation.policy.remotePortFwd.addRule.json +5 -5
  210. models/mutation.policy.remotePortFwd.addSection.json +1 -1
  211. models/mutation.policy.remotePortFwd.createPolicyRevision.json +2 -2
  212. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +2 -2
  213. models/mutation.policy.remotePortFwd.moveRule.json +2 -2
  214. models/mutation.policy.remotePortFwd.moveSection.json +1 -1
  215. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +2 -2
  216. models/mutation.policy.remotePortFwd.removeRule.json +2 -2
  217. models/mutation.policy.remotePortFwd.removeSection.json +1 -1
  218. models/mutation.policy.remotePortFwd.updatePolicy.json +2 -2
  219. models/mutation.policy.remotePortFwd.updateRule.json +5 -5
  220. models/mutation.policy.remotePortFwd.updateSection.json +1 -1
  221. models/mutation.policy.socketLan.addRule.json +16 -16
  222. models/mutation.policy.socketLan.addSection.json +1 -1
  223. models/mutation.policy.socketLan.createPolicyRevision.json +4 -4
  224. models/mutation.policy.socketLan.discardPolicyRevision.json +4 -4
  225. models/mutation.policy.socketLan.moveRule.json +4 -4
  226. models/mutation.policy.socketLan.moveSection.json +1 -1
  227. models/mutation.policy.socketLan.publishPolicyRevision.json +4 -4
  228. models/mutation.policy.socketLan.removeRule.json +4 -4
  229. models/mutation.policy.socketLan.removeSection.json +1 -1
  230. models/mutation.policy.socketLan.updatePolicy.json +4 -4
  231. models/mutation.policy.socketLan.updateRule.json +16 -16
  232. models/mutation.policy.socketLan.updateSection.json +1 -1
  233. models/mutation.policy.terminalServer.addRule.json +1 -1
  234. models/mutation.policy.terminalServer.addSection.json +1 -1
  235. models/mutation.policy.terminalServer.createPolicyRevision.json +1 -1
  236. models/mutation.policy.terminalServer.discardPolicyRevision.json +1 -1
  237. models/mutation.policy.terminalServer.moveRule.json +1 -1
  238. models/mutation.policy.terminalServer.moveSection.json +1 -1
  239. models/mutation.policy.terminalServer.publishPolicyRevision.json +1 -1
  240. models/mutation.policy.terminalServer.removeRule.json +1 -1
  241. models/mutation.policy.terminalServer.removeSection.json +1 -1
  242. models/mutation.policy.terminalServer.updatePolicy.json +1 -1
  243. models/mutation.policy.terminalServer.updateRule.json +1 -1
  244. models/mutation.policy.terminalServer.updateSection.json +1 -1
  245. models/mutation.policy.wanFirewall.addRule.json +500 -53
  246. models/mutation.policy.wanFirewall.addSection.json +1 -1
  247. models/mutation.policy.wanFirewall.createPolicyRevision.json +128 -11
  248. models/mutation.policy.wanFirewall.discardPolicyRevision.json +128 -11
  249. models/mutation.policy.wanFirewall.moveRule.json +128 -11
  250. models/mutation.policy.wanFirewall.moveSection.json +1 -1
  251. models/mutation.policy.wanFirewall.publishPolicyRevision.json +128 -11
  252. models/mutation.policy.wanFirewall.removeRule.json +128 -11
  253. models/mutation.policy.wanFirewall.removeSection.json +1 -1
  254. models/mutation.policy.wanFirewall.updatePolicy.json +128 -11
  255. models/mutation.policy.wanFirewall.updateRule.json +491 -53
  256. models/mutation.policy.wanFirewall.updateSection.json +1 -1
  257. models/mutation.policy.wanNetwork.addRule.json +13 -13
  258. models/mutation.policy.wanNetwork.addSection.json +1 -1
  259. models/mutation.policy.wanNetwork.createPolicyRevision.json +1 -1
  260. models/mutation.policy.wanNetwork.discardPolicyRevision.json +1 -1
  261. models/mutation.policy.wanNetwork.moveRule.json +1 -1
  262. models/mutation.policy.wanNetwork.moveSection.json +1 -1
  263. models/mutation.policy.wanNetwork.publishPolicyRevision.json +1 -1
  264. models/mutation.policy.wanNetwork.removeRule.json +1 -1
  265. models/mutation.policy.wanNetwork.removeSection.json +1 -1
  266. models/mutation.policy.wanNetwork.updatePolicy.json +1 -1
  267. models/mutation.policy.wanNetwork.updateRule.json +13 -13
  268. models/mutation.policy.wanNetwork.updateSection.json +1 -1
  269. models/query.policy.appTenantRestriction.policy.json +3086 -0
  270. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  271. models/query.policy.internetFirewall.policy.json +7833 -0
  272. models/query.policy.json +233 -0
  273. models/query.policy.remotePortFwd.policy.json +2387 -0
  274. models/query.policy.socketLan.policy.json +7140 -0
  275. models/query.policy.terminalServer.policy.json +1632 -0
  276. models/query.policy.wanFirewall.policy.json +9212 -0
  277. models/query.policy.wanNetwork.policy.json +8010 -0
  278. models/query.site.availableVersionList.json +365 -0
  279. models/query.site.bgpPeer.json +1917 -0
  280. models/query.site.bgpPeerList.json +2076 -0
  281. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  282. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  283. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  284. models/query.site.siteBgpStatus.json +869 -0
  285. schema/catolib.py +13 -6
  286. schema/remove_policyid.py +89 -0
  287. schema/remove_policyid_mutations.py +89 -0
  288. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/LICENSE +0 -0
  289. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/WHEEL +0 -0
  290. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/entry_points.txt +0 -0
@@ -120,9 +120,111 @@
120
120
  },
121
121
  "varName": "action"
122
122
  },
123
+ "activePeriod": {
124
+ "defaultValue": null,
125
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
126
+ "id_str": "updateRule___input___rule___activePeriod",
127
+ "name": "activePeriod",
128
+ "path": "updateRule.input.rule.activePeriod",
129
+ "requestStr": "$policyRuleActivePeriodUpdateInput:PolicyRuleActivePeriodUpdateInput ",
130
+ "required": false,
131
+ "responseStr": "activePeriod:$policyRuleActivePeriodUpdateInput ",
132
+ "type": {
133
+ "definition": {
134
+ "description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
135
+ "enumValues": null,
136
+ "fields": null,
137
+ "inputFields": {
138
+ "effectiveFrom": {
139
+ "defaultValue": null,
140
+ "description": "The time the rule becomes active, if not used, default null",
141
+ "id_str": "updateRule___input___rule___activePeriod___effectiveFrom",
142
+ "name": "effectiveFrom",
143
+ "path": "updateRule.input.rule.activePeriod.effectiveFrom",
144
+ "requestStr": "$effectiveFrom:DateTime ",
145
+ "required": false,
146
+ "responseStr": "effectiveFrom:$effectiveFrom ",
147
+ "type": {
148
+ "kind": [
149
+ "SCALAR"
150
+ ],
151
+ "name": "DateTime",
152
+ "non_null": false
153
+ },
154
+ "varName": "effectiveFrom"
155
+ },
156
+ "expiresAt": {
157
+ "defaultValue": null,
158
+ "description": "The time the rule expires, if not used, default null",
159
+ "id_str": "updateRule___input___rule___activePeriod___expiresAt",
160
+ "name": "expiresAt",
161
+ "path": "updateRule.input.rule.activePeriod.expiresAt",
162
+ "requestStr": "$expiresAt:DateTime ",
163
+ "required": false,
164
+ "responseStr": "expiresAt:$expiresAt ",
165
+ "type": {
166
+ "kind": [
167
+ "SCALAR"
168
+ ],
169
+ "name": "DateTime",
170
+ "non_null": false
171
+ },
172
+ "varName": "expiresAt"
173
+ },
174
+ "useEffectiveFrom": {
175
+ "defaultValue": null,
176
+ "description": null,
177
+ "id_str": "updateRule___input___rule___activePeriod___useEffectiveFrom",
178
+ "name": "useEffectiveFrom",
179
+ "path": "updateRule.input.rule.activePeriod.useEffectiveFrom",
180
+ "requestStr": "$useEffectiveFrom:Boolean ",
181
+ "required": false,
182
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
183
+ "type": {
184
+ "kind": [
185
+ "SCALAR"
186
+ ],
187
+ "name": "Boolean",
188
+ "non_null": false
189
+ },
190
+ "varName": "useEffectiveFrom"
191
+ },
192
+ "useExpiresAt": {
193
+ "defaultValue": null,
194
+ "description": null,
195
+ "id_str": "updateRule___input___rule___activePeriod___useExpiresAt",
196
+ "name": "useExpiresAt",
197
+ "path": "updateRule.input.rule.activePeriod.useExpiresAt",
198
+ "requestStr": "$useExpiresAt:Boolean ",
199
+ "required": false,
200
+ "responseStr": "useExpiresAt:$useExpiresAt ",
201
+ "type": {
202
+ "kind": [
203
+ "SCALAR"
204
+ ],
205
+ "name": "Boolean",
206
+ "non_null": false
207
+ },
208
+ "varName": "useExpiresAt"
209
+ }
210
+ },
211
+ "interfaces": null,
212
+ "kind": "INPUT_OBJECT",
213
+ "name": "PolicyRuleActivePeriodUpdateInput",
214
+ "possibleTypes": null
215
+ },
216
+ "indexType": "input_object",
217
+ "kind": [
218
+ "INPUT_OBJECT"
219
+ ],
220
+ "name": "PolicyRuleActivePeriodUpdateInput",
221
+ "non_null": false
222
+ },
223
+ "varName": "policyRuleActivePeriodUpdateInput"
224
+ },
123
225
  "application": {
124
226
  "defaultValue": null,
125
- "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
227
+ "description": "Application traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
126
228
  "id_str": "updateRule___input___rule___application",
127
229
  "name": "application",
128
230
  "path": "updateRule.input.rule.application",
@@ -419,7 +521,7 @@
419
521
  },
420
522
  "customCategory": {
421
523
  "defaultValue": null,
422
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
524
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
423
525
  "id_str": "updateRule___input___rule___application___customCategory",
424
526
  "name": "customCategory",
425
527
  "path": "updateRule.input.rule.application.customCategory",
@@ -914,7 +1016,7 @@
914
1016
  },
915
1017
  "country": {
916
1018
  "defaultValue": null,
917
- "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
1019
+ "description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
918
1020
  "id_str": "updateRule___input___rule___country",
919
1021
  "name": "country",
920
1022
  "path": "updateRule.input.rule.country",
@@ -1026,7 +1128,7 @@
1026
1128
  },
1027
1129
  "destination": {
1028
1130
  "defaultValue": null,
1029
- "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
1131
+ "description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
1030
1132
  "id_str": "updateRule___input___rule___destination",
1031
1133
  "name": "destination",
1032
1134
  "path": "updateRule.input.rule.destination",
@@ -1056,7 +1158,7 @@
1056
1158
  "inputFields": {
1057
1159
  "by": {
1058
1160
  "defaultValue": "ID",
1059
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
1161
+ "description": "Defines the object identification method by ID (default) or by name",
1060
1162
  "id_str": "updateRule___input___rule___destination___floatingSubnet___by",
1061
1163
  "name": "by",
1062
1164
  "path": "updateRule.input.rule.destination.floatingSubnet.by",
@@ -2106,7 +2208,7 @@
2106
2208
  },
2107
2209
  "device": {
2108
2210
  "defaultValue": null,
2109
- "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
2211
+ "description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
2110
2212
  "id_str": "updateRule___input___rule___device",
2111
2213
  "name": "device",
2112
2214
  "path": "updateRule.input.rule.device",
@@ -2350,7 +2452,7 @@
2350
2452
  },
2351
2453
  "deviceOS": {
2352
2454
  "defaultValue": null,
2353
- "description": "Source device Operating System traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
2455
+ "description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
2354
2456
  "id_str": "updateRule___input___rule___deviceOS",
2355
2457
  "name": "deviceOS",
2356
2458
  "path": "updateRule.input.rule.deviceOS",
@@ -2793,7 +2895,7 @@
2793
2895
  },
2794
2896
  "customCategory": {
2795
2897
  "defaultValue": "[]",
2796
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
2898
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
2797
2899
  "id_str": "updateRule___input___rule___exceptions___application___customCategory",
2798
2900
  "name": "customCategory",
2799
2901
  "path": "updateRule.input.rule.exceptions.application.customCategory",
@@ -3423,7 +3525,7 @@
3423
3525
  "inputFields": {
3424
3526
  "by": {
3425
3527
  "defaultValue": "ID",
3426
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
3528
+ "description": "Defines the object identification method by ID (default) or by name",
3427
3529
  "id_str": "updateRule___input___rule___exceptions___destination___floatingSubnet___by",
3428
3530
  "name": "by",
3429
3531
  "path": "updateRule.input.rule.exceptions.destination.floatingSubnet.by",
@@ -5208,7 +5310,7 @@
5208
5310
  "inputFields": {
5209
5311
  "by": {
5210
5312
  "defaultValue": "ID",
5211
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
5313
+ "description": "Defines the object identification method by ID (default) or by name",
5212
5314
  "id_str": "updateRule___input___rule___exceptions___source___floatingSubnet___by",
5213
5315
  "name": "by",
5214
5316
  "path": "updateRule.input.rule.exceptions.source.floatingSubnet.by",
@@ -6597,7 +6699,7 @@
6597
6699
  },
6598
6700
  "service": {
6599
6701
  "defaultValue": null,
6600
- "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
6702
+ "description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
6601
6703
  "id_str": "updateRule___input___rule___service",
6602
6704
  "name": "service",
6603
6705
  "path": "updateRule.input.rule.service",
@@ -6902,7 +7004,7 @@
6902
7004
  },
6903
7005
  "source": {
6904
7006
  "defaultValue": null,
6905
- "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
7007
+ "description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
6906
7008
  "id_str": "updateRule___input___rule___source",
6907
7009
  "name": "source",
6908
7010
  "path": "updateRule.input.rule.source",
@@ -6932,7 +7034,7 @@
6932
7034
  "inputFields": {
6933
7035
  "by": {
6934
7036
  "defaultValue": "ID",
6935
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
7037
+ "description": "Defines the object identification method by ID (default) or by name",
6936
7038
  "id_str": "updateRule___input___rule___source___floatingSubnet___by",
6937
7039
  "name": "by",
6938
7040
  "path": "updateRule.input.rule.source.floatingSubnet.by",
@@ -8012,7 +8114,7 @@
8012
8114
  "inputFields": {
8013
8115
  "enabled": {
8014
8116
  "defaultValue": null,
8015
- "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
8117
+ "description": "TRUE send alerts when the rule is matched, FALSE don’t send alerts when the rule is matched",
8016
8118
  "id_str": "updateRule___input___rule___tracking___alert___enabled",
8017
8119
  "name": "enabled",
8018
8120
  "path": "updateRule.input.rule.tracking.alert.enabled",
@@ -8628,6 +8730,8 @@
8628
8730
  "PolicyMutationError": true,
8629
8731
  "PolicyMutationRevisionInput": true,
8630
8732
  "PolicyMutationStatus": true,
8733
+ "PolicyRuleActivePeriod": true,
8734
+ "PolicyRuleActivePeriodUpdateInput": true,
8631
8735
  "PolicyRuleTrackingAlert": true,
8632
8736
  "PolicyRuleTrackingAlertUpdateInput": true,
8633
8737
  "PolicyRuleTrackingEvent": true,
@@ -8879,9 +8983,111 @@
8879
8983
  },
8880
8984
  "varName": "action"
8881
8985
  },
8986
+ "activePeriod": {
8987
+ "defaultValue": null,
8988
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
8989
+ "id_str": "updateRule___input___rule___activePeriod",
8990
+ "name": "activePeriod",
8991
+ "path": "updateRule.input.rule.activePeriod",
8992
+ "requestStr": "$policyRuleActivePeriodUpdateInput:PolicyRuleActivePeriodUpdateInput ",
8993
+ "required": false,
8994
+ "responseStr": "activePeriod:$policyRuleActivePeriodUpdateInput ",
8995
+ "type": {
8996
+ "definition": {
8997
+ "description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
8998
+ "enumValues": null,
8999
+ "fields": null,
9000
+ "inputFields": {
9001
+ "effectiveFrom": {
9002
+ "defaultValue": null,
9003
+ "description": "The time the rule becomes active, if not used, default null",
9004
+ "id_str": "updateRule___input___rule___activePeriod___effectiveFrom",
9005
+ "name": "effectiveFrom",
9006
+ "path": "updateRule.input.rule.activePeriod.effectiveFrom",
9007
+ "requestStr": "$effectiveFrom:DateTime ",
9008
+ "required": false,
9009
+ "responseStr": "effectiveFrom:$effectiveFrom ",
9010
+ "type": {
9011
+ "kind": [
9012
+ "SCALAR"
9013
+ ],
9014
+ "name": "DateTime",
9015
+ "non_null": false
9016
+ },
9017
+ "varName": "effectiveFrom"
9018
+ },
9019
+ "expiresAt": {
9020
+ "defaultValue": null,
9021
+ "description": "The time the rule expires, if not used, default null",
9022
+ "id_str": "updateRule___input___rule___activePeriod___expiresAt",
9023
+ "name": "expiresAt",
9024
+ "path": "updateRule.input.rule.activePeriod.expiresAt",
9025
+ "requestStr": "$expiresAt:DateTime ",
9026
+ "required": false,
9027
+ "responseStr": "expiresAt:$expiresAt ",
9028
+ "type": {
9029
+ "kind": [
9030
+ "SCALAR"
9031
+ ],
9032
+ "name": "DateTime",
9033
+ "non_null": false
9034
+ },
9035
+ "varName": "expiresAt"
9036
+ },
9037
+ "useEffectiveFrom": {
9038
+ "defaultValue": null,
9039
+ "description": null,
9040
+ "id_str": "updateRule___input___rule___activePeriod___useEffectiveFrom",
9041
+ "name": "useEffectiveFrom",
9042
+ "path": "updateRule.input.rule.activePeriod.useEffectiveFrom",
9043
+ "requestStr": "$useEffectiveFrom:Boolean ",
9044
+ "required": false,
9045
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
9046
+ "type": {
9047
+ "kind": [
9048
+ "SCALAR"
9049
+ ],
9050
+ "name": "Boolean",
9051
+ "non_null": false
9052
+ },
9053
+ "varName": "useEffectiveFrom"
9054
+ },
9055
+ "useExpiresAt": {
9056
+ "defaultValue": null,
9057
+ "description": null,
9058
+ "id_str": "updateRule___input___rule___activePeriod___useExpiresAt",
9059
+ "name": "useExpiresAt",
9060
+ "path": "updateRule.input.rule.activePeriod.useExpiresAt",
9061
+ "requestStr": "$useExpiresAt:Boolean ",
9062
+ "required": false,
9063
+ "responseStr": "useExpiresAt:$useExpiresAt ",
9064
+ "type": {
9065
+ "kind": [
9066
+ "SCALAR"
9067
+ ],
9068
+ "name": "Boolean",
9069
+ "non_null": false
9070
+ },
9071
+ "varName": "useExpiresAt"
9072
+ }
9073
+ },
9074
+ "interfaces": null,
9075
+ "kind": "INPUT_OBJECT",
9076
+ "name": "PolicyRuleActivePeriodUpdateInput",
9077
+ "possibleTypes": null
9078
+ },
9079
+ "indexType": "input_object",
9080
+ "kind": [
9081
+ "INPUT_OBJECT"
9082
+ ],
9083
+ "name": "PolicyRuleActivePeriodUpdateInput",
9084
+ "non_null": false
9085
+ },
9086
+ "varName": "policyRuleActivePeriodUpdateInput"
9087
+ },
8882
9088
  "application": {
8883
9089
  "defaultValue": null,
8884
- "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
9090
+ "description": "Application traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
8885
9091
  "id_str": "updateRule___input___rule___application",
8886
9092
  "name": "application",
8887
9093
  "path": "updateRule.input.rule.application",
@@ -9178,7 +9384,7 @@
9178
9384
  },
9179
9385
  "customCategory": {
9180
9386
  "defaultValue": null,
9181
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
9387
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
9182
9388
  "id_str": "updateRule___input___rule___application___customCategory",
9183
9389
  "name": "customCategory",
9184
9390
  "path": "updateRule.input.rule.application.customCategory",
@@ -9673,7 +9879,7 @@
9673
9879
  },
9674
9880
  "country": {
9675
9881
  "defaultValue": null,
9676
- "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
9882
+ "description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
9677
9883
  "id_str": "updateRule___input___rule___country",
9678
9884
  "name": "country",
9679
9885
  "path": "updateRule.input.rule.country",
@@ -9785,7 +9991,7 @@
9785
9991
  },
9786
9992
  "destination": {
9787
9993
  "defaultValue": null,
9788
- "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
9994
+ "description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
9789
9995
  "id_str": "updateRule___input___rule___destination",
9790
9996
  "name": "destination",
9791
9997
  "path": "updateRule.input.rule.destination",
@@ -9815,7 +10021,7 @@
9815
10021
  "inputFields": {
9816
10022
  "by": {
9817
10023
  "defaultValue": "ID",
9818
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
10024
+ "description": "Defines the object identification method by ID (default) or by name",
9819
10025
  "id_str": "updateRule___input___rule___destination___floatingSubnet___by",
9820
10026
  "name": "by",
9821
10027
  "path": "updateRule.input.rule.destination.floatingSubnet.by",
@@ -10865,7 +11071,7 @@
10865
11071
  },
10866
11072
  "device": {
10867
11073
  "defaultValue": null,
10868
- "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
11074
+ "description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
10869
11075
  "id_str": "updateRule___input___rule___device",
10870
11076
  "name": "device",
10871
11077
  "path": "updateRule.input.rule.device",
@@ -11109,7 +11315,7 @@
11109
11315
  },
11110
11316
  "deviceOS": {
11111
11317
  "defaultValue": null,
11112
- "description": "Source device Operating System traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
11318
+ "description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
11113
11319
  "id_str": "updateRule___input___rule___deviceOS",
11114
11320
  "name": "deviceOS",
11115
11321
  "path": "updateRule.input.rule.deviceOS",
@@ -11552,7 +11758,7 @@
11552
11758
  },
11553
11759
  "customCategory": {
11554
11760
  "defaultValue": "[]",
11555
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
11761
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
11556
11762
  "id_str": "updateRule___input___rule___exceptions___application___customCategory",
11557
11763
  "name": "customCategory",
11558
11764
  "path": "updateRule.input.rule.exceptions.application.customCategory",
@@ -12182,7 +12388,7 @@
12182
12388
  "inputFields": {
12183
12389
  "by": {
12184
12390
  "defaultValue": "ID",
12185
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
12391
+ "description": "Defines the object identification method by ID (default) or by name",
12186
12392
  "id_str": "updateRule___input___rule___exceptions___destination___floatingSubnet___by",
12187
12393
  "name": "by",
12188
12394
  "path": "updateRule.input.rule.exceptions.destination.floatingSubnet.by",
@@ -13967,7 +14173,7 @@
13967
14173
  "inputFields": {
13968
14174
  "by": {
13969
14175
  "defaultValue": "ID",
13970
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
14176
+ "description": "Defines the object identification method by ID (default) or by name",
13971
14177
  "id_str": "updateRule___input___rule___exceptions___source___floatingSubnet___by",
13972
14178
  "name": "by",
13973
14179
  "path": "updateRule.input.rule.exceptions.source.floatingSubnet.by",
@@ -15356,7 +15562,7 @@
15356
15562
  },
15357
15563
  "service": {
15358
15564
  "defaultValue": null,
15359
- "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
15565
+ "description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
15360
15566
  "id_str": "updateRule___input___rule___service",
15361
15567
  "name": "service",
15362
15568
  "path": "updateRule.input.rule.service",
@@ -15661,7 +15867,7 @@
15661
15867
  },
15662
15868
  "source": {
15663
15869
  "defaultValue": null,
15664
- "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
15870
+ "description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
15665
15871
  "id_str": "updateRule___input___rule___source",
15666
15872
  "name": "source",
15667
15873
  "path": "updateRule.input.rule.source",
@@ -15691,7 +15897,7 @@
15691
15897
  "inputFields": {
15692
15898
  "by": {
15693
15899
  "defaultValue": "ID",
15694
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
15900
+ "description": "Defines the object identification method by ID (default) or by name",
15695
15901
  "id_str": "updateRule___input___rule___source___floatingSubnet___by",
15696
15902
  "name": "by",
15697
15903
  "path": "updateRule.input.rule.source.floatingSubnet.by",
@@ -16771,7 +16977,7 @@
16771
16977
  "inputFields": {
16772
16978
  "enabled": {
16773
16979
  "defaultValue": null,
16774
- "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
16980
+ "description": "TRUE send alerts when the rule is matched, FALSE don’t send alerts when the rule is matched",
16775
16981
  "id_str": "updateRule___input___rule___tracking___alert___enabled",
16776
16982
  "name": "enabled",
16777
16983
  "path": "updateRule.input.rule.tracking.alert.enabled",
@@ -17434,9 +17640,111 @@
17434
17640
  },
17435
17641
  "varName": "action"
17436
17642
  },
17643
+ "activePeriod": {
17644
+ "defaultValue": null,
17645
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
17646
+ "id_str": "updateRule___input___rule___activePeriod",
17647
+ "name": "activePeriod",
17648
+ "path": "updateRule.input.rule.activePeriod",
17649
+ "requestStr": "$policyRuleActivePeriodUpdateInput:PolicyRuleActivePeriodUpdateInput ",
17650
+ "required": false,
17651
+ "responseStr": "activePeriod:$policyRuleActivePeriodUpdateInput ",
17652
+ "type": {
17653
+ "definition": {
17654
+ "description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
17655
+ "enumValues": null,
17656
+ "fields": null,
17657
+ "inputFields": {
17658
+ "effectiveFrom": {
17659
+ "defaultValue": null,
17660
+ "description": "The time the rule becomes active, if not used, default null",
17661
+ "id_str": "updateRule___input___rule___activePeriod___effectiveFrom",
17662
+ "name": "effectiveFrom",
17663
+ "path": "updateRule.input.rule.activePeriod.effectiveFrom",
17664
+ "requestStr": "$effectiveFrom:DateTime ",
17665
+ "required": false,
17666
+ "responseStr": "effectiveFrom:$effectiveFrom ",
17667
+ "type": {
17668
+ "kind": [
17669
+ "SCALAR"
17670
+ ],
17671
+ "name": "DateTime",
17672
+ "non_null": false
17673
+ },
17674
+ "varName": "effectiveFrom"
17675
+ },
17676
+ "expiresAt": {
17677
+ "defaultValue": null,
17678
+ "description": "The time the rule expires, if not used, default null",
17679
+ "id_str": "updateRule___input___rule___activePeriod___expiresAt",
17680
+ "name": "expiresAt",
17681
+ "path": "updateRule.input.rule.activePeriod.expiresAt",
17682
+ "requestStr": "$expiresAt:DateTime ",
17683
+ "required": false,
17684
+ "responseStr": "expiresAt:$expiresAt ",
17685
+ "type": {
17686
+ "kind": [
17687
+ "SCALAR"
17688
+ ],
17689
+ "name": "DateTime",
17690
+ "non_null": false
17691
+ },
17692
+ "varName": "expiresAt"
17693
+ },
17694
+ "useEffectiveFrom": {
17695
+ "defaultValue": null,
17696
+ "description": null,
17697
+ "id_str": "updateRule___input___rule___activePeriod___useEffectiveFrom",
17698
+ "name": "useEffectiveFrom",
17699
+ "path": "updateRule.input.rule.activePeriod.useEffectiveFrom",
17700
+ "requestStr": "$useEffectiveFrom:Boolean ",
17701
+ "required": false,
17702
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
17703
+ "type": {
17704
+ "kind": [
17705
+ "SCALAR"
17706
+ ],
17707
+ "name": "Boolean",
17708
+ "non_null": false
17709
+ },
17710
+ "varName": "useEffectiveFrom"
17711
+ },
17712
+ "useExpiresAt": {
17713
+ "defaultValue": null,
17714
+ "description": null,
17715
+ "id_str": "updateRule___input___rule___activePeriod___useExpiresAt",
17716
+ "name": "useExpiresAt",
17717
+ "path": "updateRule.input.rule.activePeriod.useExpiresAt",
17718
+ "requestStr": "$useExpiresAt:Boolean ",
17719
+ "required": false,
17720
+ "responseStr": "useExpiresAt:$useExpiresAt ",
17721
+ "type": {
17722
+ "kind": [
17723
+ "SCALAR"
17724
+ ],
17725
+ "name": "Boolean",
17726
+ "non_null": false
17727
+ },
17728
+ "varName": "useExpiresAt"
17729
+ }
17730
+ },
17731
+ "interfaces": null,
17732
+ "kind": "INPUT_OBJECT",
17733
+ "name": "PolicyRuleActivePeriodUpdateInput",
17734
+ "possibleTypes": null
17735
+ },
17736
+ "indexType": "input_object",
17737
+ "kind": [
17738
+ "INPUT_OBJECT"
17739
+ ],
17740
+ "name": "PolicyRuleActivePeriodUpdateInput",
17741
+ "non_null": false
17742
+ },
17743
+ "varName": "policyRuleActivePeriodUpdateInput"
17744
+ },
17437
17745
  "application": {
17438
17746
  "defaultValue": null,
17439
- "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
17747
+ "description": "Application traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
17440
17748
  "id_str": "updateRule___input___rule___application",
17441
17749
  "name": "application",
17442
17750
  "path": "updateRule.input.rule.application",
@@ -17733,7 +18041,7 @@
17733
18041
  },
17734
18042
  "customCategory": {
17735
18043
  "defaultValue": null,
17736
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
18044
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
17737
18045
  "id_str": "updateRule___input___rule___application___customCategory",
17738
18046
  "name": "customCategory",
17739
18047
  "path": "updateRule.input.rule.application.customCategory",
@@ -18228,7 +18536,7 @@
18228
18536
  },
18229
18537
  "country": {
18230
18538
  "defaultValue": null,
18231
- "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
18539
+ "description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
18232
18540
  "id_str": "updateRule___input___rule___country",
18233
18541
  "name": "country",
18234
18542
  "path": "updateRule.input.rule.country",
@@ -18340,7 +18648,7 @@
18340
18648
  },
18341
18649
  "destination": {
18342
18650
  "defaultValue": null,
18343
- "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
18651
+ "description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
18344
18652
  "id_str": "updateRule___input___rule___destination",
18345
18653
  "name": "destination",
18346
18654
  "path": "updateRule.input.rule.destination",
@@ -18370,7 +18678,7 @@
18370
18678
  "inputFields": {
18371
18679
  "by": {
18372
18680
  "defaultValue": "ID",
18373
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
18681
+ "description": "Defines the object identification method by ID (default) or by name",
18374
18682
  "id_str": "updateRule___input___rule___destination___floatingSubnet___by",
18375
18683
  "name": "by",
18376
18684
  "path": "updateRule.input.rule.destination.floatingSubnet.by",
@@ -19420,7 +19728,7 @@
19420
19728
  },
19421
19729
  "device": {
19422
19730
  "defaultValue": null,
19423
- "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
19731
+ "description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
19424
19732
  "id_str": "updateRule___input___rule___device",
19425
19733
  "name": "device",
19426
19734
  "path": "updateRule.input.rule.device",
@@ -19664,7 +19972,7 @@
19664
19972
  },
19665
19973
  "deviceOS": {
19666
19974
  "defaultValue": null,
19667
- "description": "Source device Operating System traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
19975
+ "description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
19668
19976
  "id_str": "updateRule___input___rule___deviceOS",
19669
19977
  "name": "deviceOS",
19670
19978
  "path": "updateRule.input.rule.deviceOS",
@@ -20107,7 +20415,7 @@
20107
20415
  },
20108
20416
  "customCategory": {
20109
20417
  "defaultValue": "[]",
20110
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
20418
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
20111
20419
  "id_str": "updateRule___input___rule___exceptions___application___customCategory",
20112
20420
  "name": "customCategory",
20113
20421
  "path": "updateRule.input.rule.exceptions.application.customCategory",
@@ -20737,7 +21045,7 @@
20737
21045
  "inputFields": {
20738
21046
  "by": {
20739
21047
  "defaultValue": "ID",
20740
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
21048
+ "description": "Defines the object identification method by ID (default) or by name",
20741
21049
  "id_str": "updateRule___input___rule___exceptions___destination___floatingSubnet___by",
20742
21050
  "name": "by",
20743
21051
  "path": "updateRule.input.rule.exceptions.destination.floatingSubnet.by",
@@ -22522,7 +22830,7 @@
22522
22830
  "inputFields": {
22523
22831
  "by": {
22524
22832
  "defaultValue": "ID",
22525
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
22833
+ "description": "Defines the object identification method by ID (default) or by name",
22526
22834
  "id_str": "updateRule___input___rule___exceptions___source___floatingSubnet___by",
22527
22835
  "name": "by",
22528
22836
  "path": "updateRule.input.rule.exceptions.source.floatingSubnet.by",
@@ -23911,7 +24219,7 @@
23911
24219
  },
23912
24220
  "service": {
23913
24221
  "defaultValue": null,
23914
- "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
24222
+ "description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
23915
24223
  "id_str": "updateRule___input___rule___service",
23916
24224
  "name": "service",
23917
24225
  "path": "updateRule.input.rule.service",
@@ -24216,7 +24524,7 @@
24216
24524
  },
24217
24525
  "source": {
24218
24526
  "defaultValue": null,
24219
- "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
24527
+ "description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
24220
24528
  "id_str": "updateRule___input___rule___source",
24221
24529
  "name": "source",
24222
24530
  "path": "updateRule.input.rule.source",
@@ -24246,7 +24554,7 @@
24246
24554
  "inputFields": {
24247
24555
  "by": {
24248
24556
  "defaultValue": "ID",
24249
- "description": "Defines the object identification method \u2013 by ID (default) or by name",
24557
+ "description": "Defines the object identification method by ID (default) or by name",
24250
24558
  "id_str": "updateRule___input___rule___source___floatingSubnet___by",
24251
24559
  "name": "by",
24252
24560
  "path": "updateRule.input.rule.source.floatingSubnet.by",
@@ -25326,7 +25634,7 @@
25326
25634
  "inputFields": {
25327
25635
  "enabled": {
25328
25636
  "defaultValue": null,
25329
- "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
25637
+ "description": "TRUE send alerts when the rule is matched, FALSE don’t send alerts when the rule is matched",
25330
25638
  "id_str": "updateRule___input___rule___tracking___alert___enabled",
25331
25639
  "name": "enabled",
25332
25640
  "path": "updateRule.input.rule.tracking.alert.enabled",
@@ -25817,7 +26125,7 @@
25817
26125
  "responseStr": "errors:$policyMutationError ",
25818
26126
  "type": {
25819
26127
  "definition": {
25820
- "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\u2019t 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\"",
26128
+ "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\"",
25821
26129
  "enumValues": null,
25822
26130
  "fields": {
25823
26131
  "errorCode": {
@@ -26116,11 +26424,127 @@
26116
26424
  },
26117
26425
  "varName": "action"
26118
26426
  },
26427
+ "activePeriod": {
26428
+ "alias": "policyRuleActivePeriodActivePeriod: activePeriod",
26429
+ "args": {},
26430
+ "deprecationReason": null,
26431
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
26432
+ "id_str": "wanFirewall___updateRule___rule___rule___activePeriod",
26433
+ "isDeprecated": false,
26434
+ "name": "activePeriod",
26435
+ "path": "wanFirewall.updateRule.rule.rule.activePeriod",
26436
+ "requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
26437
+ "required": true,
26438
+ "responseStr": "activePeriod:$policyRuleActivePeriod ",
26439
+ "type": {
26440
+ "definition": {
26441
+ "description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
26442
+ "enumValues": null,
26443
+ "fields": {
26444
+ "effectiveFrom": {
26445
+ "args": {},
26446
+ "deprecationReason": null,
26447
+ "description": "The time the rule becomes active, if not used, default null",
26448
+ "id_str": "wanFirewall___updateRule___rule___rule___activePeriod___effectiveFrom",
26449
+ "isDeprecated": false,
26450
+ "name": "effectiveFrom",
26451
+ "path": "wanFirewall.updateRule.rule.rule.activePeriod.effectiveFrom",
26452
+ "requestStr": "$effectiveFrom:DateTime ",
26453
+ "required": false,
26454
+ "responseStr": "effectiveFrom:$effectiveFrom ",
26455
+ "type": {
26456
+ "kind": [
26457
+ "SCALAR"
26458
+ ],
26459
+ "name": "DateTime",
26460
+ "non_null": false
26461
+ },
26462
+ "varName": "effectiveFrom"
26463
+ },
26464
+ "expiresAt": {
26465
+ "args": {},
26466
+ "deprecationReason": null,
26467
+ "description": "The time the rule expires, if not used, default null",
26468
+ "id_str": "wanFirewall___updateRule___rule___rule___activePeriod___expiresAt",
26469
+ "isDeprecated": false,
26470
+ "name": "expiresAt",
26471
+ "path": "wanFirewall.updateRule.rule.rule.activePeriod.expiresAt",
26472
+ "requestStr": "$expiresAt:DateTime ",
26473
+ "required": false,
26474
+ "responseStr": "expiresAt:$expiresAt ",
26475
+ "type": {
26476
+ "kind": [
26477
+ "SCALAR"
26478
+ ],
26479
+ "name": "DateTime",
26480
+ "non_null": false
26481
+ },
26482
+ "varName": "expiresAt"
26483
+ },
26484
+ "useEffectiveFrom": {
26485
+ "args": {},
26486
+ "deprecationReason": null,
26487
+ "description": null,
26488
+ "id_str": "wanFirewall___updateRule___rule___rule___activePeriod___useEffectiveFrom",
26489
+ "isDeprecated": false,
26490
+ "name": "useEffectiveFrom",
26491
+ "path": "wanFirewall.updateRule.rule.rule.activePeriod.useEffectiveFrom",
26492
+ "requestStr": "$useEffectiveFrom:Boolean! ",
26493
+ "required": true,
26494
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
26495
+ "type": {
26496
+ "kind": [
26497
+ "NON_NULL",
26498
+ "SCALAR"
26499
+ ],
26500
+ "name": "Boolean",
26501
+ "non_null": false
26502
+ },
26503
+ "varName": "useEffectiveFrom"
26504
+ },
26505
+ "useExpiresAt": {
26506
+ "args": {},
26507
+ "deprecationReason": null,
26508
+ "description": null,
26509
+ "id_str": "wanFirewall___updateRule___rule___rule___activePeriod___useExpiresAt",
26510
+ "isDeprecated": false,
26511
+ "name": "useExpiresAt",
26512
+ "path": "wanFirewall.updateRule.rule.rule.activePeriod.useExpiresAt",
26513
+ "requestStr": "$useExpiresAt:Boolean! ",
26514
+ "required": true,
26515
+ "responseStr": "useExpiresAt:$useExpiresAt ",
26516
+ "type": {
26517
+ "kind": [
26518
+ "NON_NULL",
26519
+ "SCALAR"
26520
+ ],
26521
+ "name": "Boolean",
26522
+ "non_null": false
26523
+ },
26524
+ "varName": "useExpiresAt"
26525
+ }
26526
+ },
26527
+ "inputFields": null,
26528
+ "interfaces": {},
26529
+ "kind": "OBJECT",
26530
+ "name": "PolicyRuleActivePeriod",
26531
+ "possibleTypes": null
26532
+ },
26533
+ "indexType": "object",
26534
+ "kind": [
26535
+ "NON_NULL",
26536
+ "OBJECT"
26537
+ ],
26538
+ "name": "PolicyRuleActivePeriod",
26539
+ "non_null": false
26540
+ },
26541
+ "varName": "policyRuleActivePeriod"
26542
+ },
26119
26543
  "application": {
26120
26544
  "alias": "wanFirewallApplicationApplication: application",
26121
26545
  "args": {},
26122
26546
  "deprecationReason": null,
26123
- "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
26547
+ "description": "Application traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
26124
26548
  "id_str": "wanFirewall___updateRule___rule___rule___application",
26125
26549
  "isDeprecated": false,
26126
26550
  "name": "application",
@@ -26371,7 +26795,7 @@
26371
26795
  "alias": "customCategoryRefCustomCategory: customCategory",
26372
26796
  "args": {},
26373
26797
  "deprecationReason": null,
26374
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
26798
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
26375
26799
  "id_str": "wanFirewall___updateRule___rule___rule___application___customCategory",
26376
26800
  "isDeprecated": false,
26377
26801
  "name": "customCategory",
@@ -26844,7 +27268,7 @@
26844
27268
  "alias": "countryRefCountry: country",
26845
27269
  "args": {},
26846
27270
  "deprecationReason": null,
26847
- "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
27271
+ "description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
26848
27272
  "id_str": "wanFirewall___updateRule___rule___rule___country",
26849
27273
  "isDeprecated": false,
26850
27274
  "name": "country",
@@ -26943,7 +27367,7 @@
26943
27367
  "alias": "wanFirewallDestinationDestination: destination",
26944
27368
  "args": {},
26945
27369
  "deprecationReason": null,
26946
- "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
27370
+ "description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
26947
27371
  "id_str": "wanFirewall___updateRule___rule___rule___destination",
26948
27372
  "isDeprecated": false,
26949
27373
  "name": "destination",
@@ -27881,7 +28305,7 @@
27881
28305
  "alias": "deviceProfileRefDevice: device",
27882
28306
  "args": {},
27883
28307
  "deprecationReason": null,
27884
- "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
28308
+ "description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
27885
28309
  "id_str": "wanFirewall___updateRule___rule___rule___device",
27886
28310
  "isDeprecated": false,
27887
28311
  "name": "device",
@@ -28131,7 +28555,7 @@
28131
28555
  "alias": "operatingSystemDeviceOS: deviceOS",
28132
28556
  "args": {},
28133
28557
  "deprecationReason": null,
28134
- "description": "Source device Operating System traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
28558
+ "description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
28135
28559
  "id_str": "wanFirewall___updateRule___rule___rule___deviceOS",
28136
28560
  "isDeprecated": false,
28137
28561
  "name": "deviceOS",
@@ -28538,7 +28962,7 @@
28538
28962
  "alias": "customCategoryRefCustomCategory: customCategory",
28539
28963
  "args": {},
28540
28964
  "deprecationReason": null,
28541
- "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
28965
+ "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
28542
28966
  "id_str": "wanFirewall___updateRule___rule___rule___exceptions___application___customCategory",
28543
28967
  "isDeprecated": false,
28544
28968
  "name": "customCategory",
@@ -32140,7 +32564,7 @@
32140
32564
  "alias": "wanFirewallServiceTypeService: service",
32141
32565
  "args": {},
32142
32566
  "deprecationReason": null,
32143
- "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
32567
+ "description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
32144
32568
  "id_str": "wanFirewall___updateRule___rule___rule___service",
32145
32569
  "isDeprecated": false,
32146
32570
  "name": "service",
@@ -32449,7 +32873,7 @@
32449
32873
  "alias": "wanFirewallSourceSource: source",
32450
32874
  "args": {},
32451
32875
  "deprecationReason": null,
32452
- "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
32876
+ "description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
32453
32877
  "id_str": "wanFirewall___updateRule___rule___rule___source",
32454
32878
  "isDeprecated": false,
32455
32879
  "name": "source",
@@ -33420,7 +33844,7 @@
33420
33844
  "enabled": {
33421
33845
  "args": {},
33422
33846
  "deprecationReason": null,
33423
- "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
33847
+ "description": "TRUE send alerts when the rule is matched, FALSE don’t send alerts when the rule is matched",
33424
33848
  "id_str": "wanFirewall___updateRule___rule___rule___tracking___alert___enabled",
33425
33849
  "isDeprecated": false,
33426
33850
  "name": "enabled",
@@ -33961,6 +34385,20 @@
33961
34385
  "action": {
33962
34386
  "action": "enum(WanFirewallActionEnum)"
33963
34387
  },
34388
+ "activePeriod": {
34389
+ "effectiveFrom": {
34390
+ "effectiveFrom": "DateTime"
34391
+ },
34392
+ "expiresAt": {
34393
+ "expiresAt": "DateTime"
34394
+ },
34395
+ "useEffectiveFrom": {
34396
+ "useEffectiveFrom": "Boolean"
34397
+ },
34398
+ "useExpiresAt": {
34399
+ "useExpiresAt": "Boolean"
34400
+ }
34401
+ },
33964
34402
  "application": {
33965
34403
  "appCategory": {
33966
34404
  "by": {