@azure/arm-frontdoor 5.0.2-alpha.20221128.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 (61) 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
@@ -800,7 +800,7 @@ export interface BackendPoolListResult {
800
800
  }
801
801
 
802
802
  /** Defines an Network Experiment Profile and lists of Experiments */
803
- export type Profile = Resource & {
803
+ export interface Profile extends Resource {
804
804
  /** Gets a unique read-only string that changes whenever the resource is updated. */
805
805
  etag?: string;
806
806
  /**
@@ -810,10 +810,10 @@ export type Profile = Resource & {
810
810
  readonly resourceState?: NetworkExperimentResourceState;
811
811
  /** The state of the Experiment */
812
812
  enabledState?: State;
813
- };
813
+ }
814
814
 
815
815
  /** Defines the properties of a preconfigured endpoint */
816
- export type PreconfiguredEndpoint = Resource & {
816
+ export interface PreconfiguredEndpoint extends Resource {
817
817
  /** The description of the endpoint */
818
818
  description?: string;
819
819
  /** The endpoint that is preconfigured */
@@ -822,10 +822,10 @@ export type PreconfiguredEndpoint = Resource & {
822
822
  endpointType?: EndpointType;
823
823
  /** The preconfigured endpoint backend */
824
824
  backend?: string;
825
- };
825
+ }
826
826
 
827
827
  /** Defines the properties of an Experiment */
828
- export type Experiment = Resource & {
828
+ export interface Experiment extends Resource {
829
829
  /** The description of the details or intents of the Experiment */
830
830
  description?: string;
831
831
  /** The endpoint A of an experiment */
@@ -849,10 +849,10 @@ export type Experiment = Resource & {
849
849
  * NOTE: This property will not be serialized. It can only be populated by the server.
850
850
  */
851
851
  readonly scriptFileUri?: string;
852
- };
852
+ }
853
853
 
854
854
  /** Defines the LatencyScorecard */
855
- export type LatencyScorecard = Resource & {
855
+ export interface LatencyScorecard extends Resource {
856
856
  /**
857
857
  * The unique identifier of the Latency Scorecard
858
858
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -895,10 +895,10 @@ export type LatencyScorecard = Resource & {
895
895
  readonly country?: string;
896
896
  /** The latency metrics of the Latency Scorecard */
897
897
  latencyMetrics?: LatencyMetric[];
898
- };
898
+ }
899
899
 
900
900
  /** Defines the Timeseries */
901
- export type Timeseries = Resource & {
901
+ export interface Timeseries extends Resource {
902
902
  /** The endpoint associated with the Timeseries data point */
903
903
  endpoint?: string;
904
904
  /** The start DateTime of the Timeseries in UTC */
@@ -913,10 +913,10 @@ export type Timeseries = Resource & {
913
913
  country?: string;
914
914
  /** The set of data points for the timeseries */
915
915
  timeseriesData?: TimeseriesDataPoint[];
916
- };
916
+ }
917
917
 
918
918
  /** Front Door represents a collection of backend endpoints to route traffic to along with rules that specify how traffic is sent there. */
919
- export type FrontDoor = Resource & {
919
+ export interface FrontDoor extends Resource {
920
920
  /** A friendly name for the frontDoor */
921
921
  friendlyName?: string;
922
922
  /** Routing rules associated with this Front Door. */
@@ -958,10 +958,10 @@ export type FrontDoor = Resource & {
958
958
  * NOTE: This property will not be serialized. It can only be populated by the server.
959
959
  */
960
960
  readonly rulesEngines?: RulesEngine[];
961
- };
961
+ }
962
962
 
963
963
  /** Defines web application firewall policy. */
964
- export type WebApplicationFirewallPolicy = Resource & {
964
+ export interface WebApplicationFirewallPolicy extends Resource {
965
965
  /** Gets a unique read-only string that changes whenever the resource is updated. */
966
966
  etag?: string;
967
967
  /** The pricing tier of web application firewall policy. Defaults to Classic_AzureFrontDoor if not specified. */
@@ -997,10 +997,10 @@ export type WebApplicationFirewallPolicy = Resource & {
997
997
  * NOTE: This property will not be serialized. It can only be populated by the server.
998
998
  */
999
999
  readonly resourceState?: PolicyResourceState;
1000
- };
1000
+ }
1001
1001
 
1002
1002
  /** Describes the a managed rule set definition. */
1003
- export type ManagedRuleSetDefinition = Resource & {
1003
+ export interface ManagedRuleSetDefinition extends Resource {
1004
1004
  /**
1005
1005
  * Provisioning state of the managed rule set.
1006
1006
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1026,19 +1026,19 @@ export type ManagedRuleSetDefinition = Resource & {
1026
1026
  * NOTE: This property will not be serialized. It can only be populated by the server.
1027
1027
  */
1028
1028
  readonly ruleGroups?: ManagedRuleGroupDefinition[];
1029
- };
1029
+ }
1030
1030
 
1031
1031
  /** The JSON object that contains the properties required to create a Rules Engine Configuration. */
1032
- export type RulesEngineProperties = RulesEngineUpdateParameters & {
1032
+ export interface RulesEngineProperties extends RulesEngineUpdateParameters {
1033
1033
  /**
1034
1034
  * Resource status.
1035
1035
  * NOTE: This property will not be serialized. It can only be populated by the server.
1036
1036
  */
1037
1037
  readonly resourceState?: FrontDoorResourceState;
1038
- };
1038
+ }
1039
1039
 
1040
1040
  /** Describes Forwarding Route. */
1041
- export type ForwardingConfiguration = RouteConfiguration & {
1041
+ export interface ForwardingConfiguration extends RouteConfiguration {
1042
1042
  /** Polymorphic discriminator, which specifies the different types this object can be */
1043
1043
  odataType: "#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration";
1044
1044
  /** A custom path used to rewrite resource paths matched by this rule. Leave empty to use incoming path. */
@@ -1049,10 +1049,10 @@ export type ForwardingConfiguration = RouteConfiguration & {
1049
1049
  cacheConfiguration?: CacheConfiguration;
1050
1050
  /** A reference to the BackendPool which this rule routes to. */
1051
1051
  backendPool?: SubResource;
1052
- };
1052
+ }
1053
1053
 
1054
1054
  /** Describes Redirect Route. */
1055
- export type RedirectConfiguration = RouteConfiguration & {
1055
+ export interface RedirectConfiguration extends RouteConfiguration {
1056
1056
  /** Polymorphic discriminator, which specifies the different types this object can be */
1057
1057
  odataType: "#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration";
1058
1058
  /** The redirect type the rule will use when redirecting traffic. */
@@ -1067,10 +1067,10 @@ export type RedirectConfiguration = RouteConfiguration & {
1067
1067
  customFragment?: string;
1068
1068
  /** 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 &. */
1069
1069
  customQueryString?: string;
1070
- };
1070
+ }
1071
1071
 
1072
1072
  /** The JSON object that contains the properties required to create an endpoint. */
1073
- export type FrontDoorProperties = FrontDoorUpdateParameters & {
1073
+ export interface FrontDoorProperties extends FrontDoorUpdateParameters {
1074
1074
  /**
1075
1075
  * Resource status of the Front Door.
1076
1076
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1096,19 +1096,19 @@ export type FrontDoorProperties = FrontDoorUpdateParameters & {
1096
1096
  * NOTE: This property will not be serialized. It can only be populated by the server.
1097
1097
  */
1098
1098
  readonly rulesEngines?: RulesEngine[];
1099
- };
1099
+ }
1100
1100
 
1101
1101
  /** The JSON object that contains the properties required to create a routing rule. */
1102
- export type RoutingRuleProperties = RoutingRuleUpdateParameters & {
1102
+ export interface RoutingRuleProperties extends RoutingRuleUpdateParameters {
1103
1103
  /**
1104
1104
  * Resource status.
1105
1105
  * NOTE: This property will not be serialized. It can only be populated by the server.
1106
1106
  */
1107
1107
  readonly resourceState?: FrontDoorResourceState;
1108
- };
1108
+ }
1109
1109
 
1110
1110
  /** A routing rule represents a specification for traffic to treat and where to send it, along with health probe information. */
1111
- export type RoutingRule = SubResource & {
1111
+ export interface RoutingRule extends SubResource {
1112
1112
  /** Resource name. */
1113
1113
  name?: string;
1114
1114
  /**
@@ -1135,10 +1135,10 @@ export type RoutingRule = SubResource & {
1135
1135
  * NOTE: This property will not be serialized. It can only be populated by the server.
1136
1136
  */
1137
1137
  readonly resourceState?: FrontDoorResourceState;
1138
- };
1138
+ }
1139
1139
 
1140
1140
  /** Load balancing settings for a backend pool */
1141
- export type LoadBalancingSettingsModel = SubResource & {
1141
+ export interface LoadBalancingSettingsModel extends SubResource {
1142
1142
  /** Resource name. */
1143
1143
  name?: string;
1144
1144
  /**
@@ -1157,10 +1157,10 @@ export type LoadBalancingSettingsModel = SubResource & {
1157
1157
  * NOTE: This property will not be serialized. It can only be populated by the server.
1158
1158
  */
1159
1159
  readonly resourceState?: FrontDoorResourceState;
1160
- };
1160
+ }
1161
1161
 
1162
1162
  /** Load balancing settings for a backend pool */
1163
- export type HealthProbeSettingsModel = SubResource & {
1163
+ export interface HealthProbeSettingsModel extends SubResource {
1164
1164
  /** Resource name. */
1165
1165
  name?: string;
1166
1166
  /**
@@ -1183,10 +1183,10 @@ export type HealthProbeSettingsModel = SubResource & {
1183
1183
  * NOTE: This property will not be serialized. It can only be populated by the server.
1184
1184
  */
1185
1185
  readonly resourceState?: FrontDoorResourceState;
1186
- };
1186
+ }
1187
1187
 
1188
1188
  /** A backend pool is a collection of backends that can be routed to. */
1189
- export type BackendPool = SubResource & {
1189
+ export interface BackendPool extends SubResource {
1190
1190
  /** Resource name. */
1191
1191
  name?: string;
1192
1192
  /**
@@ -1205,10 +1205,10 @@ export type BackendPool = SubResource & {
1205
1205
  * NOTE: This property will not be serialized. It can only be populated by the server.
1206
1206
  */
1207
1207
  readonly resourceState?: FrontDoorResourceState;
1208
- };
1208
+ }
1209
1209
 
1210
1210
  /** A frontend endpoint used for routing. */
1211
- export type FrontendEndpoint = SubResource & {
1211
+ export interface FrontendEndpoint extends SubResource {
1212
1212
  /** Resource name. */
1213
1213
  name?: string;
1214
1214
  /**
@@ -1244,37 +1244,40 @@ export type FrontendEndpoint = SubResource & {
1244
1244
  * NOTE: This property will not be serialized. It can only be populated by the server.
1245
1245
  */
1246
1246
  readonly customHttpsConfiguration?: CustomHttpsConfiguration;
1247
- };
1247
+ }
1248
1248
 
1249
1249
  /** The JSON object that contains the properties required to create load balancing settings */
1250
- export type LoadBalancingSettingsProperties = LoadBalancingSettingsUpdateParameters & {
1250
+ export interface LoadBalancingSettingsProperties
1251
+ extends LoadBalancingSettingsUpdateParameters {
1251
1252
  /**
1252
1253
  * Resource status.
1253
1254
  * NOTE: This property will not be serialized. It can only be populated by the server.
1254
1255
  */
1255
1256
  readonly resourceState?: FrontDoorResourceState;
1256
- };
1257
+ }
1257
1258
 
1258
1259
  /** The JSON object that contains the properties required to create a health probe settings. */
1259
- export type HealthProbeSettingsProperties = HealthProbeSettingsUpdateParameters & {
1260
+ export interface HealthProbeSettingsProperties
1261
+ extends HealthProbeSettingsUpdateParameters {
1260
1262
  /**
1261
1263
  * Resource status.
1262
1264
  * NOTE: This property will not be serialized. It can only be populated by the server.
1263
1265
  */
1264
1266
  readonly resourceState?: FrontDoorResourceState;
1265
- };
1267
+ }
1266
1268
 
1267
1269
  /** The JSON object that contains the properties required to create a Backend Pool. */
1268
- export type BackendPoolProperties = BackendPoolUpdateParameters & {
1270
+ export interface BackendPoolProperties extends BackendPoolUpdateParameters {
1269
1271
  /**
1270
1272
  * Resource status.
1271
1273
  * NOTE: This property will not be serialized. It can only be populated by the server.
1272
1274
  */
1273
1275
  readonly resourceState?: FrontDoorResourceState;
1274
- };
1276
+ }
1275
1277
 
1276
1278
  /** The JSON object that contains the properties required to create a frontend endpoint. */
1277
- export type FrontendEndpointProperties = FrontendEndpointUpdateParameters & {
1279
+ export interface FrontendEndpointProperties
1280
+ extends FrontendEndpointUpdateParameters {
1278
1281
  /**
1279
1282
  * Resource status.
1280
1283
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1295,15 +1298,21 @@ export type FrontendEndpointProperties = FrontendEndpointUpdateParameters & {
1295
1298
  * NOTE: This property will not be serialized. It can only be populated by the server.
1296
1299
  */
1297
1300
  readonly customHttpsConfiguration?: CustomHttpsConfiguration;
1298
- };
1301
+ }
1299
1302
 
1300
1303
  /** Known values of {@link NetworkExperimentResourceState} that the service accepts. */
1301
1304
  export enum KnownNetworkExperimentResourceState {
1305
+ /** Creating */
1302
1306
  Creating = "Creating",
1307
+ /** Enabling */
1303
1308
  Enabling = "Enabling",
1309
+ /** Enabled */
1304
1310
  Enabled = "Enabled",
1311
+ /** Disabling */
1305
1312
  Disabling = "Disabling",
1313
+ /** Disabled */
1306
1314
  Disabled = "Disabled",
1315
+ /** Deleting */
1307
1316
  Deleting = "Deleting"
1308
1317
  }
1309
1318
 
@@ -1323,7 +1332,9 @@ export type NetworkExperimentResourceState = string;
1323
1332
 
1324
1333
  /** Known values of {@link State} that the service accepts. */
1325
1334
  export enum KnownState {
1335
+ /** Enabled */
1326
1336
  Enabled = "Enabled",
1337
+ /** Disabled */
1327
1338
  Disabled = "Disabled"
1328
1339
  }
1329
1340
 
@@ -1339,9 +1350,13 @@ export type State = string;
1339
1350
 
1340
1351
  /** Known values of {@link EndpointType} that the service accepts. */
1341
1352
  export enum KnownEndpointType {
1353
+ /** AFD */
1342
1354
  AFD = "AFD",
1355
+ /** AzureRegion */
1343
1356
  AzureRegion = "AzureRegion",
1357
+ /** CDN */
1344
1358
  CDN = "CDN",
1359
+ /** ATM */
1345
1360
  ATM = "ATM"
1346
1361
  }
1347
1362
 
@@ -1359,8 +1374,11 @@ export type EndpointType = string;
1359
1374
 
1360
1375
  /** Known values of {@link LatencyScorecardAggregationInterval} that the service accepts. */
1361
1376
  export enum KnownLatencyScorecardAggregationInterval {
1377
+ /** Daily */
1362
1378
  Daily = "Daily",
1379
+ /** Weekly */
1363
1380
  Weekly = "Weekly",
1381
+ /** Monthly */
1364
1382
  Monthly = "Monthly"
1365
1383
  }
1366
1384
 
@@ -1377,7 +1395,9 @@ export type LatencyScorecardAggregationInterval = string;
1377
1395
 
1378
1396
  /** Known values of {@link TimeseriesAggregationInterval} that the service accepts. */
1379
1397
  export enum KnownTimeseriesAggregationInterval {
1398
+ /** Hourly */
1380
1399
  Hourly = "Hourly",
1400
+ /** Daily */
1381
1401
  Daily = "Daily"
1382
1402
  }
1383
1403
 
@@ -1393,9 +1413,13 @@ export type TimeseriesAggregationInterval = string;
1393
1413
 
1394
1414
  /** Known values of {@link TimeseriesType} that the service accepts. */
1395
1415
  export enum KnownTimeseriesType {
1416
+ /** MeasurementCounts */
1396
1417
  MeasurementCounts = "MeasurementCounts",
1418
+ /** LatencyP50 */
1397
1419
  LatencyP50 = "LatencyP50",
1420
+ /** LatencyP75 */
1398
1421
  LatencyP75 = "LatencyP75",
1422
+ /** LatencyP95 */
1399
1423
  LatencyP95 = "LatencyP95"
1400
1424
  }
1401
1425
 
@@ -1413,7 +1437,9 @@ export type TimeseriesType = string;
1413
1437
 
1414
1438
  /** Known values of {@link AggregationInterval} that the service accepts. */
1415
1439
  export enum KnownAggregationInterval {
1440
+ /** Hourly */
1416
1441
  Hourly = "Hourly",
1442
+ /** Daily */
1417
1443
  Daily = "Daily"
1418
1444
  }
1419
1445
 
@@ -1429,7 +1455,9 @@ export type AggregationInterval = string;
1429
1455
 
1430
1456
  /** Known values of {@link Availability} that the service accepts. */
1431
1457
  export enum KnownAvailability {
1458
+ /** Available */
1432
1459
  Available = "Available",
1460
+ /** Unavailable */
1433
1461
  Unavailable = "Unavailable"
1434
1462
  }
1435
1463
 
@@ -1445,11 +1473,17 @@ export type Availability = string;
1445
1473
 
1446
1474
  /** Known values of {@link FrontDoorResourceState} that the service accepts. */
1447
1475
  export enum KnownFrontDoorResourceState {
1476
+ /** Creating */
1448
1477
  Creating = "Creating",
1478
+ /** Enabling */
1449
1479
  Enabling = "Enabling",
1480
+ /** Enabled */
1450
1481
  Enabled = "Enabled",
1482
+ /** Disabling */
1451
1483
  Disabling = "Disabling",
1484
+ /** Disabled */
1452
1485
  Disabled = "Disabled",
1486
+ /** Deleting */
1453
1487
  Deleting = "Deleting"
1454
1488
  }
1455
1489
 
@@ -1469,8 +1503,11 @@ export type FrontDoorResourceState = string;
1469
1503
 
1470
1504
  /** Known values of {@link HeaderActionType} that the service accepts. */
1471
1505
  export enum KnownHeaderActionType {
1506
+ /** Append */
1472
1507
  Append = "Append",
1508
+ /** Delete */
1473
1509
  Delete = "Delete",
1510
+ /** Overwrite */
1474
1511
  Overwrite = "Overwrite"
1475
1512
  }
1476
1513
 
@@ -1487,17 +1524,29 @@ export type HeaderActionType = string;
1487
1524
 
1488
1525
  /** Known values of {@link RulesEngineMatchVariable} that the service accepts. */
1489
1526
  export enum KnownRulesEngineMatchVariable {
1527
+ /** IsMobile */
1490
1528
  IsMobile = "IsMobile",
1529
+ /** RemoteAddr */
1491
1530
  RemoteAddr = "RemoteAddr",
1531
+ /** RequestMethod */
1492
1532
  RequestMethod = "RequestMethod",
1533
+ /** QueryString */
1493
1534
  QueryString = "QueryString",
1535
+ /** PostArgs */
1494
1536
  PostArgs = "PostArgs",
1537
+ /** RequestUri */
1495
1538
  RequestUri = "RequestUri",
1539
+ /** RequestPath */
1496
1540
  RequestPath = "RequestPath",
1541
+ /** RequestFilename */
1497
1542
  RequestFilename = "RequestFilename",
1543
+ /** RequestFilenameExtension */
1498
1544
  RequestFilenameExtension = "RequestFilenameExtension",
1545
+ /** RequestHeader */
1499
1546
  RequestHeader = "RequestHeader",
1547
+ /** RequestBody */
1500
1548
  RequestBody = "RequestBody",
1549
+ /** RequestScheme */
1501
1550
  RequestScheme = "RequestScheme"
1502
1551
  }
1503
1552
 
@@ -1523,16 +1572,27 @@ export type RulesEngineMatchVariable = string;
1523
1572
 
1524
1573
  /** Known values of {@link RulesEngineOperator} that the service accepts. */
1525
1574
  export enum KnownRulesEngineOperator {
1575
+ /** Any */
1526
1576
  Any = "Any",
1577
+ /** IPMatch */
1527
1578
  IPMatch = "IPMatch",
1579
+ /** GeoMatch */
1528
1580
  GeoMatch = "GeoMatch",
1581
+ /** Equal */
1529
1582
  Equal = "Equal",
1583
+ /** Contains */
1530
1584
  Contains = "Contains",
1585
+ /** LessThan */
1531
1586
  LessThan = "LessThan",
1587
+ /** GreaterThan */
1532
1588
  GreaterThan = "GreaterThan",
1589
+ /** LessThanOrEqual */
1533
1590
  LessThanOrEqual = "LessThanOrEqual",
1591
+ /** GreaterThanOrEqual */
1534
1592
  GreaterThanOrEqual = "GreaterThanOrEqual",
1593
+ /** BeginsWith */
1535
1594
  BeginsWith = "BeginsWith",
1595
+ /** EndsWith */
1536
1596
  EndsWith = "EndsWith"
1537
1597
  }
1538
1598
 
@@ -1557,11 +1617,17 @@ export type RulesEngineOperator = string;
1557
1617
 
1558
1618
  /** Known values of {@link Transform} that the service accepts. */
1559
1619
  export enum KnownTransform {
1620
+ /** Lowercase */
1560
1621
  Lowercase = "Lowercase",
1622
+ /** Uppercase */
1561
1623
  Uppercase = "Uppercase",
1624
+ /** Trim */
1562
1625
  Trim = "Trim",
1626
+ /** UrlDecode */
1563
1627
  UrlDecode = "UrlDecode",
1628
+ /** UrlEncode */
1564
1629
  UrlEncode = "UrlEncode",
1630
+ /** RemoveNulls */
1565
1631
  RemoveNulls = "RemoveNulls"
1566
1632
  }
1567
1633
 
@@ -1581,7 +1647,9 @@ export type Transform = string;
1581
1647
 
1582
1648
  /** Known values of {@link MatchProcessingBehavior} that the service accepts. */
1583
1649
  export enum KnownMatchProcessingBehavior {
1650
+ /** Continue */
1584
1651
  Continue = "Continue",
1652
+ /** Stop */
1585
1653
  Stop = "Stop"
1586
1654
  }
1587
1655
 
@@ -1597,7 +1665,9 @@ export type MatchProcessingBehavior = string;
1597
1665
 
1598
1666
  /** Known values of {@link FrontDoorProtocol} that the service accepts. */
1599
1667
  export enum KnownFrontDoorProtocol {
1668
+ /** Http */
1600
1669
  Http = "Http",
1670
+ /** Https */
1601
1671
  Https = "Https"
1602
1672
  }
1603
1673
 
@@ -1613,7 +1683,9 @@ export type FrontDoorProtocol = string;
1613
1683
 
1614
1684
  /** Known values of {@link RoutingRuleEnabledState} that the service accepts. */
1615
1685
  export enum KnownRoutingRuleEnabledState {
1686
+ /** Enabled */
1616
1687
  Enabled = "Enabled",
1688
+ /** Disabled */
1617
1689
  Disabled = "Disabled"
1618
1690
  }
1619
1691
 
@@ -1629,7 +1701,9 @@ export type RoutingRuleEnabledState = string;
1629
1701
 
1630
1702
  /** Known values of {@link FrontDoorHealthProbeMethod} that the service accepts. */
1631
1703
  export enum KnownFrontDoorHealthProbeMethod {
1704
+ /** GET */
1632
1705
  GET = "GET",
1706
+ /** Head */
1633
1707
  Head = "HEAD"
1634
1708
  }
1635
1709
 
@@ -1645,7 +1719,9 @@ export type FrontDoorHealthProbeMethod = string;
1645
1719
 
1646
1720
  /** Known values of {@link HealthProbeEnabled} that the service accepts. */
1647
1721
  export enum KnownHealthProbeEnabled {
1722
+ /** Enabled */
1648
1723
  Enabled = "Enabled",
1724
+ /** Disabled */
1649
1725
  Disabled = "Disabled"
1650
1726
  }
1651
1727
 
@@ -1661,10 +1737,15 @@ export type HealthProbeEnabled = string;
1661
1737
 
1662
1738
  /** Known values of {@link PrivateEndpointStatus} that the service accepts. */
1663
1739
  export enum KnownPrivateEndpointStatus {
1740
+ /** Pending */
1664
1741
  Pending = "Pending",
1742
+ /** Approved */
1665
1743
  Approved = "Approved",
1744
+ /** Rejected */
1666
1745
  Rejected = "Rejected",
1746
+ /** Disconnected */
1667
1747
  Disconnected = "Disconnected",
1748
+ /** Timeout */
1668
1749
  Timeout = "Timeout"
1669
1750
  }
1670
1751
 
@@ -1683,7 +1764,9 @@ export type PrivateEndpointStatus = string;
1683
1764
 
1684
1765
  /** Known values of {@link BackendEnabledState} that the service accepts. */
1685
1766
  export enum KnownBackendEnabledState {
1767
+ /** Enabled */
1686
1768
  Enabled = "Enabled",
1769
+ /** Disabled */
1687
1770
  Disabled = "Disabled"
1688
1771
  }
1689
1772
 
@@ -1699,10 +1782,15 @@ export type BackendEnabledState = string;
1699
1782
 
1700
1783
  /** Known values of {@link CustomHttpsProvisioningState} that the service accepts. */
1701
1784
  export enum KnownCustomHttpsProvisioningState {
1785
+ /** Enabling */
1702
1786
  Enabling = "Enabling",
1787
+ /** Enabled */
1703
1788
  Enabled = "Enabled",
1789
+ /** Disabling */
1704
1790
  Disabling = "Disabling",
1791
+ /** Disabled */
1705
1792
  Disabled = "Disabled",
1793
+ /** Failed */
1706
1794
  Failed = "Failed"
1707
1795
  }
1708
1796
 
@@ -1721,15 +1809,25 @@ export type CustomHttpsProvisioningState = string;
1721
1809
 
1722
1810
  /** Known values of {@link CustomHttpsProvisioningSubstate} that the service accepts. */
1723
1811
  export enum KnownCustomHttpsProvisioningSubstate {
1812
+ /** SubmittingDomainControlValidationRequest */
1724
1813
  SubmittingDomainControlValidationRequest = "SubmittingDomainControlValidationRequest",
1814
+ /** PendingDomainControlValidationREquestApproval */
1725
1815
  PendingDomainControlValidationREquestApproval = "PendingDomainControlValidationREquestApproval",
1816
+ /** DomainControlValidationRequestApproved */
1726
1817
  DomainControlValidationRequestApproved = "DomainControlValidationRequestApproved",
1818
+ /** DomainControlValidationRequestRejected */
1727
1819
  DomainControlValidationRequestRejected = "DomainControlValidationRequestRejected",
1820
+ /** DomainControlValidationRequestTimedOut */
1728
1821
  DomainControlValidationRequestTimedOut = "DomainControlValidationRequestTimedOut",
1822
+ /** IssuingCertificate */
1729
1823
  IssuingCertificate = "IssuingCertificate",
1824
+ /** DeployingCertificate */
1730
1825
  DeployingCertificate = "DeployingCertificate",
1826
+ /** CertificateDeployed */
1731
1827
  CertificateDeployed = "CertificateDeployed",
1828
+ /** DeletingCertificate */
1732
1829
  DeletingCertificate = "DeletingCertificate",
1830
+ /** CertificateDeleted */
1733
1831
  CertificateDeleted = "CertificateDeleted"
1734
1832
  }
1735
1833
 
@@ -1753,7 +1851,9 @@ export type CustomHttpsProvisioningSubstate = string;
1753
1851
 
1754
1852
  /** Known values of {@link FrontDoorCertificateSource} that the service accepts. */
1755
1853
  export enum KnownFrontDoorCertificateSource {
1854
+ /** AzureKeyVault */
1756
1855
  AzureKeyVault = "AzureKeyVault",
1856
+ /** FrontDoor */
1757
1857
  FrontDoor = "FrontDoor"
1758
1858
  }
1759
1859
 
@@ -1769,6 +1869,7 @@ export type FrontDoorCertificateSource = string;
1769
1869
 
1770
1870
  /** Known values of {@link FrontDoorTlsProtocolType} that the service accepts. */
1771
1871
  export enum KnownFrontDoorTlsProtocolType {
1872
+ /** ServerNameIndication */
1772
1873
  ServerNameIndication = "ServerNameIndication"
1773
1874
  }
1774
1875
 
@@ -1783,7 +1884,9 @@ export type FrontDoorTlsProtocolType = string;
1783
1884
 
1784
1885
  /** Known values of {@link MinimumTLSVersion} that the service accepts. */
1785
1886
  export enum KnownMinimumTLSVersion {
1887
+ /** One0 */
1786
1888
  One0 = "1.0",
1889
+ /** One2 */
1787
1890
  One2 = "1.2"
1788
1891
  }
1789
1892
 
@@ -1799,6 +1902,7 @@ export type MinimumTLSVersion = string;
1799
1902
 
1800
1903
  /** Known values of {@link FrontDoorCertificateType} that the service accepts. */
1801
1904
  export enum KnownFrontDoorCertificateType {
1905
+ /** Dedicated */
1802
1906
  Dedicated = "Dedicated"
1803
1907
  }
1804
1908
 
@@ -1813,7 +1917,9 @@ export type FrontDoorCertificateType = string;
1813
1917
 
1814
1918
  /** Known values of {@link SessionAffinityEnabledState} that the service accepts. */
1815
1919
  export enum KnownSessionAffinityEnabledState {
1920
+ /** Enabled */
1816
1921
  Enabled = "Enabled",
1922
+ /** Disabled */
1817
1923
  Disabled = "Disabled"
1818
1924
  }
1819
1925
 
@@ -1829,7 +1935,9 @@ export type SessionAffinityEnabledState = string;
1829
1935
 
1830
1936
  /** Known values of {@link EnforceCertificateNameCheckEnabledState} that the service accepts. */
1831
1937
  export enum KnownEnforceCertificateNameCheckEnabledState {
1938
+ /** Enabled */
1832
1939
  Enabled = "Enabled",
1940
+ /** Disabled */
1833
1941
  Disabled = "Disabled"
1834
1942
  }
1835
1943
 
@@ -1845,7 +1953,9 @@ export type EnforceCertificateNameCheckEnabledState = string;
1845
1953
 
1846
1954
  /** Known values of {@link FrontDoorEnabledState} that the service accepts. */
1847
1955
  export enum KnownFrontDoorEnabledState {
1956
+ /** Enabled */
1848
1957
  Enabled = "Enabled",
1958
+ /** Disabled */
1849
1959
  Disabled = "Disabled"
1850
1960
  }
1851
1961
 
@@ -1861,7 +1971,9 @@ export type FrontDoorEnabledState = string;
1861
1971
 
1862
1972
  /** Known values of {@link PolicyEnabledState} that the service accepts. */
1863
1973
  export enum KnownPolicyEnabledState {
1974
+ /** Disabled */
1864
1975
  Disabled = "Disabled",
1976
+ /** Enabled */
1865
1977
  Enabled = "Enabled"
1866
1978
  }
1867
1979
 
@@ -1877,7 +1989,9 @@ export type PolicyEnabledState = string;
1877
1989
 
1878
1990
  /** Known values of {@link PolicyMode} that the service accepts. */
1879
1991
  export enum KnownPolicyMode {
1992
+ /** Prevention */
1880
1993
  Prevention = "Prevention",
1994
+ /** Detection */
1881
1995
  Detection = "Detection"
1882
1996
  }
1883
1997
 
@@ -1893,7 +2007,9 @@ export type PolicyMode = string;
1893
2007
 
1894
2008
  /** Known values of {@link PolicyRequestBodyCheck} that the service accepts. */
1895
2009
  export enum KnownPolicyRequestBodyCheck {
2010
+ /** Disabled */
1896
2011
  Disabled = "Disabled",
2012
+ /** Enabled */
1897
2013
  Enabled = "Enabled"
1898
2014
  }
1899
2015
 
@@ -1909,7 +2025,9 @@ export type PolicyRequestBodyCheck = string;
1909
2025
 
1910
2026
  /** Known values of {@link CustomRuleEnabledState} that the service accepts. */
1911
2027
  export enum KnownCustomRuleEnabledState {
2028
+ /** Disabled */
1912
2029
  Disabled = "Disabled",
2030
+ /** Enabled */
1913
2031
  Enabled = "Enabled"
1914
2032
  }
1915
2033
 
@@ -1925,7 +2043,9 @@ export type CustomRuleEnabledState = string;
1925
2043
 
1926
2044
  /** Known values of {@link RuleType} that the service accepts. */
1927
2045
  export enum KnownRuleType {
2046
+ /** MatchRule */
1928
2047
  MatchRule = "MatchRule",
2048
+ /** RateLimitRule */
1929
2049
  RateLimitRule = "RateLimitRule"
1930
2050
  }
1931
2051
 
@@ -1941,14 +2061,23 @@ export type RuleType = string;
1941
2061
 
1942
2062
  /** Known values of {@link MatchVariable} that the service accepts. */
1943
2063
  export enum KnownMatchVariable {
2064
+ /** RemoteAddr */
1944
2065
  RemoteAddr = "RemoteAddr",
2066
+ /** RequestMethod */
1945
2067
  RequestMethod = "RequestMethod",
2068
+ /** QueryString */
1946
2069
  QueryString = "QueryString",
2070
+ /** PostArgs */
1947
2071
  PostArgs = "PostArgs",
2072
+ /** RequestUri */
1948
2073
  RequestUri = "RequestUri",
2074
+ /** RequestHeader */
1949
2075
  RequestHeader = "RequestHeader",
2076
+ /** RequestBody */
1950
2077
  RequestBody = "RequestBody",
2078
+ /** Cookies */
1951
2079
  Cookies = "Cookies",
2080
+ /** SocketAddr */
1952
2081
  SocketAddr = "SocketAddr"
1953
2082
  }
1954
2083
 
@@ -1971,17 +2100,29 @@ export type MatchVariable = string;
1971
2100
 
1972
2101
  /** Known values of {@link Operator} that the service accepts. */
1973
2102
  export enum KnownOperator {
2103
+ /** Any */
1974
2104
  Any = "Any",
2105
+ /** IPMatch */
1975
2106
  IPMatch = "IPMatch",
2107
+ /** GeoMatch */
1976
2108
  GeoMatch = "GeoMatch",
2109
+ /** Equal */
1977
2110
  Equal = "Equal",
2111
+ /** Contains */
1978
2112
  Contains = "Contains",
2113
+ /** LessThan */
1979
2114
  LessThan = "LessThan",
2115
+ /** GreaterThan */
1980
2116
  GreaterThan = "GreaterThan",
2117
+ /** LessThanOrEqual */
1981
2118
  LessThanOrEqual = "LessThanOrEqual",
2119
+ /** GreaterThanOrEqual */
1982
2120
  GreaterThanOrEqual = "GreaterThanOrEqual",
2121
+ /** BeginsWith */
1983
2122
  BeginsWith = "BeginsWith",
2123
+ /** EndsWith */
1984
2124
  EndsWith = "EndsWith",
2125
+ /** RegEx */
1985
2126
  RegEx = "RegEx"
1986
2127
  }
1987
2128
 
@@ -2007,11 +2148,17 @@ export type Operator = string;
2007
2148
 
2008
2149
  /** Known values of {@link TransformType} that the service accepts. */
2009
2150
  export enum KnownTransformType {
2151
+ /** Lowercase */
2010
2152
  Lowercase = "Lowercase",
2153
+ /** Uppercase */
2011
2154
  Uppercase = "Uppercase",
2155
+ /** Trim */
2012
2156
  Trim = "Trim",
2157
+ /** UrlDecode */
2013
2158
  UrlDecode = "UrlDecode",
2159
+ /** UrlEncode */
2014
2160
  UrlEncode = "UrlEncode",
2161
+ /** RemoveNulls */
2015
2162
  RemoveNulls = "RemoveNulls"
2016
2163
  }
2017
2164
 
@@ -2031,9 +2178,13 @@ export type TransformType = string;
2031
2178
 
2032
2179
  /** Known values of {@link ActionType} that the service accepts. */
2033
2180
  export enum KnownActionType {
2181
+ /** Allow */
2034
2182
  Allow = "Allow",
2183
+ /** Block */
2035
2184
  Block = "Block",
2185
+ /** Log */
2036
2186
  Log = "Log",
2187
+ /** Redirect */
2037
2188
  Redirect = "Redirect"
2038
2189
  }
2039
2190
 
@@ -2051,8 +2202,11 @@ export type ActionType = string;
2051
2202
 
2052
2203
  /** Known values of {@link ManagedRuleSetActionType} that the service accepts. */
2053
2204
  export enum KnownManagedRuleSetActionType {
2205
+ /** Block */
2054
2206
  Block = "Block",
2207
+ /** Log */
2055
2208
  Log = "Log",
2209
+ /** Redirect */
2056
2210
  Redirect = "Redirect"
2057
2211
  }
2058
2212
 
@@ -2069,10 +2223,15 @@ export type ManagedRuleSetActionType = string;
2069
2223
 
2070
2224
  /** Known values of {@link ManagedRuleExclusionMatchVariable} that the service accepts. */
2071
2225
  export enum KnownManagedRuleExclusionMatchVariable {
2226
+ /** RequestHeaderNames */
2072
2227
  RequestHeaderNames = "RequestHeaderNames",
2228
+ /** RequestCookieNames */
2073
2229
  RequestCookieNames = "RequestCookieNames",
2230
+ /** QueryStringArgNames */
2074
2231
  QueryStringArgNames = "QueryStringArgNames",
2232
+ /** RequestBodyPostArgNames */
2075
2233
  RequestBodyPostArgNames = "RequestBodyPostArgNames",
2234
+ /** RequestBodyJsonArgNames */
2076
2235
  RequestBodyJsonArgNames = "RequestBodyJsonArgNames"
2077
2236
  }
2078
2237
 
@@ -2091,10 +2250,15 @@ export type ManagedRuleExclusionMatchVariable = string;
2091
2250
 
2092
2251
  /** Known values of {@link ManagedRuleExclusionSelectorMatchOperator} that the service accepts. */
2093
2252
  export enum KnownManagedRuleExclusionSelectorMatchOperator {
2253
+ /** Equals */
2094
2254
  Equals = "Equals",
2255
+ /** Contains */
2095
2256
  Contains = "Contains",
2257
+ /** StartsWith */
2096
2258
  StartsWith = "StartsWith",
2259
+ /** EndsWith */
2097
2260
  EndsWith = "EndsWith",
2261
+ /** EqualsAny */
2098
2262
  EqualsAny = "EqualsAny"
2099
2263
  }
2100
2264
 
@@ -2113,7 +2277,9 @@ export type ManagedRuleExclusionSelectorMatchOperator = string;
2113
2277
 
2114
2278
  /** Known values of {@link ManagedRuleEnabledState} that the service accepts. */
2115
2279
  export enum KnownManagedRuleEnabledState {
2280
+ /** Disabled */
2116
2281
  Disabled = "Disabled",
2282
+ /** Enabled */
2117
2283
  Enabled = "Enabled"
2118
2284
  }
2119
2285
 
@@ -2129,11 +2295,17 @@ export type ManagedRuleEnabledState = string;
2129
2295
 
2130
2296
  /** Known values of {@link PolicyResourceState} that the service accepts. */
2131
2297
  export enum KnownPolicyResourceState {
2298
+ /** Creating */
2132
2299
  Creating = "Creating",
2300
+ /** Enabling */
2133
2301
  Enabling = "Enabling",
2302
+ /** Enabled */
2134
2303
  Enabled = "Enabled",
2304
+ /** Disabling */
2135
2305
  Disabling = "Disabling",
2306
+ /** Disabled */
2136
2307
  Disabled = "Disabled",
2308
+ /** Deleting */
2137
2309
  Deleting = "Deleting"
2138
2310
  }
2139
2311
 
@@ -2153,8 +2325,11 @@ export type PolicyResourceState = string;
2153
2325
 
2154
2326
  /** Known values of {@link SkuName} that the service accepts. */
2155
2327
  export enum KnownSkuName {
2328
+ /** ClassicAzureFrontDoor */
2156
2329
  ClassicAzureFrontDoor = "Classic_AzureFrontDoor",
2330
+ /** StandardAzureFrontDoor */
2157
2331
  StandardAzureFrontDoor = "Standard_AzureFrontDoor",
2332
+ /** PremiumAzureFrontDoor */
2158
2333
  PremiumAzureFrontDoor = "Premium_AzureFrontDoor"
2159
2334
  }
2160
2335
 
@@ -2171,8 +2346,11 @@ export type SkuName = string;
2171
2346
 
2172
2347
  /** Known values of {@link NetworkOperationStatus} that the service accepts. */
2173
2348
  export enum KnownNetworkOperationStatus {
2349
+ /** InProgress */
2174
2350
  InProgress = "InProgress",
2351
+ /** Succeeded */
2175
2352
  Succeeded = "Succeeded",
2353
+ /** Failed */
2176
2354
  Failed = "Failed"
2177
2355
  }
2178
2356
 
@@ -2189,8 +2367,11 @@ export type NetworkOperationStatus = string;
2189
2367
 
2190
2368
  /** Known values of {@link FrontDoorForwardingProtocol} that the service accepts. */
2191
2369
  export enum KnownFrontDoorForwardingProtocol {
2370
+ /** HttpOnly */
2192
2371
  HttpOnly = "HttpOnly",
2372
+ /** HttpsOnly */
2193
2373
  HttpsOnly = "HttpsOnly",
2374
+ /** MatchRequest */
2194
2375
  MatchRequest = "MatchRequest"
2195
2376
  }
2196
2377
 
@@ -2207,9 +2388,13 @@ export type FrontDoorForwardingProtocol = string;
2207
2388
 
2208
2389
  /** Known values of {@link FrontDoorQuery} that the service accepts. */
2209
2390
  export enum KnownFrontDoorQuery {
2391
+ /** StripNone */
2210
2392
  StripNone = "StripNone",
2393
+ /** StripAll */
2211
2394
  StripAll = "StripAll",
2395
+ /** StripOnly */
2212
2396
  StripOnly = "StripOnly",
2397
+ /** StripAllExcept */
2213
2398
  StripAllExcept = "StripAllExcept"
2214
2399
  }
2215
2400
 
@@ -2227,7 +2412,9 @@ export type FrontDoorQuery = string;
2227
2412
 
2228
2413
  /** Known values of {@link DynamicCompressionEnabled} that the service accepts. */
2229
2414
  export enum KnownDynamicCompressionEnabled {
2415
+ /** Enabled */
2230
2416
  Enabled = "Enabled",
2417
+ /** Disabled */
2231
2418
  Disabled = "Disabled"
2232
2419
  }
2233
2420
 
@@ -2243,9 +2430,13 @@ export type DynamicCompressionEnabled = string;
2243
2430
 
2244
2431
  /** Known values of {@link FrontDoorRedirectType} that the service accepts. */
2245
2432
  export enum KnownFrontDoorRedirectType {
2433
+ /** Moved */
2246
2434
  Moved = "Moved",
2435
+ /** Found */
2247
2436
  Found = "Found",
2437
+ /** TemporaryRedirect */
2248
2438
  TemporaryRedirect = "TemporaryRedirect",
2439
+ /** PermanentRedirect */
2249
2440
  PermanentRedirect = "PermanentRedirect"
2250
2441
  }
2251
2442
 
@@ -2263,8 +2454,11 @@ export type FrontDoorRedirectType = string;
2263
2454
 
2264
2455
  /** Known values of {@link FrontDoorRedirectProtocol} that the service accepts. */
2265
2456
  export enum KnownFrontDoorRedirectProtocol {
2457
+ /** HttpOnly */
2266
2458
  HttpOnly = "HttpOnly",
2459
+ /** HttpsOnly */
2267
2460
  HttpsOnly = "HttpsOnly",
2461
+ /** MatchRequest */
2268
2462
  MatchRequest = "MatchRequest"
2269
2463
  }
2270
2464