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
@@ -0,0 +1,3086 @@
1
+ {
2
+ "args": {
3
+ "accountId": {
4
+ "defaultValue": null,
5
+ "description": null,
6
+ "id_str": "accountId",
7
+ "name": "accountId",
8
+ "path": "accountId",
9
+ "requestStr": "$accountId:ID! ",
10
+ "required": true,
11
+ "responseStr": "accountId:$accountId ",
12
+ "type": {
13
+ "kind": [
14
+ "NON_NULL",
15
+ "SCALAR"
16
+ ],
17
+ "name": "ID",
18
+ "non_null": false
19
+ },
20
+ "varName": "accountId"
21
+ }
22
+ },
23
+ "childOperations": {
24
+ "appTenantRestriction": {
25
+ "args": {},
26
+ "deprecationReason": null,
27
+ "description": null,
28
+ "isDeprecated": false,
29
+ "name": "appTenantRestriction",
30
+ "type": {
31
+ "kind": "OBJECT",
32
+ "name": "AppTenantRestrictionPolicyQueries",
33
+ "ofType": null
34
+ }
35
+ },
36
+ "policy": {
37
+ "args": {
38
+ "policy___input": {
39
+ "defaultValue": null,
40
+ "description": null,
41
+ "id_str": "policy___input",
42
+ "name": "input",
43
+ "path": "policy.input",
44
+ "requestStr": "$appTenantRestrictionPolicyInput:AppTenantRestrictionPolicyInput ",
45
+ "required": false,
46
+ "responseStr": "input:$appTenantRestrictionPolicyInput ",
47
+ "type": {
48
+ "definition": {
49
+ "description": null,
50
+ "enumValues": null,
51
+ "fields": null,
52
+ "inputFields": {
53
+ "revision": {
54
+ "defaultValue": null,
55
+ "description": "A revision is a specific instance of the policy.\n Unpublished revisions are working copies of the policy available to a specific\n admin or a set of admins\n Published revisions are revisions that were applied to the account network.\n The last published revision is the active policy.",
56
+ "id_str": "policy___input___revision",
57
+ "name": "revision",
58
+ "path": "policy.input.revision",
59
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
60
+ "required": false,
61
+ "responseStr": "revision:$policyRevisionInput ",
62
+ "type": {
63
+ "definition": {
64
+ "description": "Input for specifying a policy revision",
65
+ "enumValues": null,
66
+ "fields": null,
67
+ "inputFields": {
68
+ "id": {
69
+ "defaultValue": null,
70
+ "description": null,
71
+ "id_str": "policy___input___revision___id",
72
+ "name": "id",
73
+ "path": "policy.input.revision.id",
74
+ "requestStr": "$id:ID ",
75
+ "required": false,
76
+ "responseStr": "id:$id ",
77
+ "type": {
78
+ "kind": [
79
+ "SCALAR"
80
+ ],
81
+ "name": "ID",
82
+ "non_null": false
83
+ },
84
+ "varName": "id"
85
+ },
86
+ "type": {
87
+ "defaultValue": "PRIVATE",
88
+ "description": null,
89
+ "id_str": "policy___input___revision___type",
90
+ "name": "type",
91
+ "path": "policy.input.revision.type",
92
+ "requestStr": "$type:PolicyRevisionType ",
93
+ "required": false,
94
+ "responseStr": "type:$type ",
95
+ "type": {
96
+ "definition": {
97
+ "description": "Enum for the type of a policy revision",
98
+ "enumValues": [
99
+ {
100
+ "deprecationReason": null,
101
+ "description": null,
102
+ "isDeprecated": false,
103
+ "name": "PRIVATE"
104
+ },
105
+ {
106
+ "deprecationReason": null,
107
+ "description": null,
108
+ "isDeprecated": false,
109
+ "name": "PUBLIC"
110
+ }
111
+ ],
112
+ "fields": null,
113
+ "inputFields": null,
114
+ "interfaces": null,
115
+ "kind": "ENUM",
116
+ "name": "PolicyRevisionType",
117
+ "possibleTypes": null
118
+ },
119
+ "indexType": "enum",
120
+ "kind": [
121
+ "ENUM"
122
+ ],
123
+ "name": "PolicyRevisionType",
124
+ "non_null": false
125
+ },
126
+ "varName": "type"
127
+ }
128
+ },
129
+ "interfaces": null,
130
+ "kind": "INPUT_OBJECT",
131
+ "name": "PolicyRevisionInput",
132
+ "possibleTypes": null
133
+ },
134
+ "indexType": "input_object",
135
+ "kind": [
136
+ "INPUT_OBJECT"
137
+ ],
138
+ "name": "PolicyRevisionInput",
139
+ "non_null": false
140
+ },
141
+ "varName": "policyRevisionInput"
142
+ }
143
+ },
144
+ "interfaces": null,
145
+ "kind": "INPUT_OBJECT",
146
+ "name": "AppTenantRestrictionPolicyInput",
147
+ "possibleTypes": null
148
+ },
149
+ "indexType": "input_object",
150
+ "kind": [
151
+ "INPUT_OBJECT"
152
+ ],
153
+ "name": "AppTenantRestrictionPolicyInput",
154
+ "non_null": false
155
+ },
156
+ "varName": "appTenantRestrictionPolicyInput"
157
+ }
158
+ },
159
+ "deprecationReason": null,
160
+ "description": null,
161
+ "isDeprecated": false,
162
+ "name": "policy",
163
+ "type": {
164
+ "kind": "NON_NULL",
165
+ "name": null,
166
+ "ofType": {
167
+ "kind": "OBJECT",
168
+ "name": "AppTenantRestrictionPolicy",
169
+ "ofType": null
170
+ }
171
+ }
172
+ }
173
+ },
174
+ "deprecationReason": null,
175
+ "description": null,
176
+ "fieldTypes": {
177
+ "AppTenantRestrictionActionEnum": true,
178
+ "AppTenantRestrictionHeaderValue": true,
179
+ "AppTenantRestrictionPolicy": true,
180
+ "AppTenantRestrictionPolicyQueries": true,
181
+ "AppTenantRestrictionRule": true,
182
+ "AppTenantRestrictionRulePayload": true,
183
+ "AppTenantRestrictionSeverityEnum": true,
184
+ "AppTenantRestrictionSource": true,
185
+ "ApplicationRef": true,
186
+ "CountryRef": true,
187
+ "DayOfWeek": true,
188
+ "FloatingSubnetRef": true,
189
+ "GlobalIpRangeRef": true,
190
+ "GroupRef": true,
191
+ "HostRef": true,
192
+ "IpAddressRange": true,
193
+ "NetworkInterfaceRef": true,
194
+ "PolicyActiveOnEnum": true,
195
+ "PolicyAudit": true,
196
+ "PolicyCustomRecurring": true,
197
+ "PolicyCustomTimeframe": true,
198
+ "PolicyElementAudit": true,
199
+ "PolicyElementPropertiesEnum": true,
200
+ "PolicyRevision": true,
201
+ "PolicyRevisionInput": true,
202
+ "PolicyRevisionType": true,
203
+ "PolicySchedule": true,
204
+ "PolicySectionInfo": true,
205
+ "PolicySectionPayload": true,
206
+ "SiteNetworkSubnetRef": true,
207
+ "SiteRef": true,
208
+ "SystemGroupRef": true,
209
+ "UserRef": true,
210
+ "UsersGroupRef": true
211
+ },
212
+ "isDeprecated": false,
213
+ "name": "policy",
214
+ "operationArgs": {
215
+ "accountId": {
216
+ "defaultValue": null,
217
+ "description": null,
218
+ "id_str": "accountId",
219
+ "name": "accountId",
220
+ "path": "accountId",
221
+ "requestStr": "$accountId:ID! ",
222
+ "required": true,
223
+ "responseStr": "accountId:$accountId ",
224
+ "type": {
225
+ "kind": [
226
+ "NON_NULL",
227
+ "SCALAR"
228
+ ],
229
+ "name": "ID",
230
+ "non_null": false
231
+ },
232
+ "varName": "accountId"
233
+ },
234
+ "appTenantRestrictionPolicyInput": {
235
+ "defaultValue": null,
236
+ "description": null,
237
+ "id_str": "policy___input",
238
+ "name": "input",
239
+ "path": "policy.input",
240
+ "requestStr": "$appTenantRestrictionPolicyInput:AppTenantRestrictionPolicyInput ",
241
+ "required": false,
242
+ "responseStr": "input:$appTenantRestrictionPolicyInput ",
243
+ "type": {
244
+ "definition": {
245
+ "description": null,
246
+ "enumValues": null,
247
+ "fields": null,
248
+ "inputFields": {
249
+ "revision": {
250
+ "defaultValue": null,
251
+ "description": "A revision is a specific instance of the policy.\n Unpublished revisions are working copies of the policy available to a specific\n admin or a set of admins\n Published revisions are revisions that were applied to the account network.\n The last published revision is the active policy.",
252
+ "id_str": "policy___input___revision",
253
+ "name": "revision",
254
+ "path": "policy.input.revision",
255
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
256
+ "required": false,
257
+ "responseStr": "revision:$policyRevisionInput ",
258
+ "type": {
259
+ "definition": {
260
+ "description": "Input for specifying a policy revision",
261
+ "enumValues": null,
262
+ "fields": null,
263
+ "inputFields": {
264
+ "id": {
265
+ "defaultValue": null,
266
+ "description": null,
267
+ "id_str": "policy___input___revision___id",
268
+ "name": "id",
269
+ "path": "policy.input.revision.id",
270
+ "requestStr": "$id:ID ",
271
+ "required": false,
272
+ "responseStr": "id:$id ",
273
+ "type": {
274
+ "kind": [
275
+ "SCALAR"
276
+ ],
277
+ "name": "ID",
278
+ "non_null": false
279
+ },
280
+ "varName": "id"
281
+ },
282
+ "type": {
283
+ "defaultValue": "PRIVATE",
284
+ "description": null,
285
+ "id_str": "policy___input___revision___type",
286
+ "name": "type",
287
+ "path": "policy.input.revision.type",
288
+ "requestStr": "$type:PolicyRevisionType ",
289
+ "required": false,
290
+ "responseStr": "type:$type ",
291
+ "type": {
292
+ "definition": {
293
+ "description": "Enum for the type of a policy revision",
294
+ "enumValues": [
295
+ {
296
+ "deprecationReason": null,
297
+ "description": null,
298
+ "isDeprecated": false,
299
+ "name": "PRIVATE"
300
+ },
301
+ {
302
+ "deprecationReason": null,
303
+ "description": null,
304
+ "isDeprecated": false,
305
+ "name": "PUBLIC"
306
+ }
307
+ ],
308
+ "fields": null,
309
+ "inputFields": null,
310
+ "interfaces": null,
311
+ "kind": "ENUM",
312
+ "name": "PolicyRevisionType",
313
+ "possibleTypes": null
314
+ },
315
+ "indexType": "enum",
316
+ "kind": [
317
+ "ENUM"
318
+ ],
319
+ "name": "PolicyRevisionType",
320
+ "non_null": false
321
+ },
322
+ "varName": "type"
323
+ }
324
+ },
325
+ "interfaces": null,
326
+ "kind": "INPUT_OBJECT",
327
+ "name": "PolicyRevisionInput",
328
+ "possibleTypes": null
329
+ },
330
+ "indexType": "input_object",
331
+ "kind": [
332
+ "INPUT_OBJECT"
333
+ ],
334
+ "name": "PolicyRevisionInput",
335
+ "non_null": false
336
+ },
337
+ "varName": "policyRevisionInput"
338
+ }
339
+ },
340
+ "interfaces": null,
341
+ "kind": "INPUT_OBJECT",
342
+ "name": "AppTenantRestrictionPolicyInput",
343
+ "possibleTypes": null
344
+ },
345
+ "indexType": "input_object",
346
+ "kind": [
347
+ "INPUT_OBJECT"
348
+ ],
349
+ "name": "AppTenantRestrictionPolicyInput",
350
+ "non_null": false
351
+ },
352
+ "varName": "appTenantRestrictionPolicyInput"
353
+ }
354
+ },
355
+ "path": "query.policy.appTenantRestriction.policy",
356
+ "type": {
357
+ "definition": {
358
+ "description": "policies which configuration can be read with query APIs.",
359
+ "enumValues": null,
360
+ "fields": {
361
+ "appTenantRestriction": {
362
+ "args": {},
363
+ "deprecationReason": null,
364
+ "description": null,
365
+ "id_str": "appTenantRestriction",
366
+ "isDeprecated": false,
367
+ "name": "appTenantRestriction",
368
+ "path": "appTenantRestriction",
369
+ "requestStr": "$appTenantRestrictionPolicyQueries:AppTenantRestrictionPolicyQueries ",
370
+ "required": false,
371
+ "responseStr": "appTenantRestriction:$appTenantRestrictionPolicyQueries ",
372
+ "type": {
373
+ "definition": {
374
+ "description": null,
375
+ "enumValues": null,
376
+ "fields": {
377
+ "policy": {
378
+ "args": {
379
+ "policy___input": {
380
+ "defaultValue": null,
381
+ "description": null,
382
+ "id_str": "policy___input",
383
+ "name": "input",
384
+ "path": "policy.input",
385
+ "requestStr": "$appTenantRestrictionPolicyInput:AppTenantRestrictionPolicyInput ",
386
+ "required": false,
387
+ "responseStr": "input:$appTenantRestrictionPolicyInput ",
388
+ "type": {
389
+ "definition": {
390
+ "description": null,
391
+ "enumValues": null,
392
+ "fields": null,
393
+ "inputFields": {
394
+ "revision": {
395
+ "defaultValue": null,
396
+ "description": "A revision is a specific instance of the policy.\n Unpublished revisions are working copies of the policy available to a specific\n admin or a set of admins\n Published revisions are revisions that were applied to the account network.\n The last published revision is the active policy.",
397
+ "id_str": "policy___input___revision",
398
+ "name": "revision",
399
+ "path": "policy.input.revision",
400
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
401
+ "required": false,
402
+ "responseStr": "revision:$policyRevisionInput ",
403
+ "type": {
404
+ "definition": {
405
+ "description": "Input for specifying a policy revision",
406
+ "enumValues": null,
407
+ "fields": null,
408
+ "inputFields": {
409
+ "id": {
410
+ "defaultValue": null,
411
+ "description": null,
412
+ "id_str": "policy___input___revision___id",
413
+ "name": "id",
414
+ "path": "policy.input.revision.id",
415
+ "requestStr": "$id:ID ",
416
+ "required": false,
417
+ "responseStr": "id:$id ",
418
+ "type": {
419
+ "kind": [
420
+ "SCALAR"
421
+ ],
422
+ "name": "ID",
423
+ "non_null": false
424
+ },
425
+ "varName": "id"
426
+ },
427
+ "type": {
428
+ "defaultValue": "PRIVATE",
429
+ "description": null,
430
+ "id_str": "policy___input___revision___type",
431
+ "name": "type",
432
+ "path": "policy.input.revision.type",
433
+ "requestStr": "$type:PolicyRevisionType ",
434
+ "required": false,
435
+ "responseStr": "type:$type ",
436
+ "type": {
437
+ "definition": {
438
+ "description": "Enum for the type of a policy revision",
439
+ "enumValues": [
440
+ {
441
+ "deprecationReason": null,
442
+ "description": null,
443
+ "isDeprecated": false,
444
+ "name": "PRIVATE"
445
+ },
446
+ {
447
+ "deprecationReason": null,
448
+ "description": null,
449
+ "isDeprecated": false,
450
+ "name": "PUBLIC"
451
+ }
452
+ ],
453
+ "fields": null,
454
+ "inputFields": null,
455
+ "interfaces": null,
456
+ "kind": "ENUM",
457
+ "name": "PolicyRevisionType",
458
+ "possibleTypes": null
459
+ },
460
+ "indexType": "enum",
461
+ "kind": [
462
+ "ENUM"
463
+ ],
464
+ "name": "PolicyRevisionType",
465
+ "non_null": false
466
+ },
467
+ "varName": "type"
468
+ }
469
+ },
470
+ "interfaces": null,
471
+ "kind": "INPUT_OBJECT",
472
+ "name": "PolicyRevisionInput",
473
+ "possibleTypes": null
474
+ },
475
+ "indexType": "input_object",
476
+ "kind": [
477
+ "INPUT_OBJECT"
478
+ ],
479
+ "name": "PolicyRevisionInput",
480
+ "non_null": false
481
+ },
482
+ "varName": "policyRevisionInput"
483
+ }
484
+ },
485
+ "interfaces": null,
486
+ "kind": "INPUT_OBJECT",
487
+ "name": "AppTenantRestrictionPolicyInput",
488
+ "possibleTypes": null
489
+ },
490
+ "indexType": "input_object",
491
+ "kind": [
492
+ "INPUT_OBJECT"
493
+ ],
494
+ "name": "AppTenantRestrictionPolicyInput",
495
+ "non_null": false
496
+ },
497
+ "varName": "appTenantRestrictionPolicyInput"
498
+ }
499
+ },
500
+ "deprecationReason": null,
501
+ "description": null,
502
+ "id_str": "appTenantRestriction___policy",
503
+ "isDeprecated": false,
504
+ "name": "policy",
505
+ "path": "appTenantRestriction.policy",
506
+ "requestStr": "$appTenantRestrictionPolicy:AppTenantRestrictionPolicy! ",
507
+ "required": true,
508
+ "responseStr": "policy:$appTenantRestrictionPolicy ",
509
+ "type": {
510
+ "definition": {
511
+ "description": null,
512
+ "enumValues": null,
513
+ "fields": {
514
+ "audit": {
515
+ "alias": "policyAuditAudit: audit",
516
+ "args": {},
517
+ "deprecationReason": null,
518
+ "description": null,
519
+ "id_str": "appTenantRestriction___policy___audit",
520
+ "isDeprecated": false,
521
+ "name": "audit",
522
+ "path": "appTenantRestriction.policy.audit",
523
+ "requestStr": "$policyAudit:PolicyAudit ",
524
+ "required": false,
525
+ "responseStr": "audit:$policyAudit ",
526
+ "type": {
527
+ "definition": {
528
+ "description": null,
529
+ "enumValues": null,
530
+ "fields": {
531
+ "publishedBy": {
532
+ "args": {},
533
+ "deprecationReason": null,
534
+ "description": null,
535
+ "id_str": "appTenantRestriction___policy___audit___publishedBy",
536
+ "isDeprecated": false,
537
+ "name": "publishedBy",
538
+ "path": "appTenantRestriction.policy.audit.publishedBy",
539
+ "requestStr": "$publishedBy:String! ",
540
+ "required": true,
541
+ "responseStr": "publishedBy:$publishedBy ",
542
+ "type": {
543
+ "kind": [
544
+ "NON_NULL",
545
+ "SCALAR"
546
+ ],
547
+ "name": "String",
548
+ "non_null": false
549
+ },
550
+ "varName": "publishedBy"
551
+ },
552
+ "publishedTime": {
553
+ "args": {},
554
+ "deprecationReason": null,
555
+ "description": null,
556
+ "id_str": "appTenantRestriction___policy___audit___publishedTime",
557
+ "isDeprecated": false,
558
+ "name": "publishedTime",
559
+ "path": "appTenantRestriction.policy.audit.publishedTime",
560
+ "requestStr": "$publishedTime:DateTime! ",
561
+ "required": true,
562
+ "responseStr": "publishedTime:$publishedTime ",
563
+ "type": {
564
+ "kind": [
565
+ "NON_NULL",
566
+ "SCALAR"
567
+ ],
568
+ "name": "DateTime",
569
+ "non_null": false
570
+ },
571
+ "varName": "publishedTime"
572
+ }
573
+ },
574
+ "inputFields": null,
575
+ "interfaces": {},
576
+ "kind": "OBJECT",
577
+ "name": "PolicyAudit",
578
+ "possibleTypes": null
579
+ },
580
+ "indexType": "object",
581
+ "kind": [
582
+ "OBJECT"
583
+ ],
584
+ "name": "PolicyAudit",
585
+ "non_null": false
586
+ },
587
+ "varName": "policyAudit"
588
+ },
589
+ "enabled": {
590
+ "args": {},
591
+ "deprecationReason": null,
592
+ "description": null,
593
+ "id_str": "appTenantRestriction___policy___enabled",
594
+ "isDeprecated": false,
595
+ "name": "enabled",
596
+ "path": "appTenantRestriction.policy.enabled",
597
+ "requestStr": "$enabled:Boolean! ",
598
+ "required": true,
599
+ "responseStr": "enabled:$enabled ",
600
+ "type": {
601
+ "kind": [
602
+ "NON_NULL",
603
+ "SCALAR"
604
+ ],
605
+ "name": "Boolean",
606
+ "non_null": false
607
+ },
608
+ "varName": "enabled"
609
+ },
610
+ "revision": {
611
+ "alias": "policyRevisionRevision: revision",
612
+ "args": {},
613
+ "deprecationReason": null,
614
+ "description": null,
615
+ "id_str": "appTenantRestriction___policy___revision",
616
+ "isDeprecated": false,
617
+ "name": "revision",
618
+ "path": "appTenantRestriction.policy.revision",
619
+ "requestStr": "$policyRevision:PolicyRevision ",
620
+ "required": false,
621
+ "responseStr": "revision:$policyRevision ",
622
+ "type": {
623
+ "definition": {
624
+ "description": "Returns data about the policy revision, such as when the change was made, how many rules were changed, etc.",
625
+ "enumValues": null,
626
+ "fields": {
627
+ "changes": {
628
+ "args": {},
629
+ "deprecationReason": null,
630
+ "description": null,
631
+ "id_str": "appTenantRestriction___policy___revision___changes",
632
+ "isDeprecated": false,
633
+ "name": "changes",
634
+ "path": "appTenantRestriction.policy.revision.changes",
635
+ "requestStr": "$changes:Int! ",
636
+ "required": true,
637
+ "responseStr": "changes:$changes ",
638
+ "type": {
639
+ "kind": [
640
+ "NON_NULL",
641
+ "SCALAR"
642
+ ],
643
+ "name": "Int",
644
+ "non_null": false
645
+ },
646
+ "varName": "changes"
647
+ },
648
+ "createdTime": {
649
+ "args": {},
650
+ "deprecationReason": null,
651
+ "description": null,
652
+ "id_str": "appTenantRestriction___policy___revision___createdTime",
653
+ "isDeprecated": false,
654
+ "name": "createdTime",
655
+ "path": "appTenantRestriction.policy.revision.createdTime",
656
+ "requestStr": "$createdTime:DateTime! ",
657
+ "required": true,
658
+ "responseStr": "createdTime:$createdTime ",
659
+ "type": {
660
+ "kind": [
661
+ "NON_NULL",
662
+ "SCALAR"
663
+ ],
664
+ "name": "DateTime",
665
+ "non_null": false
666
+ },
667
+ "varName": "createdTime"
668
+ },
669
+ "description": {
670
+ "args": {},
671
+ "deprecationReason": null,
672
+ "description": null,
673
+ "id_str": "appTenantRestriction___policy___revision___description",
674
+ "isDeprecated": false,
675
+ "name": "description",
676
+ "path": "appTenantRestriction.policy.revision.description",
677
+ "requestStr": "$description:String! ",
678
+ "required": true,
679
+ "responseStr": "description:$description ",
680
+ "type": {
681
+ "kind": [
682
+ "NON_NULL",
683
+ "SCALAR"
684
+ ],
685
+ "name": "String",
686
+ "non_null": false
687
+ },
688
+ "varName": "description"
689
+ },
690
+ "id": {
691
+ "args": {},
692
+ "deprecationReason": null,
693
+ "description": null,
694
+ "id_str": "appTenantRestriction___policy___revision___id",
695
+ "isDeprecated": false,
696
+ "name": "id",
697
+ "path": "appTenantRestriction.policy.revision.id",
698
+ "requestStr": "$id:ID! ",
699
+ "required": true,
700
+ "responseStr": "id:$id ",
701
+ "type": {
702
+ "kind": [
703
+ "NON_NULL",
704
+ "SCALAR"
705
+ ],
706
+ "name": "ID",
707
+ "non_null": false
708
+ },
709
+ "varName": "id"
710
+ },
711
+ "name": {
712
+ "args": {},
713
+ "deprecationReason": null,
714
+ "description": null,
715
+ "id_str": "appTenantRestriction___policy___revision___name",
716
+ "isDeprecated": false,
717
+ "name": "name",
718
+ "path": "appTenantRestriction.policy.revision.name",
719
+ "requestStr": "$name:String! ",
720
+ "required": true,
721
+ "responseStr": "name:$name ",
722
+ "type": {
723
+ "kind": [
724
+ "NON_NULL",
725
+ "SCALAR"
726
+ ],
727
+ "name": "String",
728
+ "non_null": false
729
+ },
730
+ "varName": "name"
731
+ },
732
+ "updatedTime": {
733
+ "args": {},
734
+ "deprecationReason": null,
735
+ "description": null,
736
+ "id_str": "appTenantRestriction___policy___revision___updatedTime",
737
+ "isDeprecated": false,
738
+ "name": "updatedTime",
739
+ "path": "appTenantRestriction.policy.revision.updatedTime",
740
+ "requestStr": "$updatedTime:DateTime! ",
741
+ "required": true,
742
+ "responseStr": "updatedTime:$updatedTime ",
743
+ "type": {
744
+ "kind": [
745
+ "NON_NULL",
746
+ "SCALAR"
747
+ ],
748
+ "name": "DateTime",
749
+ "non_null": false
750
+ },
751
+ "varName": "updatedTime"
752
+ }
753
+ },
754
+ "inputFields": null,
755
+ "interfaces": {},
756
+ "kind": "OBJECT",
757
+ "name": "PolicyRevision",
758
+ "possibleTypes": null
759
+ },
760
+ "indexType": "object",
761
+ "kind": [
762
+ "OBJECT"
763
+ ],
764
+ "name": "PolicyRevision",
765
+ "non_null": false
766
+ },
767
+ "varName": "policyRevision"
768
+ },
769
+ "rules": {
770
+ "alias": "appTenantRestrictionRulePayloadRules: rules",
771
+ "args": {},
772
+ "deprecationReason": null,
773
+ "description": null,
774
+ "id_str": "appTenantRestriction___policy___rules",
775
+ "isDeprecated": false,
776
+ "name": "rules",
777
+ "path": "appTenantRestriction.policy.rules",
778
+ "requestStr": "$appTenantRestrictionRulePayload:[AppTenantRestrictionRulePayload]! ",
779
+ "required": true,
780
+ "responseStr": "rules:$appTenantRestrictionRulePayload ",
781
+ "type": {
782
+ "definition": {
783
+ "description": null,
784
+ "enumValues": null,
785
+ "fields": {
786
+ "audit": {
787
+ "alias": "policyElementAuditAudit: audit",
788
+ "args": {},
789
+ "deprecationReason": null,
790
+ "description": null,
791
+ "id_str": "appTenantRestriction___policy___rules___audit",
792
+ "isDeprecated": false,
793
+ "name": "audit",
794
+ "path": "appTenantRestriction.policy.rules.audit",
795
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
796
+ "required": true,
797
+ "responseStr": "audit:$policyElementAudit ",
798
+ "type": {
799
+ "definition": {
800
+ "description": null,
801
+ "enumValues": null,
802
+ "fields": {
803
+ "updatedBy": {
804
+ "args": {},
805
+ "deprecationReason": null,
806
+ "description": "The admin, or the API-key, that performed the last update",
807
+ "id_str": "appTenantRestriction___policy___rules___audit___updatedBy",
808
+ "isDeprecated": false,
809
+ "name": "updatedBy",
810
+ "path": "appTenantRestriction.policy.rules.audit.updatedBy",
811
+ "requestStr": "$updatedBy:String! ",
812
+ "required": true,
813
+ "responseStr": "updatedBy:$updatedBy ",
814
+ "type": {
815
+ "kind": [
816
+ "NON_NULL",
817
+ "SCALAR"
818
+ ],
819
+ "name": "String",
820
+ "non_null": false
821
+ },
822
+ "varName": "updatedBy"
823
+ },
824
+ "updatedTime": {
825
+ "args": {},
826
+ "deprecationReason": null,
827
+ "description": "The last date and time the rule was updated",
828
+ "id_str": "appTenantRestriction___policy___rules___audit___updatedTime",
829
+ "isDeprecated": false,
830
+ "name": "updatedTime",
831
+ "path": "appTenantRestriction.policy.rules.audit.updatedTime",
832
+ "requestStr": "$updatedTime:DateTime! ",
833
+ "required": true,
834
+ "responseStr": "updatedTime:$updatedTime ",
835
+ "type": {
836
+ "kind": [
837
+ "NON_NULL",
838
+ "SCALAR"
839
+ ],
840
+ "name": "DateTime",
841
+ "non_null": false
842
+ },
843
+ "varName": "updatedTime"
844
+ }
845
+ },
846
+ "inputFields": null,
847
+ "interfaces": {},
848
+ "kind": "OBJECT",
849
+ "name": "PolicyElementAudit",
850
+ "possibleTypes": null
851
+ },
852
+ "indexType": "object",
853
+ "kind": [
854
+ "NON_NULL",
855
+ "OBJECT"
856
+ ],
857
+ "name": "PolicyElementAudit",
858
+ "non_null": false
859
+ },
860
+ "varName": "policyElementAudit"
861
+ },
862
+ "properties": {
863
+ "alias": "policyElementPropertiesEnumProperties: properties",
864
+ "args": {},
865
+ "deprecationReason": null,
866
+ "description": null,
867
+ "id_str": "appTenantRestriction___policy___rules___properties",
868
+ "isDeprecated": false,
869
+ "name": "properties",
870
+ "path": "appTenantRestriction.policy.rules.properties",
871
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
872
+ "required": true,
873
+ "responseStr": "properties:$properties ",
874
+ "type": {
875
+ "definition": {
876
+ "description": "Attributes describing the rule state or type",
877
+ "enumValues": [
878
+ {
879
+ "deprecationReason": null,
880
+ "description": "New (added) rule",
881
+ "isDeprecated": false,
882
+ "name": "ADDED"
883
+ },
884
+ {
885
+ "deprecationReason": null,
886
+ "description": "Updated (modified) existing rule",
887
+ "isDeprecated": false,
888
+ "name": "UPDATED"
889
+ },
890
+ {
891
+ "deprecationReason": null,
892
+ "description": "Removed (deleted) rule",
893
+ "isDeprecated": false,
894
+ "name": "REMOVED"
895
+ },
896
+ {
897
+ "deprecationReason": null,
898
+ "description": "A rule moved to a different position",
899
+ "isDeprecated": false,
900
+ "name": "MOVED"
901
+ },
902
+ {
903
+ "deprecationReason": null,
904
+ "description": "A rule locked for changes by other admins",
905
+ "isDeprecated": false,
906
+ "name": "LOCKED"
907
+ },
908
+ {
909
+ "deprecationReason": null,
910
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
911
+ "isDeprecated": false,
912
+ "name": "ANCHORED"
913
+ },
914
+ {
915
+ "deprecationReason": null,
916
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
917
+ "isDeprecated": false,
918
+ "name": "SYSTEM"
919
+ }
920
+ ],
921
+ "fields": null,
922
+ "inputFields": null,
923
+ "interfaces": null,
924
+ "kind": "ENUM",
925
+ "name": "PolicyElementPropertiesEnum",
926
+ "possibleTypes": null
927
+ },
928
+ "indexType": "enum",
929
+ "kind": [
930
+ "NON_NULL",
931
+ "LIST",
932
+ "NON_NULL",
933
+ "ENUM"
934
+ ],
935
+ "name": "PolicyElementPropertiesEnum",
936
+ "non_null": false
937
+ },
938
+ "varName": "properties"
939
+ },
940
+ "rule": {
941
+ "alias": "appTenantRestrictionRuleRule: rule",
942
+ "args": {},
943
+ "deprecationReason": null,
944
+ "description": null,
945
+ "id_str": "appTenantRestriction___policy___rules___rule",
946
+ "isDeprecated": false,
947
+ "name": "rule",
948
+ "path": "appTenantRestriction.policy.rules.rule",
949
+ "requestStr": "$appTenantRestrictionRule:AppTenantRestrictionRule! ",
950
+ "required": true,
951
+ "responseStr": "rule:$appTenantRestrictionRule ",
952
+ "type": {
953
+ "definition": {
954
+ "description": null,
955
+ "enumValues": null,
956
+ "fields": {
957
+ "action": {
958
+ "alias": "appTenantRestrictionActionEnumAction: action",
959
+ "args": {},
960
+ "deprecationReason": null,
961
+ "description": "The action applied by the App Tenant Restriction if the rule is matched",
962
+ "id_str": "appTenantRestriction___policy___rules___rule___action",
963
+ "isDeprecated": false,
964
+ "name": "action",
965
+ "path": "appTenantRestriction.policy.rules.rule.action",
966
+ "requestStr": "$action:AppTenantRestrictionActionEnum! ",
967
+ "required": true,
968
+ "responseStr": "action:$action ",
969
+ "type": {
970
+ "definition": {
971
+ "description": "Allowed actions",
972
+ "enumValues": [
973
+ {
974
+ "deprecationReason": null,
975
+ "description": "Inject Headers and Values for outgoing traffic",
976
+ "isDeprecated": false,
977
+ "name": "INJECT_HEADERS"
978
+ },
979
+ {
980
+ "deprecationReason": null,
981
+ "description": "Do not inject any Headers nor Values for outgoing traffic",
982
+ "isDeprecated": false,
983
+ "name": "BYPASS"
984
+ }
985
+ ],
986
+ "fields": null,
987
+ "inputFields": null,
988
+ "interfaces": null,
989
+ "kind": "ENUM",
990
+ "name": "AppTenantRestrictionActionEnum",
991
+ "possibleTypes": null
992
+ },
993
+ "indexType": "enum",
994
+ "kind": [
995
+ "NON_NULL",
996
+ "ENUM"
997
+ ],
998
+ "name": "AppTenantRestrictionActionEnum",
999
+ "non_null": false
1000
+ },
1001
+ "varName": "action"
1002
+ },
1003
+ "application": {
1004
+ "alias": "applicationRefApplication: application",
1005
+ "args": {},
1006
+ "deprecationReason": null,
1007
+ "description": "Applications for the rule (pre-defined)",
1008
+ "id_str": "appTenantRestriction___policy___rules___rule___application",
1009
+ "isDeprecated": false,
1010
+ "name": "application",
1011
+ "path": "appTenantRestriction.policy.rules.rule.application",
1012
+ "requestStr": "$applicationRef:ApplicationRef! ",
1013
+ "required": true,
1014
+ "responseStr": "application:$applicationRef ",
1015
+ "type": {
1016
+ "definition": {
1017
+ "description": "A reference identifying the Application object. ID: Unique Application Identifier, Name: The Application Name",
1018
+ "enumValues": null,
1019
+ "fields": {
1020
+ "id": {
1021
+ "args": {},
1022
+ "deprecationReason": null,
1023
+ "description": null,
1024
+ "id_str": "appTenantRestriction___policy___rules___rule___application___id",
1025
+ "isDeprecated": false,
1026
+ "name": "id",
1027
+ "path": "appTenantRestriction.policy.rules.rule.application.id",
1028
+ "requestStr": "$id:ID! ",
1029
+ "required": true,
1030
+ "responseStr": "id:$id ",
1031
+ "type": {
1032
+ "kind": [
1033
+ "NON_NULL",
1034
+ "SCALAR"
1035
+ ],
1036
+ "name": "ID",
1037
+ "non_null": false
1038
+ },
1039
+ "varName": "id"
1040
+ },
1041
+ "name": {
1042
+ "args": {},
1043
+ "deprecationReason": null,
1044
+ "description": null,
1045
+ "id_str": "appTenantRestriction___policy___rules___rule___application___name",
1046
+ "isDeprecated": false,
1047
+ "name": "name",
1048
+ "path": "appTenantRestriction.policy.rules.rule.application.name",
1049
+ "requestStr": "$name:String! ",
1050
+ "required": true,
1051
+ "responseStr": "name:$name ",
1052
+ "type": {
1053
+ "kind": [
1054
+ "NON_NULL",
1055
+ "SCALAR"
1056
+ ],
1057
+ "name": "String",
1058
+ "non_null": false
1059
+ },
1060
+ "varName": "name"
1061
+ }
1062
+ },
1063
+ "inputFields": null,
1064
+ "interfaces": {},
1065
+ "kind": "OBJECT",
1066
+ "name": "ApplicationRef",
1067
+ "possibleTypes": null
1068
+ },
1069
+ "indexType": "object",
1070
+ "kind": [
1071
+ "NON_NULL",
1072
+ "OBJECT"
1073
+ ],
1074
+ "name": "ApplicationRef",
1075
+ "non_null": false
1076
+ },
1077
+ "varName": "applicationRef"
1078
+ },
1079
+ "description": {
1080
+ "args": {},
1081
+ "deprecationReason": null,
1082
+ "description": "Description for the rule",
1083
+ "id_str": "appTenantRestriction___policy___rules___rule___description",
1084
+ "isDeprecated": false,
1085
+ "name": "description",
1086
+ "path": "appTenantRestriction.policy.rules.rule.description",
1087
+ "requestStr": "$description:String! ",
1088
+ "required": true,
1089
+ "responseStr": "description:$description ",
1090
+ "type": {
1091
+ "kind": [
1092
+ "NON_NULL",
1093
+ "SCALAR"
1094
+ ],
1095
+ "name": "String",
1096
+ "non_null": false
1097
+ },
1098
+ "varName": "description"
1099
+ },
1100
+ "enabled": {
1101
+ "args": {},
1102
+ "deprecationReason": null,
1103
+ "description": "TRUE = Rule is enabled \n FALSE = Rule is disabled",
1104
+ "id_str": "appTenantRestriction___policy___rules___rule___enabled",
1105
+ "isDeprecated": false,
1106
+ "name": "enabled",
1107
+ "path": "appTenantRestriction.policy.rules.rule.enabled",
1108
+ "requestStr": "$enabled:Boolean! ",
1109
+ "required": true,
1110
+ "responseStr": "enabled:$enabled ",
1111
+ "type": {
1112
+ "kind": [
1113
+ "NON_NULL",
1114
+ "SCALAR"
1115
+ ],
1116
+ "name": "Boolean",
1117
+ "non_null": false
1118
+ },
1119
+ "varName": "enabled"
1120
+ },
1121
+ "headers": {
1122
+ "alias": "appTenantRestrictionHeaderValueHeaders: headers",
1123
+ "args": {},
1124
+ "deprecationReason": null,
1125
+ "description": "Headers and Values to Inject",
1126
+ "id_str": "appTenantRestriction___policy___rules___rule___headers",
1127
+ "isDeprecated": false,
1128
+ "name": "headers",
1129
+ "path": "appTenantRestriction.policy.rules.rule.headers",
1130
+ "requestStr": "$appTenantRestrictionHeaderValue:[AppTenantRestrictionHeaderValue]! ",
1131
+ "required": true,
1132
+ "responseStr": "headers:$appTenantRestrictionHeaderValue ",
1133
+ "type": {
1134
+ "definition": {
1135
+ "description": "pair of header name and value",
1136
+ "enumValues": null,
1137
+ "fields": {
1138
+ "name": {
1139
+ "args": {},
1140
+ "deprecationReason": null,
1141
+ "description": "Header to inject",
1142
+ "id_str": "appTenantRestriction___policy___rules___rule___headers___name",
1143
+ "isDeprecated": false,
1144
+ "name": "name",
1145
+ "path": "appTenantRestriction.policy.rules.rule.headers.name",
1146
+ "requestStr": "$name:HttpHeaderName! ",
1147
+ "required": true,
1148
+ "responseStr": "name:$name ",
1149
+ "type": {
1150
+ "kind": [
1151
+ "NON_NULL",
1152
+ "SCALAR"
1153
+ ],
1154
+ "name": "HttpHeaderName",
1155
+ "non_null": false
1156
+ },
1157
+ "varName": "name"
1158
+ },
1159
+ "value": {
1160
+ "args": {},
1161
+ "deprecationReason": null,
1162
+ "description": "Value to inject",
1163
+ "id_str": "appTenantRestriction___policy___rules___rule___headers___value",
1164
+ "isDeprecated": false,
1165
+ "name": "value",
1166
+ "path": "appTenantRestriction.policy.rules.rule.headers.value",
1167
+ "requestStr": "$value:HttpHeaderValue! ",
1168
+ "required": true,
1169
+ "responseStr": "value:$value ",
1170
+ "type": {
1171
+ "kind": [
1172
+ "NON_NULL",
1173
+ "SCALAR"
1174
+ ],
1175
+ "name": "HttpHeaderValue",
1176
+ "non_null": false
1177
+ },
1178
+ "varName": "value"
1179
+ }
1180
+ },
1181
+ "inputFields": null,
1182
+ "interfaces": {},
1183
+ "kind": "OBJECT",
1184
+ "name": "AppTenantRestrictionHeaderValue",
1185
+ "possibleTypes": null
1186
+ },
1187
+ "indexType": "object",
1188
+ "kind": [
1189
+ "NON_NULL",
1190
+ "LIST",
1191
+ "NON_NULL",
1192
+ "OBJECT"
1193
+ ],
1194
+ "name": "AppTenantRestrictionHeaderValue",
1195
+ "non_null": false
1196
+ },
1197
+ "varName": "appTenantRestrictionHeaderValue"
1198
+ },
1199
+ "id": {
1200
+ "args": {},
1201
+ "deprecationReason": null,
1202
+ "description": "Rule ID",
1203
+ "id_str": "appTenantRestriction___policy___rules___rule___id",
1204
+ "isDeprecated": false,
1205
+ "name": "id",
1206
+ "path": "appTenantRestriction.policy.rules.rule.id",
1207
+ "requestStr": "$id:ID! ",
1208
+ "required": true,
1209
+ "responseStr": "id:$id ",
1210
+ "type": {
1211
+ "kind": [
1212
+ "NON_NULL",
1213
+ "SCALAR"
1214
+ ],
1215
+ "name": "ID",
1216
+ "non_null": false
1217
+ },
1218
+ "varName": "id"
1219
+ },
1220
+ "index": {
1221
+ "args": {},
1222
+ "deprecationReason": null,
1223
+ "description": "Position / priority of rule",
1224
+ "id_str": "appTenantRestriction___policy___rules___rule___index",
1225
+ "isDeprecated": false,
1226
+ "name": "index",
1227
+ "path": "appTenantRestriction.policy.rules.rule.index",
1228
+ "requestStr": "$index:Int! ",
1229
+ "required": true,
1230
+ "responseStr": "index:$index ",
1231
+ "type": {
1232
+ "kind": [
1233
+ "NON_NULL",
1234
+ "SCALAR"
1235
+ ],
1236
+ "name": "Int",
1237
+ "non_null": false
1238
+ },
1239
+ "varName": "index"
1240
+ },
1241
+ "name": {
1242
+ "args": {},
1243
+ "deprecationReason": null,
1244
+ "description": "Name of the rule",
1245
+ "id_str": "appTenantRestriction___policy___rules___rule___name",
1246
+ "isDeprecated": false,
1247
+ "name": "name",
1248
+ "path": "appTenantRestriction.policy.rules.rule.name",
1249
+ "requestStr": "$name:String! ",
1250
+ "required": true,
1251
+ "responseStr": "name:$name ",
1252
+ "type": {
1253
+ "kind": [
1254
+ "NON_NULL",
1255
+ "SCALAR"
1256
+ ],
1257
+ "name": "String",
1258
+ "non_null": false
1259
+ },
1260
+ "varName": "name"
1261
+ },
1262
+ "schedule": {
1263
+ "alias": "policyScheduleSchedule: schedule",
1264
+ "args": {},
1265
+ "deprecationReason": null,
1266
+ "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
1267
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule",
1268
+ "isDeprecated": false,
1269
+ "name": "schedule",
1270
+ "path": "appTenantRestriction.policy.rules.rule.schedule",
1271
+ "requestStr": "$policySchedule:PolicySchedule! ",
1272
+ "required": true,
1273
+ "responseStr": "schedule:$policySchedule ",
1274
+ "type": {
1275
+ "definition": {
1276
+ "description": null,
1277
+ "enumValues": null,
1278
+ "fields": {
1279
+ "activeOn": {
1280
+ "alias": "policyActiveOnEnumActiveOn: activeOn",
1281
+ "args": {},
1282
+ "deprecationReason": null,
1283
+ "description": null,
1284
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___activeOn",
1285
+ "isDeprecated": false,
1286
+ "name": "activeOn",
1287
+ "path": "appTenantRestriction.policy.rules.rule.schedule.activeOn",
1288
+ "requestStr": "$activeOn:PolicyActiveOnEnum! ",
1289
+ "required": true,
1290
+ "responseStr": "activeOn:$activeOn ",
1291
+ "type": {
1292
+ "definition": {
1293
+ "description": "Enum for the type of time range a rule is active",
1294
+ "enumValues": [
1295
+ {
1296
+ "deprecationReason": null,
1297
+ "description": null,
1298
+ "isDeprecated": false,
1299
+ "name": "ALWAYS"
1300
+ },
1301
+ {
1302
+ "deprecationReason": null,
1303
+ "description": null,
1304
+ "isDeprecated": false,
1305
+ "name": "WORKING_HOURS"
1306
+ },
1307
+ {
1308
+ "deprecationReason": null,
1309
+ "description": null,
1310
+ "isDeprecated": false,
1311
+ "name": "CUSTOM_TIMEFRAME"
1312
+ },
1313
+ {
1314
+ "deprecationReason": null,
1315
+ "description": null,
1316
+ "isDeprecated": false,
1317
+ "name": "CUSTOM_RECURRING"
1318
+ }
1319
+ ],
1320
+ "fields": null,
1321
+ "inputFields": null,
1322
+ "interfaces": null,
1323
+ "kind": "ENUM",
1324
+ "name": "PolicyActiveOnEnum",
1325
+ "possibleTypes": null
1326
+ },
1327
+ "indexType": "enum",
1328
+ "kind": [
1329
+ "NON_NULL",
1330
+ "ENUM"
1331
+ ],
1332
+ "name": "PolicyActiveOnEnum",
1333
+ "non_null": false
1334
+ },
1335
+ "varName": "activeOn"
1336
+ },
1337
+ "customRecurring": {
1338
+ "alias": "policyCustomRecurringCustomRecurring: customRecurring",
1339
+ "args": {},
1340
+ "deprecationReason": null,
1341
+ "description": null,
1342
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___customRecurring",
1343
+ "isDeprecated": false,
1344
+ "name": "customRecurring",
1345
+ "path": "appTenantRestriction.policy.rules.rule.schedule.customRecurring",
1346
+ "requestStr": "$policyCustomRecurring:PolicyCustomRecurring ",
1347
+ "required": false,
1348
+ "responseStr": "customRecurring:$policyCustomRecurring ",
1349
+ "type": {
1350
+ "definition": {
1351
+ "description": "Returns data for a custom recurring time range that a rule is active",
1352
+ "enumValues": null,
1353
+ "fields": {
1354
+ "days": {
1355
+ "args": {},
1356
+ "deprecationReason": null,
1357
+ "description": null,
1358
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___customRecurring___days",
1359
+ "isDeprecated": false,
1360
+ "name": "days",
1361
+ "path": "appTenantRestriction.policy.rules.rule.schedule.customRecurring.days",
1362
+ "requestStr": "$days:[DayOfWeek]! ",
1363
+ "required": true,
1364
+ "responseStr": "days:$days ",
1365
+ "type": {
1366
+ "definition": {
1367
+ "description": null,
1368
+ "enumValues": [
1369
+ {
1370
+ "deprecationReason": null,
1371
+ "description": null,
1372
+ "isDeprecated": false,
1373
+ "name": "SUNDAY"
1374
+ },
1375
+ {
1376
+ "deprecationReason": null,
1377
+ "description": null,
1378
+ "isDeprecated": false,
1379
+ "name": "MONDAY"
1380
+ },
1381
+ {
1382
+ "deprecationReason": null,
1383
+ "description": null,
1384
+ "isDeprecated": false,
1385
+ "name": "TUESDAY"
1386
+ },
1387
+ {
1388
+ "deprecationReason": null,
1389
+ "description": null,
1390
+ "isDeprecated": false,
1391
+ "name": "WEDNESDAY"
1392
+ },
1393
+ {
1394
+ "deprecationReason": null,
1395
+ "description": null,
1396
+ "isDeprecated": false,
1397
+ "name": "THURSDAY"
1398
+ },
1399
+ {
1400
+ "deprecationReason": null,
1401
+ "description": null,
1402
+ "isDeprecated": false,
1403
+ "name": "FRIDAY"
1404
+ },
1405
+ {
1406
+ "deprecationReason": null,
1407
+ "description": null,
1408
+ "isDeprecated": false,
1409
+ "name": "SATURDAY"
1410
+ }
1411
+ ],
1412
+ "fields": null,
1413
+ "inputFields": null,
1414
+ "interfaces": null,
1415
+ "kind": "ENUM",
1416
+ "name": "DayOfWeek",
1417
+ "possibleTypes": null
1418
+ },
1419
+ "indexType": "enum",
1420
+ "kind": [
1421
+ "NON_NULL",
1422
+ "LIST",
1423
+ "NON_NULL",
1424
+ "ENUM"
1425
+ ],
1426
+ "name": "DayOfWeek",
1427
+ "non_null": false
1428
+ },
1429
+ "varName": "days"
1430
+ },
1431
+ "from": {
1432
+ "args": {},
1433
+ "deprecationReason": null,
1434
+ "description": null,
1435
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___customRecurring___from",
1436
+ "isDeprecated": false,
1437
+ "name": "from",
1438
+ "path": "appTenantRestriction.policy.rules.rule.schedule.customRecurring.from",
1439
+ "requestStr": "$from:Time! ",
1440
+ "required": true,
1441
+ "responseStr": "from:$from ",
1442
+ "type": {
1443
+ "kind": [
1444
+ "NON_NULL",
1445
+ "SCALAR"
1446
+ ],
1447
+ "name": "Time",
1448
+ "non_null": false
1449
+ },
1450
+ "varName": "from"
1451
+ },
1452
+ "to": {
1453
+ "args": {},
1454
+ "deprecationReason": null,
1455
+ "description": null,
1456
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___customRecurring___to",
1457
+ "isDeprecated": false,
1458
+ "name": "to",
1459
+ "path": "appTenantRestriction.policy.rules.rule.schedule.customRecurring.to",
1460
+ "requestStr": "$to:Time! ",
1461
+ "required": true,
1462
+ "responseStr": "to:$to ",
1463
+ "type": {
1464
+ "kind": [
1465
+ "NON_NULL",
1466
+ "SCALAR"
1467
+ ],
1468
+ "name": "Time",
1469
+ "non_null": false
1470
+ },
1471
+ "varName": "to"
1472
+ }
1473
+ },
1474
+ "inputFields": null,
1475
+ "interfaces": {},
1476
+ "kind": "OBJECT",
1477
+ "name": "PolicyCustomRecurring",
1478
+ "possibleTypes": null
1479
+ },
1480
+ "indexType": "object",
1481
+ "kind": [
1482
+ "OBJECT"
1483
+ ],
1484
+ "name": "PolicyCustomRecurring",
1485
+ "non_null": false
1486
+ },
1487
+ "varName": "policyCustomRecurring"
1488
+ },
1489
+ "customTimeframe": {
1490
+ "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
1491
+ "args": {},
1492
+ "deprecationReason": null,
1493
+ "description": null,
1494
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___customTimeframe",
1495
+ "isDeprecated": false,
1496
+ "name": "customTimeframe",
1497
+ "path": "appTenantRestriction.policy.rules.rule.schedule.customTimeframe",
1498
+ "requestStr": "$policyCustomTimeframe:PolicyCustomTimeframe ",
1499
+ "required": false,
1500
+ "responseStr": "customTimeframe:$policyCustomTimeframe ",
1501
+ "type": {
1502
+ "definition": {
1503
+ "description": "Returns data for a custom one-time time range that a rule is active",
1504
+ "enumValues": null,
1505
+ "fields": {
1506
+ "from": {
1507
+ "args": {},
1508
+ "deprecationReason": null,
1509
+ "description": null,
1510
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___customTimeframe___from",
1511
+ "isDeprecated": false,
1512
+ "name": "from",
1513
+ "path": "appTenantRestriction.policy.rules.rule.schedule.customTimeframe.from",
1514
+ "requestStr": "$from:DateTime! ",
1515
+ "required": true,
1516
+ "responseStr": "from:$from ",
1517
+ "type": {
1518
+ "kind": [
1519
+ "NON_NULL",
1520
+ "SCALAR"
1521
+ ],
1522
+ "name": "DateTime",
1523
+ "non_null": false
1524
+ },
1525
+ "varName": "from"
1526
+ },
1527
+ "to": {
1528
+ "args": {},
1529
+ "deprecationReason": null,
1530
+ "description": null,
1531
+ "id_str": "appTenantRestriction___policy___rules___rule___schedule___customTimeframe___to",
1532
+ "isDeprecated": false,
1533
+ "name": "to",
1534
+ "path": "appTenantRestriction.policy.rules.rule.schedule.customTimeframe.to",
1535
+ "requestStr": "$to:DateTime! ",
1536
+ "required": true,
1537
+ "responseStr": "to:$to ",
1538
+ "type": {
1539
+ "kind": [
1540
+ "NON_NULL",
1541
+ "SCALAR"
1542
+ ],
1543
+ "name": "DateTime",
1544
+ "non_null": false
1545
+ },
1546
+ "varName": "to"
1547
+ }
1548
+ },
1549
+ "inputFields": null,
1550
+ "interfaces": {},
1551
+ "kind": "OBJECT",
1552
+ "name": "PolicyCustomTimeframe",
1553
+ "possibleTypes": null
1554
+ },
1555
+ "indexType": "object",
1556
+ "kind": [
1557
+ "OBJECT"
1558
+ ],
1559
+ "name": "PolicyCustomTimeframe",
1560
+ "non_null": false
1561
+ },
1562
+ "varName": "policyCustomTimeframe"
1563
+ }
1564
+ },
1565
+ "inputFields": null,
1566
+ "interfaces": {},
1567
+ "kind": "OBJECT",
1568
+ "name": "PolicySchedule",
1569
+ "possibleTypes": null
1570
+ },
1571
+ "indexType": "object",
1572
+ "kind": [
1573
+ "NON_NULL",
1574
+ "OBJECT"
1575
+ ],
1576
+ "name": "PolicySchedule",
1577
+ "non_null": false
1578
+ },
1579
+ "varName": "policySchedule"
1580
+ },
1581
+ "section": {
1582
+ "alias": "policySectionInfoSection: section",
1583
+ "args": {},
1584
+ "deprecationReason": null,
1585
+ "description": "Policy section where the rule is located",
1586
+ "id_str": "appTenantRestriction___policy___rules___rule___section",
1587
+ "isDeprecated": false,
1588
+ "name": "section",
1589
+ "path": "appTenantRestriction.policy.rules.rule.section",
1590
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1591
+ "required": true,
1592
+ "responseStr": "section:$policySectionInfo ",
1593
+ "type": {
1594
+ "definition": {
1595
+ "description": "Define settings for a policy section",
1596
+ "enumValues": null,
1597
+ "fields": {
1598
+ "id": {
1599
+ "args": {},
1600
+ "deprecationReason": null,
1601
+ "description": null,
1602
+ "id_str": "appTenantRestriction___policy___rules___rule___section___id",
1603
+ "isDeprecated": false,
1604
+ "name": "id",
1605
+ "path": "appTenantRestriction.policy.rules.rule.section.id",
1606
+ "requestStr": "$id:ID! ",
1607
+ "required": true,
1608
+ "responseStr": "id:$id ",
1609
+ "type": {
1610
+ "kind": [
1611
+ "NON_NULL",
1612
+ "SCALAR"
1613
+ ],
1614
+ "name": "ID",
1615
+ "non_null": false
1616
+ },
1617
+ "varName": "id"
1618
+ },
1619
+ "name": {
1620
+ "args": {},
1621
+ "deprecationReason": null,
1622
+ "description": null,
1623
+ "id_str": "appTenantRestriction___policy___rules___rule___section___name",
1624
+ "isDeprecated": false,
1625
+ "name": "name",
1626
+ "path": "appTenantRestriction.policy.rules.rule.section.name",
1627
+ "requestStr": "$name:String! ",
1628
+ "required": true,
1629
+ "responseStr": "name:$name ",
1630
+ "type": {
1631
+ "kind": [
1632
+ "NON_NULL",
1633
+ "SCALAR"
1634
+ ],
1635
+ "name": "String",
1636
+ "non_null": false
1637
+ },
1638
+ "varName": "name"
1639
+ }
1640
+ },
1641
+ "inputFields": null,
1642
+ "interfaces": {},
1643
+ "kind": "OBJECT",
1644
+ "name": "PolicySectionInfo",
1645
+ "possibleTypes": null
1646
+ },
1647
+ "indexType": "object",
1648
+ "kind": [
1649
+ "NON_NULL",
1650
+ "OBJECT"
1651
+ ],
1652
+ "name": "PolicySectionInfo",
1653
+ "non_null": false
1654
+ },
1655
+ "varName": "policySectionInfo"
1656
+ },
1657
+ "severity": {
1658
+ "alias": "appTenantRestrictionSeverityEnumSeverity: severity",
1659
+ "args": {},
1660
+ "deprecationReason": null,
1661
+ "description": "Severity defined for the rule",
1662
+ "id_str": "appTenantRestriction___policy___rules___rule___severity",
1663
+ "isDeprecated": false,
1664
+ "name": "severity",
1665
+ "path": "appTenantRestriction.policy.rules.rule.severity",
1666
+ "requestStr": "$severity:AppTenantRestrictionSeverityEnum! ",
1667
+ "required": true,
1668
+ "responseStr": "severity:$severity ",
1669
+ "type": {
1670
+ "definition": {
1671
+ "description": "Severity options",
1672
+ "enumValues": [
1673
+ {
1674
+ "deprecationReason": null,
1675
+ "description": "High severity",
1676
+ "isDeprecated": false,
1677
+ "name": "HIGH"
1678
+ },
1679
+ {
1680
+ "deprecationReason": null,
1681
+ "description": "Medium severity",
1682
+ "isDeprecated": false,
1683
+ "name": "MEDIUM"
1684
+ },
1685
+ {
1686
+ "deprecationReason": null,
1687
+ "description": "Low severity",
1688
+ "isDeprecated": false,
1689
+ "name": "LOW"
1690
+ }
1691
+ ],
1692
+ "fields": null,
1693
+ "inputFields": null,
1694
+ "interfaces": null,
1695
+ "kind": "ENUM",
1696
+ "name": "AppTenantRestrictionSeverityEnum",
1697
+ "possibleTypes": null
1698
+ },
1699
+ "indexType": "enum",
1700
+ "kind": [
1701
+ "NON_NULL",
1702
+ "ENUM"
1703
+ ],
1704
+ "name": "AppTenantRestrictionSeverityEnum",
1705
+ "non_null": false
1706
+ },
1707
+ "varName": "severity"
1708
+ },
1709
+ "source": {
1710
+ "alias": "appTenantRestrictionSourceSource: source",
1711
+ "args": {},
1712
+ "deprecationReason": null,
1713
+ "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
1714
+ "id_str": "appTenantRestriction___policy___rules___rule___source",
1715
+ "isDeprecated": false,
1716
+ "name": "source",
1717
+ "path": "appTenantRestriction.policy.rules.rule.source",
1718
+ "requestStr": "$appTenantRestrictionSource:AppTenantRestrictionSource! ",
1719
+ "required": true,
1720
+ "responseStr": "source:$appTenantRestrictionSource ",
1721
+ "type": {
1722
+ "definition": {
1723
+ "description": "Returns the settings for Source of an App Tenant Restriction rule",
1724
+ "enumValues": null,
1725
+ "fields": {
1726
+ "country": {
1727
+ "alias": "countryRefCountry: country",
1728
+ "args": {},
1729
+ "deprecationReason": null,
1730
+ "description": "Source country traffic matching criteria.",
1731
+ "id_str": "appTenantRestriction___policy___rules___rule___source___country",
1732
+ "isDeprecated": false,
1733
+ "name": "country",
1734
+ "path": "appTenantRestriction.policy.rules.rule.source.country",
1735
+ "requestStr": "$countryRef:[CountryRef]! ",
1736
+ "required": true,
1737
+ "responseStr": "country:$countryRef ",
1738
+ "type": {
1739
+ "definition": {
1740
+ "description": "A reference identifying the Country object. ID: Unique Country Identifier, Name: The Country Name",
1741
+ "enumValues": null,
1742
+ "fields": {
1743
+ "id": {
1744
+ "args": {},
1745
+ "deprecationReason": null,
1746
+ "description": null,
1747
+ "id_str": "appTenantRestriction___policy___rules___rule___source___country___id",
1748
+ "isDeprecated": false,
1749
+ "name": "id",
1750
+ "path": "appTenantRestriction.policy.rules.rule.source.country.id",
1751
+ "requestStr": "$id:ID! ",
1752
+ "required": true,
1753
+ "responseStr": "id:$id ",
1754
+ "type": {
1755
+ "kind": [
1756
+ "NON_NULL",
1757
+ "SCALAR"
1758
+ ],
1759
+ "name": "ID",
1760
+ "non_null": false
1761
+ },
1762
+ "varName": "id"
1763
+ },
1764
+ "name": {
1765
+ "args": {},
1766
+ "deprecationReason": null,
1767
+ "description": null,
1768
+ "id_str": "appTenantRestriction___policy___rules___rule___source___country___name",
1769
+ "isDeprecated": false,
1770
+ "name": "name",
1771
+ "path": "appTenantRestriction.policy.rules.rule.source.country.name",
1772
+ "requestStr": "$name:String! ",
1773
+ "required": true,
1774
+ "responseStr": "name:$name ",
1775
+ "type": {
1776
+ "kind": [
1777
+ "NON_NULL",
1778
+ "SCALAR"
1779
+ ],
1780
+ "name": "String",
1781
+ "non_null": false
1782
+ },
1783
+ "varName": "name"
1784
+ }
1785
+ },
1786
+ "inputFields": null,
1787
+ "interfaces": {},
1788
+ "kind": "OBJECT",
1789
+ "name": "CountryRef",
1790
+ "possibleTypes": null
1791
+ },
1792
+ "indexType": "object",
1793
+ "kind": [
1794
+ "NON_NULL",
1795
+ "LIST",
1796
+ "NON_NULL",
1797
+ "OBJECT"
1798
+ ],
1799
+ "name": "CountryRef",
1800
+ "non_null": false
1801
+ },
1802
+ "varName": "countryRef"
1803
+ },
1804
+ "floatingSubnet": {
1805
+ "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
1806
+ "args": {},
1807
+ "deprecationReason": null,
1808
+ "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP. They are not associated with a specific site. This is useful in scenarios such as active-standby high availability routed via BGP.",
1809
+ "id_str": "appTenantRestriction___policy___rules___rule___source___floatingSubnet",
1810
+ "isDeprecated": false,
1811
+ "name": "floatingSubnet",
1812
+ "path": "appTenantRestriction.policy.rules.rule.source.floatingSubnet",
1813
+ "requestStr": "$floatingSubnetRef:[FloatingSubnetRef]! ",
1814
+ "required": true,
1815
+ "responseStr": "floatingSubnet:$floatingSubnetRef ",
1816
+ "type": {
1817
+ "definition": {
1818
+ "description": "Returns data for the Floating Subnet object. Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched\nto the route advertised by BGP. They are not associated with a specific site.\nThis is useful in scenarios such as active-standby high availability routed via BGP.",
1819
+ "enumValues": null,
1820
+ "fields": {
1821
+ "id": {
1822
+ "args": {},
1823
+ "deprecationReason": null,
1824
+ "description": "Unique Floating Subnet ID",
1825
+ "id_str": "appTenantRestriction___policy___rules___rule___source___floatingSubnet___id",
1826
+ "isDeprecated": false,
1827
+ "name": "id",
1828
+ "path": "appTenantRestriction.policy.rules.rule.source.floatingSubnet.id",
1829
+ "requestStr": "$id:ID! ",
1830
+ "required": true,
1831
+ "responseStr": "id:$id ",
1832
+ "type": {
1833
+ "kind": [
1834
+ "NON_NULL",
1835
+ "SCALAR"
1836
+ ],
1837
+ "name": "ID",
1838
+ "non_null": false
1839
+ },
1840
+ "varName": "id"
1841
+ },
1842
+ "name": {
1843
+ "args": {},
1844
+ "deprecationReason": null,
1845
+ "description": "Name for the Floating Subnet",
1846
+ "id_str": "appTenantRestriction___policy___rules___rule___source___floatingSubnet___name",
1847
+ "isDeprecated": false,
1848
+ "name": "name",
1849
+ "path": "appTenantRestriction.policy.rules.rule.source.floatingSubnet.name",
1850
+ "requestStr": "$name:String! ",
1851
+ "required": true,
1852
+ "responseStr": "name:$name ",
1853
+ "type": {
1854
+ "kind": [
1855
+ "NON_NULL",
1856
+ "SCALAR"
1857
+ ],
1858
+ "name": "String",
1859
+ "non_null": false
1860
+ },
1861
+ "varName": "name"
1862
+ }
1863
+ },
1864
+ "inputFields": null,
1865
+ "interfaces": {},
1866
+ "kind": "OBJECT",
1867
+ "name": "FloatingSubnetRef",
1868
+ "possibleTypes": null
1869
+ },
1870
+ "indexType": "object",
1871
+ "kind": [
1872
+ "NON_NULL",
1873
+ "LIST",
1874
+ "NON_NULL",
1875
+ "OBJECT"
1876
+ ],
1877
+ "name": "FloatingSubnetRef",
1878
+ "non_null": false
1879
+ },
1880
+ "varName": "floatingSubnetRef"
1881
+ },
1882
+ "globalIpRange": {
1883
+ "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
1884
+ "args": {},
1885
+ "deprecationReason": null,
1886
+ "description": "Globally defined IP range, IP and subnet objects",
1887
+ "id_str": "appTenantRestriction___policy___rules___rule___source___globalIpRange",
1888
+ "isDeprecated": false,
1889
+ "name": "globalIpRange",
1890
+ "path": "appTenantRestriction.policy.rules.rule.source.globalIpRange",
1891
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
1892
+ "required": true,
1893
+ "responseStr": "globalIpRange:$globalIpRangeRef ",
1894
+ "type": {
1895
+ "definition": {
1896
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
1897
+ "enumValues": null,
1898
+ "fields": {
1899
+ "id": {
1900
+ "args": {},
1901
+ "deprecationReason": null,
1902
+ "description": null,
1903
+ "id_str": "appTenantRestriction___policy___rules___rule___source___globalIpRange___id",
1904
+ "isDeprecated": false,
1905
+ "name": "id",
1906
+ "path": "appTenantRestriction.policy.rules.rule.source.globalIpRange.id",
1907
+ "requestStr": "$id:ID! ",
1908
+ "required": true,
1909
+ "responseStr": "id:$id ",
1910
+ "type": {
1911
+ "kind": [
1912
+ "NON_NULL",
1913
+ "SCALAR"
1914
+ ],
1915
+ "name": "ID",
1916
+ "non_null": false
1917
+ },
1918
+ "varName": "id"
1919
+ },
1920
+ "name": {
1921
+ "args": {},
1922
+ "deprecationReason": null,
1923
+ "description": null,
1924
+ "id_str": "appTenantRestriction___policy___rules___rule___source___globalIpRange___name",
1925
+ "isDeprecated": false,
1926
+ "name": "name",
1927
+ "path": "appTenantRestriction.policy.rules.rule.source.globalIpRange.name",
1928
+ "requestStr": "$name:String! ",
1929
+ "required": true,
1930
+ "responseStr": "name:$name ",
1931
+ "type": {
1932
+ "kind": [
1933
+ "NON_NULL",
1934
+ "SCALAR"
1935
+ ],
1936
+ "name": "String",
1937
+ "non_null": false
1938
+ },
1939
+ "varName": "name"
1940
+ }
1941
+ },
1942
+ "inputFields": null,
1943
+ "interfaces": {},
1944
+ "kind": "OBJECT",
1945
+ "name": "GlobalIpRangeRef",
1946
+ "possibleTypes": null
1947
+ },
1948
+ "indexType": "object",
1949
+ "kind": [
1950
+ "NON_NULL",
1951
+ "LIST",
1952
+ "NON_NULL",
1953
+ "OBJECT"
1954
+ ],
1955
+ "name": "GlobalIpRangeRef",
1956
+ "non_null": false
1957
+ },
1958
+ "varName": "globalIpRangeRef"
1959
+ },
1960
+ "group": {
1961
+ "alias": "groupRefGroup: group",
1962
+ "args": {},
1963
+ "deprecationReason": null,
1964
+ "description": "Groups defined for your account",
1965
+ "id_str": "appTenantRestriction___policy___rules___rule___source___group",
1966
+ "isDeprecated": false,
1967
+ "name": "group",
1968
+ "path": "appTenantRestriction.policy.rules.rule.source.group",
1969
+ "requestStr": "$groupRef:[GroupRef]! ",
1970
+ "required": true,
1971
+ "responseStr": "group:$groupRef ",
1972
+ "type": {
1973
+ "definition": {
1974
+ "description": "A reference identifying the Group object. ID: Unique Group Identifier, Name: The Group Name",
1975
+ "enumValues": null,
1976
+ "fields": {
1977
+ "id": {
1978
+ "args": {},
1979
+ "deprecationReason": null,
1980
+ "description": null,
1981
+ "id_str": "appTenantRestriction___policy___rules___rule___source___group___id",
1982
+ "isDeprecated": false,
1983
+ "name": "id",
1984
+ "path": "appTenantRestriction.policy.rules.rule.source.group.id",
1985
+ "requestStr": "$id:ID! ",
1986
+ "required": true,
1987
+ "responseStr": "id:$id ",
1988
+ "type": {
1989
+ "kind": [
1990
+ "NON_NULL",
1991
+ "SCALAR"
1992
+ ],
1993
+ "name": "ID",
1994
+ "non_null": false
1995
+ },
1996
+ "varName": "id"
1997
+ },
1998
+ "name": {
1999
+ "args": {},
2000
+ "deprecationReason": null,
2001
+ "description": null,
2002
+ "id_str": "appTenantRestriction___policy___rules___rule___source___group___name",
2003
+ "isDeprecated": false,
2004
+ "name": "name",
2005
+ "path": "appTenantRestriction.policy.rules.rule.source.group.name",
2006
+ "requestStr": "$name:String! ",
2007
+ "required": true,
2008
+ "responseStr": "name:$name ",
2009
+ "type": {
2010
+ "kind": [
2011
+ "NON_NULL",
2012
+ "SCALAR"
2013
+ ],
2014
+ "name": "String",
2015
+ "non_null": false
2016
+ },
2017
+ "varName": "name"
2018
+ }
2019
+ },
2020
+ "inputFields": null,
2021
+ "interfaces": {},
2022
+ "kind": "OBJECT",
2023
+ "name": "GroupRef",
2024
+ "possibleTypes": null
2025
+ },
2026
+ "indexType": "object",
2027
+ "kind": [
2028
+ "NON_NULL",
2029
+ "LIST",
2030
+ "NON_NULL",
2031
+ "OBJECT"
2032
+ ],
2033
+ "name": "GroupRef",
2034
+ "non_null": false
2035
+ },
2036
+ "varName": "groupRef"
2037
+ },
2038
+ "host": {
2039
+ "alias": "hostRefHost: host",
2040
+ "args": {},
2041
+ "deprecationReason": null,
2042
+ "description": "Hosts and servers defined for your account",
2043
+ "id_str": "appTenantRestriction___policy___rules___rule___source___host",
2044
+ "isDeprecated": false,
2045
+ "name": "host",
2046
+ "path": "appTenantRestriction.policy.rules.rule.source.host",
2047
+ "requestStr": "$hostRef:[HostRef]! ",
2048
+ "required": true,
2049
+ "responseStr": "host:$hostRef ",
2050
+ "type": {
2051
+ "definition": {
2052
+ "description": "A reference identifying the Host object. ID: Unique Host Identifier, Name: The Host Name",
2053
+ "enumValues": null,
2054
+ "fields": {
2055
+ "id": {
2056
+ "args": {},
2057
+ "deprecationReason": null,
2058
+ "description": null,
2059
+ "id_str": "appTenantRestriction___policy___rules___rule___source___host___id",
2060
+ "isDeprecated": false,
2061
+ "name": "id",
2062
+ "path": "appTenantRestriction.policy.rules.rule.source.host.id",
2063
+ "requestStr": "$id:ID! ",
2064
+ "required": true,
2065
+ "responseStr": "id:$id ",
2066
+ "type": {
2067
+ "kind": [
2068
+ "NON_NULL",
2069
+ "SCALAR"
2070
+ ],
2071
+ "name": "ID",
2072
+ "non_null": false
2073
+ },
2074
+ "varName": "id"
2075
+ },
2076
+ "name": {
2077
+ "args": {},
2078
+ "deprecationReason": null,
2079
+ "description": null,
2080
+ "id_str": "appTenantRestriction___policy___rules___rule___source___host___name",
2081
+ "isDeprecated": false,
2082
+ "name": "name",
2083
+ "path": "appTenantRestriction.policy.rules.rule.source.host.name",
2084
+ "requestStr": "$name:String! ",
2085
+ "required": true,
2086
+ "responseStr": "name:$name ",
2087
+ "type": {
2088
+ "kind": [
2089
+ "NON_NULL",
2090
+ "SCALAR"
2091
+ ],
2092
+ "name": "String",
2093
+ "non_null": false
2094
+ },
2095
+ "varName": "name"
2096
+ }
2097
+ },
2098
+ "inputFields": null,
2099
+ "interfaces": {},
2100
+ "kind": "OBJECT",
2101
+ "name": "HostRef",
2102
+ "possibleTypes": null
2103
+ },
2104
+ "indexType": "object",
2105
+ "kind": [
2106
+ "NON_NULL",
2107
+ "LIST",
2108
+ "NON_NULL",
2109
+ "OBJECT"
2110
+ ],
2111
+ "name": "HostRef",
2112
+ "non_null": false
2113
+ },
2114
+ "varName": "hostRef"
2115
+ },
2116
+ "ip": {
2117
+ "args": {},
2118
+ "deprecationReason": null,
2119
+ "description": "IPv4 address",
2120
+ "id_str": "appTenantRestriction___policy___rules___rule___source___ip",
2121
+ "isDeprecated": false,
2122
+ "name": "ip",
2123
+ "path": "appTenantRestriction.policy.rules.rule.source.ip",
2124
+ "requestStr": "$ip:[IPAddress]! ",
2125
+ "required": true,
2126
+ "responseStr": "ip:$ip ",
2127
+ "type": {
2128
+ "kind": [
2129
+ "NON_NULL",
2130
+ "LIST",
2131
+ "NON_NULL",
2132
+ "SCALAR"
2133
+ ],
2134
+ "name": "IPAddress",
2135
+ "non_null": false
2136
+ },
2137
+ "varName": "ip"
2138
+ },
2139
+ "ipRange": {
2140
+ "alias": "ipAddressRangeIpRange: ipRange",
2141
+ "args": {},
2142
+ "deprecationReason": null,
2143
+ "description": "Multiple separate IP addresses or an IP range",
2144
+ "id_str": "appTenantRestriction___policy___rules___rule___source___ipRange",
2145
+ "isDeprecated": false,
2146
+ "name": "ipRange",
2147
+ "path": "appTenantRestriction.policy.rules.rule.source.ipRange",
2148
+ "requestStr": "$ipAddressRange:[IpAddressRange]! ",
2149
+ "required": true,
2150
+ "responseStr": "ipRange:$ipAddressRange ",
2151
+ "type": {
2152
+ "definition": {
2153
+ "description": "Inclusive range of IPs",
2154
+ "enumValues": null,
2155
+ "fields": {
2156
+ "from": {
2157
+ "args": {},
2158
+ "deprecationReason": null,
2159
+ "description": null,
2160
+ "id_str": "appTenantRestriction___policy___rules___rule___source___ipRange___from",
2161
+ "isDeprecated": false,
2162
+ "name": "from",
2163
+ "path": "appTenantRestriction.policy.rules.rule.source.ipRange.from",
2164
+ "requestStr": "$from:IPAddress! ",
2165
+ "required": true,
2166
+ "responseStr": "from:$from ",
2167
+ "type": {
2168
+ "kind": [
2169
+ "NON_NULL",
2170
+ "SCALAR"
2171
+ ],
2172
+ "name": "IPAddress",
2173
+ "non_null": false
2174
+ },
2175
+ "varName": "from"
2176
+ },
2177
+ "to": {
2178
+ "args": {},
2179
+ "deprecationReason": null,
2180
+ "description": null,
2181
+ "id_str": "appTenantRestriction___policy___rules___rule___source___ipRange___to",
2182
+ "isDeprecated": false,
2183
+ "name": "to",
2184
+ "path": "appTenantRestriction.policy.rules.rule.source.ipRange.to",
2185
+ "requestStr": "$to:IPAddress! ",
2186
+ "required": true,
2187
+ "responseStr": "to:$to ",
2188
+ "type": {
2189
+ "kind": [
2190
+ "NON_NULL",
2191
+ "SCALAR"
2192
+ ],
2193
+ "name": "IPAddress",
2194
+ "non_null": false
2195
+ },
2196
+ "varName": "to"
2197
+ }
2198
+ },
2199
+ "inputFields": null,
2200
+ "interfaces": {},
2201
+ "kind": "OBJECT",
2202
+ "name": "IpAddressRange",
2203
+ "possibleTypes": null
2204
+ },
2205
+ "indexType": "object",
2206
+ "kind": [
2207
+ "NON_NULL",
2208
+ "LIST",
2209
+ "NON_NULL",
2210
+ "OBJECT"
2211
+ ],
2212
+ "name": "IpAddressRange",
2213
+ "non_null": false
2214
+ },
2215
+ "varName": "ipAddressRange"
2216
+ },
2217
+ "networkInterface": {
2218
+ "alias": "networkInterfaceRefNetworkInterface: networkInterface",
2219
+ "args": {},
2220
+ "deprecationReason": null,
2221
+ "description": "Network range defined for a site",
2222
+ "id_str": "appTenantRestriction___policy___rules___rule___source___networkInterface",
2223
+ "isDeprecated": false,
2224
+ "name": "networkInterface",
2225
+ "path": "appTenantRestriction.policy.rules.rule.source.networkInterface",
2226
+ "requestStr": "$networkInterfaceRef:[NetworkInterfaceRef]! ",
2227
+ "required": true,
2228
+ "responseStr": "networkInterface:$networkInterfaceRef ",
2229
+ "type": {
2230
+ "definition": {
2231
+ "description": "A reference identifying the NetworkInterface object. ID: Unique NetworkInterface Identifier, Name: The NetworkInterface Name",
2232
+ "enumValues": null,
2233
+ "fields": {
2234
+ "id": {
2235
+ "args": {},
2236
+ "deprecationReason": null,
2237
+ "description": null,
2238
+ "id_str": "appTenantRestriction___policy___rules___rule___source___networkInterface___id",
2239
+ "isDeprecated": false,
2240
+ "name": "id",
2241
+ "path": "appTenantRestriction.policy.rules.rule.source.networkInterface.id",
2242
+ "requestStr": "$id:ID! ",
2243
+ "required": true,
2244
+ "responseStr": "id:$id ",
2245
+ "type": {
2246
+ "kind": [
2247
+ "NON_NULL",
2248
+ "SCALAR"
2249
+ ],
2250
+ "name": "ID",
2251
+ "non_null": false
2252
+ },
2253
+ "varName": "id"
2254
+ },
2255
+ "name": {
2256
+ "args": {},
2257
+ "deprecationReason": null,
2258
+ "description": null,
2259
+ "id_str": "appTenantRestriction___policy___rules___rule___source___networkInterface___name",
2260
+ "isDeprecated": false,
2261
+ "name": "name",
2262
+ "path": "appTenantRestriction.policy.rules.rule.source.networkInterface.name",
2263
+ "requestStr": "$name:String! ",
2264
+ "required": true,
2265
+ "responseStr": "name:$name ",
2266
+ "type": {
2267
+ "kind": [
2268
+ "NON_NULL",
2269
+ "SCALAR"
2270
+ ],
2271
+ "name": "String",
2272
+ "non_null": false
2273
+ },
2274
+ "varName": "name"
2275
+ }
2276
+ },
2277
+ "inputFields": null,
2278
+ "interfaces": {},
2279
+ "kind": "OBJECT",
2280
+ "name": "NetworkInterfaceRef",
2281
+ "possibleTypes": null
2282
+ },
2283
+ "indexType": "object",
2284
+ "kind": [
2285
+ "NON_NULL",
2286
+ "LIST",
2287
+ "NON_NULL",
2288
+ "OBJECT"
2289
+ ],
2290
+ "name": "NetworkInterfaceRef",
2291
+ "non_null": false
2292
+ },
2293
+ "varName": "networkInterfaceRef"
2294
+ },
2295
+ "site": {
2296
+ "alias": "siteRefSite: site",
2297
+ "args": {},
2298
+ "deprecationReason": null,
2299
+ "description": "Site defined for the account",
2300
+ "id_str": "appTenantRestriction___policy___rules___rule___source___site",
2301
+ "isDeprecated": false,
2302
+ "name": "site",
2303
+ "path": "appTenantRestriction.policy.rules.rule.source.site",
2304
+ "requestStr": "$siteRef:[SiteRef]! ",
2305
+ "required": true,
2306
+ "responseStr": "site:$siteRef ",
2307
+ "type": {
2308
+ "definition": {
2309
+ "description": "A reference identifying the Site object. ID: Unique Site Identifier, Name: The Site Name",
2310
+ "enumValues": null,
2311
+ "fields": {
2312
+ "id": {
2313
+ "args": {},
2314
+ "deprecationReason": null,
2315
+ "description": null,
2316
+ "id_str": "appTenantRestriction___policy___rules___rule___source___site___id",
2317
+ "isDeprecated": false,
2318
+ "name": "id",
2319
+ "path": "appTenantRestriction.policy.rules.rule.source.site.id",
2320
+ "requestStr": "$id:ID! ",
2321
+ "required": true,
2322
+ "responseStr": "id:$id ",
2323
+ "type": {
2324
+ "kind": [
2325
+ "NON_NULL",
2326
+ "SCALAR"
2327
+ ],
2328
+ "name": "ID",
2329
+ "non_null": false
2330
+ },
2331
+ "varName": "id"
2332
+ },
2333
+ "name": {
2334
+ "args": {},
2335
+ "deprecationReason": null,
2336
+ "description": null,
2337
+ "id_str": "appTenantRestriction___policy___rules___rule___source___site___name",
2338
+ "isDeprecated": false,
2339
+ "name": "name",
2340
+ "path": "appTenantRestriction.policy.rules.rule.source.site.name",
2341
+ "requestStr": "$name:String! ",
2342
+ "required": true,
2343
+ "responseStr": "name:$name ",
2344
+ "type": {
2345
+ "kind": [
2346
+ "NON_NULL",
2347
+ "SCALAR"
2348
+ ],
2349
+ "name": "String",
2350
+ "non_null": false
2351
+ },
2352
+ "varName": "name"
2353
+ }
2354
+ },
2355
+ "inputFields": null,
2356
+ "interfaces": {},
2357
+ "kind": "OBJECT",
2358
+ "name": "SiteRef",
2359
+ "possibleTypes": null
2360
+ },
2361
+ "indexType": "object",
2362
+ "kind": [
2363
+ "NON_NULL",
2364
+ "LIST",
2365
+ "NON_NULL",
2366
+ "OBJECT"
2367
+ ],
2368
+ "name": "SiteRef",
2369
+ "non_null": false
2370
+ },
2371
+ "varName": "siteRef"
2372
+ },
2373
+ "siteNetworkSubnet": {
2374
+ "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
2375
+ "args": {},
2376
+ "deprecationReason": null,
2377
+ "description": "GlobalRange + InterfaceSubnet",
2378
+ "id_str": "appTenantRestriction___policy___rules___rule___source___siteNetworkSubnet",
2379
+ "isDeprecated": false,
2380
+ "name": "siteNetworkSubnet",
2381
+ "path": "appTenantRestriction.policy.rules.rule.source.siteNetworkSubnet",
2382
+ "requestStr": "$siteNetworkSubnetRef:[SiteNetworkSubnetRef]! ",
2383
+ "required": true,
2384
+ "responseStr": "siteNetworkSubnet:$siteNetworkSubnetRef ",
2385
+ "type": {
2386
+ "definition": {
2387
+ "description": "A reference identifying the SiteNetworkSubnet object. ID: Unique SiteNetworkSubnet Identifier, Name: The SiteNetworkSubnet Name",
2388
+ "enumValues": null,
2389
+ "fields": {
2390
+ "id": {
2391
+ "args": {},
2392
+ "deprecationReason": null,
2393
+ "description": null,
2394
+ "id_str": "appTenantRestriction___policy___rules___rule___source___siteNetworkSubnet___id",
2395
+ "isDeprecated": false,
2396
+ "name": "id",
2397
+ "path": "appTenantRestriction.policy.rules.rule.source.siteNetworkSubnet.id",
2398
+ "requestStr": "$id:ID! ",
2399
+ "required": true,
2400
+ "responseStr": "id:$id ",
2401
+ "type": {
2402
+ "kind": [
2403
+ "NON_NULL",
2404
+ "SCALAR"
2405
+ ],
2406
+ "name": "ID",
2407
+ "non_null": false
2408
+ },
2409
+ "varName": "id"
2410
+ },
2411
+ "name": {
2412
+ "args": {},
2413
+ "deprecationReason": null,
2414
+ "description": null,
2415
+ "id_str": "appTenantRestriction___policy___rules___rule___source___siteNetworkSubnet___name",
2416
+ "isDeprecated": false,
2417
+ "name": "name",
2418
+ "path": "appTenantRestriction.policy.rules.rule.source.siteNetworkSubnet.name",
2419
+ "requestStr": "$name:String! ",
2420
+ "required": true,
2421
+ "responseStr": "name:$name ",
2422
+ "type": {
2423
+ "kind": [
2424
+ "NON_NULL",
2425
+ "SCALAR"
2426
+ ],
2427
+ "name": "String",
2428
+ "non_null": false
2429
+ },
2430
+ "varName": "name"
2431
+ }
2432
+ },
2433
+ "inputFields": null,
2434
+ "interfaces": {},
2435
+ "kind": "OBJECT",
2436
+ "name": "SiteNetworkSubnetRef",
2437
+ "possibleTypes": null
2438
+ },
2439
+ "indexType": "object",
2440
+ "kind": [
2441
+ "NON_NULL",
2442
+ "LIST",
2443
+ "NON_NULL",
2444
+ "OBJECT"
2445
+ ],
2446
+ "name": "SiteNetworkSubnetRef",
2447
+ "non_null": false
2448
+ },
2449
+ "varName": "siteNetworkSubnetRef"
2450
+ },
2451
+ "subnet": {
2452
+ "args": {},
2453
+ "deprecationReason": null,
2454
+ "description": "Subnets and network ranges defined for the LAN interfaces of a site",
2455
+ "id_str": "appTenantRestriction___policy___rules___rule___source___subnet",
2456
+ "isDeprecated": false,
2457
+ "name": "subnet",
2458
+ "path": "appTenantRestriction.policy.rules.rule.source.subnet",
2459
+ "requestStr": "$subnet:[NetworkSubnet]! ",
2460
+ "required": true,
2461
+ "responseStr": "subnet:$subnet ",
2462
+ "type": {
2463
+ "kind": [
2464
+ "NON_NULL",
2465
+ "LIST",
2466
+ "NON_NULL",
2467
+ "SCALAR"
2468
+ ],
2469
+ "name": "NetworkSubnet",
2470
+ "non_null": false
2471
+ },
2472
+ "varName": "subnet"
2473
+ },
2474
+ "systemGroup": {
2475
+ "alias": "systemGroupRefSystemGroup: systemGroup",
2476
+ "args": {},
2477
+ "deprecationReason": null,
2478
+ "description": "Predefined Cato groups",
2479
+ "id_str": "appTenantRestriction___policy___rules___rule___source___systemGroup",
2480
+ "isDeprecated": false,
2481
+ "name": "systemGroup",
2482
+ "path": "appTenantRestriction.policy.rules.rule.source.systemGroup",
2483
+ "requestStr": "$systemGroupRef:[SystemGroupRef]! ",
2484
+ "required": true,
2485
+ "responseStr": "systemGroup:$systemGroupRef ",
2486
+ "type": {
2487
+ "definition": {
2488
+ "description": "A reference identifying the SystemGroup object. ID: Unique SystemGroup Identifier, Name: The SystemGroup Name",
2489
+ "enumValues": null,
2490
+ "fields": {
2491
+ "id": {
2492
+ "args": {},
2493
+ "deprecationReason": null,
2494
+ "description": null,
2495
+ "id_str": "appTenantRestriction___policy___rules___rule___source___systemGroup___id",
2496
+ "isDeprecated": false,
2497
+ "name": "id",
2498
+ "path": "appTenantRestriction.policy.rules.rule.source.systemGroup.id",
2499
+ "requestStr": "$id:ID! ",
2500
+ "required": true,
2501
+ "responseStr": "id:$id ",
2502
+ "type": {
2503
+ "kind": [
2504
+ "NON_NULL",
2505
+ "SCALAR"
2506
+ ],
2507
+ "name": "ID",
2508
+ "non_null": false
2509
+ },
2510
+ "varName": "id"
2511
+ },
2512
+ "name": {
2513
+ "args": {},
2514
+ "deprecationReason": null,
2515
+ "description": null,
2516
+ "id_str": "appTenantRestriction___policy___rules___rule___source___systemGroup___name",
2517
+ "isDeprecated": false,
2518
+ "name": "name",
2519
+ "path": "appTenantRestriction.policy.rules.rule.source.systemGroup.name",
2520
+ "requestStr": "$name:String! ",
2521
+ "required": true,
2522
+ "responseStr": "name:$name ",
2523
+ "type": {
2524
+ "kind": [
2525
+ "NON_NULL",
2526
+ "SCALAR"
2527
+ ],
2528
+ "name": "String",
2529
+ "non_null": false
2530
+ },
2531
+ "varName": "name"
2532
+ }
2533
+ },
2534
+ "inputFields": null,
2535
+ "interfaces": {},
2536
+ "kind": "OBJECT",
2537
+ "name": "SystemGroupRef",
2538
+ "possibleTypes": null
2539
+ },
2540
+ "indexType": "object",
2541
+ "kind": [
2542
+ "NON_NULL",
2543
+ "LIST",
2544
+ "NON_NULL",
2545
+ "OBJECT"
2546
+ ],
2547
+ "name": "SystemGroupRef",
2548
+ "non_null": false
2549
+ },
2550
+ "varName": "systemGroupRef"
2551
+ },
2552
+ "user": {
2553
+ "alias": "userRefUser: user",
2554
+ "args": {},
2555
+ "deprecationReason": null,
2556
+ "description": "Individual users defined for the account",
2557
+ "id_str": "appTenantRestriction___policy___rules___rule___source___user",
2558
+ "isDeprecated": false,
2559
+ "name": "user",
2560
+ "path": "appTenantRestriction.policy.rules.rule.source.user",
2561
+ "requestStr": "$userRef:[UserRef]! ",
2562
+ "required": true,
2563
+ "responseStr": "user:$userRef ",
2564
+ "type": {
2565
+ "definition": {
2566
+ "description": "A reference identifying the User object. ID: Unique User Identifier, Name: The User Name",
2567
+ "enumValues": null,
2568
+ "fields": {
2569
+ "id": {
2570
+ "args": {},
2571
+ "deprecationReason": null,
2572
+ "description": null,
2573
+ "id_str": "appTenantRestriction___policy___rules___rule___source___user___id",
2574
+ "isDeprecated": false,
2575
+ "name": "id",
2576
+ "path": "appTenantRestriction.policy.rules.rule.source.user.id",
2577
+ "requestStr": "$id:ID! ",
2578
+ "required": true,
2579
+ "responseStr": "id:$id ",
2580
+ "type": {
2581
+ "kind": [
2582
+ "NON_NULL",
2583
+ "SCALAR"
2584
+ ],
2585
+ "name": "ID",
2586
+ "non_null": false
2587
+ },
2588
+ "varName": "id"
2589
+ },
2590
+ "name": {
2591
+ "args": {},
2592
+ "deprecationReason": null,
2593
+ "description": null,
2594
+ "id_str": "appTenantRestriction___policy___rules___rule___source___user___name",
2595
+ "isDeprecated": false,
2596
+ "name": "name",
2597
+ "path": "appTenantRestriction.policy.rules.rule.source.user.name",
2598
+ "requestStr": "$name:String! ",
2599
+ "required": true,
2600
+ "responseStr": "name:$name ",
2601
+ "type": {
2602
+ "kind": [
2603
+ "NON_NULL",
2604
+ "SCALAR"
2605
+ ],
2606
+ "name": "String",
2607
+ "non_null": false
2608
+ },
2609
+ "varName": "name"
2610
+ }
2611
+ },
2612
+ "inputFields": null,
2613
+ "interfaces": {},
2614
+ "kind": "OBJECT",
2615
+ "name": "UserRef",
2616
+ "possibleTypes": null
2617
+ },
2618
+ "indexType": "object",
2619
+ "kind": [
2620
+ "NON_NULL",
2621
+ "LIST",
2622
+ "NON_NULL",
2623
+ "OBJECT"
2624
+ ],
2625
+ "name": "UserRef",
2626
+ "non_null": false
2627
+ },
2628
+ "varName": "userRef"
2629
+ },
2630
+ "usersGroup": {
2631
+ "alias": "usersGroupRefUsersGroup: usersGroup",
2632
+ "args": {},
2633
+ "deprecationReason": null,
2634
+ "description": "Group of users",
2635
+ "id_str": "appTenantRestriction___policy___rules___rule___source___usersGroup",
2636
+ "isDeprecated": false,
2637
+ "name": "usersGroup",
2638
+ "path": "appTenantRestriction.policy.rules.rule.source.usersGroup",
2639
+ "requestStr": "$usersGroupRef:[UsersGroupRef]! ",
2640
+ "required": true,
2641
+ "responseStr": "usersGroup:$usersGroupRef ",
2642
+ "type": {
2643
+ "definition": {
2644
+ "description": "A reference identifying the UsersGroup object. ID: Unique UsersGroup Identifier, Name: The UsersGroup Name",
2645
+ "enumValues": null,
2646
+ "fields": {
2647
+ "id": {
2648
+ "args": {},
2649
+ "deprecationReason": null,
2650
+ "description": null,
2651
+ "id_str": "appTenantRestriction___policy___rules___rule___source___usersGroup___id",
2652
+ "isDeprecated": false,
2653
+ "name": "id",
2654
+ "path": "appTenantRestriction.policy.rules.rule.source.usersGroup.id",
2655
+ "requestStr": "$id:ID! ",
2656
+ "required": true,
2657
+ "responseStr": "id:$id ",
2658
+ "type": {
2659
+ "kind": [
2660
+ "NON_NULL",
2661
+ "SCALAR"
2662
+ ],
2663
+ "name": "ID",
2664
+ "non_null": false
2665
+ },
2666
+ "varName": "id"
2667
+ },
2668
+ "name": {
2669
+ "args": {},
2670
+ "deprecationReason": null,
2671
+ "description": null,
2672
+ "id_str": "appTenantRestriction___policy___rules___rule___source___usersGroup___name",
2673
+ "isDeprecated": false,
2674
+ "name": "name",
2675
+ "path": "appTenantRestriction.policy.rules.rule.source.usersGroup.name",
2676
+ "requestStr": "$name:String! ",
2677
+ "required": true,
2678
+ "responseStr": "name:$name ",
2679
+ "type": {
2680
+ "kind": [
2681
+ "NON_NULL",
2682
+ "SCALAR"
2683
+ ],
2684
+ "name": "String",
2685
+ "non_null": false
2686
+ },
2687
+ "varName": "name"
2688
+ }
2689
+ },
2690
+ "inputFields": null,
2691
+ "interfaces": {},
2692
+ "kind": "OBJECT",
2693
+ "name": "UsersGroupRef",
2694
+ "possibleTypes": null
2695
+ },
2696
+ "indexType": "object",
2697
+ "kind": [
2698
+ "NON_NULL",
2699
+ "LIST",
2700
+ "NON_NULL",
2701
+ "OBJECT"
2702
+ ],
2703
+ "name": "UsersGroupRef",
2704
+ "non_null": false
2705
+ },
2706
+ "varName": "usersGroupRef"
2707
+ }
2708
+ },
2709
+ "inputFields": null,
2710
+ "interfaces": {},
2711
+ "kind": "OBJECT",
2712
+ "name": "AppTenantRestrictionSource",
2713
+ "possibleTypes": null
2714
+ },
2715
+ "indexType": "object",
2716
+ "kind": [
2717
+ "NON_NULL",
2718
+ "OBJECT"
2719
+ ],
2720
+ "name": "AppTenantRestrictionSource",
2721
+ "non_null": false
2722
+ },
2723
+ "varName": "appTenantRestrictionSource"
2724
+ }
2725
+ },
2726
+ "inputFields": null,
2727
+ "interfaces": {},
2728
+ "kind": "OBJECT",
2729
+ "name": "AppTenantRestrictionRule",
2730
+ "possibleTypes": null
2731
+ },
2732
+ "indexType": "object",
2733
+ "kind": [
2734
+ "NON_NULL",
2735
+ "OBJECT"
2736
+ ],
2737
+ "name": "AppTenantRestrictionRule",
2738
+ "non_null": false
2739
+ },
2740
+ "varName": "appTenantRestrictionRule"
2741
+ }
2742
+ },
2743
+ "inputFields": null,
2744
+ "interfaces": {},
2745
+ "kind": "OBJECT",
2746
+ "name": "AppTenantRestrictionRulePayload",
2747
+ "possibleTypes": null
2748
+ },
2749
+ "indexType": "object",
2750
+ "kind": [
2751
+ "NON_NULL",
2752
+ "LIST",
2753
+ "NON_NULL",
2754
+ "OBJECT"
2755
+ ],
2756
+ "name": "AppTenantRestrictionRulePayload",
2757
+ "non_null": false
2758
+ },
2759
+ "varName": "appTenantRestrictionRulePayload"
2760
+ },
2761
+ "sections": {
2762
+ "alias": "policySectionPayloadSections: sections",
2763
+ "args": {},
2764
+ "deprecationReason": null,
2765
+ "description": null,
2766
+ "id_str": "appTenantRestriction___policy___sections",
2767
+ "isDeprecated": false,
2768
+ "name": "sections",
2769
+ "path": "appTenantRestriction.policy.sections",
2770
+ "requestStr": "$policySectionPayload:[PolicySectionPayload]! ",
2771
+ "required": true,
2772
+ "responseStr": "sections:$policySectionPayload ",
2773
+ "type": {
2774
+ "definition": {
2775
+ "description": null,
2776
+ "enumValues": null,
2777
+ "fields": {
2778
+ "audit": {
2779
+ "alias": "policyElementAuditAudit: audit",
2780
+ "args": {},
2781
+ "deprecationReason": null,
2782
+ "description": null,
2783
+ "id_str": "appTenantRestriction___policy___sections___audit",
2784
+ "isDeprecated": false,
2785
+ "name": "audit",
2786
+ "path": "appTenantRestriction.policy.sections.audit",
2787
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
2788
+ "required": true,
2789
+ "responseStr": "audit:$policyElementAudit ",
2790
+ "type": {
2791
+ "definition": {
2792
+ "description": null,
2793
+ "enumValues": null,
2794
+ "fields": {
2795
+ "updatedBy": {
2796
+ "args": {},
2797
+ "deprecationReason": null,
2798
+ "description": "The admin, or the API-key, that performed the last update",
2799
+ "id_str": "appTenantRestriction___policy___sections___audit___updatedBy",
2800
+ "isDeprecated": false,
2801
+ "name": "updatedBy",
2802
+ "path": "appTenantRestriction.policy.sections.audit.updatedBy",
2803
+ "requestStr": "$updatedBy:String! ",
2804
+ "required": true,
2805
+ "responseStr": "updatedBy:$updatedBy ",
2806
+ "type": {
2807
+ "kind": [
2808
+ "NON_NULL",
2809
+ "SCALAR"
2810
+ ],
2811
+ "name": "String",
2812
+ "non_null": false
2813
+ },
2814
+ "varName": "updatedBy"
2815
+ },
2816
+ "updatedTime": {
2817
+ "args": {},
2818
+ "deprecationReason": null,
2819
+ "description": "The last date and time the rule was updated",
2820
+ "id_str": "appTenantRestriction___policy___sections___audit___updatedTime",
2821
+ "isDeprecated": false,
2822
+ "name": "updatedTime",
2823
+ "path": "appTenantRestriction.policy.sections.audit.updatedTime",
2824
+ "requestStr": "$updatedTime:DateTime! ",
2825
+ "required": true,
2826
+ "responseStr": "updatedTime:$updatedTime ",
2827
+ "type": {
2828
+ "kind": [
2829
+ "NON_NULL",
2830
+ "SCALAR"
2831
+ ],
2832
+ "name": "DateTime",
2833
+ "non_null": false
2834
+ },
2835
+ "varName": "updatedTime"
2836
+ }
2837
+ },
2838
+ "inputFields": null,
2839
+ "interfaces": {},
2840
+ "kind": "OBJECT",
2841
+ "name": "PolicyElementAudit",
2842
+ "possibleTypes": null
2843
+ },
2844
+ "indexType": "object",
2845
+ "kind": [
2846
+ "NON_NULL",
2847
+ "OBJECT"
2848
+ ],
2849
+ "name": "PolicyElementAudit",
2850
+ "non_null": false
2851
+ },
2852
+ "varName": "policyElementAudit"
2853
+ },
2854
+ "properties": {
2855
+ "alias": "policyElementPropertiesEnumProperties: properties",
2856
+ "args": {},
2857
+ "deprecationReason": null,
2858
+ "description": null,
2859
+ "id_str": "appTenantRestriction___policy___sections___properties",
2860
+ "isDeprecated": false,
2861
+ "name": "properties",
2862
+ "path": "appTenantRestriction.policy.sections.properties",
2863
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
2864
+ "required": true,
2865
+ "responseStr": "properties:$properties ",
2866
+ "type": {
2867
+ "definition": {
2868
+ "description": "Attributes describing the rule state or type",
2869
+ "enumValues": [
2870
+ {
2871
+ "deprecationReason": null,
2872
+ "description": "New (added) rule",
2873
+ "isDeprecated": false,
2874
+ "name": "ADDED"
2875
+ },
2876
+ {
2877
+ "deprecationReason": null,
2878
+ "description": "Updated (modified) existing rule",
2879
+ "isDeprecated": false,
2880
+ "name": "UPDATED"
2881
+ },
2882
+ {
2883
+ "deprecationReason": null,
2884
+ "description": "Removed (deleted) rule",
2885
+ "isDeprecated": false,
2886
+ "name": "REMOVED"
2887
+ },
2888
+ {
2889
+ "deprecationReason": null,
2890
+ "description": "A rule moved to a different position",
2891
+ "isDeprecated": false,
2892
+ "name": "MOVED"
2893
+ },
2894
+ {
2895
+ "deprecationReason": null,
2896
+ "description": "A rule locked for changes by other admins",
2897
+ "isDeprecated": false,
2898
+ "name": "LOCKED"
2899
+ },
2900
+ {
2901
+ "deprecationReason": null,
2902
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
2903
+ "isDeprecated": false,
2904
+ "name": "ANCHORED"
2905
+ },
2906
+ {
2907
+ "deprecationReason": null,
2908
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
2909
+ "isDeprecated": false,
2910
+ "name": "SYSTEM"
2911
+ }
2912
+ ],
2913
+ "fields": null,
2914
+ "inputFields": null,
2915
+ "interfaces": null,
2916
+ "kind": "ENUM",
2917
+ "name": "PolicyElementPropertiesEnum",
2918
+ "possibleTypes": null
2919
+ },
2920
+ "indexType": "enum",
2921
+ "kind": [
2922
+ "NON_NULL",
2923
+ "LIST",
2924
+ "NON_NULL",
2925
+ "ENUM"
2926
+ ],
2927
+ "name": "PolicyElementPropertiesEnum",
2928
+ "non_null": false
2929
+ },
2930
+ "varName": "properties"
2931
+ },
2932
+ "section": {
2933
+ "alias": "policySectionInfoSection: section",
2934
+ "args": {},
2935
+ "deprecationReason": null,
2936
+ "description": null,
2937
+ "id_str": "appTenantRestriction___policy___sections___section",
2938
+ "isDeprecated": false,
2939
+ "name": "section",
2940
+ "path": "appTenantRestriction.policy.sections.section",
2941
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
2942
+ "required": true,
2943
+ "responseStr": "section:$policySectionInfo ",
2944
+ "type": {
2945
+ "definition": {
2946
+ "description": "Define settings for a policy section",
2947
+ "enumValues": null,
2948
+ "fields": {
2949
+ "id": {
2950
+ "args": {},
2951
+ "deprecationReason": null,
2952
+ "description": null,
2953
+ "id_str": "appTenantRestriction___policy___sections___section___id",
2954
+ "isDeprecated": false,
2955
+ "name": "id",
2956
+ "path": "appTenantRestriction.policy.sections.section.id",
2957
+ "requestStr": "$id:ID! ",
2958
+ "required": true,
2959
+ "responseStr": "id:$id ",
2960
+ "type": {
2961
+ "kind": [
2962
+ "NON_NULL",
2963
+ "SCALAR"
2964
+ ],
2965
+ "name": "ID",
2966
+ "non_null": false
2967
+ },
2968
+ "varName": "id"
2969
+ },
2970
+ "name": {
2971
+ "args": {},
2972
+ "deprecationReason": null,
2973
+ "description": null,
2974
+ "id_str": "appTenantRestriction___policy___sections___section___name",
2975
+ "isDeprecated": false,
2976
+ "name": "name",
2977
+ "path": "appTenantRestriction.policy.sections.section.name",
2978
+ "requestStr": "$name:String! ",
2979
+ "required": true,
2980
+ "responseStr": "name:$name ",
2981
+ "type": {
2982
+ "kind": [
2983
+ "NON_NULL",
2984
+ "SCALAR"
2985
+ ],
2986
+ "name": "String",
2987
+ "non_null": false
2988
+ },
2989
+ "varName": "name"
2990
+ }
2991
+ },
2992
+ "inputFields": null,
2993
+ "interfaces": {},
2994
+ "kind": "OBJECT",
2995
+ "name": "PolicySectionInfo",
2996
+ "possibleTypes": null
2997
+ },
2998
+ "indexType": "object",
2999
+ "kind": [
3000
+ "NON_NULL",
3001
+ "OBJECT"
3002
+ ],
3003
+ "name": "PolicySectionInfo",
3004
+ "non_null": false
3005
+ },
3006
+ "varName": "policySectionInfo"
3007
+ }
3008
+ },
3009
+ "inputFields": null,
3010
+ "interfaces": {},
3011
+ "kind": "OBJECT",
3012
+ "name": "PolicySectionPayload",
3013
+ "possibleTypes": null
3014
+ },
3015
+ "indexType": "object",
3016
+ "kind": [
3017
+ "NON_NULL",
3018
+ "LIST",
3019
+ "NON_NULL",
3020
+ "OBJECT"
3021
+ ],
3022
+ "name": "PolicySectionPayload",
3023
+ "non_null": false
3024
+ },
3025
+ "varName": "policySectionPayload"
3026
+ }
3027
+ },
3028
+ "inputFields": null,
3029
+ "interfaces": {},
3030
+ "kind": "OBJECT",
3031
+ "name": "AppTenantRestrictionPolicy",
3032
+ "possibleTypes": null
3033
+ },
3034
+ "indexType": "object",
3035
+ "kind": [
3036
+ "NON_NULL",
3037
+ "OBJECT"
3038
+ ],
3039
+ "name": "AppTenantRestrictionPolicy",
3040
+ "non_null": false
3041
+ },
3042
+ "varName": "appTenantRestrictionPolicy"
3043
+ }
3044
+ },
3045
+ "inputFields": null,
3046
+ "interfaces": {},
3047
+ "kind": "OBJECT",
3048
+ "name": "AppTenantRestrictionPolicyQueries",
3049
+ "possibleTypes": null
3050
+ },
3051
+ "indexType": "object",
3052
+ "kind": [
3053
+ "OBJECT"
3054
+ ],
3055
+ "name": "AppTenantRestrictionPolicyQueries",
3056
+ "non_null": false
3057
+ },
3058
+ "varName": "appTenantRestrictionPolicyQueries"
3059
+ }
3060
+ },
3061
+ "inputFields": null,
3062
+ "interfaces": [],
3063
+ "kind": "OBJECT",
3064
+ "name": "PolicyQueries",
3065
+ "possibleTypes": null
3066
+ },
3067
+ "indexType": "object",
3068
+ "kind": [
3069
+ "OBJECT"
3070
+ ],
3071
+ "name": "PolicyQueries",
3072
+ "non_null": false
3073
+ },
3074
+ "variablesPayload": {
3075
+ "appTenantRestrictionPolicyInput": {
3076
+ "policyRevisionInput": {
3077
+ "id": {
3078
+ "id": "ID"
3079
+ },
3080
+ "type": {
3081
+ "type": "enum(PolicyRevisionType)"
3082
+ }
3083
+ }
3084
+ }
3085
+ }
3086
+ }