@itentialopensource/adapter-zscaler 0.10.11 → 0.10.12
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/CALLS.md +588 -0
- package/adapter.js +9953 -0
- package/entities/APIAuthentication/action.json +165 -0
- package/entities/APIAuthentication/schema.json +26 -0
- package/entities/AdvancedSettings/action.json +45 -0
- package/entities/AdvancedSettings/schema.json +20 -0
- package/entities/AdvancedThreatProtectionPolicy/action.json +127 -0
- package/entities/AdvancedThreatProtectionPolicy/schema.json +24 -0
- package/entities/AuthenticationSettings/action.json +66 -0
- package/entities/AuthenticationSettings/schema.json +21 -0
- package/entities/CloudAppControlPolicy/action.json +247 -0
- package/entities/CloudAppControlPolicy/schema.json +41 -0
- package/entities/CloudApplications/action.json +46 -0
- package/entities/CloudApplications/schema.json +20 -0
- package/entities/CloudNanologStreamingServiceNSS/action.json +252 -0
- package/entities/CloudNanologStreamingServiceNSS/schema.json +30 -0
- package/entities/DNSControlPolicy/action.json +106 -0
- package/entities/DNSControlPolicy/schema.json +23 -0
- package/entities/FileTypeControlPolicy/action.json +127 -0
- package/entities/FileTypeControlPolicy/schema.json +24 -0
- package/entities/ForwardingControlPolicy/action.json +204 -0
- package/entities/ForwardingControlPolicy/schema.json +11 -1
- package/entities/IPSControlPolicy/action.json +106 -0
- package/entities/IPSControlPolicy/schema.json +23 -0
- package/entities/MalwareProtectionPolicy/action.json +168 -0
- package/entities/MalwareProtectionPolicy/schema.json +26 -0
- package/entities/OrganizationDetails/action.json +67 -0
- package/entities/OrganizationDetails/schema.json +21 -0
- package/entities/RemoteAssistanceSupport/action.json +45 -0
- package/entities/RemoteAssistanceSupport/schema.json +20 -0
- package/entities/SSLInspectionPolicy/action.json +106 -0
- package/entities/SSLInspectionPolicy/schema.json +23 -0
- package/entities/SandBoxPolicy/action.json +168 -0
- package/entities/SandBoxPolicy/schema.json +26 -0
- package/entities/URLFilteringPolicy/action.json +148 -0
- package/entities/URLFilteringPolicy/schema.json +25 -0
- package/entities/URLFilteringandCloudAppControlSettings/action.json +45 -0
- package/entities/URLFilteringandCloudAppControlSettings/schema.json +20 -0
- package/package.json +1 -1
- package/pronghorn.json +4332 -0
- package/report/adapterInfo.json +7 -7
- package/test/integration/adapterTestIntegration.js +2481 -0
- package/test/unit/adapterTestUnit.js +2383 -0
package/CALLS.md
CHANGED
|
@@ -1672,5 +1672,593 @@ Specific adapter calls are built based on the API of the Adapter for Zscaler. Th
|
|
|
1672
1672
|
<td style="padding:15px">{base_path}/{version}/urlCategories/review/domains?{query}</td>
|
|
1673
1673
|
<td style="padding:15px">Yes</td>
|
|
1674
1674
|
</tr>
|
|
1675
|
+
<tr>
|
|
1676
|
+
<td style="padding:15px">getWebApplicationRulesRuleTypeAvailableActions(ruleType, iapMetadata, callback)</td>
|
|
1677
|
+
<td style="padding:15px">Fetches the granular actions supported for the applications.</td>
|
|
1678
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/availableActions?{query}</td>
|
|
1679
|
+
<td style="padding:15px">Yes</td>
|
|
1680
|
+
</tr>
|
|
1681
|
+
<tr>
|
|
1682
|
+
<td style="padding:15px">getWebApplicationRulesRuleTypeMapping(iapMetadata, callback)</td>
|
|
1683
|
+
<td style="padding:15px">Gets the backend keys that match the application type string.</td>
|
|
1684
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/ruleTypeMapping?{query}</td>
|
|
1685
|
+
<td style="padding:15px">Yes</td>
|
|
1686
|
+
</tr>
|
|
1687
|
+
<tr>
|
|
1688
|
+
<td style="padding:15px">getWebApplicationRulesRuleType(ruleType, search, body, iapMetadata, callback)</td>
|
|
1689
|
+
<td style="padding:15px">Gets the list of cloud application rules by the type of rule.</td>
|
|
1690
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}?{query}</td>
|
|
1691
|
+
<td style="padding:15px">Yes</td>
|
|
1692
|
+
</tr>
|
|
1693
|
+
<tr>
|
|
1694
|
+
<td style="padding:15px">postWebApplicationRulesRuleType(ruleType, iapMetadata, callback)</td>
|
|
1695
|
+
<td style="padding:15px">Adds a new cloud application rule.</td>
|
|
1696
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}?{query}</td>
|
|
1697
|
+
<td style="padding:15px">Yes</td>
|
|
1698
|
+
</tr>
|
|
1699
|
+
<tr>
|
|
1700
|
+
<td style="padding:15px">postWebApplicationRulesRuleTypeRuleId(ruleType, ruleId, name, iapMetadata, callback)</td>
|
|
1701
|
+
<td style="padding:15px">Duplicates a Cloud App Control policy rule.</td>
|
|
1702
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/duplicate/{pathv2}?{query}</td>
|
|
1703
|
+
<td style="padding:15px">Yes</td>
|
|
1704
|
+
</tr>
|
|
1705
|
+
<tr>
|
|
1706
|
+
<td style="padding:15px">getWebApplicationRulesRuleTypeRuleId(ruleType, ruleId, iapMetadata, callback)</td>
|
|
1707
|
+
<td style="padding:15px">Gets a Cloud App Control policy rule by the rule type and ID.</td>
|
|
1708
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/{pathv2}?{query}</td>
|
|
1709
|
+
<td style="padding:15px">Yes</td>
|
|
1710
|
+
</tr>
|
|
1711
|
+
<tr>
|
|
1712
|
+
<td style="padding:15px">putWebApplicationRulesRuleTypeRuleId(ruleType, ruleId, body, iapMetadata, callback)</td>
|
|
1713
|
+
<td style="padding:15px">Updates the Cloud App Control policy rule.</td>
|
|
1714
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/{pathv2}?{query}</td>
|
|
1715
|
+
<td style="padding:15px">Yes</td>
|
|
1716
|
+
</tr>
|
|
1717
|
+
<tr>
|
|
1718
|
+
<td style="padding:15px">deleteWebApplicationRulesRuleTypeRuleId(ruleType, ruleId, iapMetadata, callback)</td>
|
|
1719
|
+
<td style="padding:15px">Deletes a Cloud App Control policy rule.</td>
|
|
1720
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/{pathv2}?{query}</td>
|
|
1721
|
+
<td style="padding:15px">Yes</td>
|
|
1722
|
+
</tr>
|
|
1723
|
+
<tr>
|
|
1724
|
+
<td style="padding:15px">postForwardingRules(body, iapMetadata, callback)</td>
|
|
1725
|
+
<td style="padding:15px">Adds a new forwarding rule. To learn more, see Configuring Forwarding Policy.</td>
|
|
1726
|
+
<td style="padding:15px">{base_path}/{version}/forwardingRules?{query}</td>
|
|
1727
|
+
<td style="padding:15px">Yes</td>
|
|
1728
|
+
</tr>
|
|
1729
|
+
<tr>
|
|
1730
|
+
<td style="padding:15px">getForwardingRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1731
|
+
<td style="padding:15px">Gets information for a forwarding rule using the specified ID</td>
|
|
1732
|
+
<td style="padding:15px">{base_path}/{version}/forwardingRules/{pathv1}?{query}</td>
|
|
1733
|
+
<td style="padding:15px">Yes</td>
|
|
1734
|
+
</tr>
|
|
1735
|
+
<tr>
|
|
1736
|
+
<td style="padding:15px">putForwardingRulesRuleId(ruleId, body, iapMetadata, callback)</td>
|
|
1737
|
+
<td style="padding:15px">Updates information for a forwarding rule using the specified ID</td>
|
|
1738
|
+
<td style="padding:15px">{base_path}/{version}/forwardingRules/{pathv1}?{query}</td>
|
|
1739
|
+
<td style="padding:15px">Yes</td>
|
|
1740
|
+
</tr>
|
|
1741
|
+
<tr>
|
|
1742
|
+
<td style="padding:15px">deleteForwardingRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1743
|
+
<td style="padding:15px">Deletes a forwarding rule using the specified ID</td>
|
|
1744
|
+
<td style="padding:15px">{base_path}/{version}/forwardingRules/{pathv1}?{query}</td>
|
|
1745
|
+
<td style="padding:15px">Yes</td>
|
|
1746
|
+
</tr>
|
|
1747
|
+
<tr>
|
|
1748
|
+
<td style="padding:15px">postZpaGateways(body, iapMetadata, callback)</td>
|
|
1749
|
+
<td style="padding:15px">Adds a new custom ZPA gateway. The ZPA gateway can be used in a forwarding control policy to forwar</td>
|
|
1750
|
+
<td style="padding:15px">{base_path}/{version}/zpaGateways?{query}</td>
|
|
1751
|
+
<td style="padding:15px">Yes</td>
|
|
1752
|
+
</tr>
|
|
1753
|
+
<tr>
|
|
1754
|
+
<td style="padding:15px">getZpaGatewaysGatewayId(gatewayId, iapMetadata, callback)</td>
|
|
1755
|
+
<td style="padding:15px">Gets information for a ZPA gateway using the specified ID</td>
|
|
1756
|
+
<td style="padding:15px">{base_path}/{version}/zpaGateways/{pathv1}?{query}</td>
|
|
1757
|
+
<td style="padding:15px">Yes</td>
|
|
1758
|
+
</tr>
|
|
1759
|
+
<tr>
|
|
1760
|
+
<td style="padding:15px">putZpaGatewaysGatewayId(gatewayId, body, iapMetadata, callback)</td>
|
|
1761
|
+
<td style="padding:15px">Updates information for a ZPA gateway using the specified ID</td>
|
|
1762
|
+
<td style="padding:15px">{base_path}/{version}/zpaGateways/{pathv1}?{query}</td>
|
|
1763
|
+
<td style="padding:15px">Yes</td>
|
|
1764
|
+
</tr>
|
|
1765
|
+
<tr>
|
|
1766
|
+
<td style="padding:15px">deleteZpaGatewaysGatewayId(gatewayId, iapMetadata, callback)</td>
|
|
1767
|
+
<td style="padding:15px">Deletes a ZPA gateway using the specified ID</td>
|
|
1768
|
+
<td style="padding:15px">{base_path}/{version}/zpaGateways/{pathv1}?{query}</td>
|
|
1769
|
+
<td style="padding:15px">Yes</td>
|
|
1770
|
+
</tr>
|
|
1771
|
+
<tr>
|
|
1772
|
+
<td style="padding:15px">getProxyGateways(iapMetadata, callback)</td>
|
|
1773
|
+
<td style="padding:15px">Retrieves the proxy gateway information. To learn more, see About Gateways for Proxies.</td>
|
|
1774
|
+
<td style="padding:15px">{base_path}/{version}/proxyGateways?{query}</td>
|
|
1775
|
+
<td style="padding:15px">Yes</td>
|
|
1776
|
+
</tr>
|
|
1777
|
+
<tr>
|
|
1778
|
+
<td style="padding:15px">getProxyGatewaysLite(iapMetadata, callback)</td>
|
|
1779
|
+
<td style="padding:15px">Retrieves the name and ID of the proxy. To learn more, see About Gateways for Proxies.</td>
|
|
1780
|
+
<td style="padding:15px">{base_path}/{version}/proxyGateways/lite?{query}</td>
|
|
1781
|
+
<td style="padding:15px">Yes</td>
|
|
1782
|
+
</tr>
|
|
1783
|
+
<tr>
|
|
1784
|
+
<td style="padding:15px">getAtpMalwareInspection(iapMetadata, callback)</td>
|
|
1785
|
+
<td style="padding:15px">Retrieves the traffic inspection configurations of Malware Protection policy</td>
|
|
1786
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/atpMalwareInspection?{query}</td>
|
|
1787
|
+
<td style="padding:15px">Yes</td>
|
|
1788
|
+
</tr>
|
|
1789
|
+
<tr>
|
|
1790
|
+
<td style="padding:15px">putAtpMalwareInspection(body, iapMetadata, callback)</td>
|
|
1791
|
+
<td style="padding:15px">Updates the traffic inspection configurations of Malware Protection policy</td>
|
|
1792
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/atpMalwareInspection?{query}</td>
|
|
1793
|
+
<td style="padding:15px">Yes</td>
|
|
1794
|
+
</tr>
|
|
1795
|
+
<tr>
|
|
1796
|
+
<td style="padding:15px">getAtpMalwareProtocols(iapMetadata, callback)</td>
|
|
1797
|
+
<td style="padding:15px">Retrieves the protocol inspection configurations of Malware Protection policy</td>
|
|
1798
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/atpMalwareProtocols?{query}</td>
|
|
1799
|
+
<td style="padding:15px">Yes</td>
|
|
1800
|
+
</tr>
|
|
1801
|
+
<tr>
|
|
1802
|
+
<td style="padding:15px">putAtpMalwareProtocols(body, iapMetadata, callback)</td>
|
|
1803
|
+
<td style="padding:15px">Updates the protocol inspection configurations of Malware Protection policy</td>
|
|
1804
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/atpMalwareProtocols?{query}</td>
|
|
1805
|
+
<td style="padding:15px">Yes</td>
|
|
1806
|
+
</tr>
|
|
1807
|
+
<tr>
|
|
1808
|
+
<td style="padding:15px">getMalwareSettings(iapMetadata, callback)</td>
|
|
1809
|
+
<td style="padding:15px">Retrieves the malware protection policy configuration details</td>
|
|
1810
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/malwareSettings?{query}</td>
|
|
1811
|
+
<td style="padding:15px">Yes</td>
|
|
1812
|
+
</tr>
|
|
1813
|
+
<tr>
|
|
1814
|
+
<td style="padding:15px">putMalwareSettings(body, iapMetadata, callback)</td>
|
|
1815
|
+
<td style="padding:15px">Updates the malware protection policy configuration details</td>
|
|
1816
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/malwareSettings?{query}</td>
|
|
1817
|
+
<td style="padding:15px">Yes</td>
|
|
1818
|
+
</tr>
|
|
1819
|
+
<tr>
|
|
1820
|
+
<td style="padding:15px">getMalwarePolicy(iapMetadata, callback)</td>
|
|
1821
|
+
<td style="padding:15px">Retrieves information about the security exceptions configured for the Malware Protection policy</td>
|
|
1822
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/malwarePolicy?{query}</td>
|
|
1823
|
+
<td style="padding:15px">Yes</td>
|
|
1824
|
+
</tr>
|
|
1825
|
+
<tr>
|
|
1826
|
+
<td style="padding:15px">putMalwarePolicy(iapMetadata, callback)</td>
|
|
1827
|
+
<td style="padding:15px">Updates security exceptions for the Malware Protection policy</td>
|
|
1828
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/malwarePolicy?{query}</td>
|
|
1829
|
+
<td style="padding:15px">Yes</td>
|
|
1830
|
+
</tr>
|
|
1831
|
+
<tr>
|
|
1832
|
+
<td style="padding:15px">getAdvancedThreatSettings(iapMetadata, callback)</td>
|
|
1833
|
+
<td style="padding:15px">Retrieves the advanced threat configuration settings in the ZIA Admin Portal</td>
|
|
1834
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/advancedThreatSettings?{query}</td>
|
|
1835
|
+
<td style="padding:15px">Yes</td>
|
|
1836
|
+
</tr>
|
|
1837
|
+
<tr>
|
|
1838
|
+
<td style="padding:15px">putAdvancedThreatSettings(body, iapMetadata, callback)</td>
|
|
1839
|
+
<td style="padding:15px">Updates the advanced threat configuration settings.</td>
|
|
1840
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/advancedThreatSettings?{query}</td>
|
|
1841
|
+
<td style="padding:15px">Yes</td>
|
|
1842
|
+
</tr>
|
|
1843
|
+
<tr>
|
|
1844
|
+
<td style="padding:15px">getMaliciousUrls(iapMetadata, callback)</td>
|
|
1845
|
+
<td style="padding:15px">Retrieves the malicious URLs added to the denylist in the Advanced Threat Protection (ATP) policy</td>
|
|
1846
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/maliciousUrls?{query}</td>
|
|
1847
|
+
<td style="padding:15px">Yes</td>
|
|
1848
|
+
</tr>
|
|
1849
|
+
<tr>
|
|
1850
|
+
<td style="padding:15px">putMaliciousUrls(body, iapMetadata, callback)</td>
|
|
1851
|
+
<td style="padding:15px">Updates the malicious URLs added to the denylist in ATP policy</td>
|
|
1852
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/maliciousUrls?{query}</td>
|
|
1853
|
+
<td style="padding:15px">Yes</td>
|
|
1854
|
+
</tr>
|
|
1855
|
+
<tr>
|
|
1856
|
+
<td style="padding:15px">getSecurityExceptions(iapMetadata, callback)</td>
|
|
1857
|
+
<td style="padding:15px">Retrieves information about the security exceptions configured for the ATP policy</td>
|
|
1858
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/securityExceptions?{query}</td>
|
|
1859
|
+
<td style="padding:15px">Yes</td>
|
|
1860
|
+
</tr>
|
|
1861
|
+
<tr>
|
|
1862
|
+
<td style="padding:15px">putSecurityExceptions(iapMetadata, callback)</td>
|
|
1863
|
+
<td style="padding:15px">Updates security exceptions for the ATP policy.</td>
|
|
1864
|
+
<td style="padding:15px">{base_path}/{version}/cyberThreatProtection/securityExceptions?{query}</td>
|
|
1865
|
+
<td style="padding:15px">Yes</td>
|
|
1866
|
+
</tr>
|
|
1867
|
+
<tr>
|
|
1868
|
+
<td style="padding:15px">getfileTypeRules(iapMetadata, callback)</td>
|
|
1869
|
+
<td style="padding:15px">Retrieves all the rules in the File Type Control policy.</td>
|
|
1870
|
+
<td style="padding:15px">{base_path}/{version}/fileTypeRules?{query}</td>
|
|
1871
|
+
<td style="padding:15px">Yes</td>
|
|
1872
|
+
</tr>
|
|
1873
|
+
<tr>
|
|
1874
|
+
<td style="padding:15px">postFileTypeRules(body, iapMetadata, callback)</td>
|
|
1875
|
+
<td style="padding:15px">Adds a new File Type Control policy rule.</td>
|
|
1876
|
+
<td style="padding:15px">{base_path}/{version}/fileTypeRules?{query}</td>
|
|
1877
|
+
<td style="padding:15px">Yes</td>
|
|
1878
|
+
</tr>
|
|
1879
|
+
<tr>
|
|
1880
|
+
<td style="padding:15px">getLite(iapMetadata, callback)</td>
|
|
1881
|
+
<td style="padding:15px">Retrieves all the rules in the File Type Control policy.</td>
|
|
1882
|
+
<td style="padding:15px">{base_path}/{version}/fileTypeRules/lite?{query}</td>
|
|
1883
|
+
<td style="padding:15px">Yes</td>
|
|
1884
|
+
</tr>
|
|
1885
|
+
<tr>
|
|
1886
|
+
<td style="padding:15px">getFileTypeRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1887
|
+
<td style="padding:15px">Retrieves the File Type Control policy rule information for the specified ID.</td>
|
|
1888
|
+
<td style="padding:15px">{base_path}/{version}/fileTypeRules/{pathv1}?{query}</td>
|
|
1889
|
+
<td style="padding:15px">Yes</td>
|
|
1890
|
+
</tr>
|
|
1891
|
+
<tr>
|
|
1892
|
+
<td style="padding:15px">putFileTypeRulesRuleId(ruleId, body, iapMetadata, callback)</td>
|
|
1893
|
+
<td style="padding:15px">Updates the File Type Control policy rule information for the specified ID.</td>
|
|
1894
|
+
<td style="padding:15px">{base_path}/{version}/fileTypeRules/{pathv1}?{query}</td>
|
|
1895
|
+
<td style="padding:15px">Yes</td>
|
|
1896
|
+
</tr>
|
|
1897
|
+
<tr>
|
|
1898
|
+
<td style="padding:15px">deleteFileTypeRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1899
|
+
<td style="padding:15px">Deletes a File Type Control policy rule information for the specified ID.</td>
|
|
1900
|
+
<td style="padding:15px">{base_path}/{version}/fileTypeRules/{pathv1}?{query}</td>
|
|
1901
|
+
<td style="padding:15px">Yes</td>
|
|
1902
|
+
</tr>
|
|
1903
|
+
<tr>
|
|
1904
|
+
<td style="padding:15px">getSandboxRules(iapMetadata, callback)</td>
|
|
1905
|
+
<td style="padding:15px">Retrieves the list of all Sandbox policy rules configured in the ZIA Admin Portal.</td>
|
|
1906
|
+
<td style="padding:15px">{base_path}/{version}/sandboxRules?{query}</td>
|
|
1907
|
+
<td style="padding:15px">Yes</td>
|
|
1908
|
+
</tr>
|
|
1909
|
+
<tr>
|
|
1910
|
+
<td style="padding:15px">postSandboxRules(body, iapMetadata, callback)</td>
|
|
1911
|
+
<td style="padding:15px">Adds a Sandbox policy rule.</td>
|
|
1912
|
+
<td style="padding:15px">{base_path}/{version}/sandboxRules?{query}</td>
|
|
1913
|
+
<td style="padding:15px">Yes</td>
|
|
1914
|
+
</tr>
|
|
1915
|
+
<tr>
|
|
1916
|
+
<td style="padding:15px">getSandboxRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1917
|
+
<td style="padding:15px">Retrieves the Sandbox policy rule information based on the specified ID</td>
|
|
1918
|
+
<td style="padding:15px">{base_path}/{version}/sandboxRules/{pathv1}?{query}</td>
|
|
1919
|
+
<td style="padding:15px">Yes</td>
|
|
1920
|
+
</tr>
|
|
1921
|
+
<tr>
|
|
1922
|
+
<td style="padding:15px">putSandboxRulesRuleId(ruleId, body, iapMetadata, callback)</td>
|
|
1923
|
+
<td style="padding:15px">Updates the Sandbox policy rule configuration for the specified ID</td>
|
|
1924
|
+
<td style="padding:15px">{base_path}/{version}/sandboxRules/{pathv1}?{query}</td>
|
|
1925
|
+
<td style="padding:15px">Yes</td>
|
|
1926
|
+
</tr>
|
|
1927
|
+
<tr>
|
|
1928
|
+
<td style="padding:15px">deleteSandboxRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1929
|
+
<td style="padding:15px">Deletes the Sandbox policy rule based on the specified ID</td>
|
|
1930
|
+
<td style="padding:15px">{base_path}/{version}/sandboxRules/{pathv1}?{query}</td>
|
|
1931
|
+
<td style="padding:15px">Yes</td>
|
|
1932
|
+
</tr>
|
|
1933
|
+
<tr>
|
|
1934
|
+
<td style="padding:15px">getBehavioralAnalysisAdvancedSettings(iapMetadata, callback)</td>
|
|
1935
|
+
<td style="padding:15px">Gets the custom list of MD5 file hashes that are blocked by Sandbox</td>
|
|
1936
|
+
<td style="padding:15px">{base_path}/{version}/behavioralAnalysisAdvancedSettings?{query}</td>
|
|
1937
|
+
<td style="padding:15px">Yes</td>
|
|
1938
|
+
</tr>
|
|
1939
|
+
<tr>
|
|
1940
|
+
<td style="padding:15px">putBehavioralAnalysisAdvancedSettings(body, iapMetadata, callback)</td>
|
|
1941
|
+
<td style="padding:15px">Updates the custom list of MD5 file hashes that are blocked by Sandbox. This overwrites a previousl</td>
|
|
1942
|
+
<td style="padding:15px">{base_path}/{version}/behavioralAnalysisAdvancedSettings?{query}</td>
|
|
1943
|
+
<td style="padding:15px">Yes</td>
|
|
1944
|
+
</tr>
|
|
1945
|
+
<tr>
|
|
1946
|
+
<td style="padding:15px">getBehavioralAnalysisAdvancedSettingsFileHashCount(iapMetadata, callback)</td>
|
|
1947
|
+
<td style="padding:15px">Gets the used and unused quota for blocking MD5 file hashes with Sandbox</td>
|
|
1948
|
+
<td style="padding:15px">{base_path}/{version}/behavioralAnalysisAdvancedSettings/fileHashCount?{query}</td>
|
|
1949
|
+
<td style="padding:15px">Yes</td>
|
|
1950
|
+
</tr>
|
|
1951
|
+
<tr>
|
|
1952
|
+
<td style="padding:15px">getAdvancedUrlFilterAndCloudAppSettings(iapMetadata, callback)</td>
|
|
1953
|
+
<td style="padding:15px">Retrieves information about URL and Cloud App Control advanced policy settings</td>
|
|
1954
|
+
<td style="padding:15px">{base_path}/{version}/advancedUrlFilterAndCloudAppSettings?{query}</td>
|
|
1955
|
+
<td style="padding:15px">Yes</td>
|
|
1956
|
+
</tr>
|
|
1957
|
+
<tr>
|
|
1958
|
+
<td style="padding:15px">putAdvancedUrlFilterAndCloudAppSettings(body, iapMetadata, callback)</td>
|
|
1959
|
+
<td style="padding:15px">Updates the URL and Cloud App Control advanced policy settings</td>
|
|
1960
|
+
<td style="padding:15px">{base_path}/{version}/advancedUrlFilterAndCloudAppSettings?{query}</td>
|
|
1961
|
+
<td style="padding:15px">Yes</td>
|
|
1962
|
+
</tr>
|
|
1963
|
+
<tr>
|
|
1964
|
+
<td style="padding:15px">getFirewallDnsRules(iapMetadata, callback)</td>
|
|
1965
|
+
<td style="padding:15px">Retrieves the list of DNS Control policy rules configured in the ZIA Admin Portal</td>
|
|
1966
|
+
<td style="padding:15px">{base_path}/{version}/firewallDnsRules?{query}</td>
|
|
1967
|
+
<td style="padding:15px">Yes</td>
|
|
1968
|
+
</tr>
|
|
1969
|
+
<tr>
|
|
1970
|
+
<td style="padding:15px">postFirewallDnsRules(body, iapMetadata, callback)</td>
|
|
1971
|
+
<td style="padding:15px">Adds a new DNS Control policy rule. To learn more, see Configuring the DNS Control Policy.</td>
|
|
1972
|
+
<td style="padding:15px">{base_path}/{version}/firewallDnsRules?{query}</td>
|
|
1973
|
+
<td style="padding:15px">Yes</td>
|
|
1974
|
+
</tr>
|
|
1975
|
+
<tr>
|
|
1976
|
+
<td style="padding:15px">getFirewallDnsRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1977
|
+
<td style="padding:15px">Retrieves the DNS Control policy rule information based on the specified ID</td>
|
|
1978
|
+
<td style="padding:15px">{base_path}/{version}/firewallDnsRules/{pathv1}?{query}</td>
|
|
1979
|
+
<td style="padding:15px">Yes</td>
|
|
1980
|
+
</tr>
|
|
1981
|
+
<tr>
|
|
1982
|
+
<td style="padding:15px">putFirewallDnsRulesRuleId(ruleId, body, iapMetadata, callback)</td>
|
|
1983
|
+
<td style="padding:15px">Updates the DNS Control policy rule information based on the specified ID. To learn more about the</td>
|
|
1984
|
+
<td style="padding:15px">{base_path}/{version}/firewallDnsRules/{pathv1}?{query}</td>
|
|
1985
|
+
<td style="padding:15px">Yes</td>
|
|
1986
|
+
</tr>
|
|
1987
|
+
<tr>
|
|
1988
|
+
<td style="padding:15px">deleteFirewallDnsRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
1989
|
+
<td style="padding:15px">Deletes the DNS Control policy rule information based on the specified ID</td>
|
|
1990
|
+
<td style="padding:15px">{base_path}/{version}/firewallDnsRules/{pathv1}?{query}</td>
|
|
1991
|
+
<td style="padding:15px">Yes</td>
|
|
1992
|
+
</tr>
|
|
1993
|
+
<tr>
|
|
1994
|
+
<td style="padding:15px">getFirewallIpsRules(iapMetadata, callback)</td>
|
|
1995
|
+
<td style="padding:15px">Retrieves the list of IPS Control policy rules configured in the ZIA Admin Portal</td>
|
|
1996
|
+
<td style="padding:15px">{base_path}/{version}/firewallIpsRules?{query}</td>
|
|
1997
|
+
<td style="padding:15px">Yes</td>
|
|
1998
|
+
</tr>
|
|
1999
|
+
<tr>
|
|
2000
|
+
<td style="padding:15px">postFirewallIpsRules(body, iapMetadata, callback)</td>
|
|
2001
|
+
<td style="padding:15px">Adds a new IPS Control policy rule. To learn more, see Configuring the IPS Control Policy.</td>
|
|
2002
|
+
<td style="padding:15px">{base_path}/{version}/firewallIpsRules?{query}</td>
|
|
2003
|
+
<td style="padding:15px">Yes</td>
|
|
2004
|
+
</tr>
|
|
2005
|
+
<tr>
|
|
2006
|
+
<td style="padding:15px">getFirewallIpsRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
2007
|
+
<td style="padding:15px">Retrieves the IPS Control policy rule information based on the specified ID</td>
|
|
2008
|
+
<td style="padding:15px">{base_path}/{version}/firewallIpsRules/{pathv1}?{query}</td>
|
|
2009
|
+
<td style="padding:15px">Yes</td>
|
|
2010
|
+
</tr>
|
|
2011
|
+
<tr>
|
|
2012
|
+
<td style="padding:15px">putFirewallIpsRulesRuleId(ruleId, body, iapMetadata, callback)</td>
|
|
2013
|
+
<td style="padding:15px">Updates the IPS Control policy rule information based on the specified ID</td>
|
|
2014
|
+
<td style="padding:15px">{base_path}/{version}/firewallIpsRules/{pathv1}?{query}</td>
|
|
2015
|
+
<td style="padding:15px">Yes</td>
|
|
2016
|
+
</tr>
|
|
2017
|
+
<tr>
|
|
2018
|
+
<td style="padding:15px">deleteFirewallIpsRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
2019
|
+
<td style="padding:15px">Deletes the IPS Control policy rule information based on the specified ID</td>
|
|
2020
|
+
<td style="padding:15px">{base_path}/{version}/firewallIpsRules/{pathv1}?{query}</td>
|
|
2021
|
+
<td style="padding:15px">Yes</td>
|
|
2022
|
+
</tr>
|
|
2023
|
+
<tr>
|
|
2024
|
+
<td style="padding:15px">getAdvancedSettings(iapMetadata, callback)</td>
|
|
2025
|
+
<td style="padding:15px">Retrieves information about the advanced settings configured in the ZIA Admin Portal</td>
|
|
2026
|
+
<td style="padding:15px">{base_path}/{version}/advancedSettings?{query}</td>
|
|
2027
|
+
<td style="padding:15px">Yes</td>
|
|
2028
|
+
</tr>
|
|
2029
|
+
<tr>
|
|
2030
|
+
<td style="padding:15px">putAdvancedSettings(body, iapMetadata, callback)</td>
|
|
2031
|
+
<td style="padding:15px">Updates the advanced settings configuration in the ZIA Admin Portal. To learn more, see Configuring</td>
|
|
2032
|
+
<td style="padding:15px">{base_path}/{version}/advancedSettings?{query}</td>
|
|
2033
|
+
<td style="padding:15px">Yes</td>
|
|
2034
|
+
</tr>
|
|
2035
|
+
<tr>
|
|
2036
|
+
<td style="padding:15px">getNssFeeds(iapMetadata, callback)</td>
|
|
2037
|
+
<td style="padding:15px">Retrieves the cloud NSS feeds configured in the ZIA Admin Portal</td>
|
|
2038
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds?{query}</td>
|
|
2039
|
+
<td style="padding:15px">Yes</td>
|
|
2040
|
+
</tr>
|
|
2041
|
+
<tr>
|
|
2042
|
+
<td style="padding:15px">postNssFeeds(body, iapMetadata, callback)</td>
|
|
2043
|
+
<td style="padding:15px">Adds a new cloud NSS feed. To learn more, see Adding Cloud NSS Feeds.</td>
|
|
2044
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds?{query}</td>
|
|
2045
|
+
<td style="padding:15px">Yes</td>
|
|
2046
|
+
</tr>
|
|
2047
|
+
<tr>
|
|
2048
|
+
<td style="padding:15px">getNssFeedsFeedId(feedId, iapMetadata, callback)</td>
|
|
2049
|
+
<td style="padding:15px">Retrieves information about cloud NSS feed based on the specified ID</td>
|
|
2050
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/{pathv1}?{query}</td>
|
|
2051
|
+
<td style="padding:15px">Yes</td>
|
|
2052
|
+
</tr>
|
|
2053
|
+
<tr>
|
|
2054
|
+
<td style="padding:15px">putNssFeedsFeedId(feedId, body, iapMetadata, callback)</td>
|
|
2055
|
+
<td style="padding:15px">Updates cloud NSS feed configuration based on the specified ID. To learn more, see Adding Cloud NSS</td>
|
|
2056
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/{pathv1}?{query}</td>
|
|
2057
|
+
<td style="padding:15px">Yes</td>
|
|
2058
|
+
</tr>
|
|
2059
|
+
<tr>
|
|
2060
|
+
<td style="padding:15px">deleteNssFeedsFeedId(feedId, cloudNss, iapMetadata, callback)</td>
|
|
2061
|
+
<td style="padding:15px">Deletes cloud NSS feed configuration based on the specified ID</td>
|
|
2062
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/{pathv1}?{query}</td>
|
|
2063
|
+
<td style="padding:15px">Yes</td>
|
|
2064
|
+
</tr>
|
|
2065
|
+
<tr>
|
|
2066
|
+
<td style="padding:15px">getNssFeedsFeedOutputDefaults(type, multiFeedType, fieldFormat, iapMetadata, callback)</td>
|
|
2067
|
+
<td style="padding:15px">Retrieves the default cloud NSS feed output format for different log types</td>
|
|
2068
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/feedOutputDefaults?{query}</td>
|
|
2069
|
+
<td style="padding:15px">Yes</td>
|
|
2070
|
+
</tr>
|
|
2071
|
+
<tr>
|
|
2072
|
+
<td style="padding:15px">getNssFeedsTestConnectivityFeedId(feedId, iapMetadata, callback)</td>
|
|
2073
|
+
<td style="padding:15px">Tests the connectivity of cloud NSS feed based on the specified ID</td>
|
|
2074
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/testConnectivity/{pathv1}?{query}</td>
|
|
2075
|
+
<td style="padding:15px">Yes</td>
|
|
2076
|
+
</tr>
|
|
2077
|
+
<tr>
|
|
2078
|
+
<td style="padding:15px">postNssFeedsValidateFeedFormat(type, iapMetadata, callback)</td>
|
|
2079
|
+
<td style="padding:15px">Validates the cloud NSS feed format and returns the validation result</td>
|
|
2080
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/validateFeedFormat?{query}</td>
|
|
2081
|
+
<td style="padding:15px">Yes</td>
|
|
2082
|
+
</tr>
|
|
2083
|
+
<tr>
|
|
2084
|
+
<td style="padding:15px">getOrgInformation(iapMetadata, callback)</td>
|
|
2085
|
+
<td style="padding:15px">Retrieves detailed organization information, including headquarter location, geolocation, address,</td>
|
|
2086
|
+
<td style="padding:15px">{base_path}/{version}/orgInformation?{query}</td>
|
|
2087
|
+
<td style="padding:15px">Yes</td>
|
|
2088
|
+
</tr>
|
|
2089
|
+
<tr>
|
|
2090
|
+
<td style="padding:15px">getOrgInformationLite(iapMetadata, callback)</td>
|
|
2091
|
+
<td style="padding:15px">Retrieves minimal organization information.</td>
|
|
2092
|
+
<td style="padding:15px">{base_path}/{version}/orgInformation/lite?{query}</td>
|
|
2093
|
+
<td style="padding:15px">Yes</td>
|
|
2094
|
+
</tr>
|
|
2095
|
+
<tr>
|
|
2096
|
+
<td style="padding:15px">getSubscriptions(iapMetadata, callback)</td>
|
|
2097
|
+
<td style="padding:15px">Retrieves information about the list of subscriptions enabled for your tenant. Subscriptions define</td>
|
|
2098
|
+
<td style="padding:15px">{base_path}/{version}/subscriptions?{query}</td>
|
|
2099
|
+
<td style="padding:15px">Yes</td>
|
|
2100
|
+
</tr>
|
|
2101
|
+
<tr>
|
|
2102
|
+
<td style="padding:15px">getRemoteAssistance(iapMetadata, callback)</td>
|
|
2103
|
+
<td style="padding:15px">Retrieves information about the Remote Assistance option configured in the ZIA Admin Portal. Using</td>
|
|
2104
|
+
<td style="padding:15px">{base_path}/{version}/remoteAssistance?{query}</td>
|
|
2105
|
+
<td style="padding:15px">Yes</td>
|
|
2106
|
+
</tr>
|
|
2107
|
+
<tr>
|
|
2108
|
+
<td style="padding:15px">putRemoteAssistance(iapMetadata, callback)</td>
|
|
2109
|
+
<td style="padding:15px">Retrieves information about the Remote Assistance option configured in the ZIA Admin Portal. Using</td>
|
|
2110
|
+
<td style="padding:15px">{base_path}/{version}/remoteAssistance?{query}</td>
|
|
2111
|
+
<td style="padding:15px">Yes</td>
|
|
2112
|
+
</tr>
|
|
2113
|
+
<tr>
|
|
2114
|
+
<td style="padding:15px">getSslInspectionRules(iapMetadata, callback)</td>
|
|
2115
|
+
<td style="padding:15px">Retrieves all SSL inspection rules</td>
|
|
2116
|
+
<td style="padding:15px">{base_path}/{version}/sslInspectionRules?{query}</td>
|
|
2117
|
+
<td style="padding:15px">Yes</td>
|
|
2118
|
+
</tr>
|
|
2119
|
+
<tr>
|
|
2120
|
+
<td style="padding:15px">postSslInspectionRules(body, iapMetadata, callback)</td>
|
|
2121
|
+
<td style="padding:15px">Creates a new SSL inspection rule</td>
|
|
2122
|
+
<td style="padding:15px">{base_path}/{version}/sslInspectionRules?{query}</td>
|
|
2123
|
+
<td style="padding:15px">Yes</td>
|
|
2124
|
+
</tr>
|
|
2125
|
+
<tr>
|
|
2126
|
+
<td style="padding:15px">getSslInspectionRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
2127
|
+
<td style="padding:15px">Retrieves the SSL inspection rule based on the specified ID</td>
|
|
2128
|
+
<td style="padding:15px">{base_path}/{version}/sslInspectionRules/{pathv1}?{query}</td>
|
|
2129
|
+
<td style="padding:15px">Yes</td>
|
|
2130
|
+
</tr>
|
|
2131
|
+
<tr>
|
|
2132
|
+
<td style="padding:15px">putSslInspectionRulesRuleId(ruleId, body, iapMetadata, callback)</td>
|
|
2133
|
+
<td style="padding:15px">Updates the SSL inspection rule based on the specified ID</td>
|
|
2134
|
+
<td style="padding:15px">{base_path}/{version}/sslInspectionRules/{pathv1}?{query}</td>
|
|
2135
|
+
<td style="padding:15px">Yes</td>
|
|
2136
|
+
</tr>
|
|
2137
|
+
<tr>
|
|
2138
|
+
<td style="padding:15px">deleteSslInspectionRulesRuleId(ruleId, iapMetadata, callback)</td>
|
|
2139
|
+
<td style="padding:15px">Deletes an existing SSL inspection rule based on the specified ID</td>
|
|
2140
|
+
<td style="padding:15px">{base_path}/{version}/sslInspectionRules/{pathv1}?{query}</td>
|
|
2141
|
+
<td style="padding:15px">Yes</td>
|
|
2142
|
+
</tr>
|
|
2143
|
+
<tr>
|
|
2144
|
+
<td style="padding:15px">getCloudApplicationsPolicy(search, pageSize, page, appClass, groupResults, iapMetadata, callback)</td>
|
|
2145
|
+
<td style="padding:15px">Retrieves a list of Predefined and User Defined Cloud Applications associated with the DLP rules, C</td>
|
|
2146
|
+
<td style="padding:15px">{base_path}/{version}/cloudApplications/policy?{query}</td>
|
|
2147
|
+
<td style="padding:15px">Yes</td>
|
|
2148
|
+
</tr>
|
|
2149
|
+
<tr>
|
|
2150
|
+
<td style="padding:15px">getCloudApplicationsSslPolicy(search, pageSize, page, appClass, groupResults, iapMetadata, callback)</td>
|
|
2151
|
+
<td style="padding:15px">Retrieves a list of Predefined and User Defined Cloud Applications associated with the SSL Inspecti</td>
|
|
2152
|
+
<td style="padding:15px">{base_path}/{version}/cloudApplications/sslPolicy?{query}</td>
|
|
2153
|
+
<td style="padding:15px">Yes</td>
|
|
2154
|
+
</tr>
|
|
2155
|
+
<tr>
|
|
2156
|
+
<td style="padding:15px">getAuthSettings(iapMetadata, callback)</td>
|
|
2157
|
+
<td style="padding:15px">Retrieves the organization's default authentication settings information, including authentication</td>
|
|
2158
|
+
<td style="padding:15px">{base_path}/{version}/authSettings?{query}</td>
|
|
2159
|
+
<td style="padding:15px">Yes</td>
|
|
2160
|
+
</tr>
|
|
2161
|
+
<tr>
|
|
2162
|
+
<td style="padding:15px">putAuthSettings(body, iapMetadata, callback)</td>
|
|
2163
|
+
<td style="padding:15px">Updates the organization's default authentication settings information.</td>
|
|
2164
|
+
<td style="padding:15px">{base_path}/{version}/authSettings?{query}</td>
|
|
2165
|
+
<td style="padding:15px">Yes</td>
|
|
2166
|
+
</tr>
|
|
2167
|
+
<tr>
|
|
2168
|
+
<td style="padding:15px">getAuthSettingsLite(iapMetadata, callback)</td>
|
|
2169
|
+
<td style="padding:15px">Retrieves organization's default authentication settings information.</td>
|
|
2170
|
+
<td style="padding:15px">{base_path}/{version}/authSettings/lite?{query}</td>
|
|
2171
|
+
<td style="padding:15px">Yes</td>
|
|
2172
|
+
</tr>
|
|
2173
|
+
<tr>
|
|
2174
|
+
<td style="padding:15px">getTimeWindowsLite(iapMetadata, callback)</td>
|
|
2175
|
+
<td style="padding:15px">Gets a name and ID dictionary of time intervals used by the Firewall policy or the URL Filtering po</td>
|
|
2176
|
+
<td style="padding:15px">{base_path}/{version}/timeWindows/lite?{query}</td>
|
|
2177
|
+
<td style="padding:15px">Yes</td>
|
|
2178
|
+
</tr>
|
|
2179
|
+
<tr>
|
|
2180
|
+
<td style="padding:15px">postAuthenticatedSession__v1(iapMetadata, callback)</td>
|
|
2181
|
+
<td style="padding:15px">Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha</td>
|
|
2182
|
+
<td style="padding:15px">{base_path}/{version}/authenticatedSession?{query}</td>
|
|
2183
|
+
<td style="padding:15px">Yes</td>
|
|
2184
|
+
</tr>
|
|
2185
|
+
<tr>
|
|
2186
|
+
<td style="padding:15px">postAuthenticatedSession__v2(iapMetadata, callback)</td>
|
|
2187
|
+
<td style="padding:15px">Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha</td>
|
|
2188
|
+
<td style="padding:15px">{base_path}/{version}/authenticatedSession?{query}</td>
|
|
2189
|
+
<td style="padding:15px">Yes</td>
|
|
2190
|
+
</tr>
|
|
2191
|
+
<tr>
|
|
2192
|
+
<td style="padding:15px">postAuthenticatedSession__v3(iapMetadata, callback)</td>
|
|
2193
|
+
<td style="padding:15px">Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha</td>
|
|
2194
|
+
<td style="padding:15px">{base_path}/{version}/authenticatedSession?{query}</td>
|
|
2195
|
+
<td style="padding:15px">Yes</td>
|
|
2196
|
+
</tr>
|
|
2197
|
+
<tr>
|
|
2198
|
+
<td style="padding:15px">getWebApplicationRulesRuleTypeAvailableActions__v1(ruleType, body, iapMetadata, callback)</td>
|
|
2199
|
+
<td style="padding:15px">Fetches the granular actions supported for the applications.</td>
|
|
2200
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/availableActions?{query}</td>
|
|
2201
|
+
<td style="padding:15px">Yes</td>
|
|
2202
|
+
</tr>
|
|
2203
|
+
<tr>
|
|
2204
|
+
<td style="padding:15px">getNssFeedsFeedOutputDefaults__v1(type, multiFeedType, fieldFormat, iapMetadata, callback)</td>
|
|
2205
|
+
<td style="padding:15px">Retrieves the default cloud NSS feed output format for different log types</td>
|
|
2206
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/feedOutputDefaults?{query}</td>
|
|
2207
|
+
<td style="padding:15px">Yes</td>
|
|
2208
|
+
</tr>
|
|
2209
|
+
<tr>
|
|
2210
|
+
<td style="padding:15px">postAuthenticatedSession__v4(iapMetadata, callback)</td>
|
|
2211
|
+
<td style="padding:15px">Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha</td>
|
|
2212
|
+
<td style="padding:15px">{base_path}/{version}/authenticatedSession?{query}</td>
|
|
2213
|
+
<td style="padding:15px">Yes</td>
|
|
2214
|
+
</tr>
|
|
2215
|
+
<tr>
|
|
2216
|
+
<td style="padding:15px">getWebApplicationRulesRuleTypeAvailableActions__v2(ruleType, body, iapMetadata, callback)</td>
|
|
2217
|
+
<td style="padding:15px">Fetches the granular actions supported for the applications.</td>
|
|
2218
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/availableActions?{query}</td>
|
|
2219
|
+
<td style="padding:15px">Yes</td>
|
|
2220
|
+
</tr>
|
|
2221
|
+
<tr>
|
|
2222
|
+
<td style="padding:15px">getNssFeedsFeedOutputDefaults__v2(type, multiFeedType, fieldFormat, iapMetadata, callback)</td>
|
|
2223
|
+
<td style="padding:15px">Retrieves the default cloud NSS feed output format for different log types</td>
|
|
2224
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/feedOutputDefaults?{query}</td>
|
|
2225
|
+
<td style="padding:15px">Yes</td>
|
|
2226
|
+
</tr>
|
|
2227
|
+
<tr>
|
|
2228
|
+
<td style="padding:15px">postAuthenticatedSession__v5(iapMetadata, callback)</td>
|
|
2229
|
+
<td style="padding:15px">Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha</td>
|
|
2230
|
+
<td style="padding:15px">{base_path}/{version}/authenticatedSession?{query}</td>
|
|
2231
|
+
<td style="padding:15px">Yes</td>
|
|
2232
|
+
</tr>
|
|
2233
|
+
<tr>
|
|
2234
|
+
<td style="padding:15px">getWebApplicationRulesRuleTypeAvailableActions__v3(ruleType, body, iapMetadata, callback)</td>
|
|
2235
|
+
<td style="padding:15px">Fetches the granular actions supported for the applications.</td>
|
|
2236
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/availableActions?{query}</td>
|
|
2237
|
+
<td style="padding:15px">Yes</td>
|
|
2238
|
+
</tr>
|
|
2239
|
+
<tr>
|
|
2240
|
+
<td style="padding:15px">getNssFeedsFeedOutputDefaults__v3(type, multiFeedType, fieldFormat, iapMetadata, callback)</td>
|
|
2241
|
+
<td style="padding:15px">Retrieves the default cloud NSS feed output format for different log types</td>
|
|
2242
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/feedOutputDefaults?{query}</td>
|
|
2243
|
+
<td style="padding:15px">Yes</td>
|
|
2244
|
+
</tr>
|
|
2245
|
+
<tr>
|
|
2246
|
+
<td style="padding:15px">postAuthenticatedSession__v6(iapMetadata, callback)</td>
|
|
2247
|
+
<td style="padding:15px">Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha</td>
|
|
2248
|
+
<td style="padding:15px">{base_path}/{version}/authenticatedSession?{query}</td>
|
|
2249
|
+
<td style="padding:15px">Yes</td>
|
|
2250
|
+
</tr>
|
|
2251
|
+
<tr>
|
|
2252
|
+
<td style="padding:15px">getWebApplicationRulesRuleTypeAvailableActions__v4(ruleType, body, iapMetadata, callback)</td>
|
|
2253
|
+
<td style="padding:15px">Fetches the granular actions supported for the applications.</td>
|
|
2254
|
+
<td style="padding:15px">{base_path}/{version}/webApplicationRules/{pathv1}/availableActions?{query}</td>
|
|
2255
|
+
<td style="padding:15px">Yes</td>
|
|
2256
|
+
</tr>
|
|
2257
|
+
<tr>
|
|
2258
|
+
<td style="padding:15px">getNssFeedsFeedOutputDefaults__v4(type, multiFeedType, fieldFormat, iapMetadata, callback)</td>
|
|
2259
|
+
<td style="padding:15px">Retrieves the default cloud NSS feed output format for different log types</td>
|
|
2260
|
+
<td style="padding:15px">{base_path}/{version}/nssFeeds/feedOutputDefaults?{query}</td>
|
|
2261
|
+
<td style="padding:15px">Yes</td>
|
|
2262
|
+
</tr>
|
|
1675
2263
|
</table>
|
|
1676
2264
|
<br>
|