Skip to content

Commit bc4c107

Browse files
author
SDK Automation
committed
Generated from 920a122e8d35667c324751ee6c85de57572c90d1
add missing response in the example
1 parent 3b21f27 commit bc4c107

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

sdk/containerservice/mgmt-v2019_11_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_11_01/ManagedCluster.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ interface WithDnsPrefix {
209209
interface WithEnablePodSecurityPolicy {
210210
/**
211211
* Specifies enablePodSecurityPolicy.
212-
* @param enablePodSecurityPolicy (PREVIEW) Whether to enable Kubernetes Pod security policy
212+
* @param enablePodSecurityPolicy (DEPRECATING) Whether to enable Kubernetes pod security policy (preview). This feature is set for removal on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy
213213
* @return the next definition stage
214214
*/
215215
WithCreate withEnablePodSecurityPolicy(Boolean enablePodSecurityPolicy);
@@ -407,7 +407,7 @@ interface WithDnsPrefix {
407407
interface WithEnablePodSecurityPolicy {
408408
/**
409409
* Specifies enablePodSecurityPolicy.
410-
* @param enablePodSecurityPolicy (PREVIEW) Whether to enable Kubernetes Pod security policy
410+
* @param enablePodSecurityPolicy (DEPRECATING) Whether to enable Kubernetes pod security policy (preview). This feature is set for removal on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy
411411
* @return the next update stage
412412
*/
413413
Update withEnablePodSecurityPolicy(Boolean enablePodSecurityPolicy);

sdk/containerservice/mgmt-v2019_11_01/src/main/java/com/microsoft/azure/management/containerservice/v2019_11_01/implementation/ManagedClusterInner.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ public class ManagedClusterInner extends Resource {
110110
private Boolean enableRBAC;
111111

112112
/**
113-
* (PREVIEW) Whether to enable Kubernetes Pod security policy.
113+
* (DEPRECATING) Whether to enable Kubernetes pod security policy
114+
* (preview). This feature is set for removal on October 15th, 2020. Learn
115+
* more at aka.ms/aks/azpodpolicy.
114116
*/
115117
@JsonProperty(value = "properties.enablePodSecurityPolicy")
116118
private Boolean enablePodSecurityPolicy;
@@ -362,7 +364,7 @@ public ManagedClusterInner withEnableRBAC(Boolean enableRBAC) {
362364
}
363365

364366
/**
365-
* Get (PREVIEW) Whether to enable Kubernetes Pod security policy.
367+
* Get (DEPRECATING) Whether to enable Kubernetes pod security policy (preview). This feature is set for removal on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
366368
*
367369
* @return the enablePodSecurityPolicy value
368370
*/
@@ -371,7 +373,7 @@ public Boolean enablePodSecurityPolicy() {
371373
}
372374

373375
/**
374-
* Set (PREVIEW) Whether to enable Kubernetes Pod security policy.
376+
* Set (DEPRECATING) Whether to enable Kubernetes pod security policy (preview). This feature is set for removal on October 15th, 2020. Learn more at aka.ms/aks/azpodpolicy.
375377
*
376378
* @param enablePodSecurityPolicy the enablePodSecurityPolicy value to set
377379
* @return the ManagedClusterInner object itself.

0 commit comments

Comments
 (0)