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,1632 @@
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
+ "policy": {
25
+ "args": {
26
+ "policy___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "policy___input",
30
+ "name": "input",
31
+ "path": "policy.input",
32
+ "requestStr": "$terminalServerPolicyInput:TerminalServerPolicyInput ",
33
+ "required": false,
34
+ "responseStr": "input:$terminalServerPolicyInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "revision": {
42
+ "defaultValue": null,
43
+ "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.",
44
+ "id_str": "policy___input___revision",
45
+ "name": "revision",
46
+ "path": "policy.input.revision",
47
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
48
+ "required": false,
49
+ "responseStr": "revision:$policyRevisionInput ",
50
+ "type": {
51
+ "definition": {
52
+ "description": "Input for specifying a policy revision",
53
+ "enumValues": null,
54
+ "fields": null,
55
+ "inputFields": {
56
+ "id": {
57
+ "defaultValue": null,
58
+ "description": null,
59
+ "id_str": "policy___input___revision___id",
60
+ "name": "id",
61
+ "path": "policy.input.revision.id",
62
+ "requestStr": "$id:ID ",
63
+ "required": false,
64
+ "responseStr": "id:$id ",
65
+ "type": {
66
+ "kind": [
67
+ "SCALAR"
68
+ ],
69
+ "name": "ID",
70
+ "non_null": false
71
+ },
72
+ "varName": "id"
73
+ },
74
+ "type": {
75
+ "defaultValue": "PRIVATE",
76
+ "description": null,
77
+ "id_str": "policy___input___revision___type",
78
+ "name": "type",
79
+ "path": "policy.input.revision.type",
80
+ "requestStr": "$type:PolicyRevisionType ",
81
+ "required": false,
82
+ "responseStr": "type:$type ",
83
+ "type": {
84
+ "definition": {
85
+ "description": "Enum for the type of a policy revision",
86
+ "enumValues": [
87
+ {
88
+ "deprecationReason": null,
89
+ "description": null,
90
+ "isDeprecated": false,
91
+ "name": "PRIVATE"
92
+ },
93
+ {
94
+ "deprecationReason": null,
95
+ "description": null,
96
+ "isDeprecated": false,
97
+ "name": "PUBLIC"
98
+ }
99
+ ],
100
+ "fields": null,
101
+ "inputFields": null,
102
+ "interfaces": null,
103
+ "kind": "ENUM",
104
+ "name": "PolicyRevisionType",
105
+ "possibleTypes": null
106
+ },
107
+ "indexType": "enum",
108
+ "kind": [
109
+ "ENUM"
110
+ ],
111
+ "name": "PolicyRevisionType",
112
+ "non_null": false
113
+ },
114
+ "varName": "type"
115
+ }
116
+ },
117
+ "interfaces": null,
118
+ "kind": "INPUT_OBJECT",
119
+ "name": "PolicyRevisionInput",
120
+ "possibleTypes": null
121
+ },
122
+ "indexType": "input_object",
123
+ "kind": [
124
+ "INPUT_OBJECT"
125
+ ],
126
+ "name": "PolicyRevisionInput",
127
+ "non_null": false
128
+ },
129
+ "varName": "policyRevisionInput"
130
+ }
131
+ },
132
+ "interfaces": null,
133
+ "kind": "INPUT_OBJECT",
134
+ "name": "TerminalServerPolicyInput",
135
+ "possibleTypes": null
136
+ },
137
+ "indexType": "input_object",
138
+ "kind": [
139
+ "INPUT_OBJECT"
140
+ ],
141
+ "name": "TerminalServerPolicyInput",
142
+ "non_null": false
143
+ },
144
+ "varName": "terminalServerPolicyInput"
145
+ }
146
+ },
147
+ "deprecationReason": null,
148
+ "description": null,
149
+ "isDeprecated": false,
150
+ "name": "policy",
151
+ "type": {
152
+ "kind": "NON_NULL",
153
+ "name": null,
154
+ "ofType": {
155
+ "kind": "OBJECT",
156
+ "name": "TerminalServerPolicy",
157
+ "ofType": null
158
+ }
159
+ }
160
+ },
161
+ "terminalServer": {
162
+ "args": {},
163
+ "deprecationReason": null,
164
+ "description": null,
165
+ "isDeprecated": false,
166
+ "name": "terminalServer",
167
+ "type": {
168
+ "kind": "OBJECT",
169
+ "name": "TerminalServerPolicyQueries",
170
+ "ofType": null
171
+ }
172
+ }
173
+ },
174
+ "deprecationReason": null,
175
+ "description": null,
176
+ "fieldTypes": {
177
+ "GlobalIpRangeRef": true,
178
+ "PolicyAudit": true,
179
+ "PolicyElementAudit": true,
180
+ "PolicyElementPropertiesEnum": true,
181
+ "PolicyRevision": true,
182
+ "PolicyRevisionInput": true,
183
+ "PolicyRevisionType": true,
184
+ "PolicySectionInfo": true,
185
+ "PolicySectionPayload": true,
186
+ "TerminalServerPolicy": true,
187
+ "TerminalServerPolicyQueries": true,
188
+ "TerminalServerRule": true,
189
+ "TerminalServerRulePayload": true
190
+ },
191
+ "isDeprecated": false,
192
+ "name": "policy",
193
+ "operationArgs": {
194
+ "accountId": {
195
+ "defaultValue": null,
196
+ "description": null,
197
+ "id_str": "accountId",
198
+ "name": "accountId",
199
+ "path": "accountId",
200
+ "requestStr": "$accountId:ID! ",
201
+ "required": true,
202
+ "responseStr": "accountId:$accountId ",
203
+ "type": {
204
+ "kind": [
205
+ "NON_NULL",
206
+ "SCALAR"
207
+ ],
208
+ "name": "ID",
209
+ "non_null": false
210
+ },
211
+ "varName": "accountId"
212
+ },
213
+ "terminalServerPolicyInput": {
214
+ "defaultValue": null,
215
+ "description": null,
216
+ "id_str": "policy___input",
217
+ "name": "input",
218
+ "path": "policy.input",
219
+ "requestStr": "$terminalServerPolicyInput:TerminalServerPolicyInput ",
220
+ "required": false,
221
+ "responseStr": "input:$terminalServerPolicyInput ",
222
+ "type": {
223
+ "definition": {
224
+ "description": null,
225
+ "enumValues": null,
226
+ "fields": null,
227
+ "inputFields": {
228
+ "revision": {
229
+ "defaultValue": null,
230
+ "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.",
231
+ "id_str": "policy___input___revision",
232
+ "name": "revision",
233
+ "path": "policy.input.revision",
234
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
235
+ "required": false,
236
+ "responseStr": "revision:$policyRevisionInput ",
237
+ "type": {
238
+ "definition": {
239
+ "description": "Input for specifying a policy revision",
240
+ "enumValues": null,
241
+ "fields": null,
242
+ "inputFields": {
243
+ "id": {
244
+ "defaultValue": null,
245
+ "description": null,
246
+ "id_str": "policy___input___revision___id",
247
+ "name": "id",
248
+ "path": "policy.input.revision.id",
249
+ "requestStr": "$id:ID ",
250
+ "required": false,
251
+ "responseStr": "id:$id ",
252
+ "type": {
253
+ "kind": [
254
+ "SCALAR"
255
+ ],
256
+ "name": "ID",
257
+ "non_null": false
258
+ },
259
+ "varName": "id"
260
+ },
261
+ "type": {
262
+ "defaultValue": "PRIVATE",
263
+ "description": null,
264
+ "id_str": "policy___input___revision___type",
265
+ "name": "type",
266
+ "path": "policy.input.revision.type",
267
+ "requestStr": "$type:PolicyRevisionType ",
268
+ "required": false,
269
+ "responseStr": "type:$type ",
270
+ "type": {
271
+ "definition": {
272
+ "description": "Enum for the type of a policy revision",
273
+ "enumValues": [
274
+ {
275
+ "deprecationReason": null,
276
+ "description": null,
277
+ "isDeprecated": false,
278
+ "name": "PRIVATE"
279
+ },
280
+ {
281
+ "deprecationReason": null,
282
+ "description": null,
283
+ "isDeprecated": false,
284
+ "name": "PUBLIC"
285
+ }
286
+ ],
287
+ "fields": null,
288
+ "inputFields": null,
289
+ "interfaces": null,
290
+ "kind": "ENUM",
291
+ "name": "PolicyRevisionType",
292
+ "possibleTypes": null
293
+ },
294
+ "indexType": "enum",
295
+ "kind": [
296
+ "ENUM"
297
+ ],
298
+ "name": "PolicyRevisionType",
299
+ "non_null": false
300
+ },
301
+ "varName": "type"
302
+ }
303
+ },
304
+ "interfaces": null,
305
+ "kind": "INPUT_OBJECT",
306
+ "name": "PolicyRevisionInput",
307
+ "possibleTypes": null
308
+ },
309
+ "indexType": "input_object",
310
+ "kind": [
311
+ "INPUT_OBJECT"
312
+ ],
313
+ "name": "PolicyRevisionInput",
314
+ "non_null": false
315
+ },
316
+ "varName": "policyRevisionInput"
317
+ }
318
+ },
319
+ "interfaces": null,
320
+ "kind": "INPUT_OBJECT",
321
+ "name": "TerminalServerPolicyInput",
322
+ "possibleTypes": null
323
+ },
324
+ "indexType": "input_object",
325
+ "kind": [
326
+ "INPUT_OBJECT"
327
+ ],
328
+ "name": "TerminalServerPolicyInput",
329
+ "non_null": false
330
+ },
331
+ "varName": "terminalServerPolicyInput"
332
+ }
333
+ },
334
+ "path": "query.policy.terminalServer.policy",
335
+ "type": {
336
+ "definition": {
337
+ "description": "policies which configuration can be read with query APIs.",
338
+ "enumValues": null,
339
+ "fields": {
340
+ "terminalServer": {
341
+ "args": {},
342
+ "deprecationReason": null,
343
+ "description": null,
344
+ "id_str": "terminalServer",
345
+ "isDeprecated": false,
346
+ "name": "terminalServer",
347
+ "path": "terminalServer",
348
+ "requestStr": "$terminalServerPolicyQueries:TerminalServerPolicyQueries ",
349
+ "required": false,
350
+ "responseStr": "terminalServer:$terminalServerPolicyQueries ",
351
+ "type": {
352
+ "definition": {
353
+ "description": null,
354
+ "enumValues": null,
355
+ "fields": {
356
+ "policy": {
357
+ "args": {
358
+ "policy___input": {
359
+ "defaultValue": null,
360
+ "description": null,
361
+ "id_str": "policy___input",
362
+ "name": "input",
363
+ "path": "policy.input",
364
+ "requestStr": "$terminalServerPolicyInput:TerminalServerPolicyInput ",
365
+ "required": false,
366
+ "responseStr": "input:$terminalServerPolicyInput ",
367
+ "type": {
368
+ "definition": {
369
+ "description": null,
370
+ "enumValues": null,
371
+ "fields": null,
372
+ "inputFields": {
373
+ "revision": {
374
+ "defaultValue": null,
375
+ "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.",
376
+ "id_str": "policy___input___revision",
377
+ "name": "revision",
378
+ "path": "policy.input.revision",
379
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
380
+ "required": false,
381
+ "responseStr": "revision:$policyRevisionInput ",
382
+ "type": {
383
+ "definition": {
384
+ "description": "Input for specifying a policy revision",
385
+ "enumValues": null,
386
+ "fields": null,
387
+ "inputFields": {
388
+ "id": {
389
+ "defaultValue": null,
390
+ "description": null,
391
+ "id_str": "policy___input___revision___id",
392
+ "name": "id",
393
+ "path": "policy.input.revision.id",
394
+ "requestStr": "$id:ID ",
395
+ "required": false,
396
+ "responseStr": "id:$id ",
397
+ "type": {
398
+ "kind": [
399
+ "SCALAR"
400
+ ],
401
+ "name": "ID",
402
+ "non_null": false
403
+ },
404
+ "varName": "id"
405
+ },
406
+ "type": {
407
+ "defaultValue": "PRIVATE",
408
+ "description": null,
409
+ "id_str": "policy___input___revision___type",
410
+ "name": "type",
411
+ "path": "policy.input.revision.type",
412
+ "requestStr": "$type:PolicyRevisionType ",
413
+ "required": false,
414
+ "responseStr": "type:$type ",
415
+ "type": {
416
+ "definition": {
417
+ "description": "Enum for the type of a policy revision",
418
+ "enumValues": [
419
+ {
420
+ "deprecationReason": null,
421
+ "description": null,
422
+ "isDeprecated": false,
423
+ "name": "PRIVATE"
424
+ },
425
+ {
426
+ "deprecationReason": null,
427
+ "description": null,
428
+ "isDeprecated": false,
429
+ "name": "PUBLIC"
430
+ }
431
+ ],
432
+ "fields": null,
433
+ "inputFields": null,
434
+ "interfaces": null,
435
+ "kind": "ENUM",
436
+ "name": "PolicyRevisionType",
437
+ "possibleTypes": null
438
+ },
439
+ "indexType": "enum",
440
+ "kind": [
441
+ "ENUM"
442
+ ],
443
+ "name": "PolicyRevisionType",
444
+ "non_null": false
445
+ },
446
+ "varName": "type"
447
+ }
448
+ },
449
+ "interfaces": null,
450
+ "kind": "INPUT_OBJECT",
451
+ "name": "PolicyRevisionInput",
452
+ "possibleTypes": null
453
+ },
454
+ "indexType": "input_object",
455
+ "kind": [
456
+ "INPUT_OBJECT"
457
+ ],
458
+ "name": "PolicyRevisionInput",
459
+ "non_null": false
460
+ },
461
+ "varName": "policyRevisionInput"
462
+ }
463
+ },
464
+ "interfaces": null,
465
+ "kind": "INPUT_OBJECT",
466
+ "name": "TerminalServerPolicyInput",
467
+ "possibleTypes": null
468
+ },
469
+ "indexType": "input_object",
470
+ "kind": [
471
+ "INPUT_OBJECT"
472
+ ],
473
+ "name": "TerminalServerPolicyInput",
474
+ "non_null": false
475
+ },
476
+ "varName": "terminalServerPolicyInput"
477
+ }
478
+ },
479
+ "deprecationReason": null,
480
+ "description": null,
481
+ "id_str": "terminalServer___policy",
482
+ "isDeprecated": false,
483
+ "name": "policy",
484
+ "path": "terminalServer.policy",
485
+ "requestStr": "$terminalServerPolicy:TerminalServerPolicy! ",
486
+ "required": true,
487
+ "responseStr": "policy:$terminalServerPolicy ",
488
+ "type": {
489
+ "definition": {
490
+ "description": null,
491
+ "enumValues": null,
492
+ "fields": {
493
+ "audit": {
494
+ "alias": "policyAuditAudit: audit",
495
+ "args": {},
496
+ "deprecationReason": null,
497
+ "description": null,
498
+ "id_str": "terminalServer___policy___audit",
499
+ "isDeprecated": false,
500
+ "name": "audit",
501
+ "path": "terminalServer.policy.audit",
502
+ "requestStr": "$policyAudit:PolicyAudit ",
503
+ "required": false,
504
+ "responseStr": "audit:$policyAudit ",
505
+ "type": {
506
+ "definition": {
507
+ "description": null,
508
+ "enumValues": null,
509
+ "fields": {
510
+ "publishedBy": {
511
+ "args": {},
512
+ "deprecationReason": null,
513
+ "description": null,
514
+ "id_str": "terminalServer___policy___audit___publishedBy",
515
+ "isDeprecated": false,
516
+ "name": "publishedBy",
517
+ "path": "terminalServer.policy.audit.publishedBy",
518
+ "requestStr": "$publishedBy:String! ",
519
+ "required": true,
520
+ "responseStr": "publishedBy:$publishedBy ",
521
+ "type": {
522
+ "kind": [
523
+ "NON_NULL",
524
+ "SCALAR"
525
+ ],
526
+ "name": "String",
527
+ "non_null": false
528
+ },
529
+ "varName": "publishedBy"
530
+ },
531
+ "publishedTime": {
532
+ "args": {},
533
+ "deprecationReason": null,
534
+ "description": null,
535
+ "id_str": "terminalServer___policy___audit___publishedTime",
536
+ "isDeprecated": false,
537
+ "name": "publishedTime",
538
+ "path": "terminalServer.policy.audit.publishedTime",
539
+ "requestStr": "$publishedTime:DateTime! ",
540
+ "required": true,
541
+ "responseStr": "publishedTime:$publishedTime ",
542
+ "type": {
543
+ "kind": [
544
+ "NON_NULL",
545
+ "SCALAR"
546
+ ],
547
+ "name": "DateTime",
548
+ "non_null": false
549
+ },
550
+ "varName": "publishedTime"
551
+ }
552
+ },
553
+ "inputFields": null,
554
+ "interfaces": {},
555
+ "kind": "OBJECT",
556
+ "name": "PolicyAudit",
557
+ "possibleTypes": null
558
+ },
559
+ "indexType": "object",
560
+ "kind": [
561
+ "OBJECT"
562
+ ],
563
+ "name": "PolicyAudit",
564
+ "non_null": false
565
+ },
566
+ "varName": "policyAudit"
567
+ },
568
+ "enabled": {
569
+ "args": {},
570
+ "deprecationReason": null,
571
+ "description": null,
572
+ "id_str": "terminalServer___policy___enabled",
573
+ "isDeprecated": false,
574
+ "name": "enabled",
575
+ "path": "terminalServer.policy.enabled",
576
+ "requestStr": "$enabled:Boolean! ",
577
+ "required": true,
578
+ "responseStr": "enabled:$enabled ",
579
+ "type": {
580
+ "kind": [
581
+ "NON_NULL",
582
+ "SCALAR"
583
+ ],
584
+ "name": "Boolean",
585
+ "non_null": false
586
+ },
587
+ "varName": "enabled"
588
+ },
589
+ "revision": {
590
+ "alias": "policyRevisionRevision: revision",
591
+ "args": {},
592
+ "deprecationReason": null,
593
+ "description": null,
594
+ "id_str": "terminalServer___policy___revision",
595
+ "isDeprecated": false,
596
+ "name": "revision",
597
+ "path": "terminalServer.policy.revision",
598
+ "requestStr": "$policyRevision:PolicyRevision ",
599
+ "required": false,
600
+ "responseStr": "revision:$policyRevision ",
601
+ "type": {
602
+ "definition": {
603
+ "description": "Returns data about the policy revision, such as when the change was made, how many rules were changed, etc.",
604
+ "enumValues": null,
605
+ "fields": {
606
+ "changes": {
607
+ "args": {},
608
+ "deprecationReason": null,
609
+ "description": null,
610
+ "id_str": "terminalServer___policy___revision___changes",
611
+ "isDeprecated": false,
612
+ "name": "changes",
613
+ "path": "terminalServer.policy.revision.changes",
614
+ "requestStr": "$changes:Int! ",
615
+ "required": true,
616
+ "responseStr": "changes:$changes ",
617
+ "type": {
618
+ "kind": [
619
+ "NON_NULL",
620
+ "SCALAR"
621
+ ],
622
+ "name": "Int",
623
+ "non_null": false
624
+ },
625
+ "varName": "changes"
626
+ },
627
+ "createdTime": {
628
+ "args": {},
629
+ "deprecationReason": null,
630
+ "description": null,
631
+ "id_str": "terminalServer___policy___revision___createdTime",
632
+ "isDeprecated": false,
633
+ "name": "createdTime",
634
+ "path": "terminalServer.policy.revision.createdTime",
635
+ "requestStr": "$createdTime:DateTime! ",
636
+ "required": true,
637
+ "responseStr": "createdTime:$createdTime ",
638
+ "type": {
639
+ "kind": [
640
+ "NON_NULL",
641
+ "SCALAR"
642
+ ],
643
+ "name": "DateTime",
644
+ "non_null": false
645
+ },
646
+ "varName": "createdTime"
647
+ },
648
+ "description": {
649
+ "args": {},
650
+ "deprecationReason": null,
651
+ "description": null,
652
+ "id_str": "terminalServer___policy___revision___description",
653
+ "isDeprecated": false,
654
+ "name": "description",
655
+ "path": "terminalServer.policy.revision.description",
656
+ "requestStr": "$description:String! ",
657
+ "required": true,
658
+ "responseStr": "description:$description ",
659
+ "type": {
660
+ "kind": [
661
+ "NON_NULL",
662
+ "SCALAR"
663
+ ],
664
+ "name": "String",
665
+ "non_null": false
666
+ },
667
+ "varName": "description"
668
+ },
669
+ "id": {
670
+ "args": {},
671
+ "deprecationReason": null,
672
+ "description": null,
673
+ "id_str": "terminalServer___policy___revision___id",
674
+ "isDeprecated": false,
675
+ "name": "id",
676
+ "path": "terminalServer.policy.revision.id",
677
+ "requestStr": "$id:ID! ",
678
+ "required": true,
679
+ "responseStr": "id:$id ",
680
+ "type": {
681
+ "kind": [
682
+ "NON_NULL",
683
+ "SCALAR"
684
+ ],
685
+ "name": "ID",
686
+ "non_null": false
687
+ },
688
+ "varName": "id"
689
+ },
690
+ "name": {
691
+ "args": {},
692
+ "deprecationReason": null,
693
+ "description": null,
694
+ "id_str": "terminalServer___policy___revision___name",
695
+ "isDeprecated": false,
696
+ "name": "name",
697
+ "path": "terminalServer.policy.revision.name",
698
+ "requestStr": "$name:String! ",
699
+ "required": true,
700
+ "responseStr": "name:$name ",
701
+ "type": {
702
+ "kind": [
703
+ "NON_NULL",
704
+ "SCALAR"
705
+ ],
706
+ "name": "String",
707
+ "non_null": false
708
+ },
709
+ "varName": "name"
710
+ },
711
+ "updatedTime": {
712
+ "args": {},
713
+ "deprecationReason": null,
714
+ "description": null,
715
+ "id_str": "terminalServer___policy___revision___updatedTime",
716
+ "isDeprecated": false,
717
+ "name": "updatedTime",
718
+ "path": "terminalServer.policy.revision.updatedTime",
719
+ "requestStr": "$updatedTime:DateTime! ",
720
+ "required": true,
721
+ "responseStr": "updatedTime:$updatedTime ",
722
+ "type": {
723
+ "kind": [
724
+ "NON_NULL",
725
+ "SCALAR"
726
+ ],
727
+ "name": "DateTime",
728
+ "non_null": false
729
+ },
730
+ "varName": "updatedTime"
731
+ }
732
+ },
733
+ "inputFields": null,
734
+ "interfaces": {},
735
+ "kind": "OBJECT",
736
+ "name": "PolicyRevision",
737
+ "possibleTypes": null
738
+ },
739
+ "indexType": "object",
740
+ "kind": [
741
+ "OBJECT"
742
+ ],
743
+ "name": "PolicyRevision",
744
+ "non_null": false
745
+ },
746
+ "varName": "policyRevision"
747
+ },
748
+ "rules": {
749
+ "alias": "terminalServerRulePayloadRules: rules",
750
+ "args": {},
751
+ "deprecationReason": null,
752
+ "description": null,
753
+ "id_str": "terminalServer___policy___rules",
754
+ "isDeprecated": false,
755
+ "name": "rules",
756
+ "path": "terminalServer.policy.rules",
757
+ "requestStr": "$terminalServerRulePayload:[TerminalServerRulePayload]! ",
758
+ "required": true,
759
+ "responseStr": "rules:$terminalServerRulePayload ",
760
+ "type": {
761
+ "definition": {
762
+ "description": null,
763
+ "enumValues": null,
764
+ "fields": {
765
+ "audit": {
766
+ "alias": "policyElementAuditAudit: audit",
767
+ "args": {},
768
+ "deprecationReason": null,
769
+ "description": null,
770
+ "id_str": "terminalServer___policy___rules___audit",
771
+ "isDeprecated": false,
772
+ "name": "audit",
773
+ "path": "terminalServer.policy.rules.audit",
774
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
775
+ "required": true,
776
+ "responseStr": "audit:$policyElementAudit ",
777
+ "type": {
778
+ "definition": {
779
+ "description": null,
780
+ "enumValues": null,
781
+ "fields": {
782
+ "updatedBy": {
783
+ "args": {},
784
+ "deprecationReason": null,
785
+ "description": "The admin, or the API-key, that performed the last update",
786
+ "id_str": "terminalServer___policy___rules___audit___updatedBy",
787
+ "isDeprecated": false,
788
+ "name": "updatedBy",
789
+ "path": "terminalServer.policy.rules.audit.updatedBy",
790
+ "requestStr": "$updatedBy:String! ",
791
+ "required": true,
792
+ "responseStr": "updatedBy:$updatedBy ",
793
+ "type": {
794
+ "kind": [
795
+ "NON_NULL",
796
+ "SCALAR"
797
+ ],
798
+ "name": "String",
799
+ "non_null": false
800
+ },
801
+ "varName": "updatedBy"
802
+ },
803
+ "updatedTime": {
804
+ "args": {},
805
+ "deprecationReason": null,
806
+ "description": "The last date and time the rule was updated",
807
+ "id_str": "terminalServer___policy___rules___audit___updatedTime",
808
+ "isDeprecated": false,
809
+ "name": "updatedTime",
810
+ "path": "terminalServer.policy.rules.audit.updatedTime",
811
+ "requestStr": "$updatedTime:DateTime! ",
812
+ "required": true,
813
+ "responseStr": "updatedTime:$updatedTime ",
814
+ "type": {
815
+ "kind": [
816
+ "NON_NULL",
817
+ "SCALAR"
818
+ ],
819
+ "name": "DateTime",
820
+ "non_null": false
821
+ },
822
+ "varName": "updatedTime"
823
+ }
824
+ },
825
+ "inputFields": null,
826
+ "interfaces": {},
827
+ "kind": "OBJECT",
828
+ "name": "PolicyElementAudit",
829
+ "possibleTypes": null
830
+ },
831
+ "indexType": "object",
832
+ "kind": [
833
+ "NON_NULL",
834
+ "OBJECT"
835
+ ],
836
+ "name": "PolicyElementAudit",
837
+ "non_null": false
838
+ },
839
+ "varName": "policyElementAudit"
840
+ },
841
+ "properties": {
842
+ "alias": "policyElementPropertiesEnumProperties: properties",
843
+ "args": {},
844
+ "deprecationReason": null,
845
+ "description": null,
846
+ "id_str": "terminalServer___policy___rules___properties",
847
+ "isDeprecated": false,
848
+ "name": "properties",
849
+ "path": "terminalServer.policy.rules.properties",
850
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
851
+ "required": true,
852
+ "responseStr": "properties:$properties ",
853
+ "type": {
854
+ "definition": {
855
+ "description": "Attributes describing the rule state or type",
856
+ "enumValues": [
857
+ {
858
+ "deprecationReason": null,
859
+ "description": "New (added) rule",
860
+ "isDeprecated": false,
861
+ "name": "ADDED"
862
+ },
863
+ {
864
+ "deprecationReason": null,
865
+ "description": "Updated (modified) existing rule",
866
+ "isDeprecated": false,
867
+ "name": "UPDATED"
868
+ },
869
+ {
870
+ "deprecationReason": null,
871
+ "description": "Removed (deleted) rule",
872
+ "isDeprecated": false,
873
+ "name": "REMOVED"
874
+ },
875
+ {
876
+ "deprecationReason": null,
877
+ "description": "A rule moved to a different position",
878
+ "isDeprecated": false,
879
+ "name": "MOVED"
880
+ },
881
+ {
882
+ "deprecationReason": null,
883
+ "description": "A rule locked for changes by other admins",
884
+ "isDeprecated": false,
885
+ "name": "LOCKED"
886
+ },
887
+ {
888
+ "deprecationReason": null,
889
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
890
+ "isDeprecated": false,
891
+ "name": "ANCHORED"
892
+ },
893
+ {
894
+ "deprecationReason": null,
895
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
896
+ "isDeprecated": false,
897
+ "name": "SYSTEM"
898
+ }
899
+ ],
900
+ "fields": null,
901
+ "inputFields": null,
902
+ "interfaces": null,
903
+ "kind": "ENUM",
904
+ "name": "PolicyElementPropertiesEnum",
905
+ "possibleTypes": null
906
+ },
907
+ "indexType": "enum",
908
+ "kind": [
909
+ "NON_NULL",
910
+ "LIST",
911
+ "NON_NULL",
912
+ "ENUM"
913
+ ],
914
+ "name": "PolicyElementPropertiesEnum",
915
+ "non_null": false
916
+ },
917
+ "varName": "properties"
918
+ },
919
+ "rule": {
920
+ "alias": "terminalServerRuleRule: rule",
921
+ "args": {},
922
+ "deprecationReason": null,
923
+ "description": null,
924
+ "id_str": "terminalServer___policy___rules___rule",
925
+ "isDeprecated": false,
926
+ "name": "rule",
927
+ "path": "terminalServer.policy.rules.rule",
928
+ "requestStr": "$terminalServerRule:TerminalServerRule! ",
929
+ "required": true,
930
+ "responseStr": "rule:$terminalServerRule ",
931
+ "type": {
932
+ "definition": {
933
+ "description": null,
934
+ "enumValues": null,
935
+ "fields": {
936
+ "allowedHostIP": {
937
+ "alias": "globalIpRangeRefAllowedHostIP: allowedHostIP",
938
+ "args": {},
939
+ "deprecationReason": null,
940
+ "description": "Allowed Host IP range.\nall the other IPs will be blocked by the pop.\nGlobally defined IP range",
941
+ "id_str": "terminalServer___policy___rules___rule___allowedHostIP",
942
+ "isDeprecated": false,
943
+ "name": "allowedHostIP",
944
+ "path": "terminalServer.policy.rules.rule.allowedHostIP",
945
+ "requestStr": "$globalIpRangeRef:GlobalIpRangeRef! ",
946
+ "required": true,
947
+ "responseStr": "allowedHostIP:$globalIpRangeRef ",
948
+ "type": {
949
+ "definition": {
950
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
951
+ "enumValues": null,
952
+ "fields": {
953
+ "id": {
954
+ "args": {},
955
+ "deprecationReason": null,
956
+ "description": null,
957
+ "id_str": "terminalServer___policy___rules___rule___allowedHostIP___id",
958
+ "isDeprecated": false,
959
+ "name": "id",
960
+ "path": "terminalServer.policy.rules.rule.allowedHostIP.id",
961
+ "requestStr": "$id:ID! ",
962
+ "required": true,
963
+ "responseStr": "id:$id ",
964
+ "type": {
965
+ "kind": [
966
+ "NON_NULL",
967
+ "SCALAR"
968
+ ],
969
+ "name": "ID",
970
+ "non_null": false
971
+ },
972
+ "varName": "id"
973
+ },
974
+ "name": {
975
+ "args": {},
976
+ "deprecationReason": null,
977
+ "description": null,
978
+ "id_str": "terminalServer___policy___rules___rule___allowedHostIP___name",
979
+ "isDeprecated": false,
980
+ "name": "name",
981
+ "path": "terminalServer.policy.rules.rule.allowedHostIP.name",
982
+ "requestStr": "$name:String! ",
983
+ "required": true,
984
+ "responseStr": "name:$name ",
985
+ "type": {
986
+ "kind": [
987
+ "NON_NULL",
988
+ "SCALAR"
989
+ ],
990
+ "name": "String",
991
+ "non_null": false
992
+ },
993
+ "varName": "name"
994
+ }
995
+ },
996
+ "inputFields": null,
997
+ "interfaces": {},
998
+ "kind": "OBJECT",
999
+ "name": "GlobalIpRangeRef",
1000
+ "possibleTypes": null
1001
+ },
1002
+ "indexType": "object",
1003
+ "kind": [
1004
+ "NON_NULL",
1005
+ "OBJECT"
1006
+ ],
1007
+ "name": "GlobalIpRangeRef",
1008
+ "non_null": false
1009
+ },
1010
+ "varName": "globalIpRangeRef"
1011
+ },
1012
+ "description": {
1013
+ "args": {},
1014
+ "deprecationReason": null,
1015
+ "description": "Description for the rule",
1016
+ "id_str": "terminalServer___policy___rules___rule___description",
1017
+ "isDeprecated": false,
1018
+ "name": "description",
1019
+ "path": "terminalServer.policy.rules.rule.description",
1020
+ "requestStr": "$description:String! ",
1021
+ "required": true,
1022
+ "responseStr": "description:$description ",
1023
+ "type": {
1024
+ "kind": [
1025
+ "NON_NULL",
1026
+ "SCALAR"
1027
+ ],
1028
+ "name": "String",
1029
+ "non_null": false
1030
+ },
1031
+ "varName": "description"
1032
+ },
1033
+ "enabled": {
1034
+ "args": {},
1035
+ "deprecationReason": null,
1036
+ "description": "TRUE = Rule is enabled \n FALSE = Rule is disabled",
1037
+ "id_str": "terminalServer___policy___rules___rule___enabled",
1038
+ "isDeprecated": false,
1039
+ "name": "enabled",
1040
+ "path": "terminalServer.policy.rules.rule.enabled",
1041
+ "requestStr": "$enabled:Boolean! ",
1042
+ "required": true,
1043
+ "responseStr": "enabled:$enabled ",
1044
+ "type": {
1045
+ "kind": [
1046
+ "NON_NULL",
1047
+ "SCALAR"
1048
+ ],
1049
+ "name": "Boolean",
1050
+ "non_null": false
1051
+ },
1052
+ "varName": "enabled"
1053
+ },
1054
+ "excludeTraffic": {
1055
+ "alias": "globalIpRangeRefExcludeTraffic: excludeTraffic",
1056
+ "args": {},
1057
+ "deprecationReason": null,
1058
+ "description": "Exclude traffic IP Range.\nall traffic to those Ips will be excluded from the GRE tunnel.\nGlobally defined IP range",
1059
+ "id_str": "terminalServer___policy___rules___rule___excludeTraffic",
1060
+ "isDeprecated": false,
1061
+ "name": "excludeTraffic",
1062
+ "path": "terminalServer.policy.rules.rule.excludeTraffic",
1063
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
1064
+ "required": true,
1065
+ "responseStr": "excludeTraffic:$globalIpRangeRef ",
1066
+ "type": {
1067
+ "definition": {
1068
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
1069
+ "enumValues": null,
1070
+ "fields": {
1071
+ "id": {
1072
+ "args": {},
1073
+ "deprecationReason": null,
1074
+ "description": null,
1075
+ "id_str": "terminalServer___policy___rules___rule___excludeTraffic___id",
1076
+ "isDeprecated": false,
1077
+ "name": "id",
1078
+ "path": "terminalServer.policy.rules.rule.excludeTraffic.id",
1079
+ "requestStr": "$id:ID! ",
1080
+ "required": true,
1081
+ "responseStr": "id:$id ",
1082
+ "type": {
1083
+ "kind": [
1084
+ "NON_NULL",
1085
+ "SCALAR"
1086
+ ],
1087
+ "name": "ID",
1088
+ "non_null": false
1089
+ },
1090
+ "varName": "id"
1091
+ },
1092
+ "name": {
1093
+ "args": {},
1094
+ "deprecationReason": null,
1095
+ "description": null,
1096
+ "id_str": "terminalServer___policy___rules___rule___excludeTraffic___name",
1097
+ "isDeprecated": false,
1098
+ "name": "name",
1099
+ "path": "terminalServer.policy.rules.rule.excludeTraffic.name",
1100
+ "requestStr": "$name:String! ",
1101
+ "required": true,
1102
+ "responseStr": "name:$name ",
1103
+ "type": {
1104
+ "kind": [
1105
+ "NON_NULL",
1106
+ "SCALAR"
1107
+ ],
1108
+ "name": "String",
1109
+ "non_null": false
1110
+ },
1111
+ "varName": "name"
1112
+ }
1113
+ },
1114
+ "inputFields": null,
1115
+ "interfaces": {},
1116
+ "kind": "OBJECT",
1117
+ "name": "GlobalIpRangeRef",
1118
+ "possibleTypes": null
1119
+ },
1120
+ "indexType": "object",
1121
+ "kind": [
1122
+ "NON_NULL",
1123
+ "LIST",
1124
+ "NON_NULL",
1125
+ "OBJECT"
1126
+ ],
1127
+ "name": "GlobalIpRangeRef",
1128
+ "non_null": false
1129
+ },
1130
+ "varName": "globalIpRangeRef"
1131
+ },
1132
+ "id": {
1133
+ "args": {},
1134
+ "deprecationReason": null,
1135
+ "description": "Rule ID",
1136
+ "id_str": "terminalServer___policy___rules___rule___id",
1137
+ "isDeprecated": false,
1138
+ "name": "id",
1139
+ "path": "terminalServer.policy.rules.rule.id",
1140
+ "requestStr": "$id:ID! ",
1141
+ "required": true,
1142
+ "responseStr": "id:$id ",
1143
+ "type": {
1144
+ "kind": [
1145
+ "NON_NULL",
1146
+ "SCALAR"
1147
+ ],
1148
+ "name": "ID",
1149
+ "non_null": false
1150
+ },
1151
+ "varName": "id"
1152
+ },
1153
+ "index": {
1154
+ "args": {},
1155
+ "deprecationReason": null,
1156
+ "description": "Position / priority of rule",
1157
+ "id_str": "terminalServer___policy___rules___rule___index",
1158
+ "isDeprecated": false,
1159
+ "name": "index",
1160
+ "path": "terminalServer.policy.rules.rule.index",
1161
+ "requestStr": "$index:Int! ",
1162
+ "required": true,
1163
+ "responseStr": "index:$index ",
1164
+ "type": {
1165
+ "kind": [
1166
+ "NON_NULL",
1167
+ "SCALAR"
1168
+ ],
1169
+ "name": "Int",
1170
+ "non_null": false
1171
+ },
1172
+ "varName": "index"
1173
+ },
1174
+ "name": {
1175
+ "args": {},
1176
+ "deprecationReason": null,
1177
+ "description": "Name of the rule",
1178
+ "id_str": "terminalServer___policy___rules___rule___name",
1179
+ "isDeprecated": false,
1180
+ "name": "name",
1181
+ "path": "terminalServer.policy.rules.rule.name",
1182
+ "requestStr": "$name:String! ",
1183
+ "required": true,
1184
+ "responseStr": "name:$name ",
1185
+ "type": {
1186
+ "kind": [
1187
+ "NON_NULL",
1188
+ "SCALAR"
1189
+ ],
1190
+ "name": "String",
1191
+ "non_null": false
1192
+ },
1193
+ "varName": "name"
1194
+ },
1195
+ "section": {
1196
+ "alias": "policySectionInfoSection: section",
1197
+ "args": {},
1198
+ "deprecationReason": null,
1199
+ "description": "Policy section where the rule is located",
1200
+ "id_str": "terminalServer___policy___rules___rule___section",
1201
+ "isDeprecated": false,
1202
+ "name": "section",
1203
+ "path": "terminalServer.policy.rules.rule.section",
1204
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1205
+ "required": true,
1206
+ "responseStr": "section:$policySectionInfo ",
1207
+ "type": {
1208
+ "definition": {
1209
+ "description": "Define settings for a policy section",
1210
+ "enumValues": null,
1211
+ "fields": {
1212
+ "id": {
1213
+ "args": {},
1214
+ "deprecationReason": null,
1215
+ "description": null,
1216
+ "id_str": "terminalServer___policy___rules___rule___section___id",
1217
+ "isDeprecated": false,
1218
+ "name": "id",
1219
+ "path": "terminalServer.policy.rules.rule.section.id",
1220
+ "requestStr": "$id:ID! ",
1221
+ "required": true,
1222
+ "responseStr": "id:$id ",
1223
+ "type": {
1224
+ "kind": [
1225
+ "NON_NULL",
1226
+ "SCALAR"
1227
+ ],
1228
+ "name": "ID",
1229
+ "non_null": false
1230
+ },
1231
+ "varName": "id"
1232
+ },
1233
+ "name": {
1234
+ "args": {},
1235
+ "deprecationReason": null,
1236
+ "description": null,
1237
+ "id_str": "terminalServer___policy___rules___rule___section___name",
1238
+ "isDeprecated": false,
1239
+ "name": "name",
1240
+ "path": "terminalServer.policy.rules.rule.section.name",
1241
+ "requestStr": "$name:String! ",
1242
+ "required": true,
1243
+ "responseStr": "name:$name ",
1244
+ "type": {
1245
+ "kind": [
1246
+ "NON_NULL",
1247
+ "SCALAR"
1248
+ ],
1249
+ "name": "String",
1250
+ "non_null": false
1251
+ },
1252
+ "varName": "name"
1253
+ }
1254
+ },
1255
+ "inputFields": null,
1256
+ "interfaces": {},
1257
+ "kind": "OBJECT",
1258
+ "name": "PolicySectionInfo",
1259
+ "possibleTypes": null
1260
+ },
1261
+ "indexType": "object",
1262
+ "kind": [
1263
+ "NON_NULL",
1264
+ "OBJECT"
1265
+ ],
1266
+ "name": "PolicySectionInfo",
1267
+ "non_null": false
1268
+ },
1269
+ "varName": "policySectionInfo"
1270
+ }
1271
+ },
1272
+ "inputFields": null,
1273
+ "interfaces": {},
1274
+ "kind": "OBJECT",
1275
+ "name": "TerminalServerRule",
1276
+ "possibleTypes": null
1277
+ },
1278
+ "indexType": "object",
1279
+ "kind": [
1280
+ "NON_NULL",
1281
+ "OBJECT"
1282
+ ],
1283
+ "name": "TerminalServerRule",
1284
+ "non_null": false
1285
+ },
1286
+ "varName": "terminalServerRule"
1287
+ }
1288
+ },
1289
+ "inputFields": null,
1290
+ "interfaces": {},
1291
+ "kind": "OBJECT",
1292
+ "name": "TerminalServerRulePayload",
1293
+ "possibleTypes": null
1294
+ },
1295
+ "indexType": "object",
1296
+ "kind": [
1297
+ "NON_NULL",
1298
+ "LIST",
1299
+ "NON_NULL",
1300
+ "OBJECT"
1301
+ ],
1302
+ "name": "TerminalServerRulePayload",
1303
+ "non_null": false
1304
+ },
1305
+ "varName": "terminalServerRulePayload"
1306
+ },
1307
+ "sections": {
1308
+ "alias": "policySectionPayloadSections: sections",
1309
+ "args": {},
1310
+ "deprecationReason": null,
1311
+ "description": null,
1312
+ "id_str": "terminalServer___policy___sections",
1313
+ "isDeprecated": false,
1314
+ "name": "sections",
1315
+ "path": "terminalServer.policy.sections",
1316
+ "requestStr": "$policySectionPayload:[PolicySectionPayload]! ",
1317
+ "required": true,
1318
+ "responseStr": "sections:$policySectionPayload ",
1319
+ "type": {
1320
+ "definition": {
1321
+ "description": null,
1322
+ "enumValues": null,
1323
+ "fields": {
1324
+ "audit": {
1325
+ "alias": "policyElementAuditAudit: audit",
1326
+ "args": {},
1327
+ "deprecationReason": null,
1328
+ "description": null,
1329
+ "id_str": "terminalServer___policy___sections___audit",
1330
+ "isDeprecated": false,
1331
+ "name": "audit",
1332
+ "path": "terminalServer.policy.sections.audit",
1333
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
1334
+ "required": true,
1335
+ "responseStr": "audit:$policyElementAudit ",
1336
+ "type": {
1337
+ "definition": {
1338
+ "description": null,
1339
+ "enumValues": null,
1340
+ "fields": {
1341
+ "updatedBy": {
1342
+ "args": {},
1343
+ "deprecationReason": null,
1344
+ "description": "The admin, or the API-key, that performed the last update",
1345
+ "id_str": "terminalServer___policy___sections___audit___updatedBy",
1346
+ "isDeprecated": false,
1347
+ "name": "updatedBy",
1348
+ "path": "terminalServer.policy.sections.audit.updatedBy",
1349
+ "requestStr": "$updatedBy:String! ",
1350
+ "required": true,
1351
+ "responseStr": "updatedBy:$updatedBy ",
1352
+ "type": {
1353
+ "kind": [
1354
+ "NON_NULL",
1355
+ "SCALAR"
1356
+ ],
1357
+ "name": "String",
1358
+ "non_null": false
1359
+ },
1360
+ "varName": "updatedBy"
1361
+ },
1362
+ "updatedTime": {
1363
+ "args": {},
1364
+ "deprecationReason": null,
1365
+ "description": "The last date and time the rule was updated",
1366
+ "id_str": "terminalServer___policy___sections___audit___updatedTime",
1367
+ "isDeprecated": false,
1368
+ "name": "updatedTime",
1369
+ "path": "terminalServer.policy.sections.audit.updatedTime",
1370
+ "requestStr": "$updatedTime:DateTime! ",
1371
+ "required": true,
1372
+ "responseStr": "updatedTime:$updatedTime ",
1373
+ "type": {
1374
+ "kind": [
1375
+ "NON_NULL",
1376
+ "SCALAR"
1377
+ ],
1378
+ "name": "DateTime",
1379
+ "non_null": false
1380
+ },
1381
+ "varName": "updatedTime"
1382
+ }
1383
+ },
1384
+ "inputFields": null,
1385
+ "interfaces": {},
1386
+ "kind": "OBJECT",
1387
+ "name": "PolicyElementAudit",
1388
+ "possibleTypes": null
1389
+ },
1390
+ "indexType": "object",
1391
+ "kind": [
1392
+ "NON_NULL",
1393
+ "OBJECT"
1394
+ ],
1395
+ "name": "PolicyElementAudit",
1396
+ "non_null": false
1397
+ },
1398
+ "varName": "policyElementAudit"
1399
+ },
1400
+ "properties": {
1401
+ "alias": "policyElementPropertiesEnumProperties: properties",
1402
+ "args": {},
1403
+ "deprecationReason": null,
1404
+ "description": null,
1405
+ "id_str": "terminalServer___policy___sections___properties",
1406
+ "isDeprecated": false,
1407
+ "name": "properties",
1408
+ "path": "terminalServer.policy.sections.properties",
1409
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
1410
+ "required": true,
1411
+ "responseStr": "properties:$properties ",
1412
+ "type": {
1413
+ "definition": {
1414
+ "description": "Attributes describing the rule state or type",
1415
+ "enumValues": [
1416
+ {
1417
+ "deprecationReason": null,
1418
+ "description": "New (added) rule",
1419
+ "isDeprecated": false,
1420
+ "name": "ADDED"
1421
+ },
1422
+ {
1423
+ "deprecationReason": null,
1424
+ "description": "Updated (modified) existing rule",
1425
+ "isDeprecated": false,
1426
+ "name": "UPDATED"
1427
+ },
1428
+ {
1429
+ "deprecationReason": null,
1430
+ "description": "Removed (deleted) rule",
1431
+ "isDeprecated": false,
1432
+ "name": "REMOVED"
1433
+ },
1434
+ {
1435
+ "deprecationReason": null,
1436
+ "description": "A rule moved to a different position",
1437
+ "isDeprecated": false,
1438
+ "name": "MOVED"
1439
+ },
1440
+ {
1441
+ "deprecationReason": null,
1442
+ "description": "A rule locked for changes by other admins",
1443
+ "isDeprecated": false,
1444
+ "name": "LOCKED"
1445
+ },
1446
+ {
1447
+ "deprecationReason": null,
1448
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
1449
+ "isDeprecated": false,
1450
+ "name": "ANCHORED"
1451
+ },
1452
+ {
1453
+ "deprecationReason": null,
1454
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
1455
+ "isDeprecated": false,
1456
+ "name": "SYSTEM"
1457
+ }
1458
+ ],
1459
+ "fields": null,
1460
+ "inputFields": null,
1461
+ "interfaces": null,
1462
+ "kind": "ENUM",
1463
+ "name": "PolicyElementPropertiesEnum",
1464
+ "possibleTypes": null
1465
+ },
1466
+ "indexType": "enum",
1467
+ "kind": [
1468
+ "NON_NULL",
1469
+ "LIST",
1470
+ "NON_NULL",
1471
+ "ENUM"
1472
+ ],
1473
+ "name": "PolicyElementPropertiesEnum",
1474
+ "non_null": false
1475
+ },
1476
+ "varName": "properties"
1477
+ },
1478
+ "section": {
1479
+ "alias": "policySectionInfoSection: section",
1480
+ "args": {},
1481
+ "deprecationReason": null,
1482
+ "description": null,
1483
+ "id_str": "terminalServer___policy___sections___section",
1484
+ "isDeprecated": false,
1485
+ "name": "section",
1486
+ "path": "terminalServer.policy.sections.section",
1487
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1488
+ "required": true,
1489
+ "responseStr": "section:$policySectionInfo ",
1490
+ "type": {
1491
+ "definition": {
1492
+ "description": "Define settings for a policy section",
1493
+ "enumValues": null,
1494
+ "fields": {
1495
+ "id": {
1496
+ "args": {},
1497
+ "deprecationReason": null,
1498
+ "description": null,
1499
+ "id_str": "terminalServer___policy___sections___section___id",
1500
+ "isDeprecated": false,
1501
+ "name": "id",
1502
+ "path": "terminalServer.policy.sections.section.id",
1503
+ "requestStr": "$id:ID! ",
1504
+ "required": true,
1505
+ "responseStr": "id:$id ",
1506
+ "type": {
1507
+ "kind": [
1508
+ "NON_NULL",
1509
+ "SCALAR"
1510
+ ],
1511
+ "name": "ID",
1512
+ "non_null": false
1513
+ },
1514
+ "varName": "id"
1515
+ },
1516
+ "name": {
1517
+ "args": {},
1518
+ "deprecationReason": null,
1519
+ "description": null,
1520
+ "id_str": "terminalServer___policy___sections___section___name",
1521
+ "isDeprecated": false,
1522
+ "name": "name",
1523
+ "path": "terminalServer.policy.sections.section.name",
1524
+ "requestStr": "$name:String! ",
1525
+ "required": true,
1526
+ "responseStr": "name:$name ",
1527
+ "type": {
1528
+ "kind": [
1529
+ "NON_NULL",
1530
+ "SCALAR"
1531
+ ],
1532
+ "name": "String",
1533
+ "non_null": false
1534
+ },
1535
+ "varName": "name"
1536
+ }
1537
+ },
1538
+ "inputFields": null,
1539
+ "interfaces": {},
1540
+ "kind": "OBJECT",
1541
+ "name": "PolicySectionInfo",
1542
+ "possibleTypes": null
1543
+ },
1544
+ "indexType": "object",
1545
+ "kind": [
1546
+ "NON_NULL",
1547
+ "OBJECT"
1548
+ ],
1549
+ "name": "PolicySectionInfo",
1550
+ "non_null": false
1551
+ },
1552
+ "varName": "policySectionInfo"
1553
+ }
1554
+ },
1555
+ "inputFields": null,
1556
+ "interfaces": {},
1557
+ "kind": "OBJECT",
1558
+ "name": "PolicySectionPayload",
1559
+ "possibleTypes": null
1560
+ },
1561
+ "indexType": "object",
1562
+ "kind": [
1563
+ "NON_NULL",
1564
+ "LIST",
1565
+ "NON_NULL",
1566
+ "OBJECT"
1567
+ ],
1568
+ "name": "PolicySectionPayload",
1569
+ "non_null": false
1570
+ },
1571
+ "varName": "policySectionPayload"
1572
+ }
1573
+ },
1574
+ "inputFields": null,
1575
+ "interfaces": {},
1576
+ "kind": "OBJECT",
1577
+ "name": "TerminalServerPolicy",
1578
+ "possibleTypes": null
1579
+ },
1580
+ "indexType": "object",
1581
+ "kind": [
1582
+ "NON_NULL",
1583
+ "OBJECT"
1584
+ ],
1585
+ "name": "TerminalServerPolicy",
1586
+ "non_null": false
1587
+ },
1588
+ "varName": "terminalServerPolicy"
1589
+ }
1590
+ },
1591
+ "inputFields": null,
1592
+ "interfaces": {},
1593
+ "kind": "OBJECT",
1594
+ "name": "TerminalServerPolicyQueries",
1595
+ "possibleTypes": null
1596
+ },
1597
+ "indexType": "object",
1598
+ "kind": [
1599
+ "OBJECT"
1600
+ ],
1601
+ "name": "TerminalServerPolicyQueries",
1602
+ "non_null": false
1603
+ },
1604
+ "varName": "terminalServerPolicyQueries"
1605
+ }
1606
+ },
1607
+ "inputFields": null,
1608
+ "interfaces": [],
1609
+ "kind": "OBJECT",
1610
+ "name": "PolicyQueries",
1611
+ "possibleTypes": null
1612
+ },
1613
+ "indexType": "object",
1614
+ "kind": [
1615
+ "OBJECT"
1616
+ ],
1617
+ "name": "PolicyQueries",
1618
+ "non_null": false
1619
+ },
1620
+ "variablesPayload": {
1621
+ "terminalServerPolicyInput": {
1622
+ "policyRevisionInput": {
1623
+ "id": {
1624
+ "id": "ID"
1625
+ },
1626
+ "type": {
1627
+ "type": "enum(PolicyRevisionType)"
1628
+ }
1629
+ }
1630
+ }
1631
+ }
1632
+ }