Skip to content

Commit feeb0d5

Browse files
author
SDK Automation
committed
Generated from 920a122e8d35667c324751ee6c85de57572c90d1
add missing response in the example
1 parent b217ada commit feeb0d5

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ interface WithDnsPrefix {
204204
interface WithEnablePodSecurityPolicy {
205205
/**
206206
* Specifies enablePodSecurityPolicy.
207-
* @param enablePodSecurityPolicy (PREVIEW) Whether to enable Kubernetes Pod security policy
207+
* @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
208208
* @return the next definition stage
209209
*/
210210
WithCreate withEnablePodSecurityPolicy(Boolean enablePodSecurityPolicy);
@@ -390,7 +390,7 @@ interface WithDnsPrefix {
390390
interface WithEnablePodSecurityPolicy {
391391
/**
392392
* Specifies enablePodSecurityPolicy.
393-
* @param enablePodSecurityPolicy (PREVIEW) Whether to enable Kubernetes Pod security policy
393+
* @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
394394
* @return the next update stage
395395
*/
396396
Update withEnablePodSecurityPolicy(Boolean enablePodSecurityPolicy);

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

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

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

357359
/**
358-
* Get (PREVIEW) Whether to enable Kubernetes Pod security policy.
360+
* 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.
359361
*
360362
* @return the enablePodSecurityPolicy value
361363
*/
@@ -364,7 +366,7 @@ public Boolean enablePodSecurityPolicy() {
364366
}
365367

366368
/**
367-
* Set (PREVIEW) Whether to enable Kubernetes Pod security policy.
369+
* 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.
368370
*
369371
* @param enablePodSecurityPolicy the enablePodSecurityPolicy value to set
370372
* @return the ManagedClusterInner object itself.

0 commit comments

Comments
 (0)