@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.
- package/CHANGELOG.md +106 -0
- package/LICENSE +1 -1
- package/dist/index.js +6685 -4683
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +588 -57
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +82 -37
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +28 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +1085 -16
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +2 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +17 -2
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/containerApps.d.ts +97 -0
- package/dist-esm/src/operations/containerApps.d.ts.map +1 -0
- package/dist-esm/src/operations/containerApps.js +444 -0
- package/dist-esm/src/operations/containerApps.js.map +1 -0
- package/dist-esm/src/operations/containerAppsRevisions.d.ts +70 -0
- package/dist-esm/src/operations/containerAppsRevisions.d.ts.map +1 -0
- package/dist-esm/src/operations/containerAppsRevisions.js +259 -0
- package/dist-esm/src/operations/containerAppsRevisions.js.map +1 -0
- package/dist-esm/src/operations/domains.d.ts +8 -1
- package/dist-esm/src/operations/domains.d.ts.map +1 -1
- package/dist-esm/src/operations/domains.js +33 -0
- package/dist-esm/src/operations/domains.js.map +1 -1
- package/dist-esm/src/operations/index.d.ts +2 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -1
- package/dist-esm/src/operations/index.js +2 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operations/webApps.d.ts +8 -1
- package/dist-esm/src/operations/webApps.d.ts.map +1 -1
- package/dist-esm/src/operations/webApps.js +30 -0
- package/dist-esm/src/operations/webApps.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/containerApps.d.ts +61 -0
- package/dist-esm/src/operationsInterfaces/containerApps.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerApps.js +9 -0
- package/dist-esm/src/operationsInterfaces/containerApps.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerAppsRevisions.d.ts +45 -0
- package/dist-esm/src/operationsInterfaces/containerAppsRevisions.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerAppsRevisions.js +9 -0
- package/dist-esm/src/operationsInterfaces/containerAppsRevisions.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/domains.d.ts +8 -1
- package/dist-esm/src/operationsInterfaces/domains.d.ts.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.d.ts +2 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +2 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/webApps.d.ts +8 -1
- package/dist-esm/src/operationsInterfaces/webApps.d.ts.map +1 -1
- package/dist-esm/src/webSiteManagementClient.d.ts +23 -2
- package/dist-esm/src/webSiteManagementClient.d.ts.map +1 -1
- package/dist-esm/src/webSiteManagementClient.js +114 -12
- package/dist-esm/src/webSiteManagementClient.js.map +1 -1
- package/package.json +1 -1
- package/review/arm-appservice.api.md +468 -26
- package/src/models/index.ts +658 -58
- package/src/models/mappers.ts +1145 -20
- package/src/models/parameters.ts +19 -1
- package/src/operations/containerApps.ts +580 -0
- package/src/operations/containerAppsRevisions.ts +356 -0
- package/src/operations/domains.ts +44 -0
- package/src/operations/index.ts +2 -0
- package/src/operations/webApps.ts +41 -0
- package/src/operationsInterfaces/containerApps.ts +116 -0
- package/src/operationsInterfaces/containerAppsRevisions.ts +86 -0
- package/src/operationsInterfaces/domains.ts +14 -1
- package/src/operationsInterfaces/index.ts +2 -0
- package/src/operationsInterfaces/webApps.ts +13 -0
- package/src/webSiteManagementClient.ts +126 -2
- package/types/arm-appservice.d.ts +790 -52
- package/types/tsdoc-metadata.json +1 -1
|
@@ -20,6 +20,9 @@ export interface AbnormalTimePeriod {
|
|
|
20
20
|
startTime?: Date;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
// @public
|
|
24
|
+
export type ActiveRevisionsMode = string;
|
|
25
|
+
|
|
23
26
|
// @public
|
|
24
27
|
export interface Address {
|
|
25
28
|
address1: string;
|
|
@@ -1861,6 +1864,14 @@ export interface CloningInfo {
|
|
|
1861
1864
|
// @public
|
|
1862
1865
|
export type ComputeModeOptions = "Shared" | "Dedicated" | "Dynamic";
|
|
1863
1866
|
|
|
1867
|
+
// @public
|
|
1868
|
+
export interface Configuration {
|
|
1869
|
+
activeRevisionsMode?: ActiveRevisionsMode;
|
|
1870
|
+
ingress?: Ingress;
|
|
1871
|
+
registries?: RegistryCredentials[];
|
|
1872
|
+
secrets?: Secret[];
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1864
1875
|
// @public
|
|
1865
1876
|
export type ConnectionStringDictionary = ProxyOnlyResource & {
|
|
1866
1877
|
properties?: {
|
|
@@ -1897,6 +1908,162 @@ export interface Contact {
|
|
|
1897
1908
|
phone: string;
|
|
1898
1909
|
}
|
|
1899
1910
|
|
|
1911
|
+
// @public
|
|
1912
|
+
export interface Container {
|
|
1913
|
+
args?: string[];
|
|
1914
|
+
command?: string[];
|
|
1915
|
+
env?: EnvironmentVar[];
|
|
1916
|
+
image?: string;
|
|
1917
|
+
name?: string;
|
|
1918
|
+
resources?: ContainerResources;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
// @public
|
|
1922
|
+
export type ContainerApp = Resource & {
|
|
1923
|
+
readonly provisioningState?: ContainerAppProvisioningState;
|
|
1924
|
+
kubeEnvironmentId?: string;
|
|
1925
|
+
readonly latestRevisionName?: string;
|
|
1926
|
+
readonly latestRevisionFqdn?: string;
|
|
1927
|
+
configuration?: Configuration;
|
|
1928
|
+
template?: Template;
|
|
1929
|
+
};
|
|
1930
|
+
|
|
1931
|
+
// @public
|
|
1932
|
+
export interface ContainerAppCollection {
|
|
1933
|
+
readonly nextLink?: string;
|
|
1934
|
+
value: ContainerApp[];
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
// @public
|
|
1938
|
+
export type ContainerAppProvisioningState = string;
|
|
1939
|
+
|
|
1940
|
+
// @public
|
|
1941
|
+
export interface ContainerApps {
|
|
1942
|
+
beginCreateOrUpdate(resourceGroupName: string, name: string, containerAppEnvelope: ContainerApp, options?: ContainerAppsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<ContainerAppsCreateOrUpdateResponse>, ContainerAppsCreateOrUpdateResponse>>;
|
|
1943
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, name: string, containerAppEnvelope: ContainerApp, options?: ContainerAppsCreateOrUpdateOptionalParams): Promise<ContainerAppsCreateOrUpdateResponse>;
|
|
1944
|
+
beginDelete(resourceGroupName: string, name: string, options?: ContainerAppsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
1945
|
+
beginDeleteAndWait(resourceGroupName: string, name: string, options?: ContainerAppsDeleteOptionalParams): Promise<void>;
|
|
1946
|
+
get(resourceGroupName: string, name: string, options?: ContainerAppsGetOptionalParams): Promise<ContainerAppsGetResponse>;
|
|
1947
|
+
listByResourceGroup(resourceGroupName: string, options?: ContainerAppsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ContainerApp>;
|
|
1948
|
+
listBySubscription(options?: ContainerAppsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ContainerApp>;
|
|
1949
|
+
listSecrets(name: string, options?: ContainerAppsListSecretsOptionalParams): Promise<ContainerAppsListSecretsResponse>;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
// @public (undocumented)
|
|
1953
|
+
export interface ContainerAppsConfiguration {
|
|
1954
|
+
appSubnetResourceId?: string;
|
|
1955
|
+
controlPlaneSubnetResourceId?: string;
|
|
1956
|
+
daprAIInstrumentationKey?: string;
|
|
1957
|
+
dockerBridgeCidr?: string;
|
|
1958
|
+
platformReservedCidr?: string;
|
|
1959
|
+
platformReservedDnsIP?: string;
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
// @public
|
|
1963
|
+
export interface ContainerAppsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1964
|
+
resumeFrom?: string;
|
|
1965
|
+
updateIntervalInMs?: number;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
// @public
|
|
1969
|
+
export type ContainerAppsCreateOrUpdateResponse = ContainerApp;
|
|
1970
|
+
|
|
1971
|
+
// @public
|
|
1972
|
+
export interface ContainerAppsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1973
|
+
resumeFrom?: string;
|
|
1974
|
+
updateIntervalInMs?: number;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
// @public
|
|
1978
|
+
export interface ContainerAppSecret {
|
|
1979
|
+
readonly name?: string;
|
|
1980
|
+
readonly value?: string;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
// @public
|
|
1984
|
+
export interface ContainerAppsGetOptionalParams extends coreClient.OperationOptions {
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
// @public
|
|
1988
|
+
export type ContainerAppsGetResponse = ContainerApp;
|
|
1989
|
+
|
|
1990
|
+
// @public
|
|
1991
|
+
export interface ContainerAppsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
// @public
|
|
1995
|
+
export type ContainerAppsListByResourceGroupNextResponse = ContainerAppCollection;
|
|
1996
|
+
|
|
1997
|
+
// @public
|
|
1998
|
+
export interface ContainerAppsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
// @public
|
|
2002
|
+
export type ContainerAppsListByResourceGroupResponse = ContainerAppCollection;
|
|
2003
|
+
|
|
2004
|
+
// @public
|
|
2005
|
+
export interface ContainerAppsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
// @public
|
|
2009
|
+
export type ContainerAppsListBySubscriptionNextResponse = ContainerAppCollection;
|
|
2010
|
+
|
|
2011
|
+
// @public
|
|
2012
|
+
export interface ContainerAppsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
// @public
|
|
2016
|
+
export type ContainerAppsListBySubscriptionResponse = ContainerAppCollection;
|
|
2017
|
+
|
|
2018
|
+
// @public
|
|
2019
|
+
export interface ContainerAppsListSecretsOptionalParams extends coreClient.OperationOptions {
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
// @public
|
|
2023
|
+
export type ContainerAppsListSecretsResponse = SecretsCollection;
|
|
2024
|
+
|
|
2025
|
+
// @public
|
|
2026
|
+
export interface ContainerAppsRevisions {
|
|
2027
|
+
activateRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsActivateRevisionOptionalParams): Promise<void>;
|
|
2028
|
+
deactivateRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsDeactivateRevisionOptionalParams): Promise<void>;
|
|
2029
|
+
getRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsGetRevisionOptionalParams): Promise<ContainerAppsRevisionsGetRevisionResponse>;
|
|
2030
|
+
listRevisions(resourceGroupName: string, containerAppName: string, options?: ContainerAppsRevisionsListRevisionsOptionalParams): PagedAsyncIterableIterator<Revision>;
|
|
2031
|
+
restartRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsRestartRevisionOptionalParams): Promise<void>;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
// @public
|
|
2035
|
+
export interface ContainerAppsRevisionsActivateRevisionOptionalParams extends coreClient.OperationOptions {
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
// @public
|
|
2039
|
+
export interface ContainerAppsRevisionsDeactivateRevisionOptionalParams extends coreClient.OperationOptions {
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
// @public
|
|
2043
|
+
export interface ContainerAppsRevisionsGetRevisionOptionalParams extends coreClient.OperationOptions {
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
// @public
|
|
2047
|
+
export type ContainerAppsRevisionsGetRevisionResponse = Revision;
|
|
2048
|
+
|
|
2049
|
+
// @public
|
|
2050
|
+
export interface ContainerAppsRevisionsListRevisionsNextOptionalParams extends coreClient.OperationOptions {
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
// @public
|
|
2054
|
+
export type ContainerAppsRevisionsListRevisionsNextResponse = RevisionCollection;
|
|
2055
|
+
|
|
2056
|
+
// @public
|
|
2057
|
+
export interface ContainerAppsRevisionsListRevisionsOptionalParams extends coreClient.OperationOptions {
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
// @public
|
|
2061
|
+
export type ContainerAppsRevisionsListRevisionsResponse = RevisionCollection;
|
|
2062
|
+
|
|
2063
|
+
// @public
|
|
2064
|
+
export interface ContainerAppsRevisionsRestartRevisionOptionalParams extends coreClient.OperationOptions {
|
|
2065
|
+
}
|
|
2066
|
+
|
|
1900
2067
|
// @public (undocumented)
|
|
1901
2068
|
export interface ContainerCpuStatistics {
|
|
1902
2069
|
// (undocumented)
|
|
@@ -1971,6 +2138,12 @@ export interface ContainerNetworkInterfaceStatistics {
|
|
|
1971
2138
|
txPackets?: number;
|
|
1972
2139
|
}
|
|
1973
2140
|
|
|
2141
|
+
// @public
|
|
2142
|
+
export interface ContainerResources {
|
|
2143
|
+
cpu?: number;
|
|
2144
|
+
memory?: string;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
1974
2147
|
// @public (undocumented)
|
|
1975
2148
|
export interface ContainerThrottlingData {
|
|
1976
2149
|
// (undocumented)
|
|
@@ -2117,6 +2290,19 @@ export type CustomHostnameAnalysisResult = ProxyOnlyResource & {
|
|
|
2117
2290
|
// @public
|
|
2118
2291
|
export type CustomHostNameDnsRecordType = "CName" | "A";
|
|
2119
2292
|
|
|
2293
|
+
// @public
|
|
2294
|
+
export type CustomHostnameSites = ProxyOnlyResource & {
|
|
2295
|
+
customHostname?: string;
|
|
2296
|
+
region?: string;
|
|
2297
|
+
siteResourceIds?: Identifier[];
|
|
2298
|
+
};
|
|
2299
|
+
|
|
2300
|
+
// @public
|
|
2301
|
+
export interface CustomHostnameSitesCollection {
|
|
2302
|
+
readonly nextLink?: string;
|
|
2303
|
+
value: CustomHostnameSites[];
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2120
2306
|
// @public
|
|
2121
2307
|
export interface CustomOpenIdConnectProvider {
|
|
2122
2308
|
enabled?: boolean;
|
|
@@ -2124,6 +2310,38 @@ export interface CustomOpenIdConnectProvider {
|
|
|
2124
2310
|
registration?: OpenIdConnectRegistration;
|
|
2125
2311
|
}
|
|
2126
2312
|
|
|
2313
|
+
// @public
|
|
2314
|
+
export interface CustomScaleRule {
|
|
2315
|
+
auth?: ScaleRuleAuth[];
|
|
2316
|
+
metadata?: {
|
|
2317
|
+
[propertyName: string]: string;
|
|
2318
|
+
};
|
|
2319
|
+
type?: string;
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
// @public
|
|
2323
|
+
export interface Dapr {
|
|
2324
|
+
appId?: string;
|
|
2325
|
+
appPort?: number;
|
|
2326
|
+
components?: DaprComponent[];
|
|
2327
|
+
enabled?: boolean;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
// @public
|
|
2331
|
+
export interface DaprComponent {
|
|
2332
|
+
metadata?: DaprMetadata[];
|
|
2333
|
+
name?: string;
|
|
2334
|
+
type?: string;
|
|
2335
|
+
version?: string;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
// @public
|
|
2339
|
+
export interface DaprMetadata {
|
|
2340
|
+
name?: string;
|
|
2341
|
+
secretRef?: string;
|
|
2342
|
+
value?: string;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2127
2345
|
// @public
|
|
2128
2346
|
export interface DatabaseBackupSetting {
|
|
2129
2347
|
connectionString?: string;
|
|
@@ -2829,6 +3047,7 @@ export interface Domains {
|
|
|
2829
3047
|
listOwnershipIdentifiers(resourceGroupName: string, domainName: string, options?: DomainsListOwnershipIdentifiersOptionalParams): PagedAsyncIterableIterator<DomainOwnershipIdentifier>;
|
|
2830
3048
|
listRecommendations(parameters: DomainRecommendationSearchParameters, options?: DomainsListRecommendationsOptionalParams): PagedAsyncIterableIterator<NameIdentifier>;
|
|
2831
3049
|
renew(resourceGroupName: string, domainName: string, options?: DomainsRenewOptionalParams): Promise<void>;
|
|
3050
|
+
transferOut(resourceGroupName: string, domainName: string, options?: DomainsTransferOutOptionalParams): Promise<DomainsTransferOutResponse>;
|
|
2832
3051
|
update(resourceGroupName: string, domainName: string, domain: DomainPatchResource, options?: DomainsUpdateOptionalParams): Promise<DomainsUpdateResponse>;
|
|
2833
3052
|
updateOwnershipIdentifier(resourceGroupName: string, domainName: string, name: string, domainOwnershipIdentifier: DomainOwnershipIdentifier, options?: DomainsUpdateOwnershipIdentifierOptionalParams): Promise<DomainsUpdateOwnershipIdentifierResponse>;
|
|
2834
3053
|
}
|
|
@@ -2949,6 +3168,13 @@ export interface DomainsRenewOptionalParams extends coreClient.OperationOptions
|
|
|
2949
3168
|
// @public
|
|
2950
3169
|
export type DomainStatus = "Active" | "Awaiting" | "Cancelled" | "Confiscated" | "Disabled" | "Excluded" | "Expired" | "Failed" | "Held" | "Locked" | "Parked" | "Pending" | "Reserved" | "Reverted" | "Suspended" | "Transferred" | "Unknown" | "Unlocked" | "Unparked" | "Updated" | "JsonConverterFailed";
|
|
2951
3170
|
|
|
3171
|
+
// @public
|
|
3172
|
+
export interface DomainsTransferOutOptionalParams extends coreClient.OperationOptions {
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3175
|
+
// @public
|
|
3176
|
+
export type DomainsTransferOutResponse = Domain;
|
|
3177
|
+
|
|
2952
3178
|
// @public
|
|
2953
3179
|
export interface DomainsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
2954
3180
|
}
|
|
@@ -2986,22 +3212,32 @@ export interface EndpointDetail {
|
|
|
2986
3212
|
}
|
|
2987
3213
|
|
|
2988
3214
|
// @public
|
|
2989
|
-
export type
|
|
3215
|
+
export type EnterpriseGradeCdnStatus = string;
|
|
2990
3216
|
|
|
2991
3217
|
// @public
|
|
2992
|
-
export type
|
|
3218
|
+
export type Enum15 = string;
|
|
2993
3219
|
|
|
2994
3220
|
// @public
|
|
2995
|
-
export type
|
|
3221
|
+
export type Enum16 = string;
|
|
2996
3222
|
|
|
2997
3223
|
// @public
|
|
2998
|
-
export type
|
|
3224
|
+
export type Enum17 = string;
|
|
2999
3225
|
|
|
3000
3226
|
// @public
|
|
3001
|
-
export type
|
|
3227
|
+
export type Enum18 = string;
|
|
3002
3228
|
|
|
3003
3229
|
// @public
|
|
3004
|
-
export type
|
|
3230
|
+
export type Enum19 = string;
|
|
3231
|
+
|
|
3232
|
+
// @public
|
|
3233
|
+
export type Enum20 = string;
|
|
3234
|
+
|
|
3235
|
+
// @public
|
|
3236
|
+
export interface EnvironmentVar {
|
|
3237
|
+
name?: string;
|
|
3238
|
+
secretRef?: string;
|
|
3239
|
+
value?: string;
|
|
3240
|
+
}
|
|
3005
3241
|
|
|
3006
3242
|
// @public
|
|
3007
3243
|
export interface ErrorEntity {
|
|
@@ -3374,6 +3610,14 @@ export interface HttpLogsConfig {
|
|
|
3374
3610
|
fileSystem?: FileSystemHttpLogsConfig;
|
|
3375
3611
|
}
|
|
3376
3612
|
|
|
3613
|
+
// @public
|
|
3614
|
+
export interface HttpScaleRule {
|
|
3615
|
+
auth?: ScaleRuleAuth[];
|
|
3616
|
+
metadata?: {
|
|
3617
|
+
[propertyName: string]: string;
|
|
3618
|
+
};
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3377
3621
|
// @public
|
|
3378
3622
|
export interface HttpSettings {
|
|
3379
3623
|
forwardProxy?: ForwardProxy;
|
|
@@ -3458,6 +3702,20 @@ export interface InboundEnvironmentEndpointCollection {
|
|
|
3458
3702
|
value: InboundEnvironmentEndpoint[];
|
|
3459
3703
|
}
|
|
3460
3704
|
|
|
3705
|
+
// @public
|
|
3706
|
+
export interface Ingress {
|
|
3707
|
+
allowInsecure?: boolean;
|
|
3708
|
+
external?: boolean;
|
|
3709
|
+
readonly fqdn?: string;
|
|
3710
|
+
targetPort?: number;
|
|
3711
|
+
// (undocumented)
|
|
3712
|
+
traffic?: TrafficWeight[];
|
|
3713
|
+
transport?: IngressTransportMethod;
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
// @public
|
|
3717
|
+
export type IngressTransportMethod = string;
|
|
3718
|
+
|
|
3461
3719
|
// @public
|
|
3462
3720
|
export type InsightStatus = "Critical" | "Warning" | "Info" | "Success" | "None";
|
|
3463
3721
|
|
|
@@ -3505,6 +3763,14 @@ export interface KeyValuePairStringObject {
|
|
|
3505
3763
|
// @public
|
|
3506
3764
|
export type KeyVaultSecretStatus = "Initialized" | "WaitingOnCertificateOrder" | "Succeeded" | "CertificateOrderFailed" | "OperationNotPermittedOnKeyVault" | "AzureServiceUnauthorizedToAccessKeyVault" | "KeyVaultDoesNotExist" | "KeyVaultSecretDoesNotExist" | "UnknownError" | "ExternalPrivateKey" | "Unknown";
|
|
3507
3765
|
|
|
3766
|
+
// @public
|
|
3767
|
+
export enum KnownActiveRevisionsMode {
|
|
3768
|
+
// (undocumented)
|
|
3769
|
+
Multiple = "multiple",
|
|
3770
|
+
// (undocumented)
|
|
3771
|
+
Single = "single"
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3508
3774
|
// @public
|
|
3509
3775
|
export enum KnownAppServiceCertificateOrderPatchResourcePropertiesAppServiceCertificateNotRenewableReasonsItem {
|
|
3510
3776
|
// (undocumented)
|
|
@@ -3563,6 +3829,18 @@ export enum KnownCheckNameResourceTypes {
|
|
|
3563
3829
|
Slot = "Slot"
|
|
3564
3830
|
}
|
|
3565
3831
|
|
|
3832
|
+
// @public
|
|
3833
|
+
export enum KnownContainerAppProvisioningState {
|
|
3834
|
+
// (undocumented)
|
|
3835
|
+
Canceled = "Canceled",
|
|
3836
|
+
// (undocumented)
|
|
3837
|
+
Failed = "Failed",
|
|
3838
|
+
// (undocumented)
|
|
3839
|
+
InProgress = "InProgress",
|
|
3840
|
+
// (undocumented)
|
|
3841
|
+
Succeeded = "Succeeded"
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3566
3844
|
// @public
|
|
3567
3845
|
export enum KnownCustomDomainStatus {
|
|
3568
3846
|
// (undocumented)
|
|
@@ -3612,7 +3890,19 @@ export enum KnownDomainPropertiesDomainNotRenewableReasonsItem {
|
|
|
3612
3890
|
}
|
|
3613
3891
|
|
|
3614
3892
|
// @public
|
|
3615
|
-
export enum
|
|
3893
|
+
export enum KnownEnterpriseGradeCdnStatus {
|
|
3894
|
+
// (undocumented)
|
|
3895
|
+
Disabled = "Disabled",
|
|
3896
|
+
// (undocumented)
|
|
3897
|
+
Disabling = "Disabling",
|
|
3898
|
+
// (undocumented)
|
|
3899
|
+
Enabled = "Enabled",
|
|
3900
|
+
// (undocumented)
|
|
3901
|
+
Enabling = "Enabling"
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
// @public
|
|
3905
|
+
export enum KnownEnum15 {
|
|
3616
3906
|
// (undocumented)
|
|
3617
3907
|
All = "All",
|
|
3618
3908
|
// (undocumented)
|
|
@@ -3626,7 +3916,7 @@ export enum KnownEnum10 {
|
|
|
3626
3916
|
}
|
|
3627
3917
|
|
|
3628
3918
|
// @public
|
|
3629
|
-
export enum
|
|
3919
|
+
export enum KnownEnum16 {
|
|
3630
3920
|
// (undocumented)
|
|
3631
3921
|
All = "All",
|
|
3632
3922
|
// (undocumented)
|
|
@@ -3636,7 +3926,7 @@ export enum KnownEnum11 {
|
|
|
3636
3926
|
}
|
|
3637
3927
|
|
|
3638
3928
|
// @public
|
|
3639
|
-
export enum
|
|
3929
|
+
export enum KnownEnum17 {
|
|
3640
3930
|
// (undocumented)
|
|
3641
3931
|
All = "All",
|
|
3642
3932
|
// (undocumented)
|
|
@@ -3646,7 +3936,7 @@ export enum KnownEnum12 {
|
|
|
3646
3936
|
}
|
|
3647
3937
|
|
|
3648
3938
|
// @public
|
|
3649
|
-
export enum
|
|
3939
|
+
export enum KnownEnum18 {
|
|
3650
3940
|
// (undocumented)
|
|
3651
3941
|
All = "All",
|
|
3652
3942
|
// (undocumented)
|
|
@@ -3656,7 +3946,7 @@ export enum KnownEnum13 {
|
|
|
3656
3946
|
}
|
|
3657
3947
|
|
|
3658
3948
|
// @public
|
|
3659
|
-
export enum
|
|
3949
|
+
export enum KnownEnum19 {
|
|
3660
3950
|
// (undocumented)
|
|
3661
3951
|
All = "All",
|
|
3662
3952
|
// (undocumented)
|
|
@@ -3666,7 +3956,7 @@ export enum KnownEnum14 {
|
|
|
3666
3956
|
}
|
|
3667
3957
|
|
|
3668
3958
|
// @public
|
|
3669
|
-
export enum
|
|
3959
|
+
export enum KnownEnum20 {
|
|
3670
3960
|
// (undocumented)
|
|
3671
3961
|
All = "All",
|
|
3672
3962
|
// (undocumented)
|
|
@@ -3697,6 +3987,16 @@ export enum KnownInAvailabilityReasonType {
|
|
|
3697
3987
|
Invalid = "Invalid"
|
|
3698
3988
|
}
|
|
3699
3989
|
|
|
3990
|
+
// @public
|
|
3991
|
+
export enum KnownIngressTransportMethod {
|
|
3992
|
+
// (undocumented)
|
|
3993
|
+
Auto = "auto",
|
|
3994
|
+
// (undocumented)
|
|
3995
|
+
Http = "http",
|
|
3996
|
+
// (undocumented)
|
|
3997
|
+
Http2 = "http2"
|
|
3998
|
+
}
|
|
3999
|
+
|
|
3700
4000
|
// @public
|
|
3701
4001
|
export enum KnownIpFilterTag {
|
|
3702
4002
|
// (undocumented)
|
|
@@ -3739,6 +4039,30 @@ export enum KnownResourceScopeType {
|
|
|
3739
4039
|
WebSite = "WebSite"
|
|
3740
4040
|
}
|
|
3741
4041
|
|
|
4042
|
+
// @public
|
|
4043
|
+
export enum KnownRevisionHealthState {
|
|
4044
|
+
// (undocumented)
|
|
4045
|
+
Healthy = "Healthy",
|
|
4046
|
+
// (undocumented)
|
|
4047
|
+
None = "None",
|
|
4048
|
+
// (undocumented)
|
|
4049
|
+
Unhealthy = "Unhealthy"
|
|
4050
|
+
}
|
|
4051
|
+
|
|
4052
|
+
// @public
|
|
4053
|
+
export enum KnownRevisionProvisioningState {
|
|
4054
|
+
// (undocumented)
|
|
4055
|
+
Deprovisioned = "Deprovisioned",
|
|
4056
|
+
// (undocumented)
|
|
4057
|
+
Deprovisioning = "Deprovisioning",
|
|
4058
|
+
// (undocumented)
|
|
4059
|
+
Failed = "Failed",
|
|
4060
|
+
// (undocumented)
|
|
4061
|
+
Provisioned = "Provisioned",
|
|
4062
|
+
// (undocumented)
|
|
4063
|
+
Provisioning = "Provisioning"
|
|
4064
|
+
}
|
|
4065
|
+
|
|
3742
4066
|
// @public
|
|
3743
4067
|
export enum KnownRouteType {
|
|
3744
4068
|
// (undocumented)
|
|
@@ -3847,8 +4171,10 @@ export type KubeEnvironment = Resource & {
|
|
|
3847
4171
|
internalLoadBalancerEnabled?: boolean;
|
|
3848
4172
|
readonly defaultDomain?: string;
|
|
3849
4173
|
staticIp?: string;
|
|
4174
|
+
environmentType?: string;
|
|
3850
4175
|
arcConfiguration?: ArcConfiguration;
|
|
3851
4176
|
appLogsConfiguration?: AppLogsConfiguration;
|
|
4177
|
+
containerAppsConfiguration?: ContainerAppsConfiguration;
|
|
3852
4178
|
aksResourceID?: string;
|
|
3853
4179
|
};
|
|
3854
4180
|
|
|
@@ -3867,6 +4193,7 @@ export type KubeEnvironmentPatchResource = ProxyOnlyResource & {
|
|
|
3867
4193
|
staticIp?: string;
|
|
3868
4194
|
arcConfiguration?: ArcConfiguration;
|
|
3869
4195
|
appLogsConfiguration?: AppLogsConfiguration;
|
|
4196
|
+
containerAppsConfiguration?: ContainerAppsConfiguration;
|
|
3870
4197
|
aksResourceID?: string;
|
|
3871
4198
|
};
|
|
3872
4199
|
|
|
@@ -3987,6 +4314,20 @@ export interface ListBillingMetersOptionalParams extends coreClient.OperationOpt
|
|
|
3987
4314
|
// @public
|
|
3988
4315
|
export type ListBillingMetersResponse = BillingMeterCollection;
|
|
3989
4316
|
|
|
4317
|
+
// @public
|
|
4318
|
+
export interface ListCustomHostNameSitesNextOptionalParams extends coreClient.OperationOptions {
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4321
|
+
// @public
|
|
4322
|
+
export type ListCustomHostNameSitesNextResponse = CustomHostnameSitesCollection;
|
|
4323
|
+
|
|
4324
|
+
// @public
|
|
4325
|
+
export interface ListCustomHostNameSitesOptionalParams extends coreClient.OperationOptions {
|
|
4326
|
+
}
|
|
4327
|
+
|
|
4328
|
+
// @public
|
|
4329
|
+
export type ListCustomHostNameSitesResponse = CustomHostnameSitesCollection;
|
|
4330
|
+
|
|
3990
4331
|
// @public
|
|
3991
4332
|
export interface ListGeoRegionsNextOptionalParams extends coreClient.OperationOptions {
|
|
3992
4333
|
linuxDynamicWorkersEnabled?: boolean;
|
|
@@ -4561,7 +4902,7 @@ export interface Provider {
|
|
|
4561
4902
|
// @public
|
|
4562
4903
|
export interface ProviderGetAvailableStacksNextOptionalParams extends coreClient.OperationOptions {
|
|
4563
4904
|
// (undocumented)
|
|
4564
|
-
osTypeSelected?:
|
|
4905
|
+
osTypeSelected?: Enum15;
|
|
4565
4906
|
}
|
|
4566
4907
|
|
|
4567
4908
|
// @public
|
|
@@ -4570,7 +4911,7 @@ export type ProviderGetAvailableStacksNextResponse = ApplicationStackCollection;
|
|
|
4570
4911
|
// @public
|
|
4571
4912
|
export interface ProviderGetAvailableStacksOnPremNextOptionalParams extends coreClient.OperationOptions {
|
|
4572
4913
|
// (undocumented)
|
|
4573
|
-
osTypeSelected?:
|
|
4914
|
+
osTypeSelected?: Enum20;
|
|
4574
4915
|
}
|
|
4575
4916
|
|
|
4576
4917
|
// @public
|
|
@@ -4579,7 +4920,7 @@ export type ProviderGetAvailableStacksOnPremNextResponse = ApplicationStackColle
|
|
|
4579
4920
|
// @public
|
|
4580
4921
|
export interface ProviderGetAvailableStacksOnPremOptionalParams extends coreClient.OperationOptions {
|
|
4581
4922
|
// (undocumented)
|
|
4582
|
-
osTypeSelected?:
|
|
4923
|
+
osTypeSelected?: Enum20;
|
|
4583
4924
|
}
|
|
4584
4925
|
|
|
4585
4926
|
// @public
|
|
@@ -4588,7 +4929,7 @@ export type ProviderGetAvailableStacksOnPremResponse = ApplicationStackCollectio
|
|
|
4588
4929
|
// @public
|
|
4589
4930
|
export interface ProviderGetAvailableStacksOptionalParams extends coreClient.OperationOptions {
|
|
4590
4931
|
// (undocumented)
|
|
4591
|
-
osTypeSelected?:
|
|
4932
|
+
osTypeSelected?: Enum15;
|
|
4592
4933
|
}
|
|
4593
4934
|
|
|
4594
4935
|
// @public
|
|
@@ -4596,7 +4937,7 @@ export type ProviderGetAvailableStacksResponse = ApplicationStackCollection;
|
|
|
4596
4937
|
|
|
4597
4938
|
// @public
|
|
4598
4939
|
export interface ProviderGetFunctionAppStacksForLocationNextOptionalParams extends coreClient.OperationOptions {
|
|
4599
|
-
stackOsType?:
|
|
4940
|
+
stackOsType?: Enum17;
|
|
4600
4941
|
}
|
|
4601
4942
|
|
|
4602
4943
|
// @public
|
|
@@ -4604,7 +4945,7 @@ export type ProviderGetFunctionAppStacksForLocationNextResponse = FunctionAppSta
|
|
|
4604
4945
|
|
|
4605
4946
|
// @public
|
|
4606
4947
|
export interface ProviderGetFunctionAppStacksForLocationOptionalParams extends coreClient.OperationOptions {
|
|
4607
|
-
stackOsType?:
|
|
4948
|
+
stackOsType?: Enum17;
|
|
4608
4949
|
}
|
|
4609
4950
|
|
|
4610
4951
|
// @public
|
|
@@ -4612,7 +4953,7 @@ export type ProviderGetFunctionAppStacksForLocationResponse = FunctionAppStackCo
|
|
|
4612
4953
|
|
|
4613
4954
|
// @public
|
|
4614
4955
|
export interface ProviderGetFunctionAppStacksNextOptionalParams extends coreClient.OperationOptions {
|
|
4615
|
-
stackOsType?:
|
|
4956
|
+
stackOsType?: Enum16;
|
|
4616
4957
|
}
|
|
4617
4958
|
|
|
4618
4959
|
// @public
|
|
@@ -4620,7 +4961,7 @@ export type ProviderGetFunctionAppStacksNextResponse = FunctionAppStackCollectio
|
|
|
4620
4961
|
|
|
4621
4962
|
// @public
|
|
4622
4963
|
export interface ProviderGetFunctionAppStacksOptionalParams extends coreClient.OperationOptions {
|
|
4623
|
-
stackOsType?:
|
|
4964
|
+
stackOsType?: Enum16;
|
|
4624
4965
|
}
|
|
4625
4966
|
|
|
4626
4967
|
// @public
|
|
@@ -4628,7 +4969,7 @@ export type ProviderGetFunctionAppStacksResponse = FunctionAppStackCollection;
|
|
|
4628
4969
|
|
|
4629
4970
|
// @public
|
|
4630
4971
|
export interface ProviderGetWebAppStacksForLocationNextOptionalParams extends coreClient.OperationOptions {
|
|
4631
|
-
stackOsType?:
|
|
4972
|
+
stackOsType?: Enum18;
|
|
4632
4973
|
}
|
|
4633
4974
|
|
|
4634
4975
|
// @public
|
|
@@ -4636,7 +4977,7 @@ export type ProviderGetWebAppStacksForLocationNextResponse = WebAppStackCollecti
|
|
|
4636
4977
|
|
|
4637
4978
|
// @public
|
|
4638
4979
|
export interface ProviderGetWebAppStacksForLocationOptionalParams extends coreClient.OperationOptions {
|
|
4639
|
-
stackOsType?:
|
|
4980
|
+
stackOsType?: Enum18;
|
|
4640
4981
|
}
|
|
4641
4982
|
|
|
4642
4983
|
// @public
|
|
@@ -4644,7 +4985,7 @@ export type ProviderGetWebAppStacksForLocationResponse = WebAppStackCollection;
|
|
|
4644
4985
|
|
|
4645
4986
|
// @public
|
|
4646
4987
|
export interface ProviderGetWebAppStacksNextOptionalParams extends coreClient.OperationOptions {
|
|
4647
|
-
stackOsType?:
|
|
4988
|
+
stackOsType?: Enum19;
|
|
4648
4989
|
}
|
|
4649
4990
|
|
|
4650
4991
|
// @public
|
|
@@ -4652,7 +4993,7 @@ export type ProviderGetWebAppStacksNextResponse = WebAppStackCollection;
|
|
|
4652
4993
|
|
|
4653
4994
|
// @public
|
|
4654
4995
|
export interface ProviderGetWebAppStacksOptionalParams extends coreClient.OperationOptions {
|
|
4655
|
-
stackOsType?:
|
|
4996
|
+
stackOsType?: Enum19;
|
|
4656
4997
|
}
|
|
4657
4998
|
|
|
4658
4999
|
// @public
|
|
@@ -4728,6 +5069,13 @@ export interface QueryUtterancesResults {
|
|
|
4728
5069
|
results?: QueryUtterancesResult[];
|
|
4729
5070
|
}
|
|
4730
5071
|
|
|
5072
|
+
// @public
|
|
5073
|
+
export interface QueueScaleRule {
|
|
5074
|
+
auth?: ScaleRuleAuth[];
|
|
5075
|
+
queueLength?: number;
|
|
5076
|
+
queueName?: string;
|
|
5077
|
+
}
|
|
5078
|
+
|
|
4731
5079
|
// @public
|
|
4732
5080
|
export interface RampUpRule {
|
|
4733
5081
|
actionHostName?: string;
|
|
@@ -4952,6 +5300,13 @@ export interface RecommendationsResetAllFiltersOptionalParams extends coreClient
|
|
|
4952
5300
|
// @public
|
|
4953
5301
|
export type RedundancyMode = "None" | "Manual" | "Failover" | "ActiveActive" | "GeoRedundant";
|
|
4954
5302
|
|
|
5303
|
+
// @public
|
|
5304
|
+
export interface RegistryCredentials {
|
|
5305
|
+
passwordSecretRef?: string;
|
|
5306
|
+
server?: string;
|
|
5307
|
+
username?: string;
|
|
5308
|
+
}
|
|
5309
|
+
|
|
4955
5310
|
// @public
|
|
4956
5311
|
export type ReissueCertificateOrderRequest = ProxyOnlyResource & {
|
|
4957
5312
|
keySize?: number;
|
|
@@ -5201,6 +5556,31 @@ export type RestoreRequest = ProxyOnlyResource & {
|
|
|
5201
5556
|
hostingEnvironment?: string;
|
|
5202
5557
|
};
|
|
5203
5558
|
|
|
5559
|
+
// @public
|
|
5560
|
+
export type Revision = Resource & {
|
|
5561
|
+
readonly createdTime?: Date;
|
|
5562
|
+
readonly fqdn?: string;
|
|
5563
|
+
readonly template?: Template;
|
|
5564
|
+
readonly active?: boolean;
|
|
5565
|
+
readonly replicas?: number;
|
|
5566
|
+
readonly trafficWeight?: number;
|
|
5567
|
+
readonly provisioningError?: string;
|
|
5568
|
+
readonly healthState?: RevisionHealthState;
|
|
5569
|
+
readonly provisioningState?: RevisionProvisioningState;
|
|
5570
|
+
};
|
|
5571
|
+
|
|
5572
|
+
// @public
|
|
5573
|
+
export interface RevisionCollection {
|
|
5574
|
+
readonly nextLink?: string;
|
|
5575
|
+
value: Revision[];
|
|
5576
|
+
}
|
|
5577
|
+
|
|
5578
|
+
// @public
|
|
5579
|
+
export type RevisionHealthState = string;
|
|
5580
|
+
|
|
5581
|
+
// @public
|
|
5582
|
+
export type RevisionProvisioningState = string;
|
|
5583
|
+
|
|
5204
5584
|
// @public
|
|
5205
5585
|
export type RouteType = string;
|
|
5206
5586
|
|
|
@@ -5211,9 +5591,41 @@ export interface SampleUtterance {
|
|
|
5211
5591
|
text?: string;
|
|
5212
5592
|
}
|
|
5213
5593
|
|
|
5594
|
+
// @public
|
|
5595
|
+
export interface Scale {
|
|
5596
|
+
maxReplicas?: number;
|
|
5597
|
+
minReplicas?: number;
|
|
5598
|
+
rules?: ScaleRule[];
|
|
5599
|
+
}
|
|
5600
|
+
|
|
5601
|
+
// @public
|
|
5602
|
+
export interface ScaleRule {
|
|
5603
|
+
azureQueue?: QueueScaleRule;
|
|
5604
|
+
custom?: CustomScaleRule;
|
|
5605
|
+
http?: HttpScaleRule;
|
|
5606
|
+
name?: string;
|
|
5607
|
+
}
|
|
5608
|
+
|
|
5609
|
+
// @public
|
|
5610
|
+
export interface ScaleRuleAuth {
|
|
5611
|
+
secretRef?: string;
|
|
5612
|
+
triggerParameter?: string;
|
|
5613
|
+
}
|
|
5614
|
+
|
|
5214
5615
|
// @public
|
|
5215
5616
|
export type ScmType = string;
|
|
5216
5617
|
|
|
5618
|
+
// @public
|
|
5619
|
+
export interface Secret {
|
|
5620
|
+
name?: string;
|
|
5621
|
+
value?: string;
|
|
5622
|
+
}
|
|
5623
|
+
|
|
5624
|
+
// @public
|
|
5625
|
+
export interface SecretsCollection {
|
|
5626
|
+
value: ContainerAppSecret[];
|
|
5627
|
+
}
|
|
5628
|
+
|
|
5217
5629
|
// @public
|
|
5218
5630
|
export interface ServiceSpecification {
|
|
5219
5631
|
// (undocumented)
|
|
@@ -5857,7 +6269,8 @@ export type StaticSiteARMResource = Resource & {
|
|
|
5857
6269
|
readonly contentDistributionEndpoint?: string;
|
|
5858
6270
|
readonly keyVaultReferenceIdentity?: string;
|
|
5859
6271
|
readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
|
|
5860
|
-
|
|
6272
|
+
provider?: string;
|
|
6273
|
+
enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
|
|
5861
6274
|
};
|
|
5862
6275
|
|
|
5863
6276
|
// @public
|
|
@@ -5943,7 +6356,8 @@ export type StaticSitePatchResource = ProxyOnlyResource & {
|
|
|
5943
6356
|
readonly contentDistributionEndpoint?: string;
|
|
5944
6357
|
readonly keyVaultReferenceIdentity?: string;
|
|
5945
6358
|
readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
|
|
5946
|
-
|
|
6359
|
+
provider?: string;
|
|
6360
|
+
enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
|
|
5947
6361
|
};
|
|
5948
6362
|
|
|
5949
6363
|
// @public
|
|
@@ -6569,6 +6983,14 @@ export type SwiftVirtualNetwork = ProxyOnlyResource & {
|
|
|
6569
6983
|
swiftSupported?: boolean;
|
|
6570
6984
|
};
|
|
6571
6985
|
|
|
6986
|
+
// @public
|
|
6987
|
+
export interface Template {
|
|
6988
|
+
containers?: Container[];
|
|
6989
|
+
dapr?: Dapr;
|
|
6990
|
+
revisionSuffix?: string;
|
|
6991
|
+
scale?: Scale;
|
|
6992
|
+
}
|
|
6993
|
+
|
|
6572
6994
|
// @public
|
|
6573
6995
|
export interface TldLegalAgreement {
|
|
6574
6996
|
agreementKey: string;
|
|
@@ -6650,6 +7072,13 @@ export interface TopLevelDomainsListOptionalParams extends coreClient.OperationO
|
|
|
6650
7072
|
// @public
|
|
6651
7073
|
export type TopLevelDomainsListResponse = TopLevelDomainCollection;
|
|
6652
7074
|
|
|
7075
|
+
// @public
|
|
7076
|
+
export interface TrafficWeight {
|
|
7077
|
+
latestRevision?: boolean;
|
|
7078
|
+
revisionName?: string;
|
|
7079
|
+
weight?: number;
|
|
7080
|
+
}
|
|
7081
|
+
|
|
6653
7082
|
// @public
|
|
6654
7083
|
export type TriggeredJobHistory = ProxyOnlyResource & {
|
|
6655
7084
|
runs?: TriggeredJobRun[];
|
|
@@ -7117,6 +7546,7 @@ export interface WebApps {
|
|
|
7117
7546
|
getAuthSettingsSlot(resourceGroupName: string, name: string, slot: string, options?: WebAppsGetAuthSettingsSlotOptionalParams): Promise<WebAppsGetAuthSettingsSlotResponse>;
|
|
7118
7547
|
getAuthSettingsV2(resourceGroupName: string, name: string, options?: WebAppsGetAuthSettingsV2OptionalParams): Promise<WebAppsGetAuthSettingsV2Response>;
|
|
7119
7548
|
getAuthSettingsV2Slot(resourceGroupName: string, name: string, slot: string, options?: WebAppsGetAuthSettingsV2SlotOptionalParams): Promise<WebAppsGetAuthSettingsV2SlotResponse>;
|
|
7549
|
+
getAuthSettingsV2WithoutSecrets(resourceGroupName: string, name: string, options?: WebAppsGetAuthSettingsV2WithoutSecretsOptionalParams): Promise<WebAppsGetAuthSettingsV2WithoutSecretsResponse>;
|
|
7120
7550
|
getBackupConfiguration(resourceGroupName: string, name: string, options?: WebAppsGetBackupConfigurationOptionalParams): Promise<WebAppsGetBackupConfigurationResponse>;
|
|
7121
7551
|
getBackupConfigurationSlot(resourceGroupName: string, name: string, slot: string, options?: WebAppsGetBackupConfigurationSlotOptionalParams): Promise<WebAppsGetBackupConfigurationSlotResponse>;
|
|
7122
7552
|
getBackupStatus(resourceGroupName: string, name: string, backupId: string, options?: WebAppsGetBackupStatusOptionalParams): Promise<WebAppsGetBackupStatusResponse>;
|
|
@@ -8005,6 +8435,13 @@ export interface WebAppsGetAuthSettingsV2SlotOptionalParams extends coreClient.O
|
|
|
8005
8435
|
// @public
|
|
8006
8436
|
export type WebAppsGetAuthSettingsV2SlotResponse = SiteAuthSettingsV2;
|
|
8007
8437
|
|
|
8438
|
+
// @public
|
|
8439
|
+
export interface WebAppsGetAuthSettingsV2WithoutSecretsOptionalParams extends coreClient.OperationOptions {
|
|
8440
|
+
}
|
|
8441
|
+
|
|
8442
|
+
// @public
|
|
8443
|
+
export type WebAppsGetAuthSettingsV2WithoutSecretsResponse = SiteAuthSettingsV2;
|
|
8444
|
+
|
|
8008
8445
|
// @public
|
|
8009
8446
|
export interface WebAppsGetBackupConfigurationOptionalParams extends coreClient.OperationOptions {
|
|
8010
8447
|
}
|
|
@@ -10535,6 +10972,10 @@ export class WebSiteManagementClient extends coreClient.ServiceClient {
|
|
|
10535
10972
|
certificates: Certificates;
|
|
10536
10973
|
checkNameAvailability(name: string, typeParam: CheckNameResourceTypes, options?: CheckNameAvailabilityOptionalParams): Promise<CheckNameAvailabilityResponse>;
|
|
10537
10974
|
// (undocumented)
|
|
10975
|
+
containerApps: ContainerApps;
|
|
10976
|
+
// (undocumented)
|
|
10977
|
+
containerAppsRevisions: ContainerAppsRevisions;
|
|
10978
|
+
// (undocumented)
|
|
10538
10979
|
deletedWebApps: DeletedWebApps;
|
|
10539
10980
|
// (undocumented)
|
|
10540
10981
|
diagnostics: Diagnostics;
|
|
@@ -10550,6 +10991,7 @@ export class WebSiteManagementClient extends coreClient.ServiceClient {
|
|
|
10550
10991
|
// (undocumented)
|
|
10551
10992
|
kubeEnvironments: KubeEnvironments;
|
|
10552
10993
|
listBillingMeters(options?: ListBillingMetersOptionalParams): PagedAsyncIterableIterator<BillingMeter>;
|
|
10994
|
+
listCustomHostNameSites(options?: ListCustomHostNameSitesOptionalParams): PagedAsyncIterableIterator<CustomHostnameSites>;
|
|
10553
10995
|
listGeoRegions(options?: ListGeoRegionsOptionalParams): PagedAsyncIterableIterator<GeoRegion>;
|
|
10554
10996
|
listPremierAddOnOffers(options?: ListPremierAddOnOffersOptionalParams): PagedAsyncIterableIterator<PremierAddOnOffer>;
|
|
10555
10997
|
listSiteIdentifiersAssignedToHostName(nameIdentifier: NameIdentifier, options?: ListSiteIdentifiersAssignedToHostNameOptionalParams): PagedAsyncIterableIterator<Identifier>;
|