catocli 2.0.4__py3-none-any.whl → 2.1.0__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 (300) hide show
  1. catocli/Utils/clidriver.py +11 -4
  2. catocli/__init__.py +1 -1
  3. catocli/parsers/custom/export_sites/export_sites.py +20 -3
  4. catocli/parsers/custom/import_sites_to_tf/__init__.py +3 -1
  5. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +71 -5
  6. catocli/parsers/mutation_accountManagement/__init__.py +13 -0
  7. catocli/parsers/mutation_accountManagement_disableAccount/README.md +16 -0
  8. catocli/parsers/mutation_container/__init__.py +116 -0
  9. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  10. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  11. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  12. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  13. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  14. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  15. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  16. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  17. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  18. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  19. catocli/parsers/mutation_groups/README.md +7 -0
  20. catocli/parsers/mutation_groups/__init__.py +48 -0
  21. catocli/parsers/mutation_groups_createGroup/README.md +18 -0
  22. catocli/parsers/mutation_groups_deleteGroup/README.md +18 -0
  23. catocli/parsers/mutation_groups_updateGroup/README.md +18 -0
  24. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  25. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  26. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  27. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  28. catocli/parsers/mutation_site/__init__.py +104 -0
  29. catocli/parsers/mutation_site_assignSiteBwLicense/README.md +17 -0
  30. catocli/parsers/mutation_site_removeSecondaryAwsVSocket/README.md +17 -0
  31. catocli/parsers/mutation_site_removeSecondaryAzureVSocket/README.md +17 -0
  32. catocli/parsers/mutation_site_removeSiteBwLicense/README.md +17 -0
  33. catocli/parsers/mutation_site_replaceSiteBwLicense/README.md +17 -0
  34. catocli/parsers/mutation_site_updateSecondaryAwsVSocket/README.md +17 -0
  35. catocli/parsers/mutation_site_updateSecondaryAzureVSocket/README.md +17 -0
  36. catocli/parsers/mutation_site_updateSiteBwLicense/README.md +17 -0
  37. catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
  38. catocli/parsers/mutation_sites/__init__.py +104 -0
  39. catocli/parsers/mutation_sites_assignSiteBwLicense/README.md +17 -0
  40. catocli/parsers/mutation_sites_removeSecondaryAwsVSocket/README.md +17 -0
  41. catocli/parsers/mutation_sites_removeSecondaryAzureVSocket/README.md +17 -0
  42. catocli/parsers/mutation_sites_removeSiteBwLicense/README.md +17 -0
  43. catocli/parsers/mutation_sites_replaceSiteBwLicense/README.md +17 -0
  44. catocli/parsers/mutation_sites_updateSecondaryAwsVSocket/README.md +17 -0
  45. catocli/parsers/mutation_sites_updateSecondaryAzureVSocket/README.md +17 -0
  46. catocli/parsers/mutation_sites_updateSiteBwLicense/README.md +17 -0
  47. catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
  48. catocli/parsers/parserApiClient.py +42 -19
  49. catocli/parsers/query_eventsFeed/README.md +1 -1
  50. catocli/parsers/query_groups/README.md +7 -0
  51. catocli/parsers/query_groups/__init__.py +54 -0
  52. catocli/parsers/query_groups_group/README.md +7 -0
  53. catocli/parsers/query_groups_groupList/README.md +18 -0
  54. catocli/parsers/query_groups_group_members/README.md +18 -0
  55. catocli/parsers/query_groups_whereUsed/README.md +17 -0
  56. catocli/parsers/query_policy/README.md +0 -17
  57. catocli/parsers/query_policy/__init__.py +153 -8
  58. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  59. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  60. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  61. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  62. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  63. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  64. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  65. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  66. catocli/parsers/query_policy_socketLan/README.md +7 -0
  67. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  68. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  69. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  70. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  71. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  72. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  73. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  74. catocli/parsers/query_popLocations/README.md +17 -0
  75. catocli/parsers/query_popLocations/__init__.py +16 -0
  76. catocli/parsers/query_site/README.md +0 -16
  77. catocli/parsers/query_site/__init__.py +118 -8
  78. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  79. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  80. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  81. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  82. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  83. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  84. catocli/parsers/query_site_secondaryAwsVSocket/README.md +17 -0
  85. catocli/parsers/query_site_secondaryAzureVSocket/README.md +17 -0
  86. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  87. catocli/parsers/query_socketPortMetrics/README.md +23 -0
  88. catocli/parsers/query_socketPortMetrics/__init__.py +16 -0
  89. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +24 -0
  90. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +16 -0
  91. catocli/parsers/raw/README.md +0 -14
  92. catocli/parsers/raw/__init__.py +0 -2
  93. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/METADATA +3 -2
  94. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/RECORD +300 -178
  95. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/WHEEL +1 -1
  96. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/top_level.txt +0 -1
  97. graphql_client/api/call_api.py +4 -3
  98. models/mutation.accountManagement.addAccount.json +97 -0
  99. models/mutation.accountManagement.disableAccount.json +545 -0
  100. models/mutation.accountManagement.removeAccount.json +102 -3
  101. models/mutation.accountManagement.updateAccount.json +97 -0
  102. models/mutation.admin.addAdmin.json +6 -9
  103. models/mutation.container.delete.json +2 -2
  104. models/mutation.container.fqdn.addValues.json +866 -0
  105. models/mutation.container.fqdn.createFromFile.json +819 -0
  106. models/mutation.container.fqdn.removeValues.json +866 -0
  107. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  108. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  109. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  110. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  111. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  112. models/mutation.groups.createGroup.json +3178 -0
  113. models/mutation.groups.deleteGroup.json +2758 -0
  114. models/mutation.groups.updateGroup.json +4429 -0
  115. models/mutation.hardware.updateHardwareShipping.json +30 -10
  116. models/mutation.policy.appTenantRestriction.addRule.json +25 -25
  117. models/mutation.policy.appTenantRestriction.addSection.json +3 -3
  118. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +31 -31
  119. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +31 -31
  120. models/mutation.policy.appTenantRestriction.moveRule.json +25 -25
  121. models/mutation.policy.appTenantRestriction.moveSection.json +3 -3
  122. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +31 -31
  123. models/mutation.policy.appTenantRestriction.removeRule.json +25 -25
  124. models/mutation.policy.appTenantRestriction.removeSection.json +3 -3
  125. models/mutation.policy.appTenantRestriction.updatePolicy.json +31 -31
  126. models/mutation.policy.appTenantRestriction.updateRule.json +25 -25
  127. models/mutation.policy.appTenantRestriction.updateSection.json +3 -3
  128. models/mutation.policy.dynamicIpAllocation.addRule.json +11 -11
  129. models/mutation.policy.dynamicIpAllocation.addSection.json +3 -3
  130. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +17 -17
  131. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +17 -17
  132. models/mutation.policy.dynamicIpAllocation.moveRule.json +11 -11
  133. models/mutation.policy.dynamicIpAllocation.moveSection.json +3 -3
  134. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +17 -17
  135. models/mutation.policy.dynamicIpAllocation.removeRule.json +11 -11
  136. models/mutation.policy.dynamicIpAllocation.removeSection.json +3 -3
  137. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +17 -17
  138. models/mutation.policy.dynamicIpAllocation.updateRule.json +11 -11
  139. models/mutation.policy.dynamicIpAllocation.updateSection.json +3 -3
  140. models/mutation.policy.internetFirewall.addRule.json +532 -85
  141. models/mutation.policy.internetFirewall.addSection.json +3 -3
  142. models/mutation.policy.internetFirewall.createPolicyRevision.json +208 -91
  143. models/mutation.policy.internetFirewall.discardPolicyRevision.json +208 -91
  144. models/mutation.policy.internetFirewall.moveRule.json +202 -85
  145. models/mutation.policy.internetFirewall.moveSection.json +3 -3
  146. models/mutation.policy.internetFirewall.publishPolicyRevision.json +208 -91
  147. models/mutation.policy.internetFirewall.removeRule.json +202 -85
  148. models/mutation.policy.internetFirewall.removeSection.json +3 -3
  149. models/mutation.policy.internetFirewall.updatePolicy.json +208 -91
  150. models/mutation.policy.internetFirewall.updateRule.json +523 -85
  151. models/mutation.policy.internetFirewall.updateSection.json +3 -3
  152. models/mutation.policy.remotePortFwd.addRule.json +16 -16
  153. models/mutation.policy.remotePortFwd.addSection.json +3 -3
  154. models/mutation.policy.remotePortFwd.createPolicyRevision.json +22 -22
  155. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +22 -22
  156. models/mutation.policy.remotePortFwd.moveRule.json +16 -16
  157. models/mutation.policy.remotePortFwd.moveSection.json +3 -3
  158. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +22 -22
  159. models/mutation.policy.remotePortFwd.removeRule.json +16 -16
  160. models/mutation.policy.remotePortFwd.removeSection.json +3 -3
  161. models/mutation.policy.remotePortFwd.updatePolicy.json +22 -22
  162. models/mutation.policy.remotePortFwd.updateRule.json +16 -16
  163. models/mutation.policy.remotePortFwd.updateSection.json +3 -3
  164. models/mutation.policy.socketLan.addRule.json +81 -81
  165. models/mutation.policy.socketLan.addSection.json +3 -3
  166. models/mutation.policy.socketLan.createPolicyRevision.json +87 -87
  167. models/mutation.policy.socketLan.discardPolicyRevision.json +87 -87
  168. models/mutation.policy.socketLan.moveRule.json +81 -81
  169. models/mutation.policy.socketLan.moveSection.json +3 -3
  170. models/mutation.policy.socketLan.publishPolicyRevision.json +87 -87
  171. models/mutation.policy.socketLan.removeRule.json +81 -81
  172. models/mutation.policy.socketLan.removeSection.json +3 -3
  173. models/mutation.policy.socketLan.updatePolicy.json +87 -87
  174. models/mutation.policy.socketLan.updateRule.json +81 -81
  175. models/mutation.policy.socketLan.updateSection.json +3 -3
  176. models/mutation.policy.terminalServer.addRule.json +6 -6
  177. models/mutation.policy.terminalServer.addSection.json +3 -3
  178. models/mutation.policy.terminalServer.createPolicyRevision.json +12 -12
  179. models/mutation.policy.terminalServer.discardPolicyRevision.json +12 -12
  180. models/mutation.policy.terminalServer.moveRule.json +6 -6
  181. models/mutation.policy.terminalServer.moveSection.json +3 -3
  182. models/mutation.policy.terminalServer.publishPolicyRevision.json +12 -12
  183. models/mutation.policy.terminalServer.removeRule.json +6 -6
  184. models/mutation.policy.terminalServer.removeSection.json +3 -3
  185. models/mutation.policy.terminalServer.updatePolicy.json +12 -12
  186. models/mutation.policy.terminalServer.updateRule.json +6 -6
  187. models/mutation.policy.terminalServer.updateSection.json +3 -3
  188. models/mutation.policy.wanFirewall.addRule.json +550 -103
  189. models/mutation.policy.wanFirewall.addSection.json +3 -3
  190. models/mutation.policy.wanFirewall.createPolicyRevision.json +226 -109
  191. models/mutation.policy.wanFirewall.discardPolicyRevision.json +226 -109
  192. models/mutation.policy.wanFirewall.moveRule.json +220 -103
  193. models/mutation.policy.wanFirewall.moveSection.json +3 -3
  194. models/mutation.policy.wanFirewall.publishPolicyRevision.json +226 -109
  195. models/mutation.policy.wanFirewall.removeRule.json +220 -103
  196. models/mutation.policy.wanFirewall.removeSection.json +3 -3
  197. models/mutation.policy.wanFirewall.updatePolicy.json +226 -109
  198. models/mutation.policy.wanFirewall.updateRule.json +541 -103
  199. models/mutation.policy.wanFirewall.updateSection.json +3 -3
  200. models/mutation.policy.wanNetwork.addRule.json +90 -90
  201. models/mutation.policy.wanNetwork.addSection.json +3 -3
  202. models/mutation.policy.wanNetwork.createPolicyRevision.json +96 -96
  203. models/mutation.policy.wanNetwork.discardPolicyRevision.json +96 -96
  204. models/mutation.policy.wanNetwork.moveRule.json +90 -90
  205. models/mutation.policy.wanNetwork.moveSection.json +3 -3
  206. models/mutation.policy.wanNetwork.publishPolicyRevision.json +96 -96
  207. models/mutation.policy.wanNetwork.removeRule.json +90 -90
  208. models/mutation.policy.wanNetwork.removeSection.json +3 -3
  209. models/mutation.policy.wanNetwork.updatePolicy.json +96 -96
  210. models/mutation.policy.wanNetwork.updateRule.json +90 -90
  211. models/mutation.policy.wanNetwork.updateSection.json +3 -3
  212. models/mutation.site.addBgpPeer.json +10 -10
  213. models/mutation.site.addIpsecIkeV2SiteTunnels.json +2 -2
  214. models/mutation.site.addSocketAddOnCard.json +2 -2
  215. models/mutation.site.assignSiteBwLicense.json +12879 -0
  216. models/mutation.site.removeBgpPeer.json +10 -10
  217. models/mutation.site.removeIpsecIkeV2SiteTunnels.json +2 -2
  218. models/mutation.site.removeSecondaryAwsVSocket.json +375 -0
  219. models/mutation.site.removeSecondaryAzureVSocket.json +354 -0
  220. models/mutation.site.removeSiteBwLicense.json +12822 -0
  221. models/mutation.site.removeSocketAddOnCard.json +2 -2
  222. models/mutation.site.replaceSiteBwLicense.json +12939 -0
  223. models/mutation.site.startSiteUpgrade.json +36 -15
  224. models/mutation.site.updateBgpPeer.json +10 -10
  225. models/mutation.site.updateIpsecIkeV2SiteTunnels.json +2 -2
  226. models/mutation.site.updateSecondaryAwsVSocket.json +643 -0
  227. models/mutation.site.updateSecondaryAzureVSocket.json +565 -0
  228. models/mutation.site.updateSiteBwLicense.json +12882 -0
  229. models/mutation.site.updateSiteGeneralDetails.json +724 -1
  230. models/mutation.sites.addBgpPeer.json +10 -10
  231. models/mutation.sites.addIpsecIkeV2SiteTunnels.json +2 -2
  232. models/mutation.sites.addSocketAddOnCard.json +2 -2
  233. models/mutation.sites.assignSiteBwLicense.json +12879 -0
  234. models/mutation.sites.removeBgpPeer.json +10 -10
  235. models/mutation.sites.removeIpsecIkeV2SiteTunnels.json +2 -2
  236. models/mutation.sites.removeSecondaryAwsVSocket.json +375 -0
  237. models/mutation.sites.removeSecondaryAzureVSocket.json +354 -0
  238. models/mutation.sites.removeSiteBwLicense.json +12822 -0
  239. models/mutation.sites.removeSocketAddOnCard.json +2 -2
  240. models/mutation.sites.replaceSiteBwLicense.json +12939 -0
  241. models/mutation.sites.startSiteUpgrade.json +36 -15
  242. models/mutation.sites.updateBgpPeer.json +10 -10
  243. models/mutation.sites.updateIpsecIkeV2SiteTunnels.json +2 -2
  244. models/mutation.sites.updateSecondaryAwsVSocket.json +643 -0
  245. models/mutation.sites.updateSecondaryAzureVSocket.json +565 -0
  246. models/mutation.sites.updateSiteBwLicense.json +12882 -0
  247. models/mutation.sites.updateSiteGeneralDetails.json +724 -1
  248. models/mutation.xdr.addStoryComment.json +1 -1
  249. models/mutation.xdr.analystFeedback.json +84 -84
  250. models/mutation.xdr.deleteStoryComment.json +1 -1
  251. models/query.accountManagement.json +97 -0
  252. models/query.accountMetrics.json +45 -45
  253. models/query.accountSnapshot.json +30 -30
  254. models/query.admin.json +6 -6
  255. models/query.admins.json +13 -13
  256. models/query.appStats.json +915 -867
  257. models/query.appStatsTimeSeries.json +692 -656
  258. models/query.auditFeed.json +6 -6
  259. models/query.catalogs.json +52 -52
  260. models/query.container.json +16 -16
  261. models/query.devices.json +20 -93
  262. models/query.entityLookup.json +2 -2
  263. models/query.events.json +288 -384
  264. models/query.eventsFeed.json +73 -97
  265. models/query.eventsTimeSeries.json +219 -291
  266. models/query.groups.group.members.json +3058 -0
  267. models/query.groups.groupList.json +6474 -0
  268. models/query.groups.whereUsed.json +697 -0
  269. models/query.hardware.json +27 -7
  270. models/query.hardwareManagement.json +8 -8
  271. models/query.licensing.json +3487 -1324
  272. models/query.policy.appTenantRestriction.policy.json +3086 -0
  273. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  274. models/query.policy.internetFirewall.policy.json +7833 -0
  275. models/query.policy.json +233 -0
  276. models/query.policy.remotePortFwd.policy.json +2387 -0
  277. models/query.policy.socketLan.policy.json +7140 -0
  278. models/query.policy.terminalServer.policy.json +1632 -0
  279. models/query.policy.wanFirewall.policy.json +9212 -0
  280. models/query.policy.wanNetwork.policy.json +8010 -0
  281. models/query.popLocations.json +2878 -0
  282. models/query.sandbox.json +5 -5
  283. models/query.site.availableVersionList.json +365 -0
  284. models/query.site.bgpPeer.json +1917 -0
  285. models/query.site.bgpPeerList.json +2076 -0
  286. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  287. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  288. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  289. models/query.site.secondaryAwsVSocket.json +340 -0
  290. models/query.site.secondaryAzureVSocket.json +319 -0
  291. models/query.site.siteBgpStatus.json +869 -0
  292. models/query.socketPortMetrics.json +2410 -0
  293. models/query.socketPortMetricsTimeSeries.json +2361 -0
  294. models/query.xdr.stories.json +104 -104
  295. models/query.xdr.story.json +93 -93
  296. schema/catolib.py +34 -18
  297. schema/remove_policyid.py +89 -0
  298. schema/remove_policyid_mutations.py +89 -0
  299. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/entry_points.txt +0 -0
  300. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info/licenses}/LICENSE +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": "auditTerminalServerPolicy: 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": "revisionTerminalServerPolicy: 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": "rulesTerminalServerPolicy: 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": "auditTerminalServerRulePayload: 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": "propertiesTerminalServerRulePayload: 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": "ruleTerminalServerRulePayload: 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": "allowedHostIPTerminalServerRule: 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": "excludeTrafficTerminalServerRule: 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": "sectionTerminalServerRule: 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": "sectionsTerminalServerPolicy: 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": "auditPolicySectionPayload: 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": "propertiesPolicySectionPayload: 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": "sectionPolicySectionPayload: 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
+ }