com.pulumi.azurenative.hybridnetwork.outputs.HelmMappingRuleProfileResponse 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.
The newest version!
// *** 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.hybridnetwork.outputs;
import com.pulumi.azurenative.hybridnetwork.outputs.HelmMappingRuleProfileResponseOptions;
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 HelmMappingRuleProfileResponse {
/**
* @return Helm package version.
*
*/
private @Nullable String helmPackageVersion;
/**
* @return The helm deployment options
*
*/
private @Nullable HelmMappingRuleProfileResponseOptions options;
/**
* @return Helm release name.
*
*/
private @Nullable String releaseName;
/**
* @return Helm release namespace.
*
*/
private @Nullable String releaseNamespace;
/**
* @return Helm release values.
*
*/
private @Nullable String values;
private HelmMappingRuleProfileResponse() {}
/**
* @return Helm package version.
*
*/
public Optional helmPackageVersion() {
return Optional.ofNullable(this.helmPackageVersion);
}
/**
* @return The helm deployment options
*
*/
public Optional options() {
return Optional.ofNullable(this.options);
}
/**
* @return Helm release name.
*
*/
public Optional releaseName() {
return Optional.ofNullable(this.releaseName);
}
/**
* @return Helm release namespace.
*
*/
public Optional releaseNamespace() {
return Optional.ofNullable(this.releaseNamespace);
}
/**
* @return Helm release values.
*
*/
public Optional values() {
return Optional.ofNullable(this.values);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HelmMappingRuleProfileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String helmPackageVersion;
private @Nullable HelmMappingRuleProfileResponseOptions options;
private @Nullable String releaseName;
private @Nullable String releaseNamespace;
private @Nullable String values;
public Builder() {}
public Builder(HelmMappingRuleProfileResponse defaults) {
Objects.requireNonNull(defaults);
this.helmPackageVersion = defaults.helmPackageVersion;
this.options = defaults.options;
this.releaseName = defaults.releaseName;
this.releaseNamespace = defaults.releaseNamespace;
this.values = defaults.values;
}
@CustomType.Setter
public Builder helmPackageVersion(@Nullable String helmPackageVersion) {
this.helmPackageVersion = helmPackageVersion;
return this;
}
@CustomType.Setter
public Builder options(@Nullable HelmMappingRuleProfileResponseOptions options) {
this.options = options;
return this;
}
@CustomType.Setter
public Builder releaseName(@Nullable String releaseName) {
this.releaseName = releaseName;
return this;
}
@CustomType.Setter
public Builder releaseNamespace(@Nullable String releaseNamespace) {
this.releaseNamespace = releaseNamespace;
return this;
}
@CustomType.Setter
public Builder values(@Nullable String values) {
this.values = values;
return this;
}
public HelmMappingRuleProfileResponse build() {
final var _resultValue = new HelmMappingRuleProfileResponse();
_resultValue.helmPackageVersion = helmPackageVersion;
_resultValue.options = options;
_resultValue.releaseName = releaseName;
_resultValue.releaseNamespace = releaseNamespace;
_resultValue.values = values;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy