@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
@@ -1790,6 +1790,254 @@ export interface CertificateCollection {
1790
1790
  readonly nextLink?: string;
1791
1791
  }
1792
1792
 
1793
+ /** Container App collection ARM resource. */
1794
+ export interface ContainerAppCollection {
1795
+ /** Collection of resources. */
1796
+ value: ContainerApp[];
1797
+ /**
1798
+ * Link to next page of resources.
1799
+ * NOTE: This property will not be serialized. It can only be populated by the server.
1800
+ */
1801
+ readonly nextLink?: string;
1802
+ }
1803
+
1804
+ /** Non versioned Container App configuration properties that define the mutable settings of a Container app */
1805
+ export interface Configuration {
1806
+ /** Collection of secrets used by a Container app */
1807
+ secrets?: Secret[];
1808
+ /**
1809
+ * ActiveRevisionsMode controls how active revisions are handled for the Container app:
1810
+ * <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>
1811
+ */
1812
+ activeRevisionsMode?: ActiveRevisionsMode;
1813
+ /** Ingress configurations. */
1814
+ ingress?: Ingress;
1815
+ /** Collection of private container registry credentials for containers used by the Container app */
1816
+ registries?: RegistryCredentials[];
1817
+ }
1818
+
1819
+ /** Container App Secret. */
1820
+ export interface Secret {
1821
+ /** Secret Name. */
1822
+ name?: string;
1823
+ /** Secret Value. */
1824
+ value?: string;
1825
+ }
1826
+
1827
+ /** Container App Ingress configuration. */
1828
+ export interface Ingress {
1829
+ /**
1830
+ * Hostname.
1831
+ * NOTE: This property will not be serialized. It can only be populated by the server.
1832
+ */
1833
+ readonly fqdn?: string;
1834
+ /** Bool indicating if app exposes an external http endpoint */
1835
+ external?: boolean;
1836
+ /** Target Port in containers for traffic from ingress */
1837
+ targetPort?: number;
1838
+ /** Ingress transport protocol */
1839
+ transport?: IngressTransportMethod;
1840
+ traffic?: TrafficWeight[];
1841
+ /** Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections */
1842
+ allowInsecure?: boolean;
1843
+ }
1844
+
1845
+ /** Traffic weight assigned to a revision */
1846
+ export interface TrafficWeight {
1847
+ /** Name of a revision */
1848
+ revisionName?: string;
1849
+ /** Traffic weight assigned to a revision */
1850
+ weight?: number;
1851
+ /** Indicates that the traffic weight belongs to a latest stable revision */
1852
+ latestRevision?: boolean;
1853
+ }
1854
+
1855
+ /** Container App Private Registry */
1856
+ export interface RegistryCredentials {
1857
+ /** Container Registry Server */
1858
+ server?: string;
1859
+ /** Container Registry Username */
1860
+ username?: string;
1861
+ /** The name of the Secret that contains the registry login password */
1862
+ passwordSecretRef?: string;
1863
+ }
1864
+
1865
+ /**
1866
+ * Container App versioned application definition.
1867
+ * Defines the desired state of an immutable revision.
1868
+ * Any changes to this section Will result in a new revision being created
1869
+ */
1870
+ export interface Template {
1871
+ /** User friendly suffix that is appended to the revision name */
1872
+ revisionSuffix?: string;
1873
+ /** List of container definitions for the Container App. */
1874
+ containers?: Container[];
1875
+ /** Scaling properties for the Container App. */
1876
+ scale?: Scale;
1877
+ /** Dapr configuration for the Container App. */
1878
+ dapr?: Dapr;
1879
+ }
1880
+
1881
+ /** Container App container definition. */
1882
+ export interface Container {
1883
+ /** Container image tag. */
1884
+ image?: string;
1885
+ /** Custom container name. */
1886
+ name?: string;
1887
+ /** Container start command. */
1888
+ command?: string[];
1889
+ /** Container start command arguments. */
1890
+ args?: string[];
1891
+ /** Container environment variables. */
1892
+ env?: EnvironmentVar[];
1893
+ /** Container resource requirements. */
1894
+ resources?: ContainerResources;
1895
+ }
1896
+
1897
+ /** Container App container environment variable. */
1898
+ export interface EnvironmentVar {
1899
+ /** Environment variable name. */
1900
+ name?: string;
1901
+ /** Non-secret environment variable value. */
1902
+ value?: string;
1903
+ /** Name of the Container App secret from which to pull the environment variable value. */
1904
+ secretRef?: string;
1905
+ }
1906
+
1907
+ /** Container App container resource requirements. */
1908
+ export interface ContainerResources {
1909
+ /** Required CPU in cores, e.g. 0.5 */
1910
+ cpu?: number;
1911
+ /** Required memory, e.g. "250Mb" */
1912
+ memory?: string;
1913
+ }
1914
+
1915
+ /** Container App scaling configurations. */
1916
+ export interface Scale {
1917
+ /** Optional. Minimum number of container replicas. */
1918
+ minReplicas?: number;
1919
+ /** Optional. Maximum number of container replicas. Defaults to 10 if not set. */
1920
+ maxReplicas?: number;
1921
+ /** Scaling rules. */
1922
+ rules?: ScaleRule[];
1923
+ }
1924
+
1925
+ /** Container App container scaling rule. */
1926
+ export interface ScaleRule {
1927
+ /** Scale Rule Name */
1928
+ name?: string;
1929
+ /** Azure Queue based scaling. */
1930
+ azureQueue?: QueueScaleRule;
1931
+ /** Custom scale rule. */
1932
+ custom?: CustomScaleRule;
1933
+ /** HTTP requests based scaling. */
1934
+ http?: HttpScaleRule;
1935
+ }
1936
+
1937
+ /** Container App container Azure Queue based scaling rule. */
1938
+ export interface QueueScaleRule {
1939
+ /** Queue name. */
1940
+ queueName?: string;
1941
+ /** Queue length. */
1942
+ queueLength?: number;
1943
+ /** Authentication secrets for the queue scale rule. */
1944
+ auth?: ScaleRuleAuth[];
1945
+ }
1946
+
1947
+ /** Auth Secrets for Container App Scale Rule */
1948
+ export interface ScaleRuleAuth {
1949
+ /** Name of the Container App secret from which to pull the auth params. */
1950
+ secretRef?: string;
1951
+ /** Trigger Parameter that uses the secret */
1952
+ triggerParameter?: string;
1953
+ }
1954
+
1955
+ /** Container App container Custom scaling rule. */
1956
+ export interface CustomScaleRule {
1957
+ /**
1958
+ * Type of the custom scale rule
1959
+ * eg: azure-servicebus, redis etc.
1960
+ */
1961
+ type?: string;
1962
+ /** Metadata properties to describe custom scale rule. */
1963
+ metadata?: { [propertyName: string]: string };
1964
+ /** Authentication secrets for the custom scale rule. */
1965
+ auth?: ScaleRuleAuth[];
1966
+ }
1967
+
1968
+ /** Container App container Custom scaling rule. */
1969
+ export interface HttpScaleRule {
1970
+ /** Metadata properties to describe http scale rule. */
1971
+ metadata?: { [propertyName: string]: string };
1972
+ /** Authentication secrets for the custom scale rule. */
1973
+ auth?: ScaleRuleAuth[];
1974
+ }
1975
+
1976
+ /** Container App Dapr configuration. */
1977
+ export interface Dapr {
1978
+ /** Boolean indicating if the Dapr side car is enabled */
1979
+ enabled?: boolean;
1980
+ /** Dapr application identifier */
1981
+ appId?: string;
1982
+ /** Port on which the Dapr side car */
1983
+ appPort?: number;
1984
+ /** Collection of Dapr components */
1985
+ components?: DaprComponent[];
1986
+ }
1987
+
1988
+ /** Dapr component configuration */
1989
+ export interface DaprComponent {
1990
+ /** Component name */
1991
+ name?: string;
1992
+ /** Component type */
1993
+ type?: string;
1994
+ /** Component version */
1995
+ version?: string;
1996
+ /** Component metadata */
1997
+ metadata?: DaprMetadata[];
1998
+ }
1999
+
2000
+ /** Container App Dapr component metadata. */
2001
+ export interface DaprMetadata {
2002
+ /** Metadata property name. */
2003
+ name?: string;
2004
+ /** Metadata property value. */
2005
+ value?: string;
2006
+ /** Name of the Container App secret from which to pull the metadata property value. */
2007
+ secretRef?: string;
2008
+ }
2009
+
2010
+ /** Container App Secrets Collection ARM resource. */
2011
+ export interface SecretsCollection {
2012
+ /** Collection of resources. */
2013
+ value: ContainerAppSecret[];
2014
+ }
2015
+
2016
+ /** Container App Secret. */
2017
+ export interface ContainerAppSecret {
2018
+ /**
2019
+ * Secret Name.
2020
+ * NOTE: This property will not be serialized. It can only be populated by the server.
2021
+ */
2022
+ readonly name?: string;
2023
+ /**
2024
+ * Secret Value.
2025
+ * NOTE: This property will not be serialized. It can only be populated by the server.
2026
+ */
2027
+ readonly value?: string;
2028
+ }
2029
+
2030
+ /** Container App Revisions collection ARM resource. */
2031
+ export interface RevisionCollection {
2032
+ /** Collection of resources. */
2033
+ value: Revision[];
2034
+ /**
2035
+ * Link to next page of resources.
2036
+ * NOTE: This property will not be serialized. It can only be populated by the server.
2037
+ */
2038
+ readonly nextLink?: string;
2039
+ }
2040
+
1793
2041
  /** Collection of deleted apps. */
1794
2042
  export interface DeletedWebAppCollection {
1795
2043
  /** Collection of resources. */
@@ -2007,6 +2255,21 @@ export interface LogAnalyticsConfiguration {
2007
2255
  sharedKey?: string;
2008
2256
  }
2009
2257
 
2258
+ export interface ContainerAppsConfiguration {
2259
+ /** Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry */
2260
+ daprAIInstrumentationKey?: string;
2261
+ /** IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges. */
2262
+ platformReservedCidr?: string;
2263
+ /** An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server */
2264
+ platformReservedDnsIP?: string;
2265
+ /** 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. */
2266
+ controlPlaneSubnetResourceId?: string;
2267
+ /** 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. */
2268
+ appSubnetResourceId?: string;
2269
+ /** 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. */
2270
+ dockerBridgeCidr?: string;
2271
+ }
2272
+
2010
2273
  /** Collection of Application Stacks */
2011
2274
  export interface ApplicationStackCollection {
2012
2275
  /** Collection of resources. */
@@ -2550,6 +2813,17 @@ export interface ResourceNameAvailability {
2550
2813
  message?: string;
2551
2814
  }
2552
2815
 
2816
+ /** Collection of custom hostname sites */
2817
+ export interface CustomHostnameSitesCollection {
2818
+ /** Collection of resources. */
2819
+ value: CustomHostnameSites[];
2820
+ /**
2821
+ * Link to next page of resources.
2822
+ * NOTE: This property will not be serialized. It can only be populated by the server.
2823
+ */
2824
+ readonly nextLink?: string;
2825
+ }
2826
+
2553
2827
  /**
2554
2828
  * List of available locations (regions or App Service Environments) for
2555
2829
  * deployment of App Service resources.
@@ -4464,6 +4738,83 @@ export type Certificate = Resource & {
4464
4738
  domainValidationMethod?: string;
4465
4739
  };
4466
4740
 
4741
+ /** Container App. */
4742
+ export type ContainerApp = Resource & {
4743
+ /**
4744
+ * Provisioning state of the Container App.
4745
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4746
+ */
4747
+ readonly provisioningState?: ContainerAppProvisioningState;
4748
+ /** Resource ID of the Container App's KubeEnvironment. */
4749
+ kubeEnvironmentId?: string;
4750
+ /**
4751
+ * Name of the latest revision of the Container App.
4752
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4753
+ */
4754
+ readonly latestRevisionName?: string;
4755
+ /**
4756
+ * Fully Qualified Domain Name of the latest revision of the Container App.
4757
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4758
+ */
4759
+ readonly latestRevisionFqdn?: string;
4760
+ /** Non versioned Container App configuration properties. */
4761
+ configuration?: Configuration;
4762
+ /** Container App versioned application definition. */
4763
+ template?: Template;
4764
+ };
4765
+
4766
+ /** Container App Revision. */
4767
+ export type Revision = Resource & {
4768
+ /**
4769
+ * Timestamp describing when the revision was created
4770
+ * by controller
4771
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4772
+ */
4773
+ readonly createdTime?: Date;
4774
+ /**
4775
+ * Fully qualified domain name of the revision
4776
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4777
+ */
4778
+ readonly fqdn?: string;
4779
+ /**
4780
+ * Container App Revision Template with all possible settings and the
4781
+ * defaults if user did not provide them. The defaults are populated
4782
+ * as they were at the creation time
4783
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4784
+ */
4785
+ readonly template?: Template;
4786
+ /**
4787
+ * Boolean describing if the Revision is Active
4788
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4789
+ */
4790
+ readonly active?: boolean;
4791
+ /**
4792
+ * Number of pods currently running for this revision
4793
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4794
+ */
4795
+ readonly replicas?: number;
4796
+ /**
4797
+ * Traffic weight assigned to this revision
4798
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4799
+ */
4800
+ readonly trafficWeight?: number;
4801
+ /**
4802
+ * Optional Field - Platform Error Message
4803
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4804
+ */
4805
+ readonly provisioningError?: string;
4806
+ /**
4807
+ * Current health State of the revision
4808
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4809
+ */
4810
+ readonly healthState?: RevisionHealthState;
4811
+ /**
4812
+ * Current provisioning State of the revision
4813
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4814
+ */
4815
+ readonly provisioningState?: RevisionProvisioningState;
4816
+ };
4817
+
4467
4818
  /** A Kubernetes cluster specialized for web workloads by Azure App Service */
4468
4819
  export type KubeEnvironment = Resource & {
4469
4820
  /** Extended Location. */
@@ -4487,6 +4838,8 @@ export type KubeEnvironment = Resource & {
4487
4838
  readonly defaultDomain?: string;
4488
4839
  /** Static IP of the KubeEnvironment */
4489
4840
  staticIp?: string;
4841
+ /** Type of Kubernetes Environment. Only supported for Container App Environments with value as Managed */
4842
+ environmentType?: string;
4490
4843
  /**
4491
4844
  * Cluster configuration which determines the ARC cluster
4492
4845
  * components types. Eg: Choosing between BuildService kind,
@@ -4499,6 +4852,8 @@ export type KubeEnvironment = Resource & {
4499
4852
  * supported
4500
4853
  */
4501
4854
  appLogsConfiguration?: AppLogsConfiguration;
4855
+ /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */
4856
+ containerAppsConfiguration?: ContainerAppsConfiguration;
4502
4857
  aksResourceID?: string;
4503
4858
  };
4504
4859
 
@@ -4552,11 +4907,10 @@ export type StaticSiteARMResource = Resource & {
4552
4907
  * NOTE: This property will not be serialized. It can only be populated by the server.
4553
4908
  */
4554
4909
  readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
4555
- /**
4556
- * The provider that submitted the last deployment to the primary environment of the static site.
4557
- * NOTE: This property will not be serialized. It can only be populated by the server.
4558
- */
4559
- readonly provider?: string;
4910
+ /** The provider that submitted the last deployment to the primary environment of the static site. */
4911
+ provider?: string;
4912
+ /** State indicating the status of the enterprise grade CDN serving traffic to the static web app. */
4913
+ enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
4560
4914
  };
4561
4915
 
4562
4916
  /** Premier add-on. */
@@ -5446,6 +5800,8 @@ export type KubeEnvironmentPatchResource = ProxyOnlyResource & {
5446
5800
  * supported
5447
5801
  */
5448
5802
  appLogsConfiguration?: AppLogsConfiguration;
5803
+ /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */
5804
+ containerAppsConfiguration?: ContainerAppsConfiguration;
5449
5805
  aksResourceID?: string;
5450
5806
  };
5451
5807
 
@@ -5673,6 +6029,19 @@ export type BillingMeter = ProxyOnlyResource & {
5673
6029
  multiplier?: number;
5674
6030
  };
5675
6031
 
6032
+ /** A domain specific resource identifier. */
6033
+ export type Identifier = ProxyOnlyResource & {
6034
+ /** String representation of the identity. */
6035
+ value?: string;
6036
+ };
6037
+
6038
+ /** A hostname and its assigned sites */
6039
+ export type CustomHostnameSites = ProxyOnlyResource & {
6040
+ customHostname?: string;
6041
+ region?: string;
6042
+ siteResourceIds?: Identifier[];
6043
+ };
6044
+
5676
6045
  /** Geographical region. */
5677
6046
  export type GeoRegion = ProxyOnlyResource & {
5678
6047
  /**
@@ -5692,12 +6061,6 @@ export type GeoRegion = ProxyOnlyResource & {
5692
6061
  readonly orgDomain?: string;
5693
6062
  };
5694
6063
 
5695
- /** A domain specific resource identifier. */
5696
- export type Identifier = ProxyOnlyResource & {
5697
- /** String representation of the identity. */
5698
- value?: string;
5699
- };
5700
-
5701
6064
  /** Premier add-on offer. */
5702
6065
  export type PremierAddOnOffer = ProxyOnlyResource & {
5703
6066
  /** Premier add on SKU. */
@@ -5849,11 +6212,10 @@ export type StaticSitePatchResource = ProxyOnlyResource & {
5849
6212
  * NOTE: This property will not be serialized. It can only be populated by the server.
5850
6213
  */
5851
6214
  readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
5852
- /**
5853
- * The provider that submitted the last deployment to the primary environment of the static site.
5854
- * NOTE: This property will not be serialized. It can only be populated by the server.
5855
- */
5856
- readonly provider?: string;
6215
+ /** The provider that submitted the last deployment to the primary environment of the static site. */
6216
+ provider?: string;
6217
+ /** State indicating the status of the enterprise grade CDN serving traffic to the static web app. */
6218
+ enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
5857
6219
  };
5858
6220
 
5859
6221
  /** Static Site User ARM resource. */
@@ -7638,8 +8000,102 @@ export enum KnownRouteType {
7638
8000
  */
7639
8001
  export type RouteType = string;
7640
8002
 
7641
- /** Known values of {@link Enum10} that the service accepts. */
7642
- export enum KnownEnum10 {
8003
+ /** Known values of {@link ContainerAppProvisioningState} that the service accepts. */
8004
+ export enum KnownContainerAppProvisioningState {
8005
+ InProgress = "InProgress",
8006
+ Succeeded = "Succeeded",
8007
+ Failed = "Failed",
8008
+ Canceled = "Canceled"
8009
+ }
8010
+
8011
+ /**
8012
+ * Defines values for ContainerAppProvisioningState. \
8013
+ * {@link KnownContainerAppProvisioningState} can be used interchangeably with ContainerAppProvisioningState,
8014
+ * this enum contains the known values that the service supports.
8015
+ * ### Known values supported by the service
8016
+ * **InProgress** \
8017
+ * **Succeeded** \
8018
+ * **Failed** \
8019
+ * **Canceled**
8020
+ */
8021
+ export type ContainerAppProvisioningState = string;
8022
+
8023
+ /** Known values of {@link ActiveRevisionsMode} that the service accepts. */
8024
+ export enum KnownActiveRevisionsMode {
8025
+ Multiple = "multiple",
8026
+ Single = "single"
8027
+ }
8028
+
8029
+ /**
8030
+ * Defines values for ActiveRevisionsMode. \
8031
+ * {@link KnownActiveRevisionsMode} can be used interchangeably with ActiveRevisionsMode,
8032
+ * this enum contains the known values that the service supports.
8033
+ * ### Known values supported by the service
8034
+ * **multiple** \
8035
+ * **single**
8036
+ */
8037
+ export type ActiveRevisionsMode = string;
8038
+
8039
+ /** Known values of {@link IngressTransportMethod} that the service accepts. */
8040
+ export enum KnownIngressTransportMethod {
8041
+ Auto = "auto",
8042
+ Http = "http",
8043
+ Http2 = "http2"
8044
+ }
8045
+
8046
+ /**
8047
+ * Defines values for IngressTransportMethod. \
8048
+ * {@link KnownIngressTransportMethod} can be used interchangeably with IngressTransportMethod,
8049
+ * this enum contains the known values that the service supports.
8050
+ * ### Known values supported by the service
8051
+ * **auto** \
8052
+ * **http** \
8053
+ * **http2**
8054
+ */
8055
+ export type IngressTransportMethod = string;
8056
+
8057
+ /** Known values of {@link RevisionHealthState} that the service accepts. */
8058
+ export enum KnownRevisionHealthState {
8059
+ Healthy = "Healthy",
8060
+ Unhealthy = "Unhealthy",
8061
+ None = "None"
8062
+ }
8063
+
8064
+ /**
8065
+ * Defines values for RevisionHealthState. \
8066
+ * {@link KnownRevisionHealthState} can be used interchangeably with RevisionHealthState,
8067
+ * this enum contains the known values that the service supports.
8068
+ * ### Known values supported by the service
8069
+ * **Healthy** \
8070
+ * **Unhealthy** \
8071
+ * **None**
8072
+ */
8073
+ export type RevisionHealthState = string;
8074
+
8075
+ /** Known values of {@link RevisionProvisioningState} that the service accepts. */
8076
+ export enum KnownRevisionProvisioningState {
8077
+ Provisioning = "Provisioning",
8078
+ Provisioned = "Provisioned",
8079
+ Failed = "Failed",
8080
+ Deprovisioning = "Deprovisioning",
8081
+ Deprovisioned = "Deprovisioned"
8082
+ }
8083
+
8084
+ /**
8085
+ * Defines values for RevisionProvisioningState. \
8086
+ * {@link KnownRevisionProvisioningState} can be used interchangeably with RevisionProvisioningState,
8087
+ * this enum contains the known values that the service supports.
8088
+ * ### Known values supported by the service
8089
+ * **Provisioning** \
8090
+ * **Provisioned** \
8091
+ * **Failed** \
8092
+ * **Deprovisioning** \
8093
+ * **Deprovisioned**
8094
+ */
8095
+ export type RevisionProvisioningState = string;
8096
+
8097
+ /** Known values of {@link Enum15} that the service accepts. */
8098
+ export enum KnownEnum15 {
7643
8099
  Windows = "Windows",
7644
8100
  Linux = "Linux",
7645
8101
  WindowsFunctions = "WindowsFunctions",
@@ -7648,8 +8104,8 @@ export enum KnownEnum10 {
7648
8104
  }
7649
8105
 
7650
8106
  /**
7651
- * Defines values for Enum10. \
7652
- * {@link KnownEnum10} can be used interchangeably with Enum10,
8107
+ * Defines values for Enum15. \
8108
+ * {@link KnownEnum15} can be used interchangeably with Enum15,
7653
8109
  * this enum contains the known values that the service supports.
7654
8110
  * ### Known values supported by the service
7655
8111
  * **Windows** \
@@ -7658,82 +8114,82 @@ export enum KnownEnum10 {
7658
8114
  * **LinuxFunctions** \
7659
8115
  * **All**
7660
8116
  */
7661
- export type Enum10 = string;
8117
+ export type Enum15 = string;
7662
8118
 
7663
- /** Known values of {@link Enum11} that the service accepts. */
7664
- export enum KnownEnum11 {
8119
+ /** Known values of {@link Enum16} that the service accepts. */
8120
+ export enum KnownEnum16 {
7665
8121
  Windows = "Windows",
7666
8122
  Linux = "Linux",
7667
8123
  All = "All"
7668
8124
  }
7669
8125
 
7670
8126
  /**
7671
- * Defines values for Enum11. \
7672
- * {@link KnownEnum11} can be used interchangeably with Enum11,
8127
+ * Defines values for Enum16. \
8128
+ * {@link KnownEnum16} can be used interchangeably with Enum16,
7673
8129
  * this enum contains the known values that the service supports.
7674
8130
  * ### Known values supported by the service
7675
8131
  * **Windows** \
7676
8132
  * **Linux** \
7677
8133
  * **All**
7678
8134
  */
7679
- export type Enum11 = string;
8135
+ export type Enum16 = string;
7680
8136
 
7681
- /** Known values of {@link Enum12} that the service accepts. */
7682
- export enum KnownEnum12 {
8137
+ /** Known values of {@link Enum17} that the service accepts. */
8138
+ export enum KnownEnum17 {
7683
8139
  Windows = "Windows",
7684
8140
  Linux = "Linux",
7685
8141
  All = "All"
7686
8142
  }
7687
8143
 
7688
8144
  /**
7689
- * Defines values for Enum12. \
7690
- * {@link KnownEnum12} can be used interchangeably with Enum12,
8145
+ * Defines values for Enum17. \
8146
+ * {@link KnownEnum17} can be used interchangeably with Enum17,
7691
8147
  * this enum contains the known values that the service supports.
7692
8148
  * ### Known values supported by the service
7693
8149
  * **Windows** \
7694
8150
  * **Linux** \
7695
8151
  * **All**
7696
8152
  */
7697
- export type Enum12 = string;
8153
+ export type Enum17 = string;
7698
8154
 
7699
- /** Known values of {@link Enum13} that the service accepts. */
7700
- export enum KnownEnum13 {
8155
+ /** Known values of {@link Enum18} that the service accepts. */
8156
+ export enum KnownEnum18 {
7701
8157
  Windows = "Windows",
7702
8158
  Linux = "Linux",
7703
8159
  All = "All"
7704
8160
  }
7705
8161
 
7706
8162
  /**
7707
- * Defines values for Enum13. \
7708
- * {@link KnownEnum13} can be used interchangeably with Enum13,
8163
+ * Defines values for Enum18. \
8164
+ * {@link KnownEnum18} can be used interchangeably with Enum18,
7709
8165
  * this enum contains the known values that the service supports.
7710
8166
  * ### Known values supported by the service
7711
8167
  * **Windows** \
7712
8168
  * **Linux** \
7713
8169
  * **All**
7714
8170
  */
7715
- export type Enum13 = string;
8171
+ export type Enum18 = string;
7716
8172
 
7717
- /** Known values of {@link Enum14} that the service accepts. */
7718
- export enum KnownEnum14 {
8173
+ /** Known values of {@link Enum19} that the service accepts. */
8174
+ export enum KnownEnum19 {
7719
8175
  Windows = "Windows",
7720
8176
  Linux = "Linux",
7721
8177
  All = "All"
7722
8178
  }
7723
8179
 
7724
8180
  /**
7725
- * Defines values for Enum14. \
7726
- * {@link KnownEnum14} can be used interchangeably with Enum14,
8181
+ * Defines values for Enum19. \
8182
+ * {@link KnownEnum19} can be used interchangeably with Enum19,
7727
8183
  * this enum contains the known values that the service supports.
7728
8184
  * ### Known values supported by the service
7729
8185
  * **Windows** \
7730
8186
  * **Linux** \
7731
8187
  * **All**
7732
8188
  */
7733
- export type Enum14 = string;
8189
+ export type Enum19 = string;
7734
8190
 
7735
- /** Known values of {@link Enum15} that the service accepts. */
7736
- export enum KnownEnum15 {
8191
+ /** Known values of {@link Enum20} that the service accepts. */
8192
+ export enum KnownEnum20 {
7737
8193
  Windows = "Windows",
7738
8194
  Linux = "Linux",
7739
8195
  WindowsFunctions = "WindowsFunctions",
@@ -7742,8 +8198,8 @@ export enum KnownEnum15 {
7742
8198
  }
7743
8199
 
7744
8200
  /**
7745
- * Defines values for Enum15. \
7746
- * {@link KnownEnum15} can be used interchangeably with Enum15,
8201
+ * Defines values for Enum20. \
8202
+ * {@link KnownEnum20} can be used interchangeably with Enum20,
7747
8203
  * this enum contains the known values that the service supports.
7748
8204
  * ### Known values supported by the service
7749
8205
  * **Windows** \
@@ -7752,7 +8208,7 @@ export enum KnownEnum15 {
7752
8208
  * **LinuxFunctions** \
7753
8209
  * **All**
7754
8210
  */
7755
- export type Enum15 = string;
8211
+ export type Enum20 = string;
7756
8212
 
7757
8213
  /** Known values of {@link ResourceScopeType} that the service accepts. */
7758
8214
  export enum KnownResourceScopeType {
@@ -7872,6 +8328,26 @@ export enum KnownValidateResourceTypes {
7872
8328
  */
7873
8329
  export type ValidateResourceTypes = string;
7874
8330
 
8331
+ /** Known values of {@link EnterpriseGradeCdnStatus} that the service accepts. */
8332
+ export enum KnownEnterpriseGradeCdnStatus {
8333
+ Enabled = "Enabled",
8334
+ Enabling = "Enabling",
8335
+ Disabled = "Disabled",
8336
+ Disabling = "Disabling"
8337
+ }
8338
+
8339
+ /**
8340
+ * Defines values for EnterpriseGradeCdnStatus. \
8341
+ * {@link KnownEnterpriseGradeCdnStatus} can be used interchangeably with EnterpriseGradeCdnStatus,
8342
+ * this enum contains the known values that the service supports.
8343
+ * ### Known values supported by the service
8344
+ * **Enabled** \
8345
+ * **Enabling** \
8346
+ * **Disabled** \
8347
+ * **Disabling**
8348
+ */
8349
+ export type EnterpriseGradeCdnStatus = string;
8350
+
7875
8351
  /** Known values of {@link BuildStatus} that the service accepts. */
7876
8352
  export enum KnownBuildStatus {
7877
8353
  WaitingForDeployment = "WaitingForDeployment",
@@ -8631,6 +9107,13 @@ export type DomainsUpdateOwnershipIdentifierResponse = DomainOwnershipIdentifier
8631
9107
  export interface DomainsRenewOptionalParams
8632
9108
  extends coreClient.OperationOptions {}
8633
9109
 
9110
+ /** Optional parameters. */
9111
+ export interface DomainsTransferOutOptionalParams
9112
+ extends coreClient.OperationOptions {}
9113
+
9114
+ /** Contains response data for the transferOut operation. */
9115
+ export type DomainsTransferOutResponse = Domain;
9116
+
8634
9117
  /** Optional parameters. */
8635
9118
  export interface DomainsListNextOptionalParams
8636
9119
  extends coreClient.OperationOptions {}
@@ -9534,6 +10017,102 @@ export interface CertificatesListByResourceGroupNextOptionalParams
9534
10017
  /** Contains response data for the listByResourceGroupNext operation. */
9535
10018
  export type CertificatesListByResourceGroupNextResponse = CertificateCollection;
9536
10019
 
10020
+ /** Optional parameters. */
10021
+ export interface ContainerAppsListBySubscriptionOptionalParams
10022
+ extends coreClient.OperationOptions {}
10023
+
10024
+ /** Contains response data for the listBySubscription operation. */
10025
+ export type ContainerAppsListBySubscriptionResponse = ContainerAppCollection;
10026
+
10027
+ /** Optional parameters. */
10028
+ export interface ContainerAppsListByResourceGroupOptionalParams
10029
+ extends coreClient.OperationOptions {}
10030
+
10031
+ /** Contains response data for the listByResourceGroup operation. */
10032
+ export type ContainerAppsListByResourceGroupResponse = ContainerAppCollection;
10033
+
10034
+ /** Optional parameters. */
10035
+ export interface ContainerAppsGetOptionalParams
10036
+ extends coreClient.OperationOptions {}
10037
+
10038
+ /** Contains response data for the get operation. */
10039
+ export type ContainerAppsGetResponse = ContainerApp;
10040
+
10041
+ /** Optional parameters. */
10042
+ export interface ContainerAppsCreateOrUpdateOptionalParams
10043
+ extends coreClient.OperationOptions {
10044
+ /** Delay to wait until next poll, in milliseconds. */
10045
+ updateIntervalInMs?: number;
10046
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
10047
+ resumeFrom?: string;
10048
+ }
10049
+
10050
+ /** Contains response data for the createOrUpdate operation. */
10051
+ export type ContainerAppsCreateOrUpdateResponse = ContainerApp;
10052
+
10053
+ /** Optional parameters. */
10054
+ export interface ContainerAppsDeleteOptionalParams
10055
+ extends coreClient.OperationOptions {
10056
+ /** Delay to wait until next poll, in milliseconds. */
10057
+ updateIntervalInMs?: number;
10058
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
10059
+ resumeFrom?: string;
10060
+ }
10061
+
10062
+ /** Optional parameters. */
10063
+ export interface ContainerAppsListSecretsOptionalParams
10064
+ extends coreClient.OperationOptions {}
10065
+
10066
+ /** Contains response data for the listSecrets operation. */
10067
+ export type ContainerAppsListSecretsResponse = SecretsCollection;
10068
+
10069
+ /** Optional parameters. */
10070
+ export interface ContainerAppsListBySubscriptionNextOptionalParams
10071
+ extends coreClient.OperationOptions {}
10072
+
10073
+ /** Contains response data for the listBySubscriptionNext operation. */
10074
+ export type ContainerAppsListBySubscriptionNextResponse = ContainerAppCollection;
10075
+
10076
+ /** Optional parameters. */
10077
+ export interface ContainerAppsListByResourceGroupNextOptionalParams
10078
+ extends coreClient.OperationOptions {}
10079
+
10080
+ /** Contains response data for the listByResourceGroupNext operation. */
10081
+ export type ContainerAppsListByResourceGroupNextResponse = ContainerAppCollection;
10082
+
10083
+ /** Optional parameters. */
10084
+ export interface ContainerAppsRevisionsListRevisionsOptionalParams
10085
+ extends coreClient.OperationOptions {}
10086
+
10087
+ /** Contains response data for the listRevisions operation. */
10088
+ export type ContainerAppsRevisionsListRevisionsResponse = RevisionCollection;
10089
+
10090
+ /** Optional parameters. */
10091
+ export interface ContainerAppsRevisionsGetRevisionOptionalParams
10092
+ extends coreClient.OperationOptions {}
10093
+
10094
+ /** Contains response data for the getRevision operation. */
10095
+ export type ContainerAppsRevisionsGetRevisionResponse = Revision;
10096
+
10097
+ /** Optional parameters. */
10098
+ export interface ContainerAppsRevisionsActivateRevisionOptionalParams
10099
+ extends coreClient.OperationOptions {}
10100
+
10101
+ /** Optional parameters. */
10102
+ export interface ContainerAppsRevisionsDeactivateRevisionOptionalParams
10103
+ extends coreClient.OperationOptions {}
10104
+
10105
+ /** Optional parameters. */
10106
+ export interface ContainerAppsRevisionsRestartRevisionOptionalParams
10107
+ extends coreClient.OperationOptions {}
10108
+
10109
+ /** Optional parameters. */
10110
+ export interface ContainerAppsRevisionsListRevisionsNextOptionalParams
10111
+ extends coreClient.OperationOptions {}
10112
+
10113
+ /** Contains response data for the listRevisionsNext operation. */
10114
+ export type ContainerAppsRevisionsListRevisionsNextResponse = RevisionCollection;
10115
+
9537
10116
  /** Optional parameters. */
9538
10117
  export interface DeletedWebAppsListOptionalParams
9539
10118
  extends coreClient.OperationOptions {}
@@ -9919,7 +10498,7 @@ export type KubeEnvironmentsListByResourceGroupNextResponse = KubeEnvironmentCol
9919
10498
  /** Optional parameters. */
9920
10499
  export interface ProviderGetAvailableStacksOptionalParams
9921
10500
  extends coreClient.OperationOptions {
9922
- osTypeSelected?: Enum10;
10501
+ osTypeSelected?: Enum15;
9923
10502
  }
9924
10503
 
9925
10504
  /** Contains response data for the getAvailableStacks operation. */
@@ -9929,7 +10508,7 @@ export type ProviderGetAvailableStacksResponse = ApplicationStackCollection;
9929
10508
  export interface ProviderGetFunctionAppStacksOptionalParams
9930
10509
  extends coreClient.OperationOptions {
9931
10510
  /** Stack OS Type */
9932
- stackOsType?: Enum11;
10511
+ stackOsType?: Enum16;
9933
10512
  }
9934
10513
 
9935
10514
  /** Contains response data for the getFunctionAppStacks operation. */
@@ -9939,7 +10518,7 @@ export type ProviderGetFunctionAppStacksResponse = FunctionAppStackCollection;
9939
10518
  export interface ProviderGetFunctionAppStacksForLocationOptionalParams
9940
10519
  extends coreClient.OperationOptions {
9941
10520
  /** Stack OS Type */
9942
- stackOsType?: Enum12;
10521
+ stackOsType?: Enum17;
9943
10522
  }
9944
10523
 
9945
10524
  /** Contains response data for the getFunctionAppStacksForLocation operation. */
@@ -9949,7 +10528,7 @@ export type ProviderGetFunctionAppStacksForLocationResponse = FunctionAppStackCo
9949
10528
  export interface ProviderGetWebAppStacksForLocationOptionalParams
9950
10529
  extends coreClient.OperationOptions {
9951
10530
  /** Stack OS Type */
9952
- stackOsType?: Enum13;
10531
+ stackOsType?: Enum18;
9953
10532
  }
9954
10533
 
9955
10534
  /** Contains response data for the getWebAppStacksForLocation operation. */
@@ -9966,7 +10545,7 @@ export type ProviderListOperationsResponse = CsmOperationCollection;
9966
10545
  export interface ProviderGetWebAppStacksOptionalParams
9967
10546
  extends coreClient.OperationOptions {
9968
10547
  /** Stack OS Type */
9969
- stackOsType?: Enum14;
10548
+ stackOsType?: Enum19;
9970
10549
  }
9971
10550
 
9972
10551
  /** Contains response data for the getWebAppStacks operation. */
@@ -9975,7 +10554,7 @@ export type ProviderGetWebAppStacksResponse = WebAppStackCollection;
9975
10554
  /** Optional parameters. */
9976
10555
  export interface ProviderGetAvailableStacksOnPremOptionalParams
9977
10556
  extends coreClient.OperationOptions {
9978
- osTypeSelected?: Enum15;
10557
+ osTypeSelected?: Enum20;
9979
10558
  }
9980
10559
 
9981
10560
  /** Contains response data for the getAvailableStacksOnPrem operation. */
@@ -9984,7 +10563,7 @@ export type ProviderGetAvailableStacksOnPremResponse = ApplicationStackCollectio
9984
10563
  /** Optional parameters. */
9985
10564
  export interface ProviderGetAvailableStacksNextOptionalParams
9986
10565
  extends coreClient.OperationOptions {
9987
- osTypeSelected?: Enum10;
10566
+ osTypeSelected?: Enum15;
9988
10567
  }
9989
10568
 
9990
10569
  /** Contains response data for the getAvailableStacksNext operation. */
@@ -9994,7 +10573,7 @@ export type ProviderGetAvailableStacksNextResponse = ApplicationStackCollection;
9994
10573
  export interface ProviderGetFunctionAppStacksNextOptionalParams
9995
10574
  extends coreClient.OperationOptions {
9996
10575
  /** Stack OS Type */
9997
- stackOsType?: Enum11;
10576
+ stackOsType?: Enum16;
9998
10577
  }
9999
10578
 
10000
10579
  /** Contains response data for the getFunctionAppStacksNext operation. */
@@ -10004,7 +10583,7 @@ export type ProviderGetFunctionAppStacksNextResponse = FunctionAppStackCollectio
10004
10583
  export interface ProviderGetFunctionAppStacksForLocationNextOptionalParams
10005
10584
  extends coreClient.OperationOptions {
10006
10585
  /** Stack OS Type */
10007
- stackOsType?: Enum12;
10586
+ stackOsType?: Enum17;
10008
10587
  }
10009
10588
 
10010
10589
  /** Contains response data for the getFunctionAppStacksForLocationNext operation. */
@@ -10014,7 +10593,7 @@ export type ProviderGetFunctionAppStacksForLocationNextResponse = FunctionAppSta
10014
10593
  export interface ProviderGetWebAppStacksForLocationNextOptionalParams
10015
10594
  extends coreClient.OperationOptions {
10016
10595
  /** Stack OS Type */
10017
- stackOsType?: Enum13;
10596
+ stackOsType?: Enum18;
10018
10597
  }
10019
10598
 
10020
10599
  /** Contains response data for the getWebAppStacksForLocationNext operation. */
@@ -10031,7 +10610,7 @@ export type ProviderListOperationsNextResponse = CsmOperationCollection;
10031
10610
  export interface ProviderGetWebAppStacksNextOptionalParams
10032
10611
  extends coreClient.OperationOptions {
10033
10612
  /** Stack OS Type */
10034
- stackOsType?: Enum14;
10613
+ stackOsType?: Enum19;
10035
10614
  }
10036
10615
 
10037
10616
  /** Contains response data for the getWebAppStacksNext operation. */
@@ -10040,7 +10619,7 @@ export type ProviderGetWebAppStacksNextResponse = WebAppStackCollection;
10040
10619
  /** Optional parameters. */
10041
10620
  export interface ProviderGetAvailableStacksOnPremNextOptionalParams
10042
10621
  extends coreClient.OperationOptions {
10043
- osTypeSelected?: Enum15;
10622
+ osTypeSelected?: Enum20;
10044
10623
  }
10045
10624
 
10046
10625
  /** Contains response data for the getAvailableStacksOnPremNext operation. */
@@ -10349,6 +10928,13 @@ export interface CheckNameAvailabilityOptionalParams
10349
10928
  /** Contains response data for the checkNameAvailability operation. */
10350
10929
  export type CheckNameAvailabilityResponse = ResourceNameAvailability;
10351
10930
 
10931
+ /** Optional parameters. */
10932
+ export interface ListCustomHostNameSitesOptionalParams
10933
+ extends coreClient.OperationOptions {}
10934
+
10935
+ /** Contains response data for the listCustomHostNameSites operation. */
10936
+ export type ListCustomHostNameSitesResponse = CustomHostnameSitesCollection;
10937
+
10352
10938
  /** Optional parameters. */
10353
10939
  export interface GetSubscriptionDeploymentLocationsOptionalParams
10354
10940
  extends coreClient.OperationOptions {}
@@ -10431,6 +11017,13 @@ export interface ListBillingMetersNextOptionalParams
10431
11017
  /** Contains response data for the listBillingMetersNext operation. */
10432
11018
  export type ListBillingMetersNextResponse = BillingMeterCollection;
10433
11019
 
11020
+ /** Optional parameters. */
11021
+ export interface ListCustomHostNameSitesNextOptionalParams
11022
+ extends coreClient.OperationOptions {}
11023
+
11024
+ /** Contains response data for the listCustomHostNameSitesNext operation. */
11025
+ export type ListCustomHostNameSitesNextResponse = CustomHostnameSitesCollection;
11026
+
10434
11027
  /** Optional parameters. */
10435
11028
  export interface ListGeoRegionsNextOptionalParams
10436
11029
  extends coreClient.OperationOptions {
@@ -11082,6 +11675,13 @@ export interface WebAppsGetAuthSettingsOptionalParams
11082
11675
  /** Contains response data for the getAuthSettings operation. */
11083
11676
  export type WebAppsGetAuthSettingsResponse = SiteAuthSettings;
11084
11677
 
11678
+ /** Optional parameters. */
11679
+ export interface WebAppsGetAuthSettingsV2WithoutSecretsOptionalParams
11680
+ extends coreClient.OperationOptions {}
11681
+
11682
+ /** Contains response data for the getAuthSettingsV2WithoutSecrets operation. */
11683
+ export type WebAppsGetAuthSettingsV2WithoutSecretsResponse = SiteAuthSettingsV2;
11684
+
11085
11685
  /** Optional parameters. */
11086
11686
  export interface WebAppsUpdateAuthSettingsV2OptionalParams
11087
11687
  extends coreClient.OperationOptions {}