
com.pulumi.azurenative.migrate.outputs.AKSDeploymentSpecificationResponse 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.migrate.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 AKSDeploymentSpecificationResponse {
/**
* @return Gets or sets the Merged Deployment and service Yaml.
*
*/
private @Nullable String kubernetesObjectsYaml;
/**
* @return Gets or sets the load balancer type.
*
*/
private @Nullable String loadBalancerType;
/**
* @return Gets or sets the replica count to be created in AKS.
*
*/
private @Nullable String replicaCount;
private AKSDeploymentSpecificationResponse() {}
/**
* @return Gets or sets the Merged Deployment and service Yaml.
*
*/
public Optional kubernetesObjectsYaml() {
return Optional.ofNullable(this.kubernetesObjectsYaml);
}
/**
* @return Gets or sets the load balancer type.
*
*/
public Optional loadBalancerType() {
return Optional.ofNullable(this.loadBalancerType);
}
/**
* @return Gets or sets the replica count to be created in AKS.
*
*/
public Optional replicaCount() {
return Optional.ofNullable(this.replicaCount);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AKSDeploymentSpecificationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String kubernetesObjectsYaml;
private @Nullable String loadBalancerType;
private @Nullable String replicaCount;
public Builder() {}
public Builder(AKSDeploymentSpecificationResponse defaults) {
Objects.requireNonNull(defaults);
this.kubernetesObjectsYaml = defaults.kubernetesObjectsYaml;
this.loadBalancerType = defaults.loadBalancerType;
this.replicaCount = defaults.replicaCount;
}
@CustomType.Setter
public Builder kubernetesObjectsYaml(@Nullable String kubernetesObjectsYaml) {
this.kubernetesObjectsYaml = kubernetesObjectsYaml;
return this;
}
@CustomType.Setter
public Builder loadBalancerType(@Nullable String loadBalancerType) {
this.loadBalancerType = loadBalancerType;
return this;
}
@CustomType.Setter
public Builder replicaCount(@Nullable String replicaCount) {
this.replicaCount = replicaCount;
return this;
}
public AKSDeploymentSpecificationResponse build() {
final var _resultValue = new AKSDeploymentSpecificationResponse();
_resultValue.kubernetesObjectsYaml = kubernetesObjectsYaml;
_resultValue.loadBalancerType = loadBalancerType;
_resultValue.replicaCount = replicaCount;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy