@azure/arm-frontdoor 5.0.2-alpha.20221101.1 → 5.1.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.
Files changed (62) hide show
  1. package/CHANGELOG.md +27 -10
  2. package/dist/index.js +424 -88
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.min.js +1 -1
  5. package/dist/index.min.js.map +1 -1
  6. package/dist-esm/src/frontDoorManagementClient.d.ts.map +1 -1
  7. package/dist-esm/src/frontDoorManagementClient.js +20 -18
  8. package/dist-esm/src/frontDoorManagementClient.js.map +1 -1
  9. package/dist-esm/src/index.d.ts +1 -0
  10. package/dist-esm/src/index.d.ts.map +1 -1
  11. package/dist-esm/src/index.js +1 -0
  12. package/dist-esm/src/index.js.map +1 -1
  13. package/dist-esm/src/models/index.d.ts +235 -44
  14. package/dist-esm/src/models/index.d.ts.map +1 -1
  15. package/dist-esm/src/models/index.js +191 -0
  16. package/dist-esm/src/models/index.js.map +1 -1
  17. package/dist-esm/src/operations/experiments.d.ts.map +1 -1
  18. package/dist-esm/src/operations/experiments.js +19 -7
  19. package/dist-esm/src/operations/experiments.js.map +1 -1
  20. package/dist-esm/src/operations/frontDoors.d.ts.map +1 -1
  21. package/dist-esm/src/operations/frontDoors.js +37 -14
  22. package/dist-esm/src/operations/frontDoors.js.map +1 -1
  23. package/dist-esm/src/operations/frontendEndpoints.d.ts.map +1 -1
  24. package/dist-esm/src/operations/frontendEndpoints.js +19 -7
  25. package/dist-esm/src/operations/frontendEndpoints.js.map +1 -1
  26. package/dist-esm/src/operations/managedRuleSets.d.ts.map +1 -1
  27. package/dist-esm/src/operations/managedRuleSets.js +19 -7
  28. package/dist-esm/src/operations/managedRuleSets.js.map +1 -1
  29. package/dist-esm/src/operations/networkExperimentProfiles.d.ts.map +1 -1
  30. package/dist-esm/src/operations/networkExperimentProfiles.js +37 -14
  31. package/dist-esm/src/operations/networkExperimentProfiles.js.map +1 -1
  32. package/dist-esm/src/operations/policies.d.ts.map +1 -1
  33. package/dist-esm/src/operations/policies.js +19 -7
  34. package/dist-esm/src/operations/policies.js.map +1 -1
  35. package/dist-esm/src/operations/preconfiguredEndpoints.d.ts.map +1 -1
  36. package/dist-esm/src/operations/preconfiguredEndpoints.js +19 -7
  37. package/dist-esm/src/operations/preconfiguredEndpoints.js.map +1 -1
  38. package/dist-esm/src/operations/rulesEngines.d.ts.map +1 -1
  39. package/dist-esm/src/operations/rulesEngines.js +19 -7
  40. package/dist-esm/src/operations/rulesEngines.js.map +1 -1
  41. package/dist-esm/src/pagingHelper.d.ts +13 -0
  42. package/dist-esm/src/pagingHelper.d.ts.map +1 -0
  43. package/dist-esm/src/pagingHelper.js +32 -0
  44. package/dist-esm/src/pagingHelper.js.map +1 -0
  45. package/dist-esm/test/sampleTest.js +11 -13
  46. package/dist-esm/test/sampleTest.js.map +1 -1
  47. package/package.json +13 -9
  48. package/review/arm-frontdoor.api.md +107 -295
  49. package/src/frontDoorManagementClient.ts +26 -20
  50. package/src/index.ts +1 -0
  51. package/src/models/index.ts +238 -44
  52. package/src/operations/experiments.ts +26 -12
  53. package/src/operations/frontDoors.ts +45 -16
  54. package/src/operations/frontendEndpoints.ts +26 -12
  55. package/src/operations/managedRuleSets.ts +21 -8
  56. package/src/operations/networkExperimentProfiles.ts +45 -16
  57. package/src/operations/policies.ts +21 -8
  58. package/src/operations/preconfiguredEndpoints.ts +26 -8
  59. package/src/operations/rulesEngines.ts +26 -12
  60. package/src/pagingHelper.ts +39 -0
  61. package/types/arm-frontdoor.d.ts +244 -44
  62. package/types/tsdoc-metadata.json +1 -1
@@ -85,7 +85,7 @@ export declare interface Backend {
85
85
  export declare type BackendEnabledState = string;
86
86
 
87
87
  /** A backend pool is a collection of backends that can be routed to. */
88
- export declare type BackendPool = SubResource & {
88
+ export declare interface BackendPool extends SubResource {
89
89
  /** Resource name. */
90
90
  name?: string;
91
91
  /**
@@ -104,7 +104,7 @@ export declare type BackendPool = SubResource & {
104
104
  * NOTE: This property will not be serialized. It can only be populated by the server.
105
105
  */
106
106
  readonly resourceState?: FrontDoorResourceState;
107
- };
107
+ }
108
108
 
109
109
  /** Result of the request to list Backend Pools. It contains a list of Backend Pools objects and a URL link to get the next set of results. */
110
110
  export declare interface BackendPoolListResult {
@@ -118,13 +118,13 @@ export declare interface BackendPoolListResult {
118
118
  }
119
119
 
120
120
  /** The JSON object that contains the properties required to create a Backend Pool. */
121
- export declare type BackendPoolProperties = BackendPoolUpdateParameters & {
121
+ export declare interface BackendPoolProperties extends BackendPoolUpdateParameters {
122
122
  /**
123
123
  * Resource status.
124
124
  * NOTE: This property will not be serialized. It can only be populated by the server.
125
125
  */
126
126
  readonly resourceState?: FrontDoorResourceState;
127
- };
127
+ }
128
128
 
129
129
  /** Settings that apply to all backend pools. */
130
130
  export declare interface BackendPoolsSettings {
@@ -369,7 +369,7 @@ export declare interface ErrorResponse {
369
369
  }
370
370
 
371
371
  /** Defines the properties of an Experiment */
372
- export declare type Experiment = Resource & {
372
+ export declare interface Experiment extends Resource {
373
373
  /** The description of the details or intents of the Experiment */
374
374
  description?: string;
375
375
  /** The endpoint A of an experiment */
@@ -393,7 +393,7 @@ export declare type Experiment = Resource & {
393
393
  * NOTE: This property will not be serialized. It can only be populated by the server.
394
394
  */
395
395
  readonly scriptFileUri?: string;
396
- };
396
+ }
397
397
 
398
398
  /** Defines a list of Experiments. It contains a list of Experiment objects and a URL link to get the next set of results. */
399
399
  export declare interface ExperimentList {
@@ -541,7 +541,7 @@ export declare interface ExperimentUpdateModel {
541
541
  }
542
542
 
543
543
  /** Describes Forwarding Route. */
544
- export declare type ForwardingConfiguration = RouteConfiguration & {
544
+ export declare interface ForwardingConfiguration extends RouteConfiguration {
545
545
  /** Polymorphic discriminator, which specifies the different types this object can be */
546
546
  odataType: "#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration";
547
547
  /** A custom path used to rewrite resource paths matched by this rule. Leave empty to use incoming path. */
@@ -552,10 +552,10 @@ export declare type ForwardingConfiguration = RouteConfiguration & {
552
552
  cacheConfiguration?: CacheConfiguration;
553
553
  /** A reference to the BackendPool which this rule routes to. */
554
554
  backendPool?: SubResource;
555
- };
555
+ }
556
556
 
557
557
  /** Front Door represents a collection of backend endpoints to route traffic to along with rules that specify how traffic is sent there. */
558
- export declare type FrontDoor = Resource & {
558
+ export declare interface FrontDoor extends Resource {
559
559
  /** A friendly name for the frontDoor */
560
560
  friendlyName?: string;
561
561
  /** Routing rules associated with this Front Door. */
@@ -597,7 +597,7 @@ export declare type FrontDoor = Resource & {
597
597
  * NOTE: This property will not be serialized. It can only be populated by the server.
598
598
  */
599
599
  readonly rulesEngines?: RulesEngine[];
600
- };
600
+ }
601
601
 
602
602
  /**
603
603
  * Defines values for FrontDoorCertificateSource. \
@@ -728,7 +728,7 @@ export declare interface FrontDoorNameAvailabilityWithSubscriptionCheckOptionalP
728
728
  export declare type FrontDoorNameAvailabilityWithSubscriptionCheckResponse = CheckNameAvailabilityOutput;
729
729
 
730
730
  /** The JSON object that contains the properties required to create an endpoint. */
731
- export declare type FrontDoorProperties = FrontDoorUpdateParameters & {
731
+ export declare interface FrontDoorProperties extends FrontDoorUpdateParameters {
732
732
  /**
733
733
  * Resource status of the Front Door.
734
734
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -754,7 +754,7 @@ export declare type FrontDoorProperties = FrontDoorUpdateParameters & {
754
754
  * NOTE: This property will not be serialized. It can only be populated by the server.
755
755
  */
756
756
  readonly rulesEngines?: RulesEngine[];
757
- };
757
+ }
758
758
 
759
759
  /**
760
760
  * Defines values for FrontDoorProtocol. \
@@ -967,7 +967,7 @@ export declare interface FrontDoorUpdateParameters {
967
967
  }
968
968
 
969
969
  /** A frontend endpoint used for routing. */
970
- export declare type FrontendEndpoint = SubResource & {
970
+ export declare interface FrontendEndpoint extends SubResource {
971
971
  /** Resource name. */
972
972
  name?: string;
973
973
  /**
@@ -1003,7 +1003,7 @@ export declare type FrontendEndpoint = SubResource & {
1003
1003
  * NOTE: This property will not be serialized. It can only be populated by the server.
1004
1004
  */
1005
1005
  readonly customHttpsConfiguration?: CustomHttpsConfiguration;
1006
- };
1006
+ }
1007
1007
 
1008
1008
  /** Defines the Resource ID for a Frontend Endpoint. */
1009
1009
  export declare interface FrontendEndpointLink {
@@ -1012,7 +1012,7 @@ export declare interface FrontendEndpointLink {
1012
1012
  }
1013
1013
 
1014
1014
  /** The JSON object that contains the properties required to create a frontend endpoint. */
1015
- export declare type FrontendEndpointProperties = FrontendEndpointUpdateParameters & {
1015
+ export declare interface FrontendEndpointProperties extends FrontendEndpointUpdateParameters {
1016
1016
  /**
1017
1017
  * Resource status.
1018
1018
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1033,7 +1033,7 @@ export declare type FrontendEndpointProperties = FrontendEndpointUpdateParameter
1033
1033
  * NOTE: This property will not be serialized. It can only be populated by the server.
1034
1034
  */
1035
1035
  readonly customHttpsConfiguration?: CustomHttpsConfiguration;
1036
- };
1036
+ }
1037
1037
 
1038
1038
  /** Interface representing a FrontendEndpoints. */
1039
1039
  export declare interface FrontendEndpoints {
@@ -1154,6 +1154,15 @@ export declare interface FrontendEndpointUpdateParametersWebApplicationFirewallP
1154
1154
  id?: string;
1155
1155
  }
1156
1156
 
1157
+ /**
1158
+ * Given a result page from a pageable operation, returns a
1159
+ * continuation token that can be used to begin paging from
1160
+ * that point later.
1161
+ * @param page A result object from calling .byPage() on a paged operation.
1162
+ * @returns The continuation token that can be passed into byPage().
1163
+ */
1164
+ export declare function getContinuationToken(page: unknown): string | undefined;
1165
+
1157
1166
  /** An action that can manipulate an http header. */
1158
1167
  export declare interface HeaderAction {
1159
1168
  /** Which type of manipulation to apply to the header. */
@@ -1197,7 +1206,7 @@ export declare interface HealthProbeSettingsListResult {
1197
1206
  }
1198
1207
 
1199
1208
  /** Load balancing settings for a backend pool */
1200
- export declare type HealthProbeSettingsModel = SubResource & {
1209
+ export declare interface HealthProbeSettingsModel extends SubResource {
1201
1210
  /** Resource name. */
1202
1211
  name?: string;
1203
1212
  /**
@@ -1220,16 +1229,16 @@ export declare type HealthProbeSettingsModel = SubResource & {
1220
1229
  * NOTE: This property will not be serialized. It can only be populated by the server.
1221
1230
  */
1222
1231
  readonly resourceState?: FrontDoorResourceState;
1223
- };
1232
+ }
1224
1233
 
1225
1234
  /** The JSON object that contains the properties required to create a health probe settings. */
1226
- export declare type HealthProbeSettingsProperties = HealthProbeSettingsUpdateParameters & {
1235
+ export declare interface HealthProbeSettingsProperties extends HealthProbeSettingsUpdateParameters {
1227
1236
  /**
1228
1237
  * Resource status.
1229
1238
  * NOTE: This property will not be serialized. It can only be populated by the server.
1230
1239
  */
1231
1240
  readonly resourceState?: FrontDoorResourceState;
1232
- };
1241
+ }
1233
1242
 
1234
1243
  /** L7 health probe settings for a backend pool */
1235
1244
  export declare interface HealthProbeSettingsUpdateParameters {
@@ -1253,392 +1262,583 @@ export declare interface KeyVaultCertificateSourceParametersVault {
1253
1262
 
1254
1263
  /** Known values of {@link ActionType} that the service accepts. */
1255
1264
  export declare enum KnownActionType {
1265
+ /** Allow */
1256
1266
  Allow = "Allow",
1267
+ /** Block */
1257
1268
  Block = "Block",
1269
+ /** Log */
1258
1270
  Log = "Log",
1271
+ /** Redirect */
1259
1272
  Redirect = "Redirect"
1260
1273
  }
1261
1274
 
1262
1275
  /** Known values of {@link AggregationInterval} that the service accepts. */
1263
1276
  export declare enum KnownAggregationInterval {
1277
+ /** Hourly */
1264
1278
  Hourly = "Hourly",
1279
+ /** Daily */
1265
1280
  Daily = "Daily"
1266
1281
  }
1267
1282
 
1268
1283
  /** Known values of {@link Availability} that the service accepts. */
1269
1284
  export declare enum KnownAvailability {
1285
+ /** Available */
1270
1286
  Available = "Available",
1287
+ /** Unavailable */
1271
1288
  Unavailable = "Unavailable"
1272
1289
  }
1273
1290
 
1274
1291
  /** Known values of {@link BackendEnabledState} that the service accepts. */
1275
1292
  export declare enum KnownBackendEnabledState {
1293
+ /** Enabled */
1276
1294
  Enabled = "Enabled",
1295
+ /** Disabled */
1277
1296
  Disabled = "Disabled"
1278
1297
  }
1279
1298
 
1280
1299
  /** Known values of {@link CustomHttpsProvisioningState} that the service accepts. */
1281
1300
  export declare enum KnownCustomHttpsProvisioningState {
1301
+ /** Enabling */
1282
1302
  Enabling = "Enabling",
1303
+ /** Enabled */
1283
1304
  Enabled = "Enabled",
1305
+ /** Disabling */
1284
1306
  Disabling = "Disabling",
1307
+ /** Disabled */
1285
1308
  Disabled = "Disabled",
1309
+ /** Failed */
1286
1310
  Failed = "Failed"
1287
1311
  }
1288
1312
 
1289
1313
  /** Known values of {@link CustomHttpsProvisioningSubstate} that the service accepts. */
1290
1314
  export declare enum KnownCustomHttpsProvisioningSubstate {
1315
+ /** SubmittingDomainControlValidationRequest */
1291
1316
  SubmittingDomainControlValidationRequest = "SubmittingDomainControlValidationRequest",
1317
+ /** PendingDomainControlValidationREquestApproval */
1292
1318
  PendingDomainControlValidationREquestApproval = "PendingDomainControlValidationREquestApproval",
1319
+ /** DomainControlValidationRequestApproved */
1293
1320
  DomainControlValidationRequestApproved = "DomainControlValidationRequestApproved",
1321
+ /** DomainControlValidationRequestRejected */
1294
1322
  DomainControlValidationRequestRejected = "DomainControlValidationRequestRejected",
1323
+ /** DomainControlValidationRequestTimedOut */
1295
1324
  DomainControlValidationRequestTimedOut = "DomainControlValidationRequestTimedOut",
1325
+ /** IssuingCertificate */
1296
1326
  IssuingCertificate = "IssuingCertificate",
1327
+ /** DeployingCertificate */
1297
1328
  DeployingCertificate = "DeployingCertificate",
1329
+ /** CertificateDeployed */
1298
1330
  CertificateDeployed = "CertificateDeployed",
1331
+ /** DeletingCertificate */
1299
1332
  DeletingCertificate = "DeletingCertificate",
1333
+ /** CertificateDeleted */
1300
1334
  CertificateDeleted = "CertificateDeleted"
1301
1335
  }
1302
1336
 
1303
1337
  /** Known values of {@link CustomRuleEnabledState} that the service accepts. */
1304
1338
  export declare enum KnownCustomRuleEnabledState {
1339
+ /** Disabled */
1305
1340
  Disabled = "Disabled",
1341
+ /** Enabled */
1306
1342
  Enabled = "Enabled"
1307
1343
  }
1308
1344
 
1309
1345
  /** Known values of {@link DynamicCompressionEnabled} that the service accepts. */
1310
1346
  export declare enum KnownDynamicCompressionEnabled {
1347
+ /** Enabled */
1311
1348
  Enabled = "Enabled",
1349
+ /** Disabled */
1312
1350
  Disabled = "Disabled"
1313
1351
  }
1314
1352
 
1315
1353
  /** Known values of {@link EndpointType} that the service accepts. */
1316
1354
  export declare enum KnownEndpointType {
1355
+ /** AFD */
1317
1356
  AFD = "AFD",
1357
+ /** AzureRegion */
1318
1358
  AzureRegion = "AzureRegion",
1359
+ /** CDN */
1319
1360
  CDN = "CDN",
1361
+ /** ATM */
1320
1362
  ATM = "ATM"
1321
1363
  }
1322
1364
 
1323
1365
  /** Known values of {@link EnforceCertificateNameCheckEnabledState} that the service accepts. */
1324
1366
  export declare enum KnownEnforceCertificateNameCheckEnabledState {
1367
+ /** Enabled */
1325
1368
  Enabled = "Enabled",
1369
+ /** Disabled */
1326
1370
  Disabled = "Disabled"
1327
1371
  }
1328
1372
 
1329
1373
  /** Known values of {@link FrontDoorCertificateSource} that the service accepts. */
1330
1374
  export declare enum KnownFrontDoorCertificateSource {
1375
+ /** AzureKeyVault */
1331
1376
  AzureKeyVault = "AzureKeyVault",
1377
+ /** FrontDoor */
1332
1378
  FrontDoor = "FrontDoor"
1333
1379
  }
1334
1380
 
1335
1381
  /** Known values of {@link FrontDoorCertificateType} that the service accepts. */
1336
1382
  export declare enum KnownFrontDoorCertificateType {
1383
+ /** Dedicated */
1337
1384
  Dedicated = "Dedicated"
1338
1385
  }
1339
1386
 
1340
1387
  /** Known values of {@link FrontDoorEnabledState} that the service accepts. */
1341
1388
  export declare enum KnownFrontDoorEnabledState {
1389
+ /** Enabled */
1342
1390
  Enabled = "Enabled",
1391
+ /** Disabled */
1343
1392
  Disabled = "Disabled"
1344
1393
  }
1345
1394
 
1346
1395
  /** Known values of {@link FrontDoorForwardingProtocol} that the service accepts. */
1347
1396
  export declare enum KnownFrontDoorForwardingProtocol {
1397
+ /** HttpOnly */
1348
1398
  HttpOnly = "HttpOnly",
1399
+ /** HttpsOnly */
1349
1400
  HttpsOnly = "HttpsOnly",
1401
+ /** MatchRequest */
1350
1402
  MatchRequest = "MatchRequest"
1351
1403
  }
1352
1404
 
1353
1405
  /** Known values of {@link FrontDoorHealthProbeMethod} that the service accepts. */
1354
1406
  export declare enum KnownFrontDoorHealthProbeMethod {
1407
+ /** GET */
1355
1408
  GET = "GET",
1409
+ /** Head */
1356
1410
  Head = "HEAD"
1357
1411
  }
1358
1412
 
1359
1413
  /** Known values of {@link FrontDoorProtocol} that the service accepts. */
1360
1414
  export declare enum KnownFrontDoorProtocol {
1415
+ /** Http */
1361
1416
  Http = "Http",
1417
+ /** Https */
1362
1418
  Https = "Https"
1363
1419
  }
1364
1420
 
1365
1421
  /** Known values of {@link FrontDoorQuery} that the service accepts. */
1366
1422
  export declare enum KnownFrontDoorQuery {
1423
+ /** StripNone */
1367
1424
  StripNone = "StripNone",
1425
+ /** StripAll */
1368
1426
  StripAll = "StripAll",
1427
+ /** StripOnly */
1369
1428
  StripOnly = "StripOnly",
1429
+ /** StripAllExcept */
1370
1430
  StripAllExcept = "StripAllExcept"
1371
1431
  }
1372
1432
 
1373
1433
  /** Known values of {@link FrontDoorRedirectProtocol} that the service accepts. */
1374
1434
  export declare enum KnownFrontDoorRedirectProtocol {
1435
+ /** HttpOnly */
1375
1436
  HttpOnly = "HttpOnly",
1437
+ /** HttpsOnly */
1376
1438
  HttpsOnly = "HttpsOnly",
1439
+ /** MatchRequest */
1377
1440
  MatchRequest = "MatchRequest"
1378
1441
  }
1379
1442
 
1380
1443
  /** Known values of {@link FrontDoorRedirectType} that the service accepts. */
1381
1444
  export declare enum KnownFrontDoorRedirectType {
1445
+ /** Moved */
1382
1446
  Moved = "Moved",
1447
+ /** Found */
1383
1448
  Found = "Found",
1449
+ /** TemporaryRedirect */
1384
1450
  TemporaryRedirect = "TemporaryRedirect",
1451
+ /** PermanentRedirect */
1385
1452
  PermanentRedirect = "PermanentRedirect"
1386
1453
  }
1387
1454
 
1388
1455
  /** Known values of {@link FrontDoorResourceState} that the service accepts. */
1389
1456
  export declare enum KnownFrontDoorResourceState {
1457
+ /** Creating */
1390
1458
  Creating = "Creating",
1459
+ /** Enabling */
1391
1460
  Enabling = "Enabling",
1461
+ /** Enabled */
1392
1462
  Enabled = "Enabled",
1463
+ /** Disabling */
1393
1464
  Disabling = "Disabling",
1465
+ /** Disabled */
1394
1466
  Disabled = "Disabled",
1467
+ /** Deleting */
1395
1468
  Deleting = "Deleting"
1396
1469
  }
1397
1470
 
1398
1471
  /** Known values of {@link FrontDoorTlsProtocolType} that the service accepts. */
1399
1472
  export declare enum KnownFrontDoorTlsProtocolType {
1473
+ /** ServerNameIndication */
1400
1474
  ServerNameIndication = "ServerNameIndication"
1401
1475
  }
1402
1476
 
1403
1477
  /** Known values of {@link HeaderActionType} that the service accepts. */
1404
1478
  export declare enum KnownHeaderActionType {
1479
+ /** Append */
1405
1480
  Append = "Append",
1481
+ /** Delete */
1406
1482
  Delete = "Delete",
1483
+ /** Overwrite */
1407
1484
  Overwrite = "Overwrite"
1408
1485
  }
1409
1486
 
1410
1487
  /** Known values of {@link HealthProbeEnabled} that the service accepts. */
1411
1488
  export declare enum KnownHealthProbeEnabled {
1489
+ /** Enabled */
1412
1490
  Enabled = "Enabled",
1491
+ /** Disabled */
1413
1492
  Disabled = "Disabled"
1414
1493
  }
1415
1494
 
1416
1495
  /** Known values of {@link LatencyScorecardAggregationInterval} that the service accepts. */
1417
1496
  export declare enum KnownLatencyScorecardAggregationInterval {
1497
+ /** Daily */
1418
1498
  Daily = "Daily",
1499
+ /** Weekly */
1419
1500
  Weekly = "Weekly",
1501
+ /** Monthly */
1420
1502
  Monthly = "Monthly"
1421
1503
  }
1422
1504
 
1423
1505
  /** Known values of {@link ManagedRuleEnabledState} that the service accepts. */
1424
1506
  export declare enum KnownManagedRuleEnabledState {
1507
+ /** Disabled */
1425
1508
  Disabled = "Disabled",
1509
+ /** Enabled */
1426
1510
  Enabled = "Enabled"
1427
1511
  }
1428
1512
 
1429
1513
  /** Known values of {@link ManagedRuleExclusionMatchVariable} that the service accepts. */
1430
1514
  export declare enum KnownManagedRuleExclusionMatchVariable {
1515
+ /** RequestHeaderNames */
1431
1516
  RequestHeaderNames = "RequestHeaderNames",
1517
+ /** RequestCookieNames */
1432
1518
  RequestCookieNames = "RequestCookieNames",
1519
+ /** QueryStringArgNames */
1433
1520
  QueryStringArgNames = "QueryStringArgNames",
1521
+ /** RequestBodyPostArgNames */
1434
1522
  RequestBodyPostArgNames = "RequestBodyPostArgNames",
1523
+ /** RequestBodyJsonArgNames */
1435
1524
  RequestBodyJsonArgNames = "RequestBodyJsonArgNames"
1436
1525
  }
1437
1526
 
1438
1527
  /** Known values of {@link ManagedRuleExclusionSelectorMatchOperator} that the service accepts. */
1439
1528
  export declare enum KnownManagedRuleExclusionSelectorMatchOperator {
1529
+ /** Equals */
1440
1530
  Equals = "Equals",
1531
+ /** Contains */
1441
1532
  Contains = "Contains",
1533
+ /** StartsWith */
1442
1534
  StartsWith = "StartsWith",
1535
+ /** EndsWith */
1443
1536
  EndsWith = "EndsWith",
1537
+ /** EqualsAny */
1444
1538
  EqualsAny = "EqualsAny"
1445
1539
  }
1446
1540
 
1447
1541
  /** Known values of {@link ManagedRuleSetActionType} that the service accepts. */
1448
1542
  export declare enum KnownManagedRuleSetActionType {
1543
+ /** Block */
1449
1544
  Block = "Block",
1545
+ /** Log */
1450
1546
  Log = "Log",
1547
+ /** Redirect */
1451
1548
  Redirect = "Redirect"
1452
1549
  }
1453
1550
 
1454
1551
  /** Known values of {@link MatchProcessingBehavior} that the service accepts. */
1455
1552
  export declare enum KnownMatchProcessingBehavior {
1553
+ /** Continue */
1456
1554
  Continue = "Continue",
1555
+ /** Stop */
1457
1556
  Stop = "Stop"
1458
1557
  }
1459
1558
 
1460
1559
  /** Known values of {@link MatchVariable} that the service accepts. */
1461
1560
  export declare enum KnownMatchVariable {
1561
+ /** RemoteAddr */
1462
1562
  RemoteAddr = "RemoteAddr",
1563
+ /** RequestMethod */
1463
1564
  RequestMethod = "RequestMethod",
1565
+ /** QueryString */
1464
1566
  QueryString = "QueryString",
1567
+ /** PostArgs */
1465
1568
  PostArgs = "PostArgs",
1569
+ /** RequestUri */
1466
1570
  RequestUri = "RequestUri",
1571
+ /** RequestHeader */
1467
1572
  RequestHeader = "RequestHeader",
1573
+ /** RequestBody */
1468
1574
  RequestBody = "RequestBody",
1575
+ /** Cookies */
1469
1576
  Cookies = "Cookies",
1577
+ /** SocketAddr */
1470
1578
  SocketAddr = "SocketAddr"
1471
1579
  }
1472
1580
 
1473
1581
  /** Known values of {@link MinimumTLSVersion} that the service accepts. */
1474
1582
  export declare enum KnownMinimumTLSVersion {
1583
+ /** One0 */
1475
1584
  One0 = "1.0",
1585
+ /** One2 */
1476
1586
  One2 = "1.2"
1477
1587
  }
1478
1588
 
1479
1589
  /** Known values of {@link NetworkExperimentResourceState} that the service accepts. */
1480
1590
  export declare enum KnownNetworkExperimentResourceState {
1591
+ /** Creating */
1481
1592
  Creating = "Creating",
1593
+ /** Enabling */
1482
1594
  Enabling = "Enabling",
1595
+ /** Enabled */
1483
1596
  Enabled = "Enabled",
1597
+ /** Disabling */
1484
1598
  Disabling = "Disabling",
1599
+ /** Disabled */
1485
1600
  Disabled = "Disabled",
1601
+ /** Deleting */
1486
1602
  Deleting = "Deleting"
1487
1603
  }
1488
1604
 
1489
1605
  /** Known values of {@link NetworkOperationStatus} that the service accepts. */
1490
1606
  export declare enum KnownNetworkOperationStatus {
1607
+ /** InProgress */
1491
1608
  InProgress = "InProgress",
1609
+ /** Succeeded */
1492
1610
  Succeeded = "Succeeded",
1611
+ /** Failed */
1493
1612
  Failed = "Failed"
1494
1613
  }
1495
1614
 
1496
1615
  /** Known values of {@link Operator} that the service accepts. */
1497
1616
  export declare enum KnownOperator {
1617
+ /** Any */
1498
1618
  Any = "Any",
1619
+ /** IPMatch */
1499
1620
  IPMatch = "IPMatch",
1621
+ /** GeoMatch */
1500
1622
  GeoMatch = "GeoMatch",
1623
+ /** Equal */
1501
1624
  Equal = "Equal",
1625
+ /** Contains */
1502
1626
  Contains = "Contains",
1627
+ /** LessThan */
1503
1628
  LessThan = "LessThan",
1629
+ /** GreaterThan */
1504
1630
  GreaterThan = "GreaterThan",
1631
+ /** LessThanOrEqual */
1505
1632
  LessThanOrEqual = "LessThanOrEqual",
1633
+ /** GreaterThanOrEqual */
1506
1634
  GreaterThanOrEqual = "GreaterThanOrEqual",
1635
+ /** BeginsWith */
1507
1636
  BeginsWith = "BeginsWith",
1637
+ /** EndsWith */
1508
1638
  EndsWith = "EndsWith",
1639
+ /** RegEx */
1509
1640
  RegEx = "RegEx"
1510
1641
  }
1511
1642
 
1512
1643
  /** Known values of {@link PolicyEnabledState} that the service accepts. */
1513
1644
  export declare enum KnownPolicyEnabledState {
1645
+ /** Disabled */
1514
1646
  Disabled = "Disabled",
1647
+ /** Enabled */
1515
1648
  Enabled = "Enabled"
1516
1649
  }
1517
1650
 
1518
1651
  /** Known values of {@link PolicyMode} that the service accepts. */
1519
1652
  export declare enum KnownPolicyMode {
1653
+ /** Prevention */
1520
1654
  Prevention = "Prevention",
1655
+ /** Detection */
1521
1656
  Detection = "Detection"
1522
1657
  }
1523
1658
 
1524
1659
  /** Known values of {@link PolicyRequestBodyCheck} that the service accepts. */
1525
1660
  export declare enum KnownPolicyRequestBodyCheck {
1661
+ /** Disabled */
1526
1662
  Disabled = "Disabled",
1663
+ /** Enabled */
1527
1664
  Enabled = "Enabled"
1528
1665
  }
1529
1666
 
1530
1667
  /** Known values of {@link PolicyResourceState} that the service accepts. */
1531
1668
  export declare enum KnownPolicyResourceState {
1669
+ /** Creating */
1532
1670
  Creating = "Creating",
1671
+ /** Enabling */
1533
1672
  Enabling = "Enabling",
1673
+ /** Enabled */
1534
1674
  Enabled = "Enabled",
1675
+ /** Disabling */
1535
1676
  Disabling = "Disabling",
1677
+ /** Disabled */
1536
1678
  Disabled = "Disabled",
1679
+ /** Deleting */
1537
1680
  Deleting = "Deleting"
1538
1681
  }
1539
1682
 
1540
1683
  /** Known values of {@link PrivateEndpointStatus} that the service accepts. */
1541
1684
  export declare enum KnownPrivateEndpointStatus {
1685
+ /** Pending */
1542
1686
  Pending = "Pending",
1687
+ /** Approved */
1543
1688
  Approved = "Approved",
1689
+ /** Rejected */
1544
1690
  Rejected = "Rejected",
1691
+ /** Disconnected */
1545
1692
  Disconnected = "Disconnected",
1693
+ /** Timeout */
1546
1694
  Timeout = "Timeout"
1547
1695
  }
1548
1696
 
1549
1697
  /** Known values of {@link RoutingRuleEnabledState} that the service accepts. */
1550
1698
  export declare enum KnownRoutingRuleEnabledState {
1699
+ /** Enabled */
1551
1700
  Enabled = "Enabled",
1701
+ /** Disabled */
1552
1702
  Disabled = "Disabled"
1553
1703
  }
1554
1704
 
1555
1705
  /** Known values of {@link RulesEngineMatchVariable} that the service accepts. */
1556
1706
  export declare enum KnownRulesEngineMatchVariable {
1707
+ /** IsMobile */
1557
1708
  IsMobile = "IsMobile",
1709
+ /** RemoteAddr */
1558
1710
  RemoteAddr = "RemoteAddr",
1711
+ /** RequestMethod */
1559
1712
  RequestMethod = "RequestMethod",
1713
+ /** QueryString */
1560
1714
  QueryString = "QueryString",
1715
+ /** PostArgs */
1561
1716
  PostArgs = "PostArgs",
1717
+ /** RequestUri */
1562
1718
  RequestUri = "RequestUri",
1719
+ /** RequestPath */
1563
1720
  RequestPath = "RequestPath",
1721
+ /** RequestFilename */
1564
1722
  RequestFilename = "RequestFilename",
1723
+ /** RequestFilenameExtension */
1565
1724
  RequestFilenameExtension = "RequestFilenameExtension",
1725
+ /** RequestHeader */
1566
1726
  RequestHeader = "RequestHeader",
1727
+ /** RequestBody */
1567
1728
  RequestBody = "RequestBody",
1729
+ /** RequestScheme */
1568
1730
  RequestScheme = "RequestScheme"
1569
1731
  }
1570
1732
 
1571
1733
  /** Known values of {@link RulesEngineOperator} that the service accepts. */
1572
1734
  export declare enum KnownRulesEngineOperator {
1735
+ /** Any */
1573
1736
  Any = "Any",
1737
+ /** IPMatch */
1574
1738
  IPMatch = "IPMatch",
1739
+ /** GeoMatch */
1575
1740
  GeoMatch = "GeoMatch",
1741
+ /** Equal */
1576
1742
  Equal = "Equal",
1743
+ /** Contains */
1577
1744
  Contains = "Contains",
1745
+ /** LessThan */
1578
1746
  LessThan = "LessThan",
1747
+ /** GreaterThan */
1579
1748
  GreaterThan = "GreaterThan",
1749
+ /** LessThanOrEqual */
1580
1750
  LessThanOrEqual = "LessThanOrEqual",
1751
+ /** GreaterThanOrEqual */
1581
1752
  GreaterThanOrEqual = "GreaterThanOrEqual",
1753
+ /** BeginsWith */
1582
1754
  BeginsWith = "BeginsWith",
1755
+ /** EndsWith */
1583
1756
  EndsWith = "EndsWith"
1584
1757
  }
1585
1758
 
1586
1759
  /** Known values of {@link RuleType} that the service accepts. */
1587
1760
  export declare enum KnownRuleType {
1761
+ /** MatchRule */
1588
1762
  MatchRule = "MatchRule",
1763
+ /** RateLimitRule */
1589
1764
  RateLimitRule = "RateLimitRule"
1590
1765
  }
1591
1766
 
1592
1767
  /** Known values of {@link SessionAffinityEnabledState} that the service accepts. */
1593
1768
  export declare enum KnownSessionAffinityEnabledState {
1769
+ /** Enabled */
1594
1770
  Enabled = "Enabled",
1771
+ /** Disabled */
1595
1772
  Disabled = "Disabled"
1596
1773
  }
1597
1774
 
1598
1775
  /** Known values of {@link SkuName} that the service accepts. */
1599
1776
  export declare enum KnownSkuName {
1777
+ /** ClassicAzureFrontDoor */
1600
1778
  ClassicAzureFrontDoor = "Classic_AzureFrontDoor",
1779
+ /** StandardAzureFrontDoor */
1601
1780
  StandardAzureFrontDoor = "Standard_AzureFrontDoor",
1781
+ /** PremiumAzureFrontDoor */
1602
1782
  PremiumAzureFrontDoor = "Premium_AzureFrontDoor"
1603
1783
  }
1604
1784
 
1605
1785
  /** Known values of {@link State} that the service accepts. */
1606
1786
  export declare enum KnownState {
1787
+ /** Enabled */
1607
1788
  Enabled = "Enabled",
1789
+ /** Disabled */
1608
1790
  Disabled = "Disabled"
1609
1791
  }
1610
1792
 
1611
1793
  /** Known values of {@link TimeseriesAggregationInterval} that the service accepts. */
1612
1794
  export declare enum KnownTimeseriesAggregationInterval {
1795
+ /** Hourly */
1613
1796
  Hourly = "Hourly",
1797
+ /** Daily */
1614
1798
  Daily = "Daily"
1615
1799
  }
1616
1800
 
1617
1801
  /** Known values of {@link TimeseriesType} that the service accepts. */
1618
1802
  export declare enum KnownTimeseriesType {
1803
+ /** MeasurementCounts */
1619
1804
  MeasurementCounts = "MeasurementCounts",
1805
+ /** LatencyP50 */
1620
1806
  LatencyP50 = "LatencyP50",
1807
+ /** LatencyP75 */
1621
1808
  LatencyP75 = "LatencyP75",
1809
+ /** LatencyP95 */
1622
1810
  LatencyP95 = "LatencyP95"
1623
1811
  }
1624
1812
 
1625
1813
  /** Known values of {@link Transform} that the service accepts. */
1626
1814
  export declare enum KnownTransform {
1815
+ /** Lowercase */
1627
1816
  Lowercase = "Lowercase",
1817
+ /** Uppercase */
1628
1818
  Uppercase = "Uppercase",
1819
+ /** Trim */
1629
1820
  Trim = "Trim",
1821
+ /** UrlDecode */
1630
1822
  UrlDecode = "UrlDecode",
1823
+ /** UrlEncode */
1631
1824
  UrlEncode = "UrlEncode",
1825
+ /** RemoveNulls */
1632
1826
  RemoveNulls = "RemoveNulls"
1633
1827
  }
1634
1828
 
1635
1829
  /** Known values of {@link TransformType} that the service accepts. */
1636
1830
  export declare enum KnownTransformType {
1831
+ /** Lowercase */
1637
1832
  Lowercase = "Lowercase",
1833
+ /** Uppercase */
1638
1834
  Uppercase = "Uppercase",
1835
+ /** Trim */
1639
1836
  Trim = "Trim",
1837
+ /** UrlDecode */
1640
1838
  UrlDecode = "UrlDecode",
1839
+ /** UrlEncode */
1641
1840
  UrlEncode = "UrlEncode",
1841
+ /** RemoveNulls */
1642
1842
  RemoveNulls = "RemoveNulls"
1643
1843
  }
1644
1844
 
@@ -1697,7 +1897,7 @@ export declare interface LatencyMetric {
1697
1897
  }
1698
1898
 
1699
1899
  /** Defines the LatencyScorecard */
1700
- export declare type LatencyScorecard = Resource & {
1900
+ export declare interface LatencyScorecard extends Resource {
1701
1901
  /**
1702
1902
  * The unique identifier of the Latency Scorecard
1703
1903
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1740,7 +1940,7 @@ export declare type LatencyScorecard = Resource & {
1740
1940
  readonly country?: string;
1741
1941
  /** The latency metrics of the Latency Scorecard */
1742
1942
  latencyMetrics?: LatencyMetric[];
1743
- };
1943
+ }
1744
1944
 
1745
1945
  /**
1746
1946
  * Defines values for LatencyScorecardAggregationInterval. \
@@ -1765,7 +1965,7 @@ export declare interface LoadBalancingSettingsListResult {
1765
1965
  }
1766
1966
 
1767
1967
  /** Load balancing settings for a backend pool */
1768
- export declare type LoadBalancingSettingsModel = SubResource & {
1968
+ export declare interface LoadBalancingSettingsModel extends SubResource {
1769
1969
  /** Resource name. */
1770
1970
  name?: string;
1771
1971
  /**
@@ -1784,16 +1984,16 @@ export declare type LoadBalancingSettingsModel = SubResource & {
1784
1984
  * NOTE: This property will not be serialized. It can only be populated by the server.
1785
1985
  */
1786
1986
  readonly resourceState?: FrontDoorResourceState;
1787
- };
1987
+ }
1788
1988
 
1789
1989
  /** The JSON object that contains the properties required to create load balancing settings */
1790
- export declare type LoadBalancingSettingsProperties = LoadBalancingSettingsUpdateParameters & {
1990
+ export declare interface LoadBalancingSettingsProperties extends LoadBalancingSettingsUpdateParameters {
1791
1991
  /**
1792
1992
  * Resource status.
1793
1993
  * NOTE: This property will not be serialized. It can only be populated by the server.
1794
1994
  */
1795
1995
  readonly resourceState?: FrontDoorResourceState;
1796
- };
1996
+ }
1797
1997
 
1798
1998
  /** Round-Robin load balancing settings for a backend pool */
1799
1999
  export declare interface LoadBalancingSettingsUpdateParameters {
@@ -1942,7 +2142,7 @@ export declare interface ManagedRuleSet {
1942
2142
  export declare type ManagedRuleSetActionType = string;
1943
2143
 
1944
2144
  /** Describes the a managed rule set definition. */
1945
- export declare type ManagedRuleSetDefinition = Resource & {
2145
+ export declare interface ManagedRuleSetDefinition extends Resource {
1946
2146
  /**
1947
2147
  * Provisioning state of the managed rule set.
1948
2148
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1968,7 +2168,7 @@ export declare type ManagedRuleSetDefinition = Resource & {
1968
2168
  * NOTE: This property will not be serialized. It can only be populated by the server.
1969
2169
  */
1970
2170
  readonly ruleGroups?: ManagedRuleGroupDefinition[];
1971
- };
2171
+ }
1972
2172
 
1973
2173
  /** List of managed rule set definitions available for use in a policy. */
1974
2174
  export declare interface ManagedRuleSetDefinitionList {
@@ -2389,7 +2589,7 @@ export declare interface PolicySettings {
2389
2589
  }
2390
2590
 
2391
2591
  /** Defines the properties of a preconfigured endpoint */
2392
- export declare type PreconfiguredEndpoint = Resource & {
2592
+ export declare interface PreconfiguredEndpoint extends Resource {
2393
2593
  /** The description of the endpoint */
2394
2594
  description?: string;
2395
2595
  /** The endpoint that is preconfigured */
@@ -2398,7 +2598,7 @@ export declare type PreconfiguredEndpoint = Resource & {
2398
2598
  endpointType?: EndpointType;
2399
2599
  /** The preconfigured endpoint backend */
2400
2600
  backend?: string;
2401
- };
2601
+ }
2402
2602
 
2403
2603
  /** Defines a list of preconfigured endpoints. */
2404
2604
  export declare interface PreconfiguredEndpointList {
@@ -2450,7 +2650,7 @@ export declare type PreconfiguredEndpointsListResponse = PreconfiguredEndpointLi
2450
2650
  export declare type PrivateEndpointStatus = string;
2451
2651
 
2452
2652
  /** Defines an Network Experiment Profile and lists of Experiments */
2453
- export declare type Profile = Resource & {
2653
+ export declare interface Profile extends Resource {
2454
2654
  /** Gets a unique read-only string that changes whenever the resource is updated. */
2455
2655
  etag?: string;
2456
2656
  /**
@@ -2460,7 +2660,7 @@ export declare type Profile = Resource & {
2460
2660
  readonly resourceState?: NetworkExperimentResourceState;
2461
2661
  /** The state of the Experiment */
2462
2662
  enabledState?: State;
2463
- };
2663
+ }
2464
2664
 
2465
2665
  /** Defines a list of Profiles. It contains a list of Profile objects and a URL link to get the next set of results. */
2466
2666
  export declare interface ProfileList {
@@ -2490,7 +2690,7 @@ export declare interface PurgeParameters {
2490
2690
  }
2491
2691
 
2492
2692
  /** Describes Redirect Route. */
2493
- export declare type RedirectConfiguration = RouteConfiguration & {
2693
+ export declare interface RedirectConfiguration extends RouteConfiguration {
2494
2694
  /** Polymorphic discriminator, which specifies the different types this object can be */
2495
2695
  odataType: "#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration";
2496
2696
  /** The redirect type the rule will use when redirecting traffic. */
@@ -2505,7 +2705,7 @@ export declare type RedirectConfiguration = RouteConfiguration & {
2505
2705
  customFragment?: string;
2506
2706
  /** The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in <key>=<value> format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &. */
2507
2707
  customQueryString?: string;
2508
- };
2708
+ }
2509
2709
 
2510
2710
  /** Interface representing a Reports. */
2511
2711
  export declare interface Reports {
@@ -2591,7 +2791,7 @@ export declare interface RouteConfiguration {
2591
2791
  export declare type RouteConfigurationUnion = RouteConfiguration | ForwardingConfiguration | RedirectConfiguration;
2592
2792
 
2593
2793
  /** A routing rule represents a specification for traffic to treat and where to send it, along with health probe information. */
2594
- export declare type RoutingRule = SubResource & {
2794
+ export declare interface RoutingRule extends SubResource {
2595
2795
  /** Resource name. */
2596
2796
  name?: string;
2597
2797
  /**
@@ -2618,7 +2818,7 @@ export declare type RoutingRule = SubResource & {
2618
2818
  * NOTE: This property will not be serialized. It can only be populated by the server.
2619
2819
  */
2620
2820
  readonly resourceState?: FrontDoorResourceState;
2621
- };
2821
+ }
2622
2822
 
2623
2823
  /**
2624
2824
  * Defines values for RoutingRuleEnabledState. \
@@ -2648,13 +2848,13 @@ export declare interface RoutingRuleListResult {
2648
2848
  }
2649
2849
 
2650
2850
  /** The JSON object that contains the properties required to create a routing rule. */
2651
- export declare type RoutingRuleProperties = RoutingRuleUpdateParameters & {
2851
+ export declare interface RoutingRuleProperties extends RoutingRuleUpdateParameters {
2652
2852
  /**
2653
2853
  * Resource status.
2654
2854
  * NOTE: This property will not be serialized. It can only be populated by the server.
2655
2855
  */
2656
2856
  readonly resourceState?: FrontDoorResourceState;
2657
- };
2857
+ }
2658
2858
 
2659
2859
  /** Routing rules to apply to an endpoint */
2660
2860
  export declare interface RoutingRuleUpdateParameters {
@@ -2783,13 +2983,13 @@ export declare type RulesEngineMatchVariable = string;
2783
2983
  export declare type RulesEngineOperator = string;
2784
2984
 
2785
2985
  /** The JSON object that contains the properties required to create a Rules Engine Configuration. */
2786
- export declare type RulesEngineProperties = RulesEngineUpdateParameters & {
2986
+ export declare interface RulesEngineProperties extends RulesEngineUpdateParameters {
2787
2987
  /**
2788
2988
  * Resource status.
2789
2989
  * NOTE: This property will not be serialized. It can only be populated by the server.
2790
2990
  */
2791
2991
  readonly resourceState?: FrontDoorResourceState;
2792
- };
2992
+ }
2793
2993
 
2794
2994
  /** Contains a list of match conditions, and an action on how to modify the request/response. If multiple rules match, the actions from one rule that conflict with a previous rule overwrite for a singular action, or append in the case of headers manipulation. */
2795
2995
  export declare interface RulesEngineRule {
@@ -2974,7 +3174,7 @@ export declare interface TagsObject {
2974
3174
  }
2975
3175
 
2976
3176
  /** Defines the Timeseries */
2977
- export declare type Timeseries = Resource & {
3177
+ export declare interface Timeseries extends Resource {
2978
3178
  /** The endpoint associated with the Timeseries data point */
2979
3179
  endpoint?: string;
2980
3180
  /** The start DateTime of the Timeseries in UTC */
@@ -2989,7 +3189,7 @@ export declare type Timeseries = Resource & {
2989
3189
  country?: string;
2990
3190
  /** The set of data points for the timeseries */
2991
3191
  timeseriesData?: TimeseriesDataPoint[];
2992
- };
3192
+ }
2993
3193
 
2994
3194
  /**
2995
3195
  * Defines values for TimeseriesAggregationInterval. \
@@ -3075,7 +3275,7 @@ export declare interface ValidateCustomDomainOutput {
3075
3275
  }
3076
3276
 
3077
3277
  /** Defines web application firewall policy. */
3078
- export declare type WebApplicationFirewallPolicy = Resource & {
3278
+ export declare interface WebApplicationFirewallPolicy extends Resource {
3079
3279
  /** Gets a unique read-only string that changes whenever the resource is updated. */
3080
3280
  etag?: string;
3081
3281
  /** The pricing tier of web application firewall policy. Defaults to Classic_AzureFrontDoor if not specified. */
@@ -3111,7 +3311,7 @@ export declare type WebApplicationFirewallPolicy = Resource & {
3111
3311
  * NOTE: This property will not be serialized. It can only be populated by the server.
3112
3312
  */
3113
3313
  readonly resourceState?: PolicyResourceState;
3114
- };
3314
+ }
3115
3315
 
3116
3316
  /** Defines a list of WebApplicationFirewallPolicies. It contains a list of WebApplicationFirewallPolicy objects and a URL link to get the next set of results. */
3117
3317
  export declare interface WebApplicationFirewallPolicyList {