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

com.pulumi.azurenative.media.inputs.GetTransformPlainArgs 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 GetTransformPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetTransformPlainArgs Empty = new GetTransformPlainArgs();

    /**
     * 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 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;
    }

    /**
     * The Transform name.
     * 
     */
    @Import(name="transformName", required=true)
    private String transformName;

    /**
     * @return The Transform name.
     * 
     */
    public String transformName() {
        return this.transformName;
    }

    private GetTransformPlainArgs() {}

    private GetTransformPlainArgs(GetTransformPlainArgs $) {
        this.accountName = $.accountName;
        this.resourceGroupName = $.resourceGroupName;
        this.transformName = $.transformName;
    }

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

    public static final class Builder {
        private GetTransformPlainArgs $;

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

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

        /**
         * @param accountName The Media Services account name.
         * 
         * @return builder
         * 
         */
        public Builder accountName(String accountName) {
            $.accountName = accountName;
            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;
        }

        /**
         * @param transformName The Transform name.
         * 
         * @return builder
         * 
         */
        public Builder transformName(String transformName) {
            $.transformName = transformName;
            return this;
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy