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

com.pulumi.azurenative.labservices.inputs.SupportInfoArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.azurenative.labservices.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Support contact information and instructions.
 * 
 */
public final class SupportInfoArgs extends com.pulumi.resources.ResourceArgs {

    public static final SupportInfoArgs Empty = new SupportInfoArgs();

    /**
     * Support contact email address.
     * 
     */
    @Import(name="email")
    private @Nullable Output email;

    /**
     * @return Support contact email address.
     * 
     */
    public Optional> email() {
        return Optional.ofNullable(this.email);
    }

    /**
     * Support instructions.
     * 
     */
    @Import(name="instructions")
    private @Nullable Output instructions;

    /**
     * @return Support instructions.
     * 
     */
    public Optional> instructions() {
        return Optional.ofNullable(this.instructions);
    }

    /**
     * Support contact phone number.
     * 
     */
    @Import(name="phone")
    private @Nullable Output phone;

    /**
     * @return Support contact phone number.
     * 
     */
    public Optional> phone() {
        return Optional.ofNullable(this.phone);
    }

    /**
     * Support web address.
     * 
     */
    @Import(name="url")
    private @Nullable Output url;

    /**
     * @return Support web address.
     * 
     */
    public Optional> url() {
        return Optional.ofNullable(this.url);
    }

    private SupportInfoArgs() {}

    private SupportInfoArgs(SupportInfoArgs $) {
        this.email = $.email;
        this.instructions = $.instructions;
        this.phone = $.phone;
        this.url = $.url;
    }

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

    public static final class Builder {
        private SupportInfoArgs $;

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

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

        /**
         * @param email Support contact email address.
         * 
         * @return builder
         * 
         */
        public Builder email(@Nullable Output email) {
            $.email = email;
            return this;
        }

        /**
         * @param email Support contact email address.
         * 
         * @return builder
         * 
         */
        public Builder email(String email) {
            return email(Output.of(email));
        }

        /**
         * @param instructions Support instructions.
         * 
         * @return builder
         * 
         */
        public Builder instructions(@Nullable Output instructions) {
            $.instructions = instructions;
            return this;
        }

        /**
         * @param instructions Support instructions.
         * 
         * @return builder
         * 
         */
        public Builder instructions(String instructions) {
            return instructions(Output.of(instructions));
        }

        /**
         * @param phone Support contact phone number.
         * 
         * @return builder
         * 
         */
        public Builder phone(@Nullable Output phone) {
            $.phone = phone;
            return this;
        }

        /**
         * @param phone Support contact phone number.
         * 
         * @return builder
         * 
         */
        public Builder phone(String phone) {
            return phone(Output.of(phone));
        }

        /**
         * @param url Support web address.
         * 
         * @return builder
         * 
         */
        public Builder url(@Nullable Output url) {
            $.url = url;
            return this;
        }

        /**
         * @param url Support web address.
         * 
         * @return builder
         * 
         */
        public Builder url(String url) {
            return url(Output.of(url));
        }

        public SupportInfoArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy