catocli 2.1.3__py3-none-any.whl → 2.1.6__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 (107) hide show
  1. catocli/Utils/clidriver.py +20 -9
  2. catocli/Utils/cliutils.py +45 -17
  3. catocli/Utils/csv_formatter.py +652 -0
  4. catocli/__init__.py +2 -2
  5. catocli/clisettings.json +35 -0
  6. catocli/parsers/custom/export_rules/__init__.py +0 -4
  7. catocli/parsers/custom/export_sites/__init__.py +17 -5
  8. catocli/parsers/custom/export_sites/export_sites.py +826 -53
  9. catocli/parsers/custom/import_sites_to_tf/__init__.py +44 -16
  10. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +859 -442
  11. catocli/parsers/customParserApiClient.py +444 -38
  12. catocli/parsers/custom_private/__init__.py +18 -0
  13. catocli/parsers/mutation_accountManagement/__init__.py +21 -0
  14. catocli/parsers/mutation_accountManagement_disableAccount/README.md +15 -0
  15. catocli/parsers/mutation_admin/__init__.py +12 -0
  16. catocli/parsers/mutation_container/__init__.py +18 -0
  17. catocli/parsers/mutation_enterpriseDirectory/__init__.py +8 -0
  18. catocli/parsers/mutation_groups/__init__.py +6 -0
  19. catocli/parsers/mutation_hardware/__init__.py +2 -0
  20. catocli/parsers/mutation_licensing/__init__.py +24 -0
  21. catocli/parsers/mutation_licensing_updateCommercialLicense/README.md +19 -0
  22. catocli/parsers/mutation_policy/__init__.py +861 -483
  23. catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md +20 -0
  24. catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md +20 -0
  25. catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md +20 -0
  26. catocli/parsers/mutation_policy_antiMalwareFileHash_discardPolicyRevision/README.md +20 -0
  27. catocli/parsers/mutation_policy_antiMalwareFileHash_moveRule/README.md +20 -0
  28. catocli/parsers/mutation_policy_antiMalwareFileHash_moveSection/README.md +20 -0
  29. catocli/parsers/mutation_policy_antiMalwareFileHash_publishPolicyRevision/README.md +20 -0
  30. catocli/parsers/mutation_policy_antiMalwareFileHash_removeRule/README.md +20 -0
  31. catocli/parsers/mutation_policy_antiMalwareFileHash_removeSection/README.md +20 -0
  32. catocli/parsers/mutation_policy_antiMalwareFileHash_updatePolicy/README.md +20 -0
  33. catocli/parsers/mutation_policy_antiMalwareFileHash_updateRule/README.md +20 -0
  34. catocli/parsers/mutation_policy_antiMalwareFileHash_updateSection/README.md +20 -0
  35. catocli/parsers/mutation_sandbox/__init__.py +4 -0
  36. catocli/parsers/mutation_site/__init__.py +72 -0
  37. catocli/parsers/mutation_sites/__init__.py +72 -0
  38. catocli/parsers/mutation_xdr/__init__.py +6 -0
  39. catocli/parsers/query_accountBySubdomain/__init__.py +2 -0
  40. catocli/parsers/query_accountManagement/__init__.py +2 -0
  41. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  42. catocli/parsers/query_accountRoles/__init__.py +2 -0
  43. catocli/parsers/query_accountSnapshot/__init__.py +2 -0
  44. catocli/parsers/query_admin/__init__.py +2 -0
  45. catocli/parsers/query_admins/__init__.py +2 -0
  46. catocli/parsers/query_appStats/__init__.py +6 -0
  47. catocli/parsers/query_appStatsTimeSeries/README.md +3 -0
  48. catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -0
  49. catocli/parsers/query_auditFeed/__init__.py +2 -0
  50. catocli/parsers/query_catalogs/__init__.py +2 -0
  51. catocli/parsers/query_container/__init__.py +2 -0
  52. catocli/parsers/query_devices/README.md +1 -1
  53. catocli/parsers/query_devices/__init__.py +2 -0
  54. catocli/parsers/query_enterpriseDirectory/__init__.py +2 -0
  55. catocli/parsers/query_entityLookup/__init__.py +2 -0
  56. catocli/parsers/query_events/__init__.py +2 -0
  57. catocli/parsers/query_eventsFeed/README.md +1 -1
  58. catocli/parsers/query_eventsFeed/__init__.py +2 -0
  59. catocli/parsers/query_eventsTimeSeries/__init__.py +2 -0
  60. catocli/parsers/query_groups/__init__.py +6 -0
  61. catocli/parsers/query_hardware/README.md +1 -1
  62. catocli/parsers/query_hardware/__init__.py +2 -0
  63. catocli/parsers/query_hardwareManagement/__init__.py +2 -0
  64. catocli/parsers/query_licensing/__init__.py +2 -0
  65. catocli/parsers/query_policy/__init__.py +85 -48
  66. catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md +19 -0
  67. catocli/parsers/query_popLocations/__init__.py +2 -0
  68. catocli/parsers/query_sandbox/__init__.py +2 -0
  69. catocli/parsers/query_servicePrincipalAdmin/__init__.py +2 -0
  70. catocli/parsers/query_site/__init__.py +33 -0
  71. catocli/parsers/query_siteLocation/__init__.py +2 -0
  72. catocli/parsers/query_site_siteGeneralDetails/README.md +19 -0
  73. catocli/parsers/query_socketPortMetrics/__init__.py +2 -0
  74. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +6 -0
  75. catocli/parsers/query_subDomains/__init__.py +2 -0
  76. catocli/parsers/query_xdr/__init__.py +4 -0
  77. catocli/parsers/raw/__init__.py +3 -1
  78. {catocli-2.1.3.dist-info → catocli-2.1.6.dist-info}/METADATA +1 -1
  79. {catocli-2.1.3.dist-info → catocli-2.1.6.dist-info}/RECORD +107 -72
  80. models/mutation.accountManagement.disableAccount.json +545 -0
  81. models/mutation.licensing.updateCommercialLicense.json +931 -0
  82. models/mutation.policy.antiMalwareFileHash.addRule.json +2068 -0
  83. models/mutation.policy.antiMalwareFileHash.addSection.json +1350 -0
  84. models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +1822 -0
  85. models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +1758 -0
  86. models/mutation.policy.antiMalwareFileHash.moveRule.json +1552 -0
  87. models/mutation.policy.antiMalwareFileHash.moveSection.json +1251 -0
  88. models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +1813 -0
  89. models/mutation.policy.antiMalwareFileHash.removeRule.json +1204 -0
  90. models/mutation.policy.antiMalwareFileHash.removeSection.json +954 -0
  91. models/mutation.policy.antiMalwareFileHash.updatePolicy.json +1834 -0
  92. models/mutation.policy.antiMalwareFileHash.updateRule.json +1757 -0
  93. models/mutation.policy.antiMalwareFileHash.updateSection.json +1105 -0
  94. models/mutation.site.updateSiteGeneralDetails.json +3 -3
  95. models/mutation.sites.updateSiteGeneralDetails.json +3 -3
  96. models/query.devices.json +448 -62
  97. models/query.events.json +216 -0
  98. models/query.eventsFeed.json +48 -0
  99. models/query.eventsTimeSeries.json +144 -0
  100. models/query.hardware.json +224 -0
  101. models/query.policy.antiMalwareFileHash.policy.json +1583 -0
  102. models/query.site.siteGeneralDetails.json +899 -0
  103. schema/catolib.py +51 -4
  104. {catocli-2.1.3.dist-info → catocli-2.1.6.dist-info}/WHEEL +0 -0
  105. {catocli-2.1.3.dist-info → catocli-2.1.6.dist-info}/entry_points.txt +0 -0
  106. {catocli-2.1.3.dist-info → catocli-2.1.6.dist-info}/licenses/LICENSE +0 -0
  107. {catocli-2.1.3.dist-info → catocli-2.1.6.dist-info}/top_level.txt +0 -0
@@ -17,6 +17,8 @@ def query_site_parse(query_subparsers):
17
17
  query_site_secondaryAwsVSocket_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
18
18
  query_site_secondaryAwsVSocket_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
19
19
  query_site_secondaryAwsVSocket_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
20
+ query_site_secondaryAwsVSocket_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
21
+ query_site_secondaryAwsVSocket_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
20
22
  query_site_secondaryAwsVSocket_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
21
23
  query_site_secondaryAwsVSocket_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
22
24
  query_site_secondaryAwsVSocket_parser.set_defaults(func=createRequest,operation_name='query.site.secondaryAwsVSocket')
@@ -30,6 +32,8 @@ def query_site_parse(query_subparsers):
30
32
  query_site_secondaryAzureVSocket_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
31
33
  query_site_secondaryAzureVSocket_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
32
34
  query_site_secondaryAzureVSocket_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
35
+ query_site_secondaryAzureVSocket_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
36
+ query_site_secondaryAzureVSocket_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
33
37
  query_site_secondaryAzureVSocket_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
34
38
  query_site_secondaryAzureVSocket_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
35
39
  query_site_secondaryAzureVSocket_parser.set_defaults(func=createRequest,operation_name='query.site.secondaryAzureVSocket')
@@ -43,6 +47,8 @@ def query_site_parse(query_subparsers):
43
47
  query_site_cloudInterconnectPhysicalConnection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
44
48
  query_site_cloudInterconnectPhysicalConnection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
45
49
  query_site_cloudInterconnectPhysicalConnection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
50
+ query_site_cloudInterconnectPhysicalConnection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
51
+ query_site_cloudInterconnectPhysicalConnection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
46
52
  query_site_cloudInterconnectPhysicalConnection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
47
53
  query_site_cloudInterconnectPhysicalConnection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
48
54
  query_site_cloudInterconnectPhysicalConnection_parser.set_defaults(func=createRequest,operation_name='query.site.cloudInterconnectPhysicalConnection')
@@ -56,6 +62,8 @@ def query_site_parse(query_subparsers):
56
62
  query_site_cloudInterconnectPhysicalConnectionId_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
57
63
  query_site_cloudInterconnectPhysicalConnectionId_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
58
64
  query_site_cloudInterconnectPhysicalConnectionId_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
65
+ query_site_cloudInterconnectPhysicalConnectionId_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
66
+ query_site_cloudInterconnectPhysicalConnectionId_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
59
67
  query_site_cloudInterconnectPhysicalConnectionId_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
60
68
  query_site_cloudInterconnectPhysicalConnectionId_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
61
69
  query_site_cloudInterconnectPhysicalConnectionId_parser.set_defaults(func=createRequest,operation_name='query.site.cloudInterconnectPhysicalConnectionId')
@@ -69,6 +77,8 @@ def query_site_parse(query_subparsers):
69
77
  query_site_cloudInterconnectConnectionConnectivity_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
70
78
  query_site_cloudInterconnectConnectionConnectivity_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
71
79
  query_site_cloudInterconnectConnectionConnectivity_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
80
+ query_site_cloudInterconnectConnectionConnectivity_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
81
+ query_site_cloudInterconnectConnectionConnectivity_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
72
82
  query_site_cloudInterconnectConnectionConnectivity_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
73
83
  query_site_cloudInterconnectConnectionConnectivity_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
74
84
  query_site_cloudInterconnectConnectionConnectivity_parser.set_defaults(func=createRequest,operation_name='query.site.cloudInterconnectConnectionConnectivity')
@@ -82,6 +92,8 @@ def query_site_parse(query_subparsers):
82
92
  query_site_bgpPeer_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
83
93
  query_site_bgpPeer_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
84
94
  query_site_bgpPeer_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
95
+ query_site_bgpPeer_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
96
+ query_site_bgpPeer_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
85
97
  query_site_bgpPeer_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
86
98
  query_site_bgpPeer_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
87
99
  query_site_bgpPeer_parser.set_defaults(func=createRequest,operation_name='query.site.bgpPeer')
@@ -95,6 +107,8 @@ def query_site_parse(query_subparsers):
95
107
  query_site_bgpPeerList_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
96
108
  query_site_bgpPeerList_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
97
109
  query_site_bgpPeerList_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
110
+ query_site_bgpPeerList_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
111
+ query_site_bgpPeerList_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
98
112
  query_site_bgpPeerList_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
99
113
  query_site_bgpPeerList_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
100
114
  query_site_bgpPeerList_parser.set_defaults(func=createRequest,operation_name='query.site.bgpPeerList')
@@ -108,6 +122,8 @@ def query_site_parse(query_subparsers):
108
122
  query_site_siteBgpStatus_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
109
123
  query_site_siteBgpStatus_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
110
124
  query_site_siteBgpStatus_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
125
+ query_site_siteBgpStatus_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
126
+ query_site_siteBgpStatus_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
111
127
  query_site_siteBgpStatus_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
112
128
  query_site_siteBgpStatus_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
113
129
  query_site_siteBgpStatus_parser.set_defaults(func=createRequest,operation_name='query.site.siteBgpStatus')
@@ -121,6 +137,23 @@ def query_site_parse(query_subparsers):
121
137
  query_site_availableVersionList_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
122
138
  query_site_availableVersionList_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
123
139
  query_site_availableVersionList_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
140
+ query_site_availableVersionList_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
141
+ query_site_availableVersionList_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
124
142
  query_site_availableVersionList_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
125
143
  query_site_availableVersionList_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
126
144
  query_site_availableVersionList_parser.set_defaults(func=createRequest,operation_name='query.site.availableVersionList')
145
+
146
+ query_site_siteGeneralDetails_parser = query_site_subparsers.add_parser('siteGeneralDetails',
147
+ help='siteGeneralDetails() site operation',
148
+ usage=get_help("query_site_siteGeneralDetails"))
149
+
150
+ query_site_siteGeneralDetails_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
151
+ query_site_siteGeneralDetails_parser.add_argument('-accountID', help='The cato account ID to use for this operation. Overrides the account_id value in the profile setting. This is use for reseller and MSP accounts to run queries against cato sub accounts from the parent account.')
152
+ query_site_siteGeneralDetails_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
153
+ query_site_siteGeneralDetails_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
154
+ query_site_siteGeneralDetails_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
155
+ query_site_siteGeneralDetails_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
156
+ query_site_siteGeneralDetails_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
157
+ query_site_siteGeneralDetails_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
158
+ query_site_siteGeneralDetails_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
159
+ query_site_siteGeneralDetails_parser.set_defaults(func=createRequest,operation_name='query.site.siteGeneralDetails')
@@ -10,4 +10,6 @@ def query_siteLocation_parse(query_subparsers):
10
10
  query_siteLocation_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
11
11
  query_siteLocation_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
12
12
  query_siteLocation_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
13
+ query_siteLocation_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
14
+ query_siteLocation_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
13
15
  query_siteLocation_parser.set_defaults(func=querySiteLocation,operation_name='query.siteLocation')
@@ -0,0 +1,19 @@
1
+
2
+ ## CATO-CLI - query.site.siteGeneralDetails:
3
+ [Click here](https://api.catonetworks.com/documentation/#query-query.site.siteGeneralDetails) for documentation on this operation.
4
+
5
+ ### Usage for query.site.siteGeneralDetails:
6
+
7
+ `catocli query site siteGeneralDetails -h`
8
+
9
+ `catocli query site siteGeneralDetails <json>`
10
+
11
+ `catocli query site siteGeneralDetails "$(cat < query.site.siteGeneralDetails.json)"`
12
+
13
+ `catocli query site siteGeneralDetails '{"siteRefInput":{"by":"ID","input":"string"}}'`
14
+
15
+
16
+ #### Operation Arguments for query.site.siteGeneralDetails ####
17
+
18
+ `accountId` [ID] - (required) N/A
19
+ `siteRefInput` [SiteRefInput] - (required) N/A
@@ -11,6 +11,8 @@ def query_socketPortMetrics_parse(query_subparsers):
11
11
  query_socketPortMetrics_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
12
12
  query_socketPortMetrics_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
13
13
  query_socketPortMetrics_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
14
+ query_socketPortMetrics_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
15
+ query_socketPortMetrics_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
14
16
  query_socketPortMetrics_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
15
17
  query_socketPortMetrics_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
16
18
  query_socketPortMetrics_parser.set_defaults(func=createRequest,operation_name='query.socketPortMetrics')
@@ -11,6 +11,12 @@ def query_socketPortMetricsTimeSeries_parse(query_subparsers):
11
11
  query_socketPortMetricsTimeSeries_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
12
12
  query_socketPortMetricsTimeSeries_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
13
13
  query_socketPortMetricsTimeSeries_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
14
+ query_socketPortMetricsTimeSeries_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
15
+ query_socketPortMetricsTimeSeries_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
14
16
  query_socketPortMetricsTimeSeries_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
15
17
  query_socketPortMetricsTimeSeries_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
18
+
19
+ query_socketPortMetricsTimeSeries_parser.add_argument('-f', '--format', choices=['json', 'csv'], default='json', help='Output format (default: json)')
20
+ query_socketPortMetricsTimeSeries_parser.add_argument('--csv-filename', dest='csv_filename', help='Override CSV file name (default: accountmetrics.csv)')
21
+ query_socketPortMetricsTimeSeries_parser.add_argument('--append-timestamp', dest='append_timestamp', action='store_true', help='Append timestamp to the CSV file name')
16
22
  query_socketPortMetricsTimeSeries_parser.set_defaults(func=createRequest,operation_name='query.socketPortMetricsTimeSeries')
@@ -11,6 +11,8 @@ def query_subDomains_parse(query_subparsers):
11
11
  query_subDomains_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
12
12
  query_subDomains_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
13
13
  query_subDomains_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
14
+ query_subDomains_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
15
+ query_subDomains_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
14
16
  query_subDomains_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
15
17
  query_subDomains_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
16
18
  query_subDomains_parser.set_defaults(func=createRequest,operation_name='query.subDomains')
@@ -17,6 +17,8 @@ def query_xdr_parse(query_subparsers):
17
17
  query_xdr_stories_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
18
18
  query_xdr_stories_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
19
19
  query_xdr_stories_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
20
+ query_xdr_stories_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
21
+ query_xdr_stories_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
20
22
  query_xdr_stories_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
21
23
  query_xdr_stories_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
22
24
  query_xdr_stories_parser.set_defaults(func=createRequest,operation_name='query.xdr.stories')
@@ -30,6 +32,8 @@ def query_xdr_parse(query_subparsers):
30
32
  query_xdr_story_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
31
33
  query_xdr_story_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
32
34
  query_xdr_story_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
35
+ query_xdr_story_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
36
+ query_xdr_story_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
33
37
  query_xdr_story_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
34
38
  query_xdr_story_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
35
39
  query_xdr_story_parser.set_defaults(func=createRequest,operation_name='query.xdr.story')
@@ -6,7 +6,9 @@ def raw_parse(raw_parser):
6
6
  raw_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
7
7
  raw_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
8
8
  raw_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
9
+ raw_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
10
+ raw_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
9
11
  raw_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
10
12
  raw_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
11
- raw_parser.add_argument('--endpoint', dest='endpoint', help='Override the API endpoint URL (e.g., https://api.catonetworks.com/api/v1/graphql2)')
13
+ raw_parser.add_argument('-e', '--endpoint', dest='endpoint', help='Override the API endpoint URL (e.g., https://api.catonetworks.com/api/v1/graphql2)')
12
14
  raw_parser.set_defaults(func=createRawRequest,operation_name='raw')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: catocli
3
- Version: 2.1.3
3
+ Version: 2.1.6
4
4
  Summary: Cato Networks cli wrapper for the GraphQL API.
5
5
  Home-page: https://github.com/Cato-Networks/cato-cli
6
6
  Author: Cato Networks
@@ -1,31 +1,34 @@
1
- catocli/__init__.py,sha256=SHWJi8J--jgEDRdBfW_GHi46aMM7q2x6f5m6yC9wL3s,85
1
+ catocli/__init__.py,sha256=VG2jsKAa0bPnfVUC7WJE8-vjFBVX26ASFCoPra0SxJU,84
2
2
  catocli/__main__.py,sha256=6Z0ns_k_kUcz1Qtrn1u7UyUnqB-3e85jM_nppOwFsv4,217
3
- catocli/Utils/clidriver.py,sha256=U2lntPXwRpTlnktU_WABhXuTDX_uws8IrzpmgSCXDJc,15184
4
- catocli/Utils/cliutils.py,sha256=kj8huRnccTzjLaHYLQmNXQ2RivGlVPFcXqHAMiiJyqo,5626
3
+ catocli/clisettings.json,sha256=Xxdm9qaeKQaK2hk35PeV5OljSYOJylqJfsgPzaj0D2s,1029
4
+ catocli/Utils/clidriver.py,sha256=29H5qNLW6JUi4jJbGvdr06QihC4n7yr0s7fGpLY8S4c,15965
5
+ catocli/Utils/cliutils.py,sha256=ulXjQJHVHH-JFAAN7q6HkAa1EH8vvKX2IGp6dZKwUtQ,6784
6
+ catocli/Utils/csv_formatter.py,sha256=4MnFlsau-KfeflJGTBAZ98wFt0QKWpAKsIPNeFV3rzk,23038
5
7
  catocli/Utils/profile_manager.py,sha256=Stch-cU2rLA7r07hETIRsvG_JxpQx3Q42QwpfD7Qd2I,6379
6
8
  catocli/Utils/version_checker.py,sha256=tCtsCn7xxMIxOm6cWJSA_yPt0j4mNMK4iWSJej0yM6A,6696
7
- catocli/parsers/customParserApiClient.py,sha256=NHJhssY_0LrL8V9h7NucMztR95D44_NwKlpKLN9ACnU,49007
9
+ catocli/parsers/customParserApiClient.py,sha256=Xpiv9wh3bkZgz6bzmcGJZ099LE4TXdIefBnZEsyMEgk,69387
8
10
  catocli/parsers/configure/__init__.py,sha256=Kq4OYGq_MXOQBHm8vxNkzJqCXp7zremYBfQ4Ai3_Lb4,3286
9
11
  catocli/parsers/configure/configure.py,sha256=GyaOeuf0ZK3-wsZaczmO1OsKVJiPK04h6iI1u-EaKQc,12217
10
12
  catocli/parsers/custom/README.md,sha256=UvCWAtF3Yh0UsvADb0ve1qJupgYHeyGu6V3Z0O5HEvo,8180
11
13
  catocli/parsers/custom/__init__.py,sha256=HUI8WSjPs_GAN3ZtOQMtzK68-018zoe8qACt0yeVwp8,2889
12
14
  catocli/parsers/custom/customLib.py,sha256=Nv-agL_ewpe1x6GbwWCRb_Ey-NVW_w9L6qWwEYMf284,24098
13
- catocli/parsers/custom/export_rules/__init__.py,sha256=Cci1LwMN9VzwPuHOXqUDFORujDI96dJuN-YSccGlQZU,2564
15
+ catocli/parsers/custom/export_rules/__init__.py,sha256=vst8auriTCLwy5AT2_ySM2puq3PIg920ZWa5yy03K_8,1813
14
16
  catocli/parsers/custom/export_rules/export_rules.py,sha256=gXig4NC29yC5nW48ri-j0FEnaTz_kxKiuLF5y-5fZ_4,15646
15
- catocli/parsers/custom/export_sites/__init__.py,sha256=WnTRNA4z4IS0rKR9r_UfuGv3bxp8nlt4YNH1Sed4toU,1378
16
- catocli/parsers/custom/export_sites/export_sites.py,sha256=5dgrpWTVyWXa4sVhCJ2hOlvJOpyDssSBIFSdDo0OI1M,24575
17
+ catocli/parsers/custom/export_sites/__init__.py,sha256=z8K5IIq2N-muOTuDfEEE4pUiOaITEvhfKCLzB9e5Rok,2140
18
+ catocli/parsers/custom/export_sites/export_sites.py,sha256=OR2rJ7a75ks1FX1ZcKLf9NACZOujIoEV1zUlaXiJh8U,66583
17
19
  catocli/parsers/custom/import_rules_to_tf/__init__.py,sha256=jFCFceFv8zDW7nGLZOXkFE6NXAMPYRwKQwTbhSawYdM,3908
18
20
  catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py,sha256=WlyTDxUtWchu9CDs73ILHDfNXCAh7jFARBEKk5WWhwM,18714
19
- catocli/parsers/custom/import_sites_to_tf/__init__.py,sha256=0EyCGY2qV4wxMoFfqBPs5FoMc0Ufr7J7Ciygb6Xx8Fc,2925
20
- catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py,sha256=KND-eQOS_rFYVAX01Gm5ChxE8DtHZ1edS0SizoBqyx4,42880
21
- catocli/parsers/custom_private/__init__.py,sha256=rLhlAc8G7YvAyPmCXpUmLXIy4_N1gN0I5GWKX9srMxE,3826
21
+ catocli/parsers/custom/import_sites_to_tf/__init__.py,sha256=1ayoaaKIxWf5JBN62CO9F7-yaP9MqizTBCedqCyEc4k,4339
22
+ catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py,sha256=Z1arOwrSnl64SayRBy_hQNDmKSJgAbIRK7JPXK7Svjw,70998
23
+ catocli/parsers/custom_private/__init__.py,sha256=yJ8N7xXga2zTImfduRp1u0rfXwUzaJrM_eNnSGi6_m8,4439
22
24
  catocli/parsers/mutation_accountManagement/README.md,sha256=8ipbdTU8FAAfiH3IYlTZkTbLpPtO0fMblra7Zi8vwAI,249
23
- catocli/parsers/mutation_accountManagement/__init__.py,sha256=QChMssZKAnKrQ-xbXUYpgzmKa6OvtKw_jZXa2WufbJ8,5462
25
+ catocli/parsers/mutation_accountManagement/__init__.py,sha256=qmNm8b9I1zs5OyqMThfGhtVkg-E_zRkq33AbKx1XSrc,8430
24
26
  catocli/parsers/mutation_accountManagement_addAccount/README.md,sha256=5PNnx2oY8JmoxEdJekUdmvsHnBccdaHeCYIVsAYXNBI,814
27
+ catocli/parsers/mutation_accountManagement_disableAccount/README.md,sha256=M0138QmALb9o6Z4j2R_CKhi1XfkSBVZXLc5HKSZFmH4,605
25
28
  catocli/parsers/mutation_accountManagement_removeAccount/README.md,sha256=4lVZob-D19lJPP3soJJI5bkEXO19HIMPks0_PSzhYb4,597
26
29
  catocli/parsers/mutation_accountManagement_updateAccount/README.md,sha256=dkxUIlgMmOSVBPWhBLFIjpxa4m2CJWDTiOJHi4moRhQ,763
27
30
  catocli/parsers/mutation_admin/README.md,sha256=YzXrmiZf8gPKDd2ii__NztKfYxReu3MBOmswR3BGQHk,201
28
- catocli/parsers/mutation_admin/__init__.py,sha256=wUexVOgVYr3iVcHvhAgYvNiCATeSewwhIKXgokuxlKY,9944
31
+ catocli/parsers/mutation_admin/__init__.py,sha256=OPLBsPWCmCvxfQ9TCsDI3NK9g0jFwn9qID-yyLkBieA,11762
29
32
  catocli/parsers/mutation_admin_addAdmin/README.md,sha256=GpCklvoqnHRMVypon97wTeHPSd0r9VJ_KLS0Ec2fDzw,833
30
33
  catocli/parsers/mutation_admin_addServicePrincipalAdmin/README.md,sha256=xB67f8wZpaxxW2CevBgHHdcbDErr1v5gZP5Nmoxe1S0,952
31
34
  catocli/parsers/mutation_admin_removeAdmin/README.md,sha256=NUAXsyAcIrY-mUZ40wgkfZruR4U7tMw0SBNlurEdrxM,579
@@ -33,7 +36,7 @@ catocli/parsers/mutation_admin_removeServicePrincipalAdmin/README.md,sha256=t3rh
33
36
  catocli/parsers/mutation_admin_updateAdmin/README.md,sha256=CNhqcddETJfP5U1uMISgQWI896SwSUUUUczChuOzvFY,883
34
37
  catocli/parsers/mutation_admin_updateServicePrincipalAdmin/README.md,sha256=0JVI8useJOA69krbeuzB_5KkXDDMHA-ZBfornKA9nvI,1022
35
38
  catocli/parsers/mutation_container/README.md,sha256=thgVBv4Wjfs6eccdDxPd4oqHh6YjiAAcd1Vp4QRCZPg,217
36
- catocli/parsers/mutation_container/__init__.py,sha256=Bwhi76wb7Ilp9TBJfFHSBn_PCcVmAUjdc8q525bp-2M,16068
39
+ catocli/parsers/mutation_container/__init__.py,sha256=ZSC3BxoGclzkr4NnZHOhEfT5Ytu2h7yLrjJvQYAfnCk,18911
37
40
  catocli/parsers/mutation_container_delete/README.md,sha256=A9CSkz0d42HHTTNZD15QMt6GyHfEFzUXYF0mTzYOGv8,660
38
41
  catocli/parsers/mutation_container_fqdn/README.md,sha256=-by3ltzmraHq2LUqhwN4VQyfSB-it7eMMdQRMI1EhtI,227
39
42
  catocli/parsers/mutation_container_fqdn_addValues/README.md,sha256=X36Xj24O-ikQrSRL0GpyWUwsFwE7DTJiIDWgD524vpQ,786
@@ -46,21 +49,35 @@ catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md,sha25
46
49
  catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md,sha256=4BLfuecQR0HmhGQPqnJKP16MV451a6E4rRtXTvmMB2c,977
47
50
  catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md,sha256=KzDDdw8flao90elBrl6JUC0eKO8Zp8Iq2axsQVMLh40,1003
48
51
  catocli/parsers/mutation_enterpriseDirectory/README.md,sha256=fIdjVaNySpOe7HRbaoEkS6wqpkgZ83NxhOxLVebpF2I,257
49
- catocli/parsers/mutation_enterpriseDirectory/__init__.py,sha256=riu5N2DG9R-9IJkHfS5rdtxMYx-ONvj2VF23Ah7_3ig,7388
52
+ catocli/parsers/mutation_enterpriseDirectory/__init__.py,sha256=FG4LL_k-cTHgmCeKWWg43z5yG62nhuncgl-YM-1_AS0,8684
50
53
  catocli/parsers/mutation_enterpriseDirectory_archiveLocation/README.md,sha256=8TKa4v0LM9vj4NcOCsHpr30le85Nq5GECTXmQxvq6w8,747
51
54
  catocli/parsers/mutation_enterpriseDirectory_createLocation/README.md,sha256=mC6ybGi6SnDuhHPg02qcaY1YNCGWHZPrO0HYLxXRbr4,1188
52
55
  catocli/parsers/mutation_enterpriseDirectory_restoreLocation/README.md,sha256=848fuPW9BVpNJAY-8jsLdsEIDsCBtkrVTl8EIwHq8qY,747
53
56
  catocli/parsers/mutation_enterpriseDirectory_updateLocation/README.md,sha256=PE1jNbC-a_RyXgpyIH3oXqCZbgLlS0_O7XAvectFWkg,1198
54
57
  catocli/parsers/mutation_groups/README.md,sha256=8y6Q-dzOtCjqnRL-XVF1R6NkOQIUOWEME6bVsRb2yg4,205
55
- catocli/parsers/mutation_groups/__init__.py,sha256=nQW8_zz7snyF9Emi8sKKVbj0lbG7NgsjieUdwocLeeQ,4917
58
+ catocli/parsers/mutation_groups/__init__.py,sha256=lPys5gIMU2H--LjIPUKZ0yx_YKu4D1bw7Lms-WBhnTk,5790
56
59
  catocli/parsers/mutation_groups_createGroup/README.md,sha256=Lc8GUV8JxbGpNONFcCVBTSTxBxq9MGuxAoH1JtZO-g0,1167
57
60
  catocli/parsers/mutation_groups_deleteGroup/README.md,sha256=NJ9fmKbLUJ-3Qt9JXxlAuKt3Nvrb7cOrMRMnAne9W4A,1076
58
61
  catocli/parsers/mutation_groups_updateGroup/README.md,sha256=0SQ0Y6EaQN2G_7hXVAHB1l_vLpJrHMa2raUwgC3vwzg,1212
59
62
  catocli/parsers/mutation_hardware/README.md,sha256=P5hGMibPxeZcOptPmI2UcYjN0zoeXmRjPBHnXX5SoZs,213
60
- catocli/parsers/mutation_hardware/__init__.py,sha256=PhGqrm7W80xhjo9gJlqW_o6e2daC-McizPoKh6_IiB4,2056
63
+ catocli/parsers/mutation_hardware/__init__.py,sha256=Nv7ueqxGZ62ettT1rmd9LABVLVV2mIoOLaGS78oJQzA,2373
61
64
  catocli/parsers/mutation_hardware_updateHardwareShipping/README.md,sha256=6qK1LQhgiQoemP3-hY6V8fEdcZ2hg8zhC9yMglZ2waQ,1146
65
+ catocli/parsers/mutation_licensing/__init__.py,sha256=qEwxPosbxLZxrqlv7O4YFh5__z_8Udq_4W3iL7_IMUA,2410
66
+ catocli/parsers/mutation_licensing_updateCommercialLicense/README.md,sha256=62otL-eGH29CGn6f3rj6-ToRRDc50uzRL9ALWAzbMy0,833
62
67
  catocli/parsers/mutation_policy/README.md,sha256=xYEidHz8nQH6ZoK2mPbaTD5sC3ARMC0fPLUm6FiuC2E,205
63
- catocli/parsers/mutation_policy/__init__.py,sha256=iExjJ97SacSZLjudkQy3o3M2MSAZRfpAYPYEAYEXyHc,169591
68
+ catocli/parsers/mutation_policy/__init__.py,sha256=I3i5yMKyYMz7L30FLk47oel6piY8Wo4AkenavcqPcXU,226776
69
+ catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md,sha256=qSXs_HFj3nWCquv1Z1vo1AGvcw98M_1h2w8tsOGyM5o,1246
70
+ catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md,sha256=h0BLexQpaAbUXCEcF3AxVxh9SvypwssdJNCzQUIN-kM,1106
71
+ catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md,sha256=pCFJCnIaiedgrv2qQQGM9OSxvL8UUzOelSYphgJDo6Q,1132
72
+ catocli/parsers/mutation_policy_antiMalwareFileHash_discardPolicyRevision/README.md,sha256=cBp-5EZk18fA0CTt9mkPlsKRrmfAlKR9la1JwGBB62M,1115
73
+ catocli/parsers/mutation_policy_antiMalwareFileHash_moveRule/README.md,sha256=sldV3pFaI5-Ow8dwjLPk17Z-FbNteCFcZeUsmnq1w4A,1040
74
+ catocli/parsers/mutation_policy_antiMalwareFileHash_moveSection/README.md,sha256=BIkD_tv1vZwDIxgZ_AUDtHyXt2kAlnk4FbylayQQUwQ,1082
75
+ catocli/parsers/mutation_policy_antiMalwareFileHash_publishPolicyRevision/README.md,sha256=JzRfJcdGHwXFjOT3V-cXLhqyuNuMYQrN4TFkkbtG1vc,1144
76
+ catocli/parsers/mutation_policy_antiMalwareFileHash_removeRule/README.md,sha256=xfmh61GVbRkFeG2hrhzAunRiiMCdFTGxsmNQRaatkKc,1040
77
+ catocli/parsers/mutation_policy_antiMalwareFileHash_removeSection/README.md,sha256=vw_kfo8yel-Tl0NNsCOXtDsvobrZgI208vnwtb7FrOI,1037
78
+ catocli/parsers/mutation_policy_antiMalwareFileHash_updatePolicy/README.md,sha256=mnenMpEhP8BdowfmfKL3Lu7zq4DRi3lTdZVdnC_Gfs0,1072
79
+ catocli/parsers/mutation_policy_antiMalwareFileHash_updateRule/README.md,sha256=c8WneA0DriYlZKWV79gfA_OiMZieRW5y9zyGD77cJOM,1232
80
+ catocli/parsers/mutation_policy_antiMalwareFileHash_updateSection/README.md,sha256=q0lQCkZbcwidy21-otosgCbH5fWKJlQ-nuGNQpBWYkQ,1086
64
81
  catocli/parsers/mutation_policy_appTenantRestriction/README.md,sha256=lg6x4zksQ38j_TjnhrajdfiMGva2DnG5evsPySAp27g,282
65
82
  catocli/parsers/mutation_policy_appTenantRestriction_addRule/README.md,sha256=ZKLWXwWuEXswnI0-P7QXnQIBsvaYFoo58a5ZIdJ8fuc,2076
66
83
  catocli/parsers/mutation_policy_appTenantRestriction_addSection/README.md,sha256=MxYCCZYarmXnDhy7gsOd9hauM2HR4lUHcumDmpAxuIY,1118
@@ -166,11 +183,11 @@ catocli/parsers/mutation_policy_wanNetwork_updatePolicy/README.md,sha256=f0QkS7m
166
183
  catocli/parsers/mutation_policy_wanNetwork_updateRule/README.md,sha256=wfIbMcFrj6tA3TwRcPY_vAu8mRay9IKxXZG28BlV8vY,4844
167
184
  catocli/parsers/mutation_policy_wanNetwork_updateSection/README.md,sha256=TlFRwcn5d7TFGR2spDV6IB1DbfrnUH6ybADv9cuR6sM,978
168
185
  catocli/parsers/mutation_sandbox/README.md,sha256=qyb-LJe3Q2gqwkcmC1K7OU3gvasWKcc2-kToB_5tcQI,209
169
- catocli/parsers/mutation_sandbox/__init__.py,sha256=kQYxfmpoe6yu68rVsH-JqG68ylUgv2x8qYQwSgMEhfw,3428
186
+ catocli/parsers/mutation_sandbox/__init__.py,sha256=bkapPFO_xss9Oxi7FsK6O3u6RwlCi5rpvFmInUD4dZc,4014
170
187
  catocli/parsers/mutation_sandbox_deleteReport/README.md,sha256=xC3l0fwf_wLCxkPcmrcGVAA4FZcFvVSQwoL28Ul3HTM,658
171
188
  catocli/parsers/mutation_sandbox_uploadFile/README.md,sha256=bwxYdn-caM-wplOvEpZNeFN3mQZWuBYRGWJctrfFplo,634
172
189
  catocli/parsers/mutation_site/README.md,sha256=VGtw4II0zTDPC4PyWohkkH1gcsbPtbNWH6FIUJK48Ew,197
173
- catocli/parsers/mutation_site/__init__.py,sha256=imcs76Jyp8S-9aPTKBvz5BTllYY9PoYO_J-6UlJB8iU,58964
190
+ catocli/parsers/mutation_site/__init__.py,sha256=S54jymDJtTkjLBeXhZQaq9FbPzfp-JugS9W4ISF6y68,70030
174
191
  catocli/parsers/mutation_site_addBgpPeer/README.md,sha256=Dq0hUzSCCqc36_QYytZFchA5X8gxASHg-9OlZaWOAok,1684
175
192
  catocli/parsers/mutation_site_addCloudInterconnectPhysicalConnection/README.md,sha256=zTY9mrCNMXt6gBtB2sABZib5xA3wEBtGZzNFCvKsQ7w,1257
176
193
  catocli/parsers/mutation_site_addCloudInterconnectSite/README.md,sha256=2uc4RmZl9CSBMTw__-hWGt_SU8SKVsj6KK6gAMUTW18,938
@@ -208,7 +225,7 @@ catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md,sha256=Z0nau-F9
208
225
  catocli/parsers/mutation_site_updateSocketInterface/README.md,sha256=_r4eqXifSXSy1TGCdHschRq0mMy3JpifXeiiWp3LMNw,1883
209
226
  catocli/parsers/mutation_site_updateStaticHost/README.md,sha256=9h0YacKMzsb0pqtMXVNOaZR51LtFoMTBAbqr6JKHzPA,767
210
227
  catocli/parsers/mutation_sites/README.md,sha256=0JLG9cOfCCFgUxvhRiAYW7yPfFYL0-I3JDkI2SYqHE4,201
211
- catocli/parsers/mutation_sites/__init__.py,sha256=HJlJWNYxb1_kWFkS4FPgkjTrzhdAc3AMdKt4hMb2R-o,59439
228
+ catocli/parsers/mutation_sites/__init__.py,sha256=BUE0_dX6gqD0Chn9a7SM8acIcQoQAakQxpviLGAYMf4,70577
212
229
  catocli/parsers/mutation_sites_addBgpPeer/README.md,sha256=mfVTB5iEWPKFLPJYipqE56_-e2nPF7p_mYVpf_rTIhY,1693
213
230
  catocli/parsers/mutation_sites_addCloudInterconnectPhysicalConnection/README.md,sha256=P2z0iv4_YQHigyK6_MQNAkGuShzaR0EhWwYV7rPrvxM,1266
214
231
  catocli/parsers/mutation_sites_addCloudInterconnectSite/README.md,sha256=IgGOLC5vjr8O70mb3j5D9RBd6qRWSC_dY9zDyMz1hJA,947
@@ -246,60 +263,61 @@ catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md,sha256=kNmNcXY
246
263
  catocli/parsers/mutation_sites_updateSocketInterface/README.md,sha256=_MN0v1nFkhwgasjsrGoxFkYSOOIik6BoiO7otRcKWVM,1892
247
264
  catocli/parsers/mutation_sites_updateStaticHost/README.md,sha256=eYYBEtpddvGHv2GDNugyf-oXv3dfvHKN9MM8czE2s38,776
248
265
  catocli/parsers/mutation_xdr/README.md,sha256=-mc5BsFEpC7F6aSm0PZrOGONdJd-RroLGmiwshVGYmU,193
249
- catocli/parsers/mutation_xdr/__init__.py,sha256=mqYcO_K_QPka-uAkyCv1tC7axC2he-yONLTw6H044-E,4974
266
+ catocli/parsers/mutation_xdr/__init__.py,sha256=7SofaDOgFxPWknk9ODEPalf2K08BWTWrvgqGA943soU,5859
250
267
  catocli/parsers/mutation_xdr_addStoryComment/README.md,sha256=8ADrRTxnXi5J0LeXw8KWFsMKZuFsfZxqkyBcp9zadc0,669
251
268
  catocli/parsers/mutation_xdr_analystFeedback/README.md,sha256=uy2tf2WEi0JPaK7t0zBLubSjThGRq39FzzWp7uKLFvw,852
252
269
  catocli/parsers/mutation_xdr_deleteStoryComment/README.md,sha256=JIJH6qeLb2VcFRuv-948GGv2V5TYxBnX5Nl19XMEtl0,706
253
270
  catocli/parsers/query_accountBySubdomain/README.md,sha256=ICwfyZA8_hvzuBsPedgZqrqtBhYl8e5YxTrDamXSTgw,613
254
- catocli/parsers/query_accountBySubdomain/__init__.py,sha256=V5PCK7rnXVdBTJPao_oSevJ1byBUhIGc7gfUA8tP1xQ,1607
271
+ catocli/parsers/query_accountBySubdomain/__init__.py,sha256=FxmpiwqNI2Jx5cX6GcjAzyorjuoZi1eq-dNHEzu5LbA,1892
255
272
  catocli/parsers/query_accountManagement/README.md,sha256=PCneR3ngsl2L-hE_J5FeUg1mtnlmQRzI_0exFt6u4qM,458
256
- catocli/parsers/query_accountManagement/__init__.py,sha256=w3JesOZT759TrsyO_veqqeYFix43r-kKiltDUZcyxZ0,1593
273
+ catocli/parsers/query_accountManagement/__init__.py,sha256=ccdmH-PJRacFagPCH_3N7S0EpRE6RueXoXf_o8z7lmI,1876
257
274
  catocli/parsers/query_accountMetrics/README.md,sha256=FcfmGmjhqffRJqzteedxHv0f4oSQYF_4hyKJbfW8BR4,2903
258
- catocli/parsers/query_accountMetrics/__init__.py,sha256=4yeMngpoxXD97_AaD_Gjdsx19vTCM49b6eD-CXwMYIo,1551
275
+ catocli/parsers/query_accountMetrics/__init__.py,sha256=ostFEHjIVu8SyfAznTqaCYOBFlWePIoDCy4_2dsUm18,2275
259
276
  catocli/parsers/query_accountRoles/README.md,sha256=zN1tuCVRPQ6inlkzOWbBHoR7CLTF9jfymK9kZIv8Qr8,580
260
- catocli/parsers/query_accountRoles/__init__.py,sha256=xyetB-3jAFfQBJPTtriD-_PCeVtnbjVLDrw1cNAxzew,1523
277
+ catocli/parsers/query_accountRoles/__init__.py,sha256=fiMS5G6cJkspyaxWzG2fviU7LKW9UmEJhLUPtX0bu-w,1796
261
278
  catocli/parsers/query_accountSnapshot/README.md,sha256=zmKqh5qOv6I71_YJ2BLTNPgsazS_yVwGE5n6ymJFS4Y,761
262
- catocli/parsers/query_accountSnapshot/__init__.py,sha256=J6SCuKyReDZ2T8LPH9LoYlfdCk5Tp2GJoxbY34mBWpU,1565
279
+ catocli/parsers/query_accountSnapshot/__init__.py,sha256=fpj2U1yClvx8S36uXRhSpM93glqXiqxrl7UtNI41eDw,1844
263
280
  catocli/parsers/query_admin/README.md,sha256=T8N9Tqq2bi9GWbu6Bt-gb67LAfrSEuLMIt9ZDvFwUKg,441
264
- catocli/parsers/query_admin/__init__.py,sha256=rVPN5H-zqF-NnUriqVwwx1eLLUpKnQARQNYh7sLpgNI,1425
281
+ catocli/parsers/query_admin/__init__.py,sha256=omlNvR3TMxx2G1PT5MqM-njjHlClIIMj28EnU4TY4JQ,1684
265
282
  catocli/parsers/query_admins/README.md,sha256=PH8CG-6aQk_h2MbxHowhcacyl-YYFNdlwtrEpzhL3aA,700
266
- catocli/parsers/query_admins/__init__.py,sha256=ZhzgceZ9BND5IMURklw6BZuk6fQAw3W7GdhqJ9scHqg,1439
283
+ catocli/parsers/query_admins/__init__.py,sha256=xqeKrTA3B29e-hugw8iGQRXID_1ajePsZSerqeQpdGQ,1700
267
284
  catocli/parsers/query_appStats/README.md,sha256=O7tAfKR3AWtPRfDlyk_YmXhZ3zNaKc5wAfiids1ZtHI,1380
268
- catocli/parsers/query_appStats/__init__.py,sha256=msd4BG0voNSmPT8kgqLqDBdtLGx7270_NrGgTqeMDuM,1467
269
- catocli/parsers/query_appStatsTimeSeries/README.md,sha256=iXWSz7pYgc0mrDUy2sR2R1-94bZ3e_3AEXbG_X04OOU,1876
270
- catocli/parsers/query_appStatsTimeSeries/__init__.py,sha256=t99o69cbm8MfURzbjhaBPhImX8PJrFqv_FTjS1Cs8EU,1607
285
+ catocli/parsers/query_appStats/__init__.py,sha256=0LfGoIUBHgJS6XP3gWTg6hL7gUmO0sJ0NFiqD0pzHFM,2161
286
+ catocli/parsers/query_appStatsTimeSeries/README.md,sha256=-bphmDp5sQo1o8vn7pdl-NOEv2O3Ifn-DmCl1nUGouo,2405
287
+ catocli/parsers/query_appStatsTimeSeries/__init__.py,sha256=LymNLDwJVeVTl-OfByVVpTs-uWsLORseY1uj2KherwI,2351
271
288
  catocli/parsers/query_auditFeed/README.md,sha256=OsNUVzjaryU2Mk0F8Bu_y_ZVSiCEvVnkLXNNKdpyeoA,1092
272
- catocli/parsers/query_auditFeed/__init__.py,sha256=fB9H6q10ncIQBaP1xlVgWzialzfl8Po1Xyv4FlmnXsU,1481
289
+ catocli/parsers/query_auditFeed/__init__.py,sha256=j7_nQpjY6-8XEsW6jbyLniM2f_8rJz2GeEE9nEmPGr4,1748
273
290
  catocli/parsers/query_catalogs/README.md,sha256=oNb8p4kUZwRy82NN0ZNEGGAfgmQRYUKznYfp4stWgWU,2163
274
- catocli/parsers/query_catalogs/__init__.py,sha256=VoHRBllvVQZSMwXE-VFn7oBHw1HbDPqTLeYhXOEoUUM,1467
291
+ catocli/parsers/query_catalogs/__init__.py,sha256=ZJgxEle-NbS5jMSDgZvIUS1r9SzTK1t1lDAgqqo28Rc,1732
275
292
  catocli/parsers/query_container/README.md,sha256=-mokajbi3-RfP2x45_4IzJ0TCyFFqxJ7YSkSE0xWPRA,1633
276
- catocli/parsers/query_container/__init__.py,sha256=GRIBp7DYBSlVH1mGS9RY7ZvBXYz2f7hht-42tLMi36A,1481
277
- catocli/parsers/query_devices/README.md,sha256=2A1ZtE1-Qi7KoEss2OQNl7-Azsc3uzsq0dpUcippHlo,4284
278
- catocli/parsers/query_devices/__init__.py,sha256=ux-xUst3RgLv5zWL6jccf9I7c-Atyjvv1GYAu8zvAcA,1453
293
+ catocli/parsers/query_container/__init__.py,sha256=U0y_k2vVZo04x4CZWzYXkutx9bYR3Y7v9a1reVDdDz4,1748
294
+ catocli/parsers/query_devices/README.md,sha256=dhYaYQAJ9Rq9w3GZ1iWxEDtgUk2z_J4r9Ja75X4j7vE,4429
295
+ catocli/parsers/query_devices/__init__.py,sha256=dfPZG9HO6MReLxVKY_PTia1URmAT0TijBAdkO9aC_iI,1716
279
296
  catocli/parsers/query_enterpriseDirectory/README.md,sha256=CLBqHWiDturhxV1FQAeOEt30Tc3GzYmlinw0USMJcyk,1332
280
- catocli/parsers/query_enterpriseDirectory/__init__.py,sha256=9yjlJ4LZHobIJNnWDQv349iEOdiIBe42_viVAE_1Fk0,1621
297
+ catocli/parsers/query_enterpriseDirectory/__init__.py,sha256=AIm-gPIFqZbLpEJFy5JKVNpqmbIH5eyz0YBNW-Drtkc,1908
281
298
  catocli/parsers/query_entityLookup/README.md,sha256=_FmE2YxEelTIBfQGeQc2IPVBFw-Q7Kznn6ft2UFD058,2434
282
- catocli/parsers/query_entityLookup/__init__.py,sha256=L3dkVR3yikD7dHSP0Lpmjvyc1sCJB4CenOafnPCErfU,1523
299
+ catocli/parsers/query_entityLookup/__init__.py,sha256=HJ6h541hogy9ZLogzgeN-eSG0mDAhqnuQcIl8n7BuG4,1796
283
300
  catocli/parsers/query_events/README.md,sha256=P7t5W9FJG4ZBN1y9GS4yIhthqzdFMyKup87XfsW_65M,1055
284
- catocli/parsers/query_events/__init__.py,sha256=hIZGKjrVSeUQ5Xe3TvGArpXJZM-ccr9eXV_Ya4-_6yg,1439
285
- catocli/parsers/query_eventsFeed/README.md,sha256=HynYhp7nGHiHk2bWpSTByWIbbLgDHIAsnjh80V1yOi0,5409
286
- catocli/parsers/query_eventsFeed/__init__.py,sha256=fLIqdQc6az0B2A1hoF086kQYvre4WYkhFsQaEYNaJ7s,1495
301
+ catocli/parsers/query_events/__init__.py,sha256=y1GQe4oHwIkYvcqMII08u2iydh7_uDzAkBtsAa-fsJk,1700
302
+ catocli/parsers/query_eventsFeed/README.md,sha256=TUmWl3QsFCW_F1TIrhGCyPd_Dna-8k0wggWYjJtyUbE,5496
303
+ catocli/parsers/query_eventsFeed/__init__.py,sha256=JYBWgM6j0ROxxCZXez3USzyscU_MsKkMczZUOAVmfws,1764
287
304
  catocli/parsers/query_eventsTimeSeries/README.md,sha256=a4V8m8e7HU8ossSEo8ULzU597WHGAKVUpWRhqv6Vf48,1453
288
- catocli/parsers/query_eventsTimeSeries/__init__.py,sha256=WSnyoYVffU_vuDWqFlRvNIFxGPCwPj0cA0uBIAbOjxw,1579
305
+ catocli/parsers/query_eventsTimeSeries/__init__.py,sha256=3xcmto4Ty9Ix24MVQ-CyjN33GEuu-K2vFJyadNyhVTc,1860
289
306
  catocli/parsers/query_groups/README.md,sha256=RJn7PwNMf_Iy_G4ZegsIBH3zXI-c7dtVmW4BTqgQUC0,193
290
- catocli/parsers/query_groups/__init__.py,sha256=-7oSW6Fe7Rhdq1AyWllnIB_tIXLSG-GjL1omeaBhX-s,5006
307
+ catocli/parsers/query_groups/__init__.py,sha256=tMcWBXYhh_2DcqeEoIgkg3h7CWy-rvJanx9fQib1rs4,5857
291
308
  catocli/parsers/query_groups_group/README.md,sha256=7S3De2L8RRXr8DSCYB5ft8w04ylktutPtzgba4IcvoA,210
292
309
  catocli/parsers/query_groups_groupList/README.md,sha256=iHP_UkKznRyvM6xLdhh8Rneex_oapx8aossjY6O_-t0,1786
293
310
  catocli/parsers/query_groups_group_members/README.md,sha256=IvwhrgThMsym0RrHurgiMF4OhFT4AdyRp60Zu2s9nnY,1064
294
311
  catocli/parsers/query_groups_whereUsed/README.md,sha256=w1nn11Lf9w5Ynml18enpZ5_PUX0BKZcycYiAOjOgXmg,587
295
- catocli/parsers/query_hardware/README.md,sha256=7oCSYVPG4btB0iXIMZLRNYzsl-2PbiNqE3mfZcZPKHE,1893
296
- catocli/parsers/query_hardware/__init__.py,sha256=ZQQ6E53uBbfacK4V4GXEm0SbvXJYnfhnl2Xasa-2EC4,1467
312
+ catocli/parsers/query_hardware/README.md,sha256=yLuieHpGdf40j6fIcmmaL4mm1_oZLoC-_nQqwkr4tww,1993
313
+ catocli/parsers/query_hardware/__init__.py,sha256=ifkfM7uGUl0VgJJXMNZngvpZU9ElT1qMOVogfd2zDXg,1732
297
314
  catocli/parsers/query_hardwareManagement/README.md,sha256=wdpJtp-gdAdiry1mV6C2FeXEwlS-uL-6sJM0Hy9q64M,1156
298
- catocli/parsers/query_hardwareManagement/__init__.py,sha256=7L9Xm1YcoH8iZdLWRdrYKuVF1eRyoTLOA2NyP1n_yPs,1607
315
+ catocli/parsers/query_hardwareManagement/__init__.py,sha256=y8BAHpNZvV7D8cxV4kWZQkqG16EzN_i1W5Tnm75vmDg,1892
299
316
  catocli/parsers/query_licensing/README.md,sha256=MtFvjpnYpwygXmkZdXWm9NlXt6knabyViKIQ-xlBm4w,394
300
- catocli/parsers/query_licensing/__init__.py,sha256=lY-0NS164cTSsRLcIc2Eev2MDUyZ_lAAPWiWR5pUeQE,1481
317
+ catocli/parsers/query_licensing/__init__.py,sha256=eivnVJyBtptI2B_I5f890blnVCXE18utiMG4Xr1vfQI,1748
301
318
  catocli/parsers/query_policy/README.md,sha256=qSG_DLdWzlx6eG8uxVxHtkdJN3JsXH6vumP46vX-sEc,193
302
- catocli/parsers/query_policy/__init__.py,sha256=cSvbW-xLJECpx3vw1jqfHc_V6hHLKfYVnxD-nFNyNnQ,15663
319
+ catocli/parsers/query_policy/__init__.py,sha256=wf28GZmE2MqIDGE4U-eomMacksnb1pfDcqmpWx_X0A4,20430
320
+ catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md,sha256=XGliBVPNgwpfTFSQ6-UP5CLs8rYnCrLnwBkEaukldBQ,815
303
321
  catocli/parsers/query_policy_appTenantRestriction/README.md,sha256=D0kSY40EVvu4guWas_1JUyJ6VMOEM020qTsUBvo39Do,270
304
322
  catocli/parsers/query_policy_appTenantRestriction_policy/README.md,sha256=1KGcuRtvp6HZo1PVKrfRcU6v0jHLTnPQjcVajIhWmaU,827
305
323
  catocli/parsers/query_policy_dynamicIpAllocation/README.md,sha256=Z3YtV-Kdd_p-_LMDjbqiSKRtfuK5e8v8FspXxhmyDDk,266
@@ -317,15 +335,15 @@ catocli/parsers/query_policy_wanFirewall_policy/README.md,sha256=6zatpjNRgUHCWVE
317
335
  catocli/parsers/query_policy_wanNetwork/README.md,sha256=jOWnBNTRqIMEVUpM9QT2kQFZuqsDGl7H3_FEz5iTi24,230
318
336
  catocli/parsers/query_policy_wanNetwork_policy/README.md,sha256=teyC0KgjLOhdZqwgc8wQqE9wMojlqwkvPJBxrhR8Qas,707
319
337
  catocli/parsers/query_popLocations/README.md,sha256=9y71T-byC6DFntm6GO19oQ1eiE1LLSYT1qWBUJ40bYg,1059
320
- catocli/parsers/query_popLocations/__init__.py,sha256=JvToiJWGOB0QtopC5hIEXjJvWh1-RID7tKPQxoabX2s,1523
338
+ catocli/parsers/query_popLocations/__init__.py,sha256=OPTdhsJT1ud5ln1Lmgm5WqUwEFyQQKqtuvEcHkZbHcs,1796
321
339
  catocli/parsers/query_sandbox/README.md,sha256=HmXg__hekoYeGVqDi7QLpFU_Ha3G2mUmWt-c_gc9IjI,1123
322
- catocli/parsers/query_sandbox/__init__.py,sha256=EUIU5biJtMgg37NCqyzRnlOoAhbLGpZgphOK5Kq8vjc,1453
340
+ catocli/parsers/query_sandbox/__init__.py,sha256=3HC1smuxsEB4aET3vvfuJ62MPiKuvRQWN6mvgpNxifU,1716
323
341
  catocli/parsers/query_servicePrincipalAdmin/README.md,sha256=oloDw1oP0K9QUz1SOZpWOEIzHt5opdSepHbpexlN1hc,585
324
- catocli/parsers/query_servicePrincipalAdmin/__init__.py,sha256=_occZhWyJI3SO1GUL4BHCfI6V943UOr5G3kEqBHMKWc,1649
342
+ catocli/parsers/query_servicePrincipalAdmin/__init__.py,sha256=s0c3hyDK7RVU6dE33NeQHtehD57T5lOmjoI9HcCgrnA,1940
325
343
  catocli/parsers/query_site/README.md,sha256=ivPBcVgORWux0OMx5qujs4tiM_dhxXawVHxTtARHEws,185
326
- catocli/parsers/query_site/__init__.py,sha256=AN8df7htEpV-YFltMKXqrD0zVswLwh9XsHEM48y32fQ,14792
344
+ catocli/parsers/query_site/__init__.py,sha256=Pu408ojCIdXlT6R1kVTtZwuRwue0n2xJWdAg8U2QmyA,19373
327
345
  catocli/parsers/query_siteLocation/README.md,sha256=FjUgqoDeOCkeIzJbvZCf0norvIKFcNTT1y2BLVe8uPE,1503
328
- catocli/parsers/query_siteLocation/__init__.py,sha256=p8tyC57QOv-isir4ZAoO53iQwG92O331Vidk3xdJEqE,1181
346
+ catocli/parsers/query_siteLocation/__init__.py,sha256=0rHDjCeawlvCSizMz2OEflksvrpwkN6b03OkK6NRyeY,1454
329
347
  catocli/parsers/query_site_availableVersionList/README.md,sha256=iWLcoL6nCo_O1_z3rSeL83pY97G-GGa1YoxVCRN939w,711
330
348
  catocli/parsers/query_site_bgpPeer/README.md,sha256=qEvWfpulr1_j54kE7cCZJKmTwlC_WIevDDUttTapohc,557
331
349
  catocli/parsers/query_site_bgpPeerList/README.md,sha256=coSoSLKPDlP7x_f4NV1QQRbMWmgaxX9POMA1Oz7bfXQ,613
@@ -335,19 +353,20 @@ catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md,sha25
335
353
  catocli/parsers/query_site_secondaryAwsVSocket/README.md,sha256=4F2vOWF99_vJJaLZZDUd0gNyfm7hED_L2vz_Koa2pGM,614
336
354
  catocli/parsers/query_site_secondaryAzureVSocket/README.md,sha256=lCp3IJruaArKNbpa2m8P3SMRdrcoAuFG4qI-nba3reg,632
337
355
  catocli/parsers/query_site_siteBgpStatus/README.md,sha256=AhP5rU6wefGUtSGbYzmQm-DdiynIq9dwL0nwMlRWUeE,637
356
+ catocli/parsers/query_site_siteGeneralDetails/README.md,sha256=aiOWsjSOLMyxnB1h6bBQVh-ZkYNQCbyDihbGHDzXwv8,647
338
357
  catocli/parsers/query_socketPortMetrics/README.md,sha256=_mzojTSaQgGSwCNarxX2cyQncqjFdqvvaGO1un-wHv4,1274
339
- catocli/parsers/query_socketPortMetrics/__init__.py,sha256=Y1ciaTRMHiJ5RL5USZ2M1nYtmj3pcaGQ1cgBi_h5lqs,1593
358
+ catocli/parsers/query_socketPortMetrics/__init__.py,sha256=kvts-yP9iu5j_vTDquPE9VXDT5LLeHc19SzX1aSqNKc,1876
340
359
  catocli/parsers/query_socketPortMetricsTimeSeries/README.md,sha256=ocq99K9qZyRDLzAqqm4-Qw3lNonWl3GjdCWwR3jYbvs,1642
341
- catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py,sha256=li6VFNA57Wyz_Uq75jGXF9muZaudTZ3Lcj6i5PzJL1U,1733
360
+ catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py,sha256=LWF9whmt70rL1sDuMO66rLx-2K7Fbw7dFAL9Y73tCEc,2522
342
361
  catocli/parsers/query_subDomains/README.md,sha256=eeyYhxYhmW3yvH8zMVv6Gwn0Oe6yWF7o7yrFTimB9hA,654
343
- catocli/parsers/query_subDomains/__init__.py,sha256=y5idyzgL4vLvRY8eeXSFTC4x4n-dH3k5RpYQAXPQgIU,1495
362
+ catocli/parsers/query_subDomains/__init__.py,sha256=bc-RtQKrgfmU5GaMQyy5LxdjXizvYPAO9KkFxkQJiFw,1764
344
363
  catocli/parsers/query_xdr/README.md,sha256=bmaw_sVCQgN-3hiyLtbB4xlsXKxHfy-vbnt1qWFZ4QY,181
345
- catocli/parsers/query_xdr/__init__.py,sha256=X12Ftw84ajxTFbegSC9NzeOmuVl_9efLk6f6K9aeQE8,3070
364
+ catocli/parsers/query_xdr/__init__.py,sha256=NVvdLr7xYMKL1Zz_4jRqbJbDEfbuzmA36orwPQz-uyQ,3608
346
365
  catocli/parsers/query_xdr_stories/README.md,sha256=eQJ81YiergQEhABkxi1yyzE_UXtS0FSJxWTZP2MlB3c,1633
347
366
  catocli/parsers/query_xdr_story/README.md,sha256=_JYyMJ8GYOZ1dv61QqLyhVoEubXAm2p3QqFKdfohQOE,813
348
367
  catocli/parsers/raw/README.md,sha256=qvDLcg7U12yqacIQStOPtkqTsTLltJ06SSVmbqvlZhY,739
349
- catocli/parsers/raw/__init__.py,sha256=nub9Dth2s9WMXIlKA_BQKetooLjDYg9pREy01G6Rnb4,1107
350
- catocli-2.1.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
368
+ catocli/parsers/raw/__init__.py,sha256=fiSzQzNSG3vje-eEXuOcdhuL8pyavkufocOJumjdFXs,1356
369
+ catocli-2.1.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
351
370
  graphql_client/__init__.py,sha256=2nxD4YsWoOnALXi5cXbmtIN_i0NL_eyDTQRTxs52mkI,315
352
371
  graphql_client/api_client.py,sha256=2Rc1Zo1xH9Jnk1AO68kLSofTShkZwSVF-WkVtczfIc4,5786
353
372
  graphql_client/api_client_types.py,sha256=dM3zl6FA5SSp6nR6KmLfTL1BKaXX9uPMCZAm4v_FiUs,11569
@@ -357,6 +376,7 @@ graphql_client/api/call_api.py,sha256=K8IvubNIr6zsXPPiO7l126WnR-kCohyTZG9w4TPYBG
357
376
  graphql_client/models/__init__.py,sha256=beY1dq6H1z0OOWRwvCN84LFOilZKMD_GjrYHuLKJI5c,275
358
377
  graphql_client/models/no_schema.py,sha256=NorUxY0NQA6reSS8Os_iF0GRk6cCYxhH7_Su0B9_eJk,1972
359
378
  models/mutation.accountManagement.addAccount.json,sha256=EMlkUxmTHPz6br3HRNj7Ytd7LCrn0oyx7EXiIwUQmW0,55247
379
+ models/mutation.accountManagement.disableAccount.json,sha256=W2BCPzpMvY4K9nnIBW7At0ftPvUhuZO4Aj55jWRViLQ,35278
360
380
  models/mutation.accountManagement.removeAccount.json,sha256=CBydstU8DYIU9reiB1zj_mz7CB7FYEH6uDU7915fTGI,35241
361
381
  models/mutation.accountManagement.updateAccount.json,sha256=Wjfye-n2FQCx_icDQJbwoGGD9IkaMvevIDODk-fy9WU,32437
362
382
  models/mutation.admin.addAdmin.json,sha256=DJevsmCi_D9ye8OhQBmPa9uZlhBTKnnGhE8eDAPRLP8,226936
@@ -382,6 +402,19 @@ models/mutation.groups.createGroup.json,sha256=orn0LtK3v_26qh9NZvuNiXQGMzRLLN8jq
382
402
  models/mutation.groups.deleteGroup.json,sha256=a9B1HsclmYeBeIs6QDHoYgNoi_QCtFYuKXNemRN40mE,232623
383
403
  models/mutation.groups.updateGroup.json,sha256=Hf8ayJoSQOJEXL1_RzVBn_5uRKlJ7f7RstGJmCNc_NU,358044
384
404
  models/mutation.hardware.updateHardwareShipping.json,sha256=IHs0XEwdMuhL5OlxtOqCEPIHzHU09dLwzIuja4cgwIk,210329
405
+ models/mutation.licensing.updateCommercialLicense.json,sha256=iZZOPqI-lDVPLG0j_3_E6HoMwzlid9VDunycViOPK8M,61756
406
+ models/mutation.policy.antiMalwareFileHash.addRule.json,sha256=C4jt1n170wUu-Rr3JobJRHlEKgynafUYnhDIm8ay2ps,164527
407
+ models/mutation.policy.antiMalwareFileHash.addSection.json,sha256=We5TTyrJEP3gYvu6_--JT7ms97zrqYe9af4bndrwYPc,96699
408
+ models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json,sha256=mgL5x8W2-Gx5y7DvooSF3rfbAZrDggpCYDaMr-qhKj4,167143
409
+ models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json,sha256=XnpFg8knEUQfNRk8kkoMx5l7fy9bXoWrnpUSuyMuvGk,163485
410
+ models/mutation.policy.antiMalwareFileHash.moveRule.json,sha256=Zj_HlX9Z8XhZmQbEZ2Tuil8fPqXEPBztWWIQdcOqL2A,123007
411
+ models/mutation.policy.antiMalwareFileHash.moveSection.json,sha256=zhyywfucRP9QF0nE30X6BaBxgfL89GMjqgPAcPdpDT0,89156
412
+ models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json,sha256=qJk5DWRiu2hZtgxAIaKlSGqas3mu-cscZdLHHquq5Bk,167374
413
+ models/mutation.policy.antiMalwareFileHash.removeRule.json,sha256=4LDCTy00WJ8rpvIjLzSVx4hlDcipgbRYtNDjoBdNvRw,94612
414
+ models/mutation.policy.antiMalwareFileHash.removeSection.json,sha256=f1xZCbDqoxgfecd930K7NDgXJJuFnTz2DFZAFyNzBl4,66757
415
+ models/mutation.policy.antiMalwareFileHash.updatePolicy.json,sha256=3VBe-sHPhVHB2gQdKJ82YBc_JfYT-cvxQZ-2-tyd2vs,167794
416
+ models/mutation.policy.antiMalwareFileHash.updateRule.json,sha256=TKiAad0pjIw0wiTauGawzSSZNzWiUgEcS1Vt5CgQJsI,137821
417
+ models/mutation.policy.antiMalwareFileHash.updateSection.json,sha256=7LTdeMuFFZC5cYBSYvG4gUf1uEXGPLl2wfHzXBFkQCw,77194
385
418
  models/mutation.policy.appTenantRestriction.addRule.json,sha256=Xx3QRzoT7CsfhH5IhJny96eQeDWSDwLndnRGqZ2tF68,884743
386
419
  models/mutation.policy.appTenantRestriction.addSection.json,sha256=Hib5T1Hv4b8cIpNTabw2q37CafPE43P2SDz_536A_Jc,96781
387
420
  models/mutation.policy.appTenantRestriction.createPolicyRevision.json,sha256=LFb_aR9WH2QCOwzyi6VU-Hq1YbL_hjmwCAcqxrGQv9w,389008
@@ -513,7 +546,7 @@ models/mutation.site.updateNetworkRange.json,sha256=rU3MM-4QRJIdUIFwqczsC1n7RQRT
513
546
  models/mutation.site.updateSecondaryAwsVSocket.json,sha256=tTeVOpEa7k8pc91RRe3PJCSADQS4Rheb-vWMfzXHt2Y,36606
514
547
  models/mutation.site.updateSecondaryAzureVSocket.json,sha256=Z3oiIYeGCuZ4hFeooO5LLK61TDFJxng-F4hzWEN-GN4,31904
515
548
  models/mutation.site.updateSiteBwLicense.json,sha256=2vEhgOtTdGQ0zspBYpyEm2Xm36m06VWio7T_CQqKWl8,81554
516
- models/mutation.site.updateSiteGeneralDetails.json,sha256=K_euoF-k2TQ2EnBGWzwPhSDau4cdr_aU5MZkoBa4tJU,114275
549
+ models/mutation.site.updateSiteGeneralDetails.json,sha256=6LHQ-JB9MamkOCpLQwC-ruQO7bbVL4RJSPoIOtT47ZA,114860
517
550
  models/mutation.site.updateSocketInterface.json,sha256=mgd7W3-yZsDlWekFHoFl2EkLBnEZpOhOMQ9pwZOV8WE,222681
518
551
  models/mutation.site.updateStaticHost.json,sha256=4vjrr28v4_oEMnlmD9J4sdNID1gYJVImrYDWvPu7kEk,20503
519
552
  models/mutation.sites.addBgpPeer.json,sha256=ffXyMbQAl29ipnFBxbpB3zb7TQiT-H15HtUAS94H4qw,486505
@@ -549,7 +582,7 @@ models/mutation.sites.updateNetworkRange.json,sha256=hC6969RGVu2xTmKtXnyf7XWlloD
549
582
  models/mutation.sites.updateSecondaryAwsVSocket.json,sha256=iNwdDrRDICavxSlUwQVdknwXar4ZgOHAq9SwSLMVes4,36621
550
583
  models/mutation.sites.updateSecondaryAzureVSocket.json,sha256=RRDnw0bbV7HzJEMafSnvQNl2oRoRwsjQChB4Pz--f4A,31919
551
584
  models/mutation.sites.updateSiteBwLicense.json,sha256=Kb9IeX6MyqmgBff0PsOsg22sKL-GLVi0L6rPdECHfxY,81569
552
- models/mutation.sites.updateSiteGeneralDetails.json,sha256=0CDWoWllcnLoAfJmMlxlo9-Q9gj4cfHX0n-9Fk8S-z0,114290
585
+ models/mutation.sites.updateSiteGeneralDetails.json,sha256=7cCGjDflCr4z62yYFRUQxKM2XZ0wpSvJi8DUu9GqBRs,114875
553
586
  models/mutation.sites.updateSocketInterface.json,sha256=0ZeI0nfzul-CFQsznqIgM834nicpyPOWX6JDzaITVvY,222696
554
587
  models/mutation.sites.updateStaticHost.json,sha256=E_zvJtU7JrfxVODjsApLk3Q-xoLg9uwRmDG_nEqqQ6o,20518
555
588
  models/mutation.xdr.addStoryComment.json,sha256=YeacU5rz7yHwtfTUWe60vFqCYKleaxXf3j46pP2ugNI,28520
@@ -567,18 +600,19 @@ models/query.appStatsTimeSeries.json,sha256=I9N6bNyj9yziSsIZKwbAnHI-RlSLQkUbtPWR
567
600
  models/query.auditFeed.json,sha256=hn2KYYC4FJ8r-jGgPbLdPbwjcH8GzgBDp9o5pHliobc,188231
568
601
  models/query.catalogs.json,sha256=r0PM54l7Q0rcVIXNfspIbZGG2W9jaJKtFUm2t7kRtlU,795121
569
602
  models/query.container.json,sha256=E9ExQvSQa3LJCOY5DMHEo4k7Ghg9Tm4HgN3MQ9It_sM,241302
570
- models/query.devices.json,sha256=sJw2BeL2VPTKxx-rqk3SKQ3nUYRNqL7F8cXbcSscQRI,1337077
603
+ models/query.devices.json,sha256=37LAfKTuV3qOhXVl8WryDLQyo63dN64ZjyTWwjj9AEg,1368580
571
604
  models/query.enterpriseDirectory.json,sha256=HYaCFN8qIo74Szw3Cpp8NuoDaX55JVdNj6wzzgLOHnI,295349
572
605
  models/query.entityLookup.json,sha256=B-wBRfhnXrO-nJBBYtINH1EGXSlIDm2LjYUQRjH_a0w,99722
573
- models/query.events.json,sha256=fzmu94jSsPBukhOC5Tq2w-gKEpEdk04KUpbFH10X7r4,1038766
574
- models/query.eventsFeed.json,sha256=GHeXKETSRfdGQ37bza_mAouTby8o6IWyE27NKVs9lMc,236638
575
- models/query.eventsTimeSeries.json,sha256=YDroptrsQnzeJrxDxy77ATGrfGMKriLDiKTKLvGVVyQ,691304
606
+ models/query.events.json,sha256=JIDx8JQCsGFovfCBaizuZmrxQOCdjYHnBvq54p1w_RE,1053949
607
+ models/query.eventsFeed.json,sha256=Jc7fSlCDpr2oVuockYfpubojZruS4x5wGxjsV1Fhaq8,239884
608
+ models/query.eventsTimeSeries.json,sha256=1AIUBzB-yd9xsObd9Bjpe1bzlGy-wIJTFsXKqqwCdg0,701042
576
609
  models/query.groups.group.members.json,sha256=4SDKSgQ-CJPLX1sZVir_xD1eMvsU_-pxdSEXppZQma0,248249
577
610
  models/query.groups.groupList.json,sha256=pbXb0zoMiHTrkkj86R1bOubt5AN1JjNDcdfMECr5gYM,569931
578
611
  models/query.groups.whereUsed.json,sha256=dQcldkrroKbcn-aKz_YWFw1hW0dXl9qNfaglZSfYhD8,40487
579
- models/query.hardware.json,sha256=QYeq4Sm7OWyuhMTMdmNOEnfEfS5E3eR3CE0OJ17MDrs,462825
612
+ models/query.hardware.json,sha256=iEmo8ObmO2lsBYp1yftn_dZQfwEVdQWrFMkY23rFS2g,481130
580
613
  models/query.hardwareManagement.json,sha256=9o_XhuXLFAi4mQbzX_oyXbYDJ5i64swbzWqmUXYqUAI,241962
581
614
  models/query.licensing.json,sha256=0eZWBb7-P5M868HCuPhb-RtLiBYaQmzCvDg3rqf5jMY,1062832
615
+ models/query.policy.antiMalwareFileHash.policy.json,sha256=vNyxc6QMNPNlJCXoo-2Y6SPB_dP-A4xYPof_OuMC8E4,134229
582
616
  models/query.policy.appTenantRestriction.policy.json,sha256=zMljreQ9nW-vctCp5-QE68nv0xLUnVBqdrb4bKlPE5w,330122
583
617
  models/query.policy.dynamicIpAllocation.policy.json,sha256=4nUmUCqOChgbN2gPIuqvDMT3DtRysRjw5OOAlM4vkCw,177845
584
618
  models/query.policy.internetFirewall.policy.json,sha256=ahtIqM14iQ6AwCUMvJuQ-G5OdBmWC3diU59cktLQL4w,1002250
@@ -599,13 +633,14 @@ models/query.site.cloudInterconnectPhysicalConnectionId.json,sha256=_w2Uo6MFS-Ms
599
633
  models/query.site.secondaryAwsVSocket.json,sha256=-3wRXS8ETdFrdgx1yeIVyJYmnD_Ub_wL_psIMcPJME4,16048
600
634
  models/query.site.secondaryAzureVSocket.json,sha256=YW4ot0u7C2EOtHAbn_kjpAaC6ircnSDmPWuNkUA-xQE,14922
601
635
  models/query.site.siteBgpStatus.json,sha256=Z8v3BIePEsyCUGa78qa90RsTKiel2i-AtCHER8sWEn0,57340
636
+ models/query.site.siteGeneralDetails.json,sha256=16c5N68yvUy5U3yobzlJ6qHaNbX9udH0HZUVK0E2tqU,54115
602
637
  models/query.siteLocation.json,sha256=YDFp6w5vdMOb0dATjhByH2GwUOkYvdvRNm9mTl5FClw,30205454
603
638
  models/query.socketPortMetrics.json,sha256=fmH13SWbfngjXE8qGB-dweW5vsuPn8rmkVkcJ9l7LYM,166725
604
639
  models/query.socketPortMetricsTimeSeries.json,sha256=PHT_x1YaP8NQpaHXA4VWsZ4kC7WoxkHvpnBcZD0vW3o,133437
605
640
  models/query.subDomains.json,sha256=BkReQmylHZMv1iIakX984na9EKd_m0sPC0a-COsCxRI,7036
606
641
  models/query.xdr.stories.json,sha256=a3rQ9j8Ru-iidGztB1yFnYSTTlJpPcDkhoI3phMdByk,714509
607
642
  models/query.xdr.story.json,sha256=A3M-_cBIfup6vxG5nvAEH0EGRdEwkg_-G2lQR6eveB8,152375
608
- schema/catolib.py,sha256=uLDSVKF7No9JhWrxsiWMJ9vJZmc-9iKvDjDzIgyinXg,71215
643
+ schema/catolib.py,sha256=7Yw_hiOIi5zAm-2vfsp32hNHp-Ut1nHn4_VJ64qDsHE,74779
609
644
  schema/importSchema.py,sha256=LvXjylxsOWDcdceDE8nazOG1xcstxLGwyoVWSzW2Eg4,2508
610
645
  scripts/catolib.py,sha256=6QaGZaHj1waZuta8gUFsfXmyoDiLabpU9gwnyq7pSXg,2145
611
646
  scripts/export_if_rules_to_json.py,sha256=sTYzUbAtiFTy9vKpnyO8Sljshvg0qKd2gadanpeRVAM,10076
@@ -653,8 +688,8 @@ vendor/urllib3/util/timeout.py,sha256=4eT1FVeZZU7h7mYD1Jq2OXNe4fxekdNvhoWUkZusRp
653
688
  vendor/urllib3/util/url.py,sha256=wHORhp80RAXyTlAIkTqLFzSrkU7J34ZDxX-tN65MBZk,15213
654
689
  vendor/urllib3/util/util.py,sha256=j3lbZK1jPyiwD34T8IgJzdWEZVT-4E-0vYIJi9UjeNA,1146
655
690
  vendor/urllib3/util/wait.py,sha256=_ph8IrUR3sqPqi0OopQgJUlH4wzkGeM5CiyA7XGGtmI,4423
656
- catocli-2.1.3.dist-info/METADATA,sha256=H6wiAK-yoJ97WgeMD_6cOI19d_WW5QvFY64Kk_aICrs,1286
657
- catocli-2.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
658
- catocli-2.1.3.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
659
- catocli-2.1.3.dist-info/top_level.txt,sha256=F4qSgcjcW5wR9EFrO8Ud06F7ZQGFr04a9qALNQDyVxU,52
660
- catocli-2.1.3.dist-info/RECORD,,
691
+ catocli-2.1.6.dist-info/METADATA,sha256=aSGkRqhkRgpLCvfxMZJoFECo8I3e9LtATzUfAPC0lEw,1286
692
+ catocli-2.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
693
+ catocli-2.1.6.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
694
+ catocli-2.1.6.dist-info/top_level.txt,sha256=F4qSgcjcW5wR9EFrO8Ud06F7ZQGFr04a9qALNQDyVxU,52
695
+ catocli-2.1.6.dist-info/RECORD,,