@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
@@ -729,7 +729,7 @@ export interface BackendPoolListResult {
729
729
  nextLink?: string;
730
730
  }
731
731
  /** Defines an Network Experiment Profile and lists of Experiments */
732
- export declare type Profile = Resource & {
732
+ export interface Profile extends Resource {
733
733
  /** Gets a unique read-only string that changes whenever the resource is updated. */
734
734
  etag?: string;
735
735
  /**
@@ -739,9 +739,9 @@ export declare type Profile = Resource & {
739
739
  readonly resourceState?: NetworkExperimentResourceState;
740
740
  /** The state of the Experiment */
741
741
  enabledState?: State;
742
- };
742
+ }
743
743
  /** Defines the properties of a preconfigured endpoint */
744
- export declare type PreconfiguredEndpoint = Resource & {
744
+ export interface PreconfiguredEndpoint extends Resource {
745
745
  /** The description of the endpoint */
746
746
  description?: string;
747
747
  /** The endpoint that is preconfigured */
@@ -750,9 +750,9 @@ export declare type PreconfiguredEndpoint = Resource & {
750
750
  endpointType?: EndpointType;
751
751
  /** The preconfigured endpoint backend */
752
752
  backend?: string;
753
- };
753
+ }
754
754
  /** Defines the properties of an Experiment */
755
- export declare type Experiment = Resource & {
755
+ export interface Experiment extends Resource {
756
756
  /** The description of the details or intents of the Experiment */
757
757
  description?: string;
758
758
  /** The endpoint A of an experiment */
@@ -776,9 +776,9 @@ export declare type Experiment = Resource & {
776
776
  * NOTE: This property will not be serialized. It can only be populated by the server.
777
777
  */
778
778
  readonly scriptFileUri?: string;
779
- };
779
+ }
780
780
  /** Defines the LatencyScorecard */
781
- export declare type LatencyScorecard = Resource & {
781
+ export interface LatencyScorecard extends Resource {
782
782
  /**
783
783
  * The unique identifier of the Latency Scorecard
784
784
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -821,9 +821,9 @@ export declare type LatencyScorecard = Resource & {
821
821
  readonly country?: string;
822
822
  /** The latency metrics of the Latency Scorecard */
823
823
  latencyMetrics?: LatencyMetric[];
824
- };
824
+ }
825
825
  /** Defines the Timeseries */
826
- export declare type Timeseries = Resource & {
826
+ export interface Timeseries extends Resource {
827
827
  /** The endpoint associated with the Timeseries data point */
828
828
  endpoint?: string;
829
829
  /** The start DateTime of the Timeseries in UTC */
@@ -838,9 +838,9 @@ export declare type Timeseries = Resource & {
838
838
  country?: string;
839
839
  /** The set of data points for the timeseries */
840
840
  timeseriesData?: TimeseriesDataPoint[];
841
- };
841
+ }
842
842
  /** Front Door represents a collection of backend endpoints to route traffic to along with rules that specify how traffic is sent there. */
843
- export declare type FrontDoor = Resource & {
843
+ export interface FrontDoor extends Resource {
844
844
  /** A friendly name for the frontDoor */
845
845
  friendlyName?: string;
846
846
  /** Routing rules associated with this Front Door. */
@@ -882,9 +882,9 @@ export declare type FrontDoor = Resource & {
882
882
  * NOTE: This property will not be serialized. It can only be populated by the server.
883
883
  */
884
884
  readonly rulesEngines?: RulesEngine[];
885
- };
885
+ }
886
886
  /** Defines web application firewall policy. */
887
- export declare type WebApplicationFirewallPolicy = Resource & {
887
+ export interface WebApplicationFirewallPolicy extends Resource {
888
888
  /** Gets a unique read-only string that changes whenever the resource is updated. */
889
889
  etag?: string;
890
890
  /** The pricing tier of web application firewall policy. Defaults to Classic_AzureFrontDoor if not specified. */
@@ -920,9 +920,9 @@ export declare type WebApplicationFirewallPolicy = Resource & {
920
920
  * NOTE: This property will not be serialized. It can only be populated by the server.
921
921
  */
922
922
  readonly resourceState?: PolicyResourceState;
923
- };
923
+ }
924
924
  /** Describes the a managed rule set definition. */
925
- export declare type ManagedRuleSetDefinition = Resource & {
925
+ export interface ManagedRuleSetDefinition extends Resource {
926
926
  /**
927
927
  * Provisioning state of the managed rule set.
928
928
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -948,17 +948,17 @@ export declare type ManagedRuleSetDefinition = Resource & {
948
948
  * NOTE: This property will not be serialized. It can only be populated by the server.
949
949
  */
950
950
  readonly ruleGroups?: ManagedRuleGroupDefinition[];
951
- };
951
+ }
952
952
  /** The JSON object that contains the properties required to create a Rules Engine Configuration. */
953
- export declare type RulesEngineProperties = RulesEngineUpdateParameters & {
953
+ export interface RulesEngineProperties extends RulesEngineUpdateParameters {
954
954
  /**
955
955
  * Resource status.
956
956
  * NOTE: This property will not be serialized. It can only be populated by the server.
957
957
  */
958
958
  readonly resourceState?: FrontDoorResourceState;
959
- };
959
+ }
960
960
  /** Describes Forwarding Route. */
961
- export declare type ForwardingConfiguration = RouteConfiguration & {
961
+ export interface ForwardingConfiguration extends RouteConfiguration {
962
962
  /** Polymorphic discriminator, which specifies the different types this object can be */
963
963
  odataType: "#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration";
964
964
  /** A custom path used to rewrite resource paths matched by this rule. Leave empty to use incoming path. */
@@ -969,9 +969,9 @@ export declare type ForwardingConfiguration = RouteConfiguration & {
969
969
  cacheConfiguration?: CacheConfiguration;
970
970
  /** A reference to the BackendPool which this rule routes to. */
971
971
  backendPool?: SubResource;
972
- };
972
+ }
973
973
  /** Describes Redirect Route. */
974
- export declare type RedirectConfiguration = RouteConfiguration & {
974
+ export interface RedirectConfiguration extends RouteConfiguration {
975
975
  /** Polymorphic discriminator, which specifies the different types this object can be */
976
976
  odataType: "#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration";
977
977
  /** The redirect type the rule will use when redirecting traffic. */
@@ -986,9 +986,9 @@ export declare type RedirectConfiguration = RouteConfiguration & {
986
986
  customFragment?: string;
987
987
  /** 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 &. */
988
988
  customQueryString?: string;
989
- };
989
+ }
990
990
  /** The JSON object that contains the properties required to create an endpoint. */
991
- export declare type FrontDoorProperties = FrontDoorUpdateParameters & {
991
+ export interface FrontDoorProperties extends FrontDoorUpdateParameters {
992
992
  /**
993
993
  * Resource status of the Front Door.
994
994
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1014,17 +1014,17 @@ export declare type FrontDoorProperties = FrontDoorUpdateParameters & {
1014
1014
  * NOTE: This property will not be serialized. It can only be populated by the server.
1015
1015
  */
1016
1016
  readonly rulesEngines?: RulesEngine[];
1017
- };
1017
+ }
1018
1018
  /** The JSON object that contains the properties required to create a routing rule. */
1019
- export declare type RoutingRuleProperties = RoutingRuleUpdateParameters & {
1019
+ export interface RoutingRuleProperties extends RoutingRuleUpdateParameters {
1020
1020
  /**
1021
1021
  * Resource status.
1022
1022
  * NOTE: This property will not be serialized. It can only be populated by the server.
1023
1023
  */
1024
1024
  readonly resourceState?: FrontDoorResourceState;
1025
- };
1025
+ }
1026
1026
  /** A routing rule represents a specification for traffic to treat and where to send it, along with health probe information. */
1027
- export declare type RoutingRule = SubResource & {
1027
+ export interface RoutingRule extends SubResource {
1028
1028
  /** Resource name. */
1029
1029
  name?: string;
1030
1030
  /**
@@ -1051,9 +1051,9 @@ export declare type RoutingRule = SubResource & {
1051
1051
  * NOTE: This property will not be serialized. It can only be populated by the server.
1052
1052
  */
1053
1053
  readonly resourceState?: FrontDoorResourceState;
1054
- };
1054
+ }
1055
1055
  /** Load balancing settings for a backend pool */
1056
- export declare type LoadBalancingSettingsModel = SubResource & {
1056
+ export interface LoadBalancingSettingsModel extends SubResource {
1057
1057
  /** Resource name. */
1058
1058
  name?: string;
1059
1059
  /**
@@ -1072,9 +1072,9 @@ export declare type LoadBalancingSettingsModel = SubResource & {
1072
1072
  * NOTE: This property will not be serialized. It can only be populated by the server.
1073
1073
  */
1074
1074
  readonly resourceState?: FrontDoorResourceState;
1075
- };
1075
+ }
1076
1076
  /** Load balancing settings for a backend pool */
1077
- export declare type HealthProbeSettingsModel = SubResource & {
1077
+ export interface HealthProbeSettingsModel extends SubResource {
1078
1078
  /** Resource name. */
1079
1079
  name?: string;
1080
1080
  /**
@@ -1097,9 +1097,9 @@ export declare type HealthProbeSettingsModel = SubResource & {
1097
1097
  * NOTE: This property will not be serialized. It can only be populated by the server.
1098
1098
  */
1099
1099
  readonly resourceState?: FrontDoorResourceState;
1100
- };
1100
+ }
1101
1101
  /** A backend pool is a collection of backends that can be routed to. */
1102
- export declare type BackendPool = SubResource & {
1102
+ export interface BackendPool extends SubResource {
1103
1103
  /** Resource name. */
1104
1104
  name?: string;
1105
1105
  /**
@@ -1118,9 +1118,9 @@ export declare type BackendPool = SubResource & {
1118
1118
  * NOTE: This property will not be serialized. It can only be populated by the server.
1119
1119
  */
1120
1120
  readonly resourceState?: FrontDoorResourceState;
1121
- };
1121
+ }
1122
1122
  /** A frontend endpoint used for routing. */
1123
- export declare type FrontendEndpoint = SubResource & {
1123
+ export interface FrontendEndpoint extends SubResource {
1124
1124
  /** Resource name. */
1125
1125
  name?: string;
1126
1126
  /**
@@ -1156,33 +1156,33 @@ export declare type FrontendEndpoint = SubResource & {
1156
1156
  * NOTE: This property will not be serialized. It can only be populated by the server.
1157
1157
  */
1158
1158
  readonly customHttpsConfiguration?: CustomHttpsConfiguration;
1159
- };
1159
+ }
1160
1160
  /** The JSON object that contains the properties required to create load balancing settings */
1161
- export declare type LoadBalancingSettingsProperties = LoadBalancingSettingsUpdateParameters & {
1161
+ export interface LoadBalancingSettingsProperties extends LoadBalancingSettingsUpdateParameters {
1162
1162
  /**
1163
1163
  * Resource status.
1164
1164
  * NOTE: This property will not be serialized. It can only be populated by the server.
1165
1165
  */
1166
1166
  readonly resourceState?: FrontDoorResourceState;
1167
- };
1167
+ }
1168
1168
  /** The JSON object that contains the properties required to create a health probe settings. */
1169
- export declare type HealthProbeSettingsProperties = HealthProbeSettingsUpdateParameters & {
1169
+ export interface HealthProbeSettingsProperties extends HealthProbeSettingsUpdateParameters {
1170
1170
  /**
1171
1171
  * Resource status.
1172
1172
  * NOTE: This property will not be serialized. It can only be populated by the server.
1173
1173
  */
1174
1174
  readonly resourceState?: FrontDoorResourceState;
1175
- };
1175
+ }
1176
1176
  /** The JSON object that contains the properties required to create a Backend Pool. */
1177
- export declare type BackendPoolProperties = BackendPoolUpdateParameters & {
1177
+ export interface BackendPoolProperties extends BackendPoolUpdateParameters {
1178
1178
  /**
1179
1179
  * Resource status.
1180
1180
  * NOTE: This property will not be serialized. It can only be populated by the server.
1181
1181
  */
1182
1182
  readonly resourceState?: FrontDoorResourceState;
1183
- };
1183
+ }
1184
1184
  /** The JSON object that contains the properties required to create a frontend endpoint. */
1185
- export declare type FrontendEndpointProperties = FrontendEndpointUpdateParameters & {
1185
+ export interface FrontendEndpointProperties extends FrontendEndpointUpdateParameters {
1186
1186
  /**
1187
1187
  * Resource status.
1188
1188
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1203,14 +1203,20 @@ export declare type FrontendEndpointProperties = FrontendEndpointUpdateParameter
1203
1203
  * NOTE: This property will not be serialized. It can only be populated by the server.
1204
1204
  */
1205
1205
  readonly customHttpsConfiguration?: CustomHttpsConfiguration;
1206
- };
1206
+ }
1207
1207
  /** Known values of {@link NetworkExperimentResourceState} that the service accepts. */
1208
1208
  export declare enum KnownNetworkExperimentResourceState {
1209
+ /** Creating */
1209
1210
  Creating = "Creating",
1211
+ /** Enabling */
1210
1212
  Enabling = "Enabling",
1213
+ /** Enabled */
1211
1214
  Enabled = "Enabled",
1215
+ /** Disabling */
1212
1216
  Disabling = "Disabling",
1217
+ /** Disabled */
1213
1218
  Disabled = "Disabled",
1219
+ /** Deleting */
1214
1220
  Deleting = "Deleting"
1215
1221
  }
1216
1222
  /**
@@ -1228,7 +1234,9 @@ export declare enum KnownNetworkExperimentResourceState {
1228
1234
  export declare type NetworkExperimentResourceState = string;
1229
1235
  /** Known values of {@link State} that the service accepts. */
1230
1236
  export declare enum KnownState {
1237
+ /** Enabled */
1231
1238
  Enabled = "Enabled",
1239
+ /** Disabled */
1232
1240
  Disabled = "Disabled"
1233
1241
  }
1234
1242
  /**
@@ -1242,9 +1250,13 @@ export declare enum KnownState {
1242
1250
  export declare type State = string;
1243
1251
  /** Known values of {@link EndpointType} that the service accepts. */
1244
1252
  export declare enum KnownEndpointType {
1253
+ /** AFD */
1245
1254
  AFD = "AFD",
1255
+ /** AzureRegion */
1246
1256
  AzureRegion = "AzureRegion",
1257
+ /** CDN */
1247
1258
  CDN = "CDN",
1259
+ /** ATM */
1248
1260
  ATM = "ATM"
1249
1261
  }
1250
1262
  /**
@@ -1260,8 +1272,11 @@ export declare enum KnownEndpointType {
1260
1272
  export declare type EndpointType = string;
1261
1273
  /** Known values of {@link LatencyScorecardAggregationInterval} that the service accepts. */
1262
1274
  export declare enum KnownLatencyScorecardAggregationInterval {
1275
+ /** Daily */
1263
1276
  Daily = "Daily",
1277
+ /** Weekly */
1264
1278
  Weekly = "Weekly",
1279
+ /** Monthly */
1265
1280
  Monthly = "Monthly"
1266
1281
  }
1267
1282
  /**
@@ -1276,7 +1291,9 @@ export declare enum KnownLatencyScorecardAggregationInterval {
1276
1291
  export declare type LatencyScorecardAggregationInterval = string;
1277
1292
  /** Known values of {@link TimeseriesAggregationInterval} that the service accepts. */
1278
1293
  export declare enum KnownTimeseriesAggregationInterval {
1294
+ /** Hourly */
1279
1295
  Hourly = "Hourly",
1296
+ /** Daily */
1280
1297
  Daily = "Daily"
1281
1298
  }
1282
1299
  /**
@@ -1290,9 +1307,13 @@ export declare enum KnownTimeseriesAggregationInterval {
1290
1307
  export declare type TimeseriesAggregationInterval = string;
1291
1308
  /** Known values of {@link TimeseriesType} that the service accepts. */
1292
1309
  export declare enum KnownTimeseriesType {
1310
+ /** MeasurementCounts */
1293
1311
  MeasurementCounts = "MeasurementCounts",
1312
+ /** LatencyP50 */
1294
1313
  LatencyP50 = "LatencyP50",
1314
+ /** LatencyP75 */
1295
1315
  LatencyP75 = "LatencyP75",
1316
+ /** LatencyP95 */
1296
1317
  LatencyP95 = "LatencyP95"
1297
1318
  }
1298
1319
  /**
@@ -1308,7 +1329,9 @@ export declare enum KnownTimeseriesType {
1308
1329
  export declare type TimeseriesType = string;
1309
1330
  /** Known values of {@link AggregationInterval} that the service accepts. */
1310
1331
  export declare enum KnownAggregationInterval {
1332
+ /** Hourly */
1311
1333
  Hourly = "Hourly",
1334
+ /** Daily */
1312
1335
  Daily = "Daily"
1313
1336
  }
1314
1337
  /**
@@ -1322,7 +1345,9 @@ export declare enum KnownAggregationInterval {
1322
1345
  export declare type AggregationInterval = string;
1323
1346
  /** Known values of {@link Availability} that the service accepts. */
1324
1347
  export declare enum KnownAvailability {
1348
+ /** Available */
1325
1349
  Available = "Available",
1350
+ /** Unavailable */
1326
1351
  Unavailable = "Unavailable"
1327
1352
  }
1328
1353
  /**
@@ -1336,11 +1361,17 @@ export declare enum KnownAvailability {
1336
1361
  export declare type Availability = string;
1337
1362
  /** Known values of {@link FrontDoorResourceState} that the service accepts. */
1338
1363
  export declare enum KnownFrontDoorResourceState {
1364
+ /** Creating */
1339
1365
  Creating = "Creating",
1366
+ /** Enabling */
1340
1367
  Enabling = "Enabling",
1368
+ /** Enabled */
1341
1369
  Enabled = "Enabled",
1370
+ /** Disabling */
1342
1371
  Disabling = "Disabling",
1372
+ /** Disabled */
1343
1373
  Disabled = "Disabled",
1374
+ /** Deleting */
1344
1375
  Deleting = "Deleting"
1345
1376
  }
1346
1377
  /**
@@ -1358,8 +1389,11 @@ export declare enum KnownFrontDoorResourceState {
1358
1389
  export declare type FrontDoorResourceState = string;
1359
1390
  /** Known values of {@link HeaderActionType} that the service accepts. */
1360
1391
  export declare enum KnownHeaderActionType {
1392
+ /** Append */
1361
1393
  Append = "Append",
1394
+ /** Delete */
1362
1395
  Delete = "Delete",
1396
+ /** Overwrite */
1363
1397
  Overwrite = "Overwrite"
1364
1398
  }
1365
1399
  /**
@@ -1374,17 +1408,29 @@ export declare enum KnownHeaderActionType {
1374
1408
  export declare type HeaderActionType = string;
1375
1409
  /** Known values of {@link RulesEngineMatchVariable} that the service accepts. */
1376
1410
  export declare enum KnownRulesEngineMatchVariable {
1411
+ /** IsMobile */
1377
1412
  IsMobile = "IsMobile",
1413
+ /** RemoteAddr */
1378
1414
  RemoteAddr = "RemoteAddr",
1415
+ /** RequestMethod */
1379
1416
  RequestMethod = "RequestMethod",
1417
+ /** QueryString */
1380
1418
  QueryString = "QueryString",
1419
+ /** PostArgs */
1381
1420
  PostArgs = "PostArgs",
1421
+ /** RequestUri */
1382
1422
  RequestUri = "RequestUri",
1423
+ /** RequestPath */
1383
1424
  RequestPath = "RequestPath",
1425
+ /** RequestFilename */
1384
1426
  RequestFilename = "RequestFilename",
1427
+ /** RequestFilenameExtension */
1385
1428
  RequestFilenameExtension = "RequestFilenameExtension",
1429
+ /** RequestHeader */
1386
1430
  RequestHeader = "RequestHeader",
1431
+ /** RequestBody */
1387
1432
  RequestBody = "RequestBody",
1433
+ /** RequestScheme */
1388
1434
  RequestScheme = "RequestScheme"
1389
1435
  }
1390
1436
  /**
@@ -1408,16 +1454,27 @@ export declare enum KnownRulesEngineMatchVariable {
1408
1454
  export declare type RulesEngineMatchVariable = string;
1409
1455
  /** Known values of {@link RulesEngineOperator} that the service accepts. */
1410
1456
  export declare enum KnownRulesEngineOperator {
1457
+ /** Any */
1411
1458
  Any = "Any",
1459
+ /** IPMatch */
1412
1460
  IPMatch = "IPMatch",
1461
+ /** GeoMatch */
1413
1462
  GeoMatch = "GeoMatch",
1463
+ /** Equal */
1414
1464
  Equal = "Equal",
1465
+ /** Contains */
1415
1466
  Contains = "Contains",
1467
+ /** LessThan */
1416
1468
  LessThan = "LessThan",
1469
+ /** GreaterThan */
1417
1470
  GreaterThan = "GreaterThan",
1471
+ /** LessThanOrEqual */
1418
1472
  LessThanOrEqual = "LessThanOrEqual",
1473
+ /** GreaterThanOrEqual */
1419
1474
  GreaterThanOrEqual = "GreaterThanOrEqual",
1475
+ /** BeginsWith */
1420
1476
  BeginsWith = "BeginsWith",
1477
+ /** EndsWith */
1421
1478
  EndsWith = "EndsWith"
1422
1479
  }
1423
1480
  /**
@@ -1440,11 +1497,17 @@ export declare enum KnownRulesEngineOperator {
1440
1497
  export declare type RulesEngineOperator = string;
1441
1498
  /** Known values of {@link Transform} that the service accepts. */
1442
1499
  export declare enum KnownTransform {
1500
+ /** Lowercase */
1443
1501
  Lowercase = "Lowercase",
1502
+ /** Uppercase */
1444
1503
  Uppercase = "Uppercase",
1504
+ /** Trim */
1445
1505
  Trim = "Trim",
1506
+ /** UrlDecode */
1446
1507
  UrlDecode = "UrlDecode",
1508
+ /** UrlEncode */
1447
1509
  UrlEncode = "UrlEncode",
1510
+ /** RemoveNulls */
1448
1511
  RemoveNulls = "RemoveNulls"
1449
1512
  }
1450
1513
  /**
@@ -1462,7 +1525,9 @@ export declare enum KnownTransform {
1462
1525
  export declare type Transform = string;
1463
1526
  /** Known values of {@link MatchProcessingBehavior} that the service accepts. */
1464
1527
  export declare enum KnownMatchProcessingBehavior {
1528
+ /** Continue */
1465
1529
  Continue = "Continue",
1530
+ /** Stop */
1466
1531
  Stop = "Stop"
1467
1532
  }
1468
1533
  /**
@@ -1476,7 +1541,9 @@ export declare enum KnownMatchProcessingBehavior {
1476
1541
  export declare type MatchProcessingBehavior = string;
1477
1542
  /** Known values of {@link FrontDoorProtocol} that the service accepts. */
1478
1543
  export declare enum KnownFrontDoorProtocol {
1544
+ /** Http */
1479
1545
  Http = "Http",
1546
+ /** Https */
1480
1547
  Https = "Https"
1481
1548
  }
1482
1549
  /**
@@ -1490,7 +1557,9 @@ export declare enum KnownFrontDoorProtocol {
1490
1557
  export declare type FrontDoorProtocol = string;
1491
1558
  /** Known values of {@link RoutingRuleEnabledState} that the service accepts. */
1492
1559
  export declare enum KnownRoutingRuleEnabledState {
1560
+ /** Enabled */
1493
1561
  Enabled = "Enabled",
1562
+ /** Disabled */
1494
1563
  Disabled = "Disabled"
1495
1564
  }
1496
1565
  /**
@@ -1504,7 +1573,9 @@ export declare enum KnownRoutingRuleEnabledState {
1504
1573
  export declare type RoutingRuleEnabledState = string;
1505
1574
  /** Known values of {@link FrontDoorHealthProbeMethod} that the service accepts. */
1506
1575
  export declare enum KnownFrontDoorHealthProbeMethod {
1576
+ /** GET */
1507
1577
  GET = "GET",
1578
+ /** Head */
1508
1579
  Head = "HEAD"
1509
1580
  }
1510
1581
  /**
@@ -1518,7 +1589,9 @@ export declare enum KnownFrontDoorHealthProbeMethod {
1518
1589
  export declare type FrontDoorHealthProbeMethod = string;
1519
1590
  /** Known values of {@link HealthProbeEnabled} that the service accepts. */
1520
1591
  export declare enum KnownHealthProbeEnabled {
1592
+ /** Enabled */
1521
1593
  Enabled = "Enabled",
1594
+ /** Disabled */
1522
1595
  Disabled = "Disabled"
1523
1596
  }
1524
1597
  /**
@@ -1532,10 +1605,15 @@ export declare enum KnownHealthProbeEnabled {
1532
1605
  export declare type HealthProbeEnabled = string;
1533
1606
  /** Known values of {@link PrivateEndpointStatus} that the service accepts. */
1534
1607
  export declare enum KnownPrivateEndpointStatus {
1608
+ /** Pending */
1535
1609
  Pending = "Pending",
1610
+ /** Approved */
1536
1611
  Approved = "Approved",
1612
+ /** Rejected */
1537
1613
  Rejected = "Rejected",
1614
+ /** Disconnected */
1538
1615
  Disconnected = "Disconnected",
1616
+ /** Timeout */
1539
1617
  Timeout = "Timeout"
1540
1618
  }
1541
1619
  /**
@@ -1552,7 +1630,9 @@ export declare enum KnownPrivateEndpointStatus {
1552
1630
  export declare type PrivateEndpointStatus = string;
1553
1631
  /** Known values of {@link BackendEnabledState} that the service accepts. */
1554
1632
  export declare enum KnownBackendEnabledState {
1633
+ /** Enabled */
1555
1634
  Enabled = "Enabled",
1635
+ /** Disabled */
1556
1636
  Disabled = "Disabled"
1557
1637
  }
1558
1638
  /**
@@ -1566,10 +1646,15 @@ export declare enum KnownBackendEnabledState {
1566
1646
  export declare type BackendEnabledState = string;
1567
1647
  /** Known values of {@link CustomHttpsProvisioningState} that the service accepts. */
1568
1648
  export declare enum KnownCustomHttpsProvisioningState {
1649
+ /** Enabling */
1569
1650
  Enabling = "Enabling",
1651
+ /** Enabled */
1570
1652
  Enabled = "Enabled",
1653
+ /** Disabling */
1571
1654
  Disabling = "Disabling",
1655
+ /** Disabled */
1572
1656
  Disabled = "Disabled",
1657
+ /** Failed */
1573
1658
  Failed = "Failed"
1574
1659
  }
1575
1660
  /**
@@ -1586,15 +1671,25 @@ export declare enum KnownCustomHttpsProvisioningState {
1586
1671
  export declare type CustomHttpsProvisioningState = string;
1587
1672
  /** Known values of {@link CustomHttpsProvisioningSubstate} that the service accepts. */
1588
1673
  export declare enum KnownCustomHttpsProvisioningSubstate {
1674
+ /** SubmittingDomainControlValidationRequest */
1589
1675
  SubmittingDomainControlValidationRequest = "SubmittingDomainControlValidationRequest",
1676
+ /** PendingDomainControlValidationREquestApproval */
1590
1677
  PendingDomainControlValidationREquestApproval = "PendingDomainControlValidationREquestApproval",
1678
+ /** DomainControlValidationRequestApproved */
1591
1679
  DomainControlValidationRequestApproved = "DomainControlValidationRequestApproved",
1680
+ /** DomainControlValidationRequestRejected */
1592
1681
  DomainControlValidationRequestRejected = "DomainControlValidationRequestRejected",
1682
+ /** DomainControlValidationRequestTimedOut */
1593
1683
  DomainControlValidationRequestTimedOut = "DomainControlValidationRequestTimedOut",
1684
+ /** IssuingCertificate */
1594
1685
  IssuingCertificate = "IssuingCertificate",
1686
+ /** DeployingCertificate */
1595
1687
  DeployingCertificate = "DeployingCertificate",
1688
+ /** CertificateDeployed */
1596
1689
  CertificateDeployed = "CertificateDeployed",
1690
+ /** DeletingCertificate */
1597
1691
  DeletingCertificate = "DeletingCertificate",
1692
+ /** CertificateDeleted */
1598
1693
  CertificateDeleted = "CertificateDeleted"
1599
1694
  }
1600
1695
  /**
@@ -1616,7 +1711,9 @@ export declare enum KnownCustomHttpsProvisioningSubstate {
1616
1711
  export declare type CustomHttpsProvisioningSubstate = string;
1617
1712
  /** Known values of {@link FrontDoorCertificateSource} that the service accepts. */
1618
1713
  export declare enum KnownFrontDoorCertificateSource {
1714
+ /** AzureKeyVault */
1619
1715
  AzureKeyVault = "AzureKeyVault",
1716
+ /** FrontDoor */
1620
1717
  FrontDoor = "FrontDoor"
1621
1718
  }
1622
1719
  /**
@@ -1630,6 +1727,7 @@ export declare enum KnownFrontDoorCertificateSource {
1630
1727
  export declare type FrontDoorCertificateSource = string;
1631
1728
  /** Known values of {@link FrontDoorTlsProtocolType} that the service accepts. */
1632
1729
  export declare enum KnownFrontDoorTlsProtocolType {
1730
+ /** ServerNameIndication */
1633
1731
  ServerNameIndication = "ServerNameIndication"
1634
1732
  }
1635
1733
  /**
@@ -1642,7 +1740,9 @@ export declare enum KnownFrontDoorTlsProtocolType {
1642
1740
  export declare type FrontDoorTlsProtocolType = string;
1643
1741
  /** Known values of {@link MinimumTLSVersion} that the service accepts. */
1644
1742
  export declare enum KnownMinimumTLSVersion {
1743
+ /** One0 */
1645
1744
  One0 = "1.0",
1745
+ /** One2 */
1646
1746
  One2 = "1.2"
1647
1747
  }
1648
1748
  /**
@@ -1656,6 +1756,7 @@ export declare enum KnownMinimumTLSVersion {
1656
1756
  export declare type MinimumTLSVersion = string;
1657
1757
  /** Known values of {@link FrontDoorCertificateType} that the service accepts. */
1658
1758
  export declare enum KnownFrontDoorCertificateType {
1759
+ /** Dedicated */
1659
1760
  Dedicated = "Dedicated"
1660
1761
  }
1661
1762
  /**
@@ -1668,7 +1769,9 @@ export declare enum KnownFrontDoorCertificateType {
1668
1769
  export declare type FrontDoorCertificateType = string;
1669
1770
  /** Known values of {@link SessionAffinityEnabledState} that the service accepts. */
1670
1771
  export declare enum KnownSessionAffinityEnabledState {
1772
+ /** Enabled */
1671
1773
  Enabled = "Enabled",
1774
+ /** Disabled */
1672
1775
  Disabled = "Disabled"
1673
1776
  }
1674
1777
  /**
@@ -1682,7 +1785,9 @@ export declare enum KnownSessionAffinityEnabledState {
1682
1785
  export declare type SessionAffinityEnabledState = string;
1683
1786
  /** Known values of {@link EnforceCertificateNameCheckEnabledState} that the service accepts. */
1684
1787
  export declare enum KnownEnforceCertificateNameCheckEnabledState {
1788
+ /** Enabled */
1685
1789
  Enabled = "Enabled",
1790
+ /** Disabled */
1686
1791
  Disabled = "Disabled"
1687
1792
  }
1688
1793
  /**
@@ -1696,7 +1801,9 @@ export declare enum KnownEnforceCertificateNameCheckEnabledState {
1696
1801
  export declare type EnforceCertificateNameCheckEnabledState = string;
1697
1802
  /** Known values of {@link FrontDoorEnabledState} that the service accepts. */
1698
1803
  export declare enum KnownFrontDoorEnabledState {
1804
+ /** Enabled */
1699
1805
  Enabled = "Enabled",
1806
+ /** Disabled */
1700
1807
  Disabled = "Disabled"
1701
1808
  }
1702
1809
  /**
@@ -1710,7 +1817,9 @@ export declare enum KnownFrontDoorEnabledState {
1710
1817
  export declare type FrontDoorEnabledState = string;
1711
1818
  /** Known values of {@link PolicyEnabledState} that the service accepts. */
1712
1819
  export declare enum KnownPolicyEnabledState {
1820
+ /** Disabled */
1713
1821
  Disabled = "Disabled",
1822
+ /** Enabled */
1714
1823
  Enabled = "Enabled"
1715
1824
  }
1716
1825
  /**
@@ -1724,7 +1833,9 @@ export declare enum KnownPolicyEnabledState {
1724
1833
  export declare type PolicyEnabledState = string;
1725
1834
  /** Known values of {@link PolicyMode} that the service accepts. */
1726
1835
  export declare enum KnownPolicyMode {
1836
+ /** Prevention */
1727
1837
  Prevention = "Prevention",
1838
+ /** Detection */
1728
1839
  Detection = "Detection"
1729
1840
  }
1730
1841
  /**
@@ -1738,7 +1849,9 @@ export declare enum KnownPolicyMode {
1738
1849
  export declare type PolicyMode = string;
1739
1850
  /** Known values of {@link PolicyRequestBodyCheck} that the service accepts. */
1740
1851
  export declare enum KnownPolicyRequestBodyCheck {
1852
+ /** Disabled */
1741
1853
  Disabled = "Disabled",
1854
+ /** Enabled */
1742
1855
  Enabled = "Enabled"
1743
1856
  }
1744
1857
  /**
@@ -1752,7 +1865,9 @@ export declare enum KnownPolicyRequestBodyCheck {
1752
1865
  export declare type PolicyRequestBodyCheck = string;
1753
1866
  /** Known values of {@link CustomRuleEnabledState} that the service accepts. */
1754
1867
  export declare enum KnownCustomRuleEnabledState {
1868
+ /** Disabled */
1755
1869
  Disabled = "Disabled",
1870
+ /** Enabled */
1756
1871
  Enabled = "Enabled"
1757
1872
  }
1758
1873
  /**
@@ -1766,7 +1881,9 @@ export declare enum KnownCustomRuleEnabledState {
1766
1881
  export declare type CustomRuleEnabledState = string;
1767
1882
  /** Known values of {@link RuleType} that the service accepts. */
1768
1883
  export declare enum KnownRuleType {
1884
+ /** MatchRule */
1769
1885
  MatchRule = "MatchRule",
1886
+ /** RateLimitRule */
1770
1887
  RateLimitRule = "RateLimitRule"
1771
1888
  }
1772
1889
  /**
@@ -1780,14 +1897,23 @@ export declare enum KnownRuleType {
1780
1897
  export declare type RuleType = string;
1781
1898
  /** Known values of {@link MatchVariable} that the service accepts. */
1782
1899
  export declare enum KnownMatchVariable {
1900
+ /** RemoteAddr */
1783
1901
  RemoteAddr = "RemoteAddr",
1902
+ /** RequestMethod */
1784
1903
  RequestMethod = "RequestMethod",
1904
+ /** QueryString */
1785
1905
  QueryString = "QueryString",
1906
+ /** PostArgs */
1786
1907
  PostArgs = "PostArgs",
1908
+ /** RequestUri */
1787
1909
  RequestUri = "RequestUri",
1910
+ /** RequestHeader */
1788
1911
  RequestHeader = "RequestHeader",
1912
+ /** RequestBody */
1789
1913
  RequestBody = "RequestBody",
1914
+ /** Cookies */
1790
1915
  Cookies = "Cookies",
1916
+ /** SocketAddr */
1791
1917
  SocketAddr = "SocketAddr"
1792
1918
  }
1793
1919
  /**
@@ -1808,17 +1934,29 @@ export declare enum KnownMatchVariable {
1808
1934
  export declare type MatchVariable = string;
1809
1935
  /** Known values of {@link Operator} that the service accepts. */
1810
1936
  export declare enum KnownOperator {
1937
+ /** Any */
1811
1938
  Any = "Any",
1939
+ /** IPMatch */
1812
1940
  IPMatch = "IPMatch",
1941
+ /** GeoMatch */
1813
1942
  GeoMatch = "GeoMatch",
1943
+ /** Equal */
1814
1944
  Equal = "Equal",
1945
+ /** Contains */
1815
1946
  Contains = "Contains",
1947
+ /** LessThan */
1816
1948
  LessThan = "LessThan",
1949
+ /** GreaterThan */
1817
1950
  GreaterThan = "GreaterThan",
1951
+ /** LessThanOrEqual */
1818
1952
  LessThanOrEqual = "LessThanOrEqual",
1953
+ /** GreaterThanOrEqual */
1819
1954
  GreaterThanOrEqual = "GreaterThanOrEqual",
1955
+ /** BeginsWith */
1820
1956
  BeginsWith = "BeginsWith",
1957
+ /** EndsWith */
1821
1958
  EndsWith = "EndsWith",
1959
+ /** RegEx */
1822
1960
  RegEx = "RegEx"
1823
1961
  }
1824
1962
  /**
@@ -1842,11 +1980,17 @@ export declare enum KnownOperator {
1842
1980
  export declare type Operator = string;
1843
1981
  /** Known values of {@link TransformType} that the service accepts. */
1844
1982
  export declare enum KnownTransformType {
1983
+ /** Lowercase */
1845
1984
  Lowercase = "Lowercase",
1985
+ /** Uppercase */
1846
1986
  Uppercase = "Uppercase",
1987
+ /** Trim */
1847
1988
  Trim = "Trim",
1989
+ /** UrlDecode */
1848
1990
  UrlDecode = "UrlDecode",
1991
+ /** UrlEncode */
1849
1992
  UrlEncode = "UrlEncode",
1993
+ /** RemoveNulls */
1850
1994
  RemoveNulls = "RemoveNulls"
1851
1995
  }
1852
1996
  /**
@@ -1864,9 +2008,13 @@ export declare enum KnownTransformType {
1864
2008
  export declare type TransformType = string;
1865
2009
  /** Known values of {@link ActionType} that the service accepts. */
1866
2010
  export declare enum KnownActionType {
2011
+ /** Allow */
1867
2012
  Allow = "Allow",
2013
+ /** Block */
1868
2014
  Block = "Block",
2015
+ /** Log */
1869
2016
  Log = "Log",
2017
+ /** Redirect */
1870
2018
  Redirect = "Redirect"
1871
2019
  }
1872
2020
  /**
@@ -1882,8 +2030,11 @@ export declare enum KnownActionType {
1882
2030
  export declare type ActionType = string;
1883
2031
  /** Known values of {@link ManagedRuleSetActionType} that the service accepts. */
1884
2032
  export declare enum KnownManagedRuleSetActionType {
2033
+ /** Block */
1885
2034
  Block = "Block",
2035
+ /** Log */
1886
2036
  Log = "Log",
2037
+ /** Redirect */
1887
2038
  Redirect = "Redirect"
1888
2039
  }
1889
2040
  /**
@@ -1898,10 +2049,15 @@ export declare enum KnownManagedRuleSetActionType {
1898
2049
  export declare type ManagedRuleSetActionType = string;
1899
2050
  /** Known values of {@link ManagedRuleExclusionMatchVariable} that the service accepts. */
1900
2051
  export declare enum KnownManagedRuleExclusionMatchVariable {
2052
+ /** RequestHeaderNames */
1901
2053
  RequestHeaderNames = "RequestHeaderNames",
2054
+ /** RequestCookieNames */
1902
2055
  RequestCookieNames = "RequestCookieNames",
2056
+ /** QueryStringArgNames */
1903
2057
  QueryStringArgNames = "QueryStringArgNames",
2058
+ /** RequestBodyPostArgNames */
1904
2059
  RequestBodyPostArgNames = "RequestBodyPostArgNames",
2060
+ /** RequestBodyJsonArgNames */
1905
2061
  RequestBodyJsonArgNames = "RequestBodyJsonArgNames"
1906
2062
  }
1907
2063
  /**
@@ -1918,10 +2074,15 @@ export declare enum KnownManagedRuleExclusionMatchVariable {
1918
2074
  export declare type ManagedRuleExclusionMatchVariable = string;
1919
2075
  /** Known values of {@link ManagedRuleExclusionSelectorMatchOperator} that the service accepts. */
1920
2076
  export declare enum KnownManagedRuleExclusionSelectorMatchOperator {
2077
+ /** Equals */
1921
2078
  Equals = "Equals",
2079
+ /** Contains */
1922
2080
  Contains = "Contains",
2081
+ /** StartsWith */
1923
2082
  StartsWith = "StartsWith",
2083
+ /** EndsWith */
1924
2084
  EndsWith = "EndsWith",
2085
+ /** EqualsAny */
1925
2086
  EqualsAny = "EqualsAny"
1926
2087
  }
1927
2088
  /**
@@ -1938,7 +2099,9 @@ export declare enum KnownManagedRuleExclusionSelectorMatchOperator {
1938
2099
  export declare type ManagedRuleExclusionSelectorMatchOperator = string;
1939
2100
  /** Known values of {@link ManagedRuleEnabledState} that the service accepts. */
1940
2101
  export declare enum KnownManagedRuleEnabledState {
2102
+ /** Disabled */
1941
2103
  Disabled = "Disabled",
2104
+ /** Enabled */
1942
2105
  Enabled = "Enabled"
1943
2106
  }
1944
2107
  /**
@@ -1952,11 +2115,17 @@ export declare enum KnownManagedRuleEnabledState {
1952
2115
  export declare type ManagedRuleEnabledState = string;
1953
2116
  /** Known values of {@link PolicyResourceState} that the service accepts. */
1954
2117
  export declare enum KnownPolicyResourceState {
2118
+ /** Creating */
1955
2119
  Creating = "Creating",
2120
+ /** Enabling */
1956
2121
  Enabling = "Enabling",
2122
+ /** Enabled */
1957
2123
  Enabled = "Enabled",
2124
+ /** Disabling */
1958
2125
  Disabling = "Disabling",
2126
+ /** Disabled */
1959
2127
  Disabled = "Disabled",
2128
+ /** Deleting */
1960
2129
  Deleting = "Deleting"
1961
2130
  }
1962
2131
  /**
@@ -1974,8 +2143,11 @@ export declare enum KnownPolicyResourceState {
1974
2143
  export declare type PolicyResourceState = string;
1975
2144
  /** Known values of {@link SkuName} that the service accepts. */
1976
2145
  export declare enum KnownSkuName {
2146
+ /** ClassicAzureFrontDoor */
1977
2147
  ClassicAzureFrontDoor = "Classic_AzureFrontDoor",
2148
+ /** StandardAzureFrontDoor */
1978
2149
  StandardAzureFrontDoor = "Standard_AzureFrontDoor",
2150
+ /** PremiumAzureFrontDoor */
1979
2151
  PremiumAzureFrontDoor = "Premium_AzureFrontDoor"
1980
2152
  }
1981
2153
  /**
@@ -1990,8 +2162,11 @@ export declare enum KnownSkuName {
1990
2162
  export declare type SkuName = string;
1991
2163
  /** Known values of {@link NetworkOperationStatus} that the service accepts. */
1992
2164
  export declare enum KnownNetworkOperationStatus {
2165
+ /** InProgress */
1993
2166
  InProgress = "InProgress",
2167
+ /** Succeeded */
1994
2168
  Succeeded = "Succeeded",
2169
+ /** Failed */
1995
2170
  Failed = "Failed"
1996
2171
  }
1997
2172
  /**
@@ -2006,8 +2181,11 @@ export declare enum KnownNetworkOperationStatus {
2006
2181
  export declare type NetworkOperationStatus = string;
2007
2182
  /** Known values of {@link FrontDoorForwardingProtocol} that the service accepts. */
2008
2183
  export declare enum KnownFrontDoorForwardingProtocol {
2184
+ /** HttpOnly */
2009
2185
  HttpOnly = "HttpOnly",
2186
+ /** HttpsOnly */
2010
2187
  HttpsOnly = "HttpsOnly",
2188
+ /** MatchRequest */
2011
2189
  MatchRequest = "MatchRequest"
2012
2190
  }
2013
2191
  /**
@@ -2022,9 +2200,13 @@ export declare enum KnownFrontDoorForwardingProtocol {
2022
2200
  export declare type FrontDoorForwardingProtocol = string;
2023
2201
  /** Known values of {@link FrontDoorQuery} that the service accepts. */
2024
2202
  export declare enum KnownFrontDoorQuery {
2203
+ /** StripNone */
2025
2204
  StripNone = "StripNone",
2205
+ /** StripAll */
2026
2206
  StripAll = "StripAll",
2207
+ /** StripOnly */
2027
2208
  StripOnly = "StripOnly",
2209
+ /** StripAllExcept */
2028
2210
  StripAllExcept = "StripAllExcept"
2029
2211
  }
2030
2212
  /**
@@ -2040,7 +2222,9 @@ export declare enum KnownFrontDoorQuery {
2040
2222
  export declare type FrontDoorQuery = string;
2041
2223
  /** Known values of {@link DynamicCompressionEnabled} that the service accepts. */
2042
2224
  export declare enum KnownDynamicCompressionEnabled {
2225
+ /** Enabled */
2043
2226
  Enabled = "Enabled",
2227
+ /** Disabled */
2044
2228
  Disabled = "Disabled"
2045
2229
  }
2046
2230
  /**
@@ -2054,9 +2238,13 @@ export declare enum KnownDynamicCompressionEnabled {
2054
2238
  export declare type DynamicCompressionEnabled = string;
2055
2239
  /** Known values of {@link FrontDoorRedirectType} that the service accepts. */
2056
2240
  export declare enum KnownFrontDoorRedirectType {
2241
+ /** Moved */
2057
2242
  Moved = "Moved",
2243
+ /** Found */
2058
2244
  Found = "Found",
2245
+ /** TemporaryRedirect */
2059
2246
  TemporaryRedirect = "TemporaryRedirect",
2247
+ /** PermanentRedirect */
2060
2248
  PermanentRedirect = "PermanentRedirect"
2061
2249
  }
2062
2250
  /**
@@ -2072,8 +2260,11 @@ export declare enum KnownFrontDoorRedirectType {
2072
2260
  export declare type FrontDoorRedirectType = string;
2073
2261
  /** Known values of {@link FrontDoorRedirectProtocol} that the service accepts. */
2074
2262
  export declare enum KnownFrontDoorRedirectProtocol {
2263
+ /** HttpOnly */
2075
2264
  HttpOnly = "HttpOnly",
2265
+ /** HttpsOnly */
2076
2266
  HttpsOnly = "HttpsOnly",
2267
+ /** MatchRequest */
2077
2268
  MatchRequest = "MatchRequest"
2078
2269
  }
2079
2270
  /**