
com.pulumi.azurenative.hybridcontainerservice.outputs.ArcAgentProfileResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.hybridcontainerservice.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ArcAgentProfileResponse {
/**
* @return Indicates whether the Arc agents on the provisioned clusters be upgraded automatically to the latest version. Defaults to Enabled.
*
*/
private @Nullable String agentAutoUpgrade;
/**
* @return Version of the Arc agents to be installed on the provisioned Provisioned cluster resource
*
*/
private @Nullable String agentVersion;
private ArcAgentProfileResponse() {}
/**
* @return Indicates whether the Arc agents on the provisioned clusters be upgraded automatically to the latest version. Defaults to Enabled.
*
*/
public Optional agentAutoUpgrade() {
return Optional.ofNullable(this.agentAutoUpgrade);
}
/**
* @return Version of the Arc agents to be installed on the provisioned Provisioned cluster resource
*
*/
public Optional agentVersion() {
return Optional.ofNullable(this.agentVersion);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ArcAgentProfileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String agentAutoUpgrade;
private @Nullable String agentVersion;
public Builder() {}
public Builder(ArcAgentProfileResponse defaults) {
Objects.requireNonNull(defaults);
this.agentAutoUpgrade = defaults.agentAutoUpgrade;
this.agentVersion = defaults.agentVersion;
}
@CustomType.Setter
public Builder agentAutoUpgrade(@Nullable String agentAutoUpgrade) {
this.agentAutoUpgrade = agentAutoUpgrade;
return this;
}
@CustomType.Setter
public Builder agentVersion(@Nullable String agentVersion) {
this.agentVersion = agentVersion;
return this;
}
public ArcAgentProfileResponse build() {
final var _resultValue = new ArcAgentProfileResponse();
_resultValue.agentAutoUpgrade = agentAutoUpgrade;
_resultValue.agentVersion = agentVersion;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy