@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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"outputModels.js","sourceRoot":"","sources":["../../src/outputModels.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\nexport interface AppServiceCertificateOrderCollectionOutput {\n /** Collection of resources. */\n value: Array<AppServiceCertificateOrderOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface AppServiceCertificateOrderOutput extends ResourceOutput {\n /** AppServiceCertificateOrder resource specific properties */\n properties?: AppServiceCertificateOrderPropertiesOutput;\n}\n\nexport interface AppServiceCertificateOrderPropertiesOutput {\n /** State of the Key Vault secret. */\n certificates?: Record<string, AppServiceCertificateOutput>;\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?: CertificateDetailsOutput;\n /** Last CSR that was created for this order. */\n csr?: string;\n /** Intermediate certificate. */\n intermediate?: CertificateDetailsOutput;\n /** Root certificate. */\n root?: CertificateDetailsOutput;\n /** Current serial number of the certificate. */\n serialNumber?: string;\n /** Certificate last issuance time. */\n lastCertificateIssuanceTime?: string;\n /** Certificate expiration time. */\n expirationTime?: 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?: string;\n /** Contact info */\n contact?: CertificateOrderContactOutput;\n}\n\nexport interface AppServiceCertificateOutput {\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 CertificateDetailsOutput {\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?: string;\n /** Date Certificate is valid to. */\n notAfter?: 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 CertificateOrderContactOutput {\n email?: string;\n nameFirst?: string;\n nameLast?: string;\n phone?: string;\n}\n\nexport interface ResourceOutput {\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 DefaultErrorResponseOutput {\n /** Error model. */\n error?: DefaultErrorResponseErrorOutput;\n}\n\nexport interface DefaultErrorResponseErrorOutput {\n /** Standardized string to programmatically identify the error. */\n code?: string;\n /** Detailed error description and debugging information. */\n message?: string;\n /** Detailed error description and debugging information. */\n target?: string;\n details?: Array<DefaultErrorResponseErrorDetailsItemOutput>;\n /** More information to debug error. */\n innererror?: string;\n}\n\nexport interface DefaultErrorResponseErrorDetailsItemOutput {\n /** Standardized string to programmatically identify the error. */\n code?: string;\n /** Detailed error description and debugging information. */\n message?: string;\n /** Detailed error description and debugging information. */\n target?: string;\n}\n\nexport interface AppServiceCertificateOrderPatchResourceOutput extends ProxyOnlyResourceOutput {\n /** AppServiceCertificateOrderPatchResource resource specific properties */\n properties?: AppServiceCertificateOrderPatchResourcePropertiesOutput;\n}\n\nexport interface AppServiceCertificateOrderPatchResourcePropertiesOutput {\n /** State of the Key Vault secret. */\n certificates?: Record<string, AppServiceCertificateOutput>;\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?: CertificateDetailsOutput;\n /** Last CSR that was created for this order. */\n csr?: string;\n /** Intermediate certificate. */\n intermediate?: CertificateDetailsOutput;\n /** Root certificate. */\n root?: CertificateDetailsOutput;\n /** Current serial number of the certificate. */\n serialNumber?: string;\n /** Certificate last issuance time. */\n lastCertificateIssuanceTime?: string;\n /** Certificate expiration time. */\n expirationTime?: 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?: string;\n /** Contact info */\n contact?: CertificateOrderContactOutput;\n}\n\nexport interface ProxyOnlyResourceOutput {\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 AppServiceCertificateCollectionOutput {\n /** Collection of resources. */\n value: Array<AppServiceCertificateResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface AppServiceCertificateResourceOutput extends ResourceOutput {\n /** Core resource properties */\n properties?: AppServiceCertificateOutput;\n}\n\nexport interface AppServiceCertificatePatchResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: AppServiceCertificateOutput;\n}\n\nexport interface ReissueCertificateOrderRequestOutput extends ProxyOnlyResourceOutput {\n /** ReissueCertificateOrderRequest resource specific properties */\n properties?: ReissueCertificateOrderRequestPropertiesOutput;\n}\n\nexport interface ReissueCertificateOrderRequestPropertiesOutput {\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 RenewCertificateOrderRequestOutput extends ProxyOnlyResourceOutput {\n /** RenewCertificateOrderRequest resource specific properties */\n properties?: RenewCertificateOrderRequestPropertiesOutput;\n}\n\nexport interface RenewCertificateOrderRequestPropertiesOutput {\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 NameIdentifierOutput {\n /** Name of the object. */\n name?: string;\n}\n\nexport interface SiteSealOutput {\n /** HTML snippet */\n html: string;\n}\n\nexport interface CertificateOrderActionOutput extends ProxyOnlyResourceOutput {\n /** CertificateOrderAction resource specific properties */\n properties?: CertificateOrderActionPropertiesOutput;\n}\n\nexport interface CertificateOrderActionPropertiesOutput {\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?: string;\n}\n\nexport interface CertificateEmailOutput extends ProxyOnlyResourceOutput {\n /** CertificateEmail resource specific properties */\n properties?: CertificateEmailPropertiesOutput;\n}\n\nexport interface CertificateEmailPropertiesOutput {\n /** Email id. */\n emailId?: string;\n /** Time stamp. */\n timeStamp?: string;\n}\n\nexport interface DetectorResponseCollectionOutput {\n /** Collection of resources. */\n value: Array<DetectorResponseOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DetectorResponseOutput extends ProxyOnlyResourceOutput {\n /** DetectorResponse resource specific properties */\n properties?: DetectorResponsePropertiesOutput;\n}\n\nexport interface DetectorResponsePropertiesOutput {\n /** metadata for the detector */\n metadata?: DetectorInfoOutput;\n /** Data Set */\n dataset?: Array<DiagnosticDataOutput>;\n /** Indicates status of the most severe insight. */\n status?: StatusOutput;\n /** Additional configuration for different data providers to be used by the UI */\n dataProvidersMetadata?: Array<DataProviderMetadataOutput>;\n /** Suggested utterances where the detector can be applicable. */\n suggestedUtterances?: QueryUtterancesResultsOutput;\n}\n\nexport interface DetectorInfoOutput {\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<SupportTopicOutput>;\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 SupportTopicOutput {\n /** Support Topic Id */\n id?: string;\n /** Unique resource Id */\n pesId?: string;\n}\n\nexport interface DiagnosticDataOutput {\n /** Data in table form */\n table?: DataTableResponseObjectOutput;\n /** Properties that describe how the table should be rendered */\n renderingProperties?: RenderingOutput;\n}\n\nexport interface DataTableResponseObjectOutput {\n /** Name of the table */\n tableName?: string;\n /** List of columns with data types */\n columns?: Array<DataTableResponseColumnOutput>;\n /** Raw row values */\n rows?: Array<Array<string>>;\n}\n\nexport interface DataTableResponseColumnOutput {\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 RenderingOutput {\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 StatusOutput {\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 DataProviderMetadataOutput {\n providerName?: string;\n /** Settings for the data provider */\n propertyBag?: Array<KeyValuePairStringObjectOutput>;\n}\n\nexport interface KeyValuePairStringObjectOutput {\n key?: string;\n /** Any object */\n value?: Record<string, unknown>;\n}\n\nexport interface QueryUtterancesResultsOutput {\n /** Search Query. */\n query?: string;\n /** Array of utterance results for search query. */\n results?: Array<QueryUtterancesResultOutput>;\n}\n\nexport interface QueryUtterancesResultOutput {\n /** A sample utterance. */\n sampleUtterance?: SampleUtteranceOutput;\n /** Score of a sample utterance. */\n score?: number;\n}\n\nexport interface SampleUtteranceOutput {\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 CsmOperationCollectionOutput {\n /** Collection of resources. */\n value: Array<CsmOperationDescriptionOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface CsmOperationDescriptionOutput {\n name?: string;\n isDataAction?: boolean;\n /** Meta data about operation used for display in portal. */\n display?: CsmOperationDisplayOutput;\n origin?: string;\n /** Properties available for a Microsoft.Web resource provider operation. */\n properties?: CsmOperationDescriptionPropertiesOutput;\n}\n\nexport interface CsmOperationDisplayOutput {\n provider?: string;\n resource?: string;\n operation?: string;\n description?: string;\n}\n\nexport interface CsmOperationDescriptionPropertiesOutput {\n /** Resource metrics service provided by Microsoft.Insights resource provider. */\n serviceSpecification?: ServiceSpecificationOutput;\n}\n\nexport interface ServiceSpecificationOutput {\n metricSpecifications?: Array<MetricSpecificationOutput>;\n logSpecifications?: Array<LogSpecificationOutput>;\n}\n\nexport interface MetricSpecificationOutput {\n name?: string;\n displayName?: string;\n displayDescription?: string;\n unit?: string;\n aggregationType?: string;\n supportsInstanceLevelAggregation?: boolean;\n enableRegionalMdmAccount?: boolean;\n sourceMdmAccount?: string;\n sourceMdmNamespace?: string;\n metricFilterPattern?: string;\n fillGapWithZero?: boolean;\n isInternal?: boolean;\n dimensions?: Array<DimensionOutput>;\n category?: string;\n availabilities?: Array<MetricAvailabilityOutput>;\n supportedTimeGrainTypes?: Array<string>;\n supportedAggregationTypes?: Array<string>;\n}\n\nexport interface DimensionOutput {\n name?: string;\n displayName?: string;\n internalName?: string;\n toBeExportedForShoebox?: boolean;\n}\n\nexport interface MetricAvailabilityOutput {\n timeGrain?: string;\n blobDuration?: string;\n}\n\nexport interface LogSpecificationOutput {\n name?: string;\n displayName?: string;\n blobDuration?: string;\n logFilterPattern?: string;\n}\n\nexport interface DomainAvailabilityCheckResultOutput {\n /** Name of the domain. */\n name?: string;\n /** <code>true</code> if domain can be purchased using CreateDomain API; otherwise, <code>false</code>. */\n available?: boolean;\n /** Valid values are Regular domain: Azure will charge the full price of domain registration, SoftDeleted: Purchasing this domain will simply restore it and this operation will not cost anything. */\n domainType?: \"Regular\" | \"SoftDeleted\";\n}\n\nexport interface DomainCollectionOutput {\n /** Collection of resources. */\n value: Array<DomainOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DomainOutput extends ResourceOutput {\n /** Domain resource specific properties */\n properties?: DomainPropertiesOutput;\n}\n\nexport interface DomainPropertiesOutput {\n /** Administrative contact. */\n contactAdmin: ContactOutput;\n /** Billing contact. */\n contactBilling: ContactOutput;\n /** Registrant contact. */\n contactRegistrant: ContactOutput;\n /** Technical contact. */\n contactTech: ContactOutput;\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?: string;\n /** Domain expiration timestamp. */\n expirationTime?: string;\n /** Timestamp when the domain was renewed last time. */\n lastRenewedTime?: 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<HostNameOutput>;\n /** Legal agreement consent. */\n consent: DomainPurchaseConsentOutput;\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 ContactOutput {\n /** Mailing address. */\n addressMailing?: AddressOutput;\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 AddressOutput {\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 HostNameOutput {\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 DomainPurchaseConsentOutput {\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?: string;\n}\n\nexport interface DomainControlCenterSsoRequestOutput {\n /** URL where the single sign-on request is to be made. */\n url?: string;\n /** Post parameter key. */\n postParameterKey?: string;\n /** Post parameter value. Client should use 'application/x-www-form-urlencoded' encoding for this value. */\n postParameterValue?: string;\n}\n\nexport interface NameIdentifierCollectionOutput {\n /** Collection of resources. */\n value: Array<NameIdentifierOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DomainPatchResourceOutput extends ProxyOnlyResourceOutput {\n /** DomainPatchResource resource specific properties */\n properties?: DomainPatchResourcePropertiesOutput;\n}\n\nexport interface DomainPatchResourcePropertiesOutput {\n /** Administrative contact. */\n contactAdmin: ContactOutput;\n /** Billing contact. */\n contactBilling: ContactOutput;\n /** Registrant contact. */\n contactRegistrant: ContactOutput;\n /** Technical contact. */\n contactTech: ContactOutput;\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?: string;\n /** Domain expiration timestamp. */\n expirationTime?: string;\n /** Timestamp when the domain was renewed last time. */\n lastRenewedTime?: 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<HostNameOutput>;\n /** Legal agreement consent. */\n consent: DomainPurchaseConsentOutput;\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 DomainOwnershipIdentifierCollectionOutput {\n /** Collection of resources. */\n value: Array<DomainOwnershipIdentifierOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DomainOwnershipIdentifierOutput extends ProxyOnlyResourceOutput {\n /** DomainOwnershipIdentifier resource specific properties */\n properties?: DomainOwnershipIdentifierPropertiesOutput;\n}\n\nexport interface DomainOwnershipIdentifierPropertiesOutput {\n /** Ownership Id. */\n ownershipId?: string;\n}\n\nexport interface TopLevelDomainCollectionOutput {\n /** Collection of resources. */\n value: Array<TopLevelDomainOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface TopLevelDomainOutput extends ProxyOnlyResourceOutput {\n /** TopLevelDomain resource specific properties */\n properties?: TopLevelDomainPropertiesOutput;\n}\n\nexport interface TopLevelDomainPropertiesOutput {\n /** If <code>true</code>, then the top level domain supports domain privacy; otherwise, <code>false</code>. */\n privacy?: boolean;\n}\n\nexport interface TldLegalAgreementCollectionOutput {\n /** Collection of resources. */\n value: Array<TldLegalAgreementOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface TldLegalAgreementOutput {\n /** Unique identifier for the agreement. */\n agreementKey: string;\n /** Agreement title. */\n title: string;\n /** Agreement details. */\n content: string;\n /** URL where a copy of the agreement details is hosted. */\n url?: string;\n}\n\nexport interface AppServiceEnvironmentCollectionOutput {\n /** Collection of resources. */\n value: Array<AppServiceEnvironmentResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface AppServiceEnvironmentResourceOutput extends ResourceOutput {\n /** Core resource properties */\n properties?: AppServiceEnvironmentOutput;\n}\n\nexport interface AppServiceEnvironmentOutput {\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: VirtualNetworkProfileOutput;\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<NameValuePairOutput>;\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 VirtualNetworkProfileOutput {\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 NameValuePairOutput {\n /** Pair name. */\n name?: string;\n /** Pair value. */\n value?: string;\n}\n\nexport interface AppServiceEnvironmentPatchResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: AppServiceEnvironmentOutput;\n}\n\nexport interface StampCapacityCollectionOutput {\n /** Collection of resources. */\n value: Array<StampCapacityOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface StampCapacityOutput {\n /** Name of the stamp. */\n name?: string;\n /** Available capacity (# of machines, bytes of storage etc...). */\n availableCapacity?: number;\n /** Total capacity (# of machines, bytes of storage etc...). */\n totalCapacity?: number;\n /** Name of the unit. */\n unit?: string;\n /** Shared/dedicated workers. */\n computeMode?: \"Shared\" | \"Dedicated\" | \"Dynamic\";\n /** Size of the machines. */\n workerSize?:\n | \"Small\"\n | \"Medium\"\n | \"Large\"\n | \"D1\"\n | \"D2\"\n | \"D3\"\n | \"SmallV3\"\n | \"MediumV3\"\n | \"LargeV3\"\n | \"NestedSmall\"\n | \"NestedSmallLinux\"\n | \"Default\";\n /**\n * Size ID of machines:\n * 0 - Small\n * 1 - Medium\n * 2 - Large\n */\n workerSizeId?: number;\n /**\n * If <code>true</code>, it includes basic apps.\n * Basic apps are not used for capacity allocation.\n */\n excludeFromCapacityAllocation?: boolean;\n /** <code>true</code> if capacity is applicable for all apps; otherwise, <code>false</code>. */\n isApplicableForAllComputeModes?: boolean;\n /** Shared or Dedicated. */\n siteMode?: string;\n /** Is this a linux stamp capacity */\n isLinux?: boolean;\n}\n\nexport interface AddressResponseOutput extends ProxyOnlyResourceOutput {\n /** AddressResponse resource specific properties */\n properties?: AddressResponsePropertiesOutput;\n}\n\nexport interface AddressResponsePropertiesOutput {\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<VirtualIPMappingOutput>;\n}\n\nexport interface VirtualIPMappingOutput {\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 WebAppCollectionOutput {\n /** Collection of resources. */\n value: Array<SiteOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SiteOutput extends ResourceOutput {\n /** Site resource specific properties */\n properties?: SitePropertiesOutput;\n /** Managed service identity. */\n identity?: ManagedServiceIdentityOutput;\n /** Extended Location. */\n extendedLocation?: ExtendedLocationOutput;\n}\n\nexport interface SitePropertiesOutput {\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<HostNameSslStateOutput>;\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?: string;\n /** Configuration of the app. */\n siteConfig?: SiteConfigOutput;\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?: HostingEnvironmentProfileOutput;\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?: 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?: CloningInfoOutput;\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?: SlotSwapStatusOutput;\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 HostNameSslStateOutput {\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 SiteConfigOutput {\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?: 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<NameValuePairOutput>;\n /** Connection strings. */\n connectionStrings?: Array<ConnStringInfoOutput>;\n /** Site MachineKey. */\n machineKey?: SiteMachineKeyOutput;\n /** Handler mappings. */\n handlerMappings?: Array<HandlerMappingOutput>;\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<VirtualApplicationOutput>;\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?: ExperimentsOutput;\n /** Site limits. */\n limits?: SiteLimitsOutput;\n /** <code>true</code> if Auto Heal is enabled; otherwise, <code>false</code>. */\n autoHealEnabled?: boolean;\n /** Auto Heal rules. */\n autoHealRules?: AutoHealRulesOutput;\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?: CorsSettingsOutput;\n /** Push endpoint settings. */\n push?: PushSettingsOutput;\n /** Information about the formal API definition for the app. */\n apiDefinition?: ApiDefinitionInfoOutput;\n /** Azure API management settings linked to the app. */\n apiManagementConfig?: ApiManagementConfigOutput;\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<IpSecurityRestrictionOutput>;\n /** IP security restrictions for scm. */\n scmIpSecurityRestrictions?: Array<IpSecurityRestrictionOutput>;\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, AzureStorageInfoValueOutput>;\n /** Property to allow or block all public traffic. */\n publicNetworkAccess?: string;\n}\n\nexport interface ConnStringInfoOutput {\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 SiteMachineKeyOutput {\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 HandlerMappingOutput {\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 VirtualApplicationOutput {\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<VirtualDirectoryOutput>;\n}\n\nexport interface VirtualDirectoryOutput {\n /** Path to virtual application. */\n virtualPath?: string;\n /** Physical path. */\n physicalPath?: string;\n}\n\nexport interface ExperimentsOutput {\n /** List of ramp-up rules. */\n rampUpRules?: Array<RampUpRuleOutput>;\n}\n\nexport interface RampUpRuleOutput {\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 SiteLimitsOutput {\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 AutoHealRulesOutput {\n /** Conditions that describe when to execute the auto-heal actions. */\n triggers?: AutoHealTriggersOutput;\n /** Actions to be executed when a rule is triggered. */\n actions?: AutoHealActionsOutput;\n}\n\nexport interface AutoHealTriggersOutput {\n /** A rule based on total requests. */\n requests?: RequestsBasedTriggerOutput;\n /** A rule based on private bytes. */\n privateBytesInKB?: number;\n /** A rule based on status codes. */\n statusCodes?: Array<StatusCodesBasedTriggerOutput>;\n /** A rule based on request execution time. */\n slowRequests?: SlowRequestsBasedTriggerOutput;\n /** A rule based on multiple Slow Requests Rule with path */\n slowRequestsWithPath?: Array<SlowRequestsBasedTriggerOutput>;\n /** A rule based on status codes ranges. */\n statusCodesRange?: Array<StatusCodesRangeBasedTriggerOutput>;\n}\n\nexport interface RequestsBasedTriggerOutput {\n /** Request Count. */\n count?: number;\n /** Time interval. */\n timeInterval?: string;\n}\n\nexport interface StatusCodesBasedTriggerOutput {\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 SlowRequestsBasedTriggerOutput {\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 StatusCodesRangeBasedTriggerOutput {\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 AutoHealActionsOutput {\n /** Predefined action to be taken. */\n actionType?: \"Recycle\" | \"LogEvent\" | \"CustomAction\";\n /** Custom action to be taken. */\n customAction?: AutoHealCustomActionOutput;\n /**\n * Minimum time the process must execute\n * before taking the action\n */\n minProcessExecutionTime?: string;\n}\n\nexport interface AutoHealCustomActionOutput {\n /** Executable to be run. */\n exe?: string;\n /** Parameters for the executable. */\n parameters?: string;\n}\n\nexport interface CorsSettingsOutput {\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 PushSettingsOutput extends ProxyOnlyResourceOutput {\n /** PushSettings resource specific properties */\n properties?: PushSettingsPropertiesOutput;\n}\n\nexport interface PushSettingsPropertiesOutput {\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 ApiDefinitionInfoOutput {\n /** The URL of the API definition. */\n url?: string;\n}\n\nexport interface ApiManagementConfigOutput {\n /** APIM-Api Identifier. */\n id?: string;\n}\n\nexport interface IpSecurityRestrictionOutput {\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 AzureStorageInfoValueOutput {\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 HostingEnvironmentProfileOutput {\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 CloningInfoOutput {\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 SlotSwapStatusOutput {\n /** The time the last successful slot swap completed. */\n timestampUtc?: 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 ManagedServiceIdentityOutput {\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, UserAssignedIdentityOutput>;\n}\n\nexport interface UserAssignedIdentityOutput {\n /** Principal Id of user assigned identity */\n principalId?: string;\n /** Client Id of user assigned identity */\n clientId?: string;\n}\n\nexport interface ExtendedLocationOutput {\n /** Name of extended location. */\n name?: string;\n /** Type of extended location. */\n type?: string;\n}\n\nexport interface AseV3NetworkingConfigurationOutput extends ProxyOnlyResourceOutput {\n /** AseV3NetworkingConfiguration resource specific properties */\n properties?: AseV3NetworkingConfigurationPropertiesOutput;\n}\n\nexport interface AseV3NetworkingConfigurationPropertiesOutput {\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 HostingEnvironmentDiagnosticsOutput {\n /** Name/identifier of the diagnostics. */\n name?: string;\n /** Diagnostics output. */\n diagnosticsOutput?: string;\n}\n\nexport interface InboundEnvironmentEndpointCollectionOutput {\n /** Collection of resources. */\n value: Array<InboundEnvironmentEndpointOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface InboundEnvironmentEndpointOutput {\n /** Short text describing the purpose of the network traffic. */\n description?: string;\n /** The IP addresses that network traffic will originate from in cidr notation. */\n endpoints?: Array<string>;\n /** The ports that network traffic will arrive to the App Service Environment at. */\n ports?: Array<string>;\n}\n\nexport interface WorkerPoolCollectionOutput {\n /** Collection of resources. */\n value: Array<WorkerPoolResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface WorkerPoolResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: WorkerPoolOutput;\n /** Description of a SKU for a scalable resource. */\n sku?: SkuDescriptionOutput;\n}\n\nexport interface WorkerPoolOutput {\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 SkuDescriptionOutput {\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?: SkuCapacityOutput;\n /** Locations of the SKU. */\n locations?: Array<string>;\n /** Capabilities of the SKU, e.g., is traffic manager enabled? */\n capabilities?: Array<CapabilityOutput>;\n}\n\nexport interface SkuCapacityOutput {\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 CapabilityOutput {\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 ResourceMetricDefinitionCollectionOutput {\n /** Collection of resources. */\n value: Array<ResourceMetricDefinitionOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ResourceMetricDefinitionOutput extends ProxyOnlyResourceOutput {\n /** ResourceMetricDefinition resource specific properties */\n properties?: ResourceMetricDefinitionPropertiesOutput;\n}\n\nexport interface ResourceMetricDefinitionPropertiesOutput {\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<ResourceMetricAvailabilityOutput>;\n /** Resource URI. */\n resourceUri?: string;\n /** Resource metric definition properties. */\n properties?: Record<string, string>;\n}\n\nexport interface ResourceMetricAvailabilityOutput {\n /** Time grain . */\n timeGrain?: string;\n /** Retention period for the current time grain. */\n retention?: string;\n}\n\nexport interface SkuInfoCollectionOutput {\n /** Collection of resources. */\n value: Array<SkuInfoOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SkuInfoOutput {\n /** Resource type that this SKU applies to. */\n resourceType?: string;\n /** Name and tier of the SKU. */\n sku?: SkuDescriptionOutput;\n /** Min, max, and default scale values of the SKU. */\n capacity?: SkuCapacityOutput;\n}\n\nexport interface UsageCollectionOutput {\n /** Collection of resources. */\n value: Array<UsageOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface UsageOutput extends ProxyOnlyResourceOutput {\n /** Usage resource specific properties */\n properties?: UsagePropertiesOutput;\n}\n\nexport interface UsagePropertiesOutput {\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?: 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 OperationOutput {\n /** Operation ID. */\n id?: string;\n /** Operation name. */\n name?: string;\n /** The current status of the operation. */\n status?: \"InProgress\" | \"Failed\" | \"Succeeded\" | \"TimedOut\" | \"Created\";\n /** Any errors associate with the operation. */\n errors?: Array<ErrorEntityOutput>;\n /** Time when operation has started. */\n createdTime?: string;\n /** Time when operation has been updated. */\n modifiedTime?: string;\n /** Time when operation will expire. */\n expirationTime?: string;\n /**\n * Applicable only for stamp operation ids.\n *\n * Value may contain a UUID\n */\n geoMasterOperationId?: string;\n}\n\nexport interface ErrorEntityOutput {\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<ErrorEntityOutput>;\n /** Error Details. */\n details?: Array<ErrorEntityOutput>;\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 OutboundEnvironmentEndpointCollectionOutput {\n /** Collection of resources. */\n value: Array<OutboundEnvironmentEndpointOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface OutboundEnvironmentEndpointOutput {\n /** The type of service accessed by the App Service Environment, e.g., Azure Storage, Azure SQL Database, and Azure Active Directory. */\n category?: string;\n /** The endpoints that the App Service Environment reaches the service at. */\n endpoints?: Array<EndpointDependencyOutput>;\n}\n\nexport interface EndpointDependencyOutput {\n /** The domain name of the dependency. */\n domainName?: string;\n /** The IP Addresses and Ports used when connecting to DomainName. */\n endpointDetails?: Array<EndpointDetailOutput>;\n}\n\nexport interface EndpointDetailOutput {\n /** An IP Address that Domain Name currently resolves to. */\n ipAddress?: string;\n /** The port an endpoint is connected to. */\n port?: number;\n /** The time in milliseconds it takes for a TCP connection to be created from the App Service Environment to this IpAddress at this Port. */\n latency?: number;\n /** Whether it is possible to create a TCP connection from the App Service Environment to this IpAddress at this Port. */\n isAccessible?: boolean;\n}\n\nexport interface PrivateEndpointConnectionCollectionOutput {\n /** Collection of resources. */\n value: Array<RemotePrivateEndpointConnectionARMResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface RemotePrivateEndpointConnectionARMResourceOutput extends ProxyOnlyResourceOutput {\n /** RemotePrivateEndpointConnectionARMResource resource specific properties */\n properties?: RemotePrivateEndpointConnectionARMResourcePropertiesOutput;\n}\n\nexport interface RemotePrivateEndpointConnectionARMResourcePropertiesOutput {\n provisioningState?: string;\n /** PrivateEndpoint of a remote private endpoint connection */\n privateEndpoint?: ArmIdWrapperOutput;\n /** The state of a private link connection */\n privateLinkServiceConnectionState?: PrivateLinkConnectionStateOutput;\n /** Private IPAddresses mapped to the remote private endpoint */\n ipAddresses?: Array<string>;\n}\n\nexport interface ArmIdWrapperOutput {\n id?: string;\n}\n\nexport interface PrivateLinkConnectionStateOutput {\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 PrivateLinkConnectionApprovalRequestResourceOutput\n extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: PrivateLinkConnectionApprovalRequestOutput;\n}\n\nexport interface PrivateLinkConnectionApprovalRequestOutput {\n /** The state of a private link connection */\n privateLinkServiceConnectionState?: PrivateLinkConnectionStateOutput;\n}\n\nexport interface PrivateLinkResourcesWrapperOutput {\n value: Array<PrivateLinkResourceOutput>;\n}\n\nexport interface PrivateLinkResourceOutput {\n id: string;\n /** Name of a private link resource */\n name: string;\n type: string;\n /** Properties of a private link resource */\n properties: PrivateLinkResourcePropertiesOutput;\n}\n\nexport interface PrivateLinkResourcePropertiesOutput {\n /** GroupId of a private link resource */\n groupId?: string;\n /** RequiredMembers of a private link resource */\n requiredMembers?: Array<string>;\n /** RequiredZoneNames of a private link resource */\n requiredZoneNames?: Array<string>;\n}\n\nexport interface AppServicePlanCollectionOutput {\n /** Collection of resources. */\n value: Array<AppServicePlanOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface AppServicePlanOutput extends ResourceOutput {\n /** AppServicePlan resource specific properties */\n properties?: AppServicePlanPropertiesOutput;\n /** Description of a SKU for a scalable resource. */\n sku?: SkuDescriptionOutput;\n /** Extended Location. */\n extendedLocation?: ExtendedLocationOutput;\n}\n\nexport interface AppServicePlanPropertiesOutput {\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?: HostingEnvironmentProfileOutput;\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?: string;\n /** The time when the server farm free offer expires. */\n freeOfferExpirationTime?: 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?: KubeEnvironmentProfileOutput;\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 KubeEnvironmentProfileOutput {\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 CsmUsageQuotaCollectionOutput {\n /** Collection of resources. */\n value: Array<CsmUsageQuotaOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface CsmUsageQuotaOutput {\n /** Units of measurement for the quota resource. */\n unit?: string;\n /** Next reset time for the resource counter. */\n nextResetTime?: string;\n /** The current value of the resource counter. */\n currentValue?: number;\n /** The resource limit. */\n limit?: number;\n /** Quota name. */\n name?: LocalizableStringOutput;\n}\n\nexport interface LocalizableStringOutput {\n /** Non-localized name. */\n value?: string;\n /** Localized name. */\n localizedValue?: string;\n}\n\nexport interface AppServicePlanPatchResourceOutput extends ProxyOnlyResourceOutput {\n /** AppServicePlanPatchResource resource specific properties */\n properties?: AppServicePlanPatchResourcePropertiesOutput;\n}\n\nexport interface AppServicePlanPatchResourcePropertiesOutput {\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?: HostingEnvironmentProfileOutput;\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?: string;\n /** The time when the server farm free offer expires. */\n freeOfferExpirationTime?: 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?: KubeEnvironmentProfileOutput;\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 HybridConnectionOutput extends ProxyOnlyResourceOutput {\n /** HybridConnection resource specific properties */\n properties?: HybridConnectionPropertiesOutput;\n}\n\nexport interface HybridConnectionPropertiesOutput {\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 HybridConnectionKeyOutput extends ProxyOnlyResourceOutput {\n /** HybridConnectionKey resource specific properties */\n properties?: HybridConnectionKeyPropertiesOutput;\n}\n\nexport interface HybridConnectionKeyPropertiesOutput {\n /** The name of the send key. */\n sendKeyName?: string;\n /** The value of the send key. */\n sendKeyValue?: string;\n}\n\nexport interface ResourceCollectionOutput {\n /** Collection of resources. */\n value: Array<string>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface HybridConnectionLimitsOutput extends ProxyOnlyResourceOutput {\n /** HybridConnectionLimits resource specific properties */\n properties?: HybridConnectionLimitsPropertiesOutput;\n}\n\nexport interface HybridConnectionLimitsPropertiesOutput {\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 HybridConnectionCollectionOutput {\n /** Collection of resources. */\n value: Array<HybridConnectionOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface VnetInfoResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: VnetInfoOutput;\n}\n\nexport interface VnetInfoOutput {\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<VnetRouteOutput>;\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 VnetRouteOutput extends ProxyOnlyResourceOutput {\n /** VnetRoute resource specific properties */\n properties?: VnetRoutePropertiesOutput;\n}\n\nexport interface VnetRoutePropertiesOutput {\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 VnetGatewayOutput extends ProxyOnlyResourceOutput {\n /** VnetGateway resource specific properties */\n properties?: VnetGatewayPropertiesOutput;\n}\n\nexport interface VnetGatewayPropertiesOutput {\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 CertificateCollectionOutput {\n /** Collection of resources. */\n value: Array<CertificateOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface CertificateOutput extends ResourceOutput {\n /** Certificate resource specific properties */\n properties?: CertificatePropertiesOutput;\n}\n\nexport interface CertificatePropertiesOutput {\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?: string;\n /** Certificate expiration date. */\n expirationDate?: 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?: HostingEnvironmentProfileOutput;\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 CertificatePatchResourceOutput extends ProxyOnlyResourceOutput {\n /** CertificatePatchResource resource specific properties */\n properties?: CertificatePatchResourcePropertiesOutput;\n}\n\nexport interface CertificatePatchResourcePropertiesOutput {\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?: string;\n /** Certificate expiration date. */\n expirationDate?: 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?: HostingEnvironmentProfileOutput;\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 ContainerAppCollectionOutput {\n /** Collection of resources. */\n value: Array<ContainerAppOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ContainerAppOutput extends ResourceOutput {\n /** ContainerApp resource specific properties */\n properties?: ContainerAppPropertiesOutput;\n}\n\nexport interface ContainerAppPropertiesOutput {\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?: ConfigurationOutput;\n /** Container App versioned application definition. */\n template?: TemplateOutput;\n}\n\nexport interface ConfigurationOutput {\n /** Collection of secrets used by a Container app */\n secrets?: Array<SecretOutput>;\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?: IngressOutput;\n /** Collection of private container registry credentials for containers used by the Container app */\n registries?: Array<RegistryCredentialsOutput>;\n}\n\nexport interface SecretOutput {\n /** Secret Name. */\n name?: string;\n /** Secret Value. */\n value?: string;\n}\n\nexport interface IngressOutput {\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<TrafficWeightOutput>;\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 TrafficWeightOutput {\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 RegistryCredentialsOutput {\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 TemplateOutput {\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<ContainerOutput>;\n /** Scaling properties for the Container App. */\n scale?: ScaleOutput;\n /** Dapr configuration for the Container App. */\n dapr?: DaprOutput;\n}\n\nexport interface ContainerOutput {\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<EnvironmentVarOutput>;\n /** Container resource requirements. */\n resources?: ContainerResourcesOutput;\n}\n\nexport interface EnvironmentVarOutput {\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 ContainerResourcesOutput {\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 ScaleOutput {\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<ScaleRuleOutput>;\n}\n\nexport interface ScaleRuleOutput {\n /** Scale Rule Name */\n name?: string;\n /** Azure Queue based scaling. */\n azureQueue?: QueueScaleRuleOutput;\n /** Custom scale rule. */\n custom?: CustomScaleRuleOutput;\n /** HTTP requests based scaling. */\n http?: HttpScaleRuleOutput;\n}\n\nexport interface QueueScaleRuleOutput {\n /** Queue name. */\n queueName?: string;\n /** Queue length. */\n queueLength?: number;\n /** Authentication secrets for the queue scale rule. */\n auth?: Array<ScaleRuleAuthOutput>;\n}\n\nexport interface ScaleRuleAuthOutput {\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 CustomScaleRuleOutput {\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<ScaleRuleAuthOutput>;\n}\n\nexport interface HttpScaleRuleOutput {\n /** Metadata properties to describe http scale rule. */\n metadata?: Record<string, string>;\n /** Authentication secrets for the custom scale rule. */\n auth?: Array<ScaleRuleAuthOutput>;\n}\n\nexport interface DaprOutput {\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<DaprComponentOutput>;\n}\n\nexport interface DaprComponentOutput {\n /** Component name */\n name?: string;\n /** Component type */\n type?: string;\n /** Component version */\n version?: string;\n /** Component metadata */\n metadata?: Array<DaprMetadataOutput>;\n}\n\nexport interface DaprMetadataOutput {\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 SecretsCollectionOutput {\n /** Collection of resources. */\n value: Array<ContainerAppSecretOutput>;\n}\n\nexport interface ContainerAppSecretOutput {\n /** Secret Name. */\n name?: string;\n /** Secret Value. */\n value?: string;\n}\n\nexport interface RevisionCollectionOutput {\n /** Collection of resources. */\n value: Array<RevisionOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface RevisionOutput extends ResourceOutput {\n /** Revision resource specific properties */\n properties?: RevisionPropertiesOutput;\n}\n\nexport interface RevisionPropertiesOutput {\n /**\n * Timestamp describing when the revision was created\n * by controller\n */\n createdTime?: 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?: TemplateOutput;\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 DeletedWebAppCollectionOutput {\n /** Collection of resources. */\n value: Array<DeletedSiteOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DeletedSiteOutput extends ProxyOnlyResourceOutput {\n /** DeletedSite resource specific properties */\n properties?: DeletedSitePropertiesOutput;\n}\n\nexport interface DeletedSitePropertiesOutput {\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 DiagnosticCategoryCollectionOutput {\n /** Collection of resources. */\n value: Array<DiagnosticCategoryOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DiagnosticCategoryOutput extends ProxyOnlyResourceOutput {\n /** DiagnosticCategory resource specific properties */\n properties?: DiagnosticCategoryPropertiesOutput;\n}\n\nexport interface DiagnosticCategoryPropertiesOutput {\n /** Description of the diagnostic category */\n description?: string;\n}\n\nexport interface DiagnosticAnalysisCollectionOutput {\n /** Collection of resources. */\n value: Array<AnalysisDefinitionOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface AnalysisDefinitionOutput extends ProxyOnlyResourceOutput {\n /** AnalysisDefinition resource specific properties */\n properties?: AnalysisDefinitionPropertiesOutput;\n}\n\nexport interface AnalysisDefinitionPropertiesOutput {\n /** Description of the Analysis */\n description?: string;\n}\n\nexport interface DiagnosticAnalysisOutput extends ProxyOnlyResourceOutput {\n /** DiagnosticAnalysis resource specific properties */\n properties?: DiagnosticAnalysisPropertiesOutput;\n}\n\nexport interface DiagnosticAnalysisPropertiesOutput {\n /** Start time of the period */\n startTime?: string;\n /** End time of the period */\n endTime?: string;\n /** List of time periods. */\n abnormalTimePeriods?: Array<AbnormalTimePeriodOutput>;\n /** Data by each detector */\n payload?: Array<AnalysisDataOutput>;\n /** Data by each detector for detectors that did not corelate */\n nonCorrelatedDetectors?: Array<DetectorDefinitionOutput>;\n}\n\nexport interface AbnormalTimePeriodOutput {\n /** Start time of the downtime */\n startTime?: string;\n /** End time of the downtime */\n endTime?: string;\n /** List of Possible Cause of downtime */\n events?: Array<DetectorAbnormalTimePeriodOutput>;\n /** List of proposed solutions */\n solutions?: Array<SolutionOutput>;\n}\n\nexport interface DetectorAbnormalTimePeriodOutput {\n /** Start time of the correlated event */\n startTime?: string;\n /** End time of the correlated event */\n endTime?: 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<NameValuePairOutput>>;\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<SolutionOutput>;\n}\n\nexport interface SolutionOutput {\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<NameValuePairOutput>>;\n /** Solution Metadata. */\n metadata?: Array<Array<NameValuePairOutput>>;\n}\n\nexport interface AnalysisDataOutput {\n /** Name of the Detector */\n source?: string;\n /** Detector Definition */\n detectorDefinition?: DetectorDefinitionOutput;\n /** Source Metrics */\n metrics?: Array<DiagnosticMetricSetOutput>;\n /** Additional Source Data */\n data?: Array<Array<NameValuePairOutput>>;\n /** Detector Meta Data */\n detectorMetaData?: ResponseMetaDataOutput;\n}\n\nexport interface DetectorDefinitionOutput {\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 DiagnosticMetricSetOutput {\n /** Name of the metric */\n name?: string;\n /** Metric's unit */\n unit?: string;\n /** Start time of the period */\n startTime?: string;\n /** End time of the period */\n endTime?: 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<DiagnosticMetricSampleOutput>;\n}\n\nexport interface DiagnosticMetricSampleOutput {\n /** Time at which metric is measured */\n timestamp?: 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 ResponseMetaDataOutput {\n /** Source of the Data */\n dataSource?: DataSourceOutput;\n}\n\nexport interface DataSourceOutput {\n /** Instructions if any for the data source */\n instructions?: Array<string>;\n /** Datasource Uri Links */\n dataSourceUri?: Array<NameValuePairOutput>;\n}\n\nexport interface DiagnosticDetectorCollectionOutput {\n /** Collection of resources. */\n value: Array<DetectorDefinitionResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DetectorDefinitionResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: DetectorDefinitionOutput;\n}\n\nexport interface DiagnosticDetectorResponseOutput extends ProxyOnlyResourceOutput {\n /** DiagnosticDetectorResponse resource specific properties */\n properties?: DiagnosticDetectorResponsePropertiesOutput;\n}\n\nexport interface DiagnosticDetectorResponsePropertiesOutput {\n /** Start time of the period */\n startTime?: string;\n /** End time of the period */\n endTime?: string;\n /** Flag representing Issue was detected. */\n issueDetected?: boolean;\n /** Detector's definition */\n detectorDefinition?: DetectorDefinitionOutput;\n /** Metrics provided by the detector */\n metrics?: Array<DiagnosticMetricSetOutput>;\n /** List of Correlated events found by the detector */\n abnormalTimePeriods?: Array<DetectorAbnormalTimePeriodOutput>;\n /** Additional Data that detector wants to send. */\n data?: Array<Array<NameValuePairOutput>>;\n /** Meta Data */\n responseMetaData?: ResponseMetaDataOutput;\n}\n\nexport interface SnapshotOutput extends ProxyOnlyResourceOutput {\n /** Snapshot resource specific properties */\n properties?: SnapshotPropertiesOutput;\n}\n\nexport interface SnapshotPropertiesOutput {\n /** The time the snapshot was taken. */\n time?: string;\n}\n\nexport interface KubeEnvironmentCollectionOutput {\n /** Collection of resources. */\n value: Array<KubeEnvironmentOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface KubeEnvironmentOutput extends ResourceOutput {\n /** KubeEnvironment resource specific properties */\n properties?: KubeEnvironmentPropertiesOutput;\n /** Extended Location. */\n extendedLocation?: ExtendedLocationOutput;\n}\n\nexport interface KubeEnvironmentPropertiesOutput {\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?: ArcConfigurationOutput;\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?: AppLogsConfigurationOutput;\n /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */\n containerAppsConfiguration?: ContainerAppsConfigurationOutput;\n aksResourceID?: string;\n}\n\nexport interface ArcConfigurationOutput {\n artifactsStorageType?: \"LocalNode\" | \"NetworkFileSystem\";\n artifactStorageClassName?: string;\n artifactStorageMountPath?: string;\n artifactStorageNodeName?: string;\n artifactStorageAccessMode?: string;\n frontEndServiceConfiguration?: FrontEndConfigurationOutput;\n kubeConfig?: string;\n}\n\nexport interface FrontEndConfigurationOutput {\n kind?: \"NodePort\" | \"LoadBalancer\";\n}\n\nexport interface AppLogsConfigurationOutput {\n destination?: string;\n logAnalyticsConfiguration?: LogAnalyticsConfigurationOutput;\n}\n\nexport interface LogAnalyticsConfigurationOutput {\n customerId?: string;\n sharedKey?: string;\n}\n\nexport interface ContainerAppsConfigurationOutput {\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 KubeEnvironmentPatchResourceOutput extends ProxyOnlyResourceOutput {\n /** KubeEnvironmentPatchResource resource specific properties */\n properties?: KubeEnvironmentPatchResourcePropertiesOutput;\n}\n\nexport interface KubeEnvironmentPatchResourcePropertiesOutput {\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?: ArcConfigurationOutput;\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?: AppLogsConfigurationOutput;\n /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */\n containerAppsConfiguration?: ContainerAppsConfigurationOutput;\n aksResourceID?: string;\n}\n\nexport interface ApplicationStackCollectionOutput {\n /** Collection of resources. */\n value: Array<ApplicationStackResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ApplicationStackResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: ApplicationStackOutput;\n}\n\nexport interface ApplicationStackOutput {\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<StackMajorVersionOutput>;\n /** List of frameworks associated with application stack. */\n frameworks?: Array<ApplicationStackOutput>;\n /** <code>true</code> if this is the stack is deprecated; otherwise, <code>false</code>. */\n isDeprecated?: Array<ApplicationStackOutput>;\n}\n\nexport interface StackMajorVersionOutput {\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<StackMinorVersionOutput>;\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 StackMinorVersionOutput {\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 FunctionAppStackCollectionOutput {\n /** Collection of resources. */\n value: Array<FunctionAppStackOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface FunctionAppStackOutput extends ProxyOnlyResourceOutput {\n /** Function App stack location. */\n location?: string;\n /** FunctionAppStack resource specific properties */\n properties?: FunctionAppStackPropertiesOutput;\n}\n\nexport interface FunctionAppStackPropertiesOutput {\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<FunctionAppMajorVersionOutput>;\n /** Function App stack preferred OS. */\n preferredOs?: \"Windows\" | \"Linux\";\n}\n\nexport interface FunctionAppMajorVersionOutput {\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<FunctionAppMinorVersionOutput>;\n}\n\nexport interface FunctionAppMinorVersionOutput {\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?: FunctionAppRuntimesOutput;\n}\n\nexport interface FunctionAppRuntimesOutput {\n /** Linux-specific settings associated with the minor version. */\n linuxRuntimeSettings?: FunctionAppRuntimeSettingsOutput;\n /** Windows-specific settings associated with the minor version. */\n windowsRuntimeSettings?: FunctionAppRuntimeSettingsOutput;\n}\n\nexport interface FunctionAppRuntimeSettingsOutput {\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?: AppInsightsWebAppStackSettingsOutput;\n /** GitHub Actions settings associated with the minor version. */\n gitHubActionSettings?: GitHubActionWebAppStackSettingsOutput;\n /** Application settings associated with the minor version. */\n appSettingsDictionary?: Record<string, string>;\n /** Configuration settings associated with the minor version. */\n siteConfigPropertiesDictionary?: SiteConfigPropertiesDictionaryOutput;\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?: 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 AppInsightsWebAppStackSettingsOutput {\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 GitHubActionWebAppStackSettingsOutput {\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 SiteConfigPropertiesDictionaryOutput {\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 WebAppStackCollectionOutput {\n /** Collection of resources. */\n value: Array<WebAppStackOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface WebAppStackOutput extends ProxyOnlyResourceOutput {\n /** Web App stack location. */\n location?: string;\n /** WebAppStack resource specific properties */\n properties?: WebAppStackPropertiesOutput;\n}\n\nexport interface WebAppStackPropertiesOutput {\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<WebAppMajorVersionOutput>;\n /** Web App stack preferred OS. */\n preferredOs?: \"Windows\" | \"Linux\";\n}\n\nexport interface WebAppMajorVersionOutput {\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<WebAppMinorVersionOutput>;\n}\n\nexport interface WebAppMinorVersionOutput {\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?: WebAppRuntimesOutput;\n}\n\nexport interface WebAppRuntimesOutput {\n /** Linux-specific settings associated with the minor version. */\n linuxRuntimeSettings?: WebAppRuntimeSettingsOutput;\n /** Windows-specific settings associated with the minor version. */\n windowsRuntimeSettings?: WebAppRuntimeSettingsOutput;\n /** Linux-specific settings associated with the Java container minor version. */\n linuxContainerSettings?: LinuxJavaContainerSettingsOutput;\n /** Windows-specific settings associated with the Java container minor version. */\n windowsContainerSettings?: WindowsJavaContainerSettingsOutput;\n}\n\nexport interface WebAppRuntimeSettingsOutput {\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?: AppInsightsWebAppStackSettingsOutput;\n /** GitHub Actions settings associated with the minor version. */\n gitHubActionSettings?: GitHubActionWebAppStackSettingsOutput;\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?: 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 LinuxJavaContainerSettingsOutput {\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?: 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 WindowsJavaContainerSettingsOutput {\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?: 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 RecommendationCollectionOutput {\n /** Collection of resources. */\n value: Array<RecommendationOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface RecommendationOutput extends ProxyOnlyResourceOutput {\n /** Recommendation resource specific properties */\n properties?: RecommendationPropertiesOutput;\n}\n\nexport interface RecommendationPropertiesOutput {\n /** Timestamp when this instance was created. */\n creationTime?: 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?: string;\n /** The end time in UTC of a range that the recommendation refers to. */\n endTime?: string;\n /** When to notify this recommendation next in UTC. Null means that this will never be notified anymore. */\n nextNotificationTime?: string;\n /** Date and time in UTC when this notification expires. */\n notificationExpirationTime?: string;\n /** Last timestamp in UTC this instance was actually notified. Null means that this recommendation hasn't been notified yet. */\n notifiedTime?: 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 RecommendationRuleOutput extends ProxyOnlyResourceOutput {\n /** RecommendationRule resource specific properties */\n properties?: RecommendationRulePropertiesOutput;\n}\n\nexport interface RecommendationRulePropertiesOutput {\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 ResourceHealthMetadataCollectionOutput {\n /** Collection of resources. */\n value: Array<ResourceHealthMetadataOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ResourceHealthMetadataOutput extends ProxyOnlyResourceOutput {\n /** ResourceHealthMetadata resource specific properties */\n properties?: ResourceHealthMetadataPropertiesOutput;\n}\n\nexport interface ResourceHealthMetadataPropertiesOutput {\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 UserOutput extends ProxyOnlyResourceOutput {\n /** User resource specific properties */\n properties?: UserPropertiesOutput;\n}\n\nexport interface UserPropertiesOutput {\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 SourceControlCollectionOutput {\n /** Collection of resources. */\n value: Array<SourceControlOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SourceControlOutput extends ProxyOnlyResourceOutput {\n /** SourceControl resource specific properties */\n properties?: SourceControlPropertiesOutput;\n}\n\nexport interface SourceControlPropertiesOutput {\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?: string;\n}\n\nexport interface BillingMeterCollectionOutput {\n /** Collection of resources. */\n value: Array<BillingMeterOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface BillingMeterOutput extends ProxyOnlyResourceOutput {\n /** BillingMeter resource specific properties */\n properties?: BillingMeterPropertiesOutput;\n}\n\nexport interface BillingMeterPropertiesOutput {\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 ResourceNameAvailabilityOutput {\n /** <code>true</code> indicates name is valid and available. <code>false</code> indicates the name is invalid, unavailable, or both. */\n nameAvailable?: boolean;\n /** <code>Invalid</code> indicates the name provided does not match Azure App Service naming requirements. <code>AlreadyExists</code> indicates that the name is already in use and is therefore unavailable. */\n reason?: \"Invalid\" | \"AlreadyExists\";\n /** If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that resource name is already in use, and direct them to select a different name. */\n message?: string;\n}\n\nexport interface CustomHostnameSitesCollectionOutput {\n /** Collection of resources. */\n value: Array<CustomHostnameSitesOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface CustomHostnameSitesOutput extends ProxyOnlyResourceOutput {\n /** CustomHostnameSites resource specific properties */\n properties?: CustomHostnameSitesPropertiesOutput;\n}\n\nexport interface CustomHostnameSitesPropertiesOutput {\n customHostname?: string;\n region?: string;\n siteResourceIds?: Array<IdentifierOutput>;\n}\n\nexport interface IdentifierOutput extends ProxyOnlyResourceOutput {\n /** Identifier resource specific properties */\n properties?: IdentifierPropertiesOutput;\n}\n\nexport interface IdentifierPropertiesOutput {\n /** String representation of the identity. */\n id?: string;\n}\n\nexport interface DeploymentLocationsOutput {\n /** Available regions. */\n locations?: Array<GeoRegionOutput>;\n /** Available App Service Environments with full descriptions of the environments. */\n hostingEnvironments?: Array<AppServiceEnvironmentOutput>;\n /** Available App Service Environments with basic information. */\n hostingEnvironmentDeploymentInfos?: Array<HostingEnvironmentDeploymentInfoOutput>;\n}\n\nexport interface GeoRegionOutput extends ProxyOnlyResourceOutput {\n /** GeoRegion resource specific properties */\n properties?: GeoRegionPropertiesOutput;\n}\n\nexport interface GeoRegionPropertiesOutput {\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 HostingEnvironmentDeploymentInfoOutput {\n /** Name of the App Service Environment. */\n name?: string;\n /** Location of the App Service Environment. */\n location?: string;\n}\n\nexport interface GeoRegionCollectionOutput {\n /** Collection of resources. */\n value: Array<GeoRegionOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface IdentifierCollectionOutput {\n /** Collection of resources. */\n value: Array<IdentifierOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface PremierAddOnOfferCollectionOutput {\n /** Collection of resources. */\n value: Array<PremierAddOnOfferOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface PremierAddOnOfferOutput extends ProxyOnlyResourceOutput {\n /** PremierAddOnOffer resource specific properties */\n properties?: PremierAddOnOfferPropertiesOutput;\n}\n\nexport interface PremierAddOnOfferPropertiesOutput {\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 SkuInfosOutput {\n /** Resource type that this SKU applies to. */\n resourceType?: string;\n /** List of SKUs the subscription is able to use. */\n skus?: Array<GlobalCsmSkuDescriptionOutput>;\n}\n\nexport interface GlobalCsmSkuDescriptionOutput {\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 /** Min, max, and default scale values of the SKU. */\n capacity?: SkuCapacityOutput;\n /** Locations of the SKU. */\n locations?: Array<string>;\n /** Capabilities of the SKU, e.g., is traffic manager enabled? */\n capabilities?: Array<CapabilityOutput>;\n}\n\nexport interface VnetParametersOutput extends ProxyOnlyResourceOutput {\n /** VnetParameters resource specific properties */\n properties?: VnetParametersPropertiesOutput;\n}\n\nexport interface VnetParametersPropertiesOutput {\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 VnetValidationFailureDetailsOutput extends ProxyOnlyResourceOutput {\n /** VnetValidationFailureDetails resource specific properties */\n properties?: VnetValidationFailureDetailsPropertiesOutput;\n}\n\nexport interface VnetValidationFailureDetailsPropertiesOutput {\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<VnetValidationTestFailureOutput>;\n /** A list of warnings generated during validation. */\n warnings?: Array<VnetValidationTestFailureOutput>;\n}\n\nexport interface VnetValidationTestFailureOutput extends ProxyOnlyResourceOutput {\n /** VnetValidationTestFailure resource specific properties */\n properties?: VnetValidationTestFailurePropertiesOutput;\n}\n\nexport interface VnetValidationTestFailurePropertiesOutput {\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 ValidateResponseOutput {\n /** Result of validation. */\n status?: string;\n /** Error details for the case when validation fails. */\n error?: ValidateResponseErrorOutput;\n}\n\nexport interface ValidateResponseErrorOutput {\n /** Validation error code. */\n code?: string;\n /** Validation error message. */\n message?: string;\n}\n\nexport interface StaticSitesWorkflowPreviewRequestOutput extends ProxyOnlyResourceOutput {\n /** StaticSitesWorkflowPreviewRequest resource specific properties */\n properties?: StaticSitesWorkflowPreviewRequestPropertiesOutput;\n}\n\nexport interface StaticSitesWorkflowPreviewRequestPropertiesOutput {\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?: StaticSiteBuildPropertiesOutput;\n}\n\nexport interface StaticSiteBuildPropertiesOutput {\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 StaticSitesWorkflowPreviewOutput extends ProxyOnlyResourceOutput {\n /** StaticSitesWorkflowPreview resource specific properties */\n properties?: StaticSitesWorkflowPreviewPropertiesOutput;\n}\n\nexport interface StaticSitesWorkflowPreviewPropertiesOutput {\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 StaticSiteCollectionOutput {\n /** Collection of resources. */\n value: Array<StaticSiteARMResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface StaticSiteARMResourceOutput extends ResourceOutput {\n /** Core resource properties */\n properties?: StaticSiteOutput;\n /** Description of a SKU for a scalable resource. */\n sku?: SkuDescriptionOutput;\n /** Managed service identity. */\n identity?: ManagedServiceIdentityOutput;\n}\n\nexport interface StaticSiteOutput {\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?: StaticSiteBuildPropertiesOutput;\n /** Private endpoint connections */\n privateEndpointConnections?: Array<ResponseMessageEnvelopeRemotePrivateEndpointConnectionOutput>;\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?: StaticSiteTemplateOptionsOutput;\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<StaticSiteUserProvidedFunctionAppOutput>;\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 ResponseMessageEnvelopeRemotePrivateEndpointConnectionOutput {\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?: ArmPlanOutput;\n /** Resource specific properties. */\n properties?: RemotePrivateEndpointConnectionOutput;\n /** SKU description of the resource. */\n sku?: SkuDescriptionOutput;\n /** Azure-AsyncOperation Status info. */\n status?: string;\n /** Azure-AsyncOperation Error info. */\n error?: ErrorEntityOutput;\n /** MSI resource */\n identity?: ManagedServiceIdentityOutput;\n /** Logical Availability Zones the service is hosted in */\n zones?: Array<string>;\n}\n\nexport interface ArmPlanOutput {\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 RemotePrivateEndpointConnectionOutput extends ProxyOnlyResourceOutput {\n /** RemotePrivateEndpointConnection resource specific properties */\n properties?: RemotePrivateEndpointConnectionPropertiesOutput;\n}\n\nexport interface RemotePrivateEndpointConnectionPropertiesOutput {\n provisioningState?: string;\n /** PrivateEndpoint of a remote private endpoint connection */\n privateEndpoint?: ArmIdWrapperOutput;\n /** The state of a private link connection */\n privateLinkServiceConnectionState?: PrivateLinkConnectionStateOutput;\n /** Private IPAddresses mapped to the remote private endpoint */\n ipAddresses?: Array<string>;\n}\n\nexport interface StaticSiteTemplateOptionsOutput {\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 StaticSiteUserProvidedFunctionAppOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteUserProvidedFunctionApp resource specific properties */\n properties?: StaticSiteUserProvidedFunctionAppPropertiesOutput;\n}\n\nexport interface StaticSiteUserProvidedFunctionAppPropertiesOutput {\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?: string;\n}\n\nexport interface StaticSitePatchResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: StaticSiteOutput;\n}\n\nexport interface StaticSiteUserCollectionOutput {\n /** Collection of resources. */\n value: Array<StaticSiteUserARMResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface StaticSiteUserARMResourceOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteUserARMResource resource specific properties */\n properties?: StaticSiteUserARMResourcePropertiesOutput;\n}\n\nexport interface StaticSiteUserARMResourcePropertiesOutput {\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 StaticSiteBuildCollectionOutput {\n /** Collection of resources. */\n value: Array<StaticSiteBuildARMResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface StaticSiteBuildARMResourceOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteBuildARMResource resource specific properties */\n properties?: StaticSiteBuildARMResourcePropertiesOutput;\n}\n\nexport interface StaticSiteBuildARMResourcePropertiesOutput {\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?: string;\n /** When this build was updated. */\n lastUpdatedOn?: 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<StaticSiteUserProvidedFunctionAppOutput>;\n}\n\nexport interface StringDictionaryOutput extends ProxyOnlyResourceOutput {\n /** Settings. */\n properties?: Record<string, string>;\n}\n\nexport interface StaticSiteFunctionOverviewCollectionOutput {\n /** Collection of resources. */\n value: Array<StaticSiteFunctionOverviewARMResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface StaticSiteFunctionOverviewARMResourceOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteFunctionOverviewARMResource resource specific properties */\n properties?: StaticSiteFunctionOverviewARMResourcePropertiesOutput;\n}\n\nexport interface StaticSiteFunctionOverviewARMResourcePropertiesOutput {\n /** The name for the function */\n functionName?: string;\n /** The trigger type of the function */\n triggerType?: \"HttpTrigger\" | \"Unknown\";\n}\n\nexport interface StaticSiteUserProvidedFunctionAppsCollectionOutput {\n /** Collection of resources. */\n value: Array<StaticSiteUserProvidedFunctionAppARMResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface StaticSiteUserProvidedFunctionAppARMResourceOutput\n extends ProxyOnlyResourceOutput {\n /** StaticSiteUserProvidedFunctionAppARMResource resource specific properties */\n properties?: StaticSiteUserProvidedFunctionAppARMResourcePropertiesOutput;\n}\n\nexport interface StaticSiteUserProvidedFunctionAppARMResourcePropertiesOutput {\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?: string;\n}\n\nexport interface StaticSiteZipDeploymentARMResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: StaticSiteZipDeploymentOutput;\n}\n\nexport interface StaticSiteZipDeploymentOutput {\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 StaticSiteUserInvitationRequestResourceOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteUserInvitationRequestResource resource specific properties */\n properties?: StaticSiteUserInvitationRequestResourcePropertiesOutput;\n}\n\nexport interface StaticSiteUserInvitationRequestResourcePropertiesOutput {\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 StaticSiteUserInvitationResponseResourceOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteUserInvitationResponseResource resource specific properties */\n properties?: StaticSiteUserInvitationResponseResourcePropertiesOutput;\n}\n\nexport interface StaticSiteUserInvitationResponseResourcePropertiesOutput {\n /** The expiration time of the invitation */\n expiresOn?: string;\n /** The url for the invitation link */\n invitationUrl?: string;\n}\n\nexport interface StaticSiteCustomDomainOverviewCollectionOutput {\n /** Collection of resources. */\n value: Array<StaticSiteCustomDomainOverviewARMResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface StaticSiteCustomDomainOverviewARMResourceOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteCustomDomainOverviewARMResource resource specific properties */\n properties?: StaticSiteCustomDomainOverviewARMResourcePropertiesOutput;\n}\n\nexport interface StaticSiteCustomDomainOverviewARMResourcePropertiesOutput {\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?: 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 StaticSiteCustomDomainRequestPropertiesARMResourceOutput\n extends ProxyOnlyResourceOutput {\n /** StaticSiteCustomDomainRequestPropertiesARMResource resource specific properties */\n properties?: StaticSiteCustomDomainRequestPropertiesARMResourcePropertiesOutput;\n}\n\nexport interface StaticSiteCustomDomainRequestPropertiesARMResourcePropertiesOutput {\n /** Validation method for adding a custom domain */\n validationMethod?: string;\n}\n\nexport interface StringListOutput extends ProxyOnlyResourceOutput {\n /** List of string resources. */\n properties?: Array<string>;\n}\n\nexport interface StaticSiteResetPropertiesARMResourceOutput extends ProxyOnlyResourceOutput {\n /** StaticSiteResetPropertiesARMResource resource specific properties */\n properties?: StaticSiteResetPropertiesARMResourcePropertiesOutput;\n}\n\nexport interface StaticSiteResetPropertiesARMResourcePropertiesOutput {\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 SitePatchResourceOutput extends ProxyOnlyResourceOutput {\n /** SitePatchResource resource specific properties */\n properties?: SitePatchResourcePropertiesOutput;\n /** Managed service identity. */\n identity?: ManagedServiceIdentityOutput;\n}\n\nexport interface SitePatchResourcePropertiesOutput {\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<HostNameSslStateOutput>;\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?: string;\n /** Configuration of the app. */\n siteConfig?: SiteConfigOutput;\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?: HostingEnvironmentProfileOutput;\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?: 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?: CloningInfoOutput;\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?: SlotSwapStatusOutput;\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 CustomHostnameAnalysisResultOutput extends ProxyOnlyResourceOutput {\n /** CustomHostnameAnalysisResult resource specific properties */\n properties?: CustomHostnameAnalysisResultPropertiesOutput;\n}\n\nexport interface CustomHostnameAnalysisResultPropertiesOutput {\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?: ErrorEntityOutput;\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 BackupRequestOutput extends ProxyOnlyResourceOutput {\n /** BackupRequest resource specific properties */\n properties?: BackupRequestPropertiesOutput;\n}\n\nexport interface BackupRequestPropertiesOutput {\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?: BackupScheduleOutput;\n /** Databases included in the backup. */\n databases?: Array<DatabaseBackupSettingOutput>;\n}\n\nexport interface BackupScheduleOutput {\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?: string;\n /** Last time when this schedule was triggered. */\n lastExecutionTime?: string;\n}\n\nexport interface DatabaseBackupSettingOutput {\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 BackupItemOutput extends ProxyOnlyResourceOutput {\n /** BackupItem resource specific properties */\n properties?: BackupItemPropertiesOutput;\n}\n\nexport interface BackupItemPropertiesOutput {\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?: 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<DatabaseBackupSettingOutput>;\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?: string;\n /** Timestamp when this backup finished. */\n finishedTimeStamp?: 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 BackupItemCollectionOutput {\n /** Collection of resources. */\n value: Array<BackupItemOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface RestoreRequestOutput extends ProxyOnlyResourceOutput {\n /** RestoreRequest resource specific properties */\n properties?: RestoreRequestPropertiesOutput;\n}\n\nexport interface RestoreRequestPropertiesOutput {\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<DatabaseBackupSettingOutput>;\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 PublishingCredentialsPoliciesCollectionOutput {\n /** Collection of resources. */\n value: Array<CsmPublishingCredentialsPoliciesEntityOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface CsmPublishingCredentialsPoliciesEntityOutput extends ProxyOnlyResourceOutput {\n /** CsmPublishingCredentialsPoliciesEntity resource specific properties */\n properties?: CsmPublishingCredentialsPoliciesEntityPropertiesOutput;\n}\n\nexport interface CsmPublishingCredentialsPoliciesEntityPropertiesOutput {\n /** <code>true</code> to allow access to a publishing method; otherwise, <code>false</code>. */\n allow: boolean;\n}\n\nexport interface SiteConfigResourceCollectionOutput {\n /** Collection of resources. */\n value: Array<SiteConfigResourceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SiteConfigResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: SiteConfigOutput;\n}\n\nexport interface SiteAuthSettingsOutput extends ProxyOnlyResourceOutput {\n /** SiteAuthSettings resource specific properties */\n properties?: SiteAuthSettingsPropertiesOutput;\n}\n\nexport interface SiteAuthSettingsPropertiesOutput {\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 SiteAuthSettingsV2Output extends ProxyOnlyResourceOutput {\n /** SiteAuthSettingsV2 resource specific properties */\n properties?: SiteAuthSettingsV2PropertiesOutput;\n}\n\nexport interface SiteAuthSettingsV2PropertiesOutput {\n /** The configuration settings of the platform of App Service Authentication/Authorization. */\n platform?: AuthPlatformOutput;\n /** The configuration settings that determines the validation flow of users using App Service Authentication/Authorization. */\n globalValidation?: GlobalValidationOutput;\n /** The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization. */\n identityProviders?: IdentityProvidersOutput;\n /** The configuration settings of the login flow of users using App Service Authentication/Authorization. */\n login?: LoginOutput;\n /** The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization. */\n httpSettings?: HttpSettingsOutput;\n}\n\nexport interface AuthPlatformOutput {\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 GlobalValidationOutput {\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 IdentityProvidersOutput {\n /** The configuration settings of the Azure Active directory provider. */\n azureActiveDirectory?: AzureActiveDirectoryOutput;\n /** The configuration settings of the Facebook provider. */\n facebook?: FacebookOutput;\n /** The configuration settings of the GitHub provider. */\n gitHub?: GitHubOutput;\n /** The configuration settings of the Google provider. */\n google?: GoogleOutput;\n /** The configuration settings of the legacy Microsoft Account provider. */\n legacyMicrosoftAccount?: LegacyMicrosoftAccountOutput;\n /** The configuration settings of the Twitter provider. */\n twitter?: TwitterOutput;\n /** The configuration settings of the Apple provider. */\n apple?: AppleOutput;\n /** The configuration settings of the Azure Static Web Apps provider. */\n azureStaticWebApps?: AzureStaticWebAppsOutput;\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, CustomOpenIdConnectProviderOutput>;\n}\n\nexport interface AzureActiveDirectoryOutput {\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?: AzureActiveDirectoryRegistrationOutput;\n /** The configuration settings of the Azure Active Directory login flow. */\n login?: AzureActiveDirectoryLoginOutput;\n /** The configuration settings of the Azure Active Directory token validation flow. */\n validation?: AzureActiveDirectoryValidationOutput;\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 AzureActiveDirectoryRegistrationOutput {\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 AzureActiveDirectoryLoginOutput {\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 AzureActiveDirectoryValidationOutput {\n /** The configuration settings of the checks that should be made while validating the JWT Claims. */\n jwtClaimChecks?: JwtClaimChecksOutput;\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?: DefaultAuthorizationPolicyOutput;\n}\n\nexport interface JwtClaimChecksOutput {\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 DefaultAuthorizationPolicyOutput {\n /** The configuration settings of the Azure Active Directory allowed principals. */\n allowedPrincipals?: AllowedPrincipalsOutput;\n /** The configuration settings of the Azure Active Directory allowed applications. */\n allowedApplications?: Array<string>;\n}\n\nexport interface AllowedPrincipalsOutput {\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 FacebookOutput {\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?: AppRegistrationOutput;\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?: LoginScopesOutput;\n}\n\nexport interface AppRegistrationOutput {\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 LoginScopesOutput {\n /** A list of the scopes that should be requested while authenticating. */\n scopes?: Array<string>;\n}\n\nexport interface GitHubOutput {\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?: ClientRegistrationOutput;\n /** The configuration settings of the login flow. */\n login?: LoginScopesOutput;\n}\n\nexport interface ClientRegistrationOutput {\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 GoogleOutput {\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?: ClientRegistrationOutput;\n /** The configuration settings of the login flow. */\n login?: LoginScopesOutput;\n /** The configuration settings of the Azure Active Directory token validation flow. */\n validation?: AllowedAudiencesValidationOutput;\n}\n\nexport interface AllowedAudiencesValidationOutput {\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 LegacyMicrosoftAccountOutput {\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?: ClientRegistrationOutput;\n /** The configuration settings of the login flow. */\n login?: LoginScopesOutput;\n /** The configuration settings of the legacy Microsoft Account provider token validation flow. */\n validation?: AllowedAudiencesValidationOutput;\n}\n\nexport interface TwitterOutput {\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?: TwitterRegistrationOutput;\n}\n\nexport interface TwitterRegistrationOutput {\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 AppleOutput {\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?: AppleRegistrationOutput;\n /** The configuration settings of the login flow. */\n login?: LoginScopesOutput;\n}\n\nexport interface AppleRegistrationOutput {\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 AzureStaticWebAppsOutput {\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?: AzureStaticWebAppsRegistrationOutput;\n}\n\nexport interface AzureStaticWebAppsRegistrationOutput {\n /** The Client ID of the app used for login. */\n clientId?: string;\n}\n\nexport interface CustomOpenIdConnectProviderOutput {\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?: OpenIdConnectRegistrationOutput;\n /** The configuration settings of the login flow of the custom Open ID Connect provider. */\n login?: OpenIdConnectLoginOutput;\n}\n\nexport interface OpenIdConnectRegistrationOutput {\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?: OpenIdConnectClientCredentialOutput;\n /** The configuration settings of the endpoints used for the custom Open ID Connect provider. */\n openIdConnectConfiguration?: OpenIdConnectConfigOutput;\n}\n\nexport interface OpenIdConnectClientCredentialOutput {\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 OpenIdConnectConfigOutput {\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 OpenIdConnectLoginOutput {\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 LoginOutput {\n /** The routes that specify the endpoints used for login and logout requests. */\n routes?: LoginRoutesOutput;\n /** The configuration settings of the token store. */\n tokenStore?: TokenStoreOutput;\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?: CookieExpirationOutput;\n /** The configuration settings of the nonce used in the login flow. */\n nonce?: NonceOutput;\n}\n\nexport interface LoginRoutesOutput {\n /** The endpoint at which a logout request should be made. */\n logoutEndpoint?: string;\n}\n\nexport interface TokenStoreOutput {\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?: FileSystemTokenStoreOutput;\n /** The configuration settings of the storage of the tokens if blob storage is used. */\n azureBlobStorage?: BlobStorageTokenStoreOutput;\n}\n\nexport interface FileSystemTokenStoreOutput {\n /** The directory in which the tokens will be stored. */\n directory?: string;\n}\n\nexport interface BlobStorageTokenStoreOutput {\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 CookieExpirationOutput {\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 NonceOutput {\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 HttpSettingsOutput {\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?: HttpSettingsRoutesOutput;\n /** The configuration settings of a forward proxy used to make the requests. */\n forwardProxy?: ForwardProxyOutput;\n}\n\nexport interface HttpSettingsRoutesOutput {\n /** The prefix that should precede all the authentication/authorization paths. */\n apiPrefix?: string;\n}\n\nexport interface ForwardProxyOutput {\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 AzureStoragePropertyDictionaryResourceOutput extends ProxyOnlyResourceOutput {\n /** Azure storage accounts. */\n properties?: Record<string, AzureStorageInfoValueOutput>;\n}\n\nexport interface ApiKVReferenceCollectionOutput {\n /** Collection of resources. */\n value: Array<ApiKVReferenceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ApiKVReferenceOutput extends ProxyOnlyResourceOutput {\n /** ApiKVReference resource specific properties */\n properties?: ApiKVReferencePropertiesOutput;\n}\n\nexport interface ApiKVReferencePropertiesOutput {\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?: ManagedServiceIdentityOutput;\n details?: string;\n source?: \"KeyVault\";\n activeVersion?: string;\n}\n\nexport interface ConnectionStringDictionaryOutput extends ProxyOnlyResourceOutput {\n /** Connection strings. */\n properties?: Record<string, ConnStringValueTypePairOutput>;\n}\n\nexport interface ConnStringValueTypePairOutput {\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 SiteLogsConfigOutput extends ProxyOnlyResourceOutput {\n /** SiteLogsConfig resource specific properties */\n properties?: SiteLogsConfigPropertiesOutput;\n}\n\nexport interface SiteLogsConfigPropertiesOutput {\n /** Application logs configuration. */\n applicationLogs?: ApplicationLogsConfigOutput;\n /** HTTP logs configuration. */\n httpLogs?: HttpLogsConfigOutput;\n /** Failed requests tracing configuration. */\n failedRequestsTracing?: EnabledConfigOutput;\n /** Detailed error messages configuration. */\n detailedErrorMessages?: EnabledConfigOutput;\n}\n\nexport interface ApplicationLogsConfigOutput {\n /** Application logs to file system configuration. */\n fileSystem?: FileSystemApplicationLogsConfigOutput;\n /** Application logs to azure table storage configuration. */\n azureTableStorage?: AzureTableStorageApplicationLogsConfigOutput;\n /** Application logs to blob storage configuration. */\n azureBlobStorage?: AzureBlobStorageApplicationLogsConfigOutput;\n}\n\nexport interface FileSystemApplicationLogsConfigOutput {\n /** Log level. */\n level?: \"Off\" | \"Verbose\" | \"Information\" | \"Warning\" | \"Error\";\n}\n\nexport interface AzureTableStorageApplicationLogsConfigOutput {\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 AzureBlobStorageApplicationLogsConfigOutput {\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 HttpLogsConfigOutput {\n /** Http logs to file system configuration. */\n fileSystem?: FileSystemHttpLogsConfigOutput;\n /** Http logs to azure blob storage configuration. */\n azureBlobStorage?: AzureBlobStorageHttpLogsConfigOutput;\n}\n\nexport interface FileSystemHttpLogsConfigOutput {\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 AzureBlobStorageHttpLogsConfigOutput {\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 EnabledConfigOutput {\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 SlotConfigNamesResourceOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: SlotConfigNamesOutput;\n}\n\nexport interface SlotConfigNamesOutput {\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 SiteConfigurationSnapshotInfoCollectionOutput {\n /** Collection of resources. */\n value: Array<SiteConfigurationSnapshotInfoOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SiteConfigurationSnapshotInfoOutput extends ProxyOnlyResourceOutput {\n /** SiteConfigurationSnapshotInfo resource specific properties */\n properties?: SiteConfigurationSnapshotInfoPropertiesOutput;\n}\n\nexport interface SiteConfigurationSnapshotInfoPropertiesOutput {\n /** The time the snapshot was taken. */\n time?: string;\n /** The id of the snapshot */\n snapshotId?: number;\n}\n\nexport interface ContinuousWebJobCollectionOutput {\n /** Collection of resources. */\n value: Array<ContinuousWebJobOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ContinuousWebJobOutput extends ProxyOnlyResourceOutput {\n /** ContinuousWebJob resource specific properties */\n properties?: ContinuousWebJobPropertiesOutput;\n}\n\nexport interface ContinuousWebJobPropertiesOutput {\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 DeploymentCollectionOutput {\n /** Collection of resources. */\n value: Array<DeploymentOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface DeploymentOutput extends ProxyOnlyResourceOutput {\n /** Deployment resource specific properties */\n properties?: DeploymentPropertiesOutput;\n}\n\nexport interface DeploymentPropertiesOutput {\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?: string;\n /** End time. */\n end_time?: 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 MSDeployStatusOutput extends ProxyOnlyResourceOutput {\n /** MSDeployStatus resource specific properties */\n properties?: MSDeployStatusPropertiesOutput;\n}\n\nexport interface MSDeployStatusPropertiesOutput {\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?: string;\n /** End time of deploy operation */\n endTime?: string;\n /** Whether the deployment operation has completed */\n complete?: boolean;\n}\n\nexport interface MSDeployOutput extends ProxyOnlyResourceOutput {\n /** Core resource properties */\n properties?: MSDeployCoreOutput;\n}\n\nexport interface MSDeployCoreOutput {\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 MSDeployLogOutput extends ProxyOnlyResourceOutput {\n /** MSDeployLog resource specific properties */\n properties?: MSDeployLogPropertiesOutput;\n}\n\nexport interface MSDeployLogPropertiesOutput {\n /** List of log entry messages */\n entries?: Array<MSDeployLogEntryOutput>;\n}\n\nexport interface MSDeployLogEntryOutput {\n /** Timestamp of log entry */\n time?: string;\n /** Log entry type */\n type?: \"Message\" | \"Warning\" | \"Error\";\n /** Log entry message */\n message?: string;\n}\n\nexport interface FunctionEnvelopeCollectionOutput {\n /** Collection of resources. */\n value: Array<FunctionEnvelopeOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface FunctionEnvelopeOutput extends ProxyOnlyResourceOutput {\n /** FunctionEnvelope resource specific properties */\n properties?: FunctionEnvelopePropertiesOutput;\n}\n\nexport interface FunctionEnvelopePropertiesOutput {\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 KeyInfoOutput {\n /** Key name */\n name?: string;\n /** Key value */\n value?: string;\n}\n\nexport interface FunctionSecretsOutput {\n /** Secret key. */\n key?: string;\n /** Trigger URL. */\n trigger_url?: string;\n}\n\nexport interface HostKeysOutput {\n /** Secret key. */\n masterKey?: string;\n /** Host level function keys. */\n functionKeys?: Record<string, string>;\n /** System keys. */\n systemKeys?: Record<string, string>;\n}\n\nexport interface HostNameBindingCollectionOutput {\n /** Collection of resources. */\n value: Array<HostNameBindingOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface HostNameBindingOutput extends ProxyOnlyResourceOutput {\n /** HostNameBinding resource specific properties */\n properties?: HostNameBindingPropertiesOutput;\n}\n\nexport interface HostNameBindingPropertiesOutput {\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 RelayServiceConnectionEntityOutput extends ProxyOnlyResourceOutput {\n /** RelayServiceConnectionEntity resource specific properties */\n properties?: RelayServiceConnectionEntityPropertiesOutput;\n}\n\nexport interface RelayServiceConnectionEntityPropertiesOutput {\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 WebAppInstanceStatusCollectionOutput {\n /** Collection of resources. */\n value: Array<WebSiteInstanceStatusOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface WebSiteInstanceStatusOutput extends ProxyOnlyResourceOutput {\n /** WebSiteInstanceStatus resource specific properties */\n properties?: WebSiteInstanceStatusPropertiesOutput;\n}\n\nexport interface WebSiteInstanceStatusPropertiesOutput {\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, ContainerInfoOutput>;\n}\n\nexport interface ContainerInfoOutput {\n currentTimeStamp?: string;\n previousTimeStamp?: string;\n currentCpuStats?: ContainerCpuStatisticsOutput;\n previousCpuStats?: ContainerCpuStatisticsOutput;\n memoryStats?: ContainerMemoryStatisticsOutput;\n name?: string;\n id?: string;\n eth0?: ContainerNetworkInterfaceStatisticsOutput;\n}\n\nexport interface ContainerCpuStatisticsOutput {\n cpuUsage?: ContainerCpuUsageOutput;\n systemCpuUsage?: number;\n onlineCpuCount?: number;\n throttlingData?: ContainerThrottlingDataOutput;\n}\n\nexport interface ContainerCpuUsageOutput {\n totalUsage?: number;\n perCpuUsage?: Array<number>;\n kernelModeUsage?: number;\n userModeUsage?: number;\n}\n\nexport interface ContainerThrottlingDataOutput {\n periods?: number;\n throttledPeriods?: number;\n throttledTime?: number;\n}\n\nexport interface ContainerMemoryStatisticsOutput {\n usage?: number;\n maxUsage?: number;\n limit?: number;\n}\n\nexport interface ContainerNetworkInterfaceStatisticsOutput {\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 ProcessInfoCollectionOutput {\n /** Collection of resources. */\n value: Array<ProcessInfoOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ProcessInfoOutput extends ProxyOnlyResourceOutput {\n /** ProcessInfo resource specific properties */\n properties?: ProcessInfoPropertiesOutput;\n}\n\nexport interface ProcessInfoPropertiesOutput {\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<ProcessThreadInfoOutput>;\n /** List of open files. */\n open_file_handles?: Array<string>;\n /** List of modules. */\n modules?: Array<ProcessModuleInfoOutput>;\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?: 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?: 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 ProcessThreadInfoOutput extends ProxyOnlyResourceOutput {\n /** ProcessThreadInfo resource specific properties */\n properties?: ProcessThreadInfoPropertiesOutput;\n}\n\nexport interface ProcessThreadInfoPropertiesOutput {\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?: 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 ProcessModuleInfoOutput extends ProxyOnlyResourceOutput {\n /** ProcessModuleInfo resource specific properties */\n properties?: ProcessModuleInfoPropertiesOutput;\n}\n\nexport interface ProcessModuleInfoPropertiesOutput {\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 ProcessModuleInfoCollectionOutput {\n /** Collection of resources. */\n value: Array<ProcessModuleInfoOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface ProcessThreadInfoCollectionOutput {\n /** Collection of resources. */\n value: Array<ProcessThreadInfoOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SiteCloneabilityOutput {\n /** Name of app. */\n result?: \"Cloneable\" | \"PartiallyCloneable\" | \"NotCloneable\";\n /** List of features enabled on app that prevent cloning. */\n blockingFeatures?: Array<SiteCloneabilityCriterionOutput>;\n /**\n * List of features enabled on app that are non-blocking but cannot be cloned. The app can still be cloned\n * but the features in this list will not be set up on cloned app.\n */\n unsupportedFeatures?: Array<SiteCloneabilityCriterionOutput>;\n /** List of blocking application characteristics. */\n blockingCharacteristics?: Array<SiteCloneabilityCriterionOutput>;\n}\n\nexport interface SiteCloneabilityCriterionOutput {\n /** Name of criterion. */\n name?: string;\n /** Description of criterion. */\n description?: string;\n}\n\nexport interface StorageMigrationOptionsOutput extends ProxyOnlyResourceOutput {\n /** StorageMigrationOptions resource specific properties */\n properties?: StorageMigrationOptionsPropertiesOutput;\n}\n\nexport interface StorageMigrationOptionsPropertiesOutput {\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 StorageMigrationResponseOutput extends ProxyOnlyResourceOutput {\n /** StorageMigrationResponse resource specific properties */\n properties?: StorageMigrationResponsePropertiesOutput;\n}\n\nexport interface StorageMigrationResponsePropertiesOutput {\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 MigrateMySqlRequestOutput extends ProxyOnlyResourceOutput {\n /** MigrateMySqlRequest resource specific properties */\n properties?: MigrateMySqlRequestPropertiesOutput;\n}\n\nexport interface MigrateMySqlRequestPropertiesOutput {\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 MigrateMySqlStatusOutput extends ProxyOnlyResourceOutput {\n /** MigrateMySqlStatus resource specific properties */\n properties?: MigrateMySqlStatusPropertiesOutput;\n}\n\nexport interface MigrateMySqlStatusPropertiesOutput {\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 SwiftVirtualNetworkOutput extends ProxyOnlyResourceOutput {\n /** SwiftVirtualNetwork resource specific properties */\n properties?: SwiftVirtualNetworkPropertiesOutput;\n}\n\nexport interface SwiftVirtualNetworkPropertiesOutput {\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 NetworkFeaturesOutput extends ProxyOnlyResourceOutput {\n /** NetworkFeatures resource specific properties */\n properties?: NetworkFeaturesPropertiesOutput;\n}\n\nexport interface NetworkFeaturesPropertiesOutput {\n /** The Virtual Network name. */\n virtualNetworkName?: string;\n /** The Virtual Network summary view. */\n virtualNetworkConnection?: VnetInfoOutput;\n /** The Hybrid Connections summary view. */\n hybridConnections?: Array<RelayServiceConnectionEntityOutput>;\n /** The Hybrid Connection V2 (Service Bus) view. */\n hybridConnectionsV2?: Array<HybridConnectionOutput>;\n}\n\nexport interface NetworkTraceOutput {\n /** Local file path for the captured network trace file. */\n path?: string;\n /** Current status of the network trace operation, same as Operation.Status (InProgress/Succeeded/Failed). */\n status?: string;\n /** Detailed message of a network trace operation, e.g. error message in case of failure. */\n message?: string;\n}\n\nexport interface PerfMonCounterCollectionOutput {\n /** Collection of resources. */\n value: Array<PerfMonResponseOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface PerfMonResponseOutput {\n /** The response code. */\n code?: string;\n /** The message. */\n message?: string;\n /** The performance monitor counters. */\n data?: PerfMonSetOutput;\n}\n\nexport interface PerfMonSetOutput {\n /** Unique key name of the counter. */\n name?: string;\n /** Start time of the period. */\n startTime?: string;\n /** End time of the period. */\n endTime?: string;\n /** Presented time grain. */\n timeGrain?: string;\n /** Collection of workers that are active during this time. */\n values?: Array<PerfMonSampleOutput>;\n}\n\nexport interface PerfMonSampleOutput {\n /** Point in time for which counter was measured. */\n time?: string;\n /** Name of the server on which the measurement is made. */\n instanceName?: string;\n /** Value of counter at a certain time. */\n value?: number;\n}\n\nexport interface SitePhpErrorLogFlagOutput extends ProxyOnlyResourceOutput {\n /** SitePhpErrorLogFlag resource specific properties */\n properties?: SitePhpErrorLogFlagPropertiesOutput;\n}\n\nexport interface SitePhpErrorLogFlagPropertiesOutput {\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 PremierAddOnOutput extends ResourceOutput {\n /** PremierAddOn resource specific properties */\n properties?: PremierAddOnPropertiesOutput;\n}\n\nexport interface PremierAddOnPropertiesOutput {\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 PremierAddOnPatchResourceOutput extends ProxyOnlyResourceOutput {\n /** PremierAddOnPatchResource resource specific properties */\n properties?: PremierAddOnPatchResourcePropertiesOutput;\n}\n\nexport interface PremierAddOnPatchResourcePropertiesOutput {\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 PrivateAccessOutput extends ProxyOnlyResourceOutput {\n /** PrivateAccess resource specific properties */\n properties?: PrivateAccessPropertiesOutput;\n}\n\nexport interface PrivateAccessPropertiesOutput {\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<PrivateAccessVirtualNetworkOutput>;\n}\n\nexport interface PrivateAccessVirtualNetworkOutput {\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<PrivateAccessSubnetOutput>;\n}\n\nexport interface PrivateAccessSubnetOutput {\n /** The name of the subnet. */\n name?: string;\n /** The key (ID) of the subnet. */\n key?: number;\n}\n\nexport interface PublicCertificateCollectionOutput {\n /** Collection of resources. */\n value: Array<PublicCertificateOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface PublicCertificateOutput extends ProxyOnlyResourceOutput {\n /** PublicCertificate resource specific properties */\n properties?: PublicCertificatePropertiesOutput;\n}\n\nexport interface PublicCertificatePropertiesOutput {\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 DeletedAppRestoreRequestOutput extends ProxyOnlyResourceOutput {\n /** DeletedAppRestoreRequest resource specific properties */\n properties?: DeletedAppRestoreRequestPropertiesOutput;\n}\n\nexport interface DeletedAppRestoreRequestPropertiesOutput {\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 SnapshotRestoreRequestOutput extends ProxyOnlyResourceOutput {\n /** SnapshotRestoreRequest resource specific properties */\n properties?: SnapshotRestoreRequestPropertiesOutput;\n}\n\nexport interface SnapshotRestoreRequestPropertiesOutput {\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?: SnapshotRecoverySourceOutput;\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 SnapshotRecoverySourceOutput {\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 SiteExtensionInfoCollectionOutput {\n /** Collection of resources. */\n value: Array<SiteExtensionInfoOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SiteExtensionInfoOutput extends ProxyOnlyResourceOutput {\n /** SiteExtensionInfo resource specific properties */\n properties?: SiteExtensionInfoPropertiesOutput;\n}\n\nexport interface SiteExtensionInfoPropertiesOutput {\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?: 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?: string;\n /** Provisioning state. */\n provisioningState?: string;\n /** Site Extension comment. */\n comment?: string;\n}\n\nexport interface SlotDifferenceCollectionOutput {\n /** Collection of resources. */\n value: Array<SlotDifferenceOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SlotDifferenceOutput extends ProxyOnlyResourceOutput {\n /** SlotDifference resource specific properties */\n properties?: SlotDifferencePropertiesOutput;\n}\n\nexport interface SlotDifferencePropertiesOutput {\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 SnapshotCollectionOutput {\n /** Collection of resources. */\n value: Array<SnapshotOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface SiteSourceControlOutput extends ProxyOnlyResourceOutput {\n /** SiteSourceControl resource specific properties */\n properties?: SiteSourceControlPropertiesOutput;\n}\n\nexport interface SiteSourceControlPropertiesOutput {\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?: GitHubActionConfigurationOutput;\n}\n\nexport interface GitHubActionConfigurationOutput {\n /** GitHub Action code configuration. */\n codeConfiguration?: GitHubActionCodeConfigurationOutput;\n /** GitHub Action container configuration. */\n containerConfiguration?: GitHubActionContainerConfigurationOutput;\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 GitHubActionCodeConfigurationOutput {\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 GitHubActionContainerConfigurationOutput {\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 TriggeredWebJobCollectionOutput {\n /** Collection of resources. */\n value: Array<TriggeredWebJobOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface TriggeredWebJobOutput extends ProxyOnlyResourceOutput {\n /** TriggeredWebJob resource specific properties */\n properties?: TriggeredWebJobPropertiesOutput;\n}\n\nexport interface TriggeredWebJobPropertiesOutput {\n /** Latest job run information. */\n latest_run?: TriggeredJobRunOutput;\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 TriggeredJobRunOutput {\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?: string;\n /** End time. */\n end_time?: 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 TriggeredJobHistoryCollectionOutput {\n /** Collection of resources. */\n value: Array<TriggeredJobHistoryOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface TriggeredJobHistoryOutput extends ProxyOnlyResourceOutput {\n /** TriggeredJobHistory resource specific properties */\n properties?: TriggeredJobHistoryPropertiesOutput;\n}\n\nexport interface TriggeredJobHistoryPropertiesOutput {\n /** List of triggered web job runs. */\n runs?: Array<TriggeredJobRunOutput>;\n}\n\nexport interface WebJobCollectionOutput {\n /** Collection of resources. */\n value: Array<WebJobOutput>;\n /** Link to next page of resources. */\n nextLink?: string;\n}\n\nexport interface WebJobOutput extends ProxyOnlyResourceOutput {\n /** WebJob resource specific properties */\n properties?: WebJobPropertiesOutput;\n}\n\nexport interface WebJobPropertiesOutput {\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"]}