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

com.pulumi.azurenative.datafactory.inputs.GetTriggerEventSubscriptionStatusPlainArgs 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.datafactory.inputs;

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


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

    public static final GetTriggerEventSubscriptionStatusPlainArgs Empty = new GetTriggerEventSubscriptionStatusPlainArgs();

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

    /**
     * @return The factory name.
     * 
     */
    public String factoryName() {
        return this.factoryName;
    }

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

    /**
     * @return The resource group name.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

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

    /**
     * @return The trigger name.
     * 
     */
    public String triggerName() {
        return this.triggerName;
    }

    private GetTriggerEventSubscriptionStatusPlainArgs() {}

    private GetTriggerEventSubscriptionStatusPlainArgs(GetTriggerEventSubscriptionStatusPlainArgs $) {
        this.factoryName = $.factoryName;
        this.resourceGroupName = $.resourceGroupName;
        this.triggerName = $.triggerName;
    }

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

    public static final class Builder {
        private GetTriggerEventSubscriptionStatusPlainArgs $;

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

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

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

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

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

        public GetTriggerEventSubscriptionStatusPlainArgs build() {
            if ($.factoryName == null) {
                throw new MissingRequiredPropertyException("GetTriggerEventSubscriptionStatusPlainArgs", "factoryName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetTriggerEventSubscriptionStatusPlainArgs", "resourceGroupName");
            }
            if ($.triggerName == null) {
                throw new MissingRequiredPropertyException("GetTriggerEventSubscriptionStatusPlainArgs", "triggerName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy