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

com.pulumi.azurenative.devices.inputs.RootCertificatePropertiesArgs 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.devices.inputs;

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


/**
 * This property store root certificate related information
 * 
 */
public final class RootCertificatePropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final RootCertificatePropertiesArgs Empty = new RootCertificatePropertiesArgs();

    /**
     * This property when set to true, hub will use G2 cert; while it's set to false, hub uses Baltimore Cert.
     * 
     */
    @Import(name="enableRootCertificateV2")
    private @Nullable Output enableRootCertificateV2;

    /**
     * @return This property when set to true, hub will use G2 cert; while it's set to false, hub uses Baltimore Cert.
     * 
     */
    public Optional> enableRootCertificateV2() {
        return Optional.ofNullable(this.enableRootCertificateV2);
    }

    private RootCertificatePropertiesArgs() {}

    private RootCertificatePropertiesArgs(RootCertificatePropertiesArgs $) {
        this.enableRootCertificateV2 = $.enableRootCertificateV2;
    }

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

    public static final class Builder {
        private RootCertificatePropertiesArgs $;

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

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

        /**
         * @param enableRootCertificateV2 This property when set to true, hub will use G2 cert; while it's set to false, hub uses Baltimore Cert.
         * 
         * @return builder
         * 
         */
        public Builder enableRootCertificateV2(@Nullable Output enableRootCertificateV2) {
            $.enableRootCertificateV2 = enableRootCertificateV2;
            return this;
        }

        /**
         * @param enableRootCertificateV2 This property when set to true, hub will use G2 cert; while it's set to false, hub uses Baltimore Cert.
         * 
         * @return builder
         * 
         */
        public Builder enableRootCertificateV2(Boolean enableRootCertificateV2) {
            return enableRootCertificateV2(Output.of(enableRootCertificateV2));
        }

        public RootCertificatePropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy