@azure/arm-appservice 10.0.0 → 11.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/CHANGELOG.md +106 -0
  2. package/LICENSE +1 -1
  3. package/dist/index.js +6685 -4683
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist-esm/src/models/index.d.ts +588 -57
  8. package/dist-esm/src/models/index.d.ts.map +1 -1
  9. package/dist-esm/src/models/index.js +82 -37
  10. package/dist-esm/src/models/index.js.map +1 -1
  11. package/dist-esm/src/models/mappers.d.ts +28 -1
  12. package/dist-esm/src/models/mappers.d.ts.map +1 -1
  13. package/dist-esm/src/models/mappers.js +1085 -16
  14. package/dist-esm/src/models/mappers.js.map +1 -1
  15. package/dist-esm/src/models/parameters.d.ts +2 -0
  16. package/dist-esm/src/models/parameters.d.ts.map +1 -1
  17. package/dist-esm/src/models/parameters.js +17 -2
  18. package/dist-esm/src/models/parameters.js.map +1 -1
  19. package/dist-esm/src/operations/containerApps.d.ts +97 -0
  20. package/dist-esm/src/operations/containerApps.d.ts.map +1 -0
  21. package/dist-esm/src/operations/containerApps.js +444 -0
  22. package/dist-esm/src/operations/containerApps.js.map +1 -0
  23. package/dist-esm/src/operations/containerAppsRevisions.d.ts +70 -0
  24. package/dist-esm/src/operations/containerAppsRevisions.d.ts.map +1 -0
  25. package/dist-esm/src/operations/containerAppsRevisions.js +259 -0
  26. package/dist-esm/src/operations/containerAppsRevisions.js.map +1 -0
  27. package/dist-esm/src/operations/domains.d.ts +8 -1
  28. package/dist-esm/src/operations/domains.d.ts.map +1 -1
  29. package/dist-esm/src/operations/domains.js +33 -0
  30. package/dist-esm/src/operations/domains.js.map +1 -1
  31. package/dist-esm/src/operations/index.d.ts +2 -0
  32. package/dist-esm/src/operations/index.d.ts.map +1 -1
  33. package/dist-esm/src/operations/index.js +2 -0
  34. package/dist-esm/src/operations/index.js.map +1 -1
  35. package/dist-esm/src/operations/webApps.d.ts +8 -1
  36. package/dist-esm/src/operations/webApps.d.ts.map +1 -1
  37. package/dist-esm/src/operations/webApps.js +30 -0
  38. package/dist-esm/src/operations/webApps.js.map +1 -1
  39. package/dist-esm/src/operationsInterfaces/containerApps.d.ts +61 -0
  40. package/dist-esm/src/operationsInterfaces/containerApps.d.ts.map +1 -0
  41. package/dist-esm/src/operationsInterfaces/containerApps.js +9 -0
  42. package/dist-esm/src/operationsInterfaces/containerApps.js.map +1 -0
  43. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.d.ts +45 -0
  44. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.d.ts.map +1 -0
  45. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.js +9 -0
  46. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.js.map +1 -0
  47. package/dist-esm/src/operationsInterfaces/domains.d.ts +8 -1
  48. package/dist-esm/src/operationsInterfaces/domains.d.ts.map +1 -1
  49. package/dist-esm/src/operationsInterfaces/index.d.ts +2 -0
  50. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
  51. package/dist-esm/src/operationsInterfaces/index.js +2 -0
  52. package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
  53. package/dist-esm/src/operationsInterfaces/webApps.d.ts +8 -1
  54. package/dist-esm/src/operationsInterfaces/webApps.d.ts.map +1 -1
  55. package/dist-esm/src/webSiteManagementClient.d.ts +23 -2
  56. package/dist-esm/src/webSiteManagementClient.d.ts.map +1 -1
  57. package/dist-esm/src/webSiteManagementClient.js +114 -12
  58. package/dist-esm/src/webSiteManagementClient.js.map +1 -1
  59. package/package.json +1 -1
  60. package/review/arm-appservice.api.md +468 -26
  61. package/src/models/index.ts +658 -58
  62. package/src/models/mappers.ts +1145 -20
  63. package/src/models/parameters.ts +19 -1
  64. package/src/operations/containerApps.ts +580 -0
  65. package/src/operations/containerAppsRevisions.ts +356 -0
  66. package/src/operations/domains.ts +44 -0
  67. package/src/operations/index.ts +2 -0
  68. package/src/operations/webApps.ts +41 -0
  69. package/src/operationsInterfaces/containerApps.ts +116 -0
  70. package/src/operationsInterfaces/containerAppsRevisions.ts +86 -0
  71. package/src/operationsInterfaces/domains.ts +14 -1
  72. package/src/operationsInterfaces/index.ts +2 -0
  73. package/src/operationsInterfaces/webApps.ts +13 -0
  74. package/src/webSiteManagementClient.ts +126 -2
  75. package/types/arm-appservice.d.ts +790 -52
  76. package/types/tsdoc-metadata.json +1 -1
@@ -1673,6 +1673,236 @@ export interface CertificateCollection {
1673
1673
  */
1674
1674
  readonly nextLink?: string;
1675
1675
  }
1676
+ /** Container App collection ARM resource. */
1677
+ export interface ContainerAppCollection {
1678
+ /** Collection of resources. */
1679
+ value: ContainerApp[];
1680
+ /**
1681
+ * Link to next page of resources.
1682
+ * NOTE: This property will not be serialized. It can only be populated by the server.
1683
+ */
1684
+ readonly nextLink?: string;
1685
+ }
1686
+ /** Non versioned Container App configuration properties that define the mutable settings of a Container app */
1687
+ export interface Configuration {
1688
+ /** Collection of secrets used by a Container app */
1689
+ secrets?: Secret[];
1690
+ /**
1691
+ * ActiveRevisionsMode controls how active revisions are handled for the Container app:
1692
+ * <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>
1693
+ */
1694
+ activeRevisionsMode?: ActiveRevisionsMode;
1695
+ /** Ingress configurations. */
1696
+ ingress?: Ingress;
1697
+ /** Collection of private container registry credentials for containers used by the Container app */
1698
+ registries?: RegistryCredentials[];
1699
+ }
1700
+ /** Container App Secret. */
1701
+ export interface Secret {
1702
+ /** Secret Name. */
1703
+ name?: string;
1704
+ /** Secret Value. */
1705
+ value?: string;
1706
+ }
1707
+ /** Container App Ingress configuration. */
1708
+ export interface Ingress {
1709
+ /**
1710
+ * Hostname.
1711
+ * NOTE: This property will not be serialized. It can only be populated by the server.
1712
+ */
1713
+ readonly fqdn?: string;
1714
+ /** Bool indicating if app exposes an external http endpoint */
1715
+ external?: boolean;
1716
+ /** Target Port in containers for traffic from ingress */
1717
+ targetPort?: number;
1718
+ /** Ingress transport protocol */
1719
+ transport?: IngressTransportMethod;
1720
+ traffic?: TrafficWeight[];
1721
+ /** Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections */
1722
+ allowInsecure?: boolean;
1723
+ }
1724
+ /** Traffic weight assigned to a revision */
1725
+ export interface TrafficWeight {
1726
+ /** Name of a revision */
1727
+ revisionName?: string;
1728
+ /** Traffic weight assigned to a revision */
1729
+ weight?: number;
1730
+ /** Indicates that the traffic weight belongs to a latest stable revision */
1731
+ latestRevision?: boolean;
1732
+ }
1733
+ /** Container App Private Registry */
1734
+ export interface RegistryCredentials {
1735
+ /** Container Registry Server */
1736
+ server?: string;
1737
+ /** Container Registry Username */
1738
+ username?: string;
1739
+ /** The name of the Secret that contains the registry login password */
1740
+ passwordSecretRef?: string;
1741
+ }
1742
+ /**
1743
+ * Container App versioned application definition.
1744
+ * Defines the desired state of an immutable revision.
1745
+ * Any changes to this section Will result in a new revision being created
1746
+ */
1747
+ export interface Template {
1748
+ /** User friendly suffix that is appended to the revision name */
1749
+ revisionSuffix?: string;
1750
+ /** List of container definitions for the Container App. */
1751
+ containers?: Container[];
1752
+ /** Scaling properties for the Container App. */
1753
+ scale?: Scale;
1754
+ /** Dapr configuration for the Container App. */
1755
+ dapr?: Dapr;
1756
+ }
1757
+ /** Container App container definition. */
1758
+ export interface Container {
1759
+ /** Container image tag. */
1760
+ image?: string;
1761
+ /** Custom container name. */
1762
+ name?: string;
1763
+ /** Container start command. */
1764
+ command?: string[];
1765
+ /** Container start command arguments. */
1766
+ args?: string[];
1767
+ /** Container environment variables. */
1768
+ env?: EnvironmentVar[];
1769
+ /** Container resource requirements. */
1770
+ resources?: ContainerResources;
1771
+ }
1772
+ /** Container App container environment variable. */
1773
+ export interface EnvironmentVar {
1774
+ /** Environment variable name. */
1775
+ name?: string;
1776
+ /** Non-secret environment variable value. */
1777
+ value?: string;
1778
+ /** Name of the Container App secret from which to pull the environment variable value. */
1779
+ secretRef?: string;
1780
+ }
1781
+ /** Container App container resource requirements. */
1782
+ export interface ContainerResources {
1783
+ /** Required CPU in cores, e.g. 0.5 */
1784
+ cpu?: number;
1785
+ /** Required memory, e.g. "250Mb" */
1786
+ memory?: string;
1787
+ }
1788
+ /** Container App scaling configurations. */
1789
+ export interface Scale {
1790
+ /** Optional. Minimum number of container replicas. */
1791
+ minReplicas?: number;
1792
+ /** Optional. Maximum number of container replicas. Defaults to 10 if not set. */
1793
+ maxReplicas?: number;
1794
+ /** Scaling rules. */
1795
+ rules?: ScaleRule[];
1796
+ }
1797
+ /** Container App container scaling rule. */
1798
+ export interface ScaleRule {
1799
+ /** Scale Rule Name */
1800
+ name?: string;
1801
+ /** Azure Queue based scaling. */
1802
+ azureQueue?: QueueScaleRule;
1803
+ /** Custom scale rule. */
1804
+ custom?: CustomScaleRule;
1805
+ /** HTTP requests based scaling. */
1806
+ http?: HttpScaleRule;
1807
+ }
1808
+ /** Container App container Azure Queue based scaling rule. */
1809
+ export interface QueueScaleRule {
1810
+ /** Queue name. */
1811
+ queueName?: string;
1812
+ /** Queue length. */
1813
+ queueLength?: number;
1814
+ /** Authentication secrets for the queue scale rule. */
1815
+ auth?: ScaleRuleAuth[];
1816
+ }
1817
+ /** Auth Secrets for Container App Scale Rule */
1818
+ export interface ScaleRuleAuth {
1819
+ /** Name of the Container App secret from which to pull the auth params. */
1820
+ secretRef?: string;
1821
+ /** Trigger Parameter that uses the secret */
1822
+ triggerParameter?: string;
1823
+ }
1824
+ /** Container App container Custom scaling rule. */
1825
+ export interface CustomScaleRule {
1826
+ /**
1827
+ * Type of the custom scale rule
1828
+ * eg: azure-servicebus, redis etc.
1829
+ */
1830
+ type?: string;
1831
+ /** Metadata properties to describe custom scale rule. */
1832
+ metadata?: {
1833
+ [propertyName: string]: string;
1834
+ };
1835
+ /** Authentication secrets for the custom scale rule. */
1836
+ auth?: ScaleRuleAuth[];
1837
+ }
1838
+ /** Container App container Custom scaling rule. */
1839
+ export interface HttpScaleRule {
1840
+ /** Metadata properties to describe http scale rule. */
1841
+ metadata?: {
1842
+ [propertyName: string]: string;
1843
+ };
1844
+ /** Authentication secrets for the custom scale rule. */
1845
+ auth?: ScaleRuleAuth[];
1846
+ }
1847
+ /** Container App Dapr configuration. */
1848
+ export interface Dapr {
1849
+ /** Boolean indicating if the Dapr side car is enabled */
1850
+ enabled?: boolean;
1851
+ /** Dapr application identifier */
1852
+ appId?: string;
1853
+ /** Port on which the Dapr side car */
1854
+ appPort?: number;
1855
+ /** Collection of Dapr components */
1856
+ components?: DaprComponent[];
1857
+ }
1858
+ /** Dapr component configuration */
1859
+ export interface DaprComponent {
1860
+ /** Component name */
1861
+ name?: string;
1862
+ /** Component type */
1863
+ type?: string;
1864
+ /** Component version */
1865
+ version?: string;
1866
+ /** Component metadata */
1867
+ metadata?: DaprMetadata[];
1868
+ }
1869
+ /** Container App Dapr component metadata. */
1870
+ export interface DaprMetadata {
1871
+ /** Metadata property name. */
1872
+ name?: string;
1873
+ /** Metadata property value. */
1874
+ value?: string;
1875
+ /** Name of the Container App secret from which to pull the metadata property value. */
1876
+ secretRef?: string;
1877
+ }
1878
+ /** Container App Secrets Collection ARM resource. */
1879
+ export interface SecretsCollection {
1880
+ /** Collection of resources. */
1881
+ value: ContainerAppSecret[];
1882
+ }
1883
+ /** Container App Secret. */
1884
+ export interface ContainerAppSecret {
1885
+ /**
1886
+ * Secret Name.
1887
+ * NOTE: This property will not be serialized. It can only be populated by the server.
1888
+ */
1889
+ readonly name?: string;
1890
+ /**
1891
+ * Secret Value.
1892
+ * NOTE: This property will not be serialized. It can only be populated by the server.
1893
+ */
1894
+ readonly value?: string;
1895
+ }
1896
+ /** Container App Revisions collection ARM resource. */
1897
+ export interface RevisionCollection {
1898
+ /** Collection of resources. */
1899
+ value: Revision[];
1900
+ /**
1901
+ * Link to next page of resources.
1902
+ * NOTE: This property will not be serialized. It can only be populated by the server.
1903
+ */
1904
+ readonly nextLink?: string;
1905
+ }
1676
1906
  /** Collection of deleted apps. */
1677
1907
  export interface DeletedWebAppCollection {
1678
1908
  /** Collection of resources. */
@@ -1872,6 +2102,20 @@ export interface LogAnalyticsConfiguration {
1872
2102
  customerId?: string;
1873
2103
  sharedKey?: string;
1874
2104
  }
2105
+ export interface ContainerAppsConfiguration {
2106
+ /** Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry */
2107
+ daprAIInstrumentationKey?: string;
2108
+ /** IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges. */
2109
+ platformReservedCidr?: string;
2110
+ /** An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server */
2111
+ platformReservedDnsIP?: string;
2112
+ /** 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. */
2113
+ controlPlaneSubnetResourceId?: string;
2114
+ /** 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. */
2115
+ appSubnetResourceId?: string;
2116
+ /** 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. */
2117
+ dockerBridgeCidr?: string;
2118
+ }
1875
2119
  /** Collection of Application Stacks */
1876
2120
  export interface ApplicationStackCollection {
1877
2121
  /** Collection of resources. */
@@ -2394,6 +2638,16 @@ export interface ResourceNameAvailability {
2394
2638
  /** 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. */
2395
2639
  message?: string;
2396
2640
  }
2641
+ /** Collection of custom hostname sites */
2642
+ export interface CustomHostnameSitesCollection {
2643
+ /** Collection of resources. */
2644
+ value: CustomHostnameSites[];
2645
+ /**
2646
+ * Link to next page of resources.
2647
+ * NOTE: This property will not be serialized. It can only be populated by the server.
2648
+ */
2649
+ readonly nextLink?: string;
2650
+ }
2397
2651
  /**
2398
2652
  * List of available locations (regions or App Service Environments) for
2399
2653
  * deployment of App Service resources.
@@ -4190,6 +4444,81 @@ export declare type Certificate = Resource & {
4190
4444
  /** Method of domain validation for free cert */
4191
4445
  domainValidationMethod?: string;
4192
4446
  };
4447
+ /** Container App. */
4448
+ export declare type ContainerApp = Resource & {
4449
+ /**
4450
+ * Provisioning state of the Container App.
4451
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4452
+ */
4453
+ readonly provisioningState?: ContainerAppProvisioningState;
4454
+ /** Resource ID of the Container App's KubeEnvironment. */
4455
+ kubeEnvironmentId?: string;
4456
+ /**
4457
+ * Name of the latest revision of the Container App.
4458
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4459
+ */
4460
+ readonly latestRevisionName?: string;
4461
+ /**
4462
+ * Fully Qualified Domain Name of the latest revision of the Container App.
4463
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4464
+ */
4465
+ readonly latestRevisionFqdn?: string;
4466
+ /** Non versioned Container App configuration properties. */
4467
+ configuration?: Configuration;
4468
+ /** Container App versioned application definition. */
4469
+ template?: Template;
4470
+ };
4471
+ /** Container App Revision. */
4472
+ export declare type Revision = Resource & {
4473
+ /**
4474
+ * Timestamp describing when the revision was created
4475
+ * by controller
4476
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4477
+ */
4478
+ readonly createdTime?: Date;
4479
+ /**
4480
+ * Fully qualified domain name of the revision
4481
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4482
+ */
4483
+ readonly fqdn?: string;
4484
+ /**
4485
+ * Container App Revision Template with all possible settings and the
4486
+ * defaults if user did not provide them. The defaults are populated
4487
+ * as they were at the creation time
4488
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4489
+ */
4490
+ readonly template?: Template;
4491
+ /**
4492
+ * Boolean describing if the Revision is Active
4493
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4494
+ */
4495
+ readonly active?: boolean;
4496
+ /**
4497
+ * Number of pods currently running for this revision
4498
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4499
+ */
4500
+ readonly replicas?: number;
4501
+ /**
4502
+ * Traffic weight assigned to this revision
4503
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4504
+ */
4505
+ readonly trafficWeight?: number;
4506
+ /**
4507
+ * Optional Field - Platform Error Message
4508
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4509
+ */
4510
+ readonly provisioningError?: string;
4511
+ /**
4512
+ * Current health State of the revision
4513
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4514
+ */
4515
+ readonly healthState?: RevisionHealthState;
4516
+ /**
4517
+ * Current provisioning State of the revision
4518
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4519
+ */
4520
+ readonly provisioningState?: RevisionProvisioningState;
4521
+ };
4193
4522
  /** A Kubernetes cluster specialized for web workloads by Azure App Service */
4194
4523
  export declare type KubeEnvironment = Resource & {
4195
4524
  /** Extended Location. */
@@ -4213,6 +4542,8 @@ export declare type KubeEnvironment = Resource & {
4213
4542
  readonly defaultDomain?: string;
4214
4543
  /** Static IP of the KubeEnvironment */
4215
4544
  staticIp?: string;
4545
+ /** Type of Kubernetes Environment. Only supported for Container App Environments with value as Managed */
4546
+ environmentType?: string;
4216
4547
  /**
4217
4548
  * Cluster configuration which determines the ARC cluster
4218
4549
  * components types. Eg: Choosing between BuildService kind,
@@ -4225,6 +4556,8 @@ export declare type KubeEnvironment = Resource & {
4225
4556
  * supported
4226
4557
  */
4227
4558
  appLogsConfiguration?: AppLogsConfiguration;
4559
+ /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */
4560
+ containerAppsConfiguration?: ContainerAppsConfiguration;
4228
4561
  aksResourceID?: string;
4229
4562
  };
4230
4563
  /** Static Site ARM resource. */
@@ -4277,11 +4610,10 @@ export declare type StaticSiteARMResource = Resource & {
4277
4610
  * NOTE: This property will not be serialized. It can only be populated by the server.
4278
4611
  */
4279
4612
  readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
4280
- /**
4281
- * The provider that submitted the last deployment to the primary environment of the static site.
4282
- * NOTE: This property will not be serialized. It can only be populated by the server.
4283
- */
4284
- readonly provider?: string;
4613
+ /** The provider that submitted the last deployment to the primary environment of the static site. */
4614
+ provider?: string;
4615
+ /** State indicating the status of the enterprise grade CDN serving traffic to the static web app. */
4616
+ enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
4285
4617
  };
4286
4618
  /** Premier add-on. */
4287
4619
  export declare type PremierAddOn = Resource & {
@@ -5139,6 +5471,8 @@ export declare type KubeEnvironmentPatchResource = ProxyOnlyResource & {
5139
5471
  * supported
5140
5472
  */
5141
5473
  appLogsConfiguration?: AppLogsConfiguration;
5474
+ /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */
5475
+ containerAppsConfiguration?: ContainerAppsConfiguration;
5142
5476
  aksResourceID?: string;
5143
5477
  };
5144
5478
  /** ARM resource for a ApplicationStack. */
@@ -5356,6 +5690,17 @@ export declare type BillingMeter = ProxyOnlyResource & {
5356
5690
  /** Meter Multiplier */
5357
5691
  multiplier?: number;
5358
5692
  };
5693
+ /** A domain specific resource identifier. */
5694
+ export declare type Identifier = ProxyOnlyResource & {
5695
+ /** String representation of the identity. */
5696
+ value?: string;
5697
+ };
5698
+ /** A hostname and its assigned sites */
5699
+ export declare type CustomHostnameSites = ProxyOnlyResource & {
5700
+ customHostname?: string;
5701
+ region?: string;
5702
+ siteResourceIds?: Identifier[];
5703
+ };
5359
5704
  /** Geographical region. */
5360
5705
  export declare type GeoRegion = ProxyOnlyResource & {
5361
5706
  /**
@@ -5374,11 +5719,6 @@ export declare type GeoRegion = ProxyOnlyResource & {
5374
5719
  */
5375
5720
  readonly orgDomain?: string;
5376
5721
  };
5377
- /** A domain specific resource identifier. */
5378
- export declare type Identifier = ProxyOnlyResource & {
5379
- /** String representation of the identity. */
5380
- value?: string;
5381
- };
5382
5722
  /** Premier add-on offer. */
5383
5723
  export declare type PremierAddOnOffer = ProxyOnlyResource & {
5384
5724
  /** Premier add on SKU. */
@@ -5522,11 +5862,10 @@ export declare type StaticSitePatchResource = ProxyOnlyResource & {
5522
5862
  * NOTE: This property will not be serialized. It can only be populated by the server.
5523
5863
  */
5524
5864
  readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
5525
- /**
5526
- * The provider that submitted the last deployment to the primary environment of the static site.
5527
- * NOTE: This property will not be serialized. It can only be populated by the server.
5528
- */
5529
- readonly provider?: string;
5865
+ /** The provider that submitted the last deployment to the primary environment of the static site. */
5866
+ provider?: string;
5867
+ /** State indicating the status of the enterprise grade CDN serving traffic to the static web app. */
5868
+ enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
5530
5869
  };
5531
5870
  /** Static Site User ARM resource. */
5532
5871
  export declare type StaticSiteUserARMResource = ProxyOnlyResource & {
@@ -7255,8 +7594,92 @@ export declare enum KnownRouteType {
7255
7594
  * **STATIC**
7256
7595
  */
7257
7596
  export declare type RouteType = string;
7258
- /** Known values of {@link Enum10} that the service accepts. */
7259
- export declare enum KnownEnum10 {
7597
+ /** Known values of {@link ContainerAppProvisioningState} that the service accepts. */
7598
+ export declare enum KnownContainerAppProvisioningState {
7599
+ InProgress = "InProgress",
7600
+ Succeeded = "Succeeded",
7601
+ Failed = "Failed",
7602
+ Canceled = "Canceled"
7603
+ }
7604
+ /**
7605
+ * Defines values for ContainerAppProvisioningState. \
7606
+ * {@link KnownContainerAppProvisioningState} can be used interchangeably with ContainerAppProvisioningState,
7607
+ * this enum contains the known values that the service supports.
7608
+ * ### Known values supported by the service
7609
+ * **InProgress** \
7610
+ * **Succeeded** \
7611
+ * **Failed** \
7612
+ * **Canceled**
7613
+ */
7614
+ export declare type ContainerAppProvisioningState = string;
7615
+ /** Known values of {@link ActiveRevisionsMode} that the service accepts. */
7616
+ export declare enum KnownActiveRevisionsMode {
7617
+ Multiple = "multiple",
7618
+ Single = "single"
7619
+ }
7620
+ /**
7621
+ * Defines values for ActiveRevisionsMode. \
7622
+ * {@link KnownActiveRevisionsMode} can be used interchangeably with ActiveRevisionsMode,
7623
+ * this enum contains the known values that the service supports.
7624
+ * ### Known values supported by the service
7625
+ * **multiple** \
7626
+ * **single**
7627
+ */
7628
+ export declare type ActiveRevisionsMode = string;
7629
+ /** Known values of {@link IngressTransportMethod} that the service accepts. */
7630
+ export declare enum KnownIngressTransportMethod {
7631
+ Auto = "auto",
7632
+ Http = "http",
7633
+ Http2 = "http2"
7634
+ }
7635
+ /**
7636
+ * Defines values for IngressTransportMethod. \
7637
+ * {@link KnownIngressTransportMethod} can be used interchangeably with IngressTransportMethod,
7638
+ * this enum contains the known values that the service supports.
7639
+ * ### Known values supported by the service
7640
+ * **auto** \
7641
+ * **http** \
7642
+ * **http2**
7643
+ */
7644
+ export declare type IngressTransportMethod = string;
7645
+ /** Known values of {@link RevisionHealthState} that the service accepts. */
7646
+ export declare enum KnownRevisionHealthState {
7647
+ Healthy = "Healthy",
7648
+ Unhealthy = "Unhealthy",
7649
+ None = "None"
7650
+ }
7651
+ /**
7652
+ * Defines values for RevisionHealthState. \
7653
+ * {@link KnownRevisionHealthState} can be used interchangeably with RevisionHealthState,
7654
+ * this enum contains the known values that the service supports.
7655
+ * ### Known values supported by the service
7656
+ * **Healthy** \
7657
+ * **Unhealthy** \
7658
+ * **None**
7659
+ */
7660
+ export declare type RevisionHealthState = string;
7661
+ /** Known values of {@link RevisionProvisioningState} that the service accepts. */
7662
+ export declare enum KnownRevisionProvisioningState {
7663
+ Provisioning = "Provisioning",
7664
+ Provisioned = "Provisioned",
7665
+ Failed = "Failed",
7666
+ Deprovisioning = "Deprovisioning",
7667
+ Deprovisioned = "Deprovisioned"
7668
+ }
7669
+ /**
7670
+ * Defines values for RevisionProvisioningState. \
7671
+ * {@link KnownRevisionProvisioningState} can be used interchangeably with RevisionProvisioningState,
7672
+ * this enum contains the known values that the service supports.
7673
+ * ### Known values supported by the service
7674
+ * **Provisioning** \
7675
+ * **Provisioned** \
7676
+ * **Failed** \
7677
+ * **Deprovisioning** \
7678
+ * **Deprovisioned**
7679
+ */
7680
+ export declare type RevisionProvisioningState = string;
7681
+ /** Known values of {@link Enum15} that the service accepts. */
7682
+ export declare enum KnownEnum15 {
7260
7683
  Windows = "Windows",
7261
7684
  Linux = "Linux",
7262
7685
  WindowsFunctions = "WindowsFunctions",
@@ -7264,8 +7687,8 @@ export declare enum KnownEnum10 {
7264
7687
  All = "All"
7265
7688
  }
7266
7689
  /**
7267
- * Defines values for Enum10. \
7268
- * {@link KnownEnum10} can be used interchangeably with Enum10,
7690
+ * Defines values for Enum15. \
7691
+ * {@link KnownEnum15} can be used interchangeably with Enum15,
7269
7692
  * this enum contains the known values that the service supports.
7270
7693
  * ### Known values supported by the service
7271
7694
  * **Windows** \
@@ -7274,73 +7697,73 @@ export declare enum KnownEnum10 {
7274
7697
  * **LinuxFunctions** \
7275
7698
  * **All**
7276
7699
  */
7277
- export declare type Enum10 = string;
7278
- /** Known values of {@link Enum11} that the service accepts. */
7279
- export declare enum KnownEnum11 {
7700
+ export declare type Enum15 = string;
7701
+ /** Known values of {@link Enum16} that the service accepts. */
7702
+ export declare enum KnownEnum16 {
7280
7703
  Windows = "Windows",
7281
7704
  Linux = "Linux",
7282
7705
  All = "All"
7283
7706
  }
7284
7707
  /**
7285
- * Defines values for Enum11. \
7286
- * {@link KnownEnum11} can be used interchangeably with Enum11,
7708
+ * Defines values for Enum16. \
7709
+ * {@link KnownEnum16} can be used interchangeably with Enum16,
7287
7710
  * this enum contains the known values that the service supports.
7288
7711
  * ### Known values supported by the service
7289
7712
  * **Windows** \
7290
7713
  * **Linux** \
7291
7714
  * **All**
7292
7715
  */
7293
- export declare type Enum11 = string;
7294
- /** Known values of {@link Enum12} that the service accepts. */
7295
- export declare enum KnownEnum12 {
7716
+ export declare type Enum16 = string;
7717
+ /** Known values of {@link Enum17} that the service accepts. */
7718
+ export declare enum KnownEnum17 {
7296
7719
  Windows = "Windows",
7297
7720
  Linux = "Linux",
7298
7721
  All = "All"
7299
7722
  }
7300
7723
  /**
7301
- * Defines values for Enum12. \
7302
- * {@link KnownEnum12} can be used interchangeably with Enum12,
7724
+ * Defines values for Enum17. \
7725
+ * {@link KnownEnum17} can be used interchangeably with Enum17,
7303
7726
  * this enum contains the known values that the service supports.
7304
7727
  * ### Known values supported by the service
7305
7728
  * **Windows** \
7306
7729
  * **Linux** \
7307
7730
  * **All**
7308
7731
  */
7309
- export declare type Enum12 = string;
7310
- /** Known values of {@link Enum13} that the service accepts. */
7311
- export declare enum KnownEnum13 {
7732
+ export declare type Enum17 = string;
7733
+ /** Known values of {@link Enum18} that the service accepts. */
7734
+ export declare enum KnownEnum18 {
7312
7735
  Windows = "Windows",
7313
7736
  Linux = "Linux",
7314
7737
  All = "All"
7315
7738
  }
7316
7739
  /**
7317
- * Defines values for Enum13. \
7318
- * {@link KnownEnum13} can be used interchangeably with Enum13,
7740
+ * Defines values for Enum18. \
7741
+ * {@link KnownEnum18} can be used interchangeably with Enum18,
7319
7742
  * this enum contains the known values that the service supports.
7320
7743
  * ### Known values supported by the service
7321
7744
  * **Windows** \
7322
7745
  * **Linux** \
7323
7746
  * **All**
7324
7747
  */
7325
- export declare type Enum13 = string;
7326
- /** Known values of {@link Enum14} that the service accepts. */
7327
- export declare enum KnownEnum14 {
7748
+ export declare type Enum18 = string;
7749
+ /** Known values of {@link Enum19} that the service accepts. */
7750
+ export declare enum KnownEnum19 {
7328
7751
  Windows = "Windows",
7329
7752
  Linux = "Linux",
7330
7753
  All = "All"
7331
7754
  }
7332
7755
  /**
7333
- * Defines values for Enum14. \
7334
- * {@link KnownEnum14} can be used interchangeably with Enum14,
7756
+ * Defines values for Enum19. \
7757
+ * {@link KnownEnum19} can be used interchangeably with Enum19,
7335
7758
  * this enum contains the known values that the service supports.
7336
7759
  * ### Known values supported by the service
7337
7760
  * **Windows** \
7338
7761
  * **Linux** \
7339
7762
  * **All**
7340
7763
  */
7341
- export declare type Enum14 = string;
7342
- /** Known values of {@link Enum15} that the service accepts. */
7343
- export declare enum KnownEnum15 {
7764
+ export declare type Enum19 = string;
7765
+ /** Known values of {@link Enum20} that the service accepts. */
7766
+ export declare enum KnownEnum20 {
7344
7767
  Windows = "Windows",
7345
7768
  Linux = "Linux",
7346
7769
  WindowsFunctions = "WindowsFunctions",
@@ -7348,8 +7771,8 @@ export declare enum KnownEnum15 {
7348
7771
  All = "All"
7349
7772
  }
7350
7773
  /**
7351
- * Defines values for Enum15. \
7352
- * {@link KnownEnum15} can be used interchangeably with Enum15,
7774
+ * Defines values for Enum20. \
7775
+ * {@link KnownEnum20} can be used interchangeably with Enum20,
7353
7776
  * this enum contains the known values that the service supports.
7354
7777
  * ### Known values supported by the service
7355
7778
  * **Windows** \
@@ -7358,7 +7781,7 @@ export declare enum KnownEnum15 {
7358
7781
  * **LinuxFunctions** \
7359
7782
  * **All**
7360
7783
  */
7361
- export declare type Enum15 = string;
7784
+ export declare type Enum20 = string;
7362
7785
  /** Known values of {@link ResourceScopeType} that the service accepts. */
7363
7786
  export declare enum KnownResourceScopeType {
7364
7787
  ServerFarm = "ServerFarm",
@@ -7467,6 +7890,24 @@ export declare enum KnownValidateResourceTypes {
7467
7890
  * **Microsoft.Web\/hostingEnvironments**
7468
7891
  */
7469
7892
  export declare type ValidateResourceTypes = string;
7893
+ /** Known values of {@link EnterpriseGradeCdnStatus} that the service accepts. */
7894
+ export declare enum KnownEnterpriseGradeCdnStatus {
7895
+ Enabled = "Enabled",
7896
+ Enabling = "Enabling",
7897
+ Disabled = "Disabled",
7898
+ Disabling = "Disabling"
7899
+ }
7900
+ /**
7901
+ * Defines values for EnterpriseGradeCdnStatus. \
7902
+ * {@link KnownEnterpriseGradeCdnStatus} can be used interchangeably with EnterpriseGradeCdnStatus,
7903
+ * this enum contains the known values that the service supports.
7904
+ * ### Known values supported by the service
7905
+ * **Enabled** \
7906
+ * **Enabling** \
7907
+ * **Disabled** \
7908
+ * **Disabling**
7909
+ */
7910
+ export declare type EnterpriseGradeCdnStatus = string;
7470
7911
  /** Known values of {@link BuildStatus} that the service accepts. */
7471
7912
  export declare enum KnownBuildStatus {
7472
7913
  WaitingForDeployment = "WaitingForDeployment",
@@ -7901,6 +8342,11 @@ export declare type DomainsUpdateOwnershipIdentifierResponse = DomainOwnershipId
7901
8342
  export interface DomainsRenewOptionalParams extends coreClient.OperationOptions {
7902
8343
  }
7903
8344
  /** Optional parameters. */
8345
+ export interface DomainsTransferOutOptionalParams extends coreClient.OperationOptions {
8346
+ }
8347
+ /** Contains response data for the transferOut operation. */
8348
+ export declare type DomainsTransferOutResponse = Domain;
8349
+ /** Optional parameters. */
7904
8350
  export interface DomainsListNextOptionalParams extends coreClient.OperationOptions {
7905
8351
  }
7906
8352
  /** Contains response data for the listNext operation. */
@@ -8552,6 +8998,76 @@ export interface CertificatesListByResourceGroupNextOptionalParams extends coreC
8552
8998
  /** Contains response data for the listByResourceGroupNext operation. */
8553
8999
  export declare type CertificatesListByResourceGroupNextResponse = CertificateCollection;
8554
9000
  /** Optional parameters. */
9001
+ export interface ContainerAppsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
9002
+ }
9003
+ /** Contains response data for the listBySubscription operation. */
9004
+ export declare type ContainerAppsListBySubscriptionResponse = ContainerAppCollection;
9005
+ /** Optional parameters. */
9006
+ export interface ContainerAppsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
9007
+ }
9008
+ /** Contains response data for the listByResourceGroup operation. */
9009
+ export declare type ContainerAppsListByResourceGroupResponse = ContainerAppCollection;
9010
+ /** Optional parameters. */
9011
+ export interface ContainerAppsGetOptionalParams extends coreClient.OperationOptions {
9012
+ }
9013
+ /** Contains response data for the get operation. */
9014
+ export declare type ContainerAppsGetResponse = ContainerApp;
9015
+ /** Optional parameters. */
9016
+ export interface ContainerAppsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
9017
+ /** Delay to wait until next poll, in milliseconds. */
9018
+ updateIntervalInMs?: number;
9019
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
9020
+ resumeFrom?: string;
9021
+ }
9022
+ /** Contains response data for the createOrUpdate operation. */
9023
+ export declare type ContainerAppsCreateOrUpdateResponse = ContainerApp;
9024
+ /** Optional parameters. */
9025
+ export interface ContainerAppsDeleteOptionalParams extends coreClient.OperationOptions {
9026
+ /** Delay to wait until next poll, in milliseconds. */
9027
+ updateIntervalInMs?: number;
9028
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
9029
+ resumeFrom?: string;
9030
+ }
9031
+ /** Optional parameters. */
9032
+ export interface ContainerAppsListSecretsOptionalParams extends coreClient.OperationOptions {
9033
+ }
9034
+ /** Contains response data for the listSecrets operation. */
9035
+ export declare type ContainerAppsListSecretsResponse = SecretsCollection;
9036
+ /** Optional parameters. */
9037
+ export interface ContainerAppsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
9038
+ }
9039
+ /** Contains response data for the listBySubscriptionNext operation. */
9040
+ export declare type ContainerAppsListBySubscriptionNextResponse = ContainerAppCollection;
9041
+ /** Optional parameters. */
9042
+ export interface ContainerAppsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
9043
+ }
9044
+ /** Contains response data for the listByResourceGroupNext operation. */
9045
+ export declare type ContainerAppsListByResourceGroupNextResponse = ContainerAppCollection;
9046
+ /** Optional parameters. */
9047
+ export interface ContainerAppsRevisionsListRevisionsOptionalParams extends coreClient.OperationOptions {
9048
+ }
9049
+ /** Contains response data for the listRevisions operation. */
9050
+ export declare type ContainerAppsRevisionsListRevisionsResponse = RevisionCollection;
9051
+ /** Optional parameters. */
9052
+ export interface ContainerAppsRevisionsGetRevisionOptionalParams extends coreClient.OperationOptions {
9053
+ }
9054
+ /** Contains response data for the getRevision operation. */
9055
+ export declare type ContainerAppsRevisionsGetRevisionResponse = Revision;
9056
+ /** Optional parameters. */
9057
+ export interface ContainerAppsRevisionsActivateRevisionOptionalParams extends coreClient.OperationOptions {
9058
+ }
9059
+ /** Optional parameters. */
9060
+ export interface ContainerAppsRevisionsDeactivateRevisionOptionalParams extends coreClient.OperationOptions {
9061
+ }
9062
+ /** Optional parameters. */
9063
+ export interface ContainerAppsRevisionsRestartRevisionOptionalParams extends coreClient.OperationOptions {
9064
+ }
9065
+ /** Optional parameters. */
9066
+ export interface ContainerAppsRevisionsListRevisionsNextOptionalParams extends coreClient.OperationOptions {
9067
+ }
9068
+ /** Contains response data for the listRevisionsNext operation. */
9069
+ export declare type ContainerAppsRevisionsListRevisionsNextResponse = RevisionCollection;
9070
+ /** Optional parameters. */
8555
9071
  export interface DeletedWebAppsListOptionalParams extends coreClient.OperationOptions {
8556
9072
  }
8557
9073
  /** Contains response data for the list operation. */
@@ -8834,28 +9350,28 @@ export interface KubeEnvironmentsListByResourceGroupNextOptionalParams extends c
8834
9350
  export declare type KubeEnvironmentsListByResourceGroupNextResponse = KubeEnvironmentCollection;
8835
9351
  /** Optional parameters. */
8836
9352
  export interface ProviderGetAvailableStacksOptionalParams extends coreClient.OperationOptions {
8837
- osTypeSelected?: Enum10;
9353
+ osTypeSelected?: Enum15;
8838
9354
  }
8839
9355
  /** Contains response data for the getAvailableStacks operation. */
8840
9356
  export declare type ProviderGetAvailableStacksResponse = ApplicationStackCollection;
8841
9357
  /** Optional parameters. */
8842
9358
  export interface ProviderGetFunctionAppStacksOptionalParams extends coreClient.OperationOptions {
8843
9359
  /** Stack OS Type */
8844
- stackOsType?: Enum11;
9360
+ stackOsType?: Enum16;
8845
9361
  }
8846
9362
  /** Contains response data for the getFunctionAppStacks operation. */
8847
9363
  export declare type ProviderGetFunctionAppStacksResponse = FunctionAppStackCollection;
8848
9364
  /** Optional parameters. */
8849
9365
  export interface ProviderGetFunctionAppStacksForLocationOptionalParams extends coreClient.OperationOptions {
8850
9366
  /** Stack OS Type */
8851
- stackOsType?: Enum12;
9367
+ stackOsType?: Enum17;
8852
9368
  }
8853
9369
  /** Contains response data for the getFunctionAppStacksForLocation operation. */
8854
9370
  export declare type ProviderGetFunctionAppStacksForLocationResponse = FunctionAppStackCollection;
8855
9371
  /** Optional parameters. */
8856
9372
  export interface ProviderGetWebAppStacksForLocationOptionalParams extends coreClient.OperationOptions {
8857
9373
  /** Stack OS Type */
8858
- stackOsType?: Enum13;
9374
+ stackOsType?: Enum18;
8859
9375
  }
8860
9376
  /** Contains response data for the getWebAppStacksForLocation operation. */
8861
9377
  export declare type ProviderGetWebAppStacksForLocationResponse = WebAppStackCollection;
@@ -8867,40 +9383,40 @@ export declare type ProviderListOperationsResponse = CsmOperationCollection;
8867
9383
  /** Optional parameters. */
8868
9384
  export interface ProviderGetWebAppStacksOptionalParams extends coreClient.OperationOptions {
8869
9385
  /** Stack OS Type */
8870
- stackOsType?: Enum14;
9386
+ stackOsType?: Enum19;
8871
9387
  }
8872
9388
  /** Contains response data for the getWebAppStacks operation. */
8873
9389
  export declare type ProviderGetWebAppStacksResponse = WebAppStackCollection;
8874
9390
  /** Optional parameters. */
8875
9391
  export interface ProviderGetAvailableStacksOnPremOptionalParams extends coreClient.OperationOptions {
8876
- osTypeSelected?: Enum15;
9392
+ osTypeSelected?: Enum20;
8877
9393
  }
8878
9394
  /** Contains response data for the getAvailableStacksOnPrem operation. */
8879
9395
  export declare type ProviderGetAvailableStacksOnPremResponse = ApplicationStackCollection;
8880
9396
  /** Optional parameters. */
8881
9397
  export interface ProviderGetAvailableStacksNextOptionalParams extends coreClient.OperationOptions {
8882
- osTypeSelected?: Enum10;
9398
+ osTypeSelected?: Enum15;
8883
9399
  }
8884
9400
  /** Contains response data for the getAvailableStacksNext operation. */
8885
9401
  export declare type ProviderGetAvailableStacksNextResponse = ApplicationStackCollection;
8886
9402
  /** Optional parameters. */
8887
9403
  export interface ProviderGetFunctionAppStacksNextOptionalParams extends coreClient.OperationOptions {
8888
9404
  /** Stack OS Type */
8889
- stackOsType?: Enum11;
9405
+ stackOsType?: Enum16;
8890
9406
  }
8891
9407
  /** Contains response data for the getFunctionAppStacksNext operation. */
8892
9408
  export declare type ProviderGetFunctionAppStacksNextResponse = FunctionAppStackCollection;
8893
9409
  /** Optional parameters. */
8894
9410
  export interface ProviderGetFunctionAppStacksForLocationNextOptionalParams extends coreClient.OperationOptions {
8895
9411
  /** Stack OS Type */
8896
- stackOsType?: Enum12;
9412
+ stackOsType?: Enum17;
8897
9413
  }
8898
9414
  /** Contains response data for the getFunctionAppStacksForLocationNext operation. */
8899
9415
  export declare type ProviderGetFunctionAppStacksForLocationNextResponse = FunctionAppStackCollection;
8900
9416
  /** Optional parameters. */
8901
9417
  export interface ProviderGetWebAppStacksForLocationNextOptionalParams extends coreClient.OperationOptions {
8902
9418
  /** Stack OS Type */
8903
- stackOsType?: Enum13;
9419
+ stackOsType?: Enum18;
8904
9420
  }
8905
9421
  /** Contains response data for the getWebAppStacksForLocationNext operation. */
8906
9422
  export declare type ProviderGetWebAppStacksForLocationNextResponse = WebAppStackCollection;
@@ -8912,13 +9428,13 @@ export declare type ProviderListOperationsNextResponse = CsmOperationCollection;
8912
9428
  /** Optional parameters. */
8913
9429
  export interface ProviderGetWebAppStacksNextOptionalParams extends coreClient.OperationOptions {
8914
9430
  /** Stack OS Type */
8915
- stackOsType?: Enum14;
9431
+ stackOsType?: Enum19;
8916
9432
  }
8917
9433
  /** Contains response data for the getWebAppStacksNext operation. */
8918
9434
  export declare type ProviderGetWebAppStacksNextResponse = WebAppStackCollection;
8919
9435
  /** Optional parameters. */
8920
9436
  export interface ProviderGetAvailableStacksOnPremNextOptionalParams extends coreClient.OperationOptions {
8921
- osTypeSelected?: Enum15;
9437
+ osTypeSelected?: Enum20;
8922
9438
  }
8923
9439
  /** Contains response data for the getAvailableStacksOnPremNext operation. */
8924
9440
  export declare type ProviderGetAvailableStacksOnPremNextResponse = ApplicationStackCollection;
@@ -9146,6 +9662,11 @@ export interface CheckNameAvailabilityOptionalParams extends coreClient.Operatio
9146
9662
  /** Contains response data for the checkNameAvailability operation. */
9147
9663
  export declare type CheckNameAvailabilityResponse = ResourceNameAvailability;
9148
9664
  /** Optional parameters. */
9665
+ export interface ListCustomHostNameSitesOptionalParams extends coreClient.OperationOptions {
9666
+ }
9667
+ /** Contains response data for the listCustomHostNameSites operation. */
9668
+ export declare type ListCustomHostNameSitesResponse = CustomHostnameSitesCollection;
9669
+ /** Optional parameters. */
9149
9670
  export interface GetSubscriptionDeploymentLocationsOptionalParams extends coreClient.OperationOptions {
9150
9671
  }
9151
9672
  /** Contains response data for the getSubscriptionDeploymentLocations operation. */
@@ -9209,6 +9730,11 @@ export interface ListBillingMetersNextOptionalParams extends coreClient.Operatio
9209
9730
  /** Contains response data for the listBillingMetersNext operation. */
9210
9731
  export declare type ListBillingMetersNextResponse = BillingMeterCollection;
9211
9732
  /** Optional parameters. */
9733
+ export interface ListCustomHostNameSitesNextOptionalParams extends coreClient.OperationOptions {
9734
+ }
9735
+ /** Contains response data for the listCustomHostNameSitesNext operation. */
9736
+ export declare type ListCustomHostNameSitesNextResponse = CustomHostnameSitesCollection;
9737
+ /** Optional parameters. */
9212
9738
  export interface ListGeoRegionsNextOptionalParams extends coreClient.OperationOptions {
9213
9739
  /** Name of SKU used to filter the regions. */
9214
9740
  sku?: SkuName;
@@ -9684,6 +10210,11 @@ export interface WebAppsGetAuthSettingsOptionalParams extends coreClient.Operati
9684
10210
  /** Contains response data for the getAuthSettings operation. */
9685
10211
  export declare type WebAppsGetAuthSettingsResponse = SiteAuthSettings;
9686
10212
  /** Optional parameters. */
10213
+ export interface WebAppsGetAuthSettingsV2WithoutSecretsOptionalParams extends coreClient.OperationOptions {
10214
+ }
10215
+ /** Contains response data for the getAuthSettingsV2WithoutSecrets operation. */
10216
+ export declare type WebAppsGetAuthSettingsV2WithoutSecretsResponse = SiteAuthSettingsV2;
10217
+ /** Optional parameters. */
9687
10218
  export interface WebAppsUpdateAuthSettingsV2OptionalParams extends coreClient.OperationOptions {
9688
10219
  }
9689
10220
  /** Contains response data for the updateAuthSettingsV2 operation. */