
com.pulumi.azurenative.hybridnetwork.outputs.ArmTemplateMappingRuleProfileResponse 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 ArmTemplateMappingRuleProfileResponse {
/**
* @return List of template parameters.
*
*/
private @Nullable String templateParameters;
private ArmTemplateMappingRuleProfileResponse() {}
/**
* @return List of template parameters.
*
*/
public Optional templateParameters() {
return Optional.ofNullable(this.templateParameters);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ArmTemplateMappingRuleProfileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String templateParameters;
public Builder() {}
public Builder(ArmTemplateMappingRuleProfileResponse defaults) {
Objects.requireNonNull(defaults);
this.templateParameters = defaults.templateParameters;
}
@CustomType.Setter
public Builder templateParameters(@Nullable String templateParameters) {
this.templateParameters = templateParameters;
return this;
}
public ArmTemplateMappingRuleProfileResponse build() {
final var _resultValue = new ArmTemplateMappingRuleProfileResponse();
_resultValue.templateParameters = templateParameters;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy