Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,23 @@ enum RedundancyMode {
GeoRedundant,
}

/**
* The platform release channel for the site.
*/
@added(Versions.v2025_05_01)
union PlatformReleaseChannel {
string,

/** Latest receives updates earliest. */
Latest: "Latest",

/** Standard receives updates after Latest. */
Standard: "Standard",

/** Extended receives updates last with extended support. */
Extended: "Extended",
}

/**
* Specifies the scope of uniqueness for the default hostname during resource creation
*/
Expand Down Expand Up @@ -2374,6 +2391,12 @@ model SiteProperties {
*/
@visibility(Lifecycle.Read)
sku?: string;

/**
* The platform release channel for the site. Latest receives updates earliest, followed by Standard, then Extended.
*/
@added(Versions.v2025_05_01)
platformReleaseChannel?: PlatformReleaseChannel;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48448,6 +48448,36 @@
}
}
},
"PlatformReleaseChannel": {
"type": "string",
"description": "The platform release channel for the site.",
"enum": [
"Latest",
"Standard",
"Extended"
],
"x-ms-enum": {
"name": "PlatformReleaseChannel",
"modelAsString": true,
"values": [
{
"name": "Latest",
"value": "Latest",
"description": "Latest receives updates earliest."
},
{
"name": "Standard",
"value": "Standard",
"description": "Standard receives updates after Latest."
},
{
"name": "Extended",
"value": "Extended",
"description": "Extended receives updates last with extended support."
}
]
}
},
"PremierAddOn": {
"type": "object",
"description": "Premier add-on.",
Expand Down Expand Up @@ -52948,6 +52978,10 @@
"type": "string",
"description": "Current SKU of application based on associated App Service Plan. Some valid SKU values are Free, Shared, Basic, Dynamic, FlexConsumption, Standard, Premium, PremiumV2, PremiumV3, Isolated, IsolatedV2",
"readOnly": true
},
"platformReleaseChannel": {
"$ref": "#/definitions/PlatformReleaseChannel",
"description": "The platform release channel for the site. Latest receives updates earliest, followed by Standard, then Extended."
}
}
},
Expand Down
Loading