@azure/arm-frontdoor 5.1.1-alpha.20230320.1 → 5.1.1-alpha.20230418.1
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/dist/index.js +120 -50
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/experimentsListByProfileSample.js +12 -5
- package/dist-esm/samples-dev/experimentsListByProfileSample.js.map +1 -1
- package/dist-esm/samples-dev/frontDoorsListByResourceGroupSample.js +12 -5
- package/dist-esm/samples-dev/frontDoorsListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/frontDoorsListSample.js +12 -5
- package/dist-esm/samples-dev/frontDoorsListSample.js.map +1 -1
- package/dist-esm/samples-dev/frontendEndpointsListByFrontDoorSample.js +12 -5
- package/dist-esm/samples-dev/frontendEndpointsListByFrontDoorSample.js.map +1 -1
- package/dist-esm/samples-dev/managedRuleSetsListSample.js +12 -5
- package/dist-esm/samples-dev/managedRuleSetsListSample.js.map +1 -1
- package/dist-esm/samples-dev/networkExperimentProfilesListByResourceGroupSample.js +12 -5
- package/dist-esm/samples-dev/networkExperimentProfilesListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/networkExperimentProfilesListSample.js +12 -5
- package/dist-esm/samples-dev/networkExperimentProfilesListSample.js.map +1 -1
- package/dist-esm/samples-dev/policiesListSample.js +12 -5
- package/dist-esm/samples-dev/policiesListSample.js.map +1 -1
- package/dist-esm/samples-dev/preconfiguredEndpointsListSample.js +12 -5
- package/dist-esm/samples-dev/preconfiguredEndpointsListSample.js.map +1 -1
- package/dist-esm/samples-dev/rulesEnginesListByFrontDoorSample.js +12 -5
- package/dist-esm/samples-dev/rulesEnginesListByFrontDoorSample.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +90 -90
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/operations/experiments.js +12 -5
- package/dist-esm/src/operations/experiments.js.map +1 -1
- package/dist-esm/src/operations/frontDoors.js +24 -10
- package/dist-esm/src/operations/frontDoors.js.map +1 -1
- package/dist-esm/src/operations/frontendEndpoints.js +12 -5
- package/dist-esm/src/operations/frontendEndpoints.js.map +1 -1
- package/dist-esm/src/operations/managedRuleSets.js +12 -5
- package/dist-esm/src/operations/managedRuleSets.js.map +1 -1
- package/dist-esm/src/operations/networkExperimentProfiles.js +24 -10
- package/dist-esm/src/operations/networkExperimentProfiles.js.map +1 -1
- package/dist-esm/src/operations/policies.js +12 -5
- package/dist-esm/src/operations/policies.js.map +1 -1
- package/dist-esm/src/operations/preconfiguredEndpoints.js +12 -5
- package/dist-esm/src/operations/preconfiguredEndpoints.js.map +1 -1
- package/dist-esm/src/operations/rulesEngines.js +12 -5
- package/dist-esm/src/operations/rulesEngines.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as coreClient from "@azure/core-client";
|
|
2
|
-
export
|
|
2
|
+
export type RouteConfigurationUnion = RouteConfiguration | ForwardingConfiguration | RedirectConfiguration;
|
|
3
3
|
/** Defines a list of Profiles. It contains a list of Profile objects and a URL link to get the next set of results. */
|
|
4
4
|
export interface ProfileList {
|
|
5
5
|
/**
|
|
@@ -1231,7 +1231,7 @@ export declare enum KnownNetworkExperimentResourceState {
|
|
|
1231
1231
|
* **Disabled** \
|
|
1232
1232
|
* **Deleting**
|
|
1233
1233
|
*/
|
|
1234
|
-
export
|
|
1234
|
+
export type NetworkExperimentResourceState = string;
|
|
1235
1235
|
/** Known values of {@link State} that the service accepts. */
|
|
1236
1236
|
export declare enum KnownState {
|
|
1237
1237
|
/** Enabled */
|
|
@@ -1247,7 +1247,7 @@ export declare enum KnownState {
|
|
|
1247
1247
|
* **Enabled** \
|
|
1248
1248
|
* **Disabled**
|
|
1249
1249
|
*/
|
|
1250
|
-
export
|
|
1250
|
+
export type State = string;
|
|
1251
1251
|
/** Known values of {@link EndpointType} that the service accepts. */
|
|
1252
1252
|
export declare enum KnownEndpointType {
|
|
1253
1253
|
/** AFD */
|
|
@@ -1269,7 +1269,7 @@ export declare enum KnownEndpointType {
|
|
|
1269
1269
|
* **CDN** \
|
|
1270
1270
|
* **ATM**
|
|
1271
1271
|
*/
|
|
1272
|
-
export
|
|
1272
|
+
export type EndpointType = string;
|
|
1273
1273
|
/** Known values of {@link LatencyScorecardAggregationInterval} that the service accepts. */
|
|
1274
1274
|
export declare enum KnownLatencyScorecardAggregationInterval {
|
|
1275
1275
|
/** Daily */
|
|
@@ -1288,7 +1288,7 @@ export declare enum KnownLatencyScorecardAggregationInterval {
|
|
|
1288
1288
|
* **Weekly** \
|
|
1289
1289
|
* **Monthly**
|
|
1290
1290
|
*/
|
|
1291
|
-
export
|
|
1291
|
+
export type LatencyScorecardAggregationInterval = string;
|
|
1292
1292
|
/** Known values of {@link TimeseriesAggregationInterval} that the service accepts. */
|
|
1293
1293
|
export declare enum KnownTimeseriesAggregationInterval {
|
|
1294
1294
|
/** Hourly */
|
|
@@ -1304,7 +1304,7 @@ export declare enum KnownTimeseriesAggregationInterval {
|
|
|
1304
1304
|
* **Hourly** \
|
|
1305
1305
|
* **Daily**
|
|
1306
1306
|
*/
|
|
1307
|
-
export
|
|
1307
|
+
export type TimeseriesAggregationInterval = string;
|
|
1308
1308
|
/** Known values of {@link TimeseriesType} that the service accepts. */
|
|
1309
1309
|
export declare enum KnownTimeseriesType {
|
|
1310
1310
|
/** MeasurementCounts */
|
|
@@ -1326,7 +1326,7 @@ export declare enum KnownTimeseriesType {
|
|
|
1326
1326
|
* **LatencyP75** \
|
|
1327
1327
|
* **LatencyP95**
|
|
1328
1328
|
*/
|
|
1329
|
-
export
|
|
1329
|
+
export type TimeseriesType = string;
|
|
1330
1330
|
/** Known values of {@link AggregationInterval} that the service accepts. */
|
|
1331
1331
|
export declare enum KnownAggregationInterval {
|
|
1332
1332
|
/** Hourly */
|
|
@@ -1342,7 +1342,7 @@ export declare enum KnownAggregationInterval {
|
|
|
1342
1342
|
* **Hourly** \
|
|
1343
1343
|
* **Daily**
|
|
1344
1344
|
*/
|
|
1345
|
-
export
|
|
1345
|
+
export type AggregationInterval = string;
|
|
1346
1346
|
/** Known values of {@link Availability} that the service accepts. */
|
|
1347
1347
|
export declare enum KnownAvailability {
|
|
1348
1348
|
/** Available */
|
|
@@ -1358,7 +1358,7 @@ export declare enum KnownAvailability {
|
|
|
1358
1358
|
* **Available** \
|
|
1359
1359
|
* **Unavailable**
|
|
1360
1360
|
*/
|
|
1361
|
-
export
|
|
1361
|
+
export type Availability = string;
|
|
1362
1362
|
/** Known values of {@link FrontDoorResourceState} that the service accepts. */
|
|
1363
1363
|
export declare enum KnownFrontDoorResourceState {
|
|
1364
1364
|
/** Creating */
|
|
@@ -1386,7 +1386,7 @@ export declare enum KnownFrontDoorResourceState {
|
|
|
1386
1386
|
* **Disabled** \
|
|
1387
1387
|
* **Deleting**
|
|
1388
1388
|
*/
|
|
1389
|
-
export
|
|
1389
|
+
export type FrontDoorResourceState = string;
|
|
1390
1390
|
/** Known values of {@link HeaderActionType} that the service accepts. */
|
|
1391
1391
|
export declare enum KnownHeaderActionType {
|
|
1392
1392
|
/** Append */
|
|
@@ -1405,7 +1405,7 @@ export declare enum KnownHeaderActionType {
|
|
|
1405
1405
|
* **Delete** \
|
|
1406
1406
|
* **Overwrite**
|
|
1407
1407
|
*/
|
|
1408
|
-
export
|
|
1408
|
+
export type HeaderActionType = string;
|
|
1409
1409
|
/** Known values of {@link RulesEngineMatchVariable} that the service accepts. */
|
|
1410
1410
|
export declare enum KnownRulesEngineMatchVariable {
|
|
1411
1411
|
/** IsMobile */
|
|
@@ -1451,7 +1451,7 @@ export declare enum KnownRulesEngineMatchVariable {
|
|
|
1451
1451
|
* **RequestBody** \
|
|
1452
1452
|
* **RequestScheme**
|
|
1453
1453
|
*/
|
|
1454
|
-
export
|
|
1454
|
+
export type RulesEngineMatchVariable = string;
|
|
1455
1455
|
/** Known values of {@link RulesEngineOperator} that the service accepts. */
|
|
1456
1456
|
export declare enum KnownRulesEngineOperator {
|
|
1457
1457
|
/** Any */
|
|
@@ -1494,7 +1494,7 @@ export declare enum KnownRulesEngineOperator {
|
|
|
1494
1494
|
* **BeginsWith** \
|
|
1495
1495
|
* **EndsWith**
|
|
1496
1496
|
*/
|
|
1497
|
-
export
|
|
1497
|
+
export type RulesEngineOperator = string;
|
|
1498
1498
|
/** Known values of {@link Transform} that the service accepts. */
|
|
1499
1499
|
export declare enum KnownTransform {
|
|
1500
1500
|
/** Lowercase */
|
|
@@ -1522,7 +1522,7 @@ export declare enum KnownTransform {
|
|
|
1522
1522
|
* **UrlEncode** \
|
|
1523
1523
|
* **RemoveNulls**
|
|
1524
1524
|
*/
|
|
1525
|
-
export
|
|
1525
|
+
export type Transform = string;
|
|
1526
1526
|
/** Known values of {@link MatchProcessingBehavior} that the service accepts. */
|
|
1527
1527
|
export declare enum KnownMatchProcessingBehavior {
|
|
1528
1528
|
/** Continue */
|
|
@@ -1538,7 +1538,7 @@ export declare enum KnownMatchProcessingBehavior {
|
|
|
1538
1538
|
* **Continue** \
|
|
1539
1539
|
* **Stop**
|
|
1540
1540
|
*/
|
|
1541
|
-
export
|
|
1541
|
+
export type MatchProcessingBehavior = string;
|
|
1542
1542
|
/** Known values of {@link FrontDoorProtocol} that the service accepts. */
|
|
1543
1543
|
export declare enum KnownFrontDoorProtocol {
|
|
1544
1544
|
/** Http */
|
|
@@ -1554,7 +1554,7 @@ export declare enum KnownFrontDoorProtocol {
|
|
|
1554
1554
|
* **Http** \
|
|
1555
1555
|
* **Https**
|
|
1556
1556
|
*/
|
|
1557
|
-
export
|
|
1557
|
+
export type FrontDoorProtocol = string;
|
|
1558
1558
|
/** Known values of {@link RoutingRuleEnabledState} that the service accepts. */
|
|
1559
1559
|
export declare enum KnownRoutingRuleEnabledState {
|
|
1560
1560
|
/** Enabled */
|
|
@@ -1570,7 +1570,7 @@ export declare enum KnownRoutingRuleEnabledState {
|
|
|
1570
1570
|
* **Enabled** \
|
|
1571
1571
|
* **Disabled**
|
|
1572
1572
|
*/
|
|
1573
|
-
export
|
|
1573
|
+
export type RoutingRuleEnabledState = string;
|
|
1574
1574
|
/** Known values of {@link FrontDoorHealthProbeMethod} that the service accepts. */
|
|
1575
1575
|
export declare enum KnownFrontDoorHealthProbeMethod {
|
|
1576
1576
|
/** GET */
|
|
@@ -1586,7 +1586,7 @@ export declare enum KnownFrontDoorHealthProbeMethod {
|
|
|
1586
1586
|
* **GET** \
|
|
1587
1587
|
* **HEAD**
|
|
1588
1588
|
*/
|
|
1589
|
-
export
|
|
1589
|
+
export type FrontDoorHealthProbeMethod = string;
|
|
1590
1590
|
/** Known values of {@link HealthProbeEnabled} that the service accepts. */
|
|
1591
1591
|
export declare enum KnownHealthProbeEnabled {
|
|
1592
1592
|
/** Enabled */
|
|
@@ -1602,7 +1602,7 @@ export declare enum KnownHealthProbeEnabled {
|
|
|
1602
1602
|
* **Enabled** \
|
|
1603
1603
|
* **Disabled**
|
|
1604
1604
|
*/
|
|
1605
|
-
export
|
|
1605
|
+
export type HealthProbeEnabled = string;
|
|
1606
1606
|
/** Known values of {@link PrivateEndpointStatus} that the service accepts. */
|
|
1607
1607
|
export declare enum KnownPrivateEndpointStatus {
|
|
1608
1608
|
/** Pending */
|
|
@@ -1627,7 +1627,7 @@ export declare enum KnownPrivateEndpointStatus {
|
|
|
1627
1627
|
* **Disconnected** \
|
|
1628
1628
|
* **Timeout**
|
|
1629
1629
|
*/
|
|
1630
|
-
export
|
|
1630
|
+
export type PrivateEndpointStatus = string;
|
|
1631
1631
|
/** Known values of {@link BackendEnabledState} that the service accepts. */
|
|
1632
1632
|
export declare enum KnownBackendEnabledState {
|
|
1633
1633
|
/** Enabled */
|
|
@@ -1643,7 +1643,7 @@ export declare enum KnownBackendEnabledState {
|
|
|
1643
1643
|
* **Enabled** \
|
|
1644
1644
|
* **Disabled**
|
|
1645
1645
|
*/
|
|
1646
|
-
export
|
|
1646
|
+
export type BackendEnabledState = string;
|
|
1647
1647
|
/** Known values of {@link CustomHttpsProvisioningState} that the service accepts. */
|
|
1648
1648
|
export declare enum KnownCustomHttpsProvisioningState {
|
|
1649
1649
|
/** Enabling */
|
|
@@ -1668,7 +1668,7 @@ export declare enum KnownCustomHttpsProvisioningState {
|
|
|
1668
1668
|
* **Disabled** \
|
|
1669
1669
|
* **Failed**
|
|
1670
1670
|
*/
|
|
1671
|
-
export
|
|
1671
|
+
export type CustomHttpsProvisioningState = string;
|
|
1672
1672
|
/** Known values of {@link CustomHttpsProvisioningSubstate} that the service accepts. */
|
|
1673
1673
|
export declare enum KnownCustomHttpsProvisioningSubstate {
|
|
1674
1674
|
/** SubmittingDomainControlValidationRequest */
|
|
@@ -1708,7 +1708,7 @@ export declare enum KnownCustomHttpsProvisioningSubstate {
|
|
|
1708
1708
|
* **DeletingCertificate** \
|
|
1709
1709
|
* **CertificateDeleted**
|
|
1710
1710
|
*/
|
|
1711
|
-
export
|
|
1711
|
+
export type CustomHttpsProvisioningSubstate = string;
|
|
1712
1712
|
/** Known values of {@link FrontDoorCertificateSource} that the service accepts. */
|
|
1713
1713
|
export declare enum KnownFrontDoorCertificateSource {
|
|
1714
1714
|
/** AzureKeyVault */
|
|
@@ -1724,7 +1724,7 @@ export declare enum KnownFrontDoorCertificateSource {
|
|
|
1724
1724
|
* **AzureKeyVault** \
|
|
1725
1725
|
* **FrontDoor**
|
|
1726
1726
|
*/
|
|
1727
|
-
export
|
|
1727
|
+
export type FrontDoorCertificateSource = string;
|
|
1728
1728
|
/** Known values of {@link FrontDoorTlsProtocolType} that the service accepts. */
|
|
1729
1729
|
export declare enum KnownFrontDoorTlsProtocolType {
|
|
1730
1730
|
/** ServerNameIndication */
|
|
@@ -1737,7 +1737,7 @@ export declare enum KnownFrontDoorTlsProtocolType {
|
|
|
1737
1737
|
* ### Known values supported by the service
|
|
1738
1738
|
* **ServerNameIndication**
|
|
1739
1739
|
*/
|
|
1740
|
-
export
|
|
1740
|
+
export type FrontDoorTlsProtocolType = string;
|
|
1741
1741
|
/** Known values of {@link MinimumTLSVersion} that the service accepts. */
|
|
1742
1742
|
export declare enum KnownMinimumTLSVersion {
|
|
1743
1743
|
/** One0 */
|
|
@@ -1753,7 +1753,7 @@ export declare enum KnownMinimumTLSVersion {
|
|
|
1753
1753
|
* **1.0** \
|
|
1754
1754
|
* **1.2**
|
|
1755
1755
|
*/
|
|
1756
|
-
export
|
|
1756
|
+
export type MinimumTLSVersion = string;
|
|
1757
1757
|
/** Known values of {@link FrontDoorCertificateType} that the service accepts. */
|
|
1758
1758
|
export declare enum KnownFrontDoorCertificateType {
|
|
1759
1759
|
/** Dedicated */
|
|
@@ -1766,7 +1766,7 @@ export declare enum KnownFrontDoorCertificateType {
|
|
|
1766
1766
|
* ### Known values supported by the service
|
|
1767
1767
|
* **Dedicated**
|
|
1768
1768
|
*/
|
|
1769
|
-
export
|
|
1769
|
+
export type FrontDoorCertificateType = string;
|
|
1770
1770
|
/** Known values of {@link SessionAffinityEnabledState} that the service accepts. */
|
|
1771
1771
|
export declare enum KnownSessionAffinityEnabledState {
|
|
1772
1772
|
/** Enabled */
|
|
@@ -1782,7 +1782,7 @@ export declare enum KnownSessionAffinityEnabledState {
|
|
|
1782
1782
|
* **Enabled** \
|
|
1783
1783
|
* **Disabled**
|
|
1784
1784
|
*/
|
|
1785
|
-
export
|
|
1785
|
+
export type SessionAffinityEnabledState = string;
|
|
1786
1786
|
/** Known values of {@link EnforceCertificateNameCheckEnabledState} that the service accepts. */
|
|
1787
1787
|
export declare enum KnownEnforceCertificateNameCheckEnabledState {
|
|
1788
1788
|
/** Enabled */
|
|
@@ -1798,7 +1798,7 @@ export declare enum KnownEnforceCertificateNameCheckEnabledState {
|
|
|
1798
1798
|
* **Enabled** \
|
|
1799
1799
|
* **Disabled**
|
|
1800
1800
|
*/
|
|
1801
|
-
export
|
|
1801
|
+
export type EnforceCertificateNameCheckEnabledState = string;
|
|
1802
1802
|
/** Known values of {@link FrontDoorEnabledState} that the service accepts. */
|
|
1803
1803
|
export declare enum KnownFrontDoorEnabledState {
|
|
1804
1804
|
/** Enabled */
|
|
@@ -1814,7 +1814,7 @@ export declare enum KnownFrontDoorEnabledState {
|
|
|
1814
1814
|
* **Enabled** \
|
|
1815
1815
|
* **Disabled**
|
|
1816
1816
|
*/
|
|
1817
|
-
export
|
|
1817
|
+
export type FrontDoorEnabledState = string;
|
|
1818
1818
|
/** Known values of {@link PolicyEnabledState} that the service accepts. */
|
|
1819
1819
|
export declare enum KnownPolicyEnabledState {
|
|
1820
1820
|
/** Disabled */
|
|
@@ -1830,7 +1830,7 @@ export declare enum KnownPolicyEnabledState {
|
|
|
1830
1830
|
* **Disabled** \
|
|
1831
1831
|
* **Enabled**
|
|
1832
1832
|
*/
|
|
1833
|
-
export
|
|
1833
|
+
export type PolicyEnabledState = string;
|
|
1834
1834
|
/** Known values of {@link PolicyMode} that the service accepts. */
|
|
1835
1835
|
export declare enum KnownPolicyMode {
|
|
1836
1836
|
/** Prevention */
|
|
@@ -1846,7 +1846,7 @@ export declare enum KnownPolicyMode {
|
|
|
1846
1846
|
* **Prevention** \
|
|
1847
1847
|
* **Detection**
|
|
1848
1848
|
*/
|
|
1849
|
-
export
|
|
1849
|
+
export type PolicyMode = string;
|
|
1850
1850
|
/** Known values of {@link PolicyRequestBodyCheck} that the service accepts. */
|
|
1851
1851
|
export declare enum KnownPolicyRequestBodyCheck {
|
|
1852
1852
|
/** Disabled */
|
|
@@ -1862,7 +1862,7 @@ export declare enum KnownPolicyRequestBodyCheck {
|
|
|
1862
1862
|
* **Disabled** \
|
|
1863
1863
|
* **Enabled**
|
|
1864
1864
|
*/
|
|
1865
|
-
export
|
|
1865
|
+
export type PolicyRequestBodyCheck = string;
|
|
1866
1866
|
/** Known values of {@link CustomRuleEnabledState} that the service accepts. */
|
|
1867
1867
|
export declare enum KnownCustomRuleEnabledState {
|
|
1868
1868
|
/** Disabled */
|
|
@@ -1878,7 +1878,7 @@ export declare enum KnownCustomRuleEnabledState {
|
|
|
1878
1878
|
* **Disabled** \
|
|
1879
1879
|
* **Enabled**
|
|
1880
1880
|
*/
|
|
1881
|
-
export
|
|
1881
|
+
export type CustomRuleEnabledState = string;
|
|
1882
1882
|
/** Known values of {@link RuleType} that the service accepts. */
|
|
1883
1883
|
export declare enum KnownRuleType {
|
|
1884
1884
|
/** MatchRule */
|
|
@@ -1894,7 +1894,7 @@ export declare enum KnownRuleType {
|
|
|
1894
1894
|
* **MatchRule** \
|
|
1895
1895
|
* **RateLimitRule**
|
|
1896
1896
|
*/
|
|
1897
|
-
export
|
|
1897
|
+
export type RuleType = string;
|
|
1898
1898
|
/** Known values of {@link MatchVariable} that the service accepts. */
|
|
1899
1899
|
export declare enum KnownMatchVariable {
|
|
1900
1900
|
/** RemoteAddr */
|
|
@@ -1931,7 +1931,7 @@ export declare enum KnownMatchVariable {
|
|
|
1931
1931
|
* **Cookies** \
|
|
1932
1932
|
* **SocketAddr**
|
|
1933
1933
|
*/
|
|
1934
|
-
export
|
|
1934
|
+
export type MatchVariable = string;
|
|
1935
1935
|
/** Known values of {@link Operator} that the service accepts. */
|
|
1936
1936
|
export declare enum KnownOperator {
|
|
1937
1937
|
/** Any */
|
|
@@ -1977,7 +1977,7 @@ export declare enum KnownOperator {
|
|
|
1977
1977
|
* **EndsWith** \
|
|
1978
1978
|
* **RegEx**
|
|
1979
1979
|
*/
|
|
1980
|
-
export
|
|
1980
|
+
export type Operator = string;
|
|
1981
1981
|
/** Known values of {@link TransformType} that the service accepts. */
|
|
1982
1982
|
export declare enum KnownTransformType {
|
|
1983
1983
|
/** Lowercase */
|
|
@@ -2005,7 +2005,7 @@ export declare enum KnownTransformType {
|
|
|
2005
2005
|
* **UrlEncode** \
|
|
2006
2006
|
* **RemoveNulls**
|
|
2007
2007
|
*/
|
|
2008
|
-
export
|
|
2008
|
+
export type TransformType = string;
|
|
2009
2009
|
/** Known values of {@link ActionType} that the service accepts. */
|
|
2010
2010
|
export declare enum KnownActionType {
|
|
2011
2011
|
/** Allow */
|
|
@@ -2027,7 +2027,7 @@ export declare enum KnownActionType {
|
|
|
2027
2027
|
* **Log** \
|
|
2028
2028
|
* **Redirect**
|
|
2029
2029
|
*/
|
|
2030
|
-
export
|
|
2030
|
+
export type ActionType = string;
|
|
2031
2031
|
/** Known values of {@link ManagedRuleSetActionType} that the service accepts. */
|
|
2032
2032
|
export declare enum KnownManagedRuleSetActionType {
|
|
2033
2033
|
/** Block */
|
|
@@ -2046,7 +2046,7 @@ export declare enum KnownManagedRuleSetActionType {
|
|
|
2046
2046
|
* **Log** \
|
|
2047
2047
|
* **Redirect**
|
|
2048
2048
|
*/
|
|
2049
|
-
export
|
|
2049
|
+
export type ManagedRuleSetActionType = string;
|
|
2050
2050
|
/** Known values of {@link ManagedRuleExclusionMatchVariable} that the service accepts. */
|
|
2051
2051
|
export declare enum KnownManagedRuleExclusionMatchVariable {
|
|
2052
2052
|
/** RequestHeaderNames */
|
|
@@ -2071,7 +2071,7 @@ export declare enum KnownManagedRuleExclusionMatchVariable {
|
|
|
2071
2071
|
* **RequestBodyPostArgNames** \
|
|
2072
2072
|
* **RequestBodyJsonArgNames**
|
|
2073
2073
|
*/
|
|
2074
|
-
export
|
|
2074
|
+
export type ManagedRuleExclusionMatchVariable = string;
|
|
2075
2075
|
/** Known values of {@link ManagedRuleExclusionSelectorMatchOperator} that the service accepts. */
|
|
2076
2076
|
export declare enum KnownManagedRuleExclusionSelectorMatchOperator {
|
|
2077
2077
|
/** Equals */
|
|
@@ -2096,7 +2096,7 @@ export declare enum KnownManagedRuleExclusionSelectorMatchOperator {
|
|
|
2096
2096
|
* **EndsWith** \
|
|
2097
2097
|
* **EqualsAny**
|
|
2098
2098
|
*/
|
|
2099
|
-
export
|
|
2099
|
+
export type ManagedRuleExclusionSelectorMatchOperator = string;
|
|
2100
2100
|
/** Known values of {@link ManagedRuleEnabledState} that the service accepts. */
|
|
2101
2101
|
export declare enum KnownManagedRuleEnabledState {
|
|
2102
2102
|
/** Disabled */
|
|
@@ -2112,7 +2112,7 @@ export declare enum KnownManagedRuleEnabledState {
|
|
|
2112
2112
|
* **Disabled** \
|
|
2113
2113
|
* **Enabled**
|
|
2114
2114
|
*/
|
|
2115
|
-
export
|
|
2115
|
+
export type ManagedRuleEnabledState = string;
|
|
2116
2116
|
/** Known values of {@link PolicyResourceState} that the service accepts. */
|
|
2117
2117
|
export declare enum KnownPolicyResourceState {
|
|
2118
2118
|
/** Creating */
|
|
@@ -2140,7 +2140,7 @@ export declare enum KnownPolicyResourceState {
|
|
|
2140
2140
|
* **Disabled** \
|
|
2141
2141
|
* **Deleting**
|
|
2142
2142
|
*/
|
|
2143
|
-
export
|
|
2143
|
+
export type PolicyResourceState = string;
|
|
2144
2144
|
/** Known values of {@link SkuName} that the service accepts. */
|
|
2145
2145
|
export declare enum KnownSkuName {
|
|
2146
2146
|
/** ClassicAzureFrontDoor */
|
|
@@ -2159,7 +2159,7 @@ export declare enum KnownSkuName {
|
|
|
2159
2159
|
* **Standard_AzureFrontDoor** \
|
|
2160
2160
|
* **Premium_AzureFrontDoor**
|
|
2161
2161
|
*/
|
|
2162
|
-
export
|
|
2162
|
+
export type SkuName = string;
|
|
2163
2163
|
/** Known values of {@link NetworkOperationStatus} that the service accepts. */
|
|
2164
2164
|
export declare enum KnownNetworkOperationStatus {
|
|
2165
2165
|
/** InProgress */
|
|
@@ -2178,7 +2178,7 @@ export declare enum KnownNetworkOperationStatus {
|
|
|
2178
2178
|
* **Succeeded** \
|
|
2179
2179
|
* **Failed**
|
|
2180
2180
|
*/
|
|
2181
|
-
export
|
|
2181
|
+
export type NetworkOperationStatus = string;
|
|
2182
2182
|
/** Known values of {@link FrontDoorForwardingProtocol} that the service accepts. */
|
|
2183
2183
|
export declare enum KnownFrontDoorForwardingProtocol {
|
|
2184
2184
|
/** HttpOnly */
|
|
@@ -2197,7 +2197,7 @@ export declare enum KnownFrontDoorForwardingProtocol {
|
|
|
2197
2197
|
* **HttpsOnly** \
|
|
2198
2198
|
* **MatchRequest**
|
|
2199
2199
|
*/
|
|
2200
|
-
export
|
|
2200
|
+
export type FrontDoorForwardingProtocol = string;
|
|
2201
2201
|
/** Known values of {@link FrontDoorQuery} that the service accepts. */
|
|
2202
2202
|
export declare enum KnownFrontDoorQuery {
|
|
2203
2203
|
/** StripNone */
|
|
@@ -2219,7 +2219,7 @@ export declare enum KnownFrontDoorQuery {
|
|
|
2219
2219
|
* **StripOnly** \
|
|
2220
2220
|
* **StripAllExcept**
|
|
2221
2221
|
*/
|
|
2222
|
-
export
|
|
2222
|
+
export type FrontDoorQuery = string;
|
|
2223
2223
|
/** Known values of {@link DynamicCompressionEnabled} that the service accepts. */
|
|
2224
2224
|
export declare enum KnownDynamicCompressionEnabled {
|
|
2225
2225
|
/** Enabled */
|
|
@@ -2235,7 +2235,7 @@ export declare enum KnownDynamicCompressionEnabled {
|
|
|
2235
2235
|
* **Enabled** \
|
|
2236
2236
|
* **Disabled**
|
|
2237
2237
|
*/
|
|
2238
|
-
export
|
|
2238
|
+
export type DynamicCompressionEnabled = string;
|
|
2239
2239
|
/** Known values of {@link FrontDoorRedirectType} that the service accepts. */
|
|
2240
2240
|
export declare enum KnownFrontDoorRedirectType {
|
|
2241
2241
|
/** Moved */
|
|
@@ -2257,7 +2257,7 @@ export declare enum KnownFrontDoorRedirectType {
|
|
|
2257
2257
|
* **TemporaryRedirect** \
|
|
2258
2258
|
* **PermanentRedirect**
|
|
2259
2259
|
*/
|
|
2260
|
-
export
|
|
2260
|
+
export type FrontDoorRedirectType = string;
|
|
2261
2261
|
/** Known values of {@link FrontDoorRedirectProtocol} that the service accepts. */
|
|
2262
2262
|
export declare enum KnownFrontDoorRedirectProtocol {
|
|
2263
2263
|
/** HttpOnly */
|
|
@@ -2276,24 +2276,24 @@ export declare enum KnownFrontDoorRedirectProtocol {
|
|
|
2276
2276
|
* **HttpsOnly** \
|
|
2277
2277
|
* **MatchRequest**
|
|
2278
2278
|
*/
|
|
2279
|
-
export
|
|
2279
|
+
export type FrontDoorRedirectProtocol = string;
|
|
2280
2280
|
/** Defines values for ResourceType. */
|
|
2281
|
-
export
|
|
2281
|
+
export type ResourceType = "Microsoft.Network/frontDoors" | "Microsoft.Network/frontDoors/frontendEndpoints";
|
|
2282
2282
|
/** Optional parameters. */
|
|
2283
2283
|
export interface NetworkExperimentProfilesListOptionalParams extends coreClient.OperationOptions {
|
|
2284
2284
|
}
|
|
2285
2285
|
/** Contains response data for the list operation. */
|
|
2286
|
-
export
|
|
2286
|
+
export type NetworkExperimentProfilesListResponse = ProfileList;
|
|
2287
2287
|
/** Optional parameters. */
|
|
2288
2288
|
export interface NetworkExperimentProfilesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2289
2289
|
}
|
|
2290
2290
|
/** Contains response data for the listByResourceGroup operation. */
|
|
2291
|
-
export
|
|
2291
|
+
export type NetworkExperimentProfilesListByResourceGroupResponse = ProfileList;
|
|
2292
2292
|
/** Optional parameters. */
|
|
2293
2293
|
export interface NetworkExperimentProfilesGetOptionalParams extends coreClient.OperationOptions {
|
|
2294
2294
|
}
|
|
2295
2295
|
/** Contains response data for the get operation. */
|
|
2296
|
-
export
|
|
2296
|
+
export type NetworkExperimentProfilesGetResponse = Profile;
|
|
2297
2297
|
/** Optional parameters. */
|
|
2298
2298
|
export interface NetworkExperimentProfilesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2299
2299
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2302,7 +2302,7 @@ export interface NetworkExperimentProfilesCreateOrUpdateOptionalParams extends c
|
|
|
2302
2302
|
resumeFrom?: string;
|
|
2303
2303
|
}
|
|
2304
2304
|
/** Contains response data for the createOrUpdate operation. */
|
|
2305
|
-
export
|
|
2305
|
+
export type NetworkExperimentProfilesCreateOrUpdateResponse = Profile;
|
|
2306
2306
|
/** Optional parameters. */
|
|
2307
2307
|
export interface NetworkExperimentProfilesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2308
2308
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2311,7 +2311,7 @@ export interface NetworkExperimentProfilesUpdateOptionalParams extends coreClien
|
|
|
2311
2311
|
resumeFrom?: string;
|
|
2312
2312
|
}
|
|
2313
2313
|
/** Contains response data for the update operation. */
|
|
2314
|
-
export
|
|
2314
|
+
export type NetworkExperimentProfilesUpdateResponse = Profile;
|
|
2315
2315
|
/** Optional parameters. */
|
|
2316
2316
|
export interface NetworkExperimentProfilesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2317
2317
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2323,32 +2323,32 @@ export interface NetworkExperimentProfilesDeleteOptionalParams extends coreClien
|
|
|
2323
2323
|
export interface NetworkExperimentProfilesListNextOptionalParams extends coreClient.OperationOptions {
|
|
2324
2324
|
}
|
|
2325
2325
|
/** Contains response data for the listNext operation. */
|
|
2326
|
-
export
|
|
2326
|
+
export type NetworkExperimentProfilesListNextResponse = ProfileList;
|
|
2327
2327
|
/** Optional parameters. */
|
|
2328
2328
|
export interface NetworkExperimentProfilesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
2329
2329
|
}
|
|
2330
2330
|
/** Contains response data for the listByResourceGroupNext operation. */
|
|
2331
|
-
export
|
|
2331
|
+
export type NetworkExperimentProfilesListByResourceGroupNextResponse = ProfileList;
|
|
2332
2332
|
/** Optional parameters. */
|
|
2333
2333
|
export interface PreconfiguredEndpointsListOptionalParams extends coreClient.OperationOptions {
|
|
2334
2334
|
}
|
|
2335
2335
|
/** Contains response data for the list operation. */
|
|
2336
|
-
export
|
|
2336
|
+
export type PreconfiguredEndpointsListResponse = PreconfiguredEndpointList;
|
|
2337
2337
|
/** Optional parameters. */
|
|
2338
2338
|
export interface PreconfiguredEndpointsListNextOptionalParams extends coreClient.OperationOptions {
|
|
2339
2339
|
}
|
|
2340
2340
|
/** Contains response data for the listNext operation. */
|
|
2341
|
-
export
|
|
2341
|
+
export type PreconfiguredEndpointsListNextResponse = PreconfiguredEndpointList;
|
|
2342
2342
|
/** Optional parameters. */
|
|
2343
2343
|
export interface ExperimentsListByProfileOptionalParams extends coreClient.OperationOptions {
|
|
2344
2344
|
}
|
|
2345
2345
|
/** Contains response data for the listByProfile operation. */
|
|
2346
|
-
export
|
|
2346
|
+
export type ExperimentsListByProfileResponse = ExperimentList;
|
|
2347
2347
|
/** Optional parameters. */
|
|
2348
2348
|
export interface ExperimentsGetOptionalParams extends coreClient.OperationOptions {
|
|
2349
2349
|
}
|
|
2350
2350
|
/** Contains response data for the get operation. */
|
|
2351
|
-
export
|
|
2351
|
+
export type ExperimentsGetResponse = Experiment;
|
|
2352
2352
|
/** Optional parameters. */
|
|
2353
2353
|
export interface ExperimentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2354
2354
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2357,7 +2357,7 @@ export interface ExperimentsCreateOrUpdateOptionalParams extends coreClient.Oper
|
|
|
2357
2357
|
resumeFrom?: string;
|
|
2358
2358
|
}
|
|
2359
2359
|
/** Contains response data for the createOrUpdate operation. */
|
|
2360
|
-
export
|
|
2360
|
+
export type ExperimentsCreateOrUpdateResponse = Experiment;
|
|
2361
2361
|
/** Optional parameters. */
|
|
2362
2362
|
export interface ExperimentsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2363
2363
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2366,7 +2366,7 @@ export interface ExperimentsUpdateOptionalParams extends coreClient.OperationOpt
|
|
|
2366
2366
|
resumeFrom?: string;
|
|
2367
2367
|
}
|
|
2368
2368
|
/** Contains response data for the update operation. */
|
|
2369
|
-
export
|
|
2369
|
+
export type ExperimentsUpdateResponse = Experiment;
|
|
2370
2370
|
/** Optional parameters. */
|
|
2371
2371
|
export interface ExperimentsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2372
2372
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2378,7 +2378,7 @@ export interface ExperimentsDeleteOptionalParams extends coreClient.OperationOpt
|
|
|
2378
2378
|
export interface ExperimentsListByProfileNextOptionalParams extends coreClient.OperationOptions {
|
|
2379
2379
|
}
|
|
2380
2380
|
/** Contains response data for the listByProfileNext operation. */
|
|
2381
|
-
export
|
|
2381
|
+
export type ExperimentsListByProfileNextResponse = ExperimentList;
|
|
2382
2382
|
/** Optional parameters. */
|
|
2383
2383
|
export interface ReportsGetLatencyScorecardsOptionalParams extends coreClient.OperationOptions {
|
|
2384
2384
|
/** The end DateTime of the Latency Scorecard in UTC */
|
|
@@ -2387,7 +2387,7 @@ export interface ReportsGetLatencyScorecardsOptionalParams extends coreClient.Op
|
|
|
2387
2387
|
country?: string;
|
|
2388
2388
|
}
|
|
2389
2389
|
/** Contains response data for the getLatencyScorecards operation. */
|
|
2390
|
-
export
|
|
2390
|
+
export type ReportsGetLatencyScorecardsResponse = LatencyScorecard;
|
|
2391
2391
|
/** Optional parameters. */
|
|
2392
2392
|
export interface ReportsGetTimeseriesOptionalParams extends coreClient.OperationOptions {
|
|
2393
2393
|
/** The country associated with the Timeseries. Values are country ISO codes as specified here- https://www.iso.org/iso-3166-country-codes.html */
|
|
@@ -2396,32 +2396,32 @@ export interface ReportsGetTimeseriesOptionalParams extends coreClient.Operation
|
|
|
2396
2396
|
endpoint?: string;
|
|
2397
2397
|
}
|
|
2398
2398
|
/** Contains response data for the getTimeseries operation. */
|
|
2399
|
-
export
|
|
2399
|
+
export type ReportsGetTimeseriesResponse = Timeseries;
|
|
2400
2400
|
/** Optional parameters. */
|
|
2401
2401
|
export interface FrontDoorNameAvailabilityCheckOptionalParams extends coreClient.OperationOptions {
|
|
2402
2402
|
}
|
|
2403
2403
|
/** Contains response data for the check operation. */
|
|
2404
|
-
export
|
|
2404
|
+
export type FrontDoorNameAvailabilityCheckResponse = CheckNameAvailabilityOutput;
|
|
2405
2405
|
/** Optional parameters. */
|
|
2406
2406
|
export interface FrontDoorNameAvailabilityWithSubscriptionCheckOptionalParams extends coreClient.OperationOptions {
|
|
2407
2407
|
}
|
|
2408
2408
|
/** Contains response data for the check operation. */
|
|
2409
|
-
export
|
|
2409
|
+
export type FrontDoorNameAvailabilityWithSubscriptionCheckResponse = CheckNameAvailabilityOutput;
|
|
2410
2410
|
/** Optional parameters. */
|
|
2411
2411
|
export interface FrontDoorsListOptionalParams extends coreClient.OperationOptions {
|
|
2412
2412
|
}
|
|
2413
2413
|
/** Contains response data for the list operation. */
|
|
2414
|
-
export
|
|
2414
|
+
export type FrontDoorsListResponse = FrontDoorListResult;
|
|
2415
2415
|
/** Optional parameters. */
|
|
2416
2416
|
export interface FrontDoorsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
2417
2417
|
}
|
|
2418
2418
|
/** Contains response data for the listByResourceGroup operation. */
|
|
2419
|
-
export
|
|
2419
|
+
export type FrontDoorsListByResourceGroupResponse = FrontDoorListResult;
|
|
2420
2420
|
/** Optional parameters. */
|
|
2421
2421
|
export interface FrontDoorsGetOptionalParams extends coreClient.OperationOptions {
|
|
2422
2422
|
}
|
|
2423
2423
|
/** Contains response data for the get operation. */
|
|
2424
|
-
export
|
|
2424
|
+
export type FrontDoorsGetResponse = FrontDoor;
|
|
2425
2425
|
/** Optional parameters. */
|
|
2426
2426
|
export interface FrontDoorsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2427
2427
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2430,7 +2430,7 @@ export interface FrontDoorsCreateOrUpdateOptionalParams extends coreClient.Opera
|
|
|
2430
2430
|
resumeFrom?: string;
|
|
2431
2431
|
}
|
|
2432
2432
|
/** Contains response data for the createOrUpdate operation. */
|
|
2433
|
-
export
|
|
2433
|
+
export type FrontDoorsCreateOrUpdateResponse = FrontDoor;
|
|
2434
2434
|
/** Optional parameters. */
|
|
2435
2435
|
export interface FrontDoorsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2436
2436
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2442,27 +2442,27 @@ export interface FrontDoorsDeleteOptionalParams extends coreClient.OperationOpti
|
|
|
2442
2442
|
export interface FrontDoorsValidateCustomDomainOptionalParams extends coreClient.OperationOptions {
|
|
2443
2443
|
}
|
|
2444
2444
|
/** Contains response data for the validateCustomDomain operation. */
|
|
2445
|
-
export
|
|
2445
|
+
export type FrontDoorsValidateCustomDomainResponse = ValidateCustomDomainOutput;
|
|
2446
2446
|
/** Optional parameters. */
|
|
2447
2447
|
export interface FrontDoorsListNextOptionalParams extends coreClient.OperationOptions {
|
|
2448
2448
|
}
|
|
2449
2449
|
/** Contains response data for the listNext operation. */
|
|
2450
|
-
export
|
|
2450
|
+
export type FrontDoorsListNextResponse = FrontDoorListResult;
|
|
2451
2451
|
/** Optional parameters. */
|
|
2452
2452
|
export interface FrontDoorsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
2453
2453
|
}
|
|
2454
2454
|
/** Contains response data for the listByResourceGroupNext operation. */
|
|
2455
|
-
export
|
|
2455
|
+
export type FrontDoorsListByResourceGroupNextResponse = FrontDoorListResult;
|
|
2456
2456
|
/** Optional parameters. */
|
|
2457
2457
|
export interface FrontendEndpointsListByFrontDoorOptionalParams extends coreClient.OperationOptions {
|
|
2458
2458
|
}
|
|
2459
2459
|
/** Contains response data for the listByFrontDoor operation. */
|
|
2460
|
-
export
|
|
2460
|
+
export type FrontendEndpointsListByFrontDoorResponse = FrontendEndpointsListResult;
|
|
2461
2461
|
/** Optional parameters. */
|
|
2462
2462
|
export interface FrontendEndpointsGetOptionalParams extends coreClient.OperationOptions {
|
|
2463
2463
|
}
|
|
2464
2464
|
/** Contains response data for the get operation. */
|
|
2465
|
-
export
|
|
2465
|
+
export type FrontendEndpointsGetResponse = FrontendEndpoint;
|
|
2466
2466
|
/** Optional parameters. */
|
|
2467
2467
|
export interface FrontendEndpointsEnableHttpsOptionalParams extends coreClient.OperationOptions {
|
|
2468
2468
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2481,7 +2481,7 @@ export interface FrontendEndpointsDisableHttpsOptionalParams extends coreClient.
|
|
|
2481
2481
|
export interface FrontendEndpointsListByFrontDoorNextOptionalParams extends coreClient.OperationOptions {
|
|
2482
2482
|
}
|
|
2483
2483
|
/** Contains response data for the listByFrontDoorNext operation. */
|
|
2484
|
-
export
|
|
2484
|
+
export type FrontendEndpointsListByFrontDoorNextResponse = FrontendEndpointsListResult;
|
|
2485
2485
|
/** Optional parameters. */
|
|
2486
2486
|
export interface EndpointsPurgeContentOptionalParams extends coreClient.OperationOptions {
|
|
2487
2487
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2493,12 +2493,12 @@ export interface EndpointsPurgeContentOptionalParams extends coreClient.Operatio
|
|
|
2493
2493
|
export interface RulesEnginesListByFrontDoorOptionalParams extends coreClient.OperationOptions {
|
|
2494
2494
|
}
|
|
2495
2495
|
/** Contains response data for the listByFrontDoor operation. */
|
|
2496
|
-
export
|
|
2496
|
+
export type RulesEnginesListByFrontDoorResponse = RulesEngineListResult;
|
|
2497
2497
|
/** Optional parameters. */
|
|
2498
2498
|
export interface RulesEnginesGetOptionalParams extends coreClient.OperationOptions {
|
|
2499
2499
|
}
|
|
2500
2500
|
/** Contains response data for the get operation. */
|
|
2501
|
-
export
|
|
2501
|
+
export type RulesEnginesGetResponse = RulesEngine;
|
|
2502
2502
|
/** Optional parameters. */
|
|
2503
2503
|
export interface RulesEnginesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2504
2504
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2507,7 +2507,7 @@ export interface RulesEnginesCreateOrUpdateOptionalParams extends coreClient.Ope
|
|
|
2507
2507
|
resumeFrom?: string;
|
|
2508
2508
|
}
|
|
2509
2509
|
/** Contains response data for the createOrUpdate operation. */
|
|
2510
|
-
export
|
|
2510
|
+
export type RulesEnginesCreateOrUpdateResponse = RulesEngine;
|
|
2511
2511
|
/** Optional parameters. */
|
|
2512
2512
|
export interface RulesEnginesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2513
2513
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2519,17 +2519,17 @@ export interface RulesEnginesDeleteOptionalParams extends coreClient.OperationOp
|
|
|
2519
2519
|
export interface RulesEnginesListByFrontDoorNextOptionalParams extends coreClient.OperationOptions {
|
|
2520
2520
|
}
|
|
2521
2521
|
/** Contains response data for the listByFrontDoorNext operation. */
|
|
2522
|
-
export
|
|
2522
|
+
export type RulesEnginesListByFrontDoorNextResponse = RulesEngineListResult;
|
|
2523
2523
|
/** Optional parameters. */
|
|
2524
2524
|
export interface PoliciesListOptionalParams extends coreClient.OperationOptions {
|
|
2525
2525
|
}
|
|
2526
2526
|
/** Contains response data for the list operation. */
|
|
2527
|
-
export
|
|
2527
|
+
export type PoliciesListResponse = WebApplicationFirewallPolicyList;
|
|
2528
2528
|
/** Optional parameters. */
|
|
2529
2529
|
export interface PoliciesGetOptionalParams extends coreClient.OperationOptions {
|
|
2530
2530
|
}
|
|
2531
2531
|
/** Contains response data for the get operation. */
|
|
2532
|
-
export
|
|
2532
|
+
export type PoliciesGetResponse = WebApplicationFirewallPolicy;
|
|
2533
2533
|
/** Optional parameters. */
|
|
2534
2534
|
export interface PoliciesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2535
2535
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2538,7 +2538,7 @@ export interface PoliciesCreateOrUpdateOptionalParams extends coreClient.Operati
|
|
|
2538
2538
|
resumeFrom?: string;
|
|
2539
2539
|
}
|
|
2540
2540
|
/** Contains response data for the createOrUpdate operation. */
|
|
2541
|
-
export
|
|
2541
|
+
export type PoliciesCreateOrUpdateResponse = WebApplicationFirewallPolicy;
|
|
2542
2542
|
/** Optional parameters. */
|
|
2543
2543
|
export interface PoliciesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
2544
2544
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -2550,17 +2550,17 @@ export interface PoliciesDeleteOptionalParams extends coreClient.OperationOption
|
|
|
2550
2550
|
export interface PoliciesListNextOptionalParams extends coreClient.OperationOptions {
|
|
2551
2551
|
}
|
|
2552
2552
|
/** Contains response data for the listNext operation. */
|
|
2553
|
-
export
|
|
2553
|
+
export type PoliciesListNextResponse = WebApplicationFirewallPolicyList;
|
|
2554
2554
|
/** Optional parameters. */
|
|
2555
2555
|
export interface ManagedRuleSetsListOptionalParams extends coreClient.OperationOptions {
|
|
2556
2556
|
}
|
|
2557
2557
|
/** Contains response data for the list operation. */
|
|
2558
|
-
export
|
|
2558
|
+
export type ManagedRuleSetsListResponse = ManagedRuleSetDefinitionList;
|
|
2559
2559
|
/** Optional parameters. */
|
|
2560
2560
|
export interface ManagedRuleSetsListNextOptionalParams extends coreClient.OperationOptions {
|
|
2561
2561
|
}
|
|
2562
2562
|
/** Contains response data for the listNext operation. */
|
|
2563
|
-
export
|
|
2563
|
+
export type ManagedRuleSetsListNextResponse = ManagedRuleSetDefinitionList;
|
|
2564
2564
|
/** Optional parameters. */
|
|
2565
2565
|
export interface FrontDoorManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
2566
2566
|
/** server parameter */
|