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

com.pulumi.venafi.SshConfigArgs Maven / Gradle / Ivy

There is a newer version: 1.11.0-alpha.1732775225
Show 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.venafi;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class SshConfigArgs extends com.pulumi.resources.ResourceArgs {

    public static final SshConfigArgs Empty = new SshConfigArgs();

    /**
     * The SSH certificate issuing template.
     * 
     */
    @Import(name="template", required=true)
    private Output template;

    /**
     * @return The SSH certificate issuing template.
     * 
     */
    public Output template() {
        return this.template;
    }

    private SshConfigArgs() {}

    private SshConfigArgs(SshConfigArgs $) {
        this.template = $.template;
    }

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

    public static final class Builder {
        private SshConfigArgs $;

        public Builder() {
            $ = new SshConfigArgs();
        }

        public Builder(SshConfigArgs defaults) {
            $ = new SshConfigArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param template The SSH certificate issuing template.
         * 
         * @return builder
         * 
         */
        public Builder template(Output template) {
            $.template = template;
            return this;
        }

        /**
         * @param template The SSH certificate issuing template.
         * 
         * @return builder
         * 
         */
        public Builder template(String template) {
            return template(Output.of(template));
        }

        public SshConfigArgs build() {
            if ($.template == null) {
                throw new MissingRequiredPropertyException("SshConfigArgs", "template");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy