Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Generated from e365e10741ba688b8c3b39b67986e2b6e06e4ddc
Rename to ManagedClusterAgentPoolProfile.

Its fields have diverged from ContainerServiceAgentPoolProfile.
  • Loading branch information
AutorestCI committed May 25, 2018
commit 16a31cea256c0eb45ebcd1509a64206ff4849592
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,6 @@ public class ContainerServiceAgentPoolProfile {
@JsonProperty(value = "osType")
private OSType osType;

/**
* Maximum number of pods that can run on a node.
*/
@JsonProperty(value = "maxPods")
private Integer maxPods;

/**
* Get unique name of the agent pool profile in the context of the subscription and resource group.
*
Expand Down Expand Up @@ -332,24 +326,4 @@ public ContainerServiceAgentPoolProfile withOsType(OSType osType) {
return this;
}

/**
* Get maximum number of pods that can run on a node.
*
* @return the maxPods value
*/
public Integer maxPods() {
return this.maxPods;
}

/**
* Set maximum number of pods that can run on a node.
*
* @param maxPods the maxPods value to set
* @return the ContainerServiceAgentPoolProfile object itself.
*/
public ContainerServiceAgentPoolProfile withMaxPods(Integer maxPods) {
this.maxPods = maxPods;
return this;
}

}
Loading