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

com.pulumi.azurenative.sql.ServerTrustCertificateArgs Maven / Gradle / Ivy

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

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class ServerTrustCertificateArgs extends com.pulumi.resources.ResourceArgs {

    public static final ServerTrustCertificateArgs Empty = new ServerTrustCertificateArgs();

    /**
     * Name of of the certificate to upload.
     * 
     */
    @Import(name="certificateName")
    private @Nullable Output certificateName;

    /**
     * @return Name of of the certificate to upload.
     * 
     */
    public Optional> certificateName() {
        return Optional.ofNullable(this.certificateName);
    }

    /**
     * The name of the managed instance.
     * 
     */
    @Import(name="managedInstanceName", required=true)
    private Output managedInstanceName;

    /**
     * @return The name of the managed instance.
     * 
     */
    public Output managedInstanceName() {
        return this.managedInstanceName;
    }

    /**
     * The certificate public blob
     * 
     */
    @Import(name="publicBlob")
    private @Nullable Output publicBlob;

    /**
     * @return The certificate public blob
     * 
     */
    public Optional> publicBlob() {
        return Optional.ofNullable(this.publicBlob);
    }

    /**
     * The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private ServerTrustCertificateArgs() {}

    private ServerTrustCertificateArgs(ServerTrustCertificateArgs $) {
        this.certificateName = $.certificateName;
        this.managedInstanceName = $.managedInstanceName;
        this.publicBlob = $.publicBlob;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private ServerTrustCertificateArgs $;

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

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

        /**
         * @param certificateName Name of of the certificate to upload.
         * 
         * @return builder
         * 
         */
        public Builder certificateName(@Nullable Output certificateName) {
            $.certificateName = certificateName;
            return this;
        }

        /**
         * @param certificateName Name of of the certificate to upload.
         * 
         * @return builder
         * 
         */
        public Builder certificateName(String certificateName) {
            return certificateName(Output.of(certificateName));
        }

        /**
         * @param managedInstanceName The name of the managed instance.
         * 
         * @return builder
         * 
         */
        public Builder managedInstanceName(Output managedInstanceName) {
            $.managedInstanceName = managedInstanceName;
            return this;
        }

        /**
         * @param managedInstanceName The name of the managed instance.
         * 
         * @return builder
         * 
         */
        public Builder managedInstanceName(String managedInstanceName) {
            return managedInstanceName(Output.of(managedInstanceName));
        }

        /**
         * @param publicBlob The certificate public blob
         * 
         * @return builder
         * 
         */
        public Builder publicBlob(@Nullable Output publicBlob) {
            $.publicBlob = publicBlob;
            return this;
        }

        /**
         * @param publicBlob The certificate public blob
         * 
         * @return builder
         * 
         */
        public Builder publicBlob(String publicBlob) {
            return publicBlob(Output.of(publicBlob));
        }

        /**
         * @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        public ServerTrustCertificateArgs build() {
            if ($.managedInstanceName == null) {
                throw new MissingRequiredPropertyException("ServerTrustCertificateArgs", "managedInstanceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ServerTrustCertificateArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy