Skip to content

Commit

Permalink
Generated from a49f685ec9ab1483d6f33a639d99469e516a24a1
Browse files Browse the repository at this point in the history
Merge pull request #1 from Anumita/users/ansheno/enableAzureRBAC

Added enableAzureRBAC property in ManagedClusterAADProfile
  • Loading branch information
SDK Automation committed Jun 10, 2020
1 parent 0583274 commit 9e1f791
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
12 changes: 12 additions & 0 deletions sdk/containerservice/arm-containerservice/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -956,6 +956,10 @@ export interface ManagedClusterAgentPoolProfileProperties {
* key=value:NoSchedule.
*/
nodeTaints?: string[];
/**
* The ID for Proximity Placement Group.
*/
proximityPlacementGroupID?: string;
}

/**
Expand Down Expand Up @@ -1114,6 +1118,10 @@ export interface AgentPool extends SubResource {
* key=value:NoSchedule.
*/
nodeTaints?: string[];
/**
* The ID for Proximity Placement Group.
*/
proximityPlacementGroupID?: string;
}

/**
Expand Down Expand Up @@ -1309,6 +1317,10 @@ export interface ManagedClusterAADProfile {
* Whether to enable managed AAD.
*/
managed?: boolean;
/**
* Whether AAD needs to be used for authorization checks on the AKS cluster
*/
enableAzureRBAC?: boolean;
/**
* AAD group object IDs that will have admin role of the cluster.
*/
Expand Down
18 changes: 18 additions & 0 deletions sdk/containerservice/arm-containerservice/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1351,6 +1351,12 @@ export const ManagedClusterAgentPoolProfileProperties: msRest.CompositeMapper =
}
}
}
},
proximityPlacementGroupID: {
serializedName: "proximityPlacementGroupID",
type: {
name: "String"
}
}
}
}
Expand Down Expand Up @@ -1546,6 +1552,12 @@ export const AgentPool: msRest.CompositeMapper = {
}
}
}
},
proximityPlacementGroupID: {
serializedName: "properties.proximityPlacementGroupID",
type: {
name: "String"
}
}
}
}
Expand Down Expand Up @@ -1902,6 +1914,12 @@ export const ManagedClusterAADProfile: msRest.CompositeMapper = {
name: "Boolean"
}
},
enableAzureRBAC: {
serializedName: "enableAzureRBAC",
type: {
name: "Boolean"
}
},
adminGroupObjectIDs: {
serializedName: "adminGroupObjectIDs",
type: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const apiVersion3: msRest.OperationQueryParameter = {
required: true,
isConstant: true,
serializedName: "api-version",
defaultValue: '2020-04-01',
defaultValue: '2020-06-01',
type: {
name: "String"
}
Expand Down

0 comments on commit 9e1f791

Please sign in to comment.