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

com.pulumi.azurenative.apicenter.inputs.DeploymentServerArgs 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;


/**
 * Server
 * 
 */
public final class DeploymentServerArgs extends com.pulumi.resources.ResourceArgs {

    public static final DeploymentServerArgs Empty = new DeploymentServerArgs();

    /**
     * Base runtime URLs for this deployment.
     * 
     */
    @Import(name="runtimeUri")
    private @Nullable Output> runtimeUri;

    /**
     * @return Base runtime URLs for this deployment.
     * 
     */
    public Optional>> runtimeUri() {
        return Optional.ofNullable(this.runtimeUri);
    }

    private DeploymentServerArgs() {}

    private DeploymentServerArgs(DeploymentServerArgs $) {
        this.runtimeUri = $.runtimeUri;
    }

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

    public static final class Builder {
        private DeploymentServerArgs $;

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

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

        /**
         * @param runtimeUri Base runtime URLs for this deployment.
         * 
         * @return builder
         * 
         */
        public Builder runtimeUri(@Nullable Output> runtimeUri) {
            $.runtimeUri = runtimeUri;
            return this;
        }

        /**
         * @param runtimeUri Base runtime URLs for this deployment.
         * 
         * @return builder
         * 
         */
        public Builder runtimeUri(List runtimeUri) {
            return runtimeUri(Output.of(runtimeUri));
        }

        /**
         * @param runtimeUri Base runtime URLs for this deployment.
         * 
         * @return builder
         * 
         */
        public Builder runtimeUri(String... runtimeUri) {
            return runtimeUri(List.of(runtimeUri));
        }

        public DeploymentServerArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy