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

com.pulumi.azurenative.media.inputs.GetLiveEventTrackIngestHeartbeatsPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetLiveEventTrackIngestHeartbeatsPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetLiveEventTrackIngestHeartbeatsPlainArgs Empty = new GetLiveEventTrackIngestHeartbeatsPlainArgs();

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

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

    /**
     * The name of the live event, maximum length is 32.
     * 
     */
    @Import(name="liveEventName", required=true)
    private String liveEventName;

    /**
     * @return The name of the live event, maximum length is 32.
     * 
     */
    public String liveEventName() {
        return this.liveEventName;
    }

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

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

    private GetLiveEventTrackIngestHeartbeatsPlainArgs() {}

    private GetLiveEventTrackIngestHeartbeatsPlainArgs(GetLiveEventTrackIngestHeartbeatsPlainArgs $) {
        this.accountName = $.accountName;
        this.liveEventName = $.liveEventName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetLiveEventTrackIngestHeartbeatsPlainArgs $;

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

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

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

        /**
         * @param liveEventName The name of the live event, maximum length is 32.
         * 
         * @return builder
         * 
         */
        public Builder liveEventName(String liveEventName) {
            $.liveEventName = liveEventName;
            return this;
        }

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy