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

com.pulumi.azurenative.iotoperations.outputs.BrokerAuthenticatorCustomAuthResponse 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.iotoperations.outputs;

import com.pulumi.azurenative.iotoperations.outputs.X509ManualCertificateResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;

@CustomType
public final class BrokerAuthenticatorCustomAuthResponse {
    /**
     * @return X509 Custom Auth type details.
     * 
     */
    private X509ManualCertificateResponse x509;

    private BrokerAuthenticatorCustomAuthResponse() {}
    /**
     * @return X509 Custom Auth type details.
     * 
     */
    public X509ManualCertificateResponse x509() {
        return this.x509;
    }

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

    public static Builder builder(BrokerAuthenticatorCustomAuthResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private X509ManualCertificateResponse x509;
        public Builder() {}
        public Builder(BrokerAuthenticatorCustomAuthResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.x509 = defaults.x509;
        }

        @CustomType.Setter
        public Builder x509(X509ManualCertificateResponse x509) {
            if (x509 == null) {
              throw new MissingRequiredPropertyException("BrokerAuthenticatorCustomAuthResponse", "x509");
            }
            this.x509 = x509;
            return this;
        }
        public BrokerAuthenticatorCustomAuthResponse build() {
            final var _resultValue = new BrokerAuthenticatorCustomAuthResponse();
            _resultValue.x509 = x509;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy