@pulumi/azure-native 3.20.0 → 3.21.0-alpha.1784041029

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/output.d.ts CHANGED
@@ -237325,6 +237325,24 @@ export declare namespace web {
237325
237325
  */
237326
237326
  requestUri?: string;
237327
237327
  }
237328
+ /**
237329
+ * Information about the formal API definition for the app.
237330
+ */
237331
+ interface ApiDefinitionInfoResponse {
237332
+ /**
237333
+ * The URL of the API definition.
237334
+ */
237335
+ url?: string;
237336
+ }
237337
+ /**
237338
+ * Azure API management (APIM) configuration linked to the app.
237339
+ */
237340
+ interface ApiManagementConfigResponse {
237341
+ /**
237342
+ * APIM-Api Identifier.
237343
+ */
237344
+ id?: string;
237345
+ }
237328
237346
  /**
237329
237347
  * OAuth settings for the API
237330
237348
  */
@@ -237600,6 +237618,80 @@ export declare namespace web {
237600
237618
  */
237601
237619
  runtimeVersion?: string;
237602
237620
  }
237621
+ /**
237622
+ * Actions which to take by the auto-heal module when a rule is triggered.
237623
+ */
237624
+ interface AutoHealActionsResponse {
237625
+ /**
237626
+ * Predefined action to be taken.
237627
+ */
237628
+ actionType?: string;
237629
+ /**
237630
+ * Custom action to be taken.
237631
+ */
237632
+ customAction?: outputs.web.AutoHealCustomActionResponse;
237633
+ /**
237634
+ * Minimum time the process must execute
237635
+ * before taking the action
237636
+ */
237637
+ minProcessExecutionTime?: string;
237638
+ }
237639
+ /**
237640
+ * Custom action to be executed
237641
+ * when an auto heal rule is triggered.
237642
+ */
237643
+ interface AutoHealCustomActionResponse {
237644
+ /**
237645
+ * Executable to be run.
237646
+ */
237647
+ exe?: string;
237648
+ /**
237649
+ * Parameters for the executable.
237650
+ */
237651
+ parameters?: string;
237652
+ }
237653
+ /**
237654
+ * Rules that can be defined for auto-heal.
237655
+ */
237656
+ interface AutoHealRulesResponse {
237657
+ /**
237658
+ * Actions to be executed when a rule is triggered.
237659
+ */
237660
+ actions?: outputs.web.AutoHealActionsResponse;
237661
+ /**
237662
+ * Conditions that describe when to execute the auto-heal actions.
237663
+ */
237664
+ triggers?: outputs.web.AutoHealTriggersResponse;
237665
+ }
237666
+ /**
237667
+ * Triggers for auto-heal.
237668
+ */
237669
+ interface AutoHealTriggersResponse {
237670
+ /**
237671
+ * A rule based on private bytes.
237672
+ */
237673
+ privateBytesInKB?: number;
237674
+ /**
237675
+ * A rule based on total requests.
237676
+ */
237677
+ requests?: outputs.web.RequestsBasedTriggerResponse;
237678
+ /**
237679
+ * A rule based on request execution time.
237680
+ */
237681
+ slowRequests?: outputs.web.SlowRequestsBasedTriggerResponse;
237682
+ /**
237683
+ * A rule based on multiple Slow Requests Rule with path
237684
+ */
237685
+ slowRequestsWithPath?: outputs.web.SlowRequestsBasedTriggerResponse[];
237686
+ /**
237687
+ * A rule based on status codes.
237688
+ */
237689
+ statusCodes?: outputs.web.StatusCodesBasedTriggerResponse[];
237690
+ /**
237691
+ * A rule based on status codes ranges.
237692
+ */
237693
+ statusCodesRange?: outputs.web.StatusCodesRangeBasedTriggerResponse[];
237694
+ }
237603
237695
  /**
237604
237696
  * The configuration settings of the Azure Active Directory login flow.
237605
237697
  */
@@ -238157,6 +238249,22 @@ export declare namespace web {
238157
238249
  */
238158
238250
  timeToExpiration?: string;
238159
238251
  }
238252
+ /**
238253
+ * Cross-Origin Resource Sharing (CORS) settings for the app.
238254
+ */
238255
+ interface CorsSettingsResponse {
238256
+ /**
238257
+ * Gets or sets the list of origins that should be allowed to make cross-origin
238258
+ * calls (for example: http://example.com:12345). Use "*" to allow all.
238259
+ */
238260
+ allowedOrigins?: string[];
238261
+ /**
238262
+ * Gets or sets whether CORS requests with credentials are allowed. See
238263
+ * https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials
238264
+ * for more details.
238265
+ */
238266
+ supportCredentials?: boolean;
238267
+ }
238160
238268
  /**
238161
238269
  * Custom API properties
238162
238270
  */
@@ -238414,6 +238522,15 @@ export declare namespace web {
238414
238522
  */
238415
238523
  target?: string;
238416
238524
  }
238525
+ /**
238526
+ * Routing rules in production experiments.
238527
+ */
238528
+ interface ExperimentsResponse {
238529
+ /**
238530
+ * List of ramp-up rules.
238531
+ */
238532
+ rampUpRules?: outputs.web.RampUpRuleResponse[];
238533
+ }
238417
238534
  /**
238418
238535
  * The expression.
238419
238536
  */
@@ -238792,6 +238909,24 @@ export declare namespace web {
238792
238909
  */
238793
238910
  validation?: outputs.web.AllowedAudiencesValidationResponse;
238794
238911
  }
238912
+ /**
238913
+ * The IIS handler mappings used to define which handler processes HTTP requests with certain extension.
238914
+ * For example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.
238915
+ */
238916
+ interface HandlerMappingResponse {
238917
+ /**
238918
+ * Command-line arguments to be passed to the script processor.
238919
+ */
238920
+ arguments?: string;
238921
+ /**
238922
+ * Requests with this extension will be handled using the specified FastCGI application.
238923
+ */
238924
+ extension?: string;
238925
+ /**
238926
+ * The absolute path to the FastCGI application.
238927
+ */
238928
+ scriptProcessor?: string;
238929
+ }
238795
238930
  /**
238796
238931
  * SSL-enabled hostname.
238797
238932
  */
@@ -238946,6 +239081,75 @@ export declare namespace web {
238946
239081
  */
238947
239082
  twitter?: outputs.web.TwitterResponse;
238948
239083
  }
239084
+ /**
239085
+ * IP security restriction on an app.
239086
+ */
239087
+ interface IpSecurityRestrictionResponse {
239088
+ /**
239089
+ * Allow or Deny access for this IP range.
239090
+ */
239091
+ action?: string;
239092
+ /**
239093
+ * IP restriction rule description.
239094
+ */
239095
+ description?: string;
239096
+ /**
239097
+ * IP restriction rule headers.
239098
+ * X-Forwarded-Host (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Host#Examples).
239099
+ * The matching logic is ..
239100
+ * - If the property is null or empty (default), all hosts(or lack of) are allowed.
239101
+ * - A value is compared using ordinal-ignore-case (excluding port number).
239102
+ * - Subdomain wildcards are permitted but don't match the root domain. For example, *.contoso.com matches the subdomain foo.contoso.com
239103
+ * but not the root domain contoso.com or multi-level foo.bar.contoso.com
239104
+ * - Unicode host names are allowed but are converted to Punycode for matching.
239105
+ *
239106
+ * X-Forwarded-For (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For#Examples).
239107
+ * The matching logic is ..
239108
+ * - If the property is null or empty (default), any forwarded-for chains (or lack of) are allowed.
239109
+ * - If any address (excluding port number) in the chain (comma separated) matches the CIDR defined by the property.
239110
+ *
239111
+ * X-Azure-FDID and X-FD-HealthProbe.
239112
+ * The matching logic is exact match.
239113
+ */
239114
+ headers?: {
239115
+ [key: string]: string[];
239116
+ };
239117
+ /**
239118
+ * IP address the security restriction is valid for.
239119
+ * It can be in form of pure ipv4 address (required SubnetMask property) or
239120
+ * CIDR notation such as ipv4/mask (leading bit match). For CIDR,
239121
+ * SubnetMask property must not be specified.
239122
+ */
239123
+ ipAddress?: string;
239124
+ /**
239125
+ * IP restriction rule name.
239126
+ */
239127
+ name?: string;
239128
+ /**
239129
+ * Priority of IP restriction rule.
239130
+ */
239131
+ priority?: number;
239132
+ /**
239133
+ * Subnet mask for the range of IP addresses the restriction is valid for.
239134
+ */
239135
+ subnetMask?: string;
239136
+ /**
239137
+ * (internal) Subnet traffic tag
239138
+ */
239139
+ subnetTrafficTag?: number;
239140
+ /**
239141
+ * Defines what this IP filter will be used for. This is to support IP filtering on proxies.
239142
+ */
239143
+ tag?: string;
239144
+ /**
239145
+ * Virtual network resource id
239146
+ */
239147
+ vnetSubnetResourceId?: string;
239148
+ /**
239149
+ * (internal) Vnet traffic tag
239150
+ */
239151
+ vnetTrafficTag?: number;
239152
+ }
238949
239153
  /**
238950
239154
  * The configuration settings of the checks that should be made while validating the JWT Claims.
238951
239155
  */
@@ -239208,6 +239412,85 @@ export declare namespace web {
239208
239412
  */
239209
239413
  status?: string;
239210
239414
  }
239415
+ /**
239416
+ * Push settings for the App.
239417
+ */
239418
+ interface PushSettingsResponse {
239419
+ /**
239420
+ * Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint.
239421
+ */
239422
+ dynamicTagsJson?: string;
239423
+ /**
239424
+ * Resource Id.
239425
+ */
239426
+ id: string;
239427
+ /**
239428
+ * Gets or sets a flag indicating whether the Push endpoint is enabled.
239429
+ */
239430
+ isPushEnabled: boolean;
239431
+ /**
239432
+ * Kind of resource.
239433
+ */
239434
+ kind?: string;
239435
+ /**
239436
+ * Resource Name.
239437
+ */
239438
+ name: string;
239439
+ /**
239440
+ * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.
239441
+ */
239442
+ tagWhitelistJson?: string;
239443
+ /**
239444
+ * Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint.
239445
+ * Tags can consist of alphanumeric characters and the following:
239446
+ * '_', '@', '#', '.', ':', '-'.
239447
+ * Validation should be performed at the PushRequestHandler.
239448
+ */
239449
+ tagsRequiringAuth?: string;
239450
+ /**
239451
+ * Resource type.
239452
+ */
239453
+ type: string;
239454
+ }
239455
+ /**
239456
+ * Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.
239457
+ */
239458
+ interface RampUpRuleResponse {
239459
+ /**
239460
+ * Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net.
239461
+ */
239462
+ actionHostName?: string;
239463
+ /**
239464
+ * Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified.
239465
+ */
239466
+ changeDecisionCallbackUrl?: string;
239467
+ /**
239468
+ * Specifies interval in minutes to reevaluate ReroutePercentage.
239469
+ */
239470
+ changeIntervalInMinutes?: number;
239471
+ /**
239472
+ * In auto ramp up scenario this is the step to add/remove from <code>ReroutePercentage</code> until it reaches \n<code>MinReroutePercentage</code> or
239473
+ * <code>MaxReroutePercentage</code>. Site metrics are checked every N minutes specified in <code>ChangeIntervalInMinutes</code>.\nCustom decision algorithm
239474
+ * can be provided in TiPCallback site extension which URL can be specified in <code>ChangeDecisionCallbackUrl</code>.
239475
+ */
239476
+ changeStep?: number;
239477
+ /**
239478
+ * Specifies upper boundary below which ReroutePercentage will stay.
239479
+ */
239480
+ maxReroutePercentage?: number;
239481
+ /**
239482
+ * Specifies lower boundary above which ReroutePercentage will stay.
239483
+ */
239484
+ minReroutePercentage?: number;
239485
+ /**
239486
+ * Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment.
239487
+ */
239488
+ name?: string;
239489
+ /**
239490
+ * Percentage of the traffic which will be redirected to <code>ActionHostName</code>.
239491
+ */
239492
+ reroutePercentage?: number;
239493
+ }
239211
239494
  /**
239212
239495
  * A remote private endpoint connection
239213
239496
  */
@@ -239242,6 +239525,19 @@ export declare namespace web {
239242
239525
  */
239243
239526
  type: string;
239244
239527
  }
239528
+ /**
239529
+ * Trigger based on total requests.
239530
+ */
239531
+ interface RequestsBasedTriggerResponse {
239532
+ /**
239533
+ * Request Count.
239534
+ */
239535
+ count?: number;
239536
+ /**
239537
+ * Time interval.
239538
+ */
239539
+ timeInterval?: string;
239540
+ }
239245
239541
  /**
239246
239542
  * Function app resource requirements.
239247
239543
  */
@@ -239329,6 +239625,303 @@ export declare namespace web {
239329
239625
  */
239330
239626
  status?: string;
239331
239627
  }
239628
+ /**
239629
+ * Configuration of an App Service app.
239630
+ */
239631
+ interface SiteConfigResponse {
239632
+ /**
239633
+ * Flag to use Managed Identity Creds for ACR pull
239634
+ */
239635
+ acrUseManagedIdentityCreds?: boolean;
239636
+ /**
239637
+ * If using user managed identity, the user managed identity ClientId
239638
+ */
239639
+ acrUserManagedIdentityID?: string;
239640
+ /**
239641
+ * <code>true</code> if Always On is enabled; otherwise, <code>false</code>.
239642
+ */
239643
+ alwaysOn?: boolean;
239644
+ /**
239645
+ * Information about the formal API definition for the app.
239646
+ */
239647
+ apiDefinition?: outputs.web.ApiDefinitionInfoResponse;
239648
+ /**
239649
+ * Azure API management settings linked to the app.
239650
+ */
239651
+ apiManagementConfig?: outputs.web.ApiManagementConfigResponse;
239652
+ /**
239653
+ * App command line to launch.
239654
+ */
239655
+ appCommandLine?: string;
239656
+ /**
239657
+ * <code>true</code> if Auto Heal is enabled; otherwise, <code>false</code>.
239658
+ */
239659
+ autoHealEnabled?: boolean;
239660
+ /**
239661
+ * Auto Heal rules.
239662
+ */
239663
+ autoHealRules?: outputs.web.AutoHealRulesResponse;
239664
+ /**
239665
+ * Auto-swap slot name.
239666
+ */
239667
+ autoSwapSlotName?: string;
239668
+ /**
239669
+ * List of Azure Storage Accounts.
239670
+ */
239671
+ azureStorageAccounts?: {
239672
+ [key: string]: outputs.web.AzureStorageInfoValueResponse;
239673
+ };
239674
+ /**
239675
+ * Cross-Origin Resource Sharing (CORS) settings.
239676
+ */
239677
+ cors?: outputs.web.CorsSettingsResponse;
239678
+ /**
239679
+ * Default documents.
239680
+ */
239681
+ defaultDocuments?: string[];
239682
+ /**
239683
+ * <code>true</code> if detailed error logging is enabled; otherwise, <code>false</code>.
239684
+ */
239685
+ detailedErrorLoggingEnabled?: boolean;
239686
+ /**
239687
+ * Document root.
239688
+ */
239689
+ documentRoot?: string;
239690
+ /**
239691
+ * Maximum number of workers that a site can scale out to.
239692
+ * This setting only applies to apps in plans where ElasticScaleEnabled is <code>true</code>
239693
+ */
239694
+ elasticWebAppScaleLimit?: number;
239695
+ /**
239696
+ * This is work around for polymorphic types.
239697
+ */
239698
+ experiments?: outputs.web.ExperimentsResponse;
239699
+ /**
239700
+ * State of FTP / FTPS service
239701
+ */
239702
+ ftpsState?: string;
239703
+ /**
239704
+ * Maximum number of workers that a site can scale out to.
239705
+ * This setting only applies to the Consumption and Elastic Premium Plans
239706
+ */
239707
+ functionAppScaleLimit?: number;
239708
+ /**
239709
+ * Gets or sets a value indicating whether functions runtime scale monitoring is enabled. When enabled,
239710
+ * the ScaleController will not monitor event sources directly, but will instead call to the
239711
+ * runtime to get scale status.
239712
+ */
239713
+ functionsRuntimeScaleMonitoringEnabled?: boolean;
239714
+ /**
239715
+ * Handler mappings.
239716
+ */
239717
+ handlerMappings?: outputs.web.HandlerMappingResponse[];
239718
+ /**
239719
+ * Health check path
239720
+ */
239721
+ healthCheckPath?: string;
239722
+ /**
239723
+ * Http20Enabled: configures a web site to allow clients to connect over http2.0
239724
+ */
239725
+ http20Enabled?: boolean;
239726
+ /**
239727
+ * Http20ProxyFlag: Configures a website to allow http2.0 to pass be proxied all the way to the app. 0 = disabled, 1 = pass through all http2 traffic, 2 = pass through gRPC only.
239728
+ */
239729
+ http20ProxyFlag?: number;
239730
+ /**
239731
+ * <code>true</code> if HTTP logging is enabled; otherwise, <code>false</code>.
239732
+ */
239733
+ httpLoggingEnabled?: boolean;
239734
+ /**
239735
+ * IP security restrictions for main.
239736
+ */
239737
+ ipSecurityRestrictions?: outputs.web.IpSecurityRestrictionResponse[];
239738
+ /**
239739
+ * Default action for main access restriction if no rules are matched.
239740
+ */
239741
+ ipSecurityRestrictionsDefaultAction?: string;
239742
+ /**
239743
+ * Java container.
239744
+ */
239745
+ javaContainer?: string;
239746
+ /**
239747
+ * Java container version.
239748
+ */
239749
+ javaContainerVersion?: string;
239750
+ /**
239751
+ * Java version.
239752
+ */
239753
+ javaVersion?: string;
239754
+ /**
239755
+ * Identity to use for Key Vault Reference authentication.
239756
+ */
239757
+ keyVaultReferenceIdentity?: string;
239758
+ /**
239759
+ * Site limits.
239760
+ */
239761
+ limits?: outputs.web.SiteLimitsResponse;
239762
+ /**
239763
+ * Linux App Framework and version
239764
+ */
239765
+ linuxFxVersion?: string;
239766
+ /**
239767
+ * Site load balancing.
239768
+ */
239769
+ loadBalancing?: string;
239770
+ /**
239771
+ * <code>true</code> to enable local MySQL; otherwise, <code>false</code>.
239772
+ */
239773
+ localMySqlEnabled?: boolean;
239774
+ /**
239775
+ * HTTP logs directory size limit.
239776
+ */
239777
+ logsDirectorySizeLimit?: number;
239778
+ /**
239779
+ * Site MachineKey.
239780
+ */
239781
+ machineKey: outputs.web.SiteMachineKeyResponse;
239782
+ /**
239783
+ * Managed pipeline mode.
239784
+ */
239785
+ managedPipelineMode?: string;
239786
+ /**
239787
+ * Managed Service Identity Id
239788
+ */
239789
+ managedServiceIdentityId?: number;
239790
+ /**
239791
+ * The minimum strength TLS cipher suite allowed for an application
239792
+ */
239793
+ minTlsCipherSuite?: string;
239794
+ /**
239795
+ * MinTlsVersion: configures the minimum version of TLS required for SSL requests
239796
+ */
239797
+ minTlsVersion?: string;
239798
+ /**
239799
+ * Number of minimum instance count for a site
239800
+ * This setting only applies to the Elastic Plans
239801
+ */
239802
+ minimumElasticInstanceCount?: number;
239803
+ /**
239804
+ * .NET Framework version.
239805
+ */
239806
+ netFrameworkVersion?: string;
239807
+ /**
239808
+ * Version of Node.js.
239809
+ */
239810
+ nodeVersion?: string;
239811
+ /**
239812
+ * Number of workers.
239813
+ */
239814
+ numberOfWorkers?: number;
239815
+ /**
239816
+ * Version of PHP.
239817
+ */
239818
+ phpVersion?: string;
239819
+ /**
239820
+ * Version of PowerShell.
239821
+ */
239822
+ powerShellVersion?: string;
239823
+ /**
239824
+ * Number of preWarmed instances.
239825
+ * This setting only applies to the Consumption and Elastic Plans
239826
+ */
239827
+ preWarmedInstanceCount?: number;
239828
+ /**
239829
+ * Property to allow or block all public traffic.
239830
+ */
239831
+ publicNetworkAccess?: string;
239832
+ /**
239833
+ * Publishing user name.
239834
+ */
239835
+ publishingUsername?: string;
239836
+ /**
239837
+ * Push endpoint settings.
239838
+ */
239839
+ push?: outputs.web.PushSettingsResponse;
239840
+ /**
239841
+ * Version of Python.
239842
+ */
239843
+ pythonVersion?: string;
239844
+ /**
239845
+ * <code>true</code> if remote debugging is enabled; otherwise, <code>false</code>.
239846
+ */
239847
+ remoteDebuggingEnabled?: boolean;
239848
+ /**
239849
+ * Remote debugging version.
239850
+ */
239851
+ remoteDebuggingVersion?: string;
239852
+ /**
239853
+ * <code>true</code> if request tracing is enabled; otherwise, <code>false</code>.
239854
+ */
239855
+ requestTracingEnabled?: boolean;
239856
+ /**
239857
+ * Request tracing expiration time.
239858
+ */
239859
+ requestTracingExpirationTime?: string;
239860
+ /**
239861
+ * IP security restrictions for scm.
239862
+ */
239863
+ scmIpSecurityRestrictions?: outputs.web.IpSecurityRestrictionResponse[];
239864
+ /**
239865
+ * Default action for scm access restriction if no rules are matched.
239866
+ */
239867
+ scmIpSecurityRestrictionsDefaultAction?: string;
239868
+ /**
239869
+ * IP security restrictions for scm to use main.
239870
+ */
239871
+ scmIpSecurityRestrictionsUseMain?: boolean;
239872
+ /**
239873
+ * ScmMinTlsVersion: configures the minimum version of TLS required for SSL requests for SCM site
239874
+ */
239875
+ scmMinTlsVersion?: string;
239876
+ /**
239877
+ * SCM type.
239878
+ */
239879
+ scmType?: string;
239880
+ /**
239881
+ * Tracing options.
239882
+ */
239883
+ tracingOptions?: string;
239884
+ /**
239885
+ * <code>true</code> to use 32-bit worker process; otherwise, <code>false</code>.
239886
+ */
239887
+ use32BitWorkerProcess?: boolean;
239888
+ /**
239889
+ * Virtual applications.
239890
+ */
239891
+ virtualApplications?: outputs.web.VirtualApplicationResponse[];
239892
+ /**
239893
+ * Virtual Network name.
239894
+ */
239895
+ vnetName?: string;
239896
+ /**
239897
+ * The number of private ports assigned to this app. These will be assigned dynamically on runtime.
239898
+ */
239899
+ vnetPrivatePortsCount?: number;
239900
+ /**
239901
+ * Virtual Network Route All enabled. This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.
239902
+ */
239903
+ vnetRouteAllEnabled?: boolean;
239904
+ /**
239905
+ * <code>true</code> if WebSocket is enabled; otherwise, <code>false</code>.
239906
+ */
239907
+ webSocketsEnabled?: boolean;
239908
+ /**
239909
+ * Sets the time zone a site uses for generating timestamps. Compatible with Linux and Windows App Service. Setting the WEBSITE_TIME_ZONE app setting takes precedence over this config. For Linux, expects tz database values https://www.iana.org/time-zones (for a quick reference see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For Windows, expects one of the time zones listed under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones
239910
+ */
239911
+ websiteTimeZone?: string;
239912
+ /**
239913
+ * Xenon App Framework and version
239914
+ */
239915
+ windowsFxVersion?: string;
239916
+ /**
239917
+ * Explicit Managed Service Identity Id
239918
+ */
239919
+ xManagedServiceIdentityId?: number;
239920
+ }
239921
+ /**
239922
+ * siteConfigResponseProvideDefaults sets the appropriate defaults for SiteConfigResponse
239923
+ */
239924
+ function siteConfigResponseProvideDefaults(val: SiteConfigResponse): SiteConfigResponse;
239332
239925
  interface SiteDnsConfigResponse {
239333
239926
  /**
239334
239927
  * Alternate DNS server to be used by apps. This property replicates the WEBSITE_DNS_ALT_SERVER app setting.
@@ -239355,6 +239948,44 @@ export declare namespace web {
239355
239948
  */
239356
239949
  dnsServers?: string[];
239357
239950
  }
239951
+ /**
239952
+ * Metric limits set on an app.
239953
+ */
239954
+ interface SiteLimitsResponse {
239955
+ /**
239956
+ * Maximum allowed disk size usage in MB.
239957
+ */
239958
+ maxDiskSizeInMb?: number;
239959
+ /**
239960
+ * Maximum allowed memory usage in MB.
239961
+ */
239962
+ maxMemoryInMb?: number;
239963
+ /**
239964
+ * Maximum allowed CPU usage percentage.
239965
+ */
239966
+ maxPercentageCpu?: number;
239967
+ }
239968
+ /**
239969
+ * MachineKey of an app.
239970
+ */
239971
+ interface SiteMachineKeyResponse {
239972
+ /**
239973
+ * Algorithm used for decryption.
239974
+ */
239975
+ decryption?: string;
239976
+ /**
239977
+ * Decryption key.
239978
+ */
239979
+ decryptionKey?: string;
239980
+ /**
239981
+ * MachineKey validation.
239982
+ */
239983
+ validation?: string;
239984
+ /**
239985
+ * Validation key.
239986
+ */
239987
+ validationKey?: string;
239988
+ }
239358
239989
  /**
239359
239990
  * Description of the App Service plan scale options.
239360
239991
  */
@@ -239434,6 +240065,27 @@ export declare namespace web {
239434
240065
  */
239435
240066
  timestampUtc: string;
239436
240067
  }
240068
+ /**
240069
+ * Trigger based on request execution time.
240070
+ */
240071
+ interface SlowRequestsBasedTriggerResponse {
240072
+ /**
240073
+ * Request Count.
240074
+ */
240075
+ count?: number;
240076
+ /**
240077
+ * Request Path.
240078
+ */
240079
+ path?: string;
240080
+ /**
240081
+ * Time interval.
240082
+ */
240083
+ timeInterval?: string;
240084
+ /**
240085
+ * Time taken.
240086
+ */
240087
+ timeTaken?: string;
240088
+ }
239437
240089
  /**
239438
240090
  * Build properties for the static site.
239439
240091
  */
@@ -239604,6 +240256,53 @@ export declare namespace web {
239604
240256
  */
239605
240257
  type: string;
239606
240258
  }
240259
+ /**
240260
+ * Trigger based on status code.
240261
+ */
240262
+ interface StatusCodesBasedTriggerResponse {
240263
+ /**
240264
+ * Request Count.
240265
+ */
240266
+ count?: number;
240267
+ /**
240268
+ * Request Path
240269
+ */
240270
+ path?: string;
240271
+ /**
240272
+ * HTTP status code.
240273
+ */
240274
+ status?: number;
240275
+ /**
240276
+ * Request Sub Status.
240277
+ */
240278
+ subStatus?: number;
240279
+ /**
240280
+ * Time interval.
240281
+ */
240282
+ timeInterval?: string;
240283
+ /**
240284
+ * Win32 error code.
240285
+ */
240286
+ win32Status?: number;
240287
+ }
240288
+ /**
240289
+ * Trigger based on range of status codes.
240290
+ */
240291
+ interface StatusCodesRangeBasedTriggerResponse {
240292
+ /**
240293
+ * Request Count.
240294
+ */
240295
+ count?: number;
240296
+ path?: string;
240297
+ /**
240298
+ * HTTP status code.
240299
+ */
240300
+ statusCodes?: string;
240301
+ /**
240302
+ * Time interval.
240303
+ */
240304
+ timeInterval?: string;
240305
+ }
239607
240306
  /**
239608
240307
  * Metadata pertaining to creation and last modification of the resource.
239609
240308
  */
@@ -239698,6 +240397,40 @@ export declare namespace web {
239698
240397
  */
239699
240398
  principalId: string;
239700
240399
  }
240400
+ /**
240401
+ * Virtual application in an app.
240402
+ */
240403
+ interface VirtualApplicationResponse {
240404
+ /**
240405
+ * Physical path.
240406
+ */
240407
+ physicalPath?: string;
240408
+ /**
240409
+ * <code>true</code> if preloading is enabled; otherwise, <code>false</code>.
240410
+ */
240411
+ preloadEnabled?: boolean;
240412
+ /**
240413
+ * Virtual directories for virtual application.
240414
+ */
240415
+ virtualDirectories?: outputs.web.VirtualDirectoryResponse[];
240416
+ /**
240417
+ * Virtual path.
240418
+ */
240419
+ virtualPath?: string;
240420
+ }
240421
+ /**
240422
+ * Directory for virtual application.
240423
+ */
240424
+ interface VirtualDirectoryResponse {
240425
+ /**
240426
+ * Physical path.
240427
+ */
240428
+ physicalPath?: string;
240429
+ /**
240430
+ * Path to virtual application.
240431
+ */
240432
+ virtualPath?: string;
240433
+ }
239701
240434
  /**
239702
240435
  * Specification for using a Virtual Network.
239703
240436
  */