
com.pulumi.azurenative.hybridnetwork.outputs.ArmTemplateArtifactProfileResponse Maven / Gradle / Ivy
// *** 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.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ArmTemplateArtifactProfileResponse {
/**
* @return Template name.
*
*/
private @Nullable String templateName;
/**
* @return Template version.
*
*/
private @Nullable String templateVersion;
private ArmTemplateArtifactProfileResponse() {}
/**
* @return Template name.
*
*/
public Optional templateName() {
return Optional.ofNullable(this.templateName);
}
/**
* @return Template version.
*
*/
public Optional templateVersion() {
return Optional.ofNullable(this.templateVersion);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ArmTemplateArtifactProfileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String templateName;
private @Nullable String templateVersion;
public Builder() {}
public Builder(ArmTemplateArtifactProfileResponse defaults) {
Objects.requireNonNull(defaults);
this.templateName = defaults.templateName;
this.templateVersion = defaults.templateVersion;
}
@CustomType.Setter
public Builder templateName(@Nullable String templateName) {
this.templateName = templateName;
return this;
}
@CustomType.Setter
public Builder templateVersion(@Nullable String templateVersion) {
this.templateVersion = templateVersion;
return this;
}
public ArmTemplateArtifactProfileResponse build() {
final var _resultValue = new ArmTemplateArtifactProfileResponse();
_resultValue.templateName = templateName;
_resultValue.templateVersion = templateVersion;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy