@itentialopensource/adapter-zero_networks 0.1.2 → 0.2.0
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.
- package/.eslintignore +0 -1
- package/.jshintrc +3 -0
- package/AUTH.md +14 -18
- package/BROKER.md +31 -19
- package/CALLS.md +1175 -23
- package/CHANGELOG.md +8 -0
- package/PROPERTIES.md +5 -0
- package/README.md +60 -63
- package/SYSTEMINFO.md +14 -6
- package/TAB1.md +8 -0
- package/TAB2.md +83 -6564
- package/adapter.js +16661 -39
- package/entities/Asset/action.json +872 -0
- package/entities/Asset/schema.json +43 -1
- package/entities/AssetOTIoT/action.json +851 -0
- package/entities/AssetOTIoT/schema.json +42 -1
- package/entities/Assets/action.json +83 -0
- package/entities/Assets/schema.json +5 -1
- package/entities/Download/action.json +88 -0
- package/entities/Download/schema.json +22 -0
- package/entities/Group/action.json +518 -0
- package/entities/Group/schema.json +26 -1
- package/entities/Groups/action.json +354 -0
- package/entities/Groups/schema.json +18 -1
- package/entities/GroupsCustom/action.json +20 -0
- package/entities/GroupsCustom/schema.json +2 -1
- package/entities/GroupsTag/action.json +45 -0
- package/entities/GroupsTag/schema.json +20 -0
- package/entities/MFAIdentity/action.json +295 -0
- package/entities/MFAIdentity/schema.json +32 -0
- package/entities/MFAInbound/action.json +21 -0
- package/entities/MFAInbound/schema.json +2 -1
- package/entities/MFAOutbound/action.json +21 -0
- package/entities/MFAOutbound/schema.json +2 -1
- package/entities/Rules/action.json +40 -0
- package/entities/Rules/schema.json +3 -1
- package/entities/RulesInbound/action.json +293 -0
- package/entities/RulesInbound/schema.json +32 -0
- package/entities/RulesOutboundAllow/action.json +21 -0
- package/entities/RulesOutboundAllow/schema.json +2 -1
- package/entities/SettingsInactiveAssets/action.json +45 -0
- package/entities/SettingsInactiveAssets/schema.json +20 -0
- package/entities/SettingsLicenses/action.json +25 -0
- package/entities/SettingsLicenses/schema.json +19 -0
- package/entities/User/action.json +291 -0
- package/entities/User/schema.json +15 -1
- package/entities/Users/action.json +21 -0
- package/entities/Users/schema.json +2 -1
- package/metadata.json +14 -3
- package/package.json +5 -7
- package/pronghorn.json +12801 -490
- package/propertiesSchema.json +133 -36
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +115977 -0
- package/report/adapterInfo.json +7 -7
- package/report/updateReport1715609939167.json +120 -0
- package/sampleProperties.json +43 -31
- package/test/integration/adapterTestIntegration.js +4700 -0
- package/test/unit/adapterTestUnit.js +8580 -3
- package/utils/artifactize.js +0 -0
package/CALLS.md
CHANGED
|
@@ -19,7 +19,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
19
19
|
</tr>
|
|
20
20
|
<tr>
|
|
21
21
|
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
-
<td style="padding:15px">This call ensures that the adapter can communicate with
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Zero Networks. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
23
|
<td style="padding:15px">No</td>
|
|
24
24
|
</tr>
|
|
25
25
|
<tr>
|
|
@@ -29,7 +29,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
29
29
|
</tr>
|
|
30
30
|
<tr>
|
|
31
31
|
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
-
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with
|
|
32
|
+
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Zero Networks.</td>
|
|
33
33
|
<td style="padding:15px">No</td>
|
|
34
34
|
</tr>
|
|
35
35
|
<tr>
|
|
@@ -37,11 +37,6 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
37
37
|
<td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
|
|
38
38
|
<td style="padding:15px">Yes</td>
|
|
39
39
|
</tr>
|
|
40
|
-
<tr>
|
|
41
|
-
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
42
|
-
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
43
|
-
<td style="padding:15px">Yes</td>
|
|
44
|
-
</tr>
|
|
45
40
|
<tr>
|
|
46
41
|
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
42
|
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
@@ -57,12 +52,16 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
57
52
|
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
53
|
<td style="padding:15px">Yes</td>
|
|
59
54
|
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
57
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
60
|
<tr>
|
|
61
61
|
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
62
|
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
63
|
<td style="padding:15px">Yes</td>
|
|
64
64
|
</tr>
|
|
65
|
-
|
|
66
65
|
<tr>
|
|
67
66
|
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
67
|
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
@@ -83,6 +82,21 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
83
82
|
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
83
|
<td style="padding:15px">Yes</td>
|
|
85
84
|
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
|
|
87
|
+
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
|
|
88
|
+
<td style="padding:15px">Yes</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
|
|
92
|
+
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
|
|
93
|
+
<td style="padding:15px">Yes</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
|
|
97
|
+
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
|
|
98
|
+
<td style="padding:15px">Yes</td>
|
|
99
|
+
</tr>
|
|
86
100
|
<tr>
|
|
87
101
|
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
102
|
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
@@ -94,23 +108,46 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
94
108
|
<td style="padding:15px">Yes</td>
|
|
95
109
|
</tr>
|
|
96
110
|
<tr>
|
|
97
|
-
<td style="padding:15px">
|
|
98
|
-
<td style="padding:15px">
|
|
99
|
-
<td style="padding:15px">
|
|
111
|
+
<td style="padding:15px">iapRunAdapterLint(callback)</td>
|
|
112
|
+
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
|
|
113
|
+
<td style="padding:15px">Yes</td>
|
|
100
114
|
</tr>
|
|
101
115
|
<tr>
|
|
102
|
-
<td style="padding:15px">
|
|
103
|
-
<td style="padding:15px">
|
|
104
|
-
<td style="padding:15px">
|
|
116
|
+
<td style="padding:15px">iapRunAdapterTests(callback)</td>
|
|
117
|
+
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
|
|
118
|
+
<td style="padding:15px">Yes</td>
|
|
105
119
|
</tr>
|
|
106
120
|
<tr>
|
|
107
|
-
<td style="padding:15px">
|
|
108
|
-
<td style="padding:15px">This call
|
|
109
|
-
<td style="padding:15px">
|
|
121
|
+
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
|
|
122
|
+
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
|
|
123
|
+
<td style="padding:15px">Yes</td>
|
|
110
124
|
</tr>
|
|
111
125
|
</table>
|
|
112
126
|
<br>
|
|
127
|
+
|
|
128
|
+
### Adapter Cache Calls
|
|
113
129
|
|
|
130
|
+
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
|
|
131
|
+
|
|
132
|
+
<table border="1" class="bordered-table">
|
|
133
|
+
<tr>
|
|
134
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
135
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
136
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
|
|
140
|
+
<td style="padding:15px">This call populates the adapter cache.</td>
|
|
141
|
+
<td style="padding:15px">Yes</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
|
|
145
|
+
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
|
|
146
|
+
<td style="padding:15px">Yes</td>
|
|
147
|
+
</tr>
|
|
148
|
+
</table>
|
|
149
|
+
<br>
|
|
150
|
+
|
|
114
151
|
### Adapter Broker Calls
|
|
115
152
|
|
|
116
153
|
These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
|
|
@@ -129,32 +166,31 @@ These are adapter methods that are used to integrate to IAP Brokers. This adapte
|
|
|
129
166
|
<tr>
|
|
130
167
|
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
168
|
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
-
<td style="padding:15px">
|
|
169
|
+
<td style="padding:15px">No</td>
|
|
133
170
|
</tr>
|
|
134
171
|
<tr>
|
|
135
172
|
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
173
|
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
137
|
-
<td style="padding:15px">
|
|
174
|
+
<td style="padding:15px">No</td>
|
|
138
175
|
</tr>
|
|
139
176
|
<tr>
|
|
140
177
|
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
178
|
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
-
<td style="padding:15px">
|
|
179
|
+
<td style="padding:15px">No</td>
|
|
143
180
|
</tr>
|
|
144
181
|
<tr>
|
|
145
182
|
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
183
|
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
-
<td style="padding:15px">
|
|
184
|
+
<td style="padding:15px">No</td>
|
|
148
185
|
</tr>
|
|
149
186
|
<tr>
|
|
150
187
|
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
188
|
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
-
<td style="padding:15px">
|
|
189
|
+
<td style="padding:15px">No</td>
|
|
153
190
|
</tr>
|
|
154
191
|
</table>
|
|
155
192
|
<br>
|
|
156
193
|
|
|
157
|
-
|
|
158
194
|
### Specific Adapter Calls
|
|
159
195
|
|
|
160
196
|
Specific adapter calls are built based on the API of the Zero_networks. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
@@ -5572,5 +5608,1121 @@ Specific adapter calls are built based on the API of the Zero_networks. The Adap
|
|
|
5572
5608
|
<td style="padding:15px">{base_path}/{version}/users/statistics?{query}</td>
|
|
5573
5609
|
<td style="padding:15px">Yes</td>
|
|
5574
5610
|
</tr>
|
|
5611
|
+
<tr>
|
|
5612
|
+
<td style="padding:15px">assetHealthStateGet(assetId, callback)</td>
|
|
5613
|
+
<td style="padding:15px">AssetHealthState_Get</td>
|
|
5614
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/health-state?{query}</td>
|
|
5615
|
+
<td style="padding:15px">Yes</td>
|
|
5616
|
+
</tr>
|
|
5617
|
+
<tr>
|
|
5618
|
+
<td style="padding:15px">assetMFAIdentityPoliciesList(assetId, limit, offset, filters, withCount, addBuiltins, addAncestors, order, orderColumns, callback)</td>
|
|
5619
|
+
<td style="padding:15px">AssetMFAIdentityPolicies_List</td>
|
|
5620
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies?{query}</td>
|
|
5621
|
+
<td style="padding:15px">Yes</td>
|
|
5622
|
+
</tr>
|
|
5623
|
+
<tr>
|
|
5624
|
+
<td style="padding:15px">assetMFAIdentityPoliciesCreate(assetId, body, callback)</td>
|
|
5625
|
+
<td style="padding:15px">AssetMFAIdentityPolicies_Create</td>
|
|
5626
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies?{query}</td>
|
|
5627
|
+
<td style="padding:15px">Yes</td>
|
|
5628
|
+
</tr>
|
|
5629
|
+
<tr>
|
|
5630
|
+
<td style="padding:15px">assetMFAIdentityPoliciesGet(assetId, reactivePolicyId, callback)</td>
|
|
5631
|
+
<td style="padding:15px">AssetMFAIdentityPolicies_Get</td>
|
|
5632
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
5633
|
+
<td style="padding:15px">Yes</td>
|
|
5634
|
+
</tr>
|
|
5635
|
+
<tr>
|
|
5636
|
+
<td style="padding:15px">assetMFAIdentityPoliciesUpdate(assetId, reactivePolicyId, body, callback)</td>
|
|
5637
|
+
<td style="padding:15px">AssetMFAIdentityPolicies_Update</td>
|
|
5638
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
5639
|
+
<td style="padding:15px">Yes</td>
|
|
5640
|
+
</tr>
|
|
5641
|
+
<tr>
|
|
5642
|
+
<td style="padding:15px">assetMFAIdentityPoliciesDelete(assetId, reactivePolicyId, callback)</td>
|
|
5643
|
+
<td style="padding:15px">AssetMFAIdentityPolicies_Delete</td>
|
|
5644
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
5645
|
+
<td style="padding:15px">Yes</td>
|
|
5646
|
+
</tr>
|
|
5647
|
+
<tr>
|
|
5648
|
+
<td style="padding:15px">assetMFAIdentityPoliciesDestinationCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5649
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesDestinationCandidates_List</td>
|
|
5650
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/dst-asset-candidates?{query}</td>
|
|
5651
|
+
<td style="padding:15px">Yes</td>
|
|
5652
|
+
</tr>
|
|
5653
|
+
<tr>
|
|
5654
|
+
<td style="padding:15px">assetMFAIdentityPoliciesExcludedSourceCandidatesList(assetId, limit, offset, search, isSrcAssetUnmonitored, callback)</td>
|
|
5655
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesExcludedSourceCandidates_List</td>
|
|
5656
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/excluded-src-asset-candidates?{query}</td>
|
|
5657
|
+
<td style="padding:15px">Yes</td>
|
|
5658
|
+
</tr>
|
|
5659
|
+
<tr>
|
|
5660
|
+
<td style="padding:15px">assetMFAIdentityPoliciesFiltersList(assetId, callback)</td>
|
|
5661
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesFilters_List</td>
|
|
5662
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/filters?{query}</td>
|
|
5663
|
+
<td style="padding:15px">Yes</td>
|
|
5664
|
+
</tr>
|
|
5665
|
+
<tr>
|
|
5666
|
+
<td style="padding:15px">assetMFAIdentityPoliciesDestinationCandidatesFiltersList(assetId, limit, offset, search, callback)</td>
|
|
5667
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesDestinationCandidatesFilters_List</td>
|
|
5668
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/filters/dst-asset-candidates?{query}</td>
|
|
5669
|
+
<td style="padding:15px">Yes</td>
|
|
5670
|
+
</tr>
|
|
5671
|
+
<tr>
|
|
5672
|
+
<td style="padding:15px">assetMFAIdentityPoliciesSourceCandidatesFiltersList(assetId, limit, offset, search, callback)</td>
|
|
5673
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesSourceCandidatesFilters_List</td>
|
|
5674
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/filters/src-asset-candidates?{query}</td>
|
|
5675
|
+
<td style="padding:15px">Yes</td>
|
|
5676
|
+
</tr>
|
|
5677
|
+
<tr>
|
|
5678
|
+
<td style="padding:15px">assetMFAIdentityPoliciesSourceUsersCandidatesFiltersList(assetId, limit, offset, search, callback)</td>
|
|
5679
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesSourceUsersCandidatesFilters_List</td>
|
|
5680
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/filters/src-users-candidates?{query}</td>
|
|
5681
|
+
<td style="padding:15px">Yes</td>
|
|
5682
|
+
</tr>
|
|
5683
|
+
<tr>
|
|
5684
|
+
<td style="padding:15px">assetMFAIdentityPoliciesMFAMethodsList(assetId, callback)</td>
|
|
5685
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesMFAMethods_List</td>
|
|
5686
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/mfa-methods?{query}</td>
|
|
5687
|
+
<td style="padding:15px">Yes</td>
|
|
5688
|
+
</tr>
|
|
5689
|
+
<tr>
|
|
5690
|
+
<td style="padding:15px">assetMFAIdentityPoliciesSourceCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5691
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesSourceCandidates_List</td>
|
|
5692
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/src-asset-candidates?{query}</td>
|
|
5693
|
+
<td style="padding:15px">Yes</td>
|
|
5694
|
+
</tr>
|
|
5695
|
+
<tr>
|
|
5696
|
+
<td style="padding:15px">assetMFAIdentityPoliciesSourceUserCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5697
|
+
<td style="padding:15px">AssetMFAIdentityPoliciesSourceUserCandidates_List</td>
|
|
5698
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/identity/reactive-policies/src-users-candidates?{query}</td>
|
|
5699
|
+
<td style="padding:15px">Yes</td>
|
|
5700
|
+
</tr>
|
|
5701
|
+
<tr>
|
|
5702
|
+
<td style="padding:15px">assetMFAInboundPoliciesSimulateTest(assetId, srcUserId, srcAssetId, srcProcess, dstAssetId, dstProcess, protocolType, port, callback)</td>
|
|
5703
|
+
<td style="padding:15px">AssetMFAInboundPoliciesSimulate_Test</td>
|
|
5704
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/inbound/simulate?{query}</td>
|
|
5705
|
+
<td style="padding:15px">Yes</td>
|
|
5706
|
+
</tr>
|
|
5707
|
+
<tr>
|
|
5708
|
+
<td style="padding:15px">assetMFAInboundPoliciesSimulateDestinationCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5709
|
+
<td style="padding:15px">AssetMFAInboundPoliciesSimulateDestinationCandidates_List</td>
|
|
5710
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/inbound/simulate/dst-candidates?{query}</td>
|
|
5711
|
+
<td style="padding:15px">Yes</td>
|
|
5712
|
+
</tr>
|
|
5713
|
+
<tr>
|
|
5714
|
+
<td style="padding:15px">assetMFAInboundPoliciesSimulateResolveGet(assetId, simulationParams, callback)</td>
|
|
5715
|
+
<td style="padding:15px">AssetMFAInboundPoliciesSimulateResolve_Get</td>
|
|
5716
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/inbound/simulate/resolve?{query}</td>
|
|
5717
|
+
<td style="padding:15px">Yes</td>
|
|
5718
|
+
</tr>
|
|
5719
|
+
<tr>
|
|
5720
|
+
<td style="padding:15px">assetMFAInboundPoliciesSimulateSourceCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5721
|
+
<td style="padding:15px">AssetMFAInboundPoliciesSimulateSourceCandidates_List</td>
|
|
5722
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/inbound/simulate/src-candidates?{query}</td>
|
|
5723
|
+
<td style="padding:15px">Yes</td>
|
|
5724
|
+
</tr>
|
|
5725
|
+
<tr>
|
|
5726
|
+
<td style="padding:15px">assetMFAInboundPoliciesSimulateSourceUserCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5727
|
+
<td style="padding:15px">AssetMFAInboundPoliciesSimulateSourceUserCandidates_List</td>
|
|
5728
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/inbound/simulate/src-users-candidates?{query}</td>
|
|
5729
|
+
<td style="padding:15px">Yes</td>
|
|
5730
|
+
</tr>
|
|
5731
|
+
<tr>
|
|
5732
|
+
<td style="padding:15px">assetMFAOutboundPoliciesSimulateTest(assetId, srcUserId, srcAssetId, srcProcess, dstAssetId, dstProcess, protocolType, port, callback)</td>
|
|
5733
|
+
<td style="padding:15px">AssetMFAOutboundPoliciesSimulate_Test</td>
|
|
5734
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/outbound/simulate?{query}</td>
|
|
5735
|
+
<td style="padding:15px">Yes</td>
|
|
5736
|
+
</tr>
|
|
5737
|
+
<tr>
|
|
5738
|
+
<td style="padding:15px">assetMFAOutboundPoliciesSimulateDestinationCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5739
|
+
<td style="padding:15px">AssetMFAOutboundPoliciesSimulateDestinationCandidates_List</td>
|
|
5740
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/outbound/simulate/dst-candidates?{query}</td>
|
|
5741
|
+
<td style="padding:15px">Yes</td>
|
|
5742
|
+
</tr>
|
|
5743
|
+
<tr>
|
|
5744
|
+
<td style="padding:15px">assetMFAOutboundPoliciesSimulateResolveGet(assetId, simulationParams, callback)</td>
|
|
5745
|
+
<td style="padding:15px">AssetMFAOutboundPoliciesSimulateResolve_Get</td>
|
|
5746
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/outbound/simulate/resolve?{query}</td>
|
|
5747
|
+
<td style="padding:15px">Yes</td>
|
|
5748
|
+
</tr>
|
|
5749
|
+
<tr>
|
|
5750
|
+
<td style="padding:15px">assetMFAOutboundPoliciesSimulateSourceCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5751
|
+
<td style="padding:15px">AssetMFAOutboundPoliciesSimulateSourceCandidates_List</td>
|
|
5752
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/outbound/simulate/src-candidates?{query}</td>
|
|
5753
|
+
<td style="padding:15px">Yes</td>
|
|
5754
|
+
</tr>
|
|
5755
|
+
<tr>
|
|
5756
|
+
<td style="padding:15px">assetMFAOutboundPoliciesSimulateSourceUserCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5757
|
+
<td style="padding:15px">AssetMFAOutboundPoliciesSimulateSourceUserCandidates_List</td>
|
|
5758
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/reactive-policies/outbound/simulate/src-users-candidates?{query}</td>
|
|
5759
|
+
<td style="padding:15px">Yes</td>
|
|
5760
|
+
</tr>
|
|
5761
|
+
<tr>
|
|
5762
|
+
<td style="padding:15px">assetInboundRulesList(assetId, limit, offset, filters, entityParams, withCount, addBuiltins, addAncestors, direction, callback)</td>
|
|
5763
|
+
<td style="padding:15px">AssetInboundRules_List</td>
|
|
5764
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound?{query}</td>
|
|
5765
|
+
<td style="padding:15px">Yes</td>
|
|
5766
|
+
</tr>
|
|
5767
|
+
<tr>
|
|
5768
|
+
<td style="padding:15px">assetInboundRulesCreate(assetId, body, callback)</td>
|
|
5769
|
+
<td style="padding:15px">AssetInboundRules_Create</td>
|
|
5770
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound?{query}</td>
|
|
5771
|
+
<td style="padding:15px">Yes</td>
|
|
5772
|
+
</tr>
|
|
5773
|
+
<tr>
|
|
5774
|
+
<td style="padding:15px">assetInboundRulesExport(assetId, body, callback)</td>
|
|
5775
|
+
<td style="padding:15px">AssetInboundRules_Export</td>
|
|
5776
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/export?{query}</td>
|
|
5777
|
+
<td style="padding:15px">Yes</td>
|
|
5778
|
+
</tr>
|
|
5779
|
+
<tr>
|
|
5780
|
+
<td style="padding:15px">assetInboundRulesExportGet(assetId, exportId, callback)</td>
|
|
5781
|
+
<td style="padding:15px">AssetInboundRulesExport_Get</td>
|
|
5782
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/export/csv/{pathv2}?{query}</td>
|
|
5783
|
+
<td style="padding:15px">Yes</td>
|
|
5784
|
+
</tr>
|
|
5785
|
+
<tr>
|
|
5786
|
+
<td style="padding:15px">assetInboundRuleGet(assetId, ruleId, callback)</td>
|
|
5787
|
+
<td style="padding:15px">AssetInboundRule_Get</td>
|
|
5788
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/{pathv2}?{query}</td>
|
|
5789
|
+
<td style="padding:15px">Yes</td>
|
|
5790
|
+
</tr>
|
|
5791
|
+
<tr>
|
|
5792
|
+
<td style="padding:15px">assetInboundRuleUpdate(assetId, ruleId, body, callback)</td>
|
|
5793
|
+
<td style="padding:15px">AssetInboundRule_Update</td>
|
|
5794
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/{pathv2}?{query}</td>
|
|
5795
|
+
<td style="padding:15px">Yes</td>
|
|
5796
|
+
</tr>
|
|
5797
|
+
<tr>
|
|
5798
|
+
<td style="padding:15px">assetInboundRuleDelete(assetId, ruleId, callback)</td>
|
|
5799
|
+
<td style="padding:15px">AssetInboundRule_Delete</td>
|
|
5800
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/{pathv2}?{query}</td>
|
|
5801
|
+
<td style="padding:15px">Yes</td>
|
|
5802
|
+
</tr>
|
|
5803
|
+
<tr>
|
|
5804
|
+
<td style="padding:15px">assetInboundRulesReviewApprove(assetId, ruleId, callback)</td>
|
|
5805
|
+
<td style="padding:15px">AssetInboundRulesReview_Approve</td>
|
|
5806
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/review/approve/{pathv2}?{query}</td>
|
|
5807
|
+
<td style="padding:15px">Yes</td>
|
|
5808
|
+
</tr>
|
|
5809
|
+
<tr>
|
|
5810
|
+
<td style="padding:15px">assetInboundRulesReviewApproveWithChanges(assetId, ruleId, body, callback)</td>
|
|
5811
|
+
<td style="padding:15px">AssetInboundRulesReview_ApproveWithChanges</td>
|
|
5812
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/review/approve-with-changes/{pathv2}?{query}</td>
|
|
5813
|
+
<td style="padding:15px">Yes</td>
|
|
5814
|
+
</tr>
|
|
5815
|
+
<tr>
|
|
5816
|
+
<td style="padding:15px">assetInboundRulesReviewDeny(assetId, ruleId, callback)</td>
|
|
5817
|
+
<td style="padding:15px">AssetInboundRulesReview_Deny</td>
|
|
5818
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/review/reject/{pathv2}?{query}</td>
|
|
5819
|
+
<td style="padding:15px">Yes</td>
|
|
5820
|
+
</tr>
|
|
5821
|
+
<tr>
|
|
5822
|
+
<td style="padding:15px">assetInboundRulesFiltersList(assetId, callback)</td>
|
|
5823
|
+
<td style="padding:15px">AssetInboundRulesFilters_List</td>
|
|
5824
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/filters?{query}</td>
|
|
5825
|
+
<td style="padding:15px">Yes</td>
|
|
5826
|
+
</tr>
|
|
5827
|
+
<tr>
|
|
5828
|
+
<td style="padding:15px">assetInboundRulesExcludedDestinationCandidatesList(assetId, limit, cursor, search, callback)</td>
|
|
5829
|
+
<td style="padding:15px">AssetInboundRulesExcludedDestinationCandidates_List</td>
|
|
5830
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/excluded-local-candidates?{query}</td>
|
|
5831
|
+
<td style="padding:15px">Yes</td>
|
|
5832
|
+
</tr>
|
|
5833
|
+
<tr>
|
|
5834
|
+
<td style="padding:15px">assetInboundRulesDestinationCandidatesList(assetId, limit, cursor, search, callback)</td>
|
|
5835
|
+
<td style="padding:15px">AssetInboundRulesDestinationCandidates_List</td>
|
|
5836
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/local-candidates?{query}</td>
|
|
5837
|
+
<td style="padding:15px">Yes</td>
|
|
5838
|
+
</tr>
|
|
5839
|
+
<tr>
|
|
5840
|
+
<td style="padding:15px">assetInboundRulesDesinationCandidatesFiltersList(assetId, callback)</td>
|
|
5841
|
+
<td style="padding:15px">AssetInboundRulesDesinationCandidatesFilters_List</td>
|
|
5842
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/filters/local-candidates?{query}</td>
|
|
5843
|
+
<td style="padding:15px">Yes</td>
|
|
5844
|
+
</tr>
|
|
5845
|
+
<tr>
|
|
5846
|
+
<td style="padding:15px">assetInboundRulesSourceCandidatesList(assetId, limit, cursor, search, ruleType, callback)</td>
|
|
5847
|
+
<td style="padding:15px">AssetInboundRulesSourceCandidates_List</td>
|
|
5848
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/remote-candidates?{query}</td>
|
|
5849
|
+
<td style="padding:15px">Yes</td>
|
|
5850
|
+
</tr>
|
|
5851
|
+
<tr>
|
|
5852
|
+
<td style="padding:15px">assetInboundRulesSourceCandidatesFiltersList(assetId, callback)</td>
|
|
5853
|
+
<td style="padding:15px">AssetInboundRulesSourceCandidatesFilters_List</td>
|
|
5854
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/inbound/filters/remote-candidates?{query}</td>
|
|
5855
|
+
<td style="padding:15px">Yes</td>
|
|
5856
|
+
</tr>
|
|
5857
|
+
<tr>
|
|
5858
|
+
<td style="padding:15px">assetOutboundAllowRulesDestinationCandidatesListV2(assetId, limit, cursor, search, ruleType, callback)</td>
|
|
5859
|
+
<td style="padding:15px">AssetOutboundRulesDestinationCandidates_List</td>
|
|
5860
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/protection/rules/outbound/remote-candidates?{query}</td>
|
|
5861
|
+
<td style="padding:15px">Yes</td>
|
|
5862
|
+
</tr>
|
|
5863
|
+
<tr>
|
|
5864
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesList(assetId, limit, offset, filters, withCount, addBuiltins, addAncestors, order, orderColumns, callback)</td>
|
|
5865
|
+
<td style="padding:15px">AssetOTMFAIdentityPolicies_List</td>
|
|
5866
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies?{query}</td>
|
|
5867
|
+
<td style="padding:15px">Yes</td>
|
|
5868
|
+
</tr>
|
|
5869
|
+
<tr>
|
|
5870
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesCreate(assetId, body, callback)</td>
|
|
5871
|
+
<td style="padding:15px">AssetOTMFAIdentityPolicies_Create</td>
|
|
5872
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies?{query}</td>
|
|
5873
|
+
<td style="padding:15px">Yes</td>
|
|
5874
|
+
</tr>
|
|
5875
|
+
<tr>
|
|
5876
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesGet(assetId, reactivePolicyId, callback)</td>
|
|
5877
|
+
<td style="padding:15px">AssetOTMFAIdentityPolicies_Get</td>
|
|
5878
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
5879
|
+
<td style="padding:15px">Yes</td>
|
|
5880
|
+
</tr>
|
|
5881
|
+
<tr>
|
|
5882
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesUpdate(assetId, reactivePolicyId, body, callback)</td>
|
|
5883
|
+
<td style="padding:15px">AssetOTMFAIdentityPolicies_Update</td>
|
|
5884
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
5885
|
+
<td style="padding:15px">Yes</td>
|
|
5886
|
+
</tr>
|
|
5887
|
+
<tr>
|
|
5888
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesDelete(assetId, reactivePolicyId, callback)</td>
|
|
5889
|
+
<td style="padding:15px">AssetOTMFAIdentityPolicies_Delete</td>
|
|
5890
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
5891
|
+
<td style="padding:15px">Yes</td>
|
|
5892
|
+
</tr>
|
|
5893
|
+
<tr>
|
|
5894
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesDestinationCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5895
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesDestinationCandidates_List</td>
|
|
5896
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/dst-asset-candidates?{query}</td>
|
|
5897
|
+
<td style="padding:15px">Yes</td>
|
|
5898
|
+
</tr>
|
|
5899
|
+
<tr>
|
|
5900
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesExcludedSourceCandidatesList(assetId, limit, offset, search, isSrcAssetUnmonitored, callback)</td>
|
|
5901
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesExcludedSourceCandidates_List</td>
|
|
5902
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/excluded-src-asset-candidates?{query}</td>
|
|
5903
|
+
<td style="padding:15px">Yes</td>
|
|
5904
|
+
</tr>
|
|
5905
|
+
<tr>
|
|
5906
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesFiltersList(assetId, callback)</td>
|
|
5907
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesFilters_List</td>
|
|
5908
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/filters?{query}</td>
|
|
5909
|
+
<td style="padding:15px">Yes</td>
|
|
5910
|
+
</tr>
|
|
5911
|
+
<tr>
|
|
5912
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesDestinationCandidatesFiltersList(assetId, limit, offset, search, callback)</td>
|
|
5913
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesDestinationCandidatesFilters_List</td>
|
|
5914
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/filters/dst-asset-candidates?{query}</td>
|
|
5915
|
+
<td style="padding:15px">Yes</td>
|
|
5916
|
+
</tr>
|
|
5917
|
+
<tr>
|
|
5918
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesSourceCandidatesFiltersList(assetId, limit, offset, search, callback)</td>
|
|
5919
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesSourceCandidatesFilters_List</td>
|
|
5920
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/filters/src-asset-candidates?{query}</td>
|
|
5921
|
+
<td style="padding:15px">Yes</td>
|
|
5922
|
+
</tr>
|
|
5923
|
+
<tr>
|
|
5924
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesSourceUsersCandidatesFiltersList(assetId, limit, offset, search, callback)</td>
|
|
5925
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesSourceUsersCandidatesFilters_List</td>
|
|
5926
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/filters/src-users-candidates?{query}</td>
|
|
5927
|
+
<td style="padding:15px">Yes</td>
|
|
5928
|
+
</tr>
|
|
5929
|
+
<tr>
|
|
5930
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesMFAMethodsList(assetId, callback)</td>
|
|
5931
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesMFAMethods_List</td>
|
|
5932
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/mfa-methods?{query}</td>
|
|
5933
|
+
<td style="padding:15px">Yes</td>
|
|
5934
|
+
</tr>
|
|
5935
|
+
<tr>
|
|
5936
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesSourceCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5937
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesSourceCandidates_List</td>
|
|
5938
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/src-asset-candidates?{query}</td>
|
|
5939
|
+
<td style="padding:15px">Yes</td>
|
|
5940
|
+
</tr>
|
|
5941
|
+
<tr>
|
|
5942
|
+
<td style="padding:15px">assetOTMFAIdentityPoliciesSourceUserCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5943
|
+
<td style="padding:15px">AssetOTMFAIdentityPoliciesSourceUserCandidates_List</td>
|
|
5944
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/identity/reactive-policies/src-users-candidates?{query}</td>
|
|
5945
|
+
<td style="padding:15px">Yes</td>
|
|
5946
|
+
</tr>
|
|
5947
|
+
<tr>
|
|
5948
|
+
<td style="padding:15px">assetOTMFAInboundPoliciesSimulateTest(assetId, srcUserId, srcAssetId, srcProcess, dstAssetId, dstProcess, protocolType, port, callback)</td>
|
|
5949
|
+
<td style="padding:15px">AssetOTMFAInboundPoliciesSimulate_Test</td>
|
|
5950
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/inbound/simulate?{query}</td>
|
|
5951
|
+
<td style="padding:15px">Yes</td>
|
|
5952
|
+
</tr>
|
|
5953
|
+
<tr>
|
|
5954
|
+
<td style="padding:15px">assetOTMFAInboundPoliciesSimulateDestinationCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5955
|
+
<td style="padding:15px">AssetOTMFAInboundPoliciesSimulateDestinationCandidates_List</td>
|
|
5956
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/inbound/simulate/dst-candidates?{query}</td>
|
|
5957
|
+
<td style="padding:15px">Yes</td>
|
|
5958
|
+
</tr>
|
|
5959
|
+
<tr>
|
|
5960
|
+
<td style="padding:15px">assetOTMFAInboundPoliciesSimulateResolveGet(assetId, simulationParams, callback)</td>
|
|
5961
|
+
<td style="padding:15px">AssetOTMFAInboundPoliciesSimulateResolve_Get</td>
|
|
5962
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/inbound/simulate/resolve?{query}</td>
|
|
5963
|
+
<td style="padding:15px">Yes</td>
|
|
5964
|
+
</tr>
|
|
5965
|
+
<tr>
|
|
5966
|
+
<td style="padding:15px">assetOTMFAInboundPoliciesSimulateSourceCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5967
|
+
<td style="padding:15px">AssetOTMFAInboundPoliciesSimulateSourceCandidates_List</td>
|
|
5968
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/inbound/simulate/src-candidates?{query}</td>
|
|
5969
|
+
<td style="padding:15px">Yes</td>
|
|
5970
|
+
</tr>
|
|
5971
|
+
<tr>
|
|
5972
|
+
<td style="padding:15px">assetOTMFAInboundPoliciesSimulateSourceUserCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5973
|
+
<td style="padding:15px">AssetOTMFAInboundPoliciesSimulateSourceUserCandidates_List</td>
|
|
5974
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/inbound/simulate/src-users-candidates?{query}</td>
|
|
5975
|
+
<td style="padding:15px">Yes</td>
|
|
5976
|
+
</tr>
|
|
5977
|
+
<tr>
|
|
5978
|
+
<td style="padding:15px">assetOTMFAOutboundPoliciesSimulateTest(assetId, srcUserId, srcAssetId, srcProcess, dstAssetId, dstProcess, protocolType, port, callback)</td>
|
|
5979
|
+
<td style="padding:15px">AssetOTMFAOutboundPoliciesSimulate_Test</td>
|
|
5980
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/outbound/simulate?{query}</td>
|
|
5981
|
+
<td style="padding:15px">Yes</td>
|
|
5982
|
+
</tr>
|
|
5983
|
+
<tr>
|
|
5984
|
+
<td style="padding:15px">assetOTMFAOutboundPoliciesSimulateDestinationCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5985
|
+
<td style="padding:15px">AssetOTMFAOutboundPoliciesSimulateDestinationCandidates_List</td>
|
|
5986
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/outbound/simulate/dst-candidates?{query}</td>
|
|
5987
|
+
<td style="padding:15px">Yes</td>
|
|
5988
|
+
</tr>
|
|
5989
|
+
<tr>
|
|
5990
|
+
<td style="padding:15px">assetOTMFAOutboundPoliciesSimulateResolveGet(assetId, simulationParams, callback)</td>
|
|
5991
|
+
<td style="padding:15px">AssetOTMFAOutboundPoliciesSimulateResolve_Get</td>
|
|
5992
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/outbound/simulate/resolve?{query}</td>
|
|
5993
|
+
<td style="padding:15px">Yes</td>
|
|
5994
|
+
</tr>
|
|
5995
|
+
<tr>
|
|
5996
|
+
<td style="padding:15px">assetOTMFAOutboundPoliciesSimulateSourceCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
5997
|
+
<td style="padding:15px">AssetOTMFAOutboundPoliciesSimulateSourceCandidates_List</td>
|
|
5998
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/outbound/simulate/src-candidates?{query}</td>
|
|
5999
|
+
<td style="padding:15px">Yes</td>
|
|
6000
|
+
</tr>
|
|
6001
|
+
<tr>
|
|
6002
|
+
<td style="padding:15px">assetOTMFAOutboundPoliciesSimulateSourceUserCandidatesList(assetId, limit, offset, search, callback)</td>
|
|
6003
|
+
<td style="padding:15px">AssetOTMFAOutboundPoliciesSimulateSourceUserCandidates_List</td>
|
|
6004
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/reactive-policies/outbound/simulate/src-users-candidates?{query}</td>
|
|
6005
|
+
<td style="padding:15px">Yes</td>
|
|
6006
|
+
</tr>
|
|
6007
|
+
<tr>
|
|
6008
|
+
<td style="padding:15px">assetOTInboundRulesList(assetId, limit, offset, filters, entityParams, withCount, addBuiltins, addAncestors, direction, callback)</td>
|
|
6009
|
+
<td style="padding:15px">AssetOTInboundRules_List</td>
|
|
6010
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound?{query}</td>
|
|
6011
|
+
<td style="padding:15px">Yes</td>
|
|
6012
|
+
</tr>
|
|
6013
|
+
<tr>
|
|
6014
|
+
<td style="padding:15px">assetOTInboundRulesCreate(assetId, body, callback)</td>
|
|
6015
|
+
<td style="padding:15px">AssetOTInboundRules_Create</td>
|
|
6016
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound?{query}</td>
|
|
6017
|
+
<td style="padding:15px">Yes</td>
|
|
6018
|
+
</tr>
|
|
6019
|
+
<tr>
|
|
6020
|
+
<td style="padding:15px">assetOTInboundRulesExport(assetId, body, callback)</td>
|
|
6021
|
+
<td style="padding:15px">AssetOTInboundRules_Export</td>
|
|
6022
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/export?{query}</td>
|
|
6023
|
+
<td style="padding:15px">Yes</td>
|
|
6024
|
+
</tr>
|
|
6025
|
+
<tr>
|
|
6026
|
+
<td style="padding:15px">assetOTInboundRulesExportGet(assetId, exportId, callback)</td>
|
|
6027
|
+
<td style="padding:15px">AssetOTInboundRulesExport_Get</td>
|
|
6028
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/export/csv/{pathv2}?{query}</td>
|
|
6029
|
+
<td style="padding:15px">Yes</td>
|
|
6030
|
+
</tr>
|
|
6031
|
+
<tr>
|
|
6032
|
+
<td style="padding:15px">assetOTInboundRulesExcludedDestinationCandidatesList(assetId, limit, cursor, search, callback)</td>
|
|
6033
|
+
<td style="padding:15px">AssetOTInboundRulesExcludedDestinationCandidates_List</td>
|
|
6034
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/excluded-local-candidates?{query}</td>
|
|
6035
|
+
<td style="padding:15px">Yes</td>
|
|
6036
|
+
</tr>
|
|
6037
|
+
<tr>
|
|
6038
|
+
<td style="padding:15px">assetOTInboundRulesFiltersList(assetId, callback)</td>
|
|
6039
|
+
<td style="padding:15px">AssetOTInboundRulesFilters_List</td>
|
|
6040
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/filters?{query}</td>
|
|
6041
|
+
<td style="padding:15px">Yes</td>
|
|
6042
|
+
</tr>
|
|
6043
|
+
<tr>
|
|
6044
|
+
<td style="padding:15px">assetOTInboundRulesDesinationCandidatesFiltersList(assetId, callback)</td>
|
|
6045
|
+
<td style="padding:15px">AssetOTInboundRulesDesinationCandidatesFilters_List</td>
|
|
6046
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/filters/local-candidates?{query}</td>
|
|
6047
|
+
<td style="padding:15px">Yes</td>
|
|
6048
|
+
</tr>
|
|
6049
|
+
<tr>
|
|
6050
|
+
<td style="padding:15px">assetOTInboundRulesSourceCandidatesFiltersList(assetId, callback)</td>
|
|
6051
|
+
<td style="padding:15px">AssetOTInboundRulesSourceCandidatesFilters_List</td>
|
|
6052
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/filters/remote-candidates?{query}</td>
|
|
6053
|
+
<td style="padding:15px">Yes</td>
|
|
6054
|
+
</tr>
|
|
6055
|
+
<tr>
|
|
6056
|
+
<td style="padding:15px">assetOTInboundRulesDestinationCandidatesList(assetId, limit, cursor, search, callback)</td>
|
|
6057
|
+
<td style="padding:15px">AssetOTInboundRulesDestinationCandidates_List</td>
|
|
6058
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/local-candidates?{query}</td>
|
|
6059
|
+
<td style="padding:15px">Yes</td>
|
|
6060
|
+
</tr>
|
|
6061
|
+
<tr>
|
|
6062
|
+
<td style="padding:15px">assetOTInboundRulesSourceCandidatesList(assetId, limit, cursor, search, ruleType, callback)</td>
|
|
6063
|
+
<td style="padding:15px">AssetOTInboundRulesSourceCandidates_List</td>
|
|
6064
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/remote-candidates?{query}</td>
|
|
6065
|
+
<td style="padding:15px">Yes</td>
|
|
6066
|
+
</tr>
|
|
6067
|
+
<tr>
|
|
6068
|
+
<td style="padding:15px">assetOTInboundRulesReviewApprove(assetId, ruleId, callback)</td>
|
|
6069
|
+
<td style="padding:15px">AssetOTInboundRulesReview_Approve</td>
|
|
6070
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/review/approve/{pathv2}?{query}</td>
|
|
6071
|
+
<td style="padding:15px">Yes</td>
|
|
6072
|
+
</tr>
|
|
6073
|
+
<tr>
|
|
6074
|
+
<td style="padding:15px">assetOTInboundRulesReviewApproveWithChanges(assetId, ruleId, body, callback)</td>
|
|
6075
|
+
<td style="padding:15px">AssetOTInboundRulesReview_ApproveWithChanges</td>
|
|
6076
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/review/approve-with-changes/{pathv2}?{query}</td>
|
|
6077
|
+
<td style="padding:15px">Yes</td>
|
|
6078
|
+
</tr>
|
|
6079
|
+
<tr>
|
|
6080
|
+
<td style="padding:15px">assetOTInboundRulesReviewDeny(assetId, ruleId, callback)</td>
|
|
6081
|
+
<td style="padding:15px">AssetOTInboundRulesReview_Deny</td>
|
|
6082
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/review/reject/{pathv2}?{query}</td>
|
|
6083
|
+
<td style="padding:15px">Yes</td>
|
|
6084
|
+
</tr>
|
|
6085
|
+
<tr>
|
|
6086
|
+
<td style="padding:15px">assetOTInboundRuleGet(assetId, ruleId, callback)</td>
|
|
6087
|
+
<td style="padding:15px">AssetOTInboundRule_Get</td>
|
|
6088
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/{pathv2}?{query}</td>
|
|
6089
|
+
<td style="padding:15px">Yes</td>
|
|
6090
|
+
</tr>
|
|
6091
|
+
<tr>
|
|
6092
|
+
<td style="padding:15px">assetOTInboundRuleUpdate(assetId, ruleId, body, callback)</td>
|
|
6093
|
+
<td style="padding:15px">AssetOTInboundRule_Update</td>
|
|
6094
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/{pathv2}?{query}</td>
|
|
6095
|
+
<td style="padding:15px">Yes</td>
|
|
6096
|
+
</tr>
|
|
6097
|
+
<tr>
|
|
6098
|
+
<td style="padding:15px">assetOTInboundRuleDelete(assetId, ruleId, callback)</td>
|
|
6099
|
+
<td style="padding:15px">AssetOTInboundRule_Delete</td>
|
|
6100
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/inbound/{pathv2}?{query}</td>
|
|
6101
|
+
<td style="padding:15px">Yes</td>
|
|
6102
|
+
</tr>
|
|
6103
|
+
<tr>
|
|
6104
|
+
<td style="padding:15px">assetOTOutboundAllowRulesDestinationCandidatesListV2(assetId, limit, cursor, search, ruleType, callback)</td>
|
|
6105
|
+
<td style="padding:15px">AssetOTOutboundRulesDestinationCandidates_List</td>
|
|
6106
|
+
<td style="padding:15px">{base_path}/{version}/assets/ot/{pathv1}/protection/rules/outbound/remote-candidates?{query}</td>
|
|
6107
|
+
<td style="padding:15px">Yes</td>
|
|
6108
|
+
</tr>
|
|
6109
|
+
<tr>
|
|
6110
|
+
<td style="padding:15px">assetsListV2(limit, filters, offset, cursor, withCount, order, orderColumns, showInactive, callback)</td>
|
|
6111
|
+
<td style="padding:15px">Assets_List</td>
|
|
6112
|
+
<td style="padding:15px">{base_path}/{version}/assets?{query}</td>
|
|
6113
|
+
<td style="padding:15px">Yes</td>
|
|
6114
|
+
</tr>
|
|
6115
|
+
<tr>
|
|
6116
|
+
<td style="padding:15px">assetTypeUpdate(assetId, body, callback)</td>
|
|
6117
|
+
<td style="padding:15px">AssetType_Update</td>
|
|
6118
|
+
<td style="padding:15px">{base_path}/{version}/assets/{pathv1}/actions/type?{query}</td>
|
|
6119
|
+
<td style="padding:15px">Yes</td>
|
|
6120
|
+
</tr>
|
|
6121
|
+
<tr>
|
|
6122
|
+
<td style="padding:15px">assetsLinuxScriptGet(callback)</td>
|
|
6123
|
+
<td style="padding:15px">AssetsLinuxScript_Get</td>
|
|
6124
|
+
<td style="padding:15px">{base_path}/{version}/assets/linux/scripts/add-user?{query}</td>
|
|
6125
|
+
<td style="padding:15px">Yes</td>
|
|
6126
|
+
</tr>
|
|
6127
|
+
<tr>
|
|
6128
|
+
<td style="padding:15px">assetsLinuxScriptAvailableGet(callback)</td>
|
|
6129
|
+
<td style="padding:15px">AssetsLinuxScriptAvailable_Get</td>
|
|
6130
|
+
<td style="padding:15px">{base_path}/{version}/assets/linux/scripts/add-user-available?{query}</td>
|
|
6131
|
+
<td style="padding:15px">Yes</td>
|
|
6132
|
+
</tr>
|
|
6133
|
+
<tr>
|
|
6134
|
+
<td style="padding:15px">groupsMFAInboundPoliciesSimulateTest(groupType, groupId, srcUserId, srcAssetId, srcProcess, dstAssetId, dstProcess, protocolType, port, callback)</td>
|
|
6135
|
+
<td style="padding:15px">GroupsMFAInboundPoliciesSimulate_Test</td>
|
|
6136
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/inbound/simulate?{query}</td>
|
|
6137
|
+
<td style="padding:15px">Yes</td>
|
|
6138
|
+
</tr>
|
|
6139
|
+
<tr>
|
|
6140
|
+
<td style="padding:15px">groupsMFAInboundPoliciesSimulateDestinationCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6141
|
+
<td style="padding:15px">GroupsMFAInboundPoliciesSimulateDestinationCandidates_List</td>
|
|
6142
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/inbound/simulate/dst-candidates?{query}</td>
|
|
6143
|
+
<td style="padding:15px">Yes</td>
|
|
6144
|
+
</tr>
|
|
6145
|
+
<tr>
|
|
6146
|
+
<td style="padding:15px">groupsMFAInboundPoliciesSimulateResolveGet(groupType, groupId, simulationParams, callback)</td>
|
|
6147
|
+
<td style="padding:15px">GroupsMFAInboundPoliciesSimulateResolve_Get</td>
|
|
6148
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/inbound/simulate/resolve?{query}</td>
|
|
6149
|
+
<td style="padding:15px">Yes</td>
|
|
6150
|
+
</tr>
|
|
6151
|
+
<tr>
|
|
6152
|
+
<td style="padding:15px">groupsMFAInboundPoliciesSimulateSourceUserCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6153
|
+
<td style="padding:15px">GroupsMFAInboundPoliciesSimulateSourceUserCandidates_List</td>
|
|
6154
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/inbound/simulate/src-users-candidates?{query}</td>
|
|
6155
|
+
<td style="padding:15px">Yes</td>
|
|
6156
|
+
</tr>
|
|
6157
|
+
<tr>
|
|
6158
|
+
<td style="padding:15px">groupsMFAOutboundPoliciesSimulateTest(groupType, groupId, srcUserId, srcAssetId, srcProcess, dstAssetId, dstProcess, protocolType, port, callback)</td>
|
|
6159
|
+
<td style="padding:15px">GroupsMFAOutboundPoliciesSimulate_Test</td>
|
|
6160
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/outbound/simulate?{query}</td>
|
|
6161
|
+
<td style="padding:15px">Yes</td>
|
|
6162
|
+
</tr>
|
|
6163
|
+
<tr>
|
|
6164
|
+
<td style="padding:15px">groupsMFAOutboundPoliciesSimulateDestinationCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6165
|
+
<td style="padding:15px">GroupsMFAOutboundPoliciesSimulateDestinationCandidates_List</td>
|
|
6166
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/outbound/simulate/dst-candidates?{query}</td>
|
|
6167
|
+
<td style="padding:15px">Yes</td>
|
|
6168
|
+
</tr>
|
|
6169
|
+
<tr>
|
|
6170
|
+
<td style="padding:15px">groupsMFAOutboundPoliciesSimulateResolveGet(groupType, groupId, simulationParams, callback)</td>
|
|
6171
|
+
<td style="padding:15px">GroupsMFAOutboundPoliciesSimulateResolve_Get</td>
|
|
6172
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/outbound/simulate/resolve?{query}</td>
|
|
6173
|
+
<td style="padding:15px">Yes</td>
|
|
6174
|
+
</tr>
|
|
6175
|
+
<tr>
|
|
6176
|
+
<td style="padding:15px">groupsMFAOutboundPoliciesSimulateSourceUserCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6177
|
+
<td style="padding:15px">GroupsMFAOutboundPoliciesSimulateSourceUserCandidates_List</td>
|
|
6178
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/outbound/simulate/src-users-candidates?{query}</td>
|
|
6179
|
+
<td style="padding:15px">Yes</td>
|
|
6180
|
+
</tr>
|
|
6181
|
+
<tr>
|
|
6182
|
+
<td style="padding:15px">groupsInboundRulesList(groupType, groupId, limit, offset, filters, entityParams, withCount, addBuiltins, addAncestors, direction, callback)</td>
|
|
6183
|
+
<td style="padding:15px">GroupsInboundRules_List</td>
|
|
6184
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound?{query}</td>
|
|
6185
|
+
<td style="padding:15px">Yes</td>
|
|
6186
|
+
</tr>
|
|
6187
|
+
<tr>
|
|
6188
|
+
<td style="padding:15px">groupsInboundRulesCreate(groupType, groupId, body, callback)</td>
|
|
6189
|
+
<td style="padding:15px">GroupsInboundRules_Create</td>
|
|
6190
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound?{query}</td>
|
|
6191
|
+
<td style="padding:15px">Yes</td>
|
|
6192
|
+
</tr>
|
|
6193
|
+
<tr>
|
|
6194
|
+
<td style="padding:15px">groupsInboundRulesExport(groupType, groupId, body, callback)</td>
|
|
6195
|
+
<td style="padding:15px">GroupsInboundRules_Export</td>
|
|
6196
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/export?{query}</td>
|
|
6197
|
+
<td style="padding:15px">Yes</td>
|
|
6198
|
+
</tr>
|
|
6199
|
+
<tr>
|
|
6200
|
+
<td style="padding:15px">groupsInboundRulesExportGet(groupType, groupId, exportId, callback)</td>
|
|
6201
|
+
<td style="padding:15px">GroupsInboundRulesExport_Get</td>
|
|
6202
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/export/csv/{pathv3}?{query}</td>
|
|
6203
|
+
<td style="padding:15px">Yes</td>
|
|
6204
|
+
</tr>
|
|
6205
|
+
<tr>
|
|
6206
|
+
<td style="padding:15px">groupsInboundRulesExcludedDestinationCandidatesList(groupType, groupId, limit, cursor, search, callback)</td>
|
|
6207
|
+
<td style="padding:15px">GroupsInboundRulesExcludedDestinationCandidates_List</td>
|
|
6208
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/excluded-local-candidates?{query}</td>
|
|
6209
|
+
<td style="padding:15px">Yes</td>
|
|
6210
|
+
</tr>
|
|
6211
|
+
<tr>
|
|
6212
|
+
<td style="padding:15px">groupsInboundRulesFiltersList(groupType, groupId, callback)</td>
|
|
6213
|
+
<td style="padding:15px">GroupsInboundRulesFilters_List</td>
|
|
6214
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/filters?{query}</td>
|
|
6215
|
+
<td style="padding:15px">Yes</td>
|
|
6216
|
+
</tr>
|
|
6217
|
+
<tr>
|
|
6218
|
+
<td style="padding:15px">groupsInboundRulesSourceCandidatesFiltersList(groupType, groupId, callback)</td>
|
|
6219
|
+
<td style="padding:15px">GroupsInboundRulesSourceCandidatesFilters_List</td>
|
|
6220
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/filters/remote-candidates?{query}</td>
|
|
6221
|
+
<td style="padding:15px">Yes</td>
|
|
6222
|
+
</tr>
|
|
6223
|
+
<tr>
|
|
6224
|
+
<td style="padding:15px">groupsInboundRulesDesinationCandidatesFiltersList(groupType, groupId, callback)</td>
|
|
6225
|
+
<td style="padding:15px">GroupsInboundRulesDesinationCandidatesFilters_List</td>
|
|
6226
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/filters/local-candidates?{query}</td>
|
|
6227
|
+
<td style="padding:15px">Yes</td>
|
|
6228
|
+
</tr>
|
|
6229
|
+
<tr>
|
|
6230
|
+
<td style="padding:15px">groupsInboundRulesDestinationCandidatesList(groupType, groupId, limit, cursor, search, callback)</td>
|
|
6231
|
+
<td style="padding:15px">GroupsInboundRulesDestinationCandidates_List</td>
|
|
6232
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/local-candidates?{query}</td>
|
|
6233
|
+
<td style="padding:15px">Yes</td>
|
|
6234
|
+
</tr>
|
|
6235
|
+
<tr>
|
|
6236
|
+
<td style="padding:15px">groupsInboundRulesSourceCandidatesList(groupType, groupId, limit, cursor, search, ruleType, callback)</td>
|
|
6237
|
+
<td style="padding:15px">GroupsInboundRulesSourceCandidates_List</td>
|
|
6238
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/remote-candidates?{query}</td>
|
|
6239
|
+
<td style="padding:15px">Yes</td>
|
|
6240
|
+
</tr>
|
|
6241
|
+
<tr>
|
|
6242
|
+
<td style="padding:15px">groupsInboundRulesReviewApprove(groupType, groupId, ruleId, callback)</td>
|
|
6243
|
+
<td style="padding:15px">GroupsInboundRulesReview_Approve</td>
|
|
6244
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/review/approve/{pathv3}?{query}</td>
|
|
6245
|
+
<td style="padding:15px">Yes</td>
|
|
6246
|
+
</tr>
|
|
6247
|
+
<tr>
|
|
6248
|
+
<td style="padding:15px">groupsInboundRulesReviewApproveWithChanges(groupType, groupId, ruleId, body, callback)</td>
|
|
6249
|
+
<td style="padding:15px">GroupsInboundRulesReview_ApproveWithChanges</td>
|
|
6250
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/review/approve-with-changes/{pathv3}?{query}</td>
|
|
6251
|
+
<td style="padding:15px">Yes</td>
|
|
6252
|
+
</tr>
|
|
6253
|
+
<tr>
|
|
6254
|
+
<td style="padding:15px">groupsInboundRulesReviewDeny(groupType, groupId, ruleId, callback)</td>
|
|
6255
|
+
<td style="padding:15px">GroupsInboundRulesReview_Deny</td>
|
|
6256
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/review/reject/{pathv3}?{query}</td>
|
|
6257
|
+
<td style="padding:15px">Yes</td>
|
|
6258
|
+
</tr>
|
|
6259
|
+
<tr>
|
|
6260
|
+
<td style="padding:15px">groupsInboundRuleGet(groupType, groupId, ruleId, callback)</td>
|
|
6261
|
+
<td style="padding:15px">GroupsInboundRule_Get</td>
|
|
6262
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/{pathv3}?{query}</td>
|
|
6263
|
+
<td style="padding:15px">Yes</td>
|
|
6264
|
+
</tr>
|
|
6265
|
+
<tr>
|
|
6266
|
+
<td style="padding:15px">groupsInboundRuleUpdate(groupType, groupId, ruleId, body, callback)</td>
|
|
6267
|
+
<td style="padding:15px">GroupsInboundRule_Update</td>
|
|
6268
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/{pathv3}?{query}</td>
|
|
6269
|
+
<td style="padding:15px">Yes</td>
|
|
6270
|
+
</tr>
|
|
6271
|
+
<tr>
|
|
6272
|
+
<td style="padding:15px">groupsInboundRuleDelete(groupType, groupId, ruleId, callback)</td>
|
|
6273
|
+
<td style="padding:15px">GroupsInboundRule_Delete</td>
|
|
6274
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/inbound/{pathv3}?{query}</td>
|
|
6275
|
+
<td style="padding:15px">Yes</td>
|
|
6276
|
+
</tr>
|
|
6277
|
+
<tr>
|
|
6278
|
+
<td style="padding:15px">groupsOutboundAllowRulesDestinationCandidatesListV2(groupType, groupId, limit, cursor, search, ruleType, callback)</td>
|
|
6279
|
+
<td style="padding:15px">GroupsOutboundRulesDestinationCandidates_List</td>
|
|
6280
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/rules/outbound/remote-candidates?{query}</td>
|
|
6281
|
+
<td style="padding:15px">Yes</td>
|
|
6282
|
+
</tr>
|
|
6283
|
+
<tr>
|
|
6284
|
+
<td style="padding:15px">groupsListV2(limit, offset, cursor, search, filters, callback)</td>
|
|
6285
|
+
<td style="padding:15px">Groups_List</td>
|
|
6286
|
+
<td style="padding:15px">{base_path}/{version}/groups?{query}</td>
|
|
6287
|
+
<td style="padding:15px">Yes</td>
|
|
6288
|
+
</tr>
|
|
6289
|
+
<tr>
|
|
6290
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesList(groupType, groupId, limit, offset, filters, withCount, addBuiltins, addAncestors, order, orderColumns, callback)</td>
|
|
6291
|
+
<td style="padding:15px">GroupsMFAIdentityPolicies_List</td>
|
|
6292
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies?{query}</td>
|
|
6293
|
+
<td style="padding:15px">Yes</td>
|
|
6294
|
+
</tr>
|
|
6295
|
+
<tr>
|
|
6296
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesCreate(groupType, groupId, body, callback)</td>
|
|
6297
|
+
<td style="padding:15px">GroupsMFAIdentityPolicies_Create</td>
|
|
6298
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies?{query}</td>
|
|
6299
|
+
<td style="padding:15px">Yes</td>
|
|
6300
|
+
</tr>
|
|
6301
|
+
<tr>
|
|
6302
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesGet(groupType, groupId, reactivePolicyId, callback)</td>
|
|
6303
|
+
<td style="padding:15px">GroupsMFAIdentityPolicies_Get</td>
|
|
6304
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/{pathv3}?{query}</td>
|
|
6305
|
+
<td style="padding:15px">Yes</td>
|
|
6306
|
+
</tr>
|
|
6307
|
+
<tr>
|
|
6308
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesUpdate(groupType, groupId, reactivePolicyId, body, callback)</td>
|
|
6309
|
+
<td style="padding:15px">GroupsMFAIdentityPolicies_Update</td>
|
|
6310
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/{pathv3}?{query}</td>
|
|
6311
|
+
<td style="padding:15px">Yes</td>
|
|
6312
|
+
</tr>
|
|
6313
|
+
<tr>
|
|
6314
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesDelete(groupType, groupId, reactivePolicyId, callback)</td>
|
|
6315
|
+
<td style="padding:15px">GroupsMFAIdentityPolicies_Delete</td>
|
|
6316
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/{pathv3}?{query}</td>
|
|
6317
|
+
<td style="padding:15px">Yes</td>
|
|
6318
|
+
</tr>
|
|
6319
|
+
<tr>
|
|
6320
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesDestinationCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6321
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesDestinationCandidates_List</td>
|
|
6322
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/dst-asset-candidates?{query}</td>
|
|
6323
|
+
<td style="padding:15px">Yes</td>
|
|
6324
|
+
</tr>
|
|
6325
|
+
<tr>
|
|
6326
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesExcludedSourceCandidatesList(groupType, groupId, limit, offset, search, isSrcAssetUnmonitored, callback)</td>
|
|
6327
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesExcludedSourceCandidates_List</td>
|
|
6328
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/excluded-src-asset-candidates?{query}</td>
|
|
6329
|
+
<td style="padding:15px">Yes</td>
|
|
6330
|
+
</tr>
|
|
6331
|
+
<tr>
|
|
6332
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesFiltersList(groupType, groupId, callback)</td>
|
|
6333
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesFilters_List</td>
|
|
6334
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/filters?{query}</td>
|
|
6335
|
+
<td style="padding:15px">Yes</td>
|
|
6336
|
+
</tr>
|
|
6337
|
+
<tr>
|
|
6338
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesDestinationCandidatesFiltersList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6339
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesDestinationCandidatesFilters_List</td>
|
|
6340
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/filters/dst-asset-candidates?{query}</td>
|
|
6341
|
+
<td style="padding:15px">Yes</td>
|
|
6342
|
+
</tr>
|
|
6343
|
+
<tr>
|
|
6344
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesSourceCandidatesFiltersList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6345
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesSourceCandidatesFilters_List</td>
|
|
6346
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/filters/src-asset-candidates?{query}</td>
|
|
6347
|
+
<td style="padding:15px">Yes</td>
|
|
6348
|
+
</tr>
|
|
6349
|
+
<tr>
|
|
6350
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesSourceUsersCandidatesFiltersList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6351
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesSourceUsersCandidatesFilters_List</td>
|
|
6352
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/filters/src-users-candidates?{query}</td>
|
|
6353
|
+
<td style="padding:15px">Yes</td>
|
|
6354
|
+
</tr>
|
|
6355
|
+
<tr>
|
|
6356
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesMFAMethodsList(groupType, groupId, callback)</td>
|
|
6357
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesMFAMethods_List</td>
|
|
6358
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/mfa-methods?{query}</td>
|
|
6359
|
+
<td style="padding:15px">Yes</td>
|
|
6360
|
+
</tr>
|
|
6361
|
+
<tr>
|
|
6362
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesSourceCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6363
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesSourceCandidates_List</td>
|
|
6364
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/src-asset-candidates?{query}</td>
|
|
6365
|
+
<td style="padding:15px">Yes</td>
|
|
6366
|
+
</tr>
|
|
6367
|
+
<tr>
|
|
6368
|
+
<td style="padding:15px">groupsMFAIdentityPoliciesSourceUserCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6369
|
+
<td style="padding:15px">GroupsMFAIdentityPoliciesSourceUserCandidates_List</td>
|
|
6370
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/identity/reactive-policies/src-users-candidates?{query}</td>
|
|
6371
|
+
<td style="padding:15px">Yes</td>
|
|
6372
|
+
</tr>
|
|
6373
|
+
<tr>
|
|
6374
|
+
<td style="padding:15px">groupsMFAInboundPoliciesSimulateSourceCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6375
|
+
<td style="padding:15px">GroupsMFAInboundPoliciesSimulateSourceCandidates_List</td>
|
|
6376
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/inbound/simulate/src-candidates?{query}</td>
|
|
6377
|
+
<td style="padding:15px">Yes</td>
|
|
6378
|
+
</tr>
|
|
6379
|
+
<tr>
|
|
6380
|
+
<td style="padding:15px">groupsMFAOutboundPoliciesSimulateSourceCandidatesList(groupType, groupId, limit, offset, search, callback)</td>
|
|
6381
|
+
<td style="padding:15px">GroupsMFAOutboundPoliciesSimulateSourceCandidates_List</td>
|
|
6382
|
+
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/{pathv2}/protection/reactive-policies/outbound/simulate/src-candidates?{query}</td>
|
|
6383
|
+
<td style="padding:15px">Yes</td>
|
|
6384
|
+
</tr>
|
|
6385
|
+
<tr>
|
|
6386
|
+
<td style="padding:15px">tagGroupsMembersAdd(groupId, body, callback)</td>
|
|
6387
|
+
<td style="padding:15px">TagGroupsMembers_Add</td>
|
|
6388
|
+
<td style="padding:15px">{base_path}/{version}/groups/tag/{pathv1}/members?{query}</td>
|
|
6389
|
+
<td style="padding:15px">Yes</td>
|
|
6390
|
+
</tr>
|
|
6391
|
+
<tr>
|
|
6392
|
+
<td style="padding:15px">tagGroupsCandidatesList(limit, offset, groupId, search, callback)</td>
|
|
6393
|
+
<td style="padding:15px">TagGroupsCandidates_List</td>
|
|
6394
|
+
<td style="padding:15px">{base_path}/{version}/groups/tag/member-candidates?{query}</td>
|
|
6395
|
+
<td style="padding:15px">Yes</td>
|
|
6396
|
+
</tr>
|
|
6397
|
+
<tr>
|
|
6398
|
+
<td style="padding:15px">mFAInboundPoliciesSimulateResolveGet(simulationParams, callback)</td>
|
|
6399
|
+
<td style="padding:15px">MFAInboundPoliciesSimulateResolve_Get</td>
|
|
6400
|
+
<td style="padding:15px">{base_path}/{version}/protection/reactive-policies/inbound/simulate/resolve?{query}</td>
|
|
6401
|
+
<td style="padding:15px">Yes</td>
|
|
6402
|
+
</tr>
|
|
6403
|
+
<tr>
|
|
6404
|
+
<td style="padding:15px">mFAOutboundPoliciesSimulateResolveGet(simulationParams, callback)</td>
|
|
6405
|
+
<td style="padding:15px">MFAOutboundPoliciesSimulateResolve_Get</td>
|
|
6406
|
+
<td style="padding:15px">{base_path}/{version}/protection/reactive-policies/outbound/simulate/resolve?{query}</td>
|
|
6407
|
+
<td style="padding:15px">Yes</td>
|
|
6408
|
+
</tr>
|
|
6409
|
+
<tr>
|
|
6410
|
+
<td style="padding:15px">inboundRulesReviewApprove(ruleId, callback)</td>
|
|
6411
|
+
<td style="padding:15px">InboundRulesReview_Approve</td>
|
|
6412
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/review/approve/{pathv1}?{query}</td>
|
|
6413
|
+
<td style="padding:15px">Yes</td>
|
|
6414
|
+
</tr>
|
|
6415
|
+
<tr>
|
|
6416
|
+
<td style="padding:15px">inboundRulesReviewDeny(ruleId, callback)</td>
|
|
6417
|
+
<td style="padding:15px">InboundRulesReview_Deny</td>
|
|
6418
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/review/reject/{pathv1}?{query}</td>
|
|
6419
|
+
<td style="padding:15px">Yes</td>
|
|
6420
|
+
</tr>
|
|
6421
|
+
<tr>
|
|
6422
|
+
<td style="padding:15px">inboundRulesList(limit, offset, filters, entityParams, withCount, addBuiltins, addAncestors, callback)</td>
|
|
6423
|
+
<td style="padding:15px">InboundRules_List</td>
|
|
6424
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound?{query}</td>
|
|
6425
|
+
<td style="padding:15px">Yes</td>
|
|
6426
|
+
</tr>
|
|
6427
|
+
<tr>
|
|
6428
|
+
<td style="padding:15px">inboundRulesCreate(body, callback)</td>
|
|
6429
|
+
<td style="padding:15px">InboundRules_Create</td>
|
|
6430
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound?{query}</td>
|
|
6431
|
+
<td style="padding:15px">Yes</td>
|
|
6432
|
+
</tr>
|
|
6433
|
+
<tr>
|
|
6434
|
+
<td style="padding:15px">inboundRulesExport(body, callback)</td>
|
|
6435
|
+
<td style="padding:15px">InboundRules_Export</td>
|
|
6436
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/export?{query}</td>
|
|
6437
|
+
<td style="padding:15px">Yes</td>
|
|
6438
|
+
</tr>
|
|
6439
|
+
<tr>
|
|
6440
|
+
<td style="padding:15px">inboundRulesExportGet(exportId, callback)</td>
|
|
6441
|
+
<td style="padding:15px">InboundRulesExport_Get</td>
|
|
6442
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/export/csv/{pathv1}?{query}</td>
|
|
6443
|
+
<td style="padding:15px">Yes</td>
|
|
6444
|
+
</tr>
|
|
6445
|
+
<tr>
|
|
6446
|
+
<td style="padding:15px">inboundRulesExcludedDestinationCandidatesList(limit, cursor, search, callback)</td>
|
|
6447
|
+
<td style="padding:15px">InboundRulesExcludedDestinationCandidates_List</td>
|
|
6448
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/excluded-local-candidates?{query}</td>
|
|
6449
|
+
<td style="padding:15px">Yes</td>
|
|
6450
|
+
</tr>
|
|
6451
|
+
<tr>
|
|
6452
|
+
<td style="padding:15px">inboundRulesFiltersList(callback)</td>
|
|
6453
|
+
<td style="padding:15px">InboundRulesFilters_List</td>
|
|
6454
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/filters?{query}</td>
|
|
6455
|
+
<td style="padding:15px">Yes</td>
|
|
6456
|
+
</tr>
|
|
6457
|
+
<tr>
|
|
6458
|
+
<td style="padding:15px">inboundRulesDesinationCandidatesFiltersList(callback)</td>
|
|
6459
|
+
<td style="padding:15px">InboundRulesDesinationCandidatesFilters_List</td>
|
|
6460
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/filters/local-candidates?{query}</td>
|
|
6461
|
+
<td style="padding:15px">Yes</td>
|
|
6462
|
+
</tr>
|
|
6463
|
+
<tr>
|
|
6464
|
+
<td style="padding:15px">inboundRulesSourceCandidatesFiltersList(callback)</td>
|
|
6465
|
+
<td style="padding:15px">InboundRulesSourceCandidatesFilters_List</td>
|
|
6466
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/filters/remote-candidates?{query}</td>
|
|
6467
|
+
<td style="padding:15px">Yes</td>
|
|
6468
|
+
</tr>
|
|
6469
|
+
<tr>
|
|
6470
|
+
<td style="padding:15px">inboundRulesDestinationCandidatesList(limit, cursor, search, callback)</td>
|
|
6471
|
+
<td style="padding:15px">InboundRulesDestinationCandidates_List</td>
|
|
6472
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/local-candidates?{query}</td>
|
|
6473
|
+
<td style="padding:15px">Yes</td>
|
|
6474
|
+
</tr>
|
|
6475
|
+
<tr>
|
|
6476
|
+
<td style="padding:15px">inboundRulesSourceCandidatesList(limit, cursor, search, ruleType, callback)</td>
|
|
6477
|
+
<td style="padding:15px">InboundRulesSourceCandidates_List</td>
|
|
6478
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/remote-candidates?{query}</td>
|
|
6479
|
+
<td style="padding:15px">Yes</td>
|
|
6480
|
+
</tr>
|
|
6481
|
+
<tr>
|
|
6482
|
+
<td style="padding:15px">inboundRulesReviewApproveWithChanges(ruleId, body, callback)</td>
|
|
6483
|
+
<td style="padding:15px">InboundRulesReview_ApproveWithChanges</td>
|
|
6484
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/review/approve-with-changes/{pathv1}?{query}</td>
|
|
6485
|
+
<td style="padding:15px">Yes</td>
|
|
6486
|
+
</tr>
|
|
6487
|
+
<tr>
|
|
6488
|
+
<td style="padding:15px">inboundRuleGet(ruleId, callback)</td>
|
|
6489
|
+
<td style="padding:15px">InboundRule_Get</td>
|
|
6490
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/{pathv1}?{query}</td>
|
|
6491
|
+
<td style="padding:15px">Yes</td>
|
|
6492
|
+
</tr>
|
|
6493
|
+
<tr>
|
|
6494
|
+
<td style="padding:15px">inboundRuleUpdate(ruleId, body, callback)</td>
|
|
6495
|
+
<td style="padding:15px">InboundRule_Update</td>
|
|
6496
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/{pathv1}?{query}</td>
|
|
6497
|
+
<td style="padding:15px">Yes</td>
|
|
6498
|
+
</tr>
|
|
6499
|
+
<tr>
|
|
6500
|
+
<td style="padding:15px">inboundRuleDelete(ruleId, callback)</td>
|
|
6501
|
+
<td style="padding:15px">InboundRule_Delete</td>
|
|
6502
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/inbound/{pathv1}?{query}</td>
|
|
6503
|
+
<td style="padding:15px">Yes</td>
|
|
6504
|
+
</tr>
|
|
6505
|
+
<tr>
|
|
6506
|
+
<td style="padding:15px">outboundAllowRulesDestinationCandidatesListV2(limit, cursor, search, ruleType, callback)</td>
|
|
6507
|
+
<td style="padding:15px">OutboundRulesDestinationCandidates_List</td>
|
|
6508
|
+
<td style="padding:15px">{base_path}/{version}/protection/rules/outbound/remote-candidates?{query}</td>
|
|
6509
|
+
<td style="padding:15px">Yes</td>
|
|
6510
|
+
</tr>
|
|
6511
|
+
<tr>
|
|
6512
|
+
<td style="padding:15px">settingsInactiveAssetsList(callback)</td>
|
|
6513
|
+
<td style="padding:15px">SettingsInactiveAssets_List</td>
|
|
6514
|
+
<td style="padding:15px">{base_path}/{version}/settings/entities-config?{query}</td>
|
|
6515
|
+
<td style="padding:15px">Yes</td>
|
|
6516
|
+
</tr>
|
|
6517
|
+
<tr>
|
|
6518
|
+
<td style="padding:15px">settingsInactiveAssetsUpdate(body, callback)</td>
|
|
6519
|
+
<td style="padding:15px">SettingsInactiveAssets_Update</td>
|
|
6520
|
+
<td style="padding:15px">{base_path}/{version}/settings/entities-config?{query}</td>
|
|
6521
|
+
<td style="padding:15px">Yes</td>
|
|
6522
|
+
</tr>
|
|
6523
|
+
<tr>
|
|
6524
|
+
<td style="padding:15px">settingsLicensesGet(protectionType, callback)</td>
|
|
6525
|
+
<td style="padding:15px">SettingsLicenses_Get</td>
|
|
6526
|
+
<td style="padding:15px">{base_path}/{version}/settings/subscriptions/licenses/{pathv1}?{query}</td>
|
|
6527
|
+
<td style="padding:15px">Yes</td>
|
|
6528
|
+
</tr>
|
|
6529
|
+
<tr>
|
|
6530
|
+
<td style="padding:15px">mFAIdentityPoliciesList(limit, offset, filters, withCount, addBuiltins, addAncestors, order, orderColumns, callback)</td>
|
|
6531
|
+
<td style="padding:15px">MFAIdentityPolicies_List</td>
|
|
6532
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies?{query}</td>
|
|
6533
|
+
<td style="padding:15px">Yes</td>
|
|
6534
|
+
</tr>
|
|
6535
|
+
<tr>
|
|
6536
|
+
<td style="padding:15px">mFAIdentityPoliciesCreate(body, callback)</td>
|
|
6537
|
+
<td style="padding:15px">MFAIdentityPolicies_Create</td>
|
|
6538
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies?{query}</td>
|
|
6539
|
+
<td style="padding:15px">Yes</td>
|
|
6540
|
+
</tr>
|
|
6541
|
+
<tr>
|
|
6542
|
+
<td style="padding:15px">mFAIdentityPoliciesGet(reactivePolicyId, callback)</td>
|
|
6543
|
+
<td style="padding:15px">MFAIdentityPolicies_Get</td>
|
|
6544
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/{pathv1}?{query}</td>
|
|
6545
|
+
<td style="padding:15px">Yes</td>
|
|
6546
|
+
</tr>
|
|
6547
|
+
<tr>
|
|
6548
|
+
<td style="padding:15px">mFAIdentityPoliciesUpdate(reactivePolicyId, body, callback)</td>
|
|
6549
|
+
<td style="padding:15px">MFAIdentityPolicies_Update</td>
|
|
6550
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/{pathv1}?{query}</td>
|
|
6551
|
+
<td style="padding:15px">Yes</td>
|
|
6552
|
+
</tr>
|
|
6553
|
+
<tr>
|
|
6554
|
+
<td style="padding:15px">mFAIdentityPoliciesDelete(reactivePolicyId, callback)</td>
|
|
6555
|
+
<td style="padding:15px">MFAIdentityPolicies_Delete</td>
|
|
6556
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/{pathv1}?{query}</td>
|
|
6557
|
+
<td style="padding:15px">Yes</td>
|
|
6558
|
+
</tr>
|
|
6559
|
+
<tr>
|
|
6560
|
+
<td style="padding:15px">mFAIdentityPoliciesDestinationCandidatesList(limit, offset, search, callback)</td>
|
|
6561
|
+
<td style="padding:15px">MFAIdentityPoliciesDestinationCandidates_List</td>
|
|
6562
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/dst-asset-candidates?{query}</td>
|
|
6563
|
+
<td style="padding:15px">Yes</td>
|
|
6564
|
+
</tr>
|
|
6565
|
+
<tr>
|
|
6566
|
+
<td style="padding:15px">mFAIdentityPoliciesExcludedSourceCandidatesList(limit, offset, search, isSrcAssetUnmonitored, callback)</td>
|
|
6567
|
+
<td style="padding:15px">MFAIdentityPoliciesExcludedSourceCandidates_List</td>
|
|
6568
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/excluded-src-asset-candidates?{query}</td>
|
|
6569
|
+
<td style="padding:15px">Yes</td>
|
|
6570
|
+
</tr>
|
|
6571
|
+
<tr>
|
|
6572
|
+
<td style="padding:15px">mFAIdentityPoliciesFiltersList(callback)</td>
|
|
6573
|
+
<td style="padding:15px">MFAIdentityPoliciesFilters_List</td>
|
|
6574
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/filters?{query}</td>
|
|
6575
|
+
<td style="padding:15px">Yes</td>
|
|
6576
|
+
</tr>
|
|
6577
|
+
<tr>
|
|
6578
|
+
<td style="padding:15px">mFAIdentityPoliciesDestinationCandidatesFiltersList(limit, offset, search, callback)</td>
|
|
6579
|
+
<td style="padding:15px">MFAIdentityPoliciesDestinationCandidatesFilters_List</td>
|
|
6580
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/filters/dst-asset-candidates?{query}</td>
|
|
6581
|
+
<td style="padding:15px">Yes</td>
|
|
6582
|
+
</tr>
|
|
6583
|
+
<tr>
|
|
6584
|
+
<td style="padding:15px">mFAIdentityPoliciesSourceCandidatesFiltersList(limit, offset, search, callback)</td>
|
|
6585
|
+
<td style="padding:15px">MFAIdentityPoliciesSourceCandidatesFilters_List</td>
|
|
6586
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/filters/src-asset-candidates?{query}</td>
|
|
6587
|
+
<td style="padding:15px">Yes</td>
|
|
6588
|
+
</tr>
|
|
6589
|
+
<tr>
|
|
6590
|
+
<td style="padding:15px">mFAIdentityPoliciesSourceUsersCandidatesFiltersList(limit, offset, search, callback)</td>
|
|
6591
|
+
<td style="padding:15px">MFAIdentityPoliciesSourceUsersCandidatesFilters_List</td>
|
|
6592
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/filters/src-users-candidates?{query}</td>
|
|
6593
|
+
<td style="padding:15px">Yes</td>
|
|
6594
|
+
</tr>
|
|
6595
|
+
<tr>
|
|
6596
|
+
<td style="padding:15px">mFAIdentityPoliciesMFAMethodsList(callback)</td>
|
|
6597
|
+
<td style="padding:15px">MFAIdentityPoliciesMFAMethods_List</td>
|
|
6598
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/mfa-methods?{query}</td>
|
|
6599
|
+
<td style="padding:15px">Yes</td>
|
|
6600
|
+
</tr>
|
|
6601
|
+
<tr>
|
|
6602
|
+
<td style="padding:15px">mFAIdentityPoliciesSourceCandidatesList(limit, offset, search, callback)</td>
|
|
6603
|
+
<td style="padding:15px">MFAIdentityPoliciesSourceCandidates_List</td>
|
|
6604
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/src-asset-candidates?{query}</td>
|
|
6605
|
+
<td style="padding:15px">Yes</td>
|
|
6606
|
+
</tr>
|
|
6607
|
+
<tr>
|
|
6608
|
+
<td style="padding:15px">mFAIdentityPoliciesSourceUserCandidatesList(limit, offset, search, callback)</td>
|
|
6609
|
+
<td style="padding:15px">MFAIdentityPoliciesSourceUserCandidates_List</td>
|
|
6610
|
+
<td style="padding:15px">{base_path}/{version}/protection/identity/reactive-policies/src-users-candidates?{query}</td>
|
|
6611
|
+
<td style="padding:15px">Yes</td>
|
|
6612
|
+
</tr>
|
|
6613
|
+
<tr>
|
|
6614
|
+
<td style="padding:15px">userMFAIdentityPoliciesList(userId, limit, offset, filters, withCount, addBuiltins, addAncestors, order, orderColumns, callback)</td>
|
|
6615
|
+
<td style="padding:15px">UserMFAIdentityPolicies_List</td>
|
|
6616
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies?{query}</td>
|
|
6617
|
+
<td style="padding:15px">Yes</td>
|
|
6618
|
+
</tr>
|
|
6619
|
+
<tr>
|
|
6620
|
+
<td style="padding:15px">userMFAIdentityPoliciesCreate(userId, body, callback)</td>
|
|
6621
|
+
<td style="padding:15px">UserMFAIdentityPolicies_Create</td>
|
|
6622
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies?{query}</td>
|
|
6623
|
+
<td style="padding:15px">Yes</td>
|
|
6624
|
+
</tr>
|
|
6625
|
+
<tr>
|
|
6626
|
+
<td style="padding:15px">userMFAIdentityPoliciesGet(userId, reactivePolicyId, callback)</td>
|
|
6627
|
+
<td style="padding:15px">UserMFAIdentityPolicies_Get</td>
|
|
6628
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
6629
|
+
<td style="padding:15px">Yes</td>
|
|
6630
|
+
</tr>
|
|
6631
|
+
<tr>
|
|
6632
|
+
<td style="padding:15px">userMFAIdentityPoliciesUpdate(userId, reactivePolicyId, body, callback)</td>
|
|
6633
|
+
<td style="padding:15px">UserMFAIdentityPolicies_Update</td>
|
|
6634
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
6635
|
+
<td style="padding:15px">Yes</td>
|
|
6636
|
+
</tr>
|
|
6637
|
+
<tr>
|
|
6638
|
+
<td style="padding:15px">userMFAIdentityPoliciesDelete(userId, reactivePolicyId, callback)</td>
|
|
6639
|
+
<td style="padding:15px">UserMFAIdentityPolicies_Delete</td>
|
|
6640
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/{pathv2}?{query}</td>
|
|
6641
|
+
<td style="padding:15px">Yes</td>
|
|
6642
|
+
</tr>
|
|
6643
|
+
<tr>
|
|
6644
|
+
<td style="padding:15px">userMFAIdentityPoliciesDestinationCandidatesList(userId, limit, offset, search, callback)</td>
|
|
6645
|
+
<td style="padding:15px">UserMFAIdentityPoliciesDestinationCandidates_List</td>
|
|
6646
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/dst-asset-candidates?{query}</td>
|
|
6647
|
+
<td style="padding:15px">Yes</td>
|
|
6648
|
+
</tr>
|
|
6649
|
+
<tr>
|
|
6650
|
+
<td style="padding:15px">userMFAIdentityPoliciesExcludedSourceCandidatesList(userId, limit, offset, search, isSrcAssetUnmonitored, callback)</td>
|
|
6651
|
+
<td style="padding:15px">UserMFAIdentityPoliciesExcludedSourceCandidates_List</td>
|
|
6652
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/excluded-src-asset-candidates?{query}</td>
|
|
6653
|
+
<td style="padding:15px">Yes</td>
|
|
6654
|
+
</tr>
|
|
6655
|
+
<tr>
|
|
6656
|
+
<td style="padding:15px">userMFAIdentityPoliciesFiltersList(userId, callback)</td>
|
|
6657
|
+
<td style="padding:15px">UserMFAIdentityPoliciesFilters_List</td>
|
|
6658
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/filters?{query}</td>
|
|
6659
|
+
<td style="padding:15px">Yes</td>
|
|
6660
|
+
</tr>
|
|
6661
|
+
<tr>
|
|
6662
|
+
<td style="padding:15px">userMFAIdentityPoliciesDestinationCandidatesFiltersList(userId, limit, offset, search, callback)</td>
|
|
6663
|
+
<td style="padding:15px">UserMFAIdentityPoliciesDestinationCandidatesFilters_List</td>
|
|
6664
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/filters/dst-asset-candidates?{query}</td>
|
|
6665
|
+
<td style="padding:15px">Yes</td>
|
|
6666
|
+
</tr>
|
|
6667
|
+
<tr>
|
|
6668
|
+
<td style="padding:15px">userMFAIdentityPoliciesSourceCandidatesFiltersList(userId, limit, offset, search, callback)</td>
|
|
6669
|
+
<td style="padding:15px">UserMFAIdentityPoliciesSourceCandidatesFilters_List</td>
|
|
6670
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/filters/src-asset-candidates?{query}</td>
|
|
6671
|
+
<td style="padding:15px">Yes</td>
|
|
6672
|
+
</tr>
|
|
6673
|
+
<tr>
|
|
6674
|
+
<td style="padding:15px">userMFAIdentityPoliciesSourceUsersCandidatesFiltersList(userId, limit, offset, search, callback)</td>
|
|
6675
|
+
<td style="padding:15px">UserMFAIdentityPoliciesSourceUsersCandidatesFilters_List</td>
|
|
6676
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/filters/src-users-candidates?{query}</td>
|
|
6677
|
+
<td style="padding:15px">Yes</td>
|
|
6678
|
+
</tr>
|
|
6679
|
+
<tr>
|
|
6680
|
+
<td style="padding:15px">userMFAIdentityPoliciesMFAMethodsList(userId, callback)</td>
|
|
6681
|
+
<td style="padding:15px">UserMFAIdentityPoliciesMFAMethods_List</td>
|
|
6682
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/mfa-methods?{query}</td>
|
|
6683
|
+
<td style="padding:15px">Yes</td>
|
|
6684
|
+
</tr>
|
|
6685
|
+
<tr>
|
|
6686
|
+
<td style="padding:15px">userMFAIdentityPoliciesSourceCandidatesList(userId, limit, offset, search, callback)</td>
|
|
6687
|
+
<td style="padding:15px">UserMFAIdentityPoliciesSourceCandidates_List</td>
|
|
6688
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/src-asset-candidates?{query}</td>
|
|
6689
|
+
<td style="padding:15px">Yes</td>
|
|
6690
|
+
</tr>
|
|
6691
|
+
<tr>
|
|
6692
|
+
<td style="padding:15px">userMFAIdentityPoliciesSourceUserCandidatesList(userId, limit, offset, search, callback)</td>
|
|
6693
|
+
<td style="padding:15px">UserMFAIdentityPoliciesSourceUserCandidates_List</td>
|
|
6694
|
+
<td style="padding:15px">{base_path}/{version}/users/{pathv1}/protection/identity/reactive-policies/src-users-candidates?{query}</td>
|
|
6695
|
+
<td style="padding:15px">Yes</td>
|
|
6696
|
+
</tr>
|
|
6697
|
+
<tr>
|
|
6698
|
+
<td style="padding:15px">usersListQueryV2(limit, offset, search, cursor, filters, withCount, order, orderColumns, callback)</td>
|
|
6699
|
+
<td style="padding:15px">Users_List</td>
|
|
6700
|
+
<td style="padding:15px">{base_path}/{version}/users?{query}</td>
|
|
6701
|
+
<td style="padding:15px">Yes</td>
|
|
6702
|
+
</tr>
|
|
6703
|
+
<tr>
|
|
6704
|
+
<td style="padding:15px">segmentServerDownload(callback)</td>
|
|
6705
|
+
<td style="padding:15px">SegmentServer_Download</td>
|
|
6706
|
+
<td style="padding:15px">{base_path}/{version}/download/segment/server?{query}</td>
|
|
6707
|
+
<td style="padding:15px">Yes</td>
|
|
6708
|
+
</tr>
|
|
6709
|
+
<tr>
|
|
6710
|
+
<td style="padding:15px">connectServerDownload(callback)</td>
|
|
6711
|
+
<td style="padding:15px">ConnectServer_Download</td>
|
|
6712
|
+
<td style="padding:15px">{base_path}/{version}/download/connect/server?{query}</td>
|
|
6713
|
+
<td style="padding:15px">Yes</td>
|
|
6714
|
+
</tr>
|
|
6715
|
+
<tr>
|
|
6716
|
+
<td style="padding:15px">connectClientDownload(platform, callback)</td>
|
|
6717
|
+
<td style="padding:15px">ConnectClient_Download</td>
|
|
6718
|
+
<td style="padding:15px">{base_path}/{version}/download/connect/client?{query}</td>
|
|
6719
|
+
<td style="padding:15px">Yes</td>
|
|
6720
|
+
</tr>
|
|
6721
|
+
<tr>
|
|
6722
|
+
<td style="padding:15px">cloudConnectorInstallerDownload(callback)</td>
|
|
6723
|
+
<td style="padding:15px">CloudConnectorInstaller_Download</td>
|
|
6724
|
+
<td style="padding:15px">{base_path}/{version}/download/cloud-connector/installer?{query}</td>
|
|
6725
|
+
<td style="padding:15px">Yes</td>
|
|
6726
|
+
</tr>
|
|
5575
6727
|
</table>
|
|
5576
6728
|
<br>
|