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

com.pulumi.azurenative.hybridnetwork.inputs.NetworkServiceDesignVersionPropertiesFormatArgs 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.hybridnetwork.inputs;

import com.pulumi.azurenative.hybridnetwork.inputs.ArmResourceDefinitionResourceElementTemplateDetailsArgs;
import com.pulumi.azurenative.hybridnetwork.inputs.NetworkFunctionDefinitionResourceElementTemplateDetailsArgs;
import com.pulumi.azurenative.hybridnetwork.inputs.NfviDetailsArgs;
import com.pulumi.azurenative.hybridnetwork.inputs.ReferencedResourceArgs;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * network service design version properties.
 * 
 */
public final class NetworkServiceDesignVersionPropertiesFormatArgs extends com.pulumi.resources.ResourceArgs {

    public static final NetworkServiceDesignVersionPropertiesFormatArgs Empty = new NetworkServiceDesignVersionPropertiesFormatArgs();

    /**
     * The configuration schemas to used to define the values.
     * 
     */
    @Import(name="configurationGroupSchemaReferences")
    private @Nullable Output> configurationGroupSchemaReferences;

    /**
     * @return The configuration schemas to used to define the values.
     * 
     */
    public Optional>> configurationGroupSchemaReferences() {
        return Optional.ofNullable(this.configurationGroupSchemaReferences);
    }

    /**
     * The network service design version description.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return The network service design version description.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * The nfvis from the site.
     * 
     */
    @Import(name="nfvisFromSite")
    private @Nullable Output> nfvisFromSite;

    /**
     * @return The nfvis from the site.
     * 
     */
    public Optional>> nfvisFromSite() {
        return Optional.ofNullable(this.nfvisFromSite);
    }

    /**
     * List of resource element template
     * 
     */
    @Import(name="resourceElementTemplates")
    private @Nullable Output>> resourceElementTemplates;

    /**
     * @return List of resource element template
     * 
     */
    public Optional>>> resourceElementTemplates() {
        return Optional.ofNullable(this.resourceElementTemplates);
    }

    private NetworkServiceDesignVersionPropertiesFormatArgs() {}

    private NetworkServiceDesignVersionPropertiesFormatArgs(NetworkServiceDesignVersionPropertiesFormatArgs $) {
        this.configurationGroupSchemaReferences = $.configurationGroupSchemaReferences;
        this.description = $.description;
        this.nfvisFromSite = $.nfvisFromSite;
        this.resourceElementTemplates = $.resourceElementTemplates;
    }

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

    public static final class Builder {
        private NetworkServiceDesignVersionPropertiesFormatArgs $;

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

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

        /**
         * @param configurationGroupSchemaReferences The configuration schemas to used to define the values.
         * 
         * @return builder
         * 
         */
        public Builder configurationGroupSchemaReferences(@Nullable Output> configurationGroupSchemaReferences) {
            $.configurationGroupSchemaReferences = configurationGroupSchemaReferences;
            return this;
        }

        /**
         * @param configurationGroupSchemaReferences The configuration schemas to used to define the values.
         * 
         * @return builder
         * 
         */
        public Builder configurationGroupSchemaReferences(Map configurationGroupSchemaReferences) {
            return configurationGroupSchemaReferences(Output.of(configurationGroupSchemaReferences));
        }

        /**
         * @param description The network service design version description.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description The network service design version description.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param nfvisFromSite The nfvis from the site.
         * 
         * @return builder
         * 
         */
        public Builder nfvisFromSite(@Nullable Output> nfvisFromSite) {
            $.nfvisFromSite = nfvisFromSite;
            return this;
        }

        /**
         * @param nfvisFromSite The nfvis from the site.
         * 
         * @return builder
         * 
         */
        public Builder nfvisFromSite(Map nfvisFromSite) {
            return nfvisFromSite(Output.of(nfvisFromSite));
        }

        /**
         * @param resourceElementTemplates List of resource element template
         * 
         * @return builder
         * 
         */
        public Builder resourceElementTemplates(@Nullable Output>> resourceElementTemplates) {
            $.resourceElementTemplates = resourceElementTemplates;
            return this;
        }

        /**
         * @param resourceElementTemplates List of resource element template
         * 
         * @return builder
         * 
         */
        public Builder resourceElementTemplates(List> resourceElementTemplates) {
            return resourceElementTemplates(Output.of(resourceElementTemplates));
        }

        /**
         * @param resourceElementTemplates List of resource element template
         * 
         * @return builder
         * 
         */
        public Builder resourceElementTemplates(Either... resourceElementTemplates) {
            return resourceElementTemplates(List.of(resourceElementTemplates));
        }

        public NetworkServiceDesignVersionPropertiesFormatArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy