catocli 2.0.2__py3-none-any.whl → 2.0.3__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 +4 -1
- catocli/__init__.py +1 -1
- catocli/parsers/custom/__init__.py +4 -3
- catocli/parsers/custom/customLib.py +239 -1
- catocli/parsers/custom/export_rules/export_rules.py +1 -1
- catocli/parsers/custom/export_sites/export_sites.py +186 -54
- catocli/parsers/custom/import_rules_to_tf/__init__.py +1 -1
- catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +1 -137
- catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
- catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
- catocli/parsers/mutation_accountManagement/__init__.py +6 -6
- catocli/parsers/mutation_admin/__init__.py +6 -6
- catocli/parsers/mutation_container/__init__.py +2 -2
- catocli/parsers/mutation_hardware/__init__.py +2 -2
- catocli/parsers/mutation_policy/__init__.py +192 -192
- catocli/parsers/mutation_sandbox/__init__.py +4 -4
- catocli/parsers/mutation_site/__init__.py +56 -56
- catocli/parsers/mutation_sites/__init__.py +56 -56
- catocli/parsers/mutation_xdr/__init__.py +6 -6
- catocli/parsers/parserApiClient.py +36 -11
- catocli/parsers/query_accountBySubdomain/__init__.py +2 -2
- catocli/parsers/query_accountManagement/__init__.py +2 -2
- catocli/parsers/query_accountMetrics/__init__.py +2 -2
- catocli/parsers/query_accountRoles/__init__.py +2 -2
- catocli/parsers/query_accountSnapshot/__init__.py +2 -2
- catocli/parsers/query_admin/__init__.py +2 -2
- catocli/parsers/query_admins/__init__.py +2 -2
- catocli/parsers/query_appStats/__init__.py +2 -2
- catocli/parsers/query_appStatsTimeSeries/__init__.py +2 -2
- catocli/parsers/query_auditFeed/__init__.py +2 -2
- catocli/parsers/query_catalogs/__init__.py +2 -2
- catocli/parsers/query_container/__init__.py +2 -2
- catocli/parsers/query_devices/__init__.py +2 -2
- catocli/parsers/query_entityLookup/__init__.py +2 -2
- catocli/parsers/query_events/__init__.py +2 -2
- catocli/parsers/query_eventsFeed/__init__.py +2 -2
- catocli/parsers/query_eventsTimeSeries/__init__.py +2 -2
- catocli/parsers/query_hardware/__init__.py +2 -2
- catocli/parsers/query_hardwareManagement/__init__.py +2 -2
- catocli/parsers/query_licensing/__init__.py +2 -2
- catocli/parsers/query_policy/__init__.py +2 -2
- catocli/parsers/query_sandbox/__init__.py +2 -2
- catocli/parsers/query_site/__init__.py +2 -2
- catocli/parsers/query_siteLocation/__init__.py +2 -2
- catocli/parsers/query_subDomains/__init__.py +2 -2
- catocli/parsers/query_xdr/__init__.py +4 -4
- catocli/parsers/raw/README.md +4 -0
- catocli/parsers/raw/__init__.py +3 -2
- {catocli-2.0.2.dist-info → catocli-2.0.3.dist-info}/METADATA +1 -1
- {catocli-2.0.2.dist-info → catocli-2.0.3.dist-info}/RECORD +55 -53
- schema/catolib.py +14 -9
- {catocli-2.0.2.dist-info → catocli-2.0.3.dist-info}/LICENSE +0 -0
- {catocli-2.0.2.dist-info → catocli-2.0.3.dist-info}/WHEEL +0 -0
- {catocli-2.0.2.dist-info → catocli-2.0.3.dist-info}/entry_points.txt +0 -0
- {catocli-2.0.2.dist-info → catocli-2.0.3.dist-info}/top_level.txt +0 -0
|
@@ -18,9 +18,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
18
18
|
help='addRule() appTenantRestriction operation',
|
|
19
19
|
usage=get_help("mutation_policy_appTenantRestriction_addRule"))
|
|
20
20
|
|
|
21
|
-
mutation_policy_appTenantRestriction_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
21
|
+
mutation_policy_appTenantRestriction_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
22
22
|
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
23
|
-
mutation_policy_appTenantRestriction_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
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
26
|
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.')
|
|
@@ -31,9 +31,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
31
31
|
help='addSection() appTenantRestriction operation',
|
|
32
32
|
usage=get_help("mutation_policy_appTenantRestriction_addSection"))
|
|
33
33
|
|
|
34
|
-
mutation_policy_appTenantRestriction_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
34
|
+
mutation_policy_appTenantRestriction_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
35
35
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
36
|
-
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
36
|
+
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
37
37
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
38
38
|
mutation_policy_appTenantRestriction_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
39
39
|
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.')
|
|
@@ -44,9 +44,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
44
44
|
help='createPolicyRevision() appTenantRestriction operation',
|
|
45
45
|
usage=get_help("mutation_policy_appTenantRestriction_createPolicyRevision"))
|
|
46
46
|
|
|
47
|
-
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
47
|
+
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
48
48
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
49
|
-
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
49
|
+
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
50
50
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
51
51
|
mutation_policy_appTenantRestriction_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
52
52
|
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.')
|
|
@@ -57,9 +57,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
57
57
|
help='discardPolicyRevision() appTenantRestriction operation',
|
|
58
58
|
usage=get_help("mutation_policy_appTenantRestriction_discardPolicyRevision"))
|
|
59
59
|
|
|
60
|
-
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
60
|
+
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
61
61
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
62
|
-
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
62
|
+
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
63
63
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
64
64
|
mutation_policy_appTenantRestriction_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
65
65
|
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.')
|
|
@@ -70,9 +70,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
70
70
|
help='moveRule() appTenantRestriction operation',
|
|
71
71
|
usage=get_help("mutation_policy_appTenantRestriction_moveRule"))
|
|
72
72
|
|
|
73
|
-
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
73
|
+
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
74
74
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
75
|
-
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
75
|
+
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
76
76
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
77
77
|
mutation_policy_appTenantRestriction_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
78
78
|
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.')
|
|
@@ -83,9 +83,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
83
83
|
help='moveSection() appTenantRestriction operation',
|
|
84
84
|
usage=get_help("mutation_policy_appTenantRestriction_moveSection"))
|
|
85
85
|
|
|
86
|
-
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
86
|
+
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
87
87
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
88
|
-
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
88
|
+
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
89
89
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
90
90
|
mutation_policy_appTenantRestriction_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
91
91
|
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.')
|
|
@@ -96,9 +96,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
96
96
|
help='publishPolicyRevision() appTenantRestriction operation',
|
|
97
97
|
usage=get_help("mutation_policy_appTenantRestriction_publishPolicyRevision"))
|
|
98
98
|
|
|
99
|
-
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
99
|
+
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
100
100
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
101
|
-
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
101
|
+
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
102
102
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
103
103
|
mutation_policy_appTenantRestriction_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
104
104
|
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.')
|
|
@@ -109,9 +109,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
109
109
|
help='removeRule() appTenantRestriction operation',
|
|
110
110
|
usage=get_help("mutation_policy_appTenantRestriction_removeRule"))
|
|
111
111
|
|
|
112
|
-
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
112
|
+
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
113
113
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
114
|
-
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
114
|
+
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
115
115
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
116
116
|
mutation_policy_appTenantRestriction_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
117
117
|
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.')
|
|
@@ -122,9 +122,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
122
122
|
help='removeSection() appTenantRestriction operation',
|
|
123
123
|
usage=get_help("mutation_policy_appTenantRestriction_removeSection"))
|
|
124
124
|
|
|
125
|
-
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
125
|
+
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
126
126
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
127
|
-
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
127
|
+
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
128
128
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
129
129
|
mutation_policy_appTenantRestriction_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
130
130
|
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.')
|
|
@@ -135,9 +135,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
135
135
|
help='updatePolicy() appTenantRestriction operation',
|
|
136
136
|
usage=get_help("mutation_policy_appTenantRestriction_updatePolicy"))
|
|
137
137
|
|
|
138
|
-
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
138
|
+
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
139
139
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
140
|
-
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
140
|
+
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
141
141
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
142
142
|
mutation_policy_appTenantRestriction_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
143
143
|
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.')
|
|
@@ -148,9 +148,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
148
148
|
help='updateRule() appTenantRestriction operation',
|
|
149
149
|
usage=get_help("mutation_policy_appTenantRestriction_updateRule"))
|
|
150
150
|
|
|
151
|
-
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
151
|
+
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
152
152
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
153
|
-
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
153
|
+
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
154
154
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
155
155
|
mutation_policy_appTenantRestriction_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
156
156
|
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.')
|
|
@@ -161,9 +161,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
161
161
|
help='updateSection() appTenantRestriction operation',
|
|
162
162
|
usage=get_help("mutation_policy_appTenantRestriction_updateSection"))
|
|
163
163
|
|
|
164
|
-
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
164
|
+
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
165
165
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
166
|
-
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
166
|
+
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
167
167
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
168
168
|
mutation_policy_appTenantRestriction_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
169
169
|
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.')
|
|
@@ -180,9 +180,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
180
180
|
help='addRule() dynamicIpAllocation operation',
|
|
181
181
|
usage=get_help("mutation_policy_dynamicIpAllocation_addRule"))
|
|
182
182
|
|
|
183
|
-
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
183
|
+
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
184
184
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
185
|
-
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
185
|
+
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
186
186
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
187
187
|
mutation_policy_dynamicIpAllocation_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
188
188
|
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.')
|
|
@@ -193,9 +193,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
193
193
|
help='addSection() dynamicIpAllocation operation',
|
|
194
194
|
usage=get_help("mutation_policy_dynamicIpAllocation_addSection"))
|
|
195
195
|
|
|
196
|
-
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
196
|
+
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
197
197
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
198
|
-
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
198
|
+
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
199
199
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
200
200
|
mutation_policy_dynamicIpAllocation_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
201
201
|
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.')
|
|
@@ -206,9 +206,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
206
206
|
help='createPolicyRevision() dynamicIpAllocation operation',
|
|
207
207
|
usage=get_help("mutation_policy_dynamicIpAllocation_createPolicyRevision"))
|
|
208
208
|
|
|
209
|
-
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
209
|
+
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
210
210
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
211
|
-
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
211
|
+
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
212
212
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
213
213
|
mutation_policy_dynamicIpAllocation_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
214
214
|
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.')
|
|
@@ -219,9 +219,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
219
219
|
help='discardPolicyRevision() dynamicIpAllocation operation',
|
|
220
220
|
usage=get_help("mutation_policy_dynamicIpAllocation_discardPolicyRevision"))
|
|
221
221
|
|
|
222
|
-
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
222
|
+
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
223
223
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
224
|
-
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
224
|
+
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
225
225
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
226
226
|
mutation_policy_dynamicIpAllocation_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
227
227
|
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.')
|
|
@@ -232,9 +232,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
232
232
|
help='moveRule() dynamicIpAllocation operation',
|
|
233
233
|
usage=get_help("mutation_policy_dynamicIpAllocation_moveRule"))
|
|
234
234
|
|
|
235
|
-
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
235
|
+
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
236
236
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
237
|
-
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
237
|
+
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
238
238
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
239
239
|
mutation_policy_dynamicIpAllocation_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
240
240
|
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.')
|
|
@@ -245,9 +245,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
245
245
|
help='moveSection() dynamicIpAllocation operation',
|
|
246
246
|
usage=get_help("mutation_policy_dynamicIpAllocation_moveSection"))
|
|
247
247
|
|
|
248
|
-
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
248
|
+
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
249
249
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
250
|
-
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
250
|
+
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
251
251
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
252
252
|
mutation_policy_dynamicIpAllocation_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
253
253
|
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.')
|
|
@@ -258,9 +258,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
258
258
|
help='publishPolicyRevision() dynamicIpAllocation operation',
|
|
259
259
|
usage=get_help("mutation_policy_dynamicIpAllocation_publishPolicyRevision"))
|
|
260
260
|
|
|
261
|
-
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
261
|
+
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
262
262
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
263
|
-
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
263
|
+
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
264
264
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
265
265
|
mutation_policy_dynamicIpAllocation_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
266
266
|
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.')
|
|
@@ -271,9 +271,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
271
271
|
help='removeRule() dynamicIpAllocation operation',
|
|
272
272
|
usage=get_help("mutation_policy_dynamicIpAllocation_removeRule"))
|
|
273
273
|
|
|
274
|
-
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
274
|
+
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
275
275
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
276
|
-
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
276
|
+
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
277
277
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
278
278
|
mutation_policy_dynamicIpAllocation_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
279
279
|
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.')
|
|
@@ -284,9 +284,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
284
284
|
help='removeSection() dynamicIpAllocation operation',
|
|
285
285
|
usage=get_help("mutation_policy_dynamicIpAllocation_removeSection"))
|
|
286
286
|
|
|
287
|
-
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
287
|
+
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
288
288
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
289
|
-
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
289
|
+
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
290
290
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
291
291
|
mutation_policy_dynamicIpAllocation_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
292
292
|
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.')
|
|
@@ -297,9 +297,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
297
297
|
help='updatePolicy() dynamicIpAllocation operation',
|
|
298
298
|
usage=get_help("mutation_policy_dynamicIpAllocation_updatePolicy"))
|
|
299
299
|
|
|
300
|
-
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
300
|
+
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
301
301
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
302
|
-
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
302
|
+
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
303
303
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
304
304
|
mutation_policy_dynamicIpAllocation_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
305
305
|
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.')
|
|
@@ -310,9 +310,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
310
310
|
help='updateRule() dynamicIpAllocation operation',
|
|
311
311
|
usage=get_help("mutation_policy_dynamicIpAllocation_updateRule"))
|
|
312
312
|
|
|
313
|
-
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
313
|
+
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
314
314
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
315
|
-
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
315
|
+
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
316
316
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
317
317
|
mutation_policy_dynamicIpAllocation_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
318
318
|
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.')
|
|
@@ -323,9 +323,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
323
323
|
help='updateSection() dynamicIpAllocation operation',
|
|
324
324
|
usage=get_help("mutation_policy_dynamicIpAllocation_updateSection"))
|
|
325
325
|
|
|
326
|
-
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
326
|
+
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
327
327
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
328
|
-
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
328
|
+
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
329
329
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
330
330
|
mutation_policy_dynamicIpAllocation_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
331
331
|
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.')
|
|
@@ -342,9 +342,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
342
342
|
help='addRule() internetFirewall operation',
|
|
343
343
|
usage=get_help("mutation_policy_internetFirewall_addRule"))
|
|
344
344
|
|
|
345
|
-
mutation_policy_internetFirewall_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
345
|
+
mutation_policy_internetFirewall_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
346
346
|
mutation_policy_internetFirewall_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
347
|
-
mutation_policy_internetFirewall_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
347
|
+
mutation_policy_internetFirewall_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
348
348
|
mutation_policy_internetFirewall_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
349
349
|
mutation_policy_internetFirewall_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
350
350
|
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.')
|
|
@@ -355,9 +355,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
355
355
|
help='addSection() internetFirewall operation',
|
|
356
356
|
usage=get_help("mutation_policy_internetFirewall_addSection"))
|
|
357
357
|
|
|
358
|
-
mutation_policy_internetFirewall_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
358
|
+
mutation_policy_internetFirewall_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
359
359
|
mutation_policy_internetFirewall_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
360
|
-
mutation_policy_internetFirewall_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
360
|
+
mutation_policy_internetFirewall_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
361
361
|
mutation_policy_internetFirewall_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
362
362
|
mutation_policy_internetFirewall_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
363
363
|
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.')
|
|
@@ -368,9 +368,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
368
368
|
help='createPolicyRevision() internetFirewall operation',
|
|
369
369
|
usage=get_help("mutation_policy_internetFirewall_createPolicyRevision"))
|
|
370
370
|
|
|
371
|
-
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
371
|
+
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
372
372
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
373
|
-
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
373
|
+
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
374
374
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
375
375
|
mutation_policy_internetFirewall_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
376
376
|
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.')
|
|
@@ -381,9 +381,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
381
381
|
help='discardPolicyRevision() internetFirewall operation',
|
|
382
382
|
usage=get_help("mutation_policy_internetFirewall_discardPolicyRevision"))
|
|
383
383
|
|
|
384
|
-
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
384
|
+
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
385
385
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
386
|
-
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
386
|
+
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
387
387
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
388
388
|
mutation_policy_internetFirewall_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
389
389
|
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.')
|
|
@@ -394,9 +394,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
394
394
|
help='moveRule() internetFirewall operation',
|
|
395
395
|
usage=get_help("mutation_policy_internetFirewall_moveRule"))
|
|
396
396
|
|
|
397
|
-
mutation_policy_internetFirewall_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
397
|
+
mutation_policy_internetFirewall_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
398
398
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
399
|
-
mutation_policy_internetFirewall_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
399
|
+
mutation_policy_internetFirewall_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
400
400
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
401
401
|
mutation_policy_internetFirewall_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
402
402
|
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.')
|
|
@@ -407,9 +407,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
407
407
|
help='moveSection() internetFirewall operation',
|
|
408
408
|
usage=get_help("mutation_policy_internetFirewall_moveSection"))
|
|
409
409
|
|
|
410
|
-
mutation_policy_internetFirewall_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
410
|
+
mutation_policy_internetFirewall_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
411
411
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
412
|
-
mutation_policy_internetFirewall_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
412
|
+
mutation_policy_internetFirewall_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
413
413
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
414
414
|
mutation_policy_internetFirewall_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
415
415
|
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.')
|
|
@@ -420,9 +420,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
420
420
|
help='publishPolicyRevision() internetFirewall operation',
|
|
421
421
|
usage=get_help("mutation_policy_internetFirewall_publishPolicyRevision"))
|
|
422
422
|
|
|
423
|
-
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
423
|
+
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
424
424
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
425
|
-
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
425
|
+
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
426
426
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
427
427
|
mutation_policy_internetFirewall_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
428
428
|
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.')
|
|
@@ -433,9 +433,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
433
433
|
help='removeRule() internetFirewall operation',
|
|
434
434
|
usage=get_help("mutation_policy_internetFirewall_removeRule"))
|
|
435
435
|
|
|
436
|
-
mutation_policy_internetFirewall_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
436
|
+
mutation_policy_internetFirewall_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
437
437
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
438
|
-
mutation_policy_internetFirewall_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
438
|
+
mutation_policy_internetFirewall_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
439
439
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
440
440
|
mutation_policy_internetFirewall_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
441
441
|
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.')
|
|
@@ -446,9 +446,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
446
446
|
help='removeSection() internetFirewall operation',
|
|
447
447
|
usage=get_help("mutation_policy_internetFirewall_removeSection"))
|
|
448
448
|
|
|
449
|
-
mutation_policy_internetFirewall_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
449
|
+
mutation_policy_internetFirewall_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
450
450
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
451
|
-
mutation_policy_internetFirewall_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
451
|
+
mutation_policy_internetFirewall_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
452
452
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
453
453
|
mutation_policy_internetFirewall_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
454
454
|
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.')
|
|
@@ -459,9 +459,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
459
459
|
help='updatePolicy() internetFirewall operation',
|
|
460
460
|
usage=get_help("mutation_policy_internetFirewall_updatePolicy"))
|
|
461
461
|
|
|
462
|
-
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
462
|
+
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
463
463
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
464
|
-
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
464
|
+
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
465
465
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
466
466
|
mutation_policy_internetFirewall_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
467
467
|
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.')
|
|
@@ -472,9 +472,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
472
472
|
help='updateRule() internetFirewall operation',
|
|
473
473
|
usage=get_help("mutation_policy_internetFirewall_updateRule"))
|
|
474
474
|
|
|
475
|
-
mutation_policy_internetFirewall_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
475
|
+
mutation_policy_internetFirewall_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
476
476
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
477
|
-
mutation_policy_internetFirewall_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
477
|
+
mutation_policy_internetFirewall_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
478
478
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
479
479
|
mutation_policy_internetFirewall_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
480
480
|
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.')
|
|
@@ -485,9 +485,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
485
485
|
help='updateSection() internetFirewall operation',
|
|
486
486
|
usage=get_help("mutation_policy_internetFirewall_updateSection"))
|
|
487
487
|
|
|
488
|
-
mutation_policy_internetFirewall_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
488
|
+
mutation_policy_internetFirewall_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
489
489
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
490
|
-
mutation_policy_internetFirewall_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
490
|
+
mutation_policy_internetFirewall_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
491
491
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
492
492
|
mutation_policy_internetFirewall_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
493
493
|
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.')
|
|
@@ -504,9 +504,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
504
504
|
help='addRule() remotePortFwd operation',
|
|
505
505
|
usage=get_help("mutation_policy_remotePortFwd_addRule"))
|
|
506
506
|
|
|
507
|
-
mutation_policy_remotePortFwd_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
507
|
+
mutation_policy_remotePortFwd_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
508
508
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
509
|
-
mutation_policy_remotePortFwd_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
509
|
+
mutation_policy_remotePortFwd_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
510
510
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
511
511
|
mutation_policy_remotePortFwd_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
512
512
|
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.')
|
|
@@ -517,9 +517,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
517
517
|
help='addSection() remotePortFwd operation',
|
|
518
518
|
usage=get_help("mutation_policy_remotePortFwd_addSection"))
|
|
519
519
|
|
|
520
|
-
mutation_policy_remotePortFwd_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
520
|
+
mutation_policy_remotePortFwd_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
521
521
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
522
|
-
mutation_policy_remotePortFwd_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
522
|
+
mutation_policy_remotePortFwd_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
523
523
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
524
524
|
mutation_policy_remotePortFwd_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
525
525
|
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.')
|
|
@@ -530,9 +530,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
530
530
|
help='createPolicyRevision() remotePortFwd operation',
|
|
531
531
|
usage=get_help("mutation_policy_remotePortFwd_createPolicyRevision"))
|
|
532
532
|
|
|
533
|
-
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
533
|
+
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
534
534
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
535
|
-
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
535
|
+
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
536
536
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
537
537
|
mutation_policy_remotePortFwd_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
538
538
|
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.')
|
|
@@ -543,9 +543,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
543
543
|
help='discardPolicyRevision() remotePortFwd operation',
|
|
544
544
|
usage=get_help("mutation_policy_remotePortFwd_discardPolicyRevision"))
|
|
545
545
|
|
|
546
|
-
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
546
|
+
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
547
547
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
548
|
-
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
548
|
+
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
549
549
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
550
550
|
mutation_policy_remotePortFwd_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
551
551
|
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.')
|
|
@@ -556,9 +556,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
556
556
|
help='moveRule() remotePortFwd operation',
|
|
557
557
|
usage=get_help("mutation_policy_remotePortFwd_moveRule"))
|
|
558
558
|
|
|
559
|
-
mutation_policy_remotePortFwd_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
559
|
+
mutation_policy_remotePortFwd_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
560
560
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
561
|
-
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
561
|
+
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
562
562
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
563
563
|
mutation_policy_remotePortFwd_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
564
564
|
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.')
|
|
@@ -569,9 +569,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
569
569
|
help='moveSection() remotePortFwd operation',
|
|
570
570
|
usage=get_help("mutation_policy_remotePortFwd_moveSection"))
|
|
571
571
|
|
|
572
|
-
mutation_policy_remotePortFwd_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
572
|
+
mutation_policy_remotePortFwd_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
573
573
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
574
|
-
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
574
|
+
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
575
575
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
576
576
|
mutation_policy_remotePortFwd_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
577
577
|
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.')
|
|
@@ -582,9 +582,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
582
582
|
help='publishPolicyRevision() remotePortFwd operation',
|
|
583
583
|
usage=get_help("mutation_policy_remotePortFwd_publishPolicyRevision"))
|
|
584
584
|
|
|
585
|
-
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
585
|
+
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
586
586
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
587
|
-
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
587
|
+
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
588
588
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
589
589
|
mutation_policy_remotePortFwd_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
590
590
|
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.')
|
|
@@ -595,9 +595,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
595
595
|
help='removeRule() remotePortFwd operation',
|
|
596
596
|
usage=get_help("mutation_policy_remotePortFwd_removeRule"))
|
|
597
597
|
|
|
598
|
-
mutation_policy_remotePortFwd_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
598
|
+
mutation_policy_remotePortFwd_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
599
599
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
600
|
-
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
600
|
+
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
601
601
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
602
602
|
mutation_policy_remotePortFwd_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
603
603
|
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.')
|
|
@@ -608,9 +608,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
608
608
|
help='removeSection() remotePortFwd operation',
|
|
609
609
|
usage=get_help("mutation_policy_remotePortFwd_removeSection"))
|
|
610
610
|
|
|
611
|
-
mutation_policy_remotePortFwd_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
611
|
+
mutation_policy_remotePortFwd_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
612
612
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
613
|
-
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
613
|
+
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
614
614
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
615
615
|
mutation_policy_remotePortFwd_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
616
616
|
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.')
|
|
@@ -621,9 +621,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
621
621
|
help='updatePolicy() remotePortFwd operation',
|
|
622
622
|
usage=get_help("mutation_policy_remotePortFwd_updatePolicy"))
|
|
623
623
|
|
|
624
|
-
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
624
|
+
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
625
625
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
626
|
-
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
626
|
+
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
627
627
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
628
628
|
mutation_policy_remotePortFwd_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
629
629
|
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.')
|
|
@@ -634,9 +634,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
634
634
|
help='updateRule() remotePortFwd operation',
|
|
635
635
|
usage=get_help("mutation_policy_remotePortFwd_updateRule"))
|
|
636
636
|
|
|
637
|
-
mutation_policy_remotePortFwd_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
637
|
+
mutation_policy_remotePortFwd_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
638
638
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
639
|
-
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
639
|
+
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
640
640
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
641
641
|
mutation_policy_remotePortFwd_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
642
642
|
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.')
|
|
@@ -647,9 +647,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
647
647
|
help='updateSection() remotePortFwd operation',
|
|
648
648
|
usage=get_help("mutation_policy_remotePortFwd_updateSection"))
|
|
649
649
|
|
|
650
|
-
mutation_policy_remotePortFwd_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
650
|
+
mutation_policy_remotePortFwd_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
651
651
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
652
|
-
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
652
|
+
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
653
653
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
654
654
|
mutation_policy_remotePortFwd_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
655
655
|
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.')
|
|
@@ -666,9 +666,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
666
666
|
help='addRule() socketLan operation',
|
|
667
667
|
usage=get_help("mutation_policy_socketLan_addRule"))
|
|
668
668
|
|
|
669
|
-
mutation_policy_socketLan_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
669
|
+
mutation_policy_socketLan_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
670
670
|
mutation_policy_socketLan_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
671
|
-
mutation_policy_socketLan_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
671
|
+
mutation_policy_socketLan_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
672
672
|
mutation_policy_socketLan_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
673
673
|
mutation_policy_socketLan_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
674
674
|
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.')
|
|
@@ -679,9 +679,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
679
679
|
help='addSection() socketLan operation',
|
|
680
680
|
usage=get_help("mutation_policy_socketLan_addSection"))
|
|
681
681
|
|
|
682
|
-
mutation_policy_socketLan_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
682
|
+
mutation_policy_socketLan_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
683
683
|
mutation_policy_socketLan_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
684
|
-
mutation_policy_socketLan_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
684
|
+
mutation_policy_socketLan_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
685
685
|
mutation_policy_socketLan_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
686
686
|
mutation_policy_socketLan_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
687
687
|
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.')
|
|
@@ -692,9 +692,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
692
692
|
help='createPolicyRevision() socketLan operation',
|
|
693
693
|
usage=get_help("mutation_policy_socketLan_createPolicyRevision"))
|
|
694
694
|
|
|
695
|
-
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
695
|
+
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
696
696
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
697
|
-
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
697
|
+
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
698
698
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
699
699
|
mutation_policy_socketLan_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
700
700
|
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.')
|
|
@@ -705,9 +705,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
705
705
|
help='discardPolicyRevision() socketLan operation',
|
|
706
706
|
usage=get_help("mutation_policy_socketLan_discardPolicyRevision"))
|
|
707
707
|
|
|
708
|
-
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
708
|
+
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
709
709
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
710
|
-
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
710
|
+
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
711
711
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
712
712
|
mutation_policy_socketLan_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
713
713
|
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.')
|
|
@@ -718,9 +718,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
718
718
|
help='moveRule() socketLan operation',
|
|
719
719
|
usage=get_help("mutation_policy_socketLan_moveRule"))
|
|
720
720
|
|
|
721
|
-
mutation_policy_socketLan_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
721
|
+
mutation_policy_socketLan_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
722
722
|
mutation_policy_socketLan_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
723
|
-
mutation_policy_socketLan_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
723
|
+
mutation_policy_socketLan_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
724
724
|
mutation_policy_socketLan_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
725
725
|
mutation_policy_socketLan_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
726
726
|
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.')
|
|
@@ -731,9 +731,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
731
731
|
help='moveSection() socketLan operation',
|
|
732
732
|
usage=get_help("mutation_policy_socketLan_moveSection"))
|
|
733
733
|
|
|
734
|
-
mutation_policy_socketLan_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
734
|
+
mutation_policy_socketLan_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
735
735
|
mutation_policy_socketLan_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
736
|
-
mutation_policy_socketLan_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
736
|
+
mutation_policy_socketLan_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
737
737
|
mutation_policy_socketLan_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
738
738
|
mutation_policy_socketLan_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
739
739
|
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.')
|
|
@@ -744,9 +744,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
744
744
|
help='publishPolicyRevision() socketLan operation',
|
|
745
745
|
usage=get_help("mutation_policy_socketLan_publishPolicyRevision"))
|
|
746
746
|
|
|
747
|
-
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
747
|
+
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
748
748
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
749
|
-
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
749
|
+
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
750
750
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
751
751
|
mutation_policy_socketLan_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
752
752
|
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.')
|
|
@@ -757,9 +757,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
757
757
|
help='removeRule() socketLan operation',
|
|
758
758
|
usage=get_help("mutation_policy_socketLan_removeRule"))
|
|
759
759
|
|
|
760
|
-
mutation_policy_socketLan_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
760
|
+
mutation_policy_socketLan_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
761
761
|
mutation_policy_socketLan_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
762
|
-
mutation_policy_socketLan_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
762
|
+
mutation_policy_socketLan_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
763
763
|
mutation_policy_socketLan_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
764
764
|
mutation_policy_socketLan_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
765
765
|
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.')
|
|
@@ -770,9 +770,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
770
770
|
help='removeSection() socketLan operation',
|
|
771
771
|
usage=get_help("mutation_policy_socketLan_removeSection"))
|
|
772
772
|
|
|
773
|
-
mutation_policy_socketLan_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
773
|
+
mutation_policy_socketLan_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
774
774
|
mutation_policy_socketLan_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
775
|
-
mutation_policy_socketLan_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
775
|
+
mutation_policy_socketLan_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
776
776
|
mutation_policy_socketLan_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
777
777
|
mutation_policy_socketLan_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
778
778
|
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.')
|
|
@@ -783,9 +783,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
783
783
|
help='updatePolicy() socketLan operation',
|
|
784
784
|
usage=get_help("mutation_policy_socketLan_updatePolicy"))
|
|
785
785
|
|
|
786
|
-
mutation_policy_socketLan_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
786
|
+
mutation_policy_socketLan_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
787
787
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
788
|
-
mutation_policy_socketLan_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
788
|
+
mutation_policy_socketLan_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
789
789
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
790
790
|
mutation_policy_socketLan_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
791
791
|
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.')
|
|
@@ -796,9 +796,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
796
796
|
help='updateRule() socketLan operation',
|
|
797
797
|
usage=get_help("mutation_policy_socketLan_updateRule"))
|
|
798
798
|
|
|
799
|
-
mutation_policy_socketLan_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
799
|
+
mutation_policy_socketLan_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
800
800
|
mutation_policy_socketLan_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
801
|
-
mutation_policy_socketLan_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
801
|
+
mutation_policy_socketLan_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
802
802
|
mutation_policy_socketLan_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
803
803
|
mutation_policy_socketLan_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
804
804
|
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.')
|
|
@@ -809,9 +809,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
809
809
|
help='updateSection() socketLan operation',
|
|
810
810
|
usage=get_help("mutation_policy_socketLan_updateSection"))
|
|
811
811
|
|
|
812
|
-
mutation_policy_socketLan_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
812
|
+
mutation_policy_socketLan_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
813
813
|
mutation_policy_socketLan_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
814
|
-
mutation_policy_socketLan_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
814
|
+
mutation_policy_socketLan_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
815
815
|
mutation_policy_socketLan_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
816
816
|
mutation_policy_socketLan_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
817
817
|
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.')
|
|
@@ -828,9 +828,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
828
828
|
help='addRule() terminalServer operation',
|
|
829
829
|
usage=get_help("mutation_policy_terminalServer_addRule"))
|
|
830
830
|
|
|
831
|
-
mutation_policy_terminalServer_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
831
|
+
mutation_policy_terminalServer_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
832
832
|
mutation_policy_terminalServer_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
833
|
-
mutation_policy_terminalServer_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
833
|
+
mutation_policy_terminalServer_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
834
834
|
mutation_policy_terminalServer_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
835
835
|
mutation_policy_terminalServer_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
836
836
|
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.')
|
|
@@ -841,9 +841,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
841
841
|
help='addSection() terminalServer operation',
|
|
842
842
|
usage=get_help("mutation_policy_terminalServer_addSection"))
|
|
843
843
|
|
|
844
|
-
mutation_policy_terminalServer_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
844
|
+
mutation_policy_terminalServer_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
845
845
|
mutation_policy_terminalServer_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
846
|
-
mutation_policy_terminalServer_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
846
|
+
mutation_policy_terminalServer_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
847
847
|
mutation_policy_terminalServer_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
848
848
|
mutation_policy_terminalServer_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
849
849
|
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.')
|
|
@@ -854,9 +854,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
854
854
|
help='createPolicyRevision() terminalServer operation',
|
|
855
855
|
usage=get_help("mutation_policy_terminalServer_createPolicyRevision"))
|
|
856
856
|
|
|
857
|
-
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
857
|
+
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
858
858
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
859
|
-
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
859
|
+
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
860
860
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
861
861
|
mutation_policy_terminalServer_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
862
862
|
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.')
|
|
@@ -867,9 +867,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
867
867
|
help='discardPolicyRevision() terminalServer operation',
|
|
868
868
|
usage=get_help("mutation_policy_terminalServer_discardPolicyRevision"))
|
|
869
869
|
|
|
870
|
-
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
870
|
+
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
871
871
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
872
|
-
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
872
|
+
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
873
873
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
874
874
|
mutation_policy_terminalServer_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
875
875
|
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.')
|
|
@@ -880,9 +880,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
880
880
|
help='moveRule() terminalServer operation',
|
|
881
881
|
usage=get_help("mutation_policy_terminalServer_moveRule"))
|
|
882
882
|
|
|
883
|
-
mutation_policy_terminalServer_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
883
|
+
mutation_policy_terminalServer_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
884
884
|
mutation_policy_terminalServer_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
885
|
-
mutation_policy_terminalServer_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
885
|
+
mutation_policy_terminalServer_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
886
886
|
mutation_policy_terminalServer_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
887
887
|
mutation_policy_terminalServer_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
888
888
|
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.')
|
|
@@ -893,9 +893,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
893
893
|
help='moveSection() terminalServer operation',
|
|
894
894
|
usage=get_help("mutation_policy_terminalServer_moveSection"))
|
|
895
895
|
|
|
896
|
-
mutation_policy_terminalServer_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
896
|
+
mutation_policy_terminalServer_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
897
897
|
mutation_policy_terminalServer_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
898
|
-
mutation_policy_terminalServer_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
898
|
+
mutation_policy_terminalServer_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
899
899
|
mutation_policy_terminalServer_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
900
900
|
mutation_policy_terminalServer_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
901
901
|
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.')
|
|
@@ -906,9 +906,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
906
906
|
help='publishPolicyRevision() terminalServer operation',
|
|
907
907
|
usage=get_help("mutation_policy_terminalServer_publishPolicyRevision"))
|
|
908
908
|
|
|
909
|
-
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
909
|
+
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
910
910
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
911
|
-
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
911
|
+
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
912
912
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
913
913
|
mutation_policy_terminalServer_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
914
914
|
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.')
|
|
@@ -919,9 +919,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
919
919
|
help='removeRule() terminalServer operation',
|
|
920
920
|
usage=get_help("mutation_policy_terminalServer_removeRule"))
|
|
921
921
|
|
|
922
|
-
mutation_policy_terminalServer_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
922
|
+
mutation_policy_terminalServer_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
923
923
|
mutation_policy_terminalServer_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
924
|
-
mutation_policy_terminalServer_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
924
|
+
mutation_policy_terminalServer_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
925
925
|
mutation_policy_terminalServer_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
926
926
|
mutation_policy_terminalServer_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
927
927
|
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.')
|
|
@@ -932,9 +932,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
932
932
|
help='removeSection() terminalServer operation',
|
|
933
933
|
usage=get_help("mutation_policy_terminalServer_removeSection"))
|
|
934
934
|
|
|
935
|
-
mutation_policy_terminalServer_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
935
|
+
mutation_policy_terminalServer_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
936
936
|
mutation_policy_terminalServer_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
937
|
-
mutation_policy_terminalServer_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
937
|
+
mutation_policy_terminalServer_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
938
938
|
mutation_policy_terminalServer_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
939
939
|
mutation_policy_terminalServer_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
940
940
|
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.')
|
|
@@ -945,9 +945,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
945
945
|
help='updatePolicy() terminalServer operation',
|
|
946
946
|
usage=get_help("mutation_policy_terminalServer_updatePolicy"))
|
|
947
947
|
|
|
948
|
-
mutation_policy_terminalServer_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
948
|
+
mutation_policy_terminalServer_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
949
949
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
950
|
-
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
950
|
+
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
951
951
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
952
952
|
mutation_policy_terminalServer_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
953
953
|
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.')
|
|
@@ -958,9 +958,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
958
958
|
help='updateRule() terminalServer operation',
|
|
959
959
|
usage=get_help("mutation_policy_terminalServer_updateRule"))
|
|
960
960
|
|
|
961
|
-
mutation_policy_terminalServer_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
961
|
+
mutation_policy_terminalServer_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
962
962
|
mutation_policy_terminalServer_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
963
|
-
mutation_policy_terminalServer_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
963
|
+
mutation_policy_terminalServer_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
964
964
|
mutation_policy_terminalServer_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
965
965
|
mutation_policy_terminalServer_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
966
966
|
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.')
|
|
@@ -971,9 +971,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
971
971
|
help='updateSection() terminalServer operation',
|
|
972
972
|
usage=get_help("mutation_policy_terminalServer_updateSection"))
|
|
973
973
|
|
|
974
|
-
mutation_policy_terminalServer_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
974
|
+
mutation_policy_terminalServer_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
975
975
|
mutation_policy_terminalServer_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
976
|
-
mutation_policy_terminalServer_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
976
|
+
mutation_policy_terminalServer_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
977
977
|
mutation_policy_terminalServer_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
978
978
|
mutation_policy_terminalServer_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
979
979
|
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.')
|
|
@@ -990,9 +990,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
990
990
|
help='addRule() wanFirewall operation',
|
|
991
991
|
usage=get_help("mutation_policy_wanFirewall_addRule"))
|
|
992
992
|
|
|
993
|
-
mutation_policy_wanFirewall_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
993
|
+
mutation_policy_wanFirewall_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
994
994
|
mutation_policy_wanFirewall_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
995
|
-
mutation_policy_wanFirewall_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
995
|
+
mutation_policy_wanFirewall_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
996
996
|
mutation_policy_wanFirewall_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
997
997
|
mutation_policy_wanFirewall_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
998
998
|
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.')
|
|
@@ -1003,9 +1003,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1003
1003
|
help='addSection() wanFirewall operation',
|
|
1004
1004
|
usage=get_help("mutation_policy_wanFirewall_addSection"))
|
|
1005
1005
|
|
|
1006
|
-
mutation_policy_wanFirewall_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1006
|
+
mutation_policy_wanFirewall_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1007
1007
|
mutation_policy_wanFirewall_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1008
|
-
mutation_policy_wanFirewall_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1008
|
+
mutation_policy_wanFirewall_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1009
1009
|
mutation_policy_wanFirewall_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1010
1010
|
mutation_policy_wanFirewall_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1011
1011
|
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.')
|
|
@@ -1016,9 +1016,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1016
1016
|
help='createPolicyRevision() wanFirewall operation',
|
|
1017
1017
|
usage=get_help("mutation_policy_wanFirewall_createPolicyRevision"))
|
|
1018
1018
|
|
|
1019
|
-
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
1019
|
+
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1020
1020
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1021
|
-
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1021
|
+
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1022
1022
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1023
1023
|
mutation_policy_wanFirewall_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1024
1024
|
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.')
|
|
@@ -1029,9 +1029,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1029
1029
|
help='discardPolicyRevision() wanFirewall operation',
|
|
1030
1030
|
usage=get_help("mutation_policy_wanFirewall_discardPolicyRevision"))
|
|
1031
1031
|
|
|
1032
|
-
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
1032
|
+
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1033
1033
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1034
|
-
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1034
|
+
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1035
1035
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1036
1036
|
mutation_policy_wanFirewall_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1037
1037
|
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.')
|
|
@@ -1042,9 +1042,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1042
1042
|
help='moveRule() wanFirewall operation',
|
|
1043
1043
|
usage=get_help("mutation_policy_wanFirewall_moveRule"))
|
|
1044
1044
|
|
|
1045
|
-
mutation_policy_wanFirewall_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
1045
|
+
mutation_policy_wanFirewall_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1046
1046
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1047
|
-
mutation_policy_wanFirewall_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1047
|
+
mutation_policy_wanFirewall_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1048
1048
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1049
1049
|
mutation_policy_wanFirewall_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1050
1050
|
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.')
|
|
@@ -1055,9 +1055,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1055
1055
|
help='moveSection() wanFirewall operation',
|
|
1056
1056
|
usage=get_help("mutation_policy_wanFirewall_moveSection"))
|
|
1057
1057
|
|
|
1058
|
-
mutation_policy_wanFirewall_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1058
|
+
mutation_policy_wanFirewall_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1059
1059
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1060
|
-
mutation_policy_wanFirewall_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1060
|
+
mutation_policy_wanFirewall_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1061
1061
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1062
1062
|
mutation_policy_wanFirewall_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1063
1063
|
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.')
|
|
@@ -1068,9 +1068,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1068
1068
|
help='publishPolicyRevision() wanFirewall operation',
|
|
1069
1069
|
usage=get_help("mutation_policy_wanFirewall_publishPolicyRevision"))
|
|
1070
1070
|
|
|
1071
|
-
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
1071
|
+
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1072
1072
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1073
|
-
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1073
|
+
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1074
1074
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1075
1075
|
mutation_policy_wanFirewall_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1076
1076
|
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.')
|
|
@@ -1081,9 +1081,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1081
1081
|
help='removeRule() wanFirewall operation',
|
|
1082
1082
|
usage=get_help("mutation_policy_wanFirewall_removeRule"))
|
|
1083
1083
|
|
|
1084
|
-
mutation_policy_wanFirewall_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
1084
|
+
mutation_policy_wanFirewall_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1085
1085
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1086
|
-
mutation_policy_wanFirewall_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1086
|
+
mutation_policy_wanFirewall_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1087
1087
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1088
1088
|
mutation_policy_wanFirewall_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1089
1089
|
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.')
|
|
@@ -1094,9 +1094,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1094
1094
|
help='removeSection() wanFirewall operation',
|
|
1095
1095
|
usage=get_help("mutation_policy_wanFirewall_removeSection"))
|
|
1096
1096
|
|
|
1097
|
-
mutation_policy_wanFirewall_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1097
|
+
mutation_policy_wanFirewall_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1098
1098
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1099
|
-
mutation_policy_wanFirewall_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1099
|
+
mutation_policy_wanFirewall_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1100
1100
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1101
1101
|
mutation_policy_wanFirewall_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1102
1102
|
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.')
|
|
@@ -1107,9 +1107,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1107
1107
|
help='updatePolicy() wanFirewall operation',
|
|
1108
1108
|
usage=get_help("mutation_policy_wanFirewall_updatePolicy"))
|
|
1109
1109
|
|
|
1110
|
-
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
1110
|
+
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1111
1111
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1112
|
-
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1112
|
+
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1113
1113
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1114
1114
|
mutation_policy_wanFirewall_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1115
1115
|
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.')
|
|
@@ -1120,9 +1120,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1120
1120
|
help='updateRule() wanFirewall operation',
|
|
1121
1121
|
usage=get_help("mutation_policy_wanFirewall_updateRule"))
|
|
1122
1122
|
|
|
1123
|
-
mutation_policy_wanFirewall_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
1123
|
+
mutation_policy_wanFirewall_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1124
1124
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1125
|
-
mutation_policy_wanFirewall_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1125
|
+
mutation_policy_wanFirewall_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1126
1126
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1127
1127
|
mutation_policy_wanFirewall_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1128
1128
|
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.')
|
|
@@ -1133,9 +1133,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1133
1133
|
help='updateSection() wanFirewall operation',
|
|
1134
1134
|
usage=get_help("mutation_policy_wanFirewall_updateSection"))
|
|
1135
1135
|
|
|
1136
|
-
mutation_policy_wanFirewall_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1136
|
+
mutation_policy_wanFirewall_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1137
1137
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1138
|
-
mutation_policy_wanFirewall_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1138
|
+
mutation_policy_wanFirewall_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1139
1139
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1140
1140
|
mutation_policy_wanFirewall_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1141
1141
|
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.')
|
|
@@ -1152,9 +1152,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1152
1152
|
help='addRule() wanNetwork operation',
|
|
1153
1153
|
usage=get_help("mutation_policy_wanNetwork_addRule"))
|
|
1154
1154
|
|
|
1155
|
-
mutation_policy_wanNetwork_addRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
1155
|
+
mutation_policy_wanNetwork_addRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1156
1156
|
mutation_policy_wanNetwork_addRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1157
|
-
mutation_policy_wanNetwork_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1157
|
+
mutation_policy_wanNetwork_addRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1158
1158
|
mutation_policy_wanNetwork_addRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1159
1159
|
mutation_policy_wanNetwork_addRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1160
1160
|
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.')
|
|
@@ -1165,9 +1165,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1165
1165
|
help='addSection() wanNetwork operation',
|
|
1166
1166
|
usage=get_help("mutation_policy_wanNetwork_addSection"))
|
|
1167
1167
|
|
|
1168
|
-
mutation_policy_wanNetwork_addSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1168
|
+
mutation_policy_wanNetwork_addSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1169
1169
|
mutation_policy_wanNetwork_addSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1170
|
-
mutation_policy_wanNetwork_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1170
|
+
mutation_policy_wanNetwork_addSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1171
1171
|
mutation_policy_wanNetwork_addSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1172
1172
|
mutation_policy_wanNetwork_addSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1173
1173
|
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.')
|
|
@@ -1178,9 +1178,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1178
1178
|
help='createPolicyRevision() wanNetwork operation',
|
|
1179
1179
|
usage=get_help("mutation_policy_wanNetwork_createPolicyRevision"))
|
|
1180
1180
|
|
|
1181
|
-
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
1181
|
+
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1182
1182
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1183
|
-
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1183
|
+
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1184
1184
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1185
1185
|
mutation_policy_wanNetwork_createPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1186
1186
|
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.')
|
|
@@ -1191,9 +1191,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1191
1191
|
help='discardPolicyRevision() wanNetwork operation',
|
|
1192
1192
|
usage=get_help("mutation_policy_wanNetwork_discardPolicyRevision"))
|
|
1193
1193
|
|
|
1194
|
-
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
1194
|
+
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1195
1195
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1196
|
-
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1196
|
+
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1197
1197
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1198
1198
|
mutation_policy_wanNetwork_discardPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1199
1199
|
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.')
|
|
@@ -1204,9 +1204,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1204
1204
|
help='moveRule() wanNetwork operation',
|
|
1205
1205
|
usage=get_help("mutation_policy_wanNetwork_moveRule"))
|
|
1206
1206
|
|
|
1207
|
-
mutation_policy_wanNetwork_moveRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
1207
|
+
mutation_policy_wanNetwork_moveRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1208
1208
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1209
|
-
mutation_policy_wanNetwork_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1209
|
+
mutation_policy_wanNetwork_moveRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1210
1210
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1211
1211
|
mutation_policy_wanNetwork_moveRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1212
1212
|
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.')
|
|
@@ -1217,9 +1217,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1217
1217
|
help='moveSection() wanNetwork operation',
|
|
1218
1218
|
usage=get_help("mutation_policy_wanNetwork_moveSection"))
|
|
1219
1219
|
|
|
1220
|
-
mutation_policy_wanNetwork_moveSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1220
|
+
mutation_policy_wanNetwork_moveSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1221
1221
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1222
|
-
mutation_policy_wanNetwork_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1222
|
+
mutation_policy_wanNetwork_moveSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1223
1223
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1224
1224
|
mutation_policy_wanNetwork_moveSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1225
1225
|
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.')
|
|
@@ -1230,9 +1230,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1230
1230
|
help='publishPolicyRevision() wanNetwork operation',
|
|
1231
1231
|
usage=get_help("mutation_policy_wanNetwork_publishPolicyRevision"))
|
|
1232
1232
|
|
|
1233
|
-
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('json', help='Variables in JSON format.')
|
|
1233
|
+
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1234
1234
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1235
|
-
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1235
|
+
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1236
1236
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1237
1237
|
mutation_policy_wanNetwork_publishPolicyRevision_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1238
1238
|
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.')
|
|
@@ -1243,9 +1243,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1243
1243
|
help='removeRule() wanNetwork operation',
|
|
1244
1244
|
usage=get_help("mutation_policy_wanNetwork_removeRule"))
|
|
1245
1245
|
|
|
1246
|
-
mutation_policy_wanNetwork_removeRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
1246
|
+
mutation_policy_wanNetwork_removeRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1247
1247
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1248
|
-
mutation_policy_wanNetwork_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1248
|
+
mutation_policy_wanNetwork_removeRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1249
1249
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1250
1250
|
mutation_policy_wanNetwork_removeRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1251
1251
|
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.')
|
|
@@ -1256,9 +1256,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1256
1256
|
help='removeSection() wanNetwork operation',
|
|
1257
1257
|
usage=get_help("mutation_policy_wanNetwork_removeSection"))
|
|
1258
1258
|
|
|
1259
|
-
mutation_policy_wanNetwork_removeSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1259
|
+
mutation_policy_wanNetwork_removeSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1260
1260
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1261
|
-
mutation_policy_wanNetwork_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1261
|
+
mutation_policy_wanNetwork_removeSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1262
1262
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1263
1263
|
mutation_policy_wanNetwork_removeSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1264
1264
|
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.')
|
|
@@ -1269,9 +1269,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1269
1269
|
help='updatePolicy() wanNetwork operation',
|
|
1270
1270
|
usage=get_help("mutation_policy_wanNetwork_updatePolicy"))
|
|
1271
1271
|
|
|
1272
|
-
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('json', help='Variables in JSON format.')
|
|
1272
|
+
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1273
1273
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1274
|
-
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1274
|
+
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1275
1275
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1276
1276
|
mutation_policy_wanNetwork_updatePolicy_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1277
1277
|
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.')
|
|
@@ -1282,9 +1282,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1282
1282
|
help='updateRule() wanNetwork operation',
|
|
1283
1283
|
usage=get_help("mutation_policy_wanNetwork_updateRule"))
|
|
1284
1284
|
|
|
1285
|
-
mutation_policy_wanNetwork_updateRule_parser.add_argument('json', help='Variables in JSON format.')
|
|
1285
|
+
mutation_policy_wanNetwork_updateRule_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1286
1286
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1287
|
-
mutation_policy_wanNetwork_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1287
|
+
mutation_policy_wanNetwork_updateRule_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1288
1288
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1289
1289
|
mutation_policy_wanNetwork_updateRule_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1290
1290
|
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.')
|
|
@@ -1295,9 +1295,9 @@ def mutation_policy_parse(mutation_subparsers):
|
|
|
1295
1295
|
help='updateSection() wanNetwork operation',
|
|
1296
1296
|
usage=get_help("mutation_policy_wanNetwork_updateSection"))
|
|
1297
1297
|
|
|
1298
|
-
mutation_policy_wanNetwork_updateSection_parser.add_argument('json', help='Variables in JSON format.')
|
|
1298
|
+
mutation_policy_wanNetwork_updateSection_parser.add_argument('json', nargs='?', default='{}', help='Variables in JSON format (defaults to empty object if not provided).')
|
|
1299
1299
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
1300
|
-
mutation_policy_wanNetwork_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print
|
|
1300
|
+
mutation_policy_wanNetwork_updateSection_parser.add_argument('-t', const=True, default=False, nargs='?', help='Print GraphQL query without sending API call')
|
|
1301
1301
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('-v', const=True, default=False, nargs='?', help='Verbose output')
|
|
1302
1302
|
mutation_policy_wanNetwork_updateSection_parser.add_argument('-p', const=True, default=False, nargs='?', help='Pretty print')
|
|
1303
1303
|
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.')
|