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

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

// *** 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 GetCaCertificatePlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetCaCertificatePlainArgs Empty = new GetCaCertificatePlainArgs();

    /**
     * Name of the CA certificate.
     * 
     */
    @Import(name="caCertificateName", required=true)
    private String caCertificateName;

    /**
     * @return Name of the CA certificate.
     * 
     */
    public String caCertificateName() {
        return this.caCertificateName;
    }

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

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

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

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

    private GetCaCertificatePlainArgs() {}

    private GetCaCertificatePlainArgs(GetCaCertificatePlainArgs $) {
        this.caCertificateName = $.caCertificateName;
        this.namespaceName = $.namespaceName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetCaCertificatePlainArgs $;

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

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

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

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

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

        public GetCaCertificatePlainArgs build() {
            if ($.caCertificateName == null) {
                throw new MissingRequiredPropertyException("GetCaCertificatePlainArgs", "caCertificateName");
            }
            if ($.namespaceName == null) {
                throw new MissingRequiredPropertyException("GetCaCertificatePlainArgs", "namespaceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetCaCertificatePlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy