Skip to content
Merged
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
13 changes: 13 additions & 0 deletions packages/@azure/arm-containerservice/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1257,6 +1257,11 @@ export interface ContainerServiceNetworkProfile {
* or the Kubernetes service address range. Default value: '172.17.0.1/16' .
*/
dockerBridgeCidr?: string;
/**
* @member {LoadBalancerSku} [loadBalancerSku] The load balancer sku for the
* managed cluster. Possible values include: 'standard', 'basic'
*/
loadBalancerSku?: LoadBalancerSku;
}

/**
Expand Down Expand Up @@ -1821,6 +1826,14 @@ export type NetworkPlugin = 'azure' | 'kubenet';
*/
export type NetworkPolicy = 'calico' | 'azure';

/**
* Defines values for LoadBalancerSku.
* Possible values include: 'standard', 'basic'
* @readonly
* @enum {string}
*/
export type LoadBalancerSku = 'standard' | 'basic';

/**
* Contains response data for the list operation.
*/
Expand Down
6 changes: 6 additions & 0 deletions packages/@azure/arm-containerservice/lib/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1339,6 +1339,12 @@ export const ContainerServiceNetworkProfile: msRest.CompositeMapper = {
type: {
name: "String"
}
},
loadBalancerSku: {
serializedName: "loadBalancerSku",
type: {
name: "String"
}
}
}
}
Expand Down