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

com.pulumi.azurenative.apimanagement.inputs.BackendPropertiesArgs Maven / Gradle / Ivy

// *** 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.apimanagement.inputs;

import com.pulumi.azurenative.apimanagement.inputs.BackendServiceFabricClusterPropertiesArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Properties specific to the Backend Type.
 * 
 */
public final class BackendPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final BackendPropertiesArgs Empty = new BackendPropertiesArgs();

    /**
     * Backend Service Fabric Cluster Properties
     * 
     */
    @Import(name="serviceFabricCluster")
    private @Nullable Output serviceFabricCluster;

    /**
     * @return Backend Service Fabric Cluster Properties
     * 
     */
    public Optional> serviceFabricCluster() {
        return Optional.ofNullable(this.serviceFabricCluster);
    }

    private BackendPropertiesArgs() {}

    private BackendPropertiesArgs(BackendPropertiesArgs $) {
        this.serviceFabricCluster = $.serviceFabricCluster;
    }

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

    public static final class Builder {
        private BackendPropertiesArgs $;

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

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

        /**
         * @param serviceFabricCluster Backend Service Fabric Cluster Properties
         * 
         * @return builder
         * 
         */
        public Builder serviceFabricCluster(@Nullable Output serviceFabricCluster) {
            $.serviceFabricCluster = serviceFabricCluster;
            return this;
        }

        /**
         * @param serviceFabricCluster Backend Service Fabric Cluster Properties
         * 
         * @return builder
         * 
         */
        public Builder serviceFabricCluster(BackendServiceFabricClusterPropertiesArgs serviceFabricCluster) {
            return serviceFabricCluster(Output.of(serviceFabricCluster));
        }

        public BackendPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy