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

com.pulumi.azurenative.media.MediaGraphArgs 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.media;

import com.pulumi.azurenative.media.inputs.MediaGraphAssetSinkArgs;
import com.pulumi.azurenative.media.inputs.MediaGraphRtspSourceArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final MediaGraphArgs Empty = new MediaGraphArgs();

    /**
     * The Media Services account name.
     * 
     */
    @Import(name="accountName", required=true)
    private Output accountName;

    /**
     * @return The Media Services account name.
     * 
     */
    public Output accountName() {
        return this.accountName;
    }

    /**
     * Media Graph description.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Media Graph description.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * The Media Graph name.
     * 
     */
    @Import(name="mediaGraphName")
    private @Nullable Output mediaGraphName;

    /**
     * @return The Media Graph name.
     * 
     */
    public Optional> mediaGraphName() {
        return Optional.ofNullable(this.mediaGraphName);
    }

    /**
     * The name of the resource group within the Azure subscription.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group within the Azure subscription.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Media Graph sinks.
     * 
     */
    @Import(name="sinks", required=true)
    private Output> sinks;

    /**
     * @return Media Graph sinks.
     * 
     */
    public Output> sinks() {
        return this.sinks;
    }

    /**
     * Media Graph sources.
     * 
     */
    @Import(name="sources", required=true)
    private Output> sources;

    /**
     * @return Media Graph sources.
     * 
     */
    public Output> sources() {
        return this.sources;
    }

    private MediaGraphArgs() {}

    private MediaGraphArgs(MediaGraphArgs $) {
        this.accountName = $.accountName;
        this.description = $.description;
        this.mediaGraphName = $.mediaGraphName;
        this.resourceGroupName = $.resourceGroupName;
        this.sinks = $.sinks;
        this.sources = $.sources;
    }

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

    public static final class Builder {
        private MediaGraphArgs $;

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

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

        /**
         * @param accountName The Media Services account name.
         * 
         * @return builder
         * 
         */
        public Builder accountName(Output accountName) {
            $.accountName = accountName;
            return this;
        }

        /**
         * @param accountName The Media Services account name.
         * 
         * @return builder
         * 
         */
        public Builder accountName(String accountName) {
            return accountName(Output.of(accountName));
        }

        /**
         * @param description Media Graph description.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Media Graph description.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param mediaGraphName The Media Graph name.
         * 
         * @return builder
         * 
         */
        public Builder mediaGraphName(@Nullable Output mediaGraphName) {
            $.mediaGraphName = mediaGraphName;
            return this;
        }

        /**
         * @param mediaGraphName The Media Graph name.
         * 
         * @return builder
         * 
         */
        public Builder mediaGraphName(String mediaGraphName) {
            return mediaGraphName(Output.of(mediaGraphName));
        }

        /**
         * @param resourceGroupName The name of the resource group within the Azure subscription.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group within the Azure subscription.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param sinks Media Graph sinks.
         * 
         * @return builder
         * 
         */
        public Builder sinks(Output> sinks) {
            $.sinks = sinks;
            return this;
        }

        /**
         * @param sinks Media Graph sinks.
         * 
         * @return builder
         * 
         */
        public Builder sinks(List sinks) {
            return sinks(Output.of(sinks));
        }

        /**
         * @param sinks Media Graph sinks.
         * 
         * @return builder
         * 
         */
        public Builder sinks(MediaGraphAssetSinkArgs... sinks) {
            return sinks(List.of(sinks));
        }

        /**
         * @param sources Media Graph sources.
         * 
         * @return builder
         * 
         */
        public Builder sources(Output> sources) {
            $.sources = sources;
            return this;
        }

        /**
         * @param sources Media Graph sources.
         * 
         * @return builder
         * 
         */
        public Builder sources(List sources) {
            return sources(Output.of(sources));
        }

        /**
         * @param sources Media Graph sources.
         * 
         * @return builder
         * 
         */
        public Builder sources(MediaGraphRtspSourceArgs... sources) {
            return sources(List.of(sources));
        }

        public MediaGraphArgs build() {
            if ($.accountName == null) {
                throw new MissingRequiredPropertyException("MediaGraphArgs", "accountName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("MediaGraphArgs", "resourceGroupName");
            }
            if ($.sinks == null) {
                throw new MissingRequiredPropertyException("MediaGraphArgs", "sinks");
            }
            if ($.sources == null) {
                throw new MissingRequiredPropertyException("MediaGraphArgs", "sources");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy