catocli 2.1.2__py3-none-any.whl → 2.1.4__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.
- catocli/Utils/clidriver.py +18 -18
- catocli/Utils/cliutils.py +165 -0
- catocli/Utils/csv_formatter.py +652 -0
- catocli/__init__.py +1 -1
- catocli/parsers/custom/export_rules/__init__.py +0 -4
- catocli/parsers/custom/export_sites/__init__.py +4 -3
- catocli/parsers/custom/export_sites/export_sites.py +198 -55
- catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +473 -393
- catocli/parsers/customParserApiClient.py +444 -38
- catocli/parsers/custom_private/__init__.py +19 -13
- catocli/parsers/mutation_accountManagement/__init__.py +21 -0
- catocli/parsers/mutation_accountManagement_disableAccount/README.md +15 -0
- catocli/parsers/mutation_admin/__init__.py +12 -0
- catocli/parsers/mutation_container/__init__.py +18 -0
- catocli/parsers/mutation_enterpriseDirectory/__init__.py +8 -0
- catocli/parsers/mutation_groups/__init__.py +6 -0
- catocli/parsers/mutation_hardware/__init__.py +2 -0
- catocli/parsers/mutation_policy/__init__.py +378 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_discardPolicyRevision/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_moveRule/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_moveSection/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_publishPolicyRevision/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_removeRule/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_removeSection/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_updatePolicy/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_updateRule/README.md +20 -0
- catocli/parsers/mutation_policy_antiMalwareFileHash_updateSection/README.md +20 -0
- catocli/parsers/mutation_sandbox/__init__.py +4 -0
- catocli/parsers/mutation_site/__init__.py +72 -0
- catocli/parsers/mutation_sites/__init__.py +72 -0
- catocli/parsers/mutation_xdr/__init__.py +6 -0
- catocli/parsers/query_accountBySubdomain/__init__.py +2 -0
- catocli/parsers/query_accountManagement/__init__.py +2 -0
- catocli/parsers/query_accountMetrics/__init__.py +6 -0
- catocli/parsers/query_accountRoles/__init__.py +2 -0
- catocli/parsers/query_accountSnapshot/__init__.py +2 -0
- catocli/parsers/query_admin/__init__.py +2 -0
- catocli/parsers/query_admins/__init__.py +2 -0
- catocli/parsers/query_appStats/__init__.py +6 -0
- catocli/parsers/query_appStatsTimeSeries/README.md +3 -0
- catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -0
- catocli/parsers/query_auditFeed/__init__.py +2 -0
- catocli/parsers/query_catalogs/__init__.py +2 -0
- catocli/parsers/query_container/__init__.py +2 -0
- catocli/parsers/query_devices/README.md +1 -1
- catocli/parsers/query_devices/__init__.py +2 -0
- catocli/parsers/query_enterpriseDirectory/__init__.py +2 -0
- catocli/parsers/query_entityLookup/__init__.py +2 -0
- catocli/parsers/query_events/__init__.py +2 -0
- catocli/parsers/query_eventsFeed/__init__.py +2 -0
- catocli/parsers/query_eventsTimeSeries/__init__.py +2 -0
- catocli/parsers/query_groups/__init__.py +6 -0
- catocli/parsers/query_hardware/README.md +1 -1
- catocli/parsers/query_hardware/__init__.py +2 -0
- catocli/parsers/query_hardwareManagement/__init__.py +2 -0
- catocli/parsers/query_licensing/__init__.py +2 -0
- catocli/parsers/query_policy/__init__.py +37 -0
- catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md +19 -0
- catocli/parsers/query_popLocations/__init__.py +2 -0
- catocli/parsers/query_sandbox/__init__.py +2 -0
- catocli/parsers/query_servicePrincipalAdmin/__init__.py +2 -0
- catocli/parsers/query_site/__init__.py +33 -0
- catocli/parsers/query_siteLocation/__init__.py +2 -0
- catocli/parsers/query_site_siteGeneralDetails/README.md +19 -0
- catocli/parsers/query_socketPortMetrics/__init__.py +2 -0
- catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +6 -0
- catocli/parsers/query_subDomains/__init__.py +2 -0
- catocli/parsers/query_xdr/__init__.py +4 -0
- catocli/parsers/raw/__init__.py +3 -1
- {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/METADATA +1 -1
- {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/RECORD +98 -66
- models/mutation.accountManagement.disableAccount.json +545 -0
- models/mutation.policy.antiMalwareFileHash.addRule.json +2068 -0
- models/mutation.policy.antiMalwareFileHash.addSection.json +1350 -0
- models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +1822 -0
- models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +1758 -0
- models/mutation.policy.antiMalwareFileHash.moveRule.json +1552 -0
- models/mutation.policy.antiMalwareFileHash.moveSection.json +1251 -0
- models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +1813 -0
- models/mutation.policy.antiMalwareFileHash.removeRule.json +1204 -0
- models/mutation.policy.antiMalwareFileHash.removeSection.json +954 -0
- models/mutation.policy.antiMalwareFileHash.updatePolicy.json +1834 -0
- models/mutation.policy.antiMalwareFileHash.updateRule.json +1757 -0
- models/mutation.policy.antiMalwareFileHash.updateSection.json +1105 -0
- models/mutation.site.updateSiteGeneralDetails.json +3 -3
- models/mutation.sites.updateSiteGeneralDetails.json +3 -3
- models/query.devices.json +249 -2
- models/query.hardware.json +224 -0
- models/query.policy.antiMalwareFileHash.policy.json +1583 -0
- models/query.site.siteGeneralDetails.json +899 -0
- schema/catolib.py +52 -14
- {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/WHEEL +0 -0
- {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/entry_points.txt +0 -0
- {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/licenses/LICENSE +0 -0
- {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/top_level.txt +0 -0
|
@@ -23,6 +23,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
23
23
|
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
24
24
|
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
25
25
|
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
26
|
+
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
27
|
+
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
26
28
|
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
27
29
|
mutation_policy_appTenantRestriction_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
28
30
|
mutation_policy_appTenantRestriction_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.addRule')
|
|
@@ -36,6 +38,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
36
38
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
37
39
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
38
40
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
41
|
+
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
42
|
+
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
39
43
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
40
44
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
41
45
|
mutation_policy_appTenantRestriction_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.updateRule')
|
|
@@ -49,6 +53,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
49
53
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
50
54
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
51
55
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
56
|
+
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
57
|
+
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
52
58
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
53
59
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
54
60
|
mutation_policy_appTenantRestriction_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.removeRule')
|
|
@@ -62,6 +68,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
62
68
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
63
69
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
64
70
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
71
|
+
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
72
|
+
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
65
73
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
66
74
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
67
75
|
mutation_policy_appTenantRestriction_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.moveRule')
|
|
@@ -75,6 +83,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
75
83
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
76
84
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
77
85
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
86
|
+
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
87
|
+
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
78
88
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
79
89
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
80
90
|
mutation_policy_appTenantRestriction_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.addSection')
|
|
@@ -88,6 +98,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
88
98
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
89
99
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
90
100
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
101
|
+
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
102
|
+
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
91
103
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
92
104
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
93
105
|
mutation_policy_appTenantRestriction_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.updateSection')
|
|
@@ -101,6 +113,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
101
113
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
102
114
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
103
115
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
116
|
+
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
117
|
+
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
104
118
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
105
119
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
106
120
|
mutation_policy_appTenantRestriction_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.removeSection')
|
|
@@ -114,6 +128,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
114
128
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
115
129
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
116
130
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
131
|
+
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
132
|
+
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
117
133
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
118
134
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
119
135
|
mutation_policy_appTenantRestriction_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.moveSection')
|
|
@@ -127,6 +143,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
127
143
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
128
144
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
129
145
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
146
|
+
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
147
|
+
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
130
148
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
131
149
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
132
150
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.createPolicyRevision')
|
|
@@ -140,6 +158,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
140
158
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
141
159
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
142
160
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
161
|
+
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
162
|
+
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
143
163
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
144
164
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
145
165
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.publishPolicyRevision')
|
|
@@ -153,6 +173,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
153
173
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
154
174
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
155
175
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
176
|
+
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
177
|
+
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
156
178
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
157
179
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
158
180
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.discardPolicyRevision')
|
|
@@ -166,10 +188,198 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
166
188
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
167
189
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
168
190
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
191
|
+
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
192
|
+
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
169
193
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
170
194
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
171
195
|
mutation_policy_appTenantRestriction_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.appTenantRestriction.updatePolicy')
|
|
172
196
|
|
|
197
|
+
mutation_policy_antiMalwareFileHash_parser = mutation_policy_subparsers.add_parser('antiMalwareFileHash',
|
|
198
|
+
help='antiMalwareFileHash() policy operation',
|
|
199
|
+
usage=get_help("mutation_policy_antiMalwareFileHash"))
|
|
200
|
+
|
|
201
|
+
mutation_policy_antiMalwareFileHash_subparsers = mutation_policy_antiMalwareFileHash_parser.add_subparsers()
|
|
202
|
+
|
|
203
|
+
mutation_policy_antiMalwareFileHash_addRule_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('addRule',
|
|
204
|
+
help='addRule() antiMalwareFileHash operation',
|
|
205
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_addRule"))
|
|
206
|
+
|
|
207
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
208
|
+
mutation_policy_antiMalwareFileHash_addRule_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.')
|
|
209
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
210
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
211
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
212
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
213
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
214
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
215
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
216
|
+
mutation_policy_antiMalwareFileHash_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.addRule')
|
|
217
|
+
|
|
218
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('updateRule',
|
|
219
|
+
help='updateRule() antiMalwareFileHash operation',
|
|
220
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_updateRule"))
|
|
221
|
+
|
|
222
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
223
|
+
mutation_policy_antiMalwareFileHash_updateRule_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.')
|
|
224
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
225
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
226
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
227
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
228
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
229
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
230
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
231
|
+
mutation_policy_antiMalwareFileHash_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.updateRule')
|
|
232
|
+
|
|
233
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('removeRule',
|
|
234
|
+
help='removeRule() antiMalwareFileHash operation',
|
|
235
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_removeRule"))
|
|
236
|
+
|
|
237
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
238
|
+
mutation_policy_antiMalwareFileHash_removeRule_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.')
|
|
239
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
240
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
241
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
242
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
243
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
244
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
245
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
246
|
+
mutation_policy_antiMalwareFileHash_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.removeRule')
|
|
247
|
+
|
|
248
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('moveRule',
|
|
249
|
+
help='moveRule() antiMalwareFileHash operation',
|
|
250
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_moveRule"))
|
|
251
|
+
|
|
252
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
253
|
+
mutation_policy_antiMalwareFileHash_moveRule_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.')
|
|
254
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
255
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
256
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
257
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
258
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
259
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
260
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
261
|
+
mutation_policy_antiMalwareFileHash_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.moveRule')
|
|
262
|
+
|
|
263
|
+
mutation_policy_antiMalwareFileHash_addSection_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('addSection',
|
|
264
|
+
help='addSection() antiMalwareFileHash operation',
|
|
265
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_addSection"))
|
|
266
|
+
|
|
267
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
268
|
+
mutation_policy_antiMalwareFileHash_addSection_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.')
|
|
269
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
270
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
271
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
272
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
273
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
274
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
275
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
276
|
+
mutation_policy_antiMalwareFileHash_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.addSection')
|
|
277
|
+
|
|
278
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('updateSection',
|
|
279
|
+
help='updateSection() antiMalwareFileHash operation',
|
|
280
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_updateSection"))
|
|
281
|
+
|
|
282
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
283
|
+
mutation_policy_antiMalwareFileHash_updateSection_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.')
|
|
284
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
285
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
286
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
287
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
288
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
289
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
290
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
291
|
+
mutation_policy_antiMalwareFileHash_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.updateSection')
|
|
292
|
+
|
|
293
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('removeSection',
|
|
294
|
+
help='removeSection() antiMalwareFileHash operation',
|
|
295
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_removeSection"))
|
|
296
|
+
|
|
297
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
298
|
+
mutation_policy_antiMalwareFileHash_removeSection_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.')
|
|
299
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
300
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
301
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
302
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
303
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
304
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
305
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
306
|
+
mutation_policy_antiMalwareFileHash_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.removeSection')
|
|
307
|
+
|
|
308
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('moveSection',
|
|
309
|
+
help='moveSection() antiMalwareFileHash operation',
|
|
310
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_moveSection"))
|
|
311
|
+
|
|
312
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
313
|
+
mutation_policy_antiMalwareFileHash_moveSection_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.')
|
|
314
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
315
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
316
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
317
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
318
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
319
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
320
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
321
|
+
mutation_policy_antiMalwareFileHash_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.moveSection')
|
|
322
|
+
|
|
323
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('createPolicyRevision',
|
|
324
|
+
help='createPolicyRevision() antiMalwareFileHash operation',
|
|
325
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_createPolicyRevision"))
|
|
326
|
+
|
|
327
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
328
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_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.')
|
|
329
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
330
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
331
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
332
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
333
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
334
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
335
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
336
|
+
mutation_policy_antiMalwareFileHash_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.createPolicyRevision')
|
|
337
|
+
|
|
338
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('publishPolicyRevision',
|
|
339
|
+
help='publishPolicyRevision() antiMalwareFileHash operation',
|
|
340
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_publishPolicyRevision"))
|
|
341
|
+
|
|
342
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
343
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_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.')
|
|
344
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
345
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
346
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
347
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
348
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
349
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
350
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
351
|
+
mutation_policy_antiMalwareFileHash_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.publishPolicyRevision')
|
|
352
|
+
|
|
353
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('discardPolicyRevision',
|
|
354
|
+
help='discardPolicyRevision() antiMalwareFileHash operation',
|
|
355
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_discardPolicyRevision"))
|
|
356
|
+
|
|
357
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
358
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_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.')
|
|
359
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
360
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
361
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
362
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
363
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
364
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
365
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
366
|
+
mutation_policy_antiMalwareFileHash_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.discardPolicyRevision')
|
|
367
|
+
|
|
368
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser = mutation_policy_antiMalwareFileHash_subparsers.add_parser('updatePolicy',
|
|
369
|
+
help='updatePolicy() antiMalwareFileHash operation',
|
|
370
|
+
usage=get_help("mutation_policy_antiMalwareFileHash_updatePolicy"))
|
|
371
|
+
|
|
372
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
373
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_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.')
|
|
374
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
375
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
376
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
377
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
378
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
379
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
380
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
381
|
+
mutation_policy_antiMalwareFileHash_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.antiMalwareFileHash.updatePolicy')
|
|
382
|
+
|
|
173
383
|
mutation_policy_dynamicIpAllocation_parser = mutation_policy_subparsers.add_parser('dynamicIpAllocation',
|
|
174
384
|
help='dynamicIpAllocation() policy operation',
|
|
175
385
|
usage=get_help("mutation_policy_dynamicIpAllocation"))
|
|
@@ -185,6 +395,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
185
395
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
186
396
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
187
397
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
398
|
+
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
399
|
+
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
188
400
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
189
401
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
190
402
|
mutation_policy_dynamicIpAllocation_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.addRule')
|
|
@@ -198,6 +410,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
198
410
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
199
411
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
200
412
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
413
|
+
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
414
|
+
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
201
415
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
202
416
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
203
417
|
mutation_policy_dynamicIpAllocation_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.updateRule')
|
|
@@ -211,6 +425,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
211
425
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
212
426
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
213
427
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
428
|
+
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
429
|
+
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
214
430
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
215
431
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
216
432
|
mutation_policy_dynamicIpAllocation_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.removeRule')
|
|
@@ -224,6 +440,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
224
440
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
225
441
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
226
442
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
443
|
+
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
444
|
+
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
227
445
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
228
446
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
229
447
|
mutation_policy_dynamicIpAllocation_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.moveRule')
|
|
@@ -237,6 +455,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
237
455
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
238
456
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
239
457
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
458
|
+
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
459
|
+
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
240
460
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
241
461
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
242
462
|
mutation_policy_dynamicIpAllocation_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.addSection')
|
|
@@ -250,6 +470,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
250
470
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
251
471
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
252
472
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
473
|
+
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
474
|
+
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
253
475
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
254
476
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
255
477
|
mutation_policy_dynamicIpAllocation_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.updateSection')
|
|
@@ -263,6 +485,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
263
485
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
264
486
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
265
487
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
488
|
+
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
489
|
+
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
266
490
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
267
491
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
268
492
|
mutation_policy_dynamicIpAllocation_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.removeSection')
|
|
@@ -276,6 +500,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
276
500
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
277
501
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
278
502
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
503
|
+
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
504
|
+
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
279
505
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
280
506
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
281
507
|
mutation_policy_dynamicIpAllocation_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.moveSection')
|
|
@@ -289,6 +515,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
289
515
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
290
516
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
291
517
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
518
|
+
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
519
|
+
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
292
520
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
293
521
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
294
522
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.createPolicyRevision')
|
|
@@ -302,6 +530,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
302
530
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
303
531
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
304
532
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
533
|
+
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
534
|
+
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
305
535
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
306
536
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
307
537
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.publishPolicyRevision')
|
|
@@ -315,6 +545,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
315
545
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
316
546
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
317
547
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
548
|
+
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
549
|
+
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
318
550
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
319
551
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
320
552
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.discardPolicyRevision')
|
|
@@ -328,6 +560,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
328
560
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
329
561
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
330
562
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
563
|
+
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
564
|
+
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
331
565
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
332
566
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
333
567
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.dynamicIpAllocation.updatePolicy')
|
|
@@ -347,6 +581,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
347
581
|
mutation_policy_socketLan_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
348
582
|
mutation_policy_socketLan_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
349
583
|
mutation_policy_socketLan_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
584
|
+
mutation_policy_socketLan_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
585
|
+
mutation_policy_socketLan_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
350
586
|
mutation_policy_socketLan_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
351
587
|
mutation_policy_socketLan_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
352
588
|
mutation_policy_socketLan_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.addRule')
|
|
@@ -360,6 +596,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
360
596
|
mutation_policy_socketLan_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
361
597
|
mutation_policy_socketLan_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
362
598
|
mutation_policy_socketLan_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
599
|
+
mutation_policy_socketLan_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
600
|
+
mutation_policy_socketLan_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
363
601
|
mutation_policy_socketLan_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
364
602
|
mutation_policy_socketLan_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
365
603
|
mutation_policy_socketLan_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.updateRule')
|
|
@@ -373,6 +611,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
373
611
|
mutation_policy_socketLan_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
374
612
|
mutation_policy_socketLan_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
375
613
|
mutation_policy_socketLan_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
614
|
+
mutation_policy_socketLan_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
615
|
+
mutation_policy_socketLan_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
376
616
|
mutation_policy_socketLan_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
377
617
|
mutation_policy_socketLan_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
378
618
|
mutation_policy_socketLan_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.removeRule')
|
|
@@ -386,6 +626,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
386
626
|
mutation_policy_socketLan_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
387
627
|
mutation_policy_socketLan_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
388
628
|
mutation_policy_socketLan_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
629
|
+
mutation_policy_socketLan_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
630
|
+
mutation_policy_socketLan_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
389
631
|
mutation_policy_socketLan_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
390
632
|
mutation_policy_socketLan_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
391
633
|
mutation_policy_socketLan_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.moveRule')
|
|
@@ -399,6 +641,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
399
641
|
mutation_policy_socketLan_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
400
642
|
mutation_policy_socketLan_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
401
643
|
mutation_policy_socketLan_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
644
|
+
mutation_policy_socketLan_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
645
|
+
mutation_policy_socketLan_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
402
646
|
mutation_policy_socketLan_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
403
647
|
mutation_policy_socketLan_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
404
648
|
mutation_policy_socketLan_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.addSection')
|
|
@@ -412,6 +656,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
412
656
|
mutation_policy_socketLan_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
413
657
|
mutation_policy_socketLan_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
414
658
|
mutation_policy_socketLan_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
659
|
+
mutation_policy_socketLan_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
660
|
+
mutation_policy_socketLan_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
415
661
|
mutation_policy_socketLan_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
416
662
|
mutation_policy_socketLan_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
417
663
|
mutation_policy_socketLan_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.updateSection')
|
|
@@ -425,6 +671,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
425
671
|
mutation_policy_socketLan_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
426
672
|
mutation_policy_socketLan_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
427
673
|
mutation_policy_socketLan_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
674
|
+
mutation_policy_socketLan_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
675
|
+
mutation_policy_socketLan_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
428
676
|
mutation_policy_socketLan_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
429
677
|
mutation_policy_socketLan_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
430
678
|
mutation_policy_socketLan_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.removeSection')
|
|
@@ -438,6 +686,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
438
686
|
mutation_policy_socketLan_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
439
687
|
mutation_policy_socketLan_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
440
688
|
mutation_policy_socketLan_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
689
|
+
mutation_policy_socketLan_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
690
|
+
mutation_policy_socketLan_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
441
691
|
mutation_policy_socketLan_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
442
692
|
mutation_policy_socketLan_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
443
693
|
mutation_policy_socketLan_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.moveSection')
|
|
@@ -451,6 +701,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
451
701
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
452
702
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
453
703
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
704
|
+
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
705
|
+
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
454
706
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
455
707
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
456
708
|
mutation_policy_socketLan_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.createPolicyRevision')
|
|
@@ -464,6 +716,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
464
716
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
465
717
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
466
718
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
719
|
+
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
720
|
+
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
467
721
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
468
722
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
469
723
|
mutation_policy_socketLan_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.publishPolicyRevision')
|
|
@@ -477,6 +731,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
477
731
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
478
732
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
479
733
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
734
|
+
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
735
|
+
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
480
736
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
481
737
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
482
738
|
mutation_policy_socketLan_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.discardPolicyRevision')
|
|
@@ -490,6 +746,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
490
746
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
491
747
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
492
748
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
749
|
+
mutation_policy_socketLan_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
750
|
+
mutation_policy_socketLan_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
493
751
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
494
752
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
495
753
|
mutation_policy_socketLan_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.socketLan.updatePolicy')
|
|
@@ -509,6 +767,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
509
767
|
mutation_policy_terminalServer_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
510
768
|
mutation_policy_terminalServer_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
511
769
|
mutation_policy_terminalServer_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
770
|
+
mutation_policy_terminalServer_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
771
|
+
mutation_policy_terminalServer_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
512
772
|
mutation_policy_terminalServer_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
513
773
|
mutation_policy_terminalServer_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
514
774
|
mutation_policy_terminalServer_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.addRule')
|
|
@@ -522,6 +782,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
522
782
|
mutation_policy_terminalServer_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
523
783
|
mutation_policy_terminalServer_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
524
784
|
mutation_policy_terminalServer_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
785
|
+
mutation_policy_terminalServer_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
786
|
+
mutation_policy_terminalServer_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
525
787
|
mutation_policy_terminalServer_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
526
788
|
mutation_policy_terminalServer_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
527
789
|
mutation_policy_terminalServer_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.updateRule')
|
|
@@ -535,6 +797,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
535
797
|
mutation_policy_terminalServer_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
536
798
|
mutation_policy_terminalServer_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
537
799
|
mutation_policy_terminalServer_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
800
|
+
mutation_policy_terminalServer_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
801
|
+
mutation_policy_terminalServer_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
538
802
|
mutation_policy_terminalServer_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
539
803
|
mutation_policy_terminalServer_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
540
804
|
mutation_policy_terminalServer_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.removeRule')
|
|
@@ -548,6 +812,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
548
812
|
mutation_policy_terminalServer_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
549
813
|
mutation_policy_terminalServer_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
550
814
|
mutation_policy_terminalServer_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
815
|
+
mutation_policy_terminalServer_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
816
|
+
mutation_policy_terminalServer_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
551
817
|
mutation_policy_terminalServer_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
552
818
|
mutation_policy_terminalServer_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
553
819
|
mutation_policy_terminalServer_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.moveRule')
|
|
@@ -561,6 +827,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
561
827
|
mutation_policy_terminalServer_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
562
828
|
mutation_policy_terminalServer_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
563
829
|
mutation_policy_terminalServer_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
830
|
+
mutation_policy_terminalServer_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
831
|
+
mutation_policy_terminalServer_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
564
832
|
mutation_policy_terminalServer_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
565
833
|
mutation_policy_terminalServer_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
566
834
|
mutation_policy_terminalServer_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.addSection')
|
|
@@ -574,6 +842,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
574
842
|
mutation_policy_terminalServer_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
575
843
|
mutation_policy_terminalServer_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
576
844
|
mutation_policy_terminalServer_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
845
|
+
mutation_policy_terminalServer_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
846
|
+
mutation_policy_terminalServer_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
577
847
|
mutation_policy_terminalServer_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
578
848
|
mutation_policy_terminalServer_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
579
849
|
mutation_policy_terminalServer_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.updateSection')
|
|
@@ -587,6 +857,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
587
857
|
mutation_policy_terminalServer_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
588
858
|
mutation_policy_terminalServer_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
589
859
|
mutation_policy_terminalServer_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
860
|
+
mutation_policy_terminalServer_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
861
|
+
mutation_policy_terminalServer_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
590
862
|
mutation_policy_terminalServer_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
591
863
|
mutation_policy_terminalServer_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
592
864
|
mutation_policy_terminalServer_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.removeSection')
|
|
@@ -600,6 +872,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
600
872
|
mutation_policy_terminalServer_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
601
873
|
mutation_policy_terminalServer_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
602
874
|
mutation_policy_terminalServer_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
875
|
+
mutation_policy_terminalServer_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
876
|
+
mutation_policy_terminalServer_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
603
877
|
mutation_policy_terminalServer_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
604
878
|
mutation_policy_terminalServer_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
605
879
|
mutation_policy_terminalServer_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.moveSection')
|
|
@@ -613,6 +887,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
613
887
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
614
888
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
615
889
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
890
|
+
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
891
|
+
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
616
892
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
617
893
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
618
894
|
mutation_policy_terminalServer_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.createPolicyRevision')
|
|
@@ -626,6 +902,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
626
902
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
627
903
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
628
904
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
905
|
+
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
906
|
+
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
629
907
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
630
908
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
631
909
|
mutation_policy_terminalServer_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.publishPolicyRevision')
|
|
@@ -639,6 +917,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
639
917
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
640
918
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
641
919
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
920
|
+
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
921
|
+
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
642
922
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
643
923
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
644
924
|
mutation_policy_terminalServer_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.discardPolicyRevision')
|
|
@@ -652,6 +932,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
652
932
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
653
933
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
654
934
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
935
|
+
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
936
|
+
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
655
937
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
656
938
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
657
939
|
mutation_policy_terminalServer_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.terminalServer.updatePolicy')
|
|
@@ -671,6 +953,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
671
953
|
mutation_policy_wanNetwork_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
672
954
|
mutation_policy_wanNetwork_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
673
955
|
mutation_policy_wanNetwork_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
956
|
+
mutation_policy_wanNetwork_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
957
|
+
mutation_policy_wanNetwork_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
674
958
|
mutation_policy_wanNetwork_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
675
959
|
mutation_policy_wanNetwork_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
676
960
|
mutation_policy_wanNetwork_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.addRule')
|
|
@@ -684,6 +968,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
684
968
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
685
969
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
686
970
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
971
|
+
mutation_policy_wanNetwork_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
972
|
+
mutation_policy_wanNetwork_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
687
973
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
688
974
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
689
975
|
mutation_policy_wanNetwork_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.updateRule')
|
|
@@ -697,6 +983,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
697
983
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
698
984
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
699
985
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
986
|
+
mutation_policy_wanNetwork_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
987
|
+
mutation_policy_wanNetwork_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
700
988
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
701
989
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
702
990
|
mutation_policy_wanNetwork_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.removeRule')
|
|
@@ -710,6 +998,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
710
998
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
711
999
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
712
1000
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1001
|
+
mutation_policy_wanNetwork_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1002
|
+
mutation_policy_wanNetwork_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
713
1003
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
714
1004
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
715
1005
|
mutation_policy_wanNetwork_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.moveRule')
|
|
@@ -723,6 +1013,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
723
1013
|
mutation_policy_wanNetwork_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
724
1014
|
mutation_policy_wanNetwork_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
725
1015
|
mutation_policy_wanNetwork_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1016
|
+
mutation_policy_wanNetwork_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1017
|
+
mutation_policy_wanNetwork_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
726
1018
|
mutation_policy_wanNetwork_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
727
1019
|
mutation_policy_wanNetwork_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
728
1020
|
mutation_policy_wanNetwork_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.addSection')
|
|
@@ -736,6 +1028,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
736
1028
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
737
1029
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
738
1030
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1031
|
+
mutation_policy_wanNetwork_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1032
|
+
mutation_policy_wanNetwork_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
739
1033
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
740
1034
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
741
1035
|
mutation_policy_wanNetwork_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.updateSection')
|
|
@@ -749,6 +1043,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
749
1043
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
750
1044
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
751
1045
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1046
|
+
mutation_policy_wanNetwork_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1047
|
+
mutation_policy_wanNetwork_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
752
1048
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
753
1049
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
754
1050
|
mutation_policy_wanNetwork_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.removeSection')
|
|
@@ -762,6 +1058,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
762
1058
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
763
1059
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
764
1060
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1061
|
+
mutation_policy_wanNetwork_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1062
|
+
mutation_policy_wanNetwork_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
765
1063
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
766
1064
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
767
1065
|
mutation_policy_wanNetwork_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.moveSection')
|
|
@@ -775,6 +1073,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
775
1073
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
776
1074
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
777
1075
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1076
|
+
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1077
|
+
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
778
1078
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
779
1079
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
780
1080
|
mutation_policy_wanNetwork_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.createPolicyRevision')
|
|
@@ -788,6 +1088,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
788
1088
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
789
1089
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
790
1090
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1091
|
+
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1092
|
+
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
791
1093
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
792
1094
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
793
1095
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.publishPolicyRevision')
|
|
@@ -801,6 +1103,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
801
1103
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
802
1104
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
803
1105
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1106
|
+
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1107
|
+
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
804
1108
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
805
1109
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
806
1110
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.discardPolicyRevision')
|
|
@@ -814,6 +1118,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
814
1118
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
815
1119
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
816
1120
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1121
|
+
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1122
|
+
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
817
1123
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
818
1124
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
819
1125
|
mutation_policy_wanNetwork_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanNetwork.updatePolicy')
|
|
@@ -833,6 +1139,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
833
1139
|
mutation_policy_wanFirewall_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
834
1140
|
mutation_policy_wanFirewall_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
835
1141
|
mutation_policy_wanFirewall_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1142
|
+
mutation_policy_wanFirewall_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1143
|
+
mutation_policy_wanFirewall_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
836
1144
|
mutation_policy_wanFirewall_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
837
1145
|
mutation_policy_wanFirewall_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
838
1146
|
mutation_policy_wanFirewall_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.addRule')
|
|
@@ -846,6 +1154,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
846
1154
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
847
1155
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
848
1156
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1157
|
+
mutation_policy_wanFirewall_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1158
|
+
mutation_policy_wanFirewall_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
849
1159
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
850
1160
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
851
1161
|
mutation_policy_wanFirewall_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.updateRule')
|
|
@@ -859,6 +1169,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
859
1169
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
860
1170
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
861
1171
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1172
|
+
mutation_policy_wanFirewall_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1173
|
+
mutation_policy_wanFirewall_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
862
1174
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
863
1175
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
864
1176
|
mutation_policy_wanFirewall_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.removeRule')
|
|
@@ -872,6 +1184,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
872
1184
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
873
1185
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
874
1186
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1187
|
+
mutation_policy_wanFirewall_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1188
|
+
mutation_policy_wanFirewall_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
875
1189
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
876
1190
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
877
1191
|
mutation_policy_wanFirewall_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.moveRule')
|
|
@@ -885,6 +1199,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
885
1199
|
mutation_policy_wanFirewall_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
886
1200
|
mutation_policy_wanFirewall_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
887
1201
|
mutation_policy_wanFirewall_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1202
|
+
mutation_policy_wanFirewall_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1203
|
+
mutation_policy_wanFirewall_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
888
1204
|
mutation_policy_wanFirewall_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
889
1205
|
mutation_policy_wanFirewall_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
890
1206
|
mutation_policy_wanFirewall_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.addSection')
|
|
@@ -898,6 +1214,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
898
1214
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
899
1215
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
900
1216
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1217
|
+
mutation_policy_wanFirewall_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1218
|
+
mutation_policy_wanFirewall_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
901
1219
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
902
1220
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
903
1221
|
mutation_policy_wanFirewall_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.updateSection')
|
|
@@ -911,6 +1229,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
911
1229
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
912
1230
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
913
1231
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1232
|
+
mutation_policy_wanFirewall_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1233
|
+
mutation_policy_wanFirewall_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
914
1234
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
915
1235
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
916
1236
|
mutation_policy_wanFirewall_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.removeSection')
|
|
@@ -924,6 +1244,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
924
1244
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
925
1245
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
926
1246
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1247
|
+
mutation_policy_wanFirewall_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1248
|
+
mutation_policy_wanFirewall_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
927
1249
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
928
1250
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
929
1251
|
mutation_policy_wanFirewall_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.moveSection')
|
|
@@ -937,6 +1259,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
937
1259
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
938
1260
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
939
1261
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1262
|
+
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1263
|
+
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
940
1264
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
941
1265
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
942
1266
|
mutation_policy_wanFirewall_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.createPolicyRevision')
|
|
@@ -950,6 +1274,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
950
1274
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
951
1275
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
952
1276
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1277
|
+
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1278
|
+
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
953
1279
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
954
1280
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
955
1281
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.publishPolicyRevision')
|
|
@@ -963,6 +1289,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
963
1289
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
964
1290
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
965
1291
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1292
|
+
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1293
|
+
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
966
1294
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
967
1295
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
968
1296
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.discardPolicyRevision')
|
|
@@ -976,6 +1304,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
976
1304
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
977
1305
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
978
1306
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1307
|
+
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1308
|
+
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
979
1309
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
980
1310
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
981
1311
|
mutation_policy_wanFirewall_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.wanFirewall.updatePolicy')
|
|
@@ -995,6 +1325,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
995
1325
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
996
1326
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
997
1327
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1328
|
+
mutation_policy_remotePortFwd_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1329
|
+
mutation_policy_remotePortFwd_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
998
1330
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
999
1331
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1000
1332
|
mutation_policy_remotePortFwd_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.addRule')
|
|
@@ -1008,6 +1340,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1008
1340
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1009
1341
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1010
1342
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1343
|
+
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1344
|
+
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1011
1345
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1012
1346
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1013
1347
|
mutation_policy_remotePortFwd_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.updateRule')
|
|
@@ -1021,6 +1355,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1021
1355
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1022
1356
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1023
1357
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1358
|
+
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1359
|
+
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1024
1360
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1025
1361
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1026
1362
|
mutation_policy_remotePortFwd_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.removeRule')
|
|
@@ -1034,6 +1370,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1034
1370
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1035
1371
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1036
1372
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1373
|
+
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1374
|
+
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1037
1375
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1038
1376
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1039
1377
|
mutation_policy_remotePortFwd_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.moveRule')
|
|
@@ -1047,6 +1385,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1047
1385
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1048
1386
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1049
1387
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1388
|
+
mutation_policy_remotePortFwd_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1389
|
+
mutation_policy_remotePortFwd_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1050
1390
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1051
1391
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1052
1392
|
mutation_policy_remotePortFwd_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.addSection')
|
|
@@ -1060,6 +1400,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1060
1400
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1061
1401
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1062
1402
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1403
|
+
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1404
|
+
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1063
1405
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1064
1406
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1065
1407
|
mutation_policy_remotePortFwd_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.updateSection')
|
|
@@ -1073,6 +1415,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1073
1415
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1074
1416
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1075
1417
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1418
|
+
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1419
|
+
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1076
1420
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1077
1421
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1078
1422
|
mutation_policy_remotePortFwd_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.removeSection')
|
|
@@ -1086,6 +1430,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1086
1430
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1087
1431
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1088
1432
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1433
|
+
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1434
|
+
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1089
1435
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1090
1436
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1091
1437
|
mutation_policy_remotePortFwd_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.moveSection')
|
|
@@ -1099,6 +1445,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1099
1445
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1100
1446
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1101
1447
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1448
|
+
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1449
|
+
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1102
1450
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1103
1451
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1104
1452
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.createPolicyRevision')
|
|
@@ -1112,6 +1460,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1112
1460
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1113
1461
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1114
1462
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1463
|
+
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1464
|
+
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1115
1465
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1116
1466
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1117
1467
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.publishPolicyRevision')
|
|
@@ -1125,6 +1475,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1125
1475
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1126
1476
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1127
1477
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1478
|
+
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1479
|
+
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1128
1480
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1129
1481
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1130
1482
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.discardPolicyRevision')
|
|
@@ -1138,6 +1490,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1138
1490
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1139
1491
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1140
1492
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1493
|
+
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1494
|
+
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1141
1495
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1142
1496
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1143
1497
|
mutation_policy_remotePortFwd_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.remotePortFwd.updatePolicy')
|
|
@@ -1157,6 +1511,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1157
1511
|
mutation_policy_internetFirewall_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1158
1512
|
mutation_policy_internetFirewall_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1159
1513
|
mutation_policy_internetFirewall_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1514
|
+
mutation_policy_internetFirewall_addRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1515
|
+
mutation_policy_internetFirewall_addRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1160
1516
|
mutation_policy_internetFirewall_addRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1161
1517
|
mutation_policy_internetFirewall_addRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1162
1518
|
mutation_policy_internetFirewall_addRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.addRule')
|
|
@@ -1170,6 +1526,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1170
1526
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1171
1527
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1172
1528
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1529
|
+
mutation_policy_internetFirewall_updateRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1530
|
+
mutation_policy_internetFirewall_updateRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1173
1531
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1174
1532
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1175
1533
|
mutation_policy_internetFirewall_updateRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.updateRule')
|
|
@@ -1183,6 +1541,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1183
1541
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1184
1542
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1185
1543
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1544
|
+
mutation_policy_internetFirewall_removeRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1545
|
+
mutation_policy_internetFirewall_removeRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1186
1546
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1187
1547
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1188
1548
|
mutation_policy_internetFirewall_removeRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.removeRule')
|
|
@@ -1196,6 +1556,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1196
1556
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1197
1557
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1198
1558
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1559
|
+
mutation_policy_internetFirewall_moveRule_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1560
|
+
mutation_policy_internetFirewall_moveRule_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1199
1561
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1200
1562
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1201
1563
|
mutation_policy_internetFirewall_moveRule_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.moveRule')
|
|
@@ -1209,6 +1571,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1209
1571
|
mutation_policy_internetFirewall_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1210
1572
|
mutation_policy_internetFirewall_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1211
1573
|
mutation_policy_internetFirewall_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1574
|
+
mutation_policy_internetFirewall_addSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1575
|
+
mutation_policy_internetFirewall_addSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1212
1576
|
mutation_policy_internetFirewall_addSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1213
1577
|
mutation_policy_internetFirewall_addSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1214
1578
|
mutation_policy_internetFirewall_addSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.addSection')
|
|
@@ -1222,6 +1586,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1222
1586
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1223
1587
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1224
1588
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1589
|
+
mutation_policy_internetFirewall_updateSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1590
|
+
mutation_policy_internetFirewall_updateSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1225
1591
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1226
1592
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1227
1593
|
mutation_policy_internetFirewall_updateSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.updateSection')
|
|
@@ -1235,6 +1601,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1235
1601
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1236
1602
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1237
1603
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1604
|
+
mutation_policy_internetFirewall_removeSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1605
|
+
mutation_policy_internetFirewall_removeSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1238
1606
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1239
1607
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1240
1608
|
mutation_policy_internetFirewall_removeSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.removeSection')
|
|
@@ -1248,6 +1616,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1248
1616
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1249
1617
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1250
1618
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1619
|
+
mutation_policy_internetFirewall_moveSection_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1620
|
+
mutation_policy_internetFirewall_moveSection_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1251
1621
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1252
1622
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1253
1623
|
mutation_policy_internetFirewall_moveSection_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.moveSection')
|
|
@@ -1261,6 +1631,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1261
1631
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1262
1632
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1263
1633
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1634
|
+
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1635
|
+
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1264
1636
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1265
1637
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1266
1638
|
mutation_policy_internetFirewall_createPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.createPolicyRevision')
|
|
@@ -1274,6 +1646,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1274
1646
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1275
1647
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1276
1648
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1649
|
+
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1650
|
+
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1277
1651
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1278
1652
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1279
1653
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.publishPolicyRevision')
|
|
@@ -1287,6 +1661,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1287
1661
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1288
1662
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1289
1663
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1664
|
+
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1665
|
+
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1290
1666
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1291
1667
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1292
1668
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.discardPolicyRevision')
|
|
@@ -1300,6 +1676,8 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1300
1676
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1301
1677
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1302
1678
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1679
|
+
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-n', '--stream-events', dest='stream_events', help='Send events over network to host:port TCP')
|
|
1680
|
+
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
|
|
1303
1681
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
|
|
1304
1682
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
|
|
1305
1683
|
mutation_policy_internetFirewall_updatePolicy_parser.set_defaults(func=createRequest,operation_name='mutation.policy.internetFirewall.updatePolicy')
|