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

com.pulumi.azurenative.web.StaticSiteLinkedBackendArgs 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.web;

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


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

    public static final StaticSiteLinkedBackendArgs Empty = new StaticSiteLinkedBackendArgs();

    /**
     * The resource id of the backend linked to the static site
     * 
     */
    @Import(name="backendResourceId")
    private @Nullable Output backendResourceId;

    /**
     * @return The resource id of the backend linked to the static site
     * 
     */
    public Optional> backendResourceId() {
        return Optional.ofNullable(this.backendResourceId);
    }

    /**
     * Kind of resource.
     * 
     */
    @Import(name="kind")
    private @Nullable Output kind;

    /**
     * @return Kind of resource.
     * 
     */
    public Optional> kind() {
        return Optional.ofNullable(this.kind);
    }

    /**
     * Name of the backend to link to the static site
     * 
     */
    @Import(name="linkedBackendName")
    private @Nullable Output linkedBackendName;

    /**
     * @return Name of the backend to link to the static site
     * 
     */
    public Optional> linkedBackendName() {
        return Optional.ofNullable(this.linkedBackendName);
    }

    /**
     * Name of the static site
     * 
     */
    @Import(name="name", required=true)
    private Output name;

    /**
     * @return Name of the static site
     * 
     */
    public Output name() {
        return this.name;
    }

    /**
     * The region of the backend linked to the static site
     * 
     */
    @Import(name="region")
    private @Nullable Output region;

    /**
     * @return The region of the backend linked to the static site
     * 
     */
    public Optional> region() {
        return Optional.ofNullable(this.region);
    }

    /**
     * Name of the resource group to which the resource belongs.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Name of the resource group to which the resource belongs.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private StaticSiteLinkedBackendArgs() {}

    private StaticSiteLinkedBackendArgs(StaticSiteLinkedBackendArgs $) {
        this.backendResourceId = $.backendResourceId;
        this.kind = $.kind;
        this.linkedBackendName = $.linkedBackendName;
        this.name = $.name;
        this.region = $.region;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private StaticSiteLinkedBackendArgs $;

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

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

        /**
         * @param backendResourceId The resource id of the backend linked to the static site
         * 
         * @return builder
         * 
         */
        public Builder backendResourceId(@Nullable Output backendResourceId) {
            $.backendResourceId = backendResourceId;
            return this;
        }

        /**
         * @param backendResourceId The resource id of the backend linked to the static site
         * 
         * @return builder
         * 
         */
        public Builder backendResourceId(String backendResourceId) {
            return backendResourceId(Output.of(backendResourceId));
        }

        /**
         * @param kind Kind of resource.
         * 
         * @return builder
         * 
         */
        public Builder kind(@Nullable Output kind) {
            $.kind = kind;
            return this;
        }

        /**
         * @param kind Kind of resource.
         * 
         * @return builder
         * 
         */
        public Builder kind(String kind) {
            return kind(Output.of(kind));
        }

        /**
         * @param linkedBackendName Name of the backend to link to the static site
         * 
         * @return builder
         * 
         */
        public Builder linkedBackendName(@Nullable Output linkedBackendName) {
            $.linkedBackendName = linkedBackendName;
            return this;
        }

        /**
         * @param linkedBackendName Name of the backend to link to the static site
         * 
         * @return builder
         * 
         */
        public Builder linkedBackendName(String linkedBackendName) {
            return linkedBackendName(Output.of(linkedBackendName));
        }

        /**
         * @param name Name of the static site
         * 
         * @return builder
         * 
         */
        public Builder name(Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the static site
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param region The region of the backend linked to the static site
         * 
         * @return builder
         * 
         */
        public Builder region(@Nullable Output region) {
            $.region = region;
            return this;
        }

        /**
         * @param region The region of the backend linked to the static site
         * 
         * @return builder
         * 
         */
        public Builder region(String region) {
            return region(Output.of(region));
        }

        /**
         * @param resourceGroupName Name of the resource group to which the resource belongs.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Name of the resource group to which the resource belongs.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        public StaticSiteLinkedBackendArgs build() {
            if ($.name == null) {
                throw new MissingRequiredPropertyException("StaticSiteLinkedBackendArgs", "name");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("StaticSiteLinkedBackendArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy