Skip to content

Commit d256e9f

Browse files
Align NC removal and PIS versioning
1 parent f2f7f41 commit d256e9f

File tree

1 file changed

+25
-2
lines changed
  • specification/containerservice/resource-manager/Microsoft.ContainerService/aks

1 file changed

+25
-2
lines changed

specification/containerservice/resource-manager/Microsoft.ContainerService/aks/AgentPoolModels.tsp

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,15 @@ model ManagedClusterAgentPoolProfileProperties {
393393
/**
394394
* Settings to determine the node customization used to provision nodes in a pool.
395395
*/
396-
@added(Versions.v2026_02_02_preview)
396+
@added(Versions.v2026_01_02_preview)
397+
@removed(Versions.v2026_02_02_preview)
397398
nodeCustomizationProfile?: NodeCustomizationProfile;
399+
400+
/**
401+
* Settings to determine the prepared image specification used to provision nodes in a pool.
402+
*/
403+
@added(Versions.v2026_02_02_preview)
404+
preparedImageSpecificationProfile?: PreparedImageSpecificationProfile;
398405
}
399406

400407
/**
@@ -1050,7 +1057,8 @@ model LocalDNSOverride {
10501057
/**
10511058
* Settings to determine the node customization used to provision nodes in a pool.
10521059
*/
1053-
@added(Versions.v2026_02_02_preview)
1060+
@added(Versions.v2026_01_02_preview)
1061+
@removed(Versions.v2026_02_02_preview)
10541062
model NodeCustomizationProfile {
10551063
/**
10561064
* The resource ID of the node customization resource to use. This can be a version. Omitting the version will use the latest version of the node customization.
@@ -1062,6 +1070,21 @@ model NodeCustomizationProfile {
10621070
]>;
10631071
}
10641072

1073+
/**
1074+
* Settings to determine the prepared image specification used to provision nodes in a pool.
1075+
*/
1076+
@added(Versions.v2026_02_02_preview)
1077+
model PreparedImageSpecificationProfile {
1078+
/**
1079+
* The resource ID of the prepared image specification resource to use. This can include a version. Omitting the version will use the latest version of the prepared image specification.
1080+
*/
1081+
preparedImageSpecificationId?: Azure.Core.armResourceIdentifier<[
1082+
{
1083+
type: "Microsoft.ContainerService/preparedImageSpecifications";
1084+
}
1085+
]>;
1086+
}
1087+
10651088
/**
10661089
* Specifies a list of machine names from the agent pool to be deleted.
10671090
*/

0 commit comments

Comments
 (0)