Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.containerservice;
import com.fasterxml.jackson.annotation.JsonProperty;
Properties to configure a custom container service cluster.
/**
* Properties to configure a custom container service cluster.
*/
public class ContainerServiceCustomProfile {
The name of the custom orchestrator to use.
/**
* The name of the custom orchestrator to use.
*/
@JsonProperty(value = "orchestrator", required = true)
private String orchestrator;
Get the name of the custom orchestrator to use.
Returns: the orchestrator value
/**
* Get the name of the custom orchestrator to use.
*
* @return the orchestrator value
*/
public String orchestrator() {
return this.orchestrator;
}
Set the name of the custom orchestrator to use.
Params: - orchestrator – the orchestrator value to set
Returns: the ContainerServiceCustomProfile object itself.
/**
* Set the name of the custom orchestrator to use.
*
* @param orchestrator the orchestrator value to set
* @return the ContainerServiceCustomProfile object itself.
*/
public ContainerServiceCustomProfile withOrchestrator(String orchestrator) {
this.orchestrator = orchestrator;
return this;
}
}