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

com.pulumi.azurenative.securityandcompliance.inputs.ServiceAuthenticationConfigurationInfoArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.securityandcompliance.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;


/**
 * Authentication configuration information
 * 
 */
public final class ServiceAuthenticationConfigurationInfoArgs extends com.pulumi.resources.ResourceArgs {

    public static final ServiceAuthenticationConfigurationInfoArgs Empty = new ServiceAuthenticationConfigurationInfoArgs();

    /**
     * The audience url for the service
     * 
     */
    @Import(name="audience")
    private @Nullable Output audience;

    /**
     * @return The audience url for the service
     * 
     */
    public Optional> audience() {
        return Optional.ofNullable(this.audience);
    }

    /**
     * The authority url for the service
     * 
     */
    @Import(name="authority")
    private @Nullable Output authority;

    /**
     * @return The authority url for the service
     * 
     */
    public Optional> authority() {
        return Optional.ofNullable(this.authority);
    }

    /**
     * If the SMART on FHIR proxy is enabled
     * 
     */
    @Import(name="smartProxyEnabled")
    private @Nullable Output smartProxyEnabled;

    /**
     * @return If the SMART on FHIR proxy is enabled
     * 
     */
    public Optional> smartProxyEnabled() {
        return Optional.ofNullable(this.smartProxyEnabled);
    }

    private ServiceAuthenticationConfigurationInfoArgs() {}

    private ServiceAuthenticationConfigurationInfoArgs(ServiceAuthenticationConfigurationInfoArgs $) {
        this.audience = $.audience;
        this.authority = $.authority;
        this.smartProxyEnabled = $.smartProxyEnabled;
    }

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

    public static final class Builder {
        private ServiceAuthenticationConfigurationInfoArgs $;

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

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

        /**
         * @param audience The audience url for the service
         * 
         * @return builder
         * 
         */
        public Builder audience(@Nullable Output audience) {
            $.audience = audience;
            return this;
        }

        /**
         * @param audience The audience url for the service
         * 
         * @return builder
         * 
         */
        public Builder audience(String audience) {
            return audience(Output.of(audience));
        }

        /**
         * @param authority The authority url for the service
         * 
         * @return builder
         * 
         */
        public Builder authority(@Nullable Output authority) {
            $.authority = authority;
            return this;
        }

        /**
         * @param authority The authority url for the service
         * 
         * @return builder
         * 
         */
        public Builder authority(String authority) {
            return authority(Output.of(authority));
        }

        /**
         * @param smartProxyEnabled If the SMART on FHIR proxy is enabled
         * 
         * @return builder
         * 
         */
        public Builder smartProxyEnabled(@Nullable Output smartProxyEnabled) {
            $.smartProxyEnabled = smartProxyEnabled;
            return this;
        }

        /**
         * @param smartProxyEnabled If the SMART on FHIR proxy is enabled
         * 
         * @return builder
         * 
         */
        public Builder smartProxyEnabled(Boolean smartProxyEnabled) {
            return smartProxyEnabled(Output.of(smartProxyEnabled));
        }

        public ServiceAuthenticationConfigurationInfoArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy