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/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/AgentPoolInner.java
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -260,6 +260,33 @@ public AgentPoolInner withWorkloadRuntime(WorkloadRuntime workloadRuntime) {
260
260
returnthis;
261
261
}
262
262
263
+
/**
264
+
* Get the messageOfTheDay property: A base64-encoded string which will be written to /etc/motd after decoding. This
265
+
* allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It
266
+
* must be a static string (i.e., will be printed raw and not be executed as a script).
Copy file name to clipboardExpand all lines: sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterAgentPoolProfileProperties.java
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,13 @@ public class ManagedClusterAgentPoolProfileProperties
81
81
*/
82
82
privateWorkloadRuntimeworkloadRuntime;
83
83
84
+
/*
85
+
* A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the
86
+
* message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e.,
87
+
* will be printed raw and not be executed as a script).
88
+
*/
89
+
privateStringmessageOfTheDay;
90
+
84
91
/*
85
92
* If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this
86
93
* applies to nodes and pods, otherwise it applies to just nodes. This is of the form:
@@ -476,6 +483,30 @@ public ManagedClusterAgentPoolProfileProperties withWorkloadRuntime(WorkloadRunt
476
483
returnthis;
477
484
}
478
485
486
+
/**
487
+
* Get the messageOfTheDay property: A base64-encoded string which will be written to /etc/motd after decoding. This
488
+
* allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It
489
+
* must be a static string (i.e., will be printed raw and not be executed as a script).
490
+
*
491
+
* @return the messageOfTheDay value.
492
+
*/
493
+
publicStringmessageOfTheDay() {
494
+
returnthis.messageOfTheDay;
495
+
}
496
+
497
+
/**
498
+
* Set the messageOfTheDay property: A base64-encoded string which will be written to /etc/motd after decoding. This
499
+
* allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It
500
+
* must be a static string (i.e., will be printed raw and not be executed as a script).
501
+
*
502
+
* @param messageOfTheDay the messageOfTheDay value to set.
503
+
* @return the ManagedClusterAgentPoolProfileProperties object itself.
Copy file name to clipboardExpand all lines: sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/AgentPoolsClientImpl.java
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -206,7 +206,7 @@ public Mono<Response<Flux<ByteBuffer>>> abortLatestOperationWithResponseAsync(St
206
206
if (agentPoolName == null) {
207
207
returnMono.error(newIllegalArgumentException("Parameter agentPoolName is required and cannot be null."));
Copy file name to clipboardExpand all lines: sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/KubernetesClusterAgentPoolImpl.java
Copy file name to clipboardExpand all lines: sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/implementation/MachinesClientImpl.java
0 commit comments