@azure-rest/arm-appservice 1.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +95 -0
- package/dist/index.js +144 -0
- package/dist/index.js.map +1 -0
- package/dist-esm/src/clientDefinitions.js +4 -0
- package/dist-esm/src/clientDefinitions.js.map +1 -0
- package/dist-esm/src/index.js +13 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/models.js +4 -0
- package/dist-esm/src/models.js.map +1 -0
- package/dist-esm/src/outputModels.js +4 -0
- package/dist-esm/src/outputModels.js.map +1 -0
- package/dist-esm/src/paginateHelper.js +70 -0
- package/dist-esm/src/paginateHelper.js.map +1 -0
- package/dist-esm/src/parameters.js +4 -0
- package/dist-esm/src/parameters.js.map +1 -0
- package/dist-esm/src/pollingHelper.js +46 -0
- package/dist-esm/src/pollingHelper.js.map +1 -0
- package/dist-esm/src/responses.js +4 -0
- package/dist-esm/src/responses.js.map +1 -0
- package/dist-esm/src/webSiteManagementClient.js +21 -0
- package/dist-esm/src/webSiteManagementClient.js.map +1 -0
- package/package.json +129 -0
- package/review/arm-appservice.api.md +27581 -0
- package/types/arm-appservice.d.ts +27921 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Copyright (c) Microsoft Corporation.
|
|
2
|
+
// Licensed under the MIT license.
|
|
3
|
+
import WebSiteManagementClient from "./webSiteManagementClient";
|
|
4
|
+
export * from "./webSiteManagementClient";
|
|
5
|
+
export * from "./parameters";
|
|
6
|
+
export * from "./responses";
|
|
7
|
+
export * from "./clientDefinitions";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
export * from "./outputModels";
|
|
10
|
+
export * from "./paginateHelper";
|
|
11
|
+
export * from "./pollingHelper";
|
|
12
|
+
export default WebSiteManagementClient;
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAElC,OAAO,uBAAuB,MAAM,2BAA2B,CAAC;AAEhE,cAAc,2BAA2B,CAAC;AAC1C,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAEhC,eAAe,uBAAuB,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\nimport WebSiteManagementClient from \"./webSiteManagementClient\";\n\nexport * from \"./webSiteManagementClient\";\nexport * from \"./parameters\";\nexport * from \"./responses\";\nexport * from \"./clientDefinitions\";\nexport * from \"./models\";\nexport * from \"./outputModels\";\nexport * from \"./paginateHelper\";\nexport * from \"./pollingHelper\";\n\nexport default WebSiteManagementClient;\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../src/models.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\nexport interface AppServiceCertificateOrder extends Resource {\n /** AppServiceCertificateOrder resource specific properties */\n properties?: AppServiceCertificateOrderProperties;\n}\n\nexport interface AppServiceCertificateOrderProperties {\n /** State of the Key Vault secret. */\n certificates?: Record<string, AppServiceCertificate>;\n /** Certificate distinguished name. */\n distinguishedName?: string;\n /** Domain verification token. */\n domainVerificationToken?: string;\n /** Duration in years (must be 1). */\n validityInYears?: number;\n /** Certificate key size. */\n keySize?: number;\n /** Certificate product type. */\n productType: \"StandardDomainValidatedSsl\" | \"StandardDomainValidatedWildCardSsl\";\n /** <code>true</code> if the certificate should be automatically renewed when it expires; otherwise, <code>false</code>. */\n autoRenew?: boolean;\n /** Status of certificate order. */\n provisioningState?: \"Succeeded\" | \"Failed\" | \"Canceled\" | \"InProgress\" | \"Deleting\";\n /** Current order status. */\n status?:\n | \"Pendingissuance\"\n | \"Issued\"\n | \"Revoked\"\n | \"Canceled\"\n | \"Denied\"\n | \"Pendingrevocation\"\n | \"PendingRekey\"\n | \"Unused\"\n | \"Expired\"\n | \"NotSubmitted\";\n /** Signed certificate. */\n signedCertificate?: CertificateDetails;\n /** Last CSR that was created for this order. */\n csr?: string;\n /** Intermediate certificate. */\n intermediate?: CertificateDetails;\n /** Root certificate. */\n root?: CertificateDetails;\n /** Current serial number of the certificate. */\n serialNumber?: string;\n /** Certificate last issuance time. */\n lastCertificateIssuanceTime?: Date | string;\n /** Certificate expiration time. */\n expirationTime?: Date | string;\n /** <code>true</code> if private key is external; otherwise, <code>false</code>. */\n isPrivateKeyExternal?: boolean;\n /** Reasons why App Service Certificate is not renewable at the current moment. */\n appServiceCertificateNotRenewableReasons?: Array<\n | \"RegistrationStatusNotSupportedForRenewal\"\n | \"ExpirationNotInRenewalTimeRange\"\n | \"SubscriptionNotActive\"\n >;\n /** Time stamp when the certificate would be auto renewed next */\n nextAutoRenewalTimeStamp?: Date | string;\n /** Contact info */\n contact?: CertificateOrderContact;\n}\n\nexport interface AppServiceCertificate {\n /** Key Vault resource Id. */\n keyVaultId?: string;\n /** Key Vault secret name. */\n keyVaultSecretName?: string;\n /** Status of the Key Vault secret. */\n provisioningState?:\n | \"Initialized\"\n | \"WaitingOnCertificateOrder\"\n | \"Succeeded\"\n | \"CertificateOrderFailed\"\n | \"OperationNotPermittedOnKeyVault\"\n | \"AzureServiceUnauthorizedToAccessKeyVault\"\n | \"KeyVaultDoesNotExist\"\n | \"KeyVaultSecretDoesNotExist\"\n | \"UnknownError\"\n | \"ExternalPrivateKey\"\n | \"Unknown\";\n}\n\nexport interface CertificateDetails {\n /** Certificate Version. */\n version?: number;\n /** Certificate Serial Number. */\n serialNumber?: string;\n /** Certificate Thumbprint. */\n thumbprint?: string;\n /** Certificate Subject. */\n subject?: string;\n /** Date Certificate is valid from. */\n notBefore?: Date | string;\n /** Date Certificate is valid to. */\n notAfter?: Date | string;\n /** Certificate Signature algorithm. */\n signatureAlgorithm?: string;\n /** Certificate Issuer. */\n issuer?: string;\n /** Raw certificate data. */\n rawData?: string;\n}\n\nexport interface CertificateOrderContact {\n email?: string;\n nameFirst?: string;\n nameLast?: string;\n phone?: string;\n}\n\nexport interface Resource {\n /** Resource Id. */\n id?: string;\n /** Resource Name. */\n name?: string;\n /** Kind of resource. */\n kind?: string;\n /** Resource Location. */\n location: string;\n /** Resource type. */\n type?: string;\n /** Resource tags. */\n tags?: Record<string, string>;\n}\n\nexport interface AppServiceCertificateOrderPatchResource extends ProxyOnlyResource {\n /** AppServiceCertificateOrderPatchResource resource specific properties */\n properties?: AppServiceCertificateOrderPatchResourceProperties;\n}\n\nexport interface AppServiceCertificateOrderPatchResourceProperties {\n /** State of the Key Vault secret. */\n certificates?: Record<string, AppServiceCertificate>;\n /** Certificate distinguished name. */\n distinguishedName?: string;\n /** Domain verification token. */\n domainVerificationToken?: string;\n /** Duration in years (must be 1). */\n validityInYears?: number;\n /** Certificate key size. */\n keySize?: number;\n /** Certificate product type. */\n productType: \"StandardDomainValidatedSsl\" | \"StandardDomainValidatedWildCardSsl\";\n /** <code>true</code> if the certificate should be automatically renewed when it expires; otherwise, <code>false</code>. */\n autoRenew?: boolean;\n /** Status of certificate order. */\n provisioningState?: \"Succeeded\" | \"Failed\" | \"Canceled\" | \"InProgress\" | \"Deleting\";\n /** Current order status. */\n status?:\n | \"Pendingissuance\"\n | \"Issued\"\n | \"Revoked\"\n | \"Canceled\"\n | \"Denied\"\n | \"Pendingrevocation\"\n | \"PendingRekey\"\n | \"Unused\"\n | \"Expired\"\n | \"NotSubmitted\";\n /** Signed certificate. */\n signedCertificate?: CertificateDetails;\n /** Last CSR that was created for this order. */\n csr?: string;\n /** Intermediate certificate. */\n intermediate?: CertificateDetails;\n /** Root certificate. */\n root?: CertificateDetails;\n /** Current serial number of the certificate. */\n serialNumber?: string;\n /** Certificate last issuance time. */\n lastCertificateIssuanceTime?: Date | string;\n /** Certificate expiration time. */\n expirationTime?: Date | string;\n /** <code>true</code> if private key is external; otherwise, <code>false</code>. */\n isPrivateKeyExternal?: boolean;\n /** Reasons why App Service Certificate is not renewable at the current moment. */\n appServiceCertificateNotRenewableReasons?: Array<\n | \"RegistrationStatusNotSupportedForRenewal\"\n | \"ExpirationNotInRenewalTimeRange\"\n | \"SubscriptionNotActive\"\n >;\n /** Time stamp when the certificate would be auto renewed next */\n nextAutoRenewalTimeStamp?: Date | string;\n /** Contact info */\n contact?: CertificateOrderContact;\n}\n\nexport interface ProxyOnlyResource {\n /** Resource Id. */\n id?: string;\n /** Resource Name. */\n name?: string;\n /** Kind of resource. */\n kind?: string;\n /** Resource type. */\n type?: string;\n}\n\nexport interface AppServiceCertificateResource extends Resource {\n /** Core resource properties */\n properties?: AppServiceCertificate;\n}\n\nexport interface AppServiceCertificatePatchResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: AppServiceCertificate;\n}\n\nexport interface ReissueCertificateOrderRequest extends ProxyOnlyResource {\n /** ReissueCertificateOrderRequest resource specific properties */\n properties?: ReissueCertificateOrderRequestProperties;\n}\n\nexport interface ReissueCertificateOrderRequestProperties {\n /** Certificate Key Size. */\n keySize?: number;\n /** Delay in hours to revoke existing certificate after the new certificate is issued. */\n delayExistingRevokeInHours?: number;\n /** Csr to be used for re-key operation. */\n csr?: string;\n /** Should we change the ASC type (from managed private key to external private key and vice versa). */\n isPrivateKeyExternal?: boolean;\n}\n\nexport interface RenewCertificateOrderRequest extends ProxyOnlyResource {\n /** RenewCertificateOrderRequest resource specific properties */\n properties?: RenewCertificateOrderRequestProperties;\n}\n\nexport interface RenewCertificateOrderRequestProperties {\n /** Certificate Key Size. */\n keySize?: number;\n /** Csr to be used for re-key operation. */\n csr?: string;\n /** Should we change the ASC type (from managed private key to external private key and vice versa). */\n isPrivateKeyExternal?: boolean;\n}\n\nexport interface NameIdentifier {\n /** Name of the object. */\n name?: string;\n}\n\nexport interface SiteSealRequest {\n /** If <code>true</code> use the light color theme for site seal; otherwise, use the default color theme. */\n lightTheme?: boolean;\n /** Locale of site seal. */\n locale?: string;\n}\n\nexport interface CertificateOrderAction extends ProxyOnlyResource {\n /** CertificateOrderAction resource specific properties */\n properties?: CertificateOrderActionProperties;\n}\n\nexport interface CertificateOrderActionProperties {\n /** Action type. */\n actionType?:\n | \"CertificateIssued\"\n | \"CertificateOrderCanceled\"\n | \"CertificateOrderCreated\"\n | \"CertificateRevoked\"\n | \"DomainValidationComplete\"\n | \"FraudDetected\"\n | \"OrgNameChange\"\n | \"OrgValidationComplete\"\n | \"SanDrop\"\n | \"FraudCleared\"\n | \"CertificateExpired\"\n | \"CertificateExpirationWarning\"\n | \"FraudDocumentationRequired\"\n | \"Unknown\";\n /** Time at which the certificate action was performed. */\n createdAt?: Date | string;\n}\n\nexport interface CertificateEmail extends ProxyOnlyResource {\n /** CertificateEmail resource specific properties */\n properties?: CertificateEmailProperties;\n}\n\nexport interface CertificateEmailProperties {\n /** Email id. */\n emailId?: string;\n /** Time stamp. */\n timeStamp?: Date | string;\n}\n\nexport interface DetectorResponse extends ProxyOnlyResource {\n /** DetectorResponse resource specific properties */\n properties?: DetectorResponseProperties;\n}\n\nexport interface DetectorResponseProperties {\n /** metadata for the detector */\n metadata?: DetectorInfo;\n /** Data Set */\n dataset?: Array<DiagnosticData>;\n /** Indicates status of the most severe insight. */\n status?: Status;\n /** Additional configuration for different data providers to be used by the UI */\n dataProvidersMetadata?: Array<DataProviderMetadata>;\n /** Suggested utterances where the detector can be applicable. */\n suggestedUtterances?: QueryUtterancesResults;\n}\n\nexport interface DetectorInfo {\n /** Id of detector */\n id?: string;\n /** Name of detector */\n name?: string;\n /** Short description of the detector and its purpose. */\n description?: string;\n /** Author of the detector. */\n author?: string;\n /** Problem category. This serves for organizing group for detectors. */\n category?: string;\n /** List of Support Topics for which this detector is enabled. */\n supportTopicList?: Array<SupportTopic>;\n /** Analysis Types for which this detector should apply to. */\n analysisType?: Array<string>;\n /** Whether this detector is an Analysis Detector or not. */\n type?: \"Detector\" | \"Analysis\" | \"CategoryOverview\";\n /** Defines score of a detector to power ML based matching. */\n score?: number;\n}\n\nexport interface SupportTopic {\n /** Support Topic Id */\n id?: string;\n /** Unique resource Id */\n pesId?: string;\n}\n\nexport interface DiagnosticData {\n /** Data in table form */\n table?: DataTableResponseObject;\n /** Properties that describe how the table should be rendered */\n renderingProperties?: Rendering;\n}\n\nexport interface DataTableResponseObject {\n /** Name of the table */\n tableName?: string;\n /** List of columns with data types */\n columns?: Array<DataTableResponseColumn>;\n /** Raw row values */\n rows?: Array<Array<string>>;\n}\n\nexport interface DataTableResponseColumn {\n /** Name of the column */\n columnName?: string;\n /** Data type which looks like 'String' or 'Int32'. */\n dataType?: string;\n /** Column Type */\n columnType?: string;\n}\n\nexport interface Rendering {\n /** Rendering Type */\n type?:\n | \"NoGraph\"\n | \"Table\"\n | \"TimeSeries\"\n | \"TimeSeriesPerInstance\"\n | \"PieChart\"\n | \"DataSummary\"\n | \"Email\"\n | \"Insights\"\n | \"DynamicInsight\"\n | \"Markdown\"\n | \"Detector\"\n | \"DropDown\"\n | \"Card\"\n | \"Solution\"\n | \"Guage\"\n | \"Form\"\n | \"ChangeSets\"\n | \"ChangeAnalysisOnboarding\"\n | \"ChangesView\"\n | \"AppInsight\"\n | \"DependencyGraph\"\n | \"DownTime\"\n | \"SummaryCard\"\n | \"SearchComponent\"\n | \"AppInsightEnablement\";\n /** Title of data */\n title?: string;\n /** Description of the data that will help it be interpreted */\n description?: string;\n}\n\nexport interface Status {\n /** Descriptive message. */\n message?: string;\n /** Level of the most severe insight generated by the detector. */\n statusId?: \"Critical\" | \"Warning\" | \"Info\" | \"Success\" | \"None\";\n}\n\nexport interface DataProviderMetadata {\n providerName?: string;\n /** Settings for the data provider */\n propertyBag?: Array<KeyValuePairStringObject>;\n}\n\nexport interface KeyValuePairStringObject {\n key?: string;\n /** Any object */\n value?: Record<string, unknown>;\n}\n\nexport interface QueryUtterancesResults {\n /** Search Query. */\n query?: string;\n /** Array of utterance results for search query. */\n results?: Array<QueryUtterancesResult>;\n}\n\nexport interface QueryUtterancesResult {\n /** A sample utterance. */\n sampleUtterance?: SampleUtterance;\n /** Score of a sample utterance. */\n score?: number;\n}\n\nexport interface SampleUtterance {\n /** Text attribute of sample utterance. */\n text?: string;\n /** Links attribute of sample utterance. */\n links?: Array<string>;\n /** Question id of sample utterance (for stackoverflow questions titles). */\n qid?: string;\n}\n\nexport interface Domain extends Resource {\n /** Domain resource specific properties */\n properties?: DomainProperties;\n}\n\nexport interface DomainProperties {\n /** Administrative contact. */\n contactAdmin: Contact;\n /** Billing contact. */\n contactBilling: Contact;\n /** Registrant contact. */\n contactRegistrant: Contact;\n /** Technical contact. */\n contactTech: Contact;\n /** Domain registration status. */\n registrationStatus?:\n | \"Active\"\n | \"Awaiting\"\n | \"Cancelled\"\n | \"Confiscated\"\n | \"Disabled\"\n | \"Excluded\"\n | \"Expired\"\n | \"Failed\"\n | \"Held\"\n | \"Locked\"\n | \"Parked\"\n | \"Pending\"\n | \"Reserved\"\n | \"Reverted\"\n | \"Suspended\"\n | \"Transferred\"\n | \"Unknown\"\n | \"Unlocked\"\n | \"Unparked\"\n | \"Updated\"\n | \"JsonConverterFailed\";\n /** Domain provisioning state. */\n provisioningState?: \"Succeeded\" | \"Failed\" | \"Canceled\" | \"InProgress\" | \"Deleting\";\n /** Name servers. */\n nameServers?: Array<string>;\n /** <code>true</code> if domain privacy is enabled for this domain; otherwise, <code>false</code>. */\n privacy?: boolean;\n /** Domain creation timestamp. */\n createdTime?: Date | string;\n /** Domain expiration timestamp. */\n expirationTime?: Date | string;\n /** Timestamp when the domain was renewed last time. */\n lastRenewedTime?: Date | string;\n /** <code>true</code> if the domain should be automatically renewed; otherwise, <code>false</code>. */\n autoRenew?: boolean;\n /**\n * <code>true</code> if Azure can assign this domain to App Service apps; otherwise, <code>false</code>. This value will be <code>true</code> if domain registration status is active and\n * it is hosted on name servers Azure has programmatic access to.\n */\n readyForDnsRecordManagement?: boolean;\n /** All hostnames derived from the domain and assigned to Azure resources. */\n managedHostNames?: Array<HostName>;\n /** Legal agreement consent. */\n consent: DomainPurchaseConsent;\n /** Reasons why domain is not renewable. */\n domainNotRenewableReasons?: Array<\n | \"RegistrationStatusNotSupportedForRenewal\"\n | \"ExpirationNotInRenewalTimeRange\"\n | \"SubscriptionNotActive\"\n >;\n /** Current DNS type */\n dnsType?: \"AzureDns\" | \"DefaultDomainRegistrarDns\";\n /** Azure DNS Zone to use */\n dnsZoneId?: string;\n /** Target DNS type (would be used for migration) */\n targetDnsType?: \"AzureDns\" | \"DefaultDomainRegistrarDns\";\n authCode?: string;\n}\n\nexport interface Contact {\n /** Mailing address. */\n addressMailing?: Address;\n /** Email address. */\n email: string;\n /** Fax number. */\n fax?: string;\n /** Job title. */\n jobTitle?: string;\n /** First name. */\n nameFirst: string;\n /** Last name. */\n nameLast: string;\n /** Middle name. */\n nameMiddle?: string;\n /** Organization contact belongs to. */\n organization?: string;\n /** Phone number. */\n phone: string;\n}\n\nexport interface Address {\n /** First line of an Address. */\n address1: string;\n /** The second line of the Address. Optional. */\n address2?: string;\n /** The city for the address. */\n city: string;\n /** The country for the address. */\n country: string;\n /** The postal code for the address. */\n postalCode: string;\n /** The state or province for the address. */\n state: string;\n}\n\nexport interface HostName {\n /** Name of the hostname. */\n name?: string;\n /** List of apps the hostname is assigned to. This list will have more than one app only if the hostname is pointing to a Traffic Manager. */\n siteNames?: Array<string>;\n /** Name of the Azure resource the hostname is assigned to. If it is assigned to a Traffic Manager then it will be the Traffic Manager name otherwise it will be the app name. */\n azureResourceName?: string;\n /** Type of the Azure resource the hostname is assigned to. */\n azureResourceType?: \"Website\" | \"TrafficManager\";\n /** Type of the DNS record. */\n customHostNameDnsRecordType?: \"CName\" | \"A\";\n /** Type of the hostname. */\n hostNameType?: \"Verified\" | \"Managed\";\n}\n\nexport interface DomainPurchaseConsent {\n /** List of applicable legal agreement keys. This list can be retrieved using ListLegalAgreements API under <code>TopLevelDomain</code> resource. */\n agreementKeys?: Array<string>;\n /** Client IP address. */\n agreedBy?: string;\n /** Timestamp when the agreements were accepted. */\n agreedAt?: Date | string;\n}\n\nexport interface DomainRecommendationSearchParameters {\n /** Keywords to be used for generating domain recommendations. */\n keywords?: string;\n /** Maximum number of recommendations. */\n maxDomainRecommendations?: number;\n}\n\nexport interface DomainPatchResource extends ProxyOnlyResource {\n /** DomainPatchResource resource specific properties */\n properties?: DomainPatchResourceProperties;\n}\n\nexport interface DomainPatchResourceProperties {\n /** Administrative contact. */\n contactAdmin: Contact;\n /** Billing contact. */\n contactBilling: Contact;\n /** Registrant contact. */\n contactRegistrant: Contact;\n /** Technical contact. */\n contactTech: Contact;\n /** Domain registration status. */\n registrationStatus?:\n | \"Active\"\n | \"Awaiting\"\n | \"Cancelled\"\n | \"Confiscated\"\n | \"Disabled\"\n | \"Excluded\"\n | \"Expired\"\n | \"Failed\"\n | \"Held\"\n | \"Locked\"\n | \"Parked\"\n | \"Pending\"\n | \"Reserved\"\n | \"Reverted\"\n | \"Suspended\"\n | \"Transferred\"\n | \"Unknown\"\n | \"Unlocked\"\n | \"Unparked\"\n | \"Updated\"\n | \"JsonConverterFailed\";\n /** Domain provisioning state. */\n provisioningState?: \"Succeeded\" | \"Failed\" | \"Canceled\" | \"InProgress\" | \"Deleting\";\n /** Name servers. */\n nameServers?: Array<string>;\n /** <code>true</code> if domain privacy is enabled for this domain; otherwise, <code>false</code>. */\n privacy?: boolean;\n /** Domain creation timestamp. */\n createdTime?: Date | string;\n /** Domain expiration timestamp. */\n expirationTime?: Date | string;\n /** Timestamp when the domain was renewed last time. */\n lastRenewedTime?: Date | string;\n /** <code>true</code> if the domain should be automatically renewed; otherwise, <code>false</code>. */\n autoRenew?: boolean;\n /**\n * <code>true</code> if Azure can assign this domain to App Service apps; otherwise, <code>false</code>. This value will be <code>true</code> if domain registration status is active and\n * it is hosted on name servers Azure has programmatic access to.\n */\n readyForDnsRecordManagement?: boolean;\n /** All hostnames derived from the domain and assigned to Azure resources. */\n managedHostNames?: Array<HostName>;\n /** Legal agreement consent. */\n consent: DomainPurchaseConsent;\n /** Reasons why domain is not renewable. */\n domainNotRenewableReasons?: Array<\n | \"RegistrationStatusNotSupportedForRenewal\"\n | \"ExpirationNotInRenewalTimeRange\"\n | \"SubscriptionNotActive\"\n >;\n /** Current DNS type */\n dnsType?: \"AzureDns\" | \"DefaultDomainRegistrarDns\";\n /** Azure DNS Zone to use */\n dnsZoneId?: string;\n /** Target DNS type (would be used for migration) */\n targetDnsType?: \"AzureDns\" | \"DefaultDomainRegistrarDns\";\n authCode?: string;\n}\n\nexport interface DomainOwnershipIdentifier extends ProxyOnlyResource {\n /** DomainOwnershipIdentifier resource specific properties */\n properties?: DomainOwnershipIdentifierProperties;\n}\n\nexport interface DomainOwnershipIdentifierProperties {\n /** Ownership Id. */\n ownershipId?: string;\n}\n\nexport interface TopLevelDomain extends ProxyOnlyResource {\n /** TopLevelDomain resource specific properties */\n properties?: TopLevelDomainProperties;\n}\n\nexport interface TopLevelDomainProperties {\n /** If <code>true</code>, then the top level domain supports domain privacy; otherwise, <code>false</code>. */\n privacy?: boolean;\n}\n\nexport interface TopLevelDomainAgreementOption {\n /** If <code>true</code>, then the list of agreements will include agreements for domain privacy as well; otherwise, <code>false</code>. */\n includePrivacy?: boolean;\n /** If <code>true</code>, then the list of agreements will include agreements for domain transfer as well; otherwise, <code>false</code>. */\n forTransfer?: boolean;\n}\n\nexport interface AppServiceEnvironmentResource extends Resource {\n /** Core resource properties */\n properties?: AppServiceEnvironment;\n}\n\nexport interface AppServiceEnvironment {\n /** Provisioning state of the App Service Environment. */\n provisioningState?: \"Succeeded\" | \"Failed\" | \"Canceled\" | \"InProgress\" | \"Deleting\";\n /** Current status of the App Service Environment. */\n status?: \"Preparing\" | \"Ready\" | \"Scaling\" | \"Deleting\";\n /** Description of the Virtual Network. */\n virtualNetwork: VirtualNetworkProfile;\n /** Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment. */\n internalLoadBalancingMode?: \"None\" | \"Web\" | \"Publishing\" | \"Web, Publishing\";\n /** Front-end VM size, e.g. \"Medium\", \"Large\". */\n multiSize?: string;\n /** Number of front-end instances. */\n multiRoleCount?: number;\n /** Number of IP SSL addresses reserved for the App Service Environment. */\n ipsslAddressCount?: number;\n /** DNS suffix of the App Service Environment. */\n dnsSuffix?: string;\n /** Maximum number of VMs in the App Service Environment. */\n maximumNumberOfMachines?: number;\n /** Scale factor for front-ends. */\n frontEndScaleFactor?: number;\n /**\n * <code>true</code> if the App Service Environment is suspended; otherwise, <code>false</code>. The environment can be suspended, e.g. when the management endpoint is no longer available\n * (most likely because NSG blocked the incoming traffic).\n */\n suspended?: boolean;\n /** Custom settings for changing the behavior of the App Service Environment. */\n clusterSettings?: Array<NameValuePair>;\n /** User added ip ranges to whitelist on ASE db */\n userWhitelistedIpRanges?: Array<string>;\n /** Flag that displays whether an ASE has linux workers or not */\n hasLinuxWorkers?: boolean;\n /** Dedicated Host Count */\n dedicatedHostCount?: number;\n /** Whether or not this App Service Environment is zone-redundant. */\n zoneRedundant?: boolean;\n}\n\nexport interface VirtualNetworkProfile {\n /** Resource id of the Virtual Network. */\n id: string;\n /** Name of the Virtual Network (read-only). */\n name?: string;\n /** Resource type of the Virtual Network (read-only). */\n type?: string;\n /** Subnet within the Virtual Network. */\n subnet?: string;\n}\n\nexport interface NameValuePair {\n /** Pair name. */\n name?: string;\n /** Pair value. */\n value?: string;\n}\n\nexport interface AppServiceEnvironmentPatchResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: AppServiceEnvironment;\n}\n\nexport interface AddressResponse extends ProxyOnlyResource {\n /** AddressResponse resource specific properties */\n properties?: AddressResponseProperties;\n}\n\nexport interface AddressResponseProperties {\n /** Main public virtual IP. */\n serviceIpAddress?: string;\n /** Virtual Network internal IP address of the App Service Environment if it is in internal load-balancing mode. */\n internalIpAddress?: string;\n /** IP addresses appearing on outbound connections. */\n outboundIpAddresses?: Array<string>;\n /** Additional virtual IPs. */\n vipMappings?: Array<VirtualIPMapping>;\n}\n\nexport interface VirtualIPMapping {\n /** Virtual IP address. */\n virtualIP?: string;\n /** Internal HTTP port. */\n internalHttpPort?: number;\n /** Internal HTTPS port. */\n internalHttpsPort?: number;\n /** Is virtual IP mapping in use. */\n inUse?: boolean;\n /** name of the service that virtual IP is assigned to */\n serviceName?: string;\n}\n\nexport interface Site extends Resource {\n /** Site resource specific properties */\n properties?: SiteProperties;\n /** Managed service identity. */\n identity?: ManagedServiceIdentity;\n /** Extended Location. */\n extendedLocation?: ExtendedLocation;\n}\n\nexport interface SiteProperties {\n /** Current state of the app. */\n state?: string;\n /** Hostnames associated with the app. */\n hostNames?: Array<string>;\n /** Name of the repository site. */\n repositorySiteName?: string;\n /** State indicating whether the app has exceeded its quota usage. Read-only. */\n usageState?: \"Normal\" | \"Exceeded\";\n /** <code>true</code> if the app is enabled; otherwise, <code>false</code>. Setting this value to false disables the app (takes the app offline). */\n enabled?: boolean;\n /**\n * Enabled hostnames for the app.Hostnames need to be assigned (see HostNames) AND enabled. Otherwise,\n * the app is not served on those hostnames.\n */\n enabledHostNames?: Array<string>;\n /** Management information availability state for the app. */\n availabilityState?: \"Normal\" | \"Limited\" | \"DisasterRecoveryMode\";\n /** Hostname SSL states are used to manage the SSL bindings for app's hostnames. */\n hostNameSslStates?: Array<HostNameSslState>;\n /** Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\". */\n serverFarmId?: string;\n /** <code>true</code> if reserved; otherwise, <code>false</code>. */\n reserved?: boolean;\n /** Obsolete: Hyper-V sandbox. */\n isXenon?: boolean;\n /** Hyper-V sandbox. */\n hyperV?: boolean;\n /** Last time the app was modified, in UTC. Read-only. */\n lastModifiedTimeUtc?: Date | string;\n /** Configuration of the app. */\n siteConfig?: SiteConfig;\n /** Azure Traffic Manager hostnames associated with the app. Read-only. */\n trafficManagerHostNames?: Array<string>;\n /** <code>true</code> to stop SCM (KUDU) site when the app is stopped; otherwise, <code>false</code>. The default is <code>false</code>. */\n scmSiteAlsoStopped?: boolean;\n /** Specifies which deployment slot this app will swap into. Read-only. */\n targetSwapSlot?: string;\n /** App Service Environment to use for the app. */\n hostingEnvironmentProfile?: HostingEnvironmentProfile;\n /** <code>true</code> to enable client affinity; <code>false</code> to stop sending session affinity cookies, which route client requests in the same session to the same instance. Default is <code>true</code>. */\n clientAffinityEnabled?: boolean;\n /** <code>true</code> to enable client certificate authentication (TLS mutual authentication); otherwise, <code>false</code>. Default is <code>false</code>. */\n clientCertEnabled?: boolean;\n /**\n * This composes with ClientCertEnabled setting.\n * - ClientCertEnabled: false means ClientCert is ignored.\n * - ClientCertEnabled: true and ClientCertMode: Required means ClientCert is required.\n * - ClientCertEnabled: true and ClientCertMode: Optional means ClientCert is optional or accepted.\n */\n clientCertMode?: \"Required\" | \"Optional\" | \"OptionalInteractiveUser\";\n /** client certificate authentication comma-separated exclusion paths */\n clientCertExclusionPaths?: string;\n /**\n * <code>true</code> to disable the public hostnames of the app; otherwise, <code>false</code>.\n * If <code>true</code>, the app is only accessible via API management process.\n */\n hostNamesDisabled?: boolean;\n /** Unique identifier that verifies the custom domains assigned to the app. Customer will add this id to a txt record for verification. */\n customDomainVerificationId?: string;\n /** List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from tenants that site can be hosted with current settings. Read-only. */\n outboundIpAddresses?: string;\n /** List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from all tenants except dataComponent. Read-only. */\n possibleOutboundIpAddresses?: string;\n /** Size of the function container. */\n containerSize?: number;\n /** Maximum allowed daily memory-time quota (applicable on dynamic apps only). */\n dailyMemoryTimeQuota?: number;\n /** App suspended till in case memory-time quota is exceeded. */\n suspendedTill?: Date | string;\n /**\n * Maximum number of workers.\n * This only applies to Functions container.\n */\n maxNumberOfWorkers?: number;\n /** If specified during app creation, the app is cloned from a source app. */\n cloningInfo?: CloningInfo;\n /** Name of the resource group the app belongs to. Read-only. */\n resourceGroup?: string;\n /** <code>true</code> if the app is a default container; otherwise, <code>false</code>. */\n isDefaultContainer?: boolean;\n /** Default hostname of the app. Read-only. */\n defaultHostName?: string;\n /** Status of the last deployment slot swap operation. */\n slotSwapStatus?: SlotSwapStatus;\n /**\n * HttpsOnly: configures a web site to accept only https requests. Issues redirect for\n * http requests\n */\n httpsOnly?: boolean;\n /** Site redundancy mode */\n redundancyMode?: \"None\" | \"Manual\" | \"Failover\" | \"ActiveActive\" | \"GeoRedundant\";\n /**\n * Specifies an operation id if this site has a pending operation.\n *\n * Value may contain a UUID\n */\n inProgressOperationId?: string;\n /** Checks if Customer provided storage account is required */\n storageAccountRequired?: boolean;\n /** Identity to use for Key Vault Reference authentication. */\n keyVaultReferenceIdentity?: string;\n /**\n * Azure Resource Manager ID of the Virtual network and subnet to be joined by Regional VNET Integration.\n * This must be of the form /subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}\n */\n virtualNetworkSubnetId?: string;\n}\n\nexport interface HostNameSslState {\n /** Hostname. */\n name?: string;\n /** SSL type. */\n sslState?: \"Disabled\" | \"SniEnabled\" | \"IpBasedEnabled\";\n /** Virtual IP address assigned to the hostname if IP based SSL is enabled. */\n virtualIP?: string;\n /** SSL certificate thumbprint. */\n thumbprint?: string;\n /** Set to <code>true</code> to update existing hostname. */\n toUpdate?: boolean;\n /** Indicates whether the hostname is a standard or repository hostname. */\n hostType?: \"Standard\" | \"Repository\";\n}\n\nexport interface SiteConfig {\n /** Number of workers. */\n numberOfWorkers?: number;\n /** Default documents. */\n defaultDocuments?: Array<string>;\n /** .NET Framework version. */\n netFrameworkVersion?: string;\n /** Version of PHP. */\n phpVersion?: string;\n /** Version of Python. */\n pythonVersion?: string;\n /** Version of Node.js. */\n nodeVersion?: string;\n /** Version of PowerShell. */\n powerShellVersion?: string;\n /** Linux App Framework and version */\n linuxFxVersion?: string;\n /** Xenon App Framework and version */\n windowsFxVersion?: string;\n /** <code>true</code> if request tracing is enabled; otherwise, <code>false</code>. */\n requestTracingEnabled?: boolean;\n /** Request tracing expiration time. */\n requestTracingExpirationTime?: Date | string;\n /** <code>true</code> if remote debugging is enabled; otherwise, <code>false</code>. */\n remoteDebuggingEnabled?: boolean;\n /** Remote debugging version. */\n remoteDebuggingVersion?: string;\n /** <code>true</code> if HTTP logging is enabled; otherwise, <code>false</code>. */\n httpLoggingEnabled?: boolean;\n /** Flag to use Managed Identity Creds for ACR pull */\n acrUseManagedIdentityCreds?: boolean;\n /** If using user managed identity, the user managed identity ClientId */\n acrUserManagedIdentityID?: string;\n /** HTTP logs directory size limit. */\n logsDirectorySizeLimit?: number;\n /** <code>true</code> if detailed error logging is enabled; otherwise, <code>false</code>. */\n detailedErrorLoggingEnabled?: boolean;\n /** Publishing user name. */\n publishingUsername?: string;\n /** Application settings. */\n appSettings?: Array<NameValuePair>;\n /** Connection strings. */\n connectionStrings?: Array<ConnStringInfo>;\n /** Site MachineKey. */\n machineKey?: SiteMachineKey;\n /** Handler mappings. */\n handlerMappings?: Array<HandlerMapping>;\n /** Document root. */\n documentRoot?: string;\n /** SCM type. */\n scmType?:\n | \"None\"\n | \"Dropbox\"\n | \"Tfs\"\n | \"LocalGit\"\n | \"GitHub\"\n | \"CodePlexGit\"\n | \"CodePlexHg\"\n | \"BitbucketGit\"\n | \"BitbucketHg\"\n | \"ExternalGit\"\n | \"ExternalHg\"\n | \"OneDrive\"\n | \"VSO\"\n | \"VSTSRM\";\n /** <code>true</code> to use 32-bit worker process; otherwise, <code>false</code>. */\n use32BitWorkerProcess?: boolean;\n /** <code>true</code> if WebSocket is enabled; otherwise, <code>false</code>. */\n webSocketsEnabled?: boolean;\n /** <code>true</code> if Always On is enabled; otherwise, <code>false</code>. */\n alwaysOn?: boolean;\n /** Java version. */\n javaVersion?: string;\n /** Java container. */\n javaContainer?: string;\n /** Java container version. */\n javaContainerVersion?: string;\n /** App command line to launch. */\n appCommandLine?: string;\n /** Managed pipeline mode. */\n managedPipelineMode?: \"Integrated\" | \"Classic\";\n /** Virtual applications. */\n virtualApplications?: Array<VirtualApplication>;\n /** Site load balancing. */\n loadBalancing?:\n | \"WeightedRoundRobin\"\n | \"LeastRequests\"\n | \"LeastResponseTime\"\n | \"WeightedTotalTraffic\"\n | \"RequestHash\"\n | \"PerSiteRoundRobin\";\n /** This is work around for polymorphic types. */\n experiments?: Experiments;\n /** Site limits. */\n limits?: SiteLimits;\n /** <code>true</code> if Auto Heal is enabled; otherwise, <code>false</code>. */\n autoHealEnabled?: boolean;\n /** Auto Heal rules. */\n autoHealRules?: AutoHealRules;\n /** Tracing options. */\n tracingOptions?: string;\n /** Virtual Network name. */\n vnetName?: string;\n /** Virtual Network Route All enabled. This causes all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied. */\n vnetRouteAllEnabled?: boolean;\n /** The number of private ports assigned to this app. These will be assigned dynamically on runtime. */\n vnetPrivatePortsCount?: number;\n /** Cross-Origin Resource Sharing (CORS) settings. */\n cors?: CorsSettings;\n /** Push endpoint settings. */\n push?: PushSettings;\n /** Information about the formal API definition for the app. */\n apiDefinition?: ApiDefinitionInfo;\n /** Azure API management settings linked to the app. */\n apiManagementConfig?: ApiManagementConfig;\n /** Auto-swap slot name. */\n autoSwapSlotName?: string;\n /** <code>true</code> to enable local MySQL; otherwise, <code>false</code>. */\n localMySqlEnabled?: boolean;\n /** Managed Service Identity Id */\n managedServiceIdentityId?: number;\n /** Explicit Managed Service Identity Id */\n xManagedServiceIdentityId?: number;\n /** Identity to use for Key Vault Reference authentication. */\n keyVaultReferenceIdentity?: string;\n /** IP security restrictions for main. */\n ipSecurityRestrictions?: Array<IpSecurityRestriction>;\n /** IP security restrictions for scm. */\n scmIpSecurityRestrictions?: Array<IpSecurityRestriction>;\n /** IP security restrictions for scm to use main. */\n scmIpSecurityRestrictionsUseMain?: boolean;\n /** Http20Enabled: configures a web site to allow clients to connect over http2.0 */\n http20Enabled?: boolean;\n /** MinTlsVersion: configures the minimum version of TLS required for SSL requests */\n minTlsVersion?: \"1.0\" | \"1.1\" | \"1.2\";\n /** ScmMinTlsVersion: configures the minimum version of TLS required for SSL requests for SCM site */\n scmMinTlsVersion?: \"1.0\" | \"1.1\" | \"1.2\";\n /** State of FTP / FTPS service */\n ftpsState?: \"AllAllowed\" | \"FtpsOnly\" | \"Disabled\";\n /**\n * Number of preWarmed instances.\n * This setting only applies to the Consumption and Elastic Plans\n */\n preWarmedInstanceCount?: number;\n /**\n * Maximum number of workers that a site can scale out to.\n * This setting only applies to the Consumption and Elastic Premium Plans\n */\n functionAppScaleLimit?: number;\n /** Health check path */\n healthCheckPath?: string;\n /**\n * Gets or sets a value indicating whether functions runtime scale monitoring is enabled. When enabled,\n * the ScaleController will not monitor event sources directly, but will instead call to the\n * runtime to get scale status.\n */\n functionsRuntimeScaleMonitoringEnabled?: boolean;\n /** 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 */\n websiteTimeZone?: string;\n /**\n * Number of minimum instance count for a site\n * This setting only applies to the Elastic Plans\n */\n minimumElasticInstanceCount?: number;\n /** List of Azure Storage Accounts. */\n azureStorageAccounts?: Record<string, AzureStorageInfoValue>;\n /** Property to allow or block all public traffic. */\n publicNetworkAccess?: string;\n}\n\nexport interface ConnStringInfo {\n /** Name of connection string. */\n name?: string;\n /** Connection string value. */\n connectionString?: string;\n /** Type of database. */\n type?:\n | \"MySql\"\n | \"SQLServer\"\n | \"SQLAzure\"\n | \"Custom\"\n | \"NotificationHub\"\n | \"ServiceBus\"\n | \"EventHub\"\n | \"ApiHub\"\n | \"DocDb\"\n | \"RedisCache\"\n | \"PostgreSQL\";\n}\n\nexport interface SiteMachineKey {\n /** MachineKey validation. */\n validation?: string;\n /** Validation key. */\n validationKey?: string;\n /** Algorithm used for decryption. */\n decryption?: string;\n /** Decryption key. */\n decryptionKey?: string;\n}\n\nexport interface HandlerMapping {\n /** Requests with this extension will be handled using the specified FastCGI application. */\n extension?: string;\n /** The absolute path to the FastCGI application. */\n scriptProcessor?: string;\n /** Command-line arguments to be passed to the script processor. */\n arguments?: string;\n}\n\nexport interface VirtualApplication {\n /** Virtual path. */\n virtualPath?: string;\n /** Physical path. */\n physicalPath?: string;\n /** <code>true</code> if preloading is enabled; otherwise, <code>false</code>. */\n preloadEnabled?: boolean;\n /** Virtual directories for virtual application. */\n virtualDirectories?: Array<VirtualDirectory>;\n}\n\nexport interface VirtualDirectory {\n /** Path to virtual application. */\n virtualPath?: string;\n /** Physical path. */\n physicalPath?: string;\n}\n\nexport interface Experiments {\n /** List of ramp-up rules. */\n rampUpRules?: Array<RampUpRule>;\n}\n\nexport interface RampUpRule {\n /** Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net. */\n actionHostName?: string;\n /** Percentage of the traffic which will be redirected to <code>ActionHostName</code>. */\n reroutePercentage?: number;\n /**\n * In auto ramp up scenario this is the step to add/remove from <code>ReroutePercentage</code> until it reaches \\n<code>MinReroutePercentage</code> or\n * <code>MaxReroutePercentage</code>. Site metrics are checked every N minutes specified in <code>ChangeIntervalInMinutes</code>.\\nCustom decision algorithm\n * can be provided in TiPCallback site extension which URL can be specified in <code>ChangeDecisionCallbackUrl</code>.\n */\n changeStep?: number;\n /** Specifies interval in minutes to reevaluate ReroutePercentage. */\n changeIntervalInMinutes?: number;\n /** Specifies lower boundary above which ReroutePercentage will stay. */\n minReroutePercentage?: number;\n /** Specifies upper boundary below which ReroutePercentage will stay. */\n maxReroutePercentage?: number;\n /**\n * Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified. See TiPCallback site extension for the scaffold and contracts.\n * https://www.siteextensions.net/packages/TiPCallback/\n */\n changeDecisionCallbackUrl?: string;\n /** Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment. */\n name?: string;\n}\n\nexport interface SiteLimits {\n /** Maximum allowed CPU usage percentage. */\n maxPercentageCpu?: number;\n /** Maximum allowed memory usage in MB. */\n maxMemoryInMb?: number;\n /** Maximum allowed disk size usage in MB. */\n maxDiskSizeInMb?: number;\n}\n\nexport interface AutoHealRules {\n /** Conditions that describe when to execute the auto-heal actions. */\n triggers?: AutoHealTriggers;\n /** Actions to be executed when a rule is triggered. */\n actions?: AutoHealActions;\n}\n\nexport interface AutoHealTriggers {\n /** A rule based on total requests. */\n requests?: RequestsBasedTrigger;\n /** A rule based on private bytes. */\n privateBytesInKB?: number;\n /** A rule based on status codes. */\n statusCodes?: Array<StatusCodesBasedTrigger>;\n /** A rule based on request execution time. */\n slowRequests?: SlowRequestsBasedTrigger;\n /** A rule based on multiple Slow Requests Rule with path */\n slowRequestsWithPath?: Array<SlowRequestsBasedTrigger>;\n /** A rule based on status codes ranges. */\n statusCodesRange?: Array<StatusCodesRangeBasedTrigger>;\n}\n\nexport interface RequestsBasedTrigger {\n /** Request Count. */\n count?: number;\n /** Time interval. */\n timeInterval?: string;\n}\n\nexport interface StatusCodesBasedTrigger {\n /** HTTP status code. */\n status?: number;\n /** Request Sub Status. */\n subStatus?: number;\n /** Win32 error code. */\n win32Status?: number;\n /** Request Count. */\n count?: number;\n /** Time interval. */\n timeInterval?: string;\n /** Request Path */\n path?: string;\n}\n\nexport interface SlowRequestsBasedTrigger {\n /** Time taken. */\n timeTaken?: string;\n /** Request Path. */\n path?: string;\n /** Request Count. */\n count?: number;\n /** Time interval. */\n timeInterval?: string;\n}\n\nexport interface StatusCodesRangeBasedTrigger {\n /** HTTP status code. */\n statusCodes?: string;\n path?: string;\n /** Request Count. */\n count?: number;\n /** Time interval. */\n timeInterval?: string;\n}\n\nexport interface AutoHealActions {\n /** Predefined action to be taken. */\n actionType?: \"Recycle\" | \"LogEvent\" | \"CustomAction\";\n /** Custom action to be taken. */\n customAction?: AutoHealCustomAction;\n /**\n * Minimum time the process must execute\n * before taking the action\n */\n minProcessExecutionTime?: string;\n}\n\nexport interface AutoHealCustomAction {\n /** Executable to be run. */\n exe?: string;\n /** Parameters for the executable. */\n parameters?: string;\n}\n\nexport interface CorsSettings {\n /**\n * Gets or sets the list of origins that should be allowed to make cross-origin\n * calls (for example: http://example.com:12345). Use \"*\" to allow all.\n */\n allowedOrigins?: Array<string>;\n /**\n * Gets or sets whether CORS requests with credentials are allowed. See\n * https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials\n * for more details.\n */\n supportCredentials?: boolean;\n}\n\nexport interface PushSettings extends ProxyOnlyResource {\n /** PushSettings resource specific properties */\n properties?: PushSettingsProperties;\n}\n\nexport interface PushSettingsProperties {\n /** Gets or sets a flag indicating whether the Push endpoint is enabled. */\n isPushEnabled: boolean;\n /** Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint. */\n tagWhitelistJson?: string;\n /**\n * Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint.\n * Tags can consist of alphanumeric characters and the following:\n * '_', '@', '#', '.', ':', '-'.\n * Validation should be performed at the PushRequestHandler.\n */\n tagsRequiringAuth?: string;\n /** Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint. */\n dynamicTagsJson?: string;\n}\n\nexport interface ApiDefinitionInfo {\n /** The URL of the API definition. */\n url?: string;\n}\n\nexport interface ApiManagementConfig {\n /** APIM-Api Identifier. */\n id?: string;\n}\n\nexport interface IpSecurityRestriction {\n /**\n * IP address the security restriction is valid for.\n * It can be in form of pure ipv4 address (required SubnetMask property) or\n * CIDR notation such as ipv4/mask (leading bit match). For CIDR,\n * SubnetMask property must not be specified.\n */\n ipAddress?: string;\n /** Subnet mask for the range of IP addresses the restriction is valid for. */\n subnetMask?: string;\n /** Virtual network resource id */\n vnetSubnetResourceId?: string;\n /** (internal) Vnet traffic tag */\n vnetTrafficTag?: number;\n /** (internal) Subnet traffic tag */\n subnetTrafficTag?: number;\n /** Allow or Deny access for this IP range. */\n action?: string;\n /** Defines what this IP filter will be used for. This is to support IP filtering on proxies. */\n tag?: \"Default\" | \"XffProxy\" | \"ServiceTag\";\n /** Priority of IP restriction rule. */\n priority?: number;\n /** IP restriction rule name. */\n name?: string;\n /** IP restriction rule description. */\n description?: string;\n /**\n * IP restriction rule headers.\n * X-Forwarded-Host (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Host#Examples).\n * The matching logic is ..\n * - If the property is null or empty (default), all hosts(or lack of) are allowed.\n * - A value is compared using ordinal-ignore-case (excluding port number).\n * - Subdomain wildcards are permitted but don't match the root domain. For example, *.contoso.com matches the subdomain foo.contoso.com\n * but not the root domain contoso.com or multi-level foo.bar.contoso.com\n * - Unicode host names are allowed but are converted to Punycode for matching.\n *\n * X-Forwarded-For (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For#Examples).\n * The matching logic is ..\n * - If the property is null or empty (default), any forwarded-for chains (or lack of) are allowed.\n * - If any address (excluding port number) in the chain (comma separated) matches the CIDR defined by the property.\n *\n * X-Azure-FDID and X-FD-HealthProbe.\n * The matching logic is exact match.\n */\n headers?: Record<string, Array<string>>;\n}\n\nexport interface AzureStorageInfoValue {\n /** Type of storage. */\n type?: \"AzureFiles\" | \"AzureBlob\";\n /** Name of the storage account. */\n accountName?: string;\n /** Name of the file share (container name, for Blob storage). */\n shareName?: string;\n /** Access key for the storage account. */\n accessKey?: string;\n /** Path to mount the storage within the site's runtime environment. */\n mountPath?: string;\n /** State of the storage account. */\n state?: \"Ok\" | \"InvalidCredentials\" | \"InvalidShare\" | \"NotValidated\";\n}\n\nexport interface HostingEnvironmentProfile {\n /** Resource ID of the App Service Environment. */\n id?: string;\n /** Name of the App Service Environment. */\n name?: string;\n /** Resource type of the App Service Environment. */\n type?: string;\n}\n\nexport interface CloningInfo {\n /**\n * Correlation ID of cloning operation. This ID ties multiple cloning operations\n * together to use the same snapshot.\n *\n * Value may contain a UUID\n */\n correlationId?: string;\n /** <code>true</code> to overwrite destination app; otherwise, <code>false</code>. */\n overwrite?: boolean;\n /** <code>true</code> to clone custom hostnames from source app; otherwise, <code>false</code>. */\n cloneCustomHostNames?: boolean;\n /** <code>true</code> to clone source control from source app; otherwise, <code>false</code>. */\n cloneSourceControl?: boolean;\n /**\n * ARM resource ID of the source app. App resource ID is of the form\n * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and\n * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.\n */\n sourceWebAppId: string;\n /** Location of source app ex: West US or North Europe */\n sourceWebAppLocation?: string;\n /** App Service Environment. */\n hostingEnvironment?: string;\n /**\n * Application setting overrides for cloned app. If specified, these settings override the settings cloned\n * from source app. Otherwise, application settings from source app are retained.\n */\n appSettingsOverrides?: Record<string, string>;\n /** <code>true</code> to configure load balancing for source and destination app. */\n configureLoadBalancing?: boolean;\n /**\n * ARM resource ID of the Traffic Manager profile to use, if it exists. Traffic Manager resource ID is of the form\n * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.\n */\n trafficManagerProfileId?: string;\n /** Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist. */\n trafficManagerProfileName?: string;\n}\n\nexport interface SlotSwapStatus {\n /** The time the last successful slot swap completed. */\n timestampUtc?: Date | string;\n /** The source slot of the last swap operation. */\n sourceSlotName?: string;\n /** The destination slot of the last swap operation. */\n destinationSlotName?: string;\n}\n\nexport interface ManagedServiceIdentity {\n /** Type of managed service identity. */\n type?: \"SystemAssigned\" | \"UserAssigned\" | \"SystemAssigned, UserAssigned\" | \"None\";\n /** Tenant of managed service identity. */\n tenantId?: string;\n /** Principal Id of managed service identity. */\n principalId?: string;\n /** The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName} */\n userAssignedIdentities?: Record<string, UserAssignedIdentity>;\n}\n\nexport interface UserAssignedIdentity {\n /** Principal Id of user assigned identity */\n principalId?: string;\n /** Client Id of user assigned identity */\n clientId?: string;\n}\n\nexport interface ExtendedLocation {\n /** Name of extended location. */\n name?: string;\n /** Type of extended location. */\n type?: string;\n}\n\nexport interface AseV3NetworkingConfiguration extends ProxyOnlyResource {\n /** AseV3NetworkingConfiguration resource specific properties */\n properties?: AseV3NetworkingConfigurationProperties;\n}\n\nexport interface AseV3NetworkingConfigurationProperties {\n windowsOutboundIpAddresses?: Array<string>;\n linuxOutboundIpAddresses?: Array<string>;\n externalInboundIpAddresses?: Array<string>;\n internalInboundIpAddresses?: Array<string>;\n /** Property to enable and disable new private endpoint connection creation on ASE */\n allowNewPrivateEndpointConnections?: boolean;\n}\n\nexport interface WorkerPoolResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: WorkerPool;\n /** Description of a SKU for a scalable resource. */\n sku?: SkuDescription;\n}\n\nexport interface WorkerPool {\n /** Worker size ID for referencing this worker pool. */\n workerSizeId?: number;\n /** Shared or dedicated app hosting. */\n computeMode?: \"Shared\" | \"Dedicated\" | \"Dynamic\";\n /** VM size of the worker pool instances. */\n workerSize?: string;\n /** Number of instances in the worker pool. */\n workerCount?: number;\n /** Names of all instances in the worker pool (read only). */\n instanceNames?: Array<string>;\n}\n\nexport interface SkuDescription {\n /** Name of the resource SKU. */\n name?: string;\n /** Service tier of the resource SKU. */\n tier?: string;\n /** Size specifier of the resource SKU. */\n size?: string;\n /** Family code of the resource SKU. */\n family?: string;\n /** Current number of instances assigned to the resource. */\n capacity?: number;\n /** Min, max, and default scale values of the SKU. */\n skuCapacity?: SkuCapacity;\n /** Locations of the SKU. */\n locations?: Array<string>;\n /** Capabilities of the SKU, e.g., is traffic manager enabled? */\n capabilities?: Array<Capability>;\n}\n\nexport interface SkuCapacity {\n /** Minimum number of workers for this App Service plan SKU. */\n minimum?: number;\n /** Maximum number of workers for this App Service plan SKU. */\n maximum?: number;\n /** Maximum number of Elastic workers for this App Service plan SKU. */\n elasticMaximum?: number;\n /** Default number of workers for this App Service plan SKU. */\n default?: number;\n /** Available scale configurations for an App Service plan. */\n scaleType?: string;\n}\n\nexport interface Capability {\n /** Name of the SKU capability. */\n name?: string;\n /** Value of the SKU capability. */\n value?: string;\n /** Reason of the SKU capability. */\n reason?: string;\n}\n\nexport interface ResourceMetricDefinition extends ProxyOnlyResource {\n /** ResourceMetricDefinition resource specific properties */\n properties?: ResourceMetricDefinitionProperties;\n}\n\nexport interface ResourceMetricDefinitionProperties {\n /** Unit of the metric. */\n unit?: string;\n /** Primary aggregation type. */\n primaryAggregationType?: string;\n /** List of time grains supported for the metric together with retention period. */\n metricAvailabilities?: Array<ResourceMetricAvailability>;\n /** Resource URI. */\n resourceUri?: string;\n /** Resource metric definition properties. */\n properties?: Record<string, string>;\n}\n\nexport interface ResourceMetricAvailability {\n /** Time grain . */\n timeGrain?: string;\n /** Retention period for the current time grain. */\n retention?: string;\n}\n\nexport interface Usage extends ProxyOnlyResource {\n /** Usage resource specific properties */\n properties?: UsageProperties;\n}\n\nexport interface UsageProperties {\n /** Friendly name shown in the UI. */\n displayName?: string;\n /** Name of the quota resource. */\n resourceName?: string;\n /** Units of measurement for the quota resource. */\n unit?: string;\n /** The current value of the resource counter. */\n currentValue?: number;\n /** The resource limit. */\n limit?: number;\n /** Next reset time for the resource counter. */\n nextResetTime?: Date | string;\n /** Compute mode used for this usage. */\n computeMode?: \"Shared\" | \"Dedicated\" | \"Dynamic\";\n /** Site mode used for this usage. */\n siteMode?: string;\n}\n\nexport interface ErrorEntity {\n /** Type of error. */\n extendedCode?: string;\n /** Message template. */\n messageTemplate?: string;\n /** Parameters for the template. */\n parameters?: Array<string>;\n /** Inner errors. */\n innerErrors?: Array<ErrorEntity>;\n /** Error Details. */\n details?: Array<ErrorEntity>;\n /** The error target. */\n target?: string;\n /** Basic error code. */\n code?: string;\n /** Any details of the error. */\n message?: string;\n}\n\nexport interface RemotePrivateEndpointConnectionARMResource extends ProxyOnlyResource {\n /** RemotePrivateEndpointConnectionARMResource resource specific properties */\n properties?: RemotePrivateEndpointConnectionARMResourceProperties;\n}\n\nexport interface RemotePrivateEndpointConnectionARMResourceProperties {\n provisioningState?: string;\n /** PrivateEndpoint of a remote private endpoint connection */\n privateEndpoint?: ArmIdWrapper;\n /** The state of a private link connection */\n privateLinkServiceConnectionState?: PrivateLinkConnectionState;\n /** Private IPAddresses mapped to the remote private endpoint */\n ipAddresses?: Array<string>;\n}\n\nexport interface ArmIdWrapper {\n id?: string;\n}\n\nexport interface PrivateLinkConnectionState {\n /** Status of a private link connection */\n status?: string;\n /** Description of a private link connection */\n description?: string;\n /** ActionsRequired for a private link connection */\n actionsRequired?: string;\n}\n\nexport interface PrivateLinkConnectionApprovalRequestResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: PrivateLinkConnectionApprovalRequest;\n}\n\nexport interface PrivateLinkConnectionApprovalRequest {\n /** The state of a private link connection */\n privateLinkServiceConnectionState?: PrivateLinkConnectionState;\n}\n\nexport interface AppServicePlan extends Resource {\n /** AppServicePlan resource specific properties */\n properties?: AppServicePlanProperties;\n /** Description of a SKU for a scalable resource. */\n sku?: SkuDescription;\n /** Extended Location. */\n extendedLocation?: ExtendedLocation;\n}\n\nexport interface AppServicePlanProperties {\n /** Target worker tier assigned to the App Service plan. */\n workerTierName?: string;\n /** App Service plan status. */\n status?: \"Ready\" | \"Pending\" | \"Creating\";\n /** App Service plan subscription. */\n subscription?: string;\n /** Specification for the App Service Environment to use for the App Service plan. */\n hostingEnvironmentProfile?: HostingEnvironmentProfile;\n /** Maximum number of instances that can be assigned to this App Service plan. */\n maximumNumberOfWorkers?: number;\n /** Geographical location for the App Service plan. */\n geoRegion?: string;\n /**\n * If <code>true</code>, apps assigned to this App Service plan can be scaled independently.\n * If <code>false</code>, apps assigned to this App Service plan will scale to all instances of the plan.\n */\n perSiteScaling?: boolean;\n /** ServerFarm supports ElasticScale. Apps in this plan will scale as if the ServerFarm was ElasticPremium sku */\n elasticScaleEnabled?: boolean;\n /** Maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan */\n maximumElasticWorkerCount?: number;\n /** Number of apps assigned to this App Service plan. */\n numberOfSites?: number;\n /** If <code>true</code>, this App Service Plan owns spot instances. */\n isSpot?: boolean;\n /** The time when the server farm expires. Valid only if it is a spot server farm. */\n spotExpirationTime?: Date | string;\n /** The time when the server farm free offer expires. */\n freeOfferExpirationTime?: Date | string;\n /** Resource group of the App Service plan. */\n resourceGroup?: string;\n /** If Linux app service plan <code>true</code>, <code>false</code> otherwise. */\n reserved?: boolean;\n /** Obsolete: If Hyper-V container app service plan <code>true</code>, <code>false</code> otherwise. */\n isXenon?: boolean;\n /** If Hyper-V container app service plan <code>true</code>, <code>false</code> otherwise. */\n hyperV?: boolean;\n /** Scaling worker count. */\n targetWorkerCount?: number;\n /** Scaling worker size ID. */\n targetWorkerSizeId?: number;\n /** Provisioning state of the App Service Plan. */\n provisioningState?: \"Succeeded\" | \"Failed\" | \"Canceled\" | \"InProgress\" | \"Deleting\";\n /** Specification for the Kubernetes Environment to use for the App Service plan. */\n kubeEnvironmentProfile?: KubeEnvironmentProfile;\n /**\n * If <code>true</code>, this App Service Plan will perform availability zone balancing.\n * If <code>false</code>, this App Service Plan will not perform availability zone balancing.\n */\n zoneRedundant?: boolean;\n}\n\nexport interface KubeEnvironmentProfile {\n /** Resource ID of the Kubernetes Environment. */\n id?: string;\n /** Name of the Kubernetes Environment. */\n name?: string;\n /** Resource type of the Kubernetes Environment. */\n type?: string;\n}\n\nexport interface AppServicePlanPatchResource extends ProxyOnlyResource {\n /** AppServicePlanPatchResource resource specific properties */\n properties?: AppServicePlanPatchResourceProperties;\n}\n\nexport interface AppServicePlanPatchResourceProperties {\n /** Target worker tier assigned to the App Service plan. */\n workerTierName?: string;\n /** App Service plan status. */\n status?: \"Ready\" | \"Pending\" | \"Creating\";\n /** App Service plan subscription. */\n subscription?: string;\n /** Specification for the App Service Environment to use for the App Service plan. */\n hostingEnvironmentProfile?: HostingEnvironmentProfile;\n /** Maximum number of instances that can be assigned to this App Service plan. */\n maximumNumberOfWorkers?: number;\n /** Geographical location for the App Service plan. */\n geoRegion?: string;\n /**\n * If <code>true</code>, apps assigned to this App Service plan can be scaled independently.\n * If <code>false</code>, apps assigned to this App Service plan will scale to all instances of the plan.\n */\n perSiteScaling?: boolean;\n /** ServerFarm supports ElasticScale. Apps in this plan will scale as if the ServerFarm was ElasticPremium sku */\n elasticScaleEnabled?: boolean;\n /** Maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan */\n maximumElasticWorkerCount?: number;\n /** Number of apps assigned to this App Service plan. */\n numberOfSites?: number;\n /** If <code>true</code>, this App Service Plan owns spot instances. */\n isSpot?: boolean;\n /** The time when the server farm expires. Valid only if it is a spot server farm. */\n spotExpirationTime?: Date | string;\n /** The time when the server farm free offer expires. */\n freeOfferExpirationTime?: Date | string;\n /** Resource group of the App Service plan. */\n resourceGroup?: string;\n /** If Linux app service plan <code>true</code>, <code>false</code> otherwise. */\n reserved?: boolean;\n /** Obsolete: If Hyper-V container app service plan <code>true</code>, <code>false</code> otherwise. */\n isXenon?: boolean;\n /** If Hyper-V container app service plan <code>true</code>, <code>false</code> otherwise. */\n hyperV?: boolean;\n /** Scaling worker count. */\n targetWorkerCount?: number;\n /** Scaling worker size ID. */\n targetWorkerSizeId?: number;\n /** Provisioning state of the App Service Plan. */\n provisioningState?: \"Succeeded\" | \"Failed\" | \"Canceled\" | \"InProgress\" | \"Deleting\";\n /** Specification for the Kubernetes Environment to use for the App Service plan. */\n kubeEnvironmentProfile?: KubeEnvironmentProfile;\n /**\n * If <code>true</code>, this App Service Plan will perform availability zone balancing.\n * If <code>false</code>, this App Service Plan will not perform availability zone balancing.\n */\n zoneRedundant?: boolean;\n}\n\nexport interface HybridConnection extends ProxyOnlyResource {\n /** HybridConnection resource specific properties */\n properties?: HybridConnectionProperties;\n}\n\nexport interface HybridConnectionProperties {\n /** The name of the Service Bus namespace. */\n serviceBusNamespace?: string;\n /** The name of the Service Bus relay. */\n relayName?: string;\n /** The ARM URI to the Service Bus relay. */\n relayArmUri?: string;\n /** The hostname of the endpoint. */\n hostname?: string;\n /** The port of the endpoint. */\n port?: number;\n /** The name of the Service Bus key which has Send permissions. This is used to authenticate to Service Bus. */\n sendKeyName?: string;\n /**\n * The value of the Service Bus key. This is used to authenticate to Service Bus. In ARM this key will not be returned\n * normally, use the POST /listKeys API instead.\n */\n sendKeyValue?: string;\n /** The suffix for the service bus endpoint. By default this is .servicebus.windows.net */\n serviceBusSuffix?: string;\n}\n\nexport interface HybridConnectionKey extends ProxyOnlyResource {\n /** HybridConnectionKey resource specific properties */\n properties?: HybridConnectionKeyProperties;\n}\n\nexport interface HybridConnectionKeyProperties {\n /** The name of the send key. */\n sendKeyName?: string;\n /** The value of the send key. */\n sendKeyValue?: string;\n}\n\nexport interface HybridConnectionLimits extends ProxyOnlyResource {\n /** HybridConnectionLimits resource specific properties */\n properties?: HybridConnectionLimitsProperties;\n}\n\nexport interface HybridConnectionLimitsProperties {\n /** The current number of Hybrid Connections. */\n current?: number;\n /** The maximum number of Hybrid Connections allowed. */\n maximum?: number;\n}\n\nexport interface VnetInfoResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: VnetInfo;\n}\n\nexport interface VnetInfo {\n /** The Virtual Network's resource ID. */\n vnetResourceId?: string;\n /** The client certificate thumbprint. */\n certThumbprint?: string;\n /**\n * A certificate file (.cer) blob containing the public key of the private key used to authenticate a\n * Point-To-Site VPN connection.\n */\n certBlob?: string;\n /** The routes that this Virtual Network connection uses. */\n routes?: Array<VnetRoute>;\n /** <code>true</code> if a resync is required; otherwise, <code>false</code>. */\n resyncRequired?: boolean;\n /** DNS servers to be used by this Virtual Network. This should be a comma-separated list of IP addresses. */\n dnsServers?: string;\n /** Flag that is used to denote if this is VNET injection */\n isSwift?: boolean;\n}\n\nexport interface VnetRoute extends ProxyOnlyResource {\n /** VnetRoute resource specific properties */\n properties?: VnetRouteProperties;\n}\n\nexport interface VnetRouteProperties {\n /** The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified. */\n startAddress?: string;\n /** The ending address for this route. If the start address is specified in CIDR notation, this must be omitted. */\n endAddress?: string;\n /**\n * The type of route this is:\n * DEFAULT - By default, every app has routes to the local address ranges specified by RFC1918\n * INHERITED - Routes inherited from the real Virtual Network routes\n * STATIC - Static route set on the app only\n *\n * These values will be used for syncing an app's routes with those from a Virtual Network.\n */\n routeType?: \"DEFAULT\" | \"INHERITED\" | \"STATIC\";\n}\n\nexport interface VnetGateway extends ProxyOnlyResource {\n /** VnetGateway resource specific properties */\n properties?: VnetGatewayProperties;\n}\n\nexport interface VnetGatewayProperties {\n /** The Virtual Network name. */\n vnetName?: string;\n /** The URI where the VPN package can be downloaded. */\n vpnPackageUri: string;\n}\n\nexport interface Certificate extends Resource {\n /** Certificate resource specific properties */\n properties?: CertificateProperties;\n}\n\nexport interface CertificateProperties {\n /** Certificate password. */\n password?: string;\n /** Friendly name of the certificate. */\n friendlyName?: string;\n /** Subject name of the certificate. */\n subjectName?: string;\n /** Host names the certificate applies to. */\n hostNames?: Array<string>;\n /**\n * Pfx blob.\n *\n * Value may contain base64 encoded characters\n */\n pfxBlob?: string;\n /** App name. */\n siteName?: string;\n /** Self link. */\n selfLink?: string;\n /** Certificate issuer. */\n issuer?: string;\n /** Certificate issue Date. */\n issueDate?: Date | string;\n /** Certificate expiration date. */\n expirationDate?: Date | string;\n /** Certificate thumbprint. */\n thumbprint?: string;\n /** Is the certificate valid?. */\n valid?: boolean;\n /**\n * Raw bytes of .cer file\n *\n * Value may contain base64 encoded characters\n */\n cerBlob?: string;\n /** Public key hash. */\n publicKeyHash?: string;\n /** Specification for the App Service Environment to use for the certificate. */\n hostingEnvironmentProfile?: HostingEnvironmentProfile;\n /** Key Vault Csm resource Id. */\n keyVaultId?: string;\n /** Key Vault secret name. */\n keyVaultSecretName?: string;\n /** Status of the Key Vault secret. */\n keyVaultSecretStatus?:\n | \"Initialized\"\n | \"WaitingOnCertificateOrder\"\n | \"Succeeded\"\n | \"CertificateOrderFailed\"\n | \"OperationNotPermittedOnKeyVault\"\n | \"AzureServiceUnauthorizedToAccessKeyVault\"\n | \"KeyVaultDoesNotExist\"\n | \"KeyVaultSecretDoesNotExist\"\n | \"UnknownError\"\n | \"ExternalPrivateKey\"\n | \"Unknown\";\n /** Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\". */\n serverFarmId?: string;\n /** CNAME of the certificate to be issued via free certificate */\n canonicalName?: string;\n /** Method of domain validation for free cert */\n domainValidationMethod?: string;\n}\n\nexport interface CertificatePatchResource extends ProxyOnlyResource {\n /** CertificatePatchResource resource specific properties */\n properties?: CertificatePatchResourceProperties;\n}\n\nexport interface CertificatePatchResourceProperties {\n /** Certificate password. */\n password?: string;\n /** Friendly name of the certificate. */\n friendlyName?: string;\n /** Subject name of the certificate. */\n subjectName?: string;\n /** Host names the certificate applies to. */\n hostNames?: Array<string>;\n /**\n * Pfx blob.\n *\n * Value may contain base64 encoded characters\n */\n pfxBlob?: string;\n /** App name. */\n siteName?: string;\n /** Self link. */\n selfLink?: string;\n /** Certificate issuer. */\n issuer?: string;\n /** Certificate issue Date. */\n issueDate?: Date | string;\n /** Certificate expiration date. */\n expirationDate?: Date | string;\n /** Certificate thumbprint. */\n thumbprint?: string;\n /** Is the certificate valid?. */\n valid?: boolean;\n /**\n * Raw bytes of .cer file\n *\n * Value may contain base64 encoded characters\n */\n cerBlob?: string;\n /** Public key hash. */\n publicKeyHash?: string;\n /** Specification for the App Service Environment to use for the certificate. */\n hostingEnvironmentProfile?: HostingEnvironmentProfile;\n /** Key Vault Csm resource Id. */\n keyVaultId?: string;\n /** Key Vault secret name. */\n keyVaultSecretName?: string;\n /** Status of the Key Vault secret. */\n keyVaultSecretStatus?:\n | \"Initialized\"\n | \"WaitingOnCertificateOrder\"\n | \"Succeeded\"\n | \"CertificateOrderFailed\"\n | \"OperationNotPermittedOnKeyVault\"\n | \"AzureServiceUnauthorizedToAccessKeyVault\"\n | \"KeyVaultDoesNotExist\"\n | \"KeyVaultSecretDoesNotExist\"\n | \"UnknownError\"\n | \"ExternalPrivateKey\"\n | \"Unknown\";\n /** Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\". */\n serverFarmId?: string;\n /** CNAME of the certificate to be issued via free certificate */\n canonicalName?: string;\n /** Method of domain validation for free cert */\n domainValidationMethod?: string;\n}\n\nexport interface ContainerApp extends Resource {\n /** ContainerApp resource specific properties */\n properties?: ContainerAppProperties;\n}\n\nexport interface ContainerAppProperties {\n /** Provisioning state of the Container App. */\n provisioningState?: \"InProgress\" | \"Succeeded\" | \"Failed\" | \"Canceled\";\n /** Resource ID of the Container App's KubeEnvironment. */\n kubeEnvironmentId?: string;\n /** Name of the latest revision of the Container App. */\n latestRevisionName?: string;\n /** Fully Qualified Domain Name of the latest revision of the Container App. */\n latestRevisionFqdn?: string;\n /** Non versioned Container App configuration properties. */\n configuration?: Configuration;\n /** Container App versioned application definition. */\n template?: Template;\n}\n\nexport interface Configuration {\n /** Collection of secrets used by a Container app */\n secrets?: Array<Secret>;\n /**\n * ActiveRevisionsMode controls how active revisions are handled for the Container app:\n * <list><item>Multiple: multiple revisions can be active. If no value if provided, this is the default</item><item>Single: Only one revision can be active at a time. Revision weights can not be used in this mode</item></list>\n */\n activeRevisionsMode?: \"multiple\" | \"single\";\n /** Ingress configurations. */\n ingress?: Ingress;\n /** Collection of private container registry credentials for containers used by the Container app */\n registries?: Array<RegistryCredentials>;\n}\n\nexport interface Secret {\n /** Secret Name. */\n name?: string;\n /** Secret Value. */\n value?: string;\n}\n\nexport interface Ingress {\n /** Hostname. */\n fqdn?: string;\n /** Bool indicating if app exposes an external http endpoint */\n external?: boolean;\n /** Target Port in containers for traffic from ingress */\n targetPort?: number;\n /** Ingress transport protocol */\n transport?: \"auto\" | \"http\" | \"http2\";\n traffic?: Array<TrafficWeight>;\n /** Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections */\n allowInsecure?: boolean;\n}\n\nexport interface TrafficWeight {\n /** Name of a revision */\n revisionName?: string;\n /** Traffic weight assigned to a revision */\n weight?: number;\n /** Indicates that the traffic weight belongs to a latest stable revision */\n latestRevision?: boolean;\n}\n\nexport interface RegistryCredentials {\n /** Container Registry Server */\n server?: string;\n /** Container Registry Username */\n username?: string;\n /** The name of the Secret that contains the registry login password */\n passwordSecretRef?: string;\n}\n\nexport interface Template {\n /** User friendly suffix that is appended to the revision name */\n revisionSuffix?: string;\n /** List of container definitions for the Container App. */\n containers?: Array<Container>;\n /** Scaling properties for the Container App. */\n scale?: Scale;\n /** Dapr configuration for the Container App. */\n dapr?: Dapr;\n}\n\nexport interface Container {\n /** Container image tag. */\n image?: string;\n /** Custom container name. */\n name?: string;\n /** Container start command. */\n command?: Array<string>;\n /** Container start command arguments. */\n args?: Array<string>;\n /** Container environment variables. */\n env?: Array<EnvironmentVar>;\n /** Container resource requirements. */\n resources?: ContainerResources;\n}\n\nexport interface EnvironmentVar {\n /** Environment variable name. */\n name?: string;\n /** Non-secret environment variable value. */\n value?: string;\n /** Name of the Container App secret from which to pull the environment variable value. */\n secretRef?: string;\n}\n\nexport interface ContainerResources {\n /** Required CPU in cores, e.g. 0.5 */\n cpu?: number;\n /** Required memory, e.g. \"250Mb\" */\n memory?: string;\n}\n\nexport interface Scale {\n /** Optional. Minimum number of container replicas. */\n minReplicas?: number;\n /** Optional. Maximum number of container replicas. Defaults to 10 if not set. */\n maxReplicas?: number;\n /** Scaling rules. */\n rules?: Array<ScaleRule>;\n}\n\nexport interface ScaleRule {\n /** Scale Rule Name */\n name?: string;\n /** Azure Queue based scaling. */\n azureQueue?: QueueScaleRule;\n /** Custom scale rule. */\n custom?: CustomScaleRule;\n /** HTTP requests based scaling. */\n http?: HttpScaleRule;\n}\n\nexport interface QueueScaleRule {\n /** Queue name. */\n queueName?: string;\n /** Queue length. */\n queueLength?: number;\n /** Authentication secrets for the queue scale rule. */\n auth?: Array<ScaleRuleAuth>;\n}\n\nexport interface ScaleRuleAuth {\n /** Name of the Container App secret from which to pull the auth params. */\n secretRef?: string;\n /** Trigger Parameter that uses the secret */\n triggerParameter?: string;\n}\n\nexport interface CustomScaleRule {\n /**\n * Type of the custom scale rule\n * eg: azure-servicebus, redis etc.\n */\n type?: string;\n /** Metadata properties to describe custom scale rule. */\n metadata?: Record<string, string>;\n /** Authentication secrets for the custom scale rule. */\n auth?: Array<ScaleRuleAuth>;\n}\n\nexport interface HttpScaleRule {\n /** Metadata properties to describe http scale rule. */\n metadata?: Record<string, string>;\n /** Authentication secrets for the custom scale rule. */\n auth?: Array<ScaleRuleAuth>;\n}\n\nexport interface Dapr {\n /** Boolean indicating if the Dapr side car is enabled */\n enabled?: boolean;\n /** Dapr application identifier */\n appId?: string;\n /** Port on which the Dapr side car */\n appPort?: number;\n /** Collection of Dapr components */\n components?: Array<DaprComponent>;\n}\n\nexport interface DaprComponent {\n /** Component name */\n name?: string;\n /** Component type */\n type?: string;\n /** Component version */\n version?: string;\n /** Component metadata */\n metadata?: Array<DaprMetadata>;\n}\n\nexport interface DaprMetadata {\n /** Metadata property name. */\n name?: string;\n /** Metadata property value. */\n value?: string;\n /** Name of the Container App secret from which to pull the metadata property value. */\n secretRef?: string;\n}\n\nexport interface Revision extends Resource {\n /** Revision resource specific properties */\n properties?: RevisionProperties;\n}\n\nexport interface RevisionProperties {\n /**\n * Timestamp describing when the revision was created\n * by controller\n */\n createdTime?: Date | string;\n /** Fully qualified domain name of the revision */\n fqdn?: string;\n /**\n * Container App Revision Template with all possible settings and the\n * defaults if user did not provide them. The defaults are populated\n * as they were at the creation time\n */\n template?: Template;\n /** Boolean describing if the Revision is Active */\n active?: boolean;\n /** Number of pods currently running for this revision */\n replicas?: number;\n /** Traffic weight assigned to this revision */\n trafficWeight?: number;\n /** Optional Field - Platform Error Message */\n provisioningError?: string;\n /** Current health State of the revision */\n healthState?: \"Healthy\" | \"Unhealthy\" | \"None\";\n /** Current provisioning State of the revision */\n provisioningState?:\n | \"Provisioning\"\n | \"Provisioned\"\n | \"Failed\"\n | \"Deprovisioning\"\n | \"Deprovisioned\";\n}\n\nexport interface DeletedSite extends ProxyOnlyResource {\n /** DeletedSite resource specific properties */\n properties?: DeletedSiteProperties;\n}\n\nexport interface DeletedSiteProperties {\n /** Numeric id for the deleted site */\n deletedSiteId?: number;\n /** Time in UTC when the app was deleted. */\n deletedTimestamp?: string;\n /** Subscription containing the deleted site */\n subscription?: string;\n /** ResourceGroup that contained the deleted site */\n resourceGroup?: string;\n /** Name of the deleted site */\n deletedSiteName?: string;\n /** Slot of the deleted site */\n slot?: string;\n /** Kind of site that was deleted */\n kind?: string;\n /** Geo Region of the deleted site */\n geoRegionName?: string;\n}\n\nexport interface DiagnosticCategory extends ProxyOnlyResource {\n /** DiagnosticCategory resource specific properties */\n properties?: DiagnosticCategoryProperties;\n}\n\nexport interface DiagnosticCategoryProperties {\n /** Description of the diagnostic category */\n description?: string;\n}\n\nexport interface AnalysisDefinition extends ProxyOnlyResource {\n /** AnalysisDefinition resource specific properties */\n properties?: AnalysisDefinitionProperties;\n}\n\nexport interface AnalysisDefinitionProperties {\n /** Description of the Analysis */\n description?: string;\n}\n\nexport interface DiagnosticAnalysis extends ProxyOnlyResource {\n /** DiagnosticAnalysis resource specific properties */\n properties?: DiagnosticAnalysisProperties;\n}\n\nexport interface DiagnosticAnalysisProperties {\n /** Start time of the period */\n startTime?: Date | string;\n /** End time of the period */\n endTime?: Date | string;\n /** List of time periods. */\n abnormalTimePeriods?: Array<AbnormalTimePeriod>;\n /** Data by each detector */\n payload?: Array<AnalysisData>;\n /** Data by each detector for detectors that did not corelate */\n nonCorrelatedDetectors?: Array<DetectorDefinition>;\n}\n\nexport interface AbnormalTimePeriod {\n /** Start time of the downtime */\n startTime?: Date | string;\n /** End time of the downtime */\n endTime?: Date | string;\n /** List of Possible Cause of downtime */\n events?: Array<DetectorAbnormalTimePeriod>;\n /** List of proposed solutions */\n solutions?: Array<Solution>;\n}\n\nexport interface DetectorAbnormalTimePeriod {\n /** Start time of the correlated event */\n startTime?: Date | string;\n /** End time of the correlated event */\n endTime?: Date | string;\n /** Message describing the event */\n message?: string;\n /** Represents the name of the Detector */\n source?: string;\n /** Represents the rank of the Detector */\n priority?: number;\n /** Downtime metadata */\n metaData?: Array<Array<NameValuePair>>;\n /** Represents the type of the Detector */\n type?:\n | \"ServiceIncident\"\n | \"AppDeployment\"\n | \"AppCrash\"\n | \"RuntimeIssueDetected\"\n | \"AseDeployment\"\n | \"UserIssue\"\n | \"PlatformIssue\"\n | \"Other\";\n /** List of proposed solutions */\n solutions?: Array<Solution>;\n}\n\nexport interface Solution {\n /** Solution Id. */\n id?: number;\n /** Display Name of the solution */\n displayName?: string;\n /** Order of the solution. */\n order?: number;\n /** Description of the solution */\n description?: string;\n /** Type of Solution */\n type?: \"QuickSolution\" | \"DeepInvestigation\" | \"BestPractices\";\n /** Solution Data. */\n data?: Array<Array<NameValuePair>>;\n /** Solution Metadata. */\n metadata?: Array<Array<NameValuePair>>;\n}\n\nexport interface AnalysisData {\n /** Name of the Detector */\n source?: string;\n /** Detector Definition */\n detectorDefinition?: DetectorDefinition;\n /** Source Metrics */\n metrics?: Array<DiagnosticMetricSet>;\n /** Additional Source Data */\n data?: Array<Array<NameValuePair>>;\n /** Detector Meta Data */\n detectorMetaData?: ResponseMetaData;\n}\n\nexport interface DetectorDefinition {\n /** Display name of the detector */\n displayName?: string;\n /** Description of the detector */\n description?: string;\n /** Detector Rank */\n rank?: number;\n /** Flag representing whether detector is enabled or not. */\n isEnabled?: boolean;\n}\n\nexport interface DiagnosticMetricSet {\n /** Name of the metric */\n name?: string;\n /** Metric's unit */\n unit?: string;\n /** Start time of the period */\n startTime?: Date | string;\n /** End time of the period */\n endTime?: Date | string;\n /** Presented time grain. Supported grains at the moment are PT1M, PT1H, P1D */\n timeGrain?: string;\n /** Collection of metric values for the selected period based on the {Microsoft.Web.Hosting.Administration.DiagnosticMetricSet.TimeGrain} */\n values?: Array<DiagnosticMetricSample>;\n}\n\nexport interface DiagnosticMetricSample {\n /** Time at which metric is measured */\n timestamp?: Date | string;\n /**\n * Role Instance. Null if this counter is not per instance\n * This is returned and should be whichever instance name we desire to be returned\n * i.e. CPU and Memory return RDWORKERNAME (LargeDed..._IN_0)\n * where RDWORKERNAME is Machine name below and RoleInstance name in parenthesis\n */\n roleInstance?: string;\n /** Total value of the metric. If multiple measurements are made this will have sum of all. */\n total?: number;\n /** Maximum of the metric sampled during the time period */\n maximum?: number;\n /** Minimum of the metric sampled during the time period */\n minimum?: number;\n /** Whether the values are aggregates across all workers or not */\n isAggregated?: boolean;\n}\n\nexport interface ResponseMetaData {\n /** Source of the Data */\n dataSource?: DataSource;\n}\n\nexport interface DataSource {\n /** Instructions if any for the data source */\n instructions?: Array<string>;\n /** Datasource Uri Links */\n dataSourceUri?: Array<NameValuePair>;\n}\n\nexport interface DetectorDefinitionResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: DetectorDefinition;\n}\n\nexport interface DiagnosticDetectorResponse extends ProxyOnlyResource {\n /** DiagnosticDetectorResponse resource specific properties */\n properties?: DiagnosticDetectorResponseProperties;\n}\n\nexport interface DiagnosticDetectorResponseProperties {\n /** Start time of the period */\n startTime?: Date | string;\n /** End time of the period */\n endTime?: Date | string;\n /** Flag representing Issue was detected. */\n issueDetected?: boolean;\n /** Detector's definition */\n detectorDefinition?: DetectorDefinition;\n /** Metrics provided by the detector */\n metrics?: Array<DiagnosticMetricSet>;\n /** List of Correlated events found by the detector */\n abnormalTimePeriods?: Array<DetectorAbnormalTimePeriod>;\n /** Additional Data that detector wants to send. */\n data?: Array<Array<NameValuePair>>;\n /** Meta Data */\n responseMetaData?: ResponseMetaData;\n}\n\nexport interface Snapshot extends ProxyOnlyResource {\n /** Snapshot resource specific properties */\n properties?: SnapshotProperties;\n}\n\nexport interface SnapshotProperties {\n /** The time the snapshot was taken. */\n time?: string;\n}\n\nexport interface KubeEnvironment extends Resource {\n /** KubeEnvironment resource specific properties */\n properties?: KubeEnvironmentProperties;\n /** Extended Location. */\n extendedLocation?: ExtendedLocation;\n}\n\nexport interface KubeEnvironmentProperties {\n /** Provisioning state of the Kubernetes Environment. */\n provisioningState?:\n | \"Succeeded\"\n | \"Failed\"\n | \"Canceled\"\n | \"Waiting\"\n | \"InitializationInProgress\"\n | \"InfrastructureSetupInProgress\"\n | \"InfrastructureSetupComplete\"\n | \"ScheduledForDelete\"\n | \"UpgradeRequested\"\n | \"UpgradeFailed\";\n /** Any errors that occurred during deployment or deployment validation */\n deploymentErrors?: string;\n /** Only visible within Vnet/Subnet */\n internalLoadBalancerEnabled?: boolean;\n /** Default Domain Name for the cluster */\n defaultDomain?: string;\n /** Static IP of the KubeEnvironment */\n staticIp?: string;\n /** Type of Kubernetes Environment. Only supported for Container App Environments with value as Managed */\n environmentType?: string;\n /**\n * Cluster configuration which determines the ARC cluster\n * components types. Eg: Choosing between BuildService kind,\n * FrontEnd Service ArtifactsStorageType etc.\n */\n arcConfiguration?: ArcConfiguration;\n /**\n * Cluster configuration which enables the log daemon to export\n * app logs to a destination. Currently only \"log-analytics\" is\n * supported\n */\n appLogsConfiguration?: AppLogsConfiguration;\n /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */\n containerAppsConfiguration?: ContainerAppsConfiguration;\n aksResourceID?: string;\n}\n\nexport interface ArcConfiguration {\n artifactsStorageType?: \"LocalNode\" | \"NetworkFileSystem\";\n artifactStorageClassName?: string;\n artifactStorageMountPath?: string;\n artifactStorageNodeName?: string;\n artifactStorageAccessMode?: string;\n frontEndServiceConfiguration?: FrontEndConfiguration;\n kubeConfig?: string;\n}\n\nexport interface FrontEndConfiguration {\n kind?: \"NodePort\" | \"LoadBalancer\";\n}\n\nexport interface AppLogsConfiguration {\n destination?: string;\n logAnalyticsConfiguration?: LogAnalyticsConfiguration;\n}\n\nexport interface LogAnalyticsConfiguration {\n customerId?: string;\n sharedKey?: string;\n}\n\nexport interface ContainerAppsConfiguration {\n /** Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry */\n daprAIInstrumentationKey?: string;\n /** IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges. */\n platformReservedCidr?: string;\n /** An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server */\n platformReservedDnsIP?: string;\n /** Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined. */\n controlPlaneSubnetResourceId?: string;\n /** Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined. */\n appSubnetResourceId?: string;\n /** CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the IP range defined in platformReservedCidr, if defined. */\n dockerBridgeCidr?: string;\n}\n\nexport interface KubeEnvironmentPatchResource extends ProxyOnlyResource {\n /** KubeEnvironmentPatchResource resource specific properties */\n properties?: KubeEnvironmentPatchResourceProperties;\n}\n\nexport interface KubeEnvironmentPatchResourceProperties {\n /** Provisioning state of the Kubernetes Environment. */\n provisioningState?:\n | \"Succeeded\"\n | \"Failed\"\n | \"Canceled\"\n | \"Waiting\"\n | \"InitializationInProgress\"\n | \"InfrastructureSetupInProgress\"\n | \"InfrastructureSetupComplete\"\n | \"ScheduledForDelete\"\n | \"UpgradeRequested\"\n | \"UpgradeFailed\";\n /** Any errors that occurred during deployment or deployment validation */\n deploymentErrors?: string;\n /** Only visible within Vnet/Subnet */\n internalLoadBalancerEnabled?: boolean;\n /** Default Domain Name for the cluster */\n defaultDomain?: string;\n /** Static IP of the KubeEnvironment */\n staticIp?: string;\n /**\n * Cluster configuration which determines the ARC cluster\n * components types. Eg: Choosing between BuildService kind,\n * FrontEnd Service ArtifactsStorageType etc.\n */\n arcConfiguration?: ArcConfiguration;\n /**\n * Cluster configuration which enables the log daemon to export\n * app logs to a destination. Currently only \"log-analytics\" is\n * supported\n */\n appLogsConfiguration?: AppLogsConfiguration;\n /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */\n containerAppsConfiguration?: ContainerAppsConfiguration;\n aksResourceID?: string;\n}\n\nexport interface ApplicationStackResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: ApplicationStack;\n}\n\nexport interface ApplicationStack {\n /** Application stack name. */\n name?: string;\n /** Application stack display name. */\n display?: string;\n /** Application stack dependency. */\n dependency?: string;\n /** List of major versions available. */\n majorVersions?: Array<StackMajorVersion>;\n /** List of frameworks associated with application stack. */\n frameworks?: Array<ApplicationStack>;\n /** <code>true</code> if this is the stack is deprecated; otherwise, <code>false</code>. */\n isDeprecated?: Array<ApplicationStack>;\n}\n\nexport interface StackMajorVersion {\n /** Application stack major version (display only). */\n displayVersion?: string;\n /** Application stack major version (runtime only). */\n runtimeVersion?: string;\n /** <code>true</code> if this is the default major version; otherwise, <code>false</code>. */\n isDefault?: boolean;\n /** Minor versions associated with the major version. */\n minorVersions?: Array<StackMinorVersion>;\n /** <code>true</code> if this supports Application Insights; otherwise, <code>false</code>. */\n applicationInsights?: boolean;\n /** <code>true</code> if this stack is in Preview, otherwise <code>false</code>. */\n isPreview?: boolean;\n /** <code>true</code> if this stack has been deprecated, otherwise <code>false</code>. */\n isDeprecated?: boolean;\n /** <code>true</code> if this stack should be hidden for new customers on portal, otherwise <code>false</code>. */\n isHidden?: boolean;\n /**\n * <appSettings>\n * <appSetting name=\"FUNCTIONS_WORKER_RUNTIME\" value=\"dotnet\" />\n * </appSettings>\n * Example: All the function apps need AppSetting: \"FUNCTIONS_WORKER_RUNTIME\" to be set stack name\n */\n appSettingsDictionary?: Record<string, Record<string, unknown>>;\n /**\n * <siteConfigProperties>\n * <siteConfigProperty name=\"Use32BitWorkerProcess\" value=\"false\" />\n * </siteConfigProperties>\n * Example: All Linux Function Apps, need Use32BitWorkerProcess to be set to 0\n */\n siteConfigPropertiesDictionary?: Record<string, Record<string, unknown>>;\n}\n\nexport interface StackMinorVersion {\n /** Application stack minor version (display only). */\n displayVersion?: string;\n /** Application stack minor version (runtime only). */\n runtimeVersion?: string;\n /** <code>true</code> if this is the default minor version; otherwise, <code>false</code>. */\n isDefault?: boolean;\n /** <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>. */\n isRemoteDebuggingEnabled?: boolean;\n}\n\nexport interface FunctionAppStack extends ProxyOnlyResource {\n /** Function App stack location. */\n location?: string;\n /** FunctionAppStack resource specific properties */\n properties?: FunctionAppStackProperties;\n}\n\nexport interface FunctionAppStackProperties {\n /** Function App stack (display only). */\n displayText?: string;\n /** Function App stack name. */\n value?: string;\n /** List of major versions available. */\n majorVersions?: Array<FunctionAppMajorVersion>;\n /** Function App stack preferred OS. */\n preferredOs?: \"Windows\" | \"Linux\";\n}\n\nexport interface FunctionAppMajorVersion {\n /** Function App stack major version (display only). */\n displayText?: string;\n /** Function App stack major version name. */\n value?: string;\n /** Minor versions associated with the major version. */\n minorVersions?: Array<FunctionAppMinorVersion>;\n}\n\nexport interface FunctionAppMinorVersion {\n /** Function App stack (display only). */\n displayText?: string;\n /** Function App stack name. */\n value?: string;\n /** Settings associated with the minor version. */\n stackSettings?: FunctionAppRuntimes;\n}\n\nexport interface FunctionAppRuntimes {\n /** Linux-specific settings associated with the minor version. */\n linuxRuntimeSettings?: FunctionAppRuntimeSettings;\n /** Windows-specific settings associated with the minor version. */\n windowsRuntimeSettings?: FunctionAppRuntimeSettings;\n}\n\nexport interface FunctionAppRuntimeSettings {\n /** Function App stack minor version (runtime only). */\n runtimeVersion?: string;\n /** <code>true</code> if remote debugging is supported for the stack; otherwise, <code>false</code>. */\n remoteDebuggingSupported?: boolean;\n /** Application Insights settings associated with the minor version. */\n appInsightsSettings?: AppInsightsWebAppStackSettings;\n /** GitHub Actions settings associated with the minor version. */\n gitHubActionSettings?: GitHubActionWebAppStackSettings;\n /** Application settings associated with the minor version. */\n appSettingsDictionary?: Record<string, string>;\n /** Configuration settings associated with the minor version. */\n siteConfigPropertiesDictionary?: SiteConfigPropertiesDictionary;\n /** List of supported Functions extension versions. */\n supportedFunctionsExtensionVersions?: Array<string>;\n /** <code>true</code> if the stack is in preview; otherwise, <code>false</code>. */\n isPreview?: boolean;\n /** <code>true</code> if the stack is deprecated; otherwise, <code>false</code>. */\n isDeprecated?: boolean;\n /** <code>true</code> if the stack should be hidden; otherwise, <code>false</code>. */\n isHidden?: boolean;\n /** End-of-life date for the minor version. */\n endOfLifeDate?: Date | string;\n /** <code>true</code> if the stack version is auto-updated; otherwise, <code>false</code>. */\n isAutoUpdate?: boolean;\n /** <code>true</code> if the minor version is early-access; otherwise, <code>false</code>. */\n isEarlyAccess?: boolean;\n /** <code>true</code> if the minor version the default; otherwise, <code>false</code>. */\n isDefault?: boolean;\n}\n\nexport interface AppInsightsWebAppStackSettings {\n /** <code>true</code> if remote Application Insights is supported for the stack; otherwise, <code>false</code>. */\n isSupported?: boolean;\n /** <code>true</code> if Application Insights is disabled by default for the stack; otherwise, <code>false</code>. */\n isDefaultOff?: boolean;\n}\n\nexport interface GitHubActionWebAppStackSettings {\n /** <code>true</code> if GitHub Actions is supported for the stack; otherwise, <code>false</code>. */\n isSupported?: boolean;\n /** The minor version that is supported for GitHub Actions. */\n supportedVersion?: string;\n}\n\nexport interface SiteConfigPropertiesDictionary {\n /** <code>true</code> if use32BitWorkerProcess should be set to true for the stack; otherwise, <code>false</code>. */\n use32BitWorkerProcess?: boolean;\n /** LinuxFxVersion configuration setting. */\n linuxFxVersion?: string;\n /** JavaVersion configuration setting. */\n javaVersion?: string;\n /** PowerShellVersion configuration setting. */\n powerShellVersion?: string;\n}\n\nexport interface WebAppStack extends ProxyOnlyResource {\n /** Web App stack location. */\n location?: string;\n /** WebAppStack resource specific properties */\n properties?: WebAppStackProperties;\n}\n\nexport interface WebAppStackProperties {\n /** Web App stack (display only). */\n displayText?: string;\n /** Web App stack name. */\n value?: string;\n /** List of major versions available. */\n majorVersions?: Array<WebAppMajorVersion>;\n /** Web App stack preferred OS. */\n preferredOs?: \"Windows\" | \"Linux\";\n}\n\nexport interface WebAppMajorVersion {\n /** Web App stack major version (display only). */\n displayText?: string;\n /** Web App stack major version name. */\n value?: string;\n /** Minor versions associated with the major version. */\n minorVersions?: Array<WebAppMinorVersion>;\n}\n\nexport interface WebAppMinorVersion {\n /** Web App stack minor version (display only). */\n displayText?: string;\n /** Web App stack major version name. */\n value?: string;\n /** Settings associated with the minor version. */\n stackSettings?: WebAppRuntimes;\n}\n\nexport interface WebAppRuntimes {\n /** Linux-specific settings associated with the minor version. */\n linuxRuntimeSettings?: WebAppRuntimeSettings;\n /** Windows-specific settings associated with the minor version. */\n windowsRuntimeSettings?: WebAppRuntimeSettings;\n /** Linux-specific settings associated with the Java container minor version. */\n linuxContainerSettings?: LinuxJavaContainerSettings;\n /** Windows-specific settings associated with the Java container minor version. */\n windowsContainerSettings?: WindowsJavaContainerSettings;\n}\n\nexport interface WebAppRuntimeSettings {\n /** Web App stack minor version (runtime only). */\n runtimeVersion?: string;\n /** <code>true</code> if remote debugging is supported for the stack; otherwise, <code>false</code>. */\n remoteDebuggingSupported?: boolean;\n /** Application Insights settings associated with the minor version. */\n appInsightsSettings?: AppInsightsWebAppStackSettings;\n /** GitHub Actions settings associated with the minor version. */\n gitHubActionSettings?: GitHubActionWebAppStackSettings;\n /** <code>true</code> if the stack is in preview; otherwise, <code>false</code>. */\n isPreview?: boolean;\n /** <code>true</code> if the stack is deprecated; otherwise, <code>false</code>. */\n isDeprecated?: boolean;\n /** <code>true</code> if the stack should be hidden; otherwise, <code>false</code>. */\n isHidden?: boolean;\n /** End-of-life date for the minor version. */\n endOfLifeDate?: Date | string;\n /** <code>true</code> if the stack version is auto-updated; otherwise, <code>false</code>. */\n isAutoUpdate?: boolean;\n /** <code>true</code> if the minor version is early-access; otherwise, <code>false</code>. */\n isEarlyAccess?: boolean;\n}\n\nexport interface LinuxJavaContainerSettings {\n /** Java 11 version (runtime only). */\n java11Runtime?: string;\n /** Java 8 version (runtime only). */\n java8Runtime?: string;\n /** <code>true</code> if the stack is in preview; otherwise, <code>false</code>. */\n isPreview?: boolean;\n /** <code>true</code> if the stack is deprecated; otherwise, <code>false</code>. */\n isDeprecated?: boolean;\n /** <code>true</code> if the stack should be hidden; otherwise, <code>false</code>. */\n isHidden?: boolean;\n /** End-of-life date for the minor version. */\n endOfLifeDate?: Date | string;\n /** <code>true</code> if the stack version is auto-updated; otherwise, <code>false</code>. */\n isAutoUpdate?: boolean;\n /** <code>true</code> if the minor version is early-access; otherwise, <code>false</code>. */\n isEarlyAccess?: boolean;\n}\n\nexport interface WindowsJavaContainerSettings {\n /** Java container (runtime only). */\n javaContainer?: string;\n /** Java container version (runtime only). */\n javaContainerVersion?: string;\n /** <code>true</code> if the stack is in preview; otherwise, <code>false</code>. */\n isPreview?: boolean;\n /** <code>true</code> if the stack is deprecated; otherwise, <code>false</code>. */\n isDeprecated?: boolean;\n /** <code>true</code> if the stack should be hidden; otherwise, <code>false</code>. */\n isHidden?: boolean;\n /** End-of-life date for the minor version. */\n endOfLifeDate?: Date | string;\n /** <code>true</code> if the stack version is auto-updated; otherwise, <code>false</code>. */\n isAutoUpdate?: boolean;\n /** <code>true</code> if the minor version is early-access; otherwise, <code>false</code>. */\n isEarlyAccess?: boolean;\n}\n\nexport interface Recommendation extends ProxyOnlyResource {\n /** Recommendation resource specific properties */\n properties?: RecommendationProperties;\n}\n\nexport interface RecommendationProperties {\n /** Timestamp when this instance was created. */\n creationTime?: Date | string;\n /**\n * A GUID value that each recommendation object is associated with.\n *\n * Value may contain a UUID\n */\n recommendationId?: string;\n /** Full ARM resource ID string that this recommendation object is associated with. */\n resourceId?: string;\n /** Name of a resource type this recommendation applies, e.g. Subscription, ServerFarm, Site. */\n resourceScope?: \"ServerFarm\" | \"Subscription\" | \"WebSite\";\n /** Unique name of the rule. */\n ruleName?: string;\n /** UI friendly name of the rule (may not be unique). */\n displayName?: string;\n /** Recommendation text. */\n message?: string;\n /** Level indicating how critical this recommendation can impact. */\n level?: \"Critical\" | \"Warning\" | \"Information\" | \"NonUrgentSuggestion\";\n /** List of channels that this recommendation can apply. */\n channels?: \"Notification\" | \"Api\" | \"Email\" | \"Webhook\" | \"All\";\n /** The list of category tags that this recommendation belongs to. */\n categoryTags?: Array<string>;\n /** Name of action recommended by this object. */\n actionName?: string;\n /** True if this recommendation is still valid (i.e. \"actionable\"). False if it is invalid. */\n enabled?: number;\n /** The list of states of this recommendation. If it's null then it should be considered \"Active\". */\n states?: Array<string>;\n /** The beginning time in UTC of a range that the recommendation refers to. */\n startTime?: Date | string;\n /** The end time in UTC of a range that the recommendation refers to. */\n endTime?: Date | string;\n /** When to notify this recommendation next in UTC. Null means that this will never be notified anymore. */\n nextNotificationTime?: Date | string;\n /** Date and time in UTC when this notification expires. */\n notificationExpirationTime?: Date | string;\n /** Last timestamp in UTC this instance was actually notified. Null means that this recommendation hasn't been notified yet. */\n notifiedTime?: Date | string;\n /** A metric value measured by the rule. */\n score?: number;\n /** True if this is associated with a dynamically added rule */\n isDynamic?: boolean;\n /** Extension name of the portal if exists. */\n extensionName?: string;\n /** Deep link to a blade on the portal. */\n bladeName?: string;\n /** Forward link to an external document associated with the rule. */\n forwardLink?: string;\n}\n\nexport interface RecommendationRule extends ProxyOnlyResource {\n /** RecommendationRule resource specific properties */\n properties?: RecommendationRuleProperties;\n}\n\nexport interface RecommendationRuleProperties {\n /** Unique name of the rule. */\n recommendationName?: string;\n /** UI friendly name of the rule. */\n displayName?: string;\n /** Localized name of the rule (Good for UI). */\n message?: string;\n /**\n * Recommendation ID of an associated recommendation object tied to the rule, if exists.\n * If such an object doesn't exist, it is set to null.\n *\n * Value may contain a UUID\n */\n recommendationId?: string;\n /** Localized detailed description of the rule. */\n description?: string;\n /** Name of action that is recommended by this rule in string. */\n actionName?: string;\n /** Level of impact indicating how critical this rule is. */\n level?: \"Critical\" | \"Warning\" | \"Information\" | \"NonUrgentSuggestion\";\n /** List of available channels that this rule applies. */\n channels?: \"Notification\" | \"Api\" | \"Email\" | \"Webhook\" | \"All\";\n /** The list of category tags that this recommendation rule belongs to. */\n categoryTags?: Array<string>;\n /** True if this is associated with a dynamically added rule */\n isDynamic?: boolean;\n /** Extension name of the portal if exists. Applicable to dynamic rule only. */\n extensionName?: string;\n /** Deep link to a blade on the portal. Applicable to dynamic rule only. */\n bladeName?: string;\n /** Forward link to an external document associated with the rule. Applicable to dynamic rule only. */\n forwardLink?: string;\n}\n\nexport interface ResourceHealthMetadata extends ProxyOnlyResource {\n /** ResourceHealthMetadata resource specific properties */\n properties?: ResourceHealthMetadataProperties;\n}\n\nexport interface ResourceHealthMetadataProperties {\n /** The category that the resource matches in the RHC Policy File */\n category?: string;\n /** Is there a health signal for the resource */\n signalAvailability?: boolean;\n}\n\nexport interface User extends ProxyOnlyResource {\n /** User resource specific properties */\n properties?: UserProperties;\n}\n\nexport interface UserProperties {\n /** Username used for publishing. */\n publishingUserName: string;\n /**\n * Password used for publishing.\n *\n * Value may contain a password\n */\n publishingPassword?: string;\n /**\n * Password hash used for publishing.\n *\n * Value may contain a password\n */\n publishingPasswordHash?: string;\n /**\n * Password hash salt used for publishing.\n *\n * Value may contain a password\n */\n publishingPasswordHashSalt?: string;\n /** Url of SCM site. */\n scmUri?: string;\n}\n\nexport interface SourceControl extends ProxyOnlyResource {\n /** SourceControl resource specific properties */\n properties?: SourceControlProperties;\n}\n\nexport interface SourceControlProperties {\n /** OAuth access token. */\n token?: string;\n /** OAuth access token secret. */\n tokenSecret?: string;\n /** OAuth refresh token. */\n refreshToken?: string;\n /** OAuth token expiration. */\n expirationTime?: Date | string;\n}\n\nexport interface BillingMeter extends ProxyOnlyResource {\n /** BillingMeter resource specific properties */\n properties?: BillingMeterProperties;\n}\n\nexport interface BillingMeterProperties {\n /** Meter GUID onboarded in Commerce */\n meterId?: string;\n /** Azure Location of billable resource */\n billingLocation?: string;\n /** Short Name from App Service Azure pricing Page */\n shortName?: string;\n /** Friendly name of the meter */\n friendlyName?: string;\n /** App Service ResourceType meter used for */\n resourceType?: string;\n /** App Service OS type meter used for */\n osType?: string;\n /** Meter Multiplier */\n multiplier?: number;\n}\n\nexport interface ResourceNameAvailabilityRequest {\n /** Resource name to verify. */\n name: string;\n /** Resource type used for verification. */\n type:\n | \"Site\"\n | \"Slot\"\n | \"HostingEnvironment\"\n | \"PublishingUser\"\n | \"Microsoft.Web/sites\"\n | \"Microsoft.Web/sites/slots\"\n | \"Microsoft.Web/hostingEnvironments\"\n | \"Microsoft.Web/publishingUsers\";\n /** Is fully qualified domain name. */\n isFqdn?: boolean;\n}\n\nexport interface CustomHostnameSites extends ProxyOnlyResource {\n /** CustomHostnameSites resource specific properties */\n properties?: CustomHostnameSitesProperties;\n}\n\nexport interface CustomHostnameSitesProperties {\n customHostname?: string;\n region?: string;\n siteResourceIds?: Array<Identifier>;\n}\n\nexport interface Identifier extends ProxyOnlyResource {\n /** Identifier resource specific properties */\n properties?: IdentifierProperties;\n}\n\nexport interface IdentifierProperties {\n /** String representation of the identity. */\n id?: string;\n}\n\nexport interface GeoRegion extends ProxyOnlyResource {\n /** GeoRegion resource specific properties */\n properties?: GeoRegionProperties;\n}\n\nexport interface GeoRegionProperties {\n /** Region description. */\n description?: string;\n /** Display name for region. */\n displayName?: string;\n /** Display name for region. */\n orgDomain?: string;\n}\n\nexport interface PremierAddOnOffer extends ProxyOnlyResource {\n /** PremierAddOnOffer resource specific properties */\n properties?: PremierAddOnOfferProperties;\n}\n\nexport interface PremierAddOnOfferProperties {\n /** Premier add on SKU. */\n sku?: string;\n /** Premier add on offer Product. */\n product?: string;\n /** Premier add on offer Vendor. */\n vendor?: string;\n /** <code>true</code> if promotion code is required; otherwise, <code>false</code>. */\n promoCodeRequired?: boolean;\n /** Premier add on offer Quota. */\n quota?: number;\n /** App Service plans this offer is restricted to. */\n webHostingPlanRestrictions?: \"None\" | \"Free\" | \"Shared\" | \"Basic\" | \"Standard\" | \"Premium\";\n /** Privacy policy URL. */\n privacyPolicyUrl?: string;\n /** Legal terms URL. */\n legalTermsUrl?: string;\n /** Marketplace publisher. */\n marketplacePublisher?: string;\n /** Marketplace offer. */\n marketplaceOffer?: string;\n}\n\nexport interface VnetParameters extends ProxyOnlyResource {\n /** VnetParameters resource specific properties */\n properties?: VnetParametersProperties;\n}\n\nexport interface VnetParametersProperties {\n /** The Resource Group of the VNET to be validated */\n vnetResourceGroup?: string;\n /** The name of the VNET to be validated */\n vnetName?: string;\n /** The subnet name to be validated */\n vnetSubnetName?: string;\n /** The ARM Resource ID of the subnet to validate */\n subnetResourceId?: string;\n}\n\nexport interface VnetValidationFailureDetails extends ProxyOnlyResource {\n /** VnetValidationFailureDetails resource specific properties */\n properties?: VnetValidationFailureDetailsProperties;\n}\n\nexport interface VnetValidationFailureDetailsProperties {\n /** Text describing the validation outcome. */\n message?: string;\n /** A flag describing whether or not validation failed. */\n failed?: boolean;\n /** A list of tests that failed in the validation. */\n failedTests?: Array<VnetValidationTestFailure>;\n /** A list of warnings generated during validation. */\n warnings?: Array<VnetValidationTestFailure>;\n}\n\nexport interface VnetValidationTestFailure extends ProxyOnlyResource {\n /** VnetValidationTestFailure resource specific properties */\n properties?: VnetValidationTestFailureProperties;\n}\n\nexport interface VnetValidationTestFailureProperties {\n /** The name of the test that failed. */\n testName?: string;\n /** The details of what caused the failure, e.g. the blocking rule name, etc. */\n details?: string;\n}\n\nexport interface CsmMoveResourceEnvelope {\n targetResourceGroup?: string;\n resources?: Array<string>;\n}\n\nexport interface ValidateRequest {\n /** Resource name to verify. */\n name: string;\n /** Resource type used for verification. */\n type: \"ServerFarm\" | \"Site\" | \"Microsoft.Web/hostingEnvironments\";\n /** Expected location of the resource. */\n location: string;\n /** Properties of the resource to validate. */\n properties: ValidateProperties;\n}\n\nexport interface ValidateProperties {\n /** ARM resource ID of an App Service plan that would host the app. */\n serverFarmId?: string;\n /** Name of the target SKU for the App Service plan. */\n skuName?: string;\n /** <code>true</code> if App Service plan is for Linux workers; otherwise, <code>false</code>. */\n needLinuxWorkers?: boolean;\n /** <code>true</code> if App Service plan is for Spot instances; otherwise, <code>false</code>. */\n isSpot?: boolean;\n /** Target capacity of the App Service plan (number of VMs). */\n capacity?: number;\n /** Name of App Service Environment where app or App Service plan should be created. */\n hostingEnvironment?: string;\n /** <code>true</code> if App Service plan is running as a windows container */\n isXenon?: boolean;\n /** Base URL of the container registry */\n containerRegistryBaseUrl?: string;\n /** Username for to access the container registry */\n containerRegistryUsername?: string;\n /** Password for to access the container registry */\n containerRegistryPassword?: string;\n /** Repository name (image name) */\n containerImageRepository?: string;\n /** Image tag */\n containerImageTag?: string;\n /** Platform (windows or linux) */\n containerImagePlatform?: string;\n /** App Service Environment Properties */\n appServiceEnvironment?: AppServiceEnvironment;\n}\n\nexport interface StaticSitesWorkflowPreviewRequest extends ProxyOnlyResource {\n /** StaticSitesWorkflowPreviewRequest resource specific properties */\n properties?: StaticSitesWorkflowPreviewRequestProperties;\n}\n\nexport interface StaticSitesWorkflowPreviewRequestProperties {\n /** URL for the repository of the static site. */\n repositoryUrl?: string;\n /** The target branch in the repository. */\n branch?: string;\n /** Build properties to configure on the repository. */\n buildProperties?: StaticSiteBuildProperties;\n}\n\nexport interface StaticSiteBuildProperties {\n /** The path to the app code within the repository. */\n appLocation?: string;\n /** The path to the api code within the repository. */\n apiLocation?: string;\n /** Deprecated: The path of the app artifacts after building (deprecated in favor of OutputLocation) */\n appArtifactLocation?: string;\n /** The output path of the app after building. */\n outputLocation?: string;\n /** A custom command to run during deployment of the static content application. */\n appBuildCommand?: string;\n /** A custom command to run during deployment of the Azure Functions API application. */\n apiBuildCommand?: string;\n /** Skip Github Action workflow generation. */\n skipGithubActionWorkflowGeneration?: boolean;\n /** Github Action secret name override. */\n githubActionSecretNameOverride?: string;\n}\n\nexport interface StaticSitesWorkflowPreview extends ProxyOnlyResource {\n /** StaticSitesWorkflowPreview resource specific properties */\n properties?: StaticSitesWorkflowPreviewProperties;\n}\n\nexport interface StaticSitesWorkflowPreviewProperties {\n /** The path for the workflow file to be generated */\n path?: string;\n /** The contents for the workflow file to be generated */\n contents?: string;\n}\n\nexport interface StaticSiteARMResource extends Resource {\n /** Core resource properties */\n properties?: StaticSite;\n /** Description of a SKU for a scalable resource. */\n sku?: SkuDescription;\n /** Managed service identity. */\n identity?: ManagedServiceIdentity;\n}\n\nexport interface StaticSite {\n /** The default autogenerated hostname for the static site. */\n defaultHostname?: string;\n /** URL for the repository of the static site. */\n repositoryUrl?: string;\n /** The target branch in the repository. */\n branch?: string;\n /** The custom domains associated with this static site. */\n customDomains?: Array<string>;\n /** A user's github repository token. This is used to setup the Github Actions workflow file and API secrets. */\n repositoryToken?: string;\n /** Build properties to configure on the repository. */\n buildProperties?: StaticSiteBuildProperties;\n /** Private endpoint connections */\n privateEndpointConnections?: Array<ResponseMessageEnvelopeRemotePrivateEndpointConnection>;\n /** State indicating whether staging environments are allowed or not allowed for a static web app. */\n stagingEnvironmentPolicy?: \"Enabled\" | \"Disabled\";\n /** <code>false</code> if config file is locked for this static web app; otherwise, <code>true</code>. */\n allowConfigFileUpdates?: boolean;\n /** Template options for generating a new repository. */\n templateProperties?: StaticSiteTemplateOptions;\n /** The content distribution endpoint for the static site. */\n contentDistributionEndpoint?: string;\n /** Identity to use for Key Vault Reference authentication. */\n keyVaultReferenceIdentity?: string;\n /** User provided function apps registered with the static site */\n userProvidedFunctionApps?: Array<StaticSiteUserProvidedFunctionApp>;\n /** The provider that submitted the last deployment to the primary environment of the static site. */\n provider?: string;\n /** State indicating the status of the enterprise grade CDN serving traffic to the static web app. */\n enterpriseGradeCdnStatus?: \"Enabled\" | \"Enabling\" | \"Disabled\" | \"Disabling\";\n}\n\nexport interface ResponseMessageEnvelopeRemotePrivateEndpointConnection {\n /**\n * Resource Id. Typically ID is populated only for responses to GET requests. Caller is responsible for passing in this\n * value for GET requests only.\n * For example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupId}/providers/Microsoft.Web/sites/{sitename}\n */\n id?: string;\n /** Name of resource. */\n name?: string;\n /** Type of resource e.g \"Microsoft.Web/sites\". */\n type?: string;\n /** Geographical region resource belongs to e.g. SouthCentralUS, SouthEastAsia. */\n location?: string;\n /** Tags associated with resource. */\n tags?: Record<string, string>;\n /** Azure resource manager plan. */\n plan?: ArmPlan;\n /** Resource specific properties. */\n properties?: RemotePrivateEndpointConnection;\n /** SKU description of the resource. */\n sku?: SkuDescription;\n /** Azure-AsyncOperation Status info. */\n status?: string;\n /** Azure-AsyncOperation Error info. */\n error?: ErrorEntity;\n /** MSI resource */\n identity?: ManagedServiceIdentity;\n /** Logical Availability Zones the service is hosted in */\n zones?: Array<string>;\n}\n\nexport interface ArmPlan {\n /** The name. */\n name?: string;\n /** The publisher. */\n publisher?: string;\n /** The product. */\n product?: string;\n /** The promotion code. */\n promotionCode?: string;\n /** Version of product. */\n version?: string;\n}\n\nexport interface RemotePrivateEndpointConnection extends ProxyOnlyResource {\n /** RemotePrivateEndpointConnection resource specific properties */\n properties?: RemotePrivateEndpointConnectionProperties;\n}\n\nexport interface RemotePrivateEndpointConnectionProperties {\n provisioningState?: string;\n /** PrivateEndpoint of a remote private endpoint connection */\n privateEndpoint?: ArmIdWrapper;\n /** The state of a private link connection */\n privateLinkServiceConnectionState?: PrivateLinkConnectionState;\n /** Private IPAddresses mapped to the remote private endpoint */\n ipAddresses?: Array<string>;\n}\n\nexport interface StaticSiteTemplateOptions {\n /** URL of the template repository. The newly generated repository will be based on this one. */\n templateRepositoryUrl?: string;\n /** Owner of the newly generated repository. */\n owner?: string;\n /** Name of the newly generated repository. */\n repositoryName?: string;\n /** Description of the newly generated repository. */\n description?: string;\n /** Whether or not the newly generated repository is a private repository. Defaults to false (i.e. public). */\n isPrivate?: boolean;\n}\n\nexport interface StaticSiteUserProvidedFunctionApp extends ProxyOnlyResource {\n /** StaticSiteUserProvidedFunctionApp resource specific properties */\n properties?: StaticSiteUserProvidedFunctionAppProperties;\n}\n\nexport interface StaticSiteUserProvidedFunctionAppProperties {\n /** The resource id of the function app registered with the static site */\n functionAppResourceId?: string;\n /** The region of the function app registered with the static site */\n functionAppRegion?: string;\n /** The date and time on which the function app was registered with the static site. */\n createdOn?: Date | string;\n}\n\nexport interface StaticSitePatchResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: StaticSite;\n}\n\nexport interface StaticSiteUserARMResource extends ProxyOnlyResource {\n /** StaticSiteUserARMResource resource specific properties */\n properties?: StaticSiteUserARMResourceProperties;\n}\n\nexport interface StaticSiteUserARMResourceProperties {\n /** The identity provider for the static site user. */\n provider?: string;\n /** The user id for the static site user. */\n userId?: string;\n /** The display name for the static site user. */\n displayName?: string;\n /** The roles for the static site user, in free-form string format */\n roles?: string;\n}\n\nexport interface StaticSiteBuildARMResource extends ProxyOnlyResource {\n /** StaticSiteBuildARMResource resource specific properties */\n properties?: StaticSiteBuildARMResourceProperties;\n}\n\nexport interface StaticSiteBuildARMResourceProperties {\n /** An identifier for the static site build. */\n buildId?: string;\n /** The source branch. */\n sourceBranch?: string;\n /** The title of a pull request that a static site build is related to. */\n pullRequestTitle?: string;\n /** The hostname for a static site build. */\n hostname?: string;\n /** When this build was created. */\n createdTimeUtc?: Date | string;\n /** When this build was updated. */\n lastUpdatedOn?: Date | string;\n /** The status of the static site build. */\n status?:\n | \"WaitingForDeployment\"\n | \"Uploading\"\n | \"Deploying\"\n | \"Ready\"\n | \"Failed\"\n | \"Deleting\"\n | \"Detached\";\n /** User provided function apps registered with the static site build */\n userProvidedFunctionApps?: Array<StaticSiteUserProvidedFunctionApp>;\n}\n\nexport interface StringDictionary extends ProxyOnlyResource {\n /** Settings. */\n properties?: Record<string, string>;\n}\n\nexport interface StaticSiteFunctionOverviewARMResource extends ProxyOnlyResource {\n /** StaticSiteFunctionOverviewARMResource resource specific properties */\n properties?: StaticSiteFunctionOverviewARMResourceProperties;\n}\n\nexport interface StaticSiteFunctionOverviewARMResourceProperties {\n /** The name for the function */\n functionName?: string;\n /** The trigger type of the function */\n triggerType?: \"HttpTrigger\" | \"Unknown\";\n}\n\nexport interface StaticSiteUserProvidedFunctionAppARMResource extends ProxyOnlyResource {\n /** StaticSiteUserProvidedFunctionAppARMResource resource specific properties */\n properties?: StaticSiteUserProvidedFunctionAppARMResourceProperties;\n}\n\nexport interface StaticSiteUserProvidedFunctionAppARMResourceProperties {\n /** The resource id of the function app registered with the static site */\n functionAppResourceId?: string;\n /** The region of the function app registered with the static site */\n functionAppRegion?: string;\n /** The date and time on which the function app was registered with the static site. */\n createdOn?: Date | string;\n}\n\nexport interface StaticSiteZipDeploymentARMResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: StaticSiteZipDeployment;\n}\n\nexport interface StaticSiteZipDeployment {\n /** URL for the zipped app content */\n appZipUrl?: string;\n /** URL for the zipped api content */\n apiZipUrl?: string;\n /** A title to label the deployment */\n deploymentTitle?: string;\n /** The provider submitting this deployment */\n provider?: string;\n /** The language of the api content, if it exists */\n functionLanguage?: string;\n}\n\nexport interface StaticSiteUserInvitationRequestResource extends ProxyOnlyResource {\n /** StaticSiteUserInvitationRequestResource resource specific properties */\n properties?: StaticSiteUserInvitationRequestResourceProperties;\n}\n\nexport interface StaticSiteUserInvitationRequestResourceProperties {\n /** The domain name for the static site custom domain. */\n domain?: string;\n /** The identity provider for the static site user. */\n provider?: string;\n /** The user id for the static site user. */\n userDetails?: string;\n /** The roles for the static site user, in free-form string format */\n roles?: string;\n /** The number of hours the sas token stays valid */\n numHoursToExpiration?: number;\n}\n\nexport interface StaticSiteUserInvitationResponseResource extends ProxyOnlyResource {\n /** StaticSiteUserInvitationResponseResource resource specific properties */\n properties?: StaticSiteUserInvitationResponseResourceProperties;\n}\n\nexport interface StaticSiteUserInvitationResponseResourceProperties {\n /** The expiration time of the invitation */\n expiresOn?: Date | string;\n /** The url for the invitation link */\n invitationUrl?: string;\n}\n\nexport interface StaticSiteCustomDomainOverviewARMResource extends ProxyOnlyResource {\n /** StaticSiteCustomDomainOverviewARMResource resource specific properties */\n properties?: StaticSiteCustomDomainOverviewARMResourceProperties;\n}\n\nexport interface StaticSiteCustomDomainOverviewARMResourceProperties {\n /** The domain name for the static site custom domain. */\n domainName?: string;\n /** The date and time on which the custom domain was created for the static site. */\n createdOn?: Date | string;\n /** The status of the custom domain */\n status?: \"RetrievingValidationToken\" | \"Validating\" | \"Adding\" | \"Ready\" | \"Failed\" | \"Deleting\";\n /** The TXT record validation token */\n validationToken?: string;\n errorMessage?: string;\n}\n\nexport interface StaticSiteCustomDomainRequestPropertiesARMResource extends ProxyOnlyResource {\n /** StaticSiteCustomDomainRequestPropertiesARMResource resource specific properties */\n properties?: StaticSiteCustomDomainRequestPropertiesARMResourceProperties;\n}\n\nexport interface StaticSiteCustomDomainRequestPropertiesARMResourceProperties {\n /** Validation method for adding a custom domain */\n validationMethod?: string;\n}\n\nexport interface StringList extends ProxyOnlyResource {\n /** List of string resources. */\n properties?: Array<string>;\n}\n\nexport interface StaticSiteResetPropertiesARMResource extends ProxyOnlyResource {\n /** StaticSiteResetPropertiesARMResource resource specific properties */\n properties?: StaticSiteResetPropertiesARMResourceProperties;\n}\n\nexport interface StaticSiteResetPropertiesARMResourceProperties {\n /** The token which proves admin privileges to the repository. */\n repositoryToken?: string;\n /** Determines whether the repository should be updated with the new properties. */\n shouldUpdateRepository?: boolean;\n}\n\nexport interface SitePatchResource extends ProxyOnlyResource {\n /** SitePatchResource resource specific properties */\n properties?: SitePatchResourceProperties;\n /** Managed service identity. */\n identity?: ManagedServiceIdentity;\n}\n\nexport interface SitePatchResourceProperties {\n /** Current state of the app. */\n state?: string;\n /** Hostnames associated with the app. */\n hostNames?: Array<string>;\n /** Name of the repository site. */\n repositorySiteName?: string;\n /** State indicating whether the app has exceeded its quota usage. Read-only. */\n usageState?: \"Normal\" | \"Exceeded\";\n /** <code>true</code> if the app is enabled; otherwise, <code>false</code>. Setting this value to false disables the app (takes the app offline). */\n enabled?: boolean;\n /**\n * Enabled hostnames for the app.Hostnames need to be assigned (see HostNames) AND enabled. Otherwise,\n * the app is not served on those hostnames.\n */\n enabledHostNames?: Array<string>;\n /** Management information availability state for the app. */\n availabilityState?: \"Normal\" | \"Limited\" | \"DisasterRecoveryMode\";\n /** Hostname SSL states are used to manage the SSL bindings for app's hostnames. */\n hostNameSslStates?: Array<HostNameSslState>;\n /** Resource ID of the associated App Service plan, formatted as: \"/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}\". */\n serverFarmId?: string;\n /** <code>true</code> if reserved; otherwise, <code>false</code>. */\n reserved?: boolean;\n /** Obsolete: Hyper-V sandbox. */\n isXenon?: boolean;\n /** Hyper-V sandbox. */\n hyperV?: boolean;\n /** Last time the app was modified, in UTC. Read-only. */\n lastModifiedTimeUtc?: Date | string;\n /** Configuration of the app. */\n siteConfig?: SiteConfig;\n /** Azure Traffic Manager hostnames associated with the app. Read-only. */\n trafficManagerHostNames?: Array<string>;\n /** <code>true</code> to stop SCM (KUDU) site when the app is stopped; otherwise, <code>false</code>. The default is <code>false</code>. */\n scmSiteAlsoStopped?: boolean;\n /** Specifies which deployment slot this app will swap into. Read-only. */\n targetSwapSlot?: string;\n /** App Service Environment to use for the app. */\n hostingEnvironmentProfile?: HostingEnvironmentProfile;\n /** <code>true</code> to enable client affinity; <code>false</code> to stop sending session affinity cookies, which route client requests in the same session to the same instance. Default is <code>true</code>. */\n clientAffinityEnabled?: boolean;\n /** <code>true</code> to enable client certificate authentication (TLS mutual authentication); otherwise, <code>false</code>. Default is <code>false</code>. */\n clientCertEnabled?: boolean;\n /**\n * This composes with ClientCertEnabled setting.\n * - ClientCertEnabled: false means ClientCert is ignored.\n * - ClientCertEnabled: true and ClientCertMode: Required means ClientCert is required.\n * - ClientCertEnabled: true and ClientCertMode: Optional means ClientCert is optional or accepted.\n */\n clientCertMode?: \"Required\" | \"Optional\" | \"OptionalInteractiveUser\";\n /** client certificate authentication comma-separated exclusion paths */\n clientCertExclusionPaths?: string;\n /**\n * <code>true</code> to disable the public hostnames of the app; otherwise, <code>false</code>.\n * If <code>true</code>, the app is only accessible via API management process.\n */\n hostNamesDisabled?: boolean;\n /** Unique identifier that verifies the custom domains assigned to the app. Customer will add this id to a txt record for verification. */\n customDomainVerificationId?: string;\n /** List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from tenants that site can be hosted with current settings. Read-only. */\n outboundIpAddresses?: string;\n /** List of IP addresses that the app uses for outbound connections (e.g. database access). Includes VIPs from all tenants except dataComponent. Read-only. */\n possibleOutboundIpAddresses?: string;\n /** Size of the function container. */\n containerSize?: number;\n /** Maximum allowed daily memory-time quota (applicable on dynamic apps only). */\n dailyMemoryTimeQuota?: number;\n /** App suspended till in case memory-time quota is exceeded. */\n suspendedTill?: Date | string;\n /**\n * Maximum number of workers.\n * This only applies to Functions container.\n */\n maxNumberOfWorkers?: number;\n /** If specified during app creation, the app is cloned from a source app. */\n cloningInfo?: CloningInfo;\n /** Name of the resource group the app belongs to. Read-only. */\n resourceGroup?: string;\n /** <code>true</code> if the app is a default container; otherwise, <code>false</code>. */\n isDefaultContainer?: boolean;\n /** Default hostname of the app. Read-only. */\n defaultHostName?: string;\n /** Status of the last deployment slot swap operation. */\n slotSwapStatus?: SlotSwapStatus;\n /**\n * HttpsOnly: configures a web site to accept only https requests. Issues redirect for\n * http requests\n */\n httpsOnly?: boolean;\n /** Site redundancy mode */\n redundancyMode?: \"None\" | \"Manual\" | \"Failover\" | \"ActiveActive\" | \"GeoRedundant\";\n /**\n * Specifies an operation id if this site has a pending operation.\n *\n * Value may contain a UUID\n */\n inProgressOperationId?: string;\n /** Checks if Customer provided storage account is required */\n storageAccountRequired?: boolean;\n /** Identity to use for Key Vault Reference authentication. */\n keyVaultReferenceIdentity?: string;\n /**\n * Azure Resource Manager ID of the Virtual network and subnet to be joined by Regional VNET Integration.\n * This must be of the form /subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}\n */\n virtualNetworkSubnetId?: string;\n}\n\nexport interface CustomHostnameAnalysisResult extends ProxyOnlyResource {\n /** CustomHostnameAnalysisResult resource specific properties */\n properties?: CustomHostnameAnalysisResultProperties;\n}\n\nexport interface CustomHostnameAnalysisResultProperties {\n /** <code>true</code> if hostname is already verified; otherwise, <code>false</code>. */\n isHostnameAlreadyVerified?: boolean;\n /** DNS verification test result. */\n customDomainVerificationTest?: \"Passed\" | \"Failed\" | \"Skipped\";\n /** Raw failure information if DNS verification fails. */\n customDomainVerificationFailureInfo?: ErrorEntity;\n /** <code>true</code> if there is a conflict on a scale unit; otherwise, <code>false</code>. */\n hasConflictOnScaleUnit?: boolean;\n /** <code>true</code> if there is a conflict across subscriptions; otherwise, <code>false</code>. */\n hasConflictAcrossSubscription?: boolean;\n /** Name of the conflicting app on scale unit if it's within the same subscription. */\n conflictingAppResourceId?: string;\n /** CName records controller can see for this hostname. */\n cNameRecords?: Array<string>;\n /** TXT records controller can see for this hostname. */\n txtRecords?: Array<string>;\n /** A records controller can see for this hostname. */\n aRecords?: Array<string>;\n /** Alternate CName records controller can see for this hostname. */\n alternateCNameRecords?: Array<string>;\n /** Alternate TXT records controller can see for this hostname. */\n alternateTxtRecords?: Array<string>;\n}\n\nexport interface CsmSlotEntity {\n /** Destination deployment slot during swap operation. */\n targetSlot: string;\n /** <code>true</code> to preserve Virtual Network to the slot during swap; otherwise, <code>false</code>. */\n preserveVnet: boolean;\n}\n\nexport interface BackupRequest extends ProxyOnlyResource {\n /** BackupRequest resource specific properties */\n properties?: BackupRequestProperties;\n}\n\nexport interface BackupRequestProperties {\n /** Name of the backup. */\n backupName?: string;\n /** True if the backup schedule is enabled (must be included in that case), false if the backup schedule should be disabled. */\n enabled?: boolean;\n /** SAS URL to the container. */\n storageAccountUrl: string;\n /** Schedule for the backup if it is executed periodically. */\n backupSchedule?: BackupSchedule;\n /** Databases included in the backup. */\n databases?: Array<DatabaseBackupSetting>;\n}\n\nexport interface BackupSchedule {\n /** How often the backup should be executed (e.g. for weekly backup, this should be set to 7 and FrequencyUnit should be set to Day) */\n frequencyInterval: number;\n /** The unit of time for how often the backup should be executed (e.g. for weekly backup, this should be set to Day and FrequencyInterval should be set to 7) */\n frequencyUnit: \"Day\" | \"Hour\";\n /** True if the retention policy should always keep at least one backup in the storage account, regardless how old it is; false otherwise. */\n keepAtLeastOneBackup: boolean;\n /** After how many days backups should be deleted. */\n retentionPeriodInDays: number;\n /** When the schedule should start working. */\n startTime?: Date | string;\n /** Last time when this schedule was triggered. */\n lastExecutionTime?: Date | string;\n}\n\nexport interface DatabaseBackupSetting {\n /** Database type (e.g. SqlAzure / MySql). */\n databaseType: \"SqlAzure\" | \"MySql\" | \"LocalMySql\" | \"PostgreSql\";\n name?: string;\n /**\n * Contains a connection string name that is linked to the SiteConfig.ConnectionStrings.\n * This is used during restore with overwrite connection strings options.\n */\n connectionStringName?: string;\n /** Contains a connection string to a database which is being backed up or restored. If the restore should happen to a new database, the database name inside is the new one. */\n connectionString?: string;\n}\n\nexport interface BackupItem extends ProxyOnlyResource {\n /** BackupItem resource specific properties */\n properties?: BackupItemProperties;\n}\n\nexport interface BackupItemProperties {\n /** Id of the backup. */\n id?: number;\n /** SAS URL for the storage account container which contains this backup. */\n storageAccountUrl?: string;\n /** Name of the blob which contains data for this backup. */\n blobName?: string;\n /** Name of this backup. */\n name?: string;\n /** Backup status. */\n status?:\n | \"InProgress\"\n | \"Failed\"\n | \"Succeeded\"\n | \"TimedOut\"\n | \"Created\"\n | \"Skipped\"\n | \"PartiallySucceeded\"\n | \"DeleteInProgress\"\n | \"DeleteFailed\"\n | \"Deleted\";\n /** Size of the backup in bytes. */\n sizeInBytes?: number;\n /** Timestamp of the backup creation. */\n created?: Date | string;\n /** Details regarding this backup. Might contain an error message. */\n log?: string;\n /** List of databases included in the backup. */\n databases?: Array<DatabaseBackupSetting>;\n /** True if this backup has been created due to a schedule being triggered. */\n scheduled?: boolean;\n /** Timestamp of a last restore operation which used this backup. */\n lastRestoreTimeStamp?: Date | string;\n /** Timestamp when this backup finished. */\n finishedTimeStamp?: Date | string;\n /** Unique correlation identifier. Please use this along with the timestamp while communicating with Azure support. */\n correlationId?: string;\n /** Size of the original web app which has been backed up. */\n websiteSizeInBytes?: number;\n}\n\nexport interface RestoreRequest extends ProxyOnlyResource {\n /** RestoreRequest resource specific properties */\n properties?: RestoreRequestProperties;\n}\n\nexport interface RestoreRequestProperties {\n /** SAS URL to the container. */\n storageAccountUrl: string;\n /** Name of a blob which contains the backup. */\n blobName?: string;\n /** <code>true</code> if the restore operation can overwrite target app; otherwise, <code>false</code>. <code>true</code> is needed if trying to restore over an existing app. */\n overwrite: boolean;\n /** Name of an app. */\n siteName?: string;\n /** Collection of databases which should be restored. This list has to match the list of databases included in the backup. */\n databases?: Array<DatabaseBackupSetting>;\n /**\n * Changes a logic when restoring an app with custom domains. <code>true</code> to remove custom domains automatically. If <code>false</code>, custom domains are added to\n * the app's object when it is being restored, but that might fail due to conflicts during the operation.\n */\n ignoreConflictingHostNames?: boolean;\n /** Ignore the databases and only restore the site content */\n ignoreDatabases?: boolean;\n /** Specify app service plan that will own restored site. */\n appServicePlan?: string;\n /** Operation type. */\n operationType?: \"Default\" | \"Clone\" | \"Relocation\" | \"Snapshot\" | \"CloudFS\";\n /** <code>true</code> if SiteConfig.ConnectionStrings should be set in new app; otherwise, <code>false</code>. */\n adjustConnectionStrings?: boolean;\n /** App Service Environment name, if needed (only when restoring an app to an App Service Environment). */\n hostingEnvironment?: string;\n}\n\nexport interface CsmPublishingCredentialsPoliciesEntity extends ProxyOnlyResource {\n /** CsmPublishingCredentialsPoliciesEntity resource specific properties */\n properties?: CsmPublishingCredentialsPoliciesEntityProperties;\n}\n\nexport interface CsmPublishingCredentialsPoliciesEntityProperties {\n /** <code>true</code> to allow access to a publishing method; otherwise, <code>false</code>. */\n allow: boolean;\n}\n\nexport interface SiteConfigResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: SiteConfig;\n}\n\nexport interface SiteAuthSettings extends ProxyOnlyResource {\n /** SiteAuthSettings resource specific properties */\n properties?: SiteAuthSettingsProperties;\n}\n\nexport interface SiteAuthSettingsProperties {\n /** <code>true</code> if the Authentication / Authorization feature is enabled for the current app; otherwise, <code>false</code>. */\n enabled?: boolean;\n /**\n * The RuntimeVersion of the Authentication / Authorization feature in use for the current app.\n * The setting in this value can control the behavior of certain features in the Authentication / Authorization module.\n */\n runtimeVersion?: string;\n /** The action to take when an unauthenticated client attempts to access the app. */\n unauthenticatedClientAction?: \"RedirectToLoginPage\" | \"AllowAnonymous\";\n /**\n * <code>true</code> to durably store platform-specific security tokens that are obtained during login flows; otherwise, <code>false</code>.\n * The default is <code>false</code>.\n */\n tokenStoreEnabled?: boolean;\n /**\n * External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored.\n * This is an advanced setting typically only needed by Windows Store application backends.\n * Note that URLs within the current domain are always implicitly allowed.\n */\n allowedExternalRedirectUrls?: Array<string>;\n /**\n * The default authentication provider to use when multiple providers are configured.\n * This setting is only needed if multiple providers are configured and the unauthenticated client\n * action is set to \"RedirectToLoginPage\".\n */\n defaultProvider?:\n | \"AzureActiveDirectory\"\n | \"Facebook\"\n | \"Google\"\n | \"MicrosoftAccount\"\n | \"Twitter\"\n | \"Github\";\n /**\n * The number of hours after session token expiration that a session token can be used to\n * call the token refresh API. The default is 72 hours.\n */\n tokenRefreshExtensionHours?: number;\n /**\n * The Client ID of this relying party application, known as the client_id.\n * This setting is required for enabling OpenID Connection authentication with Azure Active Directory or\n * other 3rd party OpenID Connect providers.\n * More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html\n */\n clientId?: string;\n /**\n * The Client Secret of this relying party application (in Azure Active Directory, this is also referred to as the Key).\n * This setting is optional. If no client secret is configured, the OpenID Connect implicit auth flow is used to authenticate end users.\n * Otherwise, the OpenID Connect Authorization Code Flow is used to authenticate end users.\n * More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html\n */\n clientSecret?: string;\n /** The app setting name that contains the client secret of the relying party application. */\n clientSecretSettingName?: string;\n /**\n * An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as\n * a replacement for the Client Secret. It is also optional.\n */\n clientSecretCertificateThumbprint?: string;\n /**\n * The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application.\n * When using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://sts.windows.net/{tenant-guid}/.\n * This URI is a case-sensitive identifier for the token issuer.\n * More information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html\n */\n issuer?: string;\n /** Gets a value indicating whether the issuer should be a valid HTTPS url and be validated as such. */\n validateIssuer?: boolean;\n /**\n * Allowed audience values to consider when validating JWTs issued by\n * Azure Active Directory. Note that the <code>ClientID</code> value is always considered an\n * allowed audience, regardless of this setting.\n */\n allowedAudiences?: Array<string>;\n /**\n * Login parameters to send to the OpenID Connect authorization endpoint when\n * a user logs in. Each parameter must be in the form \"key=value\".\n */\n additionalLoginParams?: Array<string>;\n /** Gets a JSON string containing the Azure AD Acl settings. */\n aadClaimsAuthorization?: string;\n /**\n * The OpenID Connect Client ID for the Google web application.\n * This setting is required for enabling Google Sign-In.\n * Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/\n */\n googleClientId?: string;\n /**\n * The client secret associated with the Google web application.\n * This setting is required for enabling Google Sign-In.\n * Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/\n */\n googleClientSecret?: string;\n /**\n * The app setting name that contains the client secret associated with\n * the Google web application.\n */\n googleClientSecretSettingName?: string;\n /**\n * The OAuth 2.0 scopes that will be requested as part of Google Sign-In authentication.\n * This setting is optional. If not specified, \"openid\", \"profile\", and \"email\" are used as default scopes.\n * Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/\n */\n googleOAuthScopes?: Array<string>;\n /**\n * The App ID of the Facebook app used for login.\n * This setting is required for enabling Facebook Login.\n * Facebook Login documentation: https://developers.facebook.com/docs/facebook-login\n */\n facebookAppId?: string;\n /**\n * The App Secret of the Facebook app used for Facebook Login.\n * This setting is required for enabling Facebook Login.\n * Facebook Login documentation: https://developers.facebook.com/docs/facebook-login\n */\n facebookAppSecret?: string;\n /** The app setting name that contains the app secret used for Facebook Login. */\n facebookAppSecretSettingName?: string;\n /**\n * The OAuth 2.0 scopes that will be requested as part of Facebook Login authentication.\n * This setting is optional.\n * Facebook Login documentation: https://developers.facebook.com/docs/facebook-login\n */\n facebookOAuthScopes?: Array<string>;\n /**\n * The Client Id of the GitHub app used for login.\n * This setting is required for enabling Github login\n */\n gitHubClientId?: string;\n /**\n * The Client Secret of the GitHub app used for Github Login.\n * This setting is required for enabling Github login.\n */\n gitHubClientSecret?: string;\n /**\n * The app setting name that contains the client secret of the Github\n * app used for GitHub Login.\n */\n gitHubClientSecretSettingName?: string;\n /**\n * The OAuth 2.0 scopes that will be requested as part of GitHub Login authentication.\n * This setting is optional\n */\n gitHubOAuthScopes?: Array<string>;\n /**\n * The OAuth 1.0a consumer key of the Twitter application used for sign-in.\n * This setting is required for enabling Twitter Sign-In.\n * Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in\n */\n twitterConsumerKey?: string;\n /**\n * The OAuth 1.0a consumer secret of the Twitter application used for sign-in.\n * This setting is required for enabling Twitter Sign-In.\n * Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in\n */\n twitterConsumerSecret?: string;\n /**\n * The app setting name that contains the OAuth 1.0a consumer secret of the Twitter\n * application used for sign-in.\n */\n twitterConsumerSecretSettingName?: string;\n /**\n * The OAuth 2.0 client ID that was created for the app used for authentication.\n * This setting is required for enabling Microsoft Account authentication.\n * Microsoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm\n */\n microsoftAccountClientId?: string;\n /**\n * The OAuth 2.0 client secret that was created for the app used for authentication.\n * This setting is required for enabling Microsoft Account authentication.\n * Microsoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm\n */\n microsoftAccountClientSecret?: string;\n /**\n * The app setting name containing the OAuth 2.0 client secret that was created for the\n * app used for authentication.\n */\n microsoftAccountClientSecretSettingName?: string;\n /**\n * The OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.\n * This setting is optional. If not specified, \"wl.basic\" is used as the default scope.\n * Microsoft Account Scopes and permissions documentation: https://msdn.microsoft.com/en-us/library/dn631845.aspx\n */\n microsoftAccountOAuthScopes?: Array<string>;\n /**\n * \"true\" if the auth config settings should be read from a file,\n * \"false\" otherwise\n */\n isAuthFromFile?: string;\n /**\n * The path of the config file containing auth settings.\n * If the path is relative, base will the site's root directory.\n */\n authFilePath?: string;\n /**\n * The ConfigVersion of the Authentication / Authorization feature in use for the current app.\n * The setting in this value can control the behavior of the control plane for Authentication / Authorization.\n */\n configVersion?: string;\n}\n\nexport interface SiteAuthSettingsV2 extends ProxyOnlyResource {\n /** SiteAuthSettingsV2 resource specific properties */\n properties?: SiteAuthSettingsV2Properties;\n}\n\nexport interface SiteAuthSettingsV2Properties {\n /** The configuration settings of the platform of App Service Authentication/Authorization. */\n platform?: AuthPlatform;\n /** The configuration settings that determines the validation flow of users using App Service Authentication/Authorization. */\n globalValidation?: GlobalValidation;\n /** The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization. */\n identityProviders?: IdentityProviders;\n /** The configuration settings of the login flow of users using App Service Authentication/Authorization. */\n login?: Login;\n /** The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization. */\n httpSettings?: HttpSettings;\n}\n\nexport interface AuthPlatform {\n /** <code>true</code> if the Authentication / Authorization feature is enabled for the current app; otherwise, <code>false</code>. */\n enabled?: boolean;\n /**\n * The RuntimeVersion of the Authentication / Authorization feature in use for the current app.\n * The setting in this value can control the behavior of certain features in the Authentication / Authorization module.\n */\n runtimeVersion?: string;\n /**\n * The path of the config file containing auth settings if they come from a file.\n * If the path is relative, base will the site's root directory.\n */\n configFilePath?: string;\n}\n\nexport interface GlobalValidation {\n /** <code>true</code> if the authentication flow is required any request is made; otherwise, <code>false</code>. */\n requireAuthentication?: boolean;\n /** The action to take when an unauthenticated client attempts to access the app. */\n unauthenticatedClientAction?:\n | \"RedirectToLoginPage\"\n | \"AllowAnonymous\"\n | \"Return401\"\n | \"Return403\";\n /**\n * The default authentication provider to use when multiple providers are configured.\n * This setting is only needed if multiple providers are configured and the unauthenticated client\n * action is set to \"RedirectToLoginPage\".\n */\n redirectToProvider?: string;\n /** The paths for which unauthenticated flow would not be redirected to the login page. */\n excludedPaths?: Array<string>;\n}\n\nexport interface IdentityProviders {\n /** The configuration settings of the Azure Active directory provider. */\n azureActiveDirectory?: AzureActiveDirectory;\n /** The configuration settings of the Facebook provider. */\n facebook?: Facebook;\n /** The configuration settings of the GitHub provider. */\n gitHub?: GitHub;\n /** The configuration settings of the Google provider. */\n google?: Google;\n /** The configuration settings of the legacy Microsoft Account provider. */\n legacyMicrosoftAccount?: LegacyMicrosoftAccount;\n /** The configuration settings of the Twitter provider. */\n twitter?: Twitter;\n /** The configuration settings of the Apple provider. */\n apple?: Apple;\n /** The configuration settings of the Azure Static Web Apps provider. */\n azureStaticWebApps?: AzureStaticWebApps;\n /**\n * The map of the name of the alias of each custom Open ID Connect provider to the\n * configuration settings of the custom Open ID Connect provider.\n */\n customOpenIdConnectProviders?: Record<string, CustomOpenIdConnectProvider>;\n}\n\nexport interface AzureActiveDirectory {\n /** <code>false</code> if the Azure Active Directory provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the Azure Active Directory app registration. */\n registration?: AzureActiveDirectoryRegistration;\n /** The configuration settings of the Azure Active Directory login flow. */\n login?: AzureActiveDirectoryLogin;\n /** The configuration settings of the Azure Active Directory token validation flow. */\n validation?: AzureActiveDirectoryValidation;\n /**\n * Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling.\n * This is an internal flag primarily intended to support the Azure Management Portal. Users should not\n * read or write to this property.\n */\n isAutoProvisioned?: boolean;\n}\n\nexport interface AzureActiveDirectoryRegistration {\n /**\n * The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application.\n * When using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://login.microsoftonline.com/v2.0/{tenant-guid}/.\n * This URI is a case-sensitive identifier for the token issuer.\n * More information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html\n */\n openIdIssuer?: string;\n /**\n * The Client ID of this relying party application, known as the client_id.\n * This setting is required for enabling OpenID Connection authentication with Azure Active Directory or\n * other 3rd party OpenID Connect providers.\n * More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html\n */\n clientId?: string;\n /** The app setting name that contains the client secret of the relying party application. */\n clientSecretSettingName?: string;\n /**\n * An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as\n * a replacement for the Client Secret. It is also optional.\n */\n clientSecretCertificateThumbprint?: string;\n /**\n * An alternative to the client secret thumbprint, that is the subject alternative name of a certificate used for signing purposes. This property acts as\n * a replacement for the Client Secret Certificate Thumbprint. It is also optional.\n */\n clientSecretCertificateSubjectAlternativeName?: string;\n /**\n * An alternative to the client secret thumbprint, that is the issuer of a certificate used for signing purposes. This property acts as\n * a replacement for the Client Secret Certificate Thumbprint. It is also optional.\n */\n clientSecretCertificateIssuer?: string;\n}\n\nexport interface AzureActiveDirectoryLogin {\n /**\n * Login parameters to send to the OpenID Connect authorization endpoint when\n * a user logs in. Each parameter must be in the form \"key=value\".\n */\n loginParameters?: Array<string>;\n /** <code>true</code> if the www-authenticate provider should be omitted from the request; otherwise, <code>false</code>. */\n disableWWWAuthenticate?: boolean;\n}\n\nexport interface AzureActiveDirectoryValidation {\n /** The configuration settings of the checks that should be made while validating the JWT Claims. */\n jwtClaimChecks?: JwtClaimChecks;\n /** The list of audiences that can make successful authentication/authorization requests. */\n allowedAudiences?: Array<string>;\n /** The configuration settings of the default authorization policy. */\n defaultAuthorizationPolicy?: DefaultAuthorizationPolicy;\n}\n\nexport interface JwtClaimChecks {\n /** The list of the allowed groups. */\n allowedGroups?: Array<string>;\n /** The list of the allowed client applications. */\n allowedClientApplications?: Array<string>;\n}\n\nexport interface DefaultAuthorizationPolicy {\n /** The configuration settings of the Azure Active Directory allowed principals. */\n allowedPrincipals?: AllowedPrincipals;\n /** The configuration settings of the Azure Active Directory allowed applications. */\n allowedApplications?: Array<string>;\n}\n\nexport interface AllowedPrincipals {\n /** The list of the allowed groups. */\n groups?: Array<string>;\n /** The list of the allowed identities. */\n identities?: Array<string>;\n}\n\nexport interface Facebook {\n /** <code>false</code> if the Facebook provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the app registration for the Facebook provider. */\n registration?: AppRegistration;\n /** The version of the Facebook api to be used while logging in. */\n graphApiVersion?: string;\n /** The configuration settings of the login flow. */\n login?: LoginScopes;\n}\n\nexport interface AppRegistration {\n /** The App ID of the app used for login. */\n appId?: string;\n /** The app setting name that contains the app secret. */\n appSecretSettingName?: string;\n}\n\nexport interface LoginScopes {\n /** A list of the scopes that should be requested while authenticating. */\n scopes?: Array<string>;\n}\n\nexport interface GitHub {\n /** <code>false</code> if the GitHub provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the app registration for the GitHub provider. */\n registration?: ClientRegistration;\n /** The configuration settings of the login flow. */\n login?: LoginScopes;\n}\n\nexport interface ClientRegistration {\n /** The Client ID of the app used for login. */\n clientId?: string;\n /** The app setting name that contains the client secret. */\n clientSecretSettingName?: string;\n}\n\nexport interface Google {\n /** <code>false</code> if the Google provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the app registration for the Google provider. */\n registration?: ClientRegistration;\n /** The configuration settings of the login flow. */\n login?: LoginScopes;\n /** The configuration settings of the Azure Active Directory token validation flow. */\n validation?: AllowedAudiencesValidation;\n}\n\nexport interface AllowedAudiencesValidation {\n /** The configuration settings of the allowed list of audiences from which to validate the JWT token. */\n allowedAudiences?: Array<string>;\n}\n\nexport interface LegacyMicrosoftAccount {\n /** <code>false</code> if the legacy Microsoft Account provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the app registration for the legacy Microsoft Account provider. */\n registration?: ClientRegistration;\n /** The configuration settings of the login flow. */\n login?: LoginScopes;\n /** The configuration settings of the legacy Microsoft Account provider token validation flow. */\n validation?: AllowedAudiencesValidation;\n}\n\nexport interface Twitter {\n /** <code>false</code> if the Twitter provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the app registration for the Twitter provider. */\n registration?: TwitterRegistration;\n}\n\nexport interface TwitterRegistration {\n /**\n * The OAuth 1.0a consumer key of the Twitter application used for sign-in.\n * This setting is required for enabling Twitter Sign-In.\n * Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in\n */\n consumerKey?: string;\n /**\n * The app setting name that contains the OAuth 1.0a consumer secret of the Twitter\n * application used for sign-in.\n */\n consumerSecretSettingName?: string;\n}\n\nexport interface Apple {\n /** <code>false</code> if the Apple provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the Apple registration. */\n registration?: AppleRegistration;\n /** The configuration settings of the login flow. */\n login?: LoginScopes;\n}\n\nexport interface AppleRegistration {\n /** The Client ID of the app used for login. */\n clientId?: string;\n /** The app setting name that contains the client secret. */\n clientSecretSettingName?: string;\n}\n\nexport interface AzureStaticWebApps {\n /** <code>false</code> if the Azure Static Web Apps provider should not be enabled despite the set registration; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the Azure Static Web Apps registration. */\n registration?: AzureStaticWebAppsRegistration;\n}\n\nexport interface AzureStaticWebAppsRegistration {\n /** The Client ID of the app used for login. */\n clientId?: string;\n}\n\nexport interface CustomOpenIdConnectProvider {\n /** <code>false</code> if the custom Open ID provider provider should not be enabled; otherwise, <code>true</code>. */\n enabled?: boolean;\n /** The configuration settings of the app registration for the custom Open ID Connect provider. */\n registration?: OpenIdConnectRegistration;\n /** The configuration settings of the login flow of the custom Open ID Connect provider. */\n login?: OpenIdConnectLogin;\n}\n\nexport interface OpenIdConnectRegistration {\n /** The client id of the custom Open ID Connect provider. */\n clientId?: string;\n /** The authentication credentials of the custom Open ID Connect provider. */\n clientCredential?: OpenIdConnectClientCredential;\n /** The configuration settings of the endpoints used for the custom Open ID Connect provider. */\n openIdConnectConfiguration?: OpenIdConnectConfig;\n}\n\nexport interface OpenIdConnectClientCredential {\n /** The method that should be used to authenticate the user. */\n method?: \"ClientSecretPost\";\n /** The app setting that contains the client secret for the custom Open ID Connect provider. */\n clientSecretSettingName?: string;\n}\n\nexport interface OpenIdConnectConfig {\n /** The endpoint to be used to make an authorization request. */\n authorizationEndpoint?: string;\n /** The endpoint to be used to request a token. */\n tokenEndpoint?: string;\n /** The endpoint that issues the token. */\n issuer?: string;\n /** The endpoint that provides the keys necessary to validate the token. */\n certificationUri?: string;\n /** The endpoint that contains all the configuration endpoints for the provider. */\n wellKnownOpenIdConfiguration?: string;\n}\n\nexport interface OpenIdConnectLogin {\n /** The name of the claim that contains the users name. */\n nameClaimType?: string;\n /** A list of the scopes that should be requested while authenticating. */\n scopes?: Array<string>;\n}\n\nexport interface Login {\n /** The routes that specify the endpoints used for login and logout requests. */\n routes?: LoginRoutes;\n /** The configuration settings of the token store. */\n tokenStore?: TokenStore;\n /** <code>true</code> if the fragments from the request are preserved after the login request is made; otherwise, <code>false</code>. */\n preserveUrlFragmentsForLogins?: boolean;\n /**\n * External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored.\n * This is an advanced setting typically only needed by Windows Store application backends.\n * Note that URLs within the current domain are always implicitly allowed.\n */\n allowedExternalRedirectUrls?: Array<string>;\n /** The configuration settings of the session cookie's expiration. */\n cookieExpiration?: CookieExpiration;\n /** The configuration settings of the nonce used in the login flow. */\n nonce?: Nonce;\n}\n\nexport interface LoginRoutes {\n /** The endpoint at which a logout request should be made. */\n logoutEndpoint?: string;\n}\n\nexport interface TokenStore {\n /**\n * <code>true</code> to durably store platform-specific security tokens that are obtained during login flows; otherwise, <code>false</code>.\n * The default is <code>false</code>.\n */\n enabled?: boolean;\n /**\n * The number of hours after session token expiration that a session token can be used to\n * call the token refresh API. The default is 72 hours.\n */\n tokenRefreshExtensionHours?: number;\n /** The configuration settings of the storage of the tokens if a file system is used. */\n fileSystem?: FileSystemTokenStore;\n /** The configuration settings of the storage of the tokens if blob storage is used. */\n azureBlobStorage?: BlobStorageTokenStore;\n}\n\nexport interface FileSystemTokenStore {\n /** The directory in which the tokens will be stored. */\n directory?: string;\n}\n\nexport interface BlobStorageTokenStore {\n /** The name of the app setting containing the SAS URL of the blob storage containing the tokens. */\n sasUrlSettingName?: string;\n}\n\nexport interface CookieExpiration {\n /** The convention used when determining the session cookie's expiration. */\n convention?: \"FixedTime\" | \"IdentityProviderDerived\";\n /** The time after the request is made when the session cookie should expire. */\n timeToExpiration?: string;\n}\n\nexport interface Nonce {\n /** <code>false</code> if the nonce should not be validated while completing the login flow; otherwise, <code>true</code>. */\n validateNonce?: boolean;\n /** The time after the request is made when the nonce should expire. */\n nonceExpirationInterval?: string;\n}\n\nexport interface HttpSettings {\n /** <code>false</code> if the authentication/authorization responses not having the HTTPS scheme are permissible; otherwise, <code>true</code>. */\n requireHttps?: boolean;\n /** The configuration settings of the paths HTTP requests. */\n routes?: HttpSettingsRoutes;\n /** The configuration settings of a forward proxy used to make the requests. */\n forwardProxy?: ForwardProxy;\n}\n\nexport interface HttpSettingsRoutes {\n /** The prefix that should precede all the authentication/authorization paths. */\n apiPrefix?: string;\n}\n\nexport interface ForwardProxy {\n /** The convention used to determine the url of the request made. */\n convention?: \"NoProxy\" | \"Standard\" | \"Custom\";\n /** The name of the header containing the host of the request. */\n customHostHeaderName?: string;\n /** The name of the header containing the scheme of the request. */\n customProtoHeaderName?: string;\n}\n\nexport interface AzureStoragePropertyDictionaryResource extends ProxyOnlyResource {\n /** Azure storage accounts. */\n properties?: Record<string, AzureStorageInfoValue>;\n}\n\nexport interface ApiKVReference extends ProxyOnlyResource {\n /** ApiKVReference resource specific properties */\n properties?: ApiKVReferenceProperties;\n}\n\nexport interface ApiKVReferenceProperties {\n reference?: string;\n status?:\n | \"Initialized\"\n | \"Resolved\"\n | \"InvalidSyntax\"\n | \"MSINotEnabled\"\n | \"VaultNotFound\"\n | \"SecretNotFound\"\n | \"SecretVersionNotFound\"\n | \"AccessToKeyVaultDenied\"\n | \"OtherReasons\"\n | \"FetchTimedOut\"\n | \"UnauthorizedClient\";\n vaultName?: string;\n secretName?: string;\n secretVersion?: string;\n /** Managed service identity. */\n identityType?: ManagedServiceIdentity;\n details?: string;\n source?: \"KeyVault\";\n activeVersion?: string;\n}\n\nexport interface ConnectionStringDictionary extends ProxyOnlyResource {\n /** Connection strings. */\n properties?: Record<string, ConnStringValueTypePair>;\n}\n\nexport interface ConnStringValueTypePair {\n /** Value of pair. */\n value: string;\n /** Type of database. */\n type:\n | \"MySql\"\n | \"SQLServer\"\n | \"SQLAzure\"\n | \"Custom\"\n | \"NotificationHub\"\n | \"ServiceBus\"\n | \"EventHub\"\n | \"ApiHub\"\n | \"DocDb\"\n | \"RedisCache\"\n | \"PostgreSQL\";\n}\n\nexport interface SiteLogsConfig extends ProxyOnlyResource {\n /** SiteLogsConfig resource specific properties */\n properties?: SiteLogsConfigProperties;\n}\n\nexport interface SiteLogsConfigProperties {\n /** Application logs configuration. */\n applicationLogs?: ApplicationLogsConfig;\n /** HTTP logs configuration. */\n httpLogs?: HttpLogsConfig;\n /** Failed requests tracing configuration. */\n failedRequestsTracing?: EnabledConfig;\n /** Detailed error messages configuration. */\n detailedErrorMessages?: EnabledConfig;\n}\n\nexport interface ApplicationLogsConfig {\n /** Application logs to file system configuration. */\n fileSystem?: FileSystemApplicationLogsConfig;\n /** Application logs to azure table storage configuration. */\n azureTableStorage?: AzureTableStorageApplicationLogsConfig;\n /** Application logs to blob storage configuration. */\n azureBlobStorage?: AzureBlobStorageApplicationLogsConfig;\n}\n\nexport interface FileSystemApplicationLogsConfig {\n /** Log level. */\n level?: \"Off\" | \"Verbose\" | \"Information\" | \"Warning\" | \"Error\";\n}\n\nexport interface AzureTableStorageApplicationLogsConfig {\n /** Log level. */\n level?: \"Off\" | \"Verbose\" | \"Information\" | \"Warning\" | \"Error\";\n /** SAS URL to an Azure table with add/query/delete permissions. */\n sasUrl: string;\n}\n\nexport interface AzureBlobStorageApplicationLogsConfig {\n /** Log level. */\n level?: \"Off\" | \"Verbose\" | \"Information\" | \"Warning\" | \"Error\";\n /** SAS url to a azure blob container with read/write/list/delete permissions. */\n sasUrl?: string;\n /**\n * Retention in days.\n * Remove blobs older than X days.\n * 0 or lower means no retention.\n */\n retentionInDays?: number;\n}\n\nexport interface HttpLogsConfig {\n /** Http logs to file system configuration. */\n fileSystem?: FileSystemHttpLogsConfig;\n /** Http logs to azure blob storage configuration. */\n azureBlobStorage?: AzureBlobStorageHttpLogsConfig;\n}\n\nexport interface FileSystemHttpLogsConfig {\n /**\n * Maximum size in megabytes that http log files can use.\n * When reached old log files will be removed to make space for new ones.\n * Value can range between 25 and 100.\n */\n retentionInMb?: number;\n /**\n * Retention in days.\n * Remove files older than X days.\n * 0 or lower means no retention.\n */\n retentionInDays?: number;\n /** True if configuration is enabled, false if it is disabled and null if configuration is not set. */\n enabled?: boolean;\n}\n\nexport interface AzureBlobStorageHttpLogsConfig {\n /** SAS url to a azure blob container with read/write/list/delete permissions. */\n sasUrl?: string;\n /**\n * Retention in days.\n * Remove blobs older than X days.\n * 0 or lower means no retention.\n */\n retentionInDays?: number;\n /** True if configuration is enabled, false if it is disabled and null if configuration is not set. */\n enabled?: boolean;\n}\n\nexport interface EnabledConfig {\n /** True if configuration is enabled, false if it is disabled and null if configuration is not set. */\n enabled?: boolean;\n}\n\nexport interface SlotConfigNamesResource extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: SlotConfigNames;\n}\n\nexport interface SlotConfigNames {\n /** List of connection string names. */\n connectionStringNames?: Array<string>;\n /** List of application settings names. */\n appSettingNames?: Array<string>;\n /** List of external Azure storage account identifiers. */\n azureStorageConfigNames?: Array<string>;\n}\n\nexport interface SiteConfigurationSnapshotInfo extends ProxyOnlyResource {\n /** SiteConfigurationSnapshotInfo resource specific properties */\n properties?: SiteConfigurationSnapshotInfoProperties;\n}\n\nexport interface SiteConfigurationSnapshotInfoProperties {\n /** The time the snapshot was taken. */\n time?: Date | string;\n /** The id of the snapshot */\n snapshotId?: number;\n}\n\nexport interface ContinuousWebJob extends ProxyOnlyResource {\n /** ContinuousWebJob resource specific properties */\n properties?: ContinuousWebJobProperties;\n}\n\nexport interface ContinuousWebJobProperties {\n /** Job status. */\n status?: \"Initializing\" | \"Starting\" | \"Running\" | \"PendingRestart\" | \"Stopped\";\n /** Detailed status. */\n detailed_status?: string;\n /** Log URL. */\n log_url?: string;\n /** Run command. */\n run_command?: string;\n /** Job URL. */\n url?: string;\n /** Extra Info URL. */\n extra_info_url?: string;\n /** Job type. */\n web_job_type?: \"Continuous\" | \"Triggered\";\n /** Error information. */\n error?: string;\n /** Using SDK? */\n using_sdk?: boolean;\n /** Job settings. */\n settings?: Record<string, Record<string, unknown>>;\n}\n\nexport interface Deployment extends ProxyOnlyResource {\n /** Deployment resource specific properties */\n properties?: DeploymentProperties;\n}\n\nexport interface DeploymentProperties {\n /** Deployment status. */\n status?: number;\n /** Details about deployment status. */\n message?: string;\n /** Who authored the deployment. */\n author?: string;\n /** Who performed the deployment. */\n deployer?: string;\n /** Author email. */\n author_email?: string;\n /** Start time. */\n start_time?: Date | string;\n /** End time. */\n end_time?: Date | string;\n /** True if deployment is currently active, false if completed and null if not started. */\n active?: boolean;\n /** Details on deployment. */\n details?: string;\n}\n\nexport interface MSDeployStatus extends ProxyOnlyResource {\n /** MSDeployStatus resource specific properties */\n properties?: MSDeployStatusProperties;\n}\n\nexport interface MSDeployStatusProperties {\n /** Username of deployer */\n deployer?: string;\n /** Provisioning state */\n provisioningState?: \"accepted\" | \"running\" | \"succeeded\" | \"failed\" | \"canceled\";\n /** Start time of deploy operation */\n startTime?: Date | string;\n /** End time of deploy operation */\n endTime?: Date | string;\n /** Whether the deployment operation has completed */\n complete?: boolean;\n}\n\nexport interface MSDeploy extends ProxyOnlyResource {\n /** Core resource properties */\n properties?: MSDeployCore;\n}\n\nexport interface MSDeployCore {\n /** Package URI */\n packageUri?: string;\n /** SQL Connection String */\n connectionString?: string;\n /** Database Type */\n dbType?: string;\n /** URI of MSDeploy Parameters file. Must not be set if SetParameters is used. */\n setParametersXmlFileUri?: string;\n /** MSDeploy Parameters. Must not be set if SetParametersXmlFileUri is used. */\n setParameters?: Record<string, string>;\n /**\n * Controls whether the MSDeploy operation skips the App_Data directory.\n * If set to <code>true</code>, the existing App_Data directory on the destination\n * will not be deleted, and any App_Data directory in the source will be ignored.\n * Setting is <code>false</code> by default.\n */\n skipAppData?: boolean;\n /**\n * Sets the AppOffline rule while the MSDeploy operation executes.\n * Setting is <code>false</code> by default.\n */\n appOffline?: boolean;\n}\n\nexport interface MSDeployLog extends ProxyOnlyResource {\n /** MSDeployLog resource specific properties */\n properties?: MSDeployLogProperties;\n}\n\nexport interface MSDeployLogProperties {\n /** List of log entry messages */\n entries?: Array<MSDeployLogEntry>;\n}\n\nexport interface MSDeployLogEntry {\n /** Timestamp of log entry */\n time?: Date | string;\n /** Log entry type */\n type?: \"Message\" | \"Warning\" | \"Error\";\n /** Log entry message */\n message?: string;\n}\n\nexport interface FunctionEnvelope extends ProxyOnlyResource {\n /** FunctionEnvelope resource specific properties */\n properties?: FunctionEnvelopeProperties;\n}\n\nexport interface FunctionEnvelopeProperties {\n /** Function App ID. */\n function_app_id?: string;\n /** Script root path URI. */\n script_root_path_href?: string;\n /** Script URI. */\n script_href?: string;\n /** Config URI. */\n config_href?: string;\n /** Test data URI. */\n test_data_href?: string;\n /** Secrets file URI. */\n secrets_file_href?: string;\n /** Function URI. */\n href?: string;\n /** Config information. */\n config?: Record<string, unknown>;\n /** File list. */\n files?: Record<string, string>;\n /** Test data used when testing via the Azure Portal. */\n test_data?: string;\n /** The invocation URL */\n invoke_url_template?: string;\n /** The function language */\n language?: string;\n /** Gets or sets a value indicating whether the function is disabled */\n isDisabled?: boolean;\n}\n\nexport interface KeyInfo {\n /** Key name */\n name?: string;\n /** Key value */\n value?: string;\n}\n\nexport interface HostNameBinding extends ProxyOnlyResource {\n /** HostNameBinding resource specific properties */\n properties?: HostNameBindingProperties;\n}\n\nexport interface HostNameBindingProperties {\n /** App Service app name. */\n siteName?: string;\n /** Fully qualified ARM domain resource URI. */\n domainId?: string;\n /** Azure resource name. */\n azureResourceName?: string;\n /** Azure resource type. */\n azureResourceType?: \"Website\" | \"TrafficManager\";\n /** Custom DNS record type. */\n customHostNameDnsRecordType?: \"CName\" | \"A\";\n /** Hostname type. */\n hostNameType?: \"Verified\" | \"Managed\";\n /** SSL type */\n sslState?: \"Disabled\" | \"SniEnabled\" | \"IpBasedEnabled\";\n /** SSL certificate thumbprint */\n thumbprint?: string;\n /** Virtual IP address assigned to the hostname if IP based SSL is enabled. */\n virtualIP?: string;\n}\n\nexport interface RelayServiceConnectionEntity extends ProxyOnlyResource {\n /** RelayServiceConnectionEntity resource specific properties */\n properties?: RelayServiceConnectionEntityProperties;\n}\n\nexport interface RelayServiceConnectionEntityProperties {\n entityName?: string;\n entityConnectionString?: string;\n resourceType?: string;\n resourceConnectionString?: string;\n hostname?: string;\n port?: number;\n biztalkUri?: string;\n}\n\nexport interface WebSiteInstanceStatus extends ProxyOnlyResource {\n /** WebSiteInstanceStatus resource specific properties */\n properties?: WebSiteInstanceStatusProperties;\n}\n\nexport interface WebSiteInstanceStatusProperties {\n state?: \"READY\" | \"STOPPED\" | \"UNKNOWN\";\n /** Link to the GetStatusApi in Kudu */\n statusUrl?: string;\n /** Link to the Diagnose and Solve Portal */\n detectorUrl?: string;\n /** Link to the console to web app instance */\n consoleUrl?: string;\n /** Link to the console to web app instance */\n healthCheckUrl?: string;\n /** Dictionary of <ContainerInfo> */\n containers?: Record<string, ContainerInfo>;\n}\n\nexport interface ContainerInfo {\n currentTimeStamp?: Date | string;\n previousTimeStamp?: Date | string;\n currentCpuStats?: ContainerCpuStatistics;\n previousCpuStats?: ContainerCpuStatistics;\n memoryStats?: ContainerMemoryStatistics;\n name?: string;\n id?: string;\n eth0?: ContainerNetworkInterfaceStatistics;\n}\n\nexport interface ContainerCpuStatistics {\n cpuUsage?: ContainerCpuUsage;\n systemCpuUsage?: number;\n onlineCpuCount?: number;\n throttlingData?: ContainerThrottlingData;\n}\n\nexport interface ContainerCpuUsage {\n totalUsage?: number;\n perCpuUsage?: Array<number>;\n kernelModeUsage?: number;\n userModeUsage?: number;\n}\n\nexport interface ContainerThrottlingData {\n periods?: number;\n throttledPeriods?: number;\n throttledTime?: number;\n}\n\nexport interface ContainerMemoryStatistics {\n usage?: number;\n maxUsage?: number;\n limit?: number;\n}\n\nexport interface ContainerNetworkInterfaceStatistics {\n rxBytes?: number;\n rxPackets?: number;\n rxErrors?: number;\n rxDropped?: number;\n txBytes?: number;\n txPackets?: number;\n txErrors?: number;\n txDropped?: number;\n}\n\nexport interface ProcessInfo extends ProxyOnlyResource {\n /** ProcessInfo resource specific properties */\n properties?: ProcessInfoProperties;\n}\n\nexport interface ProcessInfoProperties {\n /** ARM Identifier for deployment. */\n identifier?: number;\n /** Deployment name. */\n deployment_name?: string;\n /** HRef URI. */\n href?: string;\n /** Minidump URI. */\n minidump?: string;\n /** Is profile running? */\n is_profile_running?: boolean;\n /** Is the IIS Profile running? */\n is_iis_profile_running?: boolean;\n /** IIS Profile timeout (seconds). */\n iis_profile_timeout_in_seconds?: number;\n /** Parent process. */\n parent?: string;\n /** Child process list. */\n children?: Array<string>;\n /** Thread list. */\n threads?: Array<ProcessThreadInfo>;\n /** List of open files. */\n open_file_handles?: Array<string>;\n /** List of modules. */\n modules?: Array<ProcessModuleInfo>;\n /** File name of this process. */\n file_name?: string;\n /** Command line. */\n command_line?: string;\n /** User name. */\n user_name?: string;\n /** Handle count. */\n handle_count?: number;\n /** Module count. */\n module_count?: number;\n /** Thread count. */\n thread_count?: number;\n /** Start time. */\n start_time?: Date | string;\n /** Total CPU time. */\n total_cpu_time?: string;\n /** User CPU time. */\n user_cpu_time?: string;\n /** Privileged CPU time. */\n privileged_cpu_time?: string;\n /** Working set. */\n working_set?: number;\n /** Peak working set. */\n peak_working_set?: number;\n /** Private memory size. */\n private_memory?: number;\n /** Virtual memory size. */\n virtual_memory?: number;\n /** Peak virtual memory usage. */\n peak_virtual_memory?: number;\n /** Paged system memory. */\n paged_system_memory?: number;\n /** Non-paged system memory. */\n non_paged_system_memory?: number;\n /** Paged memory. */\n paged_memory?: number;\n /** Peak paged memory. */\n peak_paged_memory?: number;\n /** Time stamp. */\n time_stamp?: Date | string;\n /** List of environment variables. */\n environment_variables?: Record<string, string>;\n /** Is this the SCM site? */\n is_scm_site?: boolean;\n /** Is this a Web Job? */\n is_webjob?: boolean;\n /** Description of process. */\n description?: string;\n}\n\nexport interface ProcessThreadInfo extends ProxyOnlyResource {\n /** ProcessThreadInfo resource specific properties */\n properties?: ProcessThreadInfoProperties;\n}\n\nexport interface ProcessThreadInfoProperties {\n /** Site extension ID. */\n identifier?: number;\n /** HRef URI. */\n href?: string;\n /** Process URI. */\n process?: string;\n /** Start address. */\n start_address?: string;\n /** Current thread priority. */\n current_priority?: number;\n /** Thread priority level. */\n priority_level?: string;\n /** Base priority. */\n base_priority?: number;\n /** Start time. */\n start_time?: Date | string;\n /** Total processor time. */\n total_processor_time?: string;\n /** User processor time. */\n user_processor_time?: string;\n /** Thread state. */\n state?: string;\n /** Wait reason. */\n wait_reason?: string;\n}\n\nexport interface ProcessModuleInfo extends ProxyOnlyResource {\n /** ProcessModuleInfo resource specific properties */\n properties?: ProcessModuleInfoProperties;\n}\n\nexport interface ProcessModuleInfoProperties {\n /** Base address. Used as module identifier in ARM resource URI. */\n base_address?: string;\n /** File name. */\n file_name?: string;\n /** HRef URI. */\n href?: string;\n /** File path. */\n file_path?: string;\n /** Module memory size. */\n module_memory_size?: number;\n /** File version. */\n file_version?: string;\n /** File description. */\n file_description?: string;\n /** Product name. */\n product?: string;\n /** Product version. */\n product_version?: string;\n /** Is debug? */\n is_debug?: boolean;\n /** Module language (locale). */\n language?: string;\n}\n\nexport interface StorageMigrationOptions extends ProxyOnlyResource {\n /** StorageMigrationOptions resource specific properties */\n properties?: StorageMigrationOptionsProperties;\n}\n\nexport interface StorageMigrationOptionsProperties {\n /** AzureFiles connection string. */\n azurefilesConnectionString: string;\n /** AzureFiles share. */\n azurefilesShare: string;\n /** <code>true</code>if the app should be switched over; otherwise, <code>false</code>. */\n switchSiteAfterMigration?: boolean;\n /** <code>true</code> if the app should be read only during copy operation; otherwise, <code>false</code>. */\n blockWriteAccessToSite?: boolean;\n}\n\nexport interface StorageMigrationResponse extends ProxyOnlyResource {\n /** StorageMigrationResponse resource specific properties */\n properties?: StorageMigrationResponseProperties;\n}\n\nexport interface StorageMigrationResponseProperties {\n /** When server starts the migration process, it will return an operation ID identifying that particular migration operation. */\n operationId?: string;\n}\n\nexport interface MigrateMySqlRequest extends ProxyOnlyResource {\n /** MigrateMySqlRequest resource specific properties */\n properties?: MigrateMySqlRequestProperties;\n}\n\nexport interface MigrateMySqlRequestProperties {\n /** Connection string to the remote MySQL database. */\n connectionString: string;\n /** The type of migration operation to be done */\n migrationType: \"LocalToRemote\" | \"RemoteToLocal\";\n}\n\nexport interface MigrateMySqlStatus extends ProxyOnlyResource {\n /** MigrateMySqlStatus resource specific properties */\n properties?: MigrateMySqlStatusProperties;\n}\n\nexport interface MigrateMySqlStatusProperties {\n /** Status of the migration task. */\n migrationOperationStatus?: \"InProgress\" | \"Failed\" | \"Succeeded\" | \"TimedOut\" | \"Created\";\n /** Operation ID for the migration task. */\n operationId?: string;\n /** True if the web app has in app MySql enabled */\n localMySqlEnabled?: boolean;\n}\n\nexport interface SwiftVirtualNetwork extends ProxyOnlyResource {\n /** SwiftVirtualNetwork resource specific properties */\n properties?: SwiftVirtualNetworkProperties;\n}\n\nexport interface SwiftVirtualNetworkProperties {\n /** The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first. */\n subnetResourceId?: string;\n /** A flag that specifies if the scale unit this Web App is on supports Swift integration. */\n swiftSupported?: boolean;\n}\n\nexport interface NetworkFeatures extends ProxyOnlyResource {\n /** NetworkFeatures resource specific properties */\n properties?: NetworkFeaturesProperties;\n}\n\nexport interface NetworkFeaturesProperties {\n /** The Virtual Network name. */\n virtualNetworkName?: string;\n /** The Virtual Network summary view. */\n virtualNetworkConnection?: VnetInfo;\n /** The Hybrid Connections summary view. */\n hybridConnections?: Array<RelayServiceConnectionEntity>;\n /** The Hybrid Connection V2 (Service Bus) view. */\n hybridConnectionsV2?: Array<HybridConnection>;\n}\n\nexport interface SitePhpErrorLogFlag extends ProxyOnlyResource {\n /** SitePhpErrorLogFlag resource specific properties */\n properties?: SitePhpErrorLogFlagProperties;\n}\n\nexport interface SitePhpErrorLogFlagProperties {\n /** Local log_errors setting. */\n localLogErrors?: string;\n /** Master log_errors setting. */\n masterLogErrors?: string;\n /** Local log_errors_max_len setting. */\n localLogErrorsMaxLength?: string;\n /** Master log_errors_max_len setting. */\n masterLogErrorsMaxLength?: string;\n}\n\nexport interface PremierAddOn extends Resource {\n /** PremierAddOn resource specific properties */\n properties?: PremierAddOnProperties;\n}\n\nexport interface PremierAddOnProperties {\n /** Premier add on SKU. */\n sku?: string;\n /** Premier add on Product. */\n product?: string;\n /** Premier add on Vendor. */\n vendor?: string;\n /** Premier add on Marketplace publisher. */\n marketplacePublisher?: string;\n /** Premier add on Marketplace offer. */\n marketplaceOffer?: string;\n}\n\nexport interface PremierAddOnPatchResource extends ProxyOnlyResource {\n /** PremierAddOnPatchResource resource specific properties */\n properties?: PremierAddOnPatchResourceProperties;\n}\n\nexport interface PremierAddOnPatchResourceProperties {\n /** Premier add on SKU. */\n sku?: string;\n /** Premier add on Product. */\n product?: string;\n /** Premier add on Vendor. */\n vendor?: string;\n /** Premier add on Marketplace publisher. */\n marketplacePublisher?: string;\n /** Premier add on Marketplace offer. */\n marketplaceOffer?: string;\n}\n\nexport interface PrivateAccess extends ProxyOnlyResource {\n /** PrivateAccess resource specific properties */\n properties?: PrivateAccessProperties;\n}\n\nexport interface PrivateAccessProperties {\n /** Whether private access is enabled or not. */\n enabled?: boolean;\n /** The Virtual Networks (and subnets) allowed to access the site privately. */\n virtualNetworks?: Array<PrivateAccessVirtualNetwork>;\n}\n\nexport interface PrivateAccessVirtualNetwork {\n /** The name of the Virtual Network. */\n name?: string;\n /** The key (ID) of the Virtual Network. */\n key?: number;\n /** The ARM uri of the Virtual Network */\n resourceId?: string;\n /** A List of subnets that access is allowed to on this Virtual Network. An empty array (but not null) is interpreted to mean that all subnets are allowed within this Virtual Network. */\n subnets?: Array<PrivateAccessSubnet>;\n}\n\nexport interface PrivateAccessSubnet {\n /** The name of the subnet. */\n name?: string;\n /** The key (ID) of the subnet. */\n key?: number;\n}\n\nexport interface PublicCertificate extends ProxyOnlyResource {\n /** PublicCertificate resource specific properties */\n properties?: PublicCertificateProperties;\n}\n\nexport interface PublicCertificateProperties {\n /**\n * Public Certificate byte array\n *\n * Value may contain base64 encoded characters\n */\n blob?: string;\n /** Public Certificate Location */\n publicCertificateLocation?: \"CurrentUserMy\" | \"LocalMachineMy\" | \"Unknown\";\n /** Certificate Thumbprint */\n thumbprint?: string;\n}\n\nexport interface CsmPublishingProfileOptions {\n /**\n * Name of the format. Valid values are:\n * FileZilla3\n * WebDeploy -- default\n * Ftp\n */\n format?: \"FileZilla3\" | \"WebDeploy\" | \"Ftp\";\n /** Include the DisasterRecover endpoint if true */\n includeDisasterRecoveryEndpoints?: boolean;\n}\n\nexport interface DeletedAppRestoreRequest extends ProxyOnlyResource {\n /** DeletedAppRestoreRequest resource specific properties */\n properties?: DeletedAppRestoreRequestProperties;\n}\n\nexport interface DeletedAppRestoreRequestProperties {\n /**\n * ARM resource ID of the deleted app. Example:\n * /subscriptions/{subId}/providers/Microsoft.Web/deletedSites/{deletedSiteId}\n */\n deletedSiteId?: string;\n /** If true, deleted site configuration, in addition to content, will be restored. */\n recoverConfiguration?: boolean;\n /**\n * Point in time to restore the deleted app from, formatted as a DateTime string.\n * If unspecified, default value is the time that the app was deleted.\n */\n snapshotTime?: string;\n /** If true, the snapshot is retrieved from DRSecondary endpoint. */\n useDRSecondary?: boolean;\n}\n\nexport interface SnapshotRestoreRequest extends ProxyOnlyResource {\n /** SnapshotRestoreRequest resource specific properties */\n properties?: SnapshotRestoreRequestProperties;\n}\n\nexport interface SnapshotRestoreRequestProperties {\n /** Point in time in which the app restore should be done, formatted as a DateTime string. */\n snapshotTime?: string;\n /**\n * Optional. Specifies the web app that snapshot contents will be retrieved from.\n * If empty, the targeted web app will be used as the source.\n */\n recoverySource?: SnapshotRecoverySource;\n /** If <code>true</code> the restore operation can overwrite source app; otherwise, <code>false</code>. */\n overwrite: boolean;\n /** If true, site configuration, in addition to content, will be reverted. */\n recoverConfiguration?: boolean;\n /**\n * If true, custom hostname conflicts will be ignored when recovering to a target web app.\n * This setting is only necessary when RecoverConfiguration is enabled.\n */\n ignoreConflictingHostNames?: boolean;\n /** If true, the snapshot is retrieved from DRSecondary endpoint. */\n useDRSecondary?: boolean;\n}\n\nexport interface SnapshotRecoverySource {\n /** Geographical location of the source web app, e.g. SouthEastAsia, SouthCentralUS */\n location?: string;\n /**\n * ARM resource ID of the source app.\n * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and\n * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.\n */\n id?: string;\n}\n\nexport interface SiteExtensionInfo extends ProxyOnlyResource {\n /** SiteExtensionInfo resource specific properties */\n properties?: SiteExtensionInfoProperties;\n}\n\nexport interface SiteExtensionInfoProperties {\n /** Site extension ID. */\n extension_id?: string;\n title?: string;\n /** Site extension type. */\n extension_type?: \"Gallery\" | \"WebRoot\";\n /** Summary description. */\n summary?: string;\n /** Detailed description. */\n description?: string;\n /** Version information. */\n version?: string;\n /** Extension URL. */\n extension_url?: string;\n /** Project URL. */\n project_url?: string;\n /** Icon URL. */\n icon_url?: string;\n /** License URL. */\n license_url?: string;\n /** Feed URL. */\n feed_url?: string;\n /** List of authors. */\n authors?: Array<string>;\n /** Installer command line parameters. */\n installer_command_line_params?: string;\n /** Published timestamp. */\n published_date_time?: Date | string;\n /** Count of downloads. */\n download_count?: number;\n /** <code>true</code> if the local version is the latest version; <code>false</code> otherwise. */\n local_is_latest_version?: boolean;\n /** Local path. */\n local_path?: string;\n /** Installed timestamp. */\n installed_date_time?: Date | string;\n /** Provisioning state. */\n provisioningState?: string;\n /** Site Extension comment. */\n comment?: string;\n}\n\nexport interface SlotDifference extends ProxyOnlyResource {\n /** SlotDifference resource specific properties */\n properties?: SlotDifferenceProperties;\n}\n\nexport interface SlotDifferenceProperties {\n /** Level of the difference: Information, Warning or Error. */\n level?: string;\n /** The type of the setting: General, AppSetting or ConnectionString. */\n settingType?: string;\n /** Rule that describes how to process the setting difference during a slot swap. */\n diffRule?: string;\n /** Name of the setting. */\n settingName?: string;\n /** Value of the setting in the current slot. */\n valueInCurrentSlot?: string;\n /** Value of the setting in the target slot. */\n valueInTargetSlot?: string;\n /** Description of the setting difference. */\n description?: string;\n}\n\nexport interface SiteSourceControl extends ProxyOnlyResource {\n /** SiteSourceControl resource specific properties */\n properties?: SiteSourceControlProperties;\n}\n\nexport interface SiteSourceControlProperties {\n /** Repository or source control URL. */\n repoUrl?: string;\n /** Name of branch to use for deployment. */\n branch?: string;\n /** <code>true</code> to limit to manual integration; <code>false</code> to enable continuous integration (which configures webhooks into online repos like GitHub). */\n isManualIntegration?: boolean;\n /** <code>true</code> if this is deployed via GitHub action. */\n isGitHubAction?: boolean;\n /** <code>true</code> to enable deployment rollback; otherwise, <code>false</code>. */\n deploymentRollbackEnabled?: boolean;\n /** <code>true</code> for a Mercurial repository; <code>false</code> for a Git repository. */\n isMercurial?: boolean;\n /** If GitHub Action is selected, than the associated configuration. */\n gitHubActionConfiguration?: GitHubActionConfiguration;\n}\n\nexport interface GitHubActionConfiguration {\n /** GitHub Action code configuration. */\n codeConfiguration?: GitHubActionCodeConfiguration;\n /** GitHub Action container configuration. */\n containerConfiguration?: GitHubActionContainerConfiguration;\n /** This will help determine the workflow configuration to select. */\n isLinux?: boolean;\n /** Workflow option to determine whether the workflow file should be generated and written to the repository. */\n generateWorkflowFile?: boolean;\n}\n\nexport interface GitHubActionCodeConfiguration {\n /** Runtime stack is used to determine the workflow file content for code base apps. */\n runtimeStack?: string;\n /** Runtime version is used to determine what build version to set in the workflow file. */\n runtimeVersion?: string;\n}\n\nexport interface GitHubActionContainerConfiguration {\n /** The server URL for the container registry where the build will be hosted. */\n serverUrl?: string;\n /** The image name for the build. */\n imageName?: string;\n /** The username used to upload the image to the container registry. */\n username?: string;\n /** The password used to upload the image to the container registry. */\n password?: string;\n}\n\nexport interface TriggeredWebJob extends ProxyOnlyResource {\n /** TriggeredWebJob resource specific properties */\n properties?: TriggeredWebJobProperties;\n}\n\nexport interface TriggeredWebJobProperties {\n /** Latest job run information. */\n latest_run?: TriggeredJobRun;\n /** History URL. */\n history_url?: string;\n /** Scheduler Logs URL. */\n scheduler_logs_url?: string;\n /** Run command. */\n run_command?: string;\n /** Job URL. */\n url?: string;\n /** Extra Info URL. */\n extra_info_url?: string;\n /** Job type. */\n web_job_type?: \"Continuous\" | \"Triggered\";\n /** Error information. */\n error?: string;\n /** Using SDK? */\n using_sdk?: boolean;\n /** Job settings. */\n settings?: Record<string, Record<string, unknown>>;\n}\n\nexport interface TriggeredJobRun {\n /** Job ID. */\n web_job_id?: string;\n /** Job name. */\n web_job_name?: string;\n /** Job status. */\n status?: \"Success\" | \"Failed\" | \"Error\";\n /** Start time. */\n start_time?: Date | string;\n /** End time. */\n end_time?: Date | string;\n /** Job duration. */\n duration?: string;\n /** Output URL. */\n output_url?: string;\n /** Error URL. */\n error_url?: string;\n /** Job URL. */\n url?: string;\n /** Job name. */\n job_name?: string;\n /** Job trigger. */\n trigger?: string;\n}\n\nexport interface TriggeredJobHistory extends ProxyOnlyResource {\n /** TriggeredJobHistory resource specific properties */\n properties?: TriggeredJobHistoryProperties;\n}\n\nexport interface TriggeredJobHistoryProperties {\n /** List of triggered web job runs. */\n runs?: Array<TriggeredJobRun>;\n}\n\nexport interface WebJob extends ProxyOnlyResource {\n /** WebJob resource specific properties */\n properties?: WebJobProperties;\n}\n\nexport interface WebJobProperties {\n /** Run command. */\n run_command?: string;\n /** Job URL. */\n url?: string;\n /** Extra Info URL. */\n extra_info_url?: string;\n /** Job type. */\n web_job_type?: \"Continuous\" | \"Triggered\";\n /** Error information. */\n error?: string;\n /** Using SDK? */\n using_sdk?: boolean;\n /** Job settings. */\n settings?: Record<string, Record<string, unknown>>;\n}\n"]}
|