All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.hybridnetwork.outputs.ArmResourceDefinitionResourceElementTemplateResponse 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.azurenative.hybridnetwork.outputs.NSDArtifactProfileResponse;
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 ArmResourceDefinitionResourceElementTemplateResponse {
    /**
     * @return Artifact profile properties.
     * 
     */
    private @Nullable NSDArtifactProfileResponse artifactProfile;
    /**
     * @return Name and value pairs that define the parameter values. It can be  a well formed escaped JSON string.
     * 
     */
    private @Nullable String parameterValues;
    /**
     * @return The template type.
     * 
     */
    private @Nullable String templateType;

    private ArmResourceDefinitionResourceElementTemplateResponse() {}
    /**
     * @return Artifact profile properties.
     * 
     */
    public Optional artifactProfile() {
        return Optional.ofNullable(this.artifactProfile);
    }
    /**
     * @return Name and value pairs that define the parameter values. It can be  a well formed escaped JSON string.
     * 
     */
    public Optional parameterValues() {
        return Optional.ofNullable(this.parameterValues);
    }
    /**
     * @return The template type.
     * 
     */
    public Optional templateType() {
        return Optional.ofNullable(this.templateType);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(ArmResourceDefinitionResourceElementTemplateResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable NSDArtifactProfileResponse artifactProfile;
        private @Nullable String parameterValues;
        private @Nullable String templateType;
        public Builder() {}
        public Builder(ArmResourceDefinitionResourceElementTemplateResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.artifactProfile = defaults.artifactProfile;
    	      this.parameterValues = defaults.parameterValues;
    	      this.templateType = defaults.templateType;
        }

        @CustomType.Setter
        public Builder artifactProfile(@Nullable NSDArtifactProfileResponse artifactProfile) {

            this.artifactProfile = artifactProfile;
            return this;
        }
        @CustomType.Setter
        public Builder parameterValues(@Nullable String parameterValues) {

            this.parameterValues = parameterValues;
            return this;
        }
        @CustomType.Setter
        public Builder templateType(@Nullable String templateType) {

            this.templateType = templateType;
            return this;
        }
        public ArmResourceDefinitionResourceElementTemplateResponse build() {
            final var _resultValue = new ArmResourceDefinitionResourceElementTemplateResponse();
            _resultValue.artifactProfile = artifactProfile;
            _resultValue.parameterValues = parameterValues;
            _resultValue.templateType = templateType;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy