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

com.pulumi.azurenative.iotoperationsmq.outputs.BrokerAuthenticatorCustomAuthResponse Maven / Gradle / Ivy

// *** 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.iotoperationsmq.outputs;

import com.pulumi.azurenative.iotoperationsmq.outputs.BrokerAuthenticatorCustomAuthX509Response;
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 BrokerAuthenticatorCustomAuthX509Response x509;

    private BrokerAuthenticatorCustomAuthResponse() {}
    /**
     * @return X509 Custom Auth type details.
     * 
     */
    public BrokerAuthenticatorCustomAuthX509Response 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 BrokerAuthenticatorCustomAuthX509Response x509;
        public Builder() {}
        public Builder(BrokerAuthenticatorCustomAuthResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.x509 = defaults.x509;
        }

        @CustomType.Setter
        public Builder x509(BrokerAuthenticatorCustomAuthX509Response 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