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

com.pulumi.azurenative.eventgrid.inputs.GetChannelFullUrlPlainArgs Maven / Gradle / Ivy

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

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


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

    public static final GetChannelFullUrlPlainArgs Empty = new GetChannelFullUrlPlainArgs();

    /**
     * Name of the Channel.
     * 
     */
    @Import(name="channelName", required=true)
    private String channelName;

    /**
     * @return Name of the Channel.
     * 
     */
    public String channelName() {
        return this.channelName;
    }

    /**
     * Name of the partner namespace.
     * 
     */
    @Import(name="partnerNamespaceName", required=true)
    private String partnerNamespaceName;

    /**
     * @return Name of the partner namespace.
     * 
     */
    public String partnerNamespaceName() {
        return this.partnerNamespaceName;
    }

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

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

    private GetChannelFullUrlPlainArgs() {}

    private GetChannelFullUrlPlainArgs(GetChannelFullUrlPlainArgs $) {
        this.channelName = $.channelName;
        this.partnerNamespaceName = $.partnerNamespaceName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetChannelFullUrlPlainArgs $;

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

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

        /**
         * @param channelName Name of the Channel.
         * 
         * @return builder
         * 
         */
        public Builder channelName(String channelName) {
            $.channelName = channelName;
            return this;
        }

        /**
         * @param partnerNamespaceName Name of the partner namespace.
         * 
         * @return builder
         * 
         */
        public Builder partnerNamespaceName(String partnerNamespaceName) {
            $.partnerNamespaceName = partnerNamespaceName;
            return this;
        }

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

        public GetChannelFullUrlPlainArgs build() {
            if ($.channelName == null) {
                throw new MissingRequiredPropertyException("GetChannelFullUrlPlainArgs", "channelName");
            }
            if ($.partnerNamespaceName == null) {
                throw new MissingRequiredPropertyException("GetChannelFullUrlPlainArgs", "partnerNamespaceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetChannelFullUrlPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy