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

com.pulumi.azurenative.network.inputs.VpnServerConfigVpnClientRevokedCertificateArgs Maven / Gradle / Ivy

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

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


/**
 * Properties of the revoked VPN client certificate of VpnServerConfiguration.
 * 
 */
public final class VpnServerConfigVpnClientRevokedCertificateArgs extends com.pulumi.resources.ResourceArgs {

    public static final VpnServerConfigVpnClientRevokedCertificateArgs Empty = new VpnServerConfigVpnClientRevokedCertificateArgs();

    /**
     * The certificate name.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

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

    /**
     * The revoked VPN client certificate thumbprint.
     * 
     */
    @Import(name="thumbprint")
    private @Nullable Output thumbprint;

    /**
     * @return The revoked VPN client certificate thumbprint.
     * 
     */
    public Optional> thumbprint() {
        return Optional.ofNullable(this.thumbprint);
    }

    private VpnServerConfigVpnClientRevokedCertificateArgs() {}

    private VpnServerConfigVpnClientRevokedCertificateArgs(VpnServerConfigVpnClientRevokedCertificateArgs $) {
        this.name = $.name;
        this.thumbprint = $.thumbprint;
    }

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

    public static final class Builder {
        private VpnServerConfigVpnClientRevokedCertificateArgs $;

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

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

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

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

        /**
         * @param thumbprint The revoked VPN client certificate thumbprint.
         * 
         * @return builder
         * 
         */
        public Builder thumbprint(@Nullable Output thumbprint) {
            $.thumbprint = thumbprint;
            return this;
        }

        /**
         * @param thumbprint The revoked VPN client certificate thumbprint.
         * 
         * @return builder
         * 
         */
        public Builder thumbprint(String thumbprint) {
            return thumbprint(Output.of(thumbprint));
        }

        public VpnServerConfigVpnClientRevokedCertificateArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy