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

com.pulumi.azure.machinelearning.inputs.InferenceClusterSslArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.machinelearning.inputs;

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


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

    public static final InferenceClusterSslArgs Empty = new InferenceClusterSslArgs();

    /**
     * The certificate for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    @Import(name="cert")
    private @Nullable Output cert;

    /**
     * @return The certificate for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    public Optional> cert() {
        return Optional.ofNullable(this.cert);
    }

    /**
     * The cname of the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    @Import(name="cname")
    private @Nullable Output cname;

    /**
     * @return The cname of the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    public Optional> cname() {
        return Optional.ofNullable(this.cname);
    }

    /**
     * The key content for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    @Import(name="key")
    private @Nullable Output key;

    /**
     * @return The key content for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    public Optional> key() {
        return Optional.ofNullable(this.key);
    }

    /**
     * The leaf domain label for the SSL configuration. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    @Import(name="leafDomainLabel")
    private @Nullable Output leafDomainLabel;

    /**
     * @return The leaf domain label for the SSL configuration. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    public Optional> leafDomainLabel() {
        return Optional.ofNullable(this.leafDomainLabel);
    }

    /**
     * Whether or not to overwrite existing leaf domain. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname` Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    @Import(name="overwriteExistingDomain")
    private @Nullable Output overwriteExistingDomain;

    /**
     * @return Whether or not to overwrite existing leaf domain. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname` Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
     * 
     */
    public Optional> overwriteExistingDomain() {
        return Optional.ofNullable(this.overwriteExistingDomain);
    }

    private InferenceClusterSslArgs() {}

    private InferenceClusterSslArgs(InferenceClusterSslArgs $) {
        this.cert = $.cert;
        this.cname = $.cname;
        this.key = $.key;
        this.leafDomainLabel = $.leafDomainLabel;
        this.overwriteExistingDomain = $.overwriteExistingDomain;
    }

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

    public static final class Builder {
        private InferenceClusterSslArgs $;

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

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

        /**
         * @param cert The certificate for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder cert(@Nullable Output cert) {
            $.cert = cert;
            return this;
        }

        /**
         * @param cert The certificate for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder cert(String cert) {
            return cert(Output.of(cert));
        }

        /**
         * @param cname The cname of the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder cname(@Nullable Output cname) {
            $.cname = cname;
            return this;
        }

        /**
         * @param cname The cname of the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder cname(String cname) {
            return cname(Output.of(cname));
        }

        /**
         * @param key The key content for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder key(@Nullable Output key) {
            $.key = key;
            return this;
        }

        /**
         * @param key The key content for the SSL configuration.Conflicts with `ssl[0].leaf_domain_label`,`ssl[0].overwrite_existing_domain`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder key(String key) {
            return key(Output.of(key));
        }

        /**
         * @param leafDomainLabel The leaf domain label for the SSL configuration. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder leafDomainLabel(@Nullable Output leafDomainLabel) {
            $.leafDomainLabel = leafDomainLabel;
            return this;
        }

        /**
         * @param leafDomainLabel The leaf domain label for the SSL configuration. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname`. Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder leafDomainLabel(String leafDomainLabel) {
            return leafDomainLabel(Output.of(leafDomainLabel));
        }

        /**
         * @param overwriteExistingDomain Whether or not to overwrite existing leaf domain. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname` Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder overwriteExistingDomain(@Nullable Output overwriteExistingDomain) {
            $.overwriteExistingDomain = overwriteExistingDomain;
            return this;
        }

        /**
         * @param overwriteExistingDomain Whether or not to overwrite existing leaf domain. Conflicts with `ssl[0].cert`,`ssl[0].key`,`ssl[0].cname` Changing this forces a new Machine Learning Inference Cluster to be created. Defaults to `""`.
         * 
         * @return builder
         * 
         */
        public Builder overwriteExistingDomain(Boolean overwriteExistingDomain) {
            return overwriteExistingDomain(Output.of(overwriteExistingDomain));
        }

        public InferenceClusterSslArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy