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

com.pulumi.azurenative.apicenter.inputs.OnboardingArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.apicenter.inputs;

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


/**
 * Onboarding information
 * 
 */
public final class OnboardingArgs extends com.pulumi.resources.ResourceArgs {

    public static final OnboardingArgs Empty = new OnboardingArgs();

    /**
     * The location of the development portal
     * 
     */
    @Import(name="developerPortalUri")
    private @Nullable Output> developerPortalUri;

    /**
     * @return The location of the development portal
     * 
     */
    public Optional>> developerPortalUri() {
        return Optional.ofNullable(this.developerPortalUri);
    }

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

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

    private OnboardingArgs() {}

    private OnboardingArgs(OnboardingArgs $) {
        this.developerPortalUri = $.developerPortalUri;
        this.instructions = $.instructions;
    }

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

    public static final class Builder {
        private OnboardingArgs $;

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

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

        /**
         * @param developerPortalUri The location of the development portal
         * 
         * @return builder
         * 
         */
        public Builder developerPortalUri(@Nullable Output> developerPortalUri) {
            $.developerPortalUri = developerPortalUri;
            return this;
        }

        /**
         * @param developerPortalUri The location of the development portal
         * 
         * @return builder
         * 
         */
        public Builder developerPortalUri(List developerPortalUri) {
            return developerPortalUri(Output.of(developerPortalUri));
        }

        /**
         * @param developerPortalUri The location of the development portal
         * 
         * @return builder
         * 
         */
        public Builder developerPortalUri(String... developerPortalUri) {
            return developerPortalUri(List.of(developerPortalUri));
        }

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

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

        public OnboardingArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy