You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/containerservice/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_06_01/AgentPool.java
Copy file name to clipboardExpand all lines: sdk/containerservice/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_06_01/AgentPools.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -71,10 +71,9 @@ public interface AgentPools extends SupportsCreating<AgentPool.DefinitionStages.
71
71
*
72
72
* @param resourceGroupName The name of the resource group.
73
73
* @param resourceName The name of the managed cluster resource.
74
-
* @param agentPoolName The name of the agent pool.
75
74
* @throws IllegalArgumentException thrown if parameters fail the validation
Copy file name to clipboardExpand all lines: sdk/containerservice/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_06_01/ManagedClusterAgentPoolProfileProperties.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,8 @@ public class ManagedClusterAgentPoolProfileProperties {
19
19
* Number of agents (VMs) to host docker containers. Allowed values must be
20
20
* in the range of 1 to 100 (inclusive). The default value is 1.
21
21
*/
22
-
@JsonProperty(value = "count", required = true)
23
-
privateintcount;
22
+
@JsonProperty(value = "count")
23
+
privateIntegercount;
24
24
25
25
/**
26
26
* Size of agent VMs. Possible values include: 'Standard_A1',
@@ -76,7 +76,7 @@ public class ManagedClusterAgentPoolProfileProperties {
Copy file name to clipboardExpand all lines: sdk/containerservice/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_06_01/implementation/AgentPoolImpl.java
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ public List<String> availabilityZones() {
86
86
}
87
87
88
88
@Override
89
-
publicintcount() {
89
+
publicIntegercount() {
90
90
returnthis.inner().count();
91
91
}
92
92
@@ -182,18 +182,6 @@ public AgentPoolImpl withExistingManagedCluster(String resourceGroupName, String
Copy file name to clipboardExpand all lines: sdk/containerservice/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_06_01/implementation/AgentPoolInner.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -27,8 +27,8 @@ public class AgentPoolInner extends SubResource {
27
27
* Number of agents (VMs) to host docker containers. Allowed values must be
28
28
* in the range of 1 to 100 (inclusive). The default value is 1.
Copy file name to clipboardExpand all lines: sdk/containerservice/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_06_01/implementation/AgentPoolsImpl.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -97,9 +97,9 @@ public AgentPoolUpgradeProfile call(AgentPoolUpgradeProfileInner inner) {
Copy file name to clipboardExpand all lines: sdk/containerservice/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_06_01/implementation/AgentPoolsInner.java
0 commit comments