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

com.pulumi.azure.healthcare.inputs.DicomServiceAuthenticationArgs 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.15.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.azure.healthcare.inputs;

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


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

    public static final DicomServiceAuthenticationArgs Empty = new DicomServiceAuthenticationArgs();

    /**
     * The intended audience to receive authentication tokens for the service. The default value is <https://dicom.azurehealthcareapis.azure.com>
     * 
     */
    @Import(name="audiences")
    private @Nullable Output> audiences;

    /**
     * @return The intended audience to receive authentication tokens for the service. The default value is <https://dicom.azurehealthcareapis.azure.com>
     * 
     */
    public Optional>> audiences() {
        return Optional.ofNullable(this.audiences);
    }

    @Import(name="authority")
    private @Nullable Output authority;

    public Optional> authority() {
        return Optional.ofNullable(this.authority);
    }

    private DicomServiceAuthenticationArgs() {}

    private DicomServiceAuthenticationArgs(DicomServiceAuthenticationArgs $) {
        this.audiences = $.audiences;
        this.authority = $.authority;
    }

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

    public static final class Builder {
        private DicomServiceAuthenticationArgs $;

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

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

        /**
         * @param audiences The intended audience to receive authentication tokens for the service. The default value is <https://dicom.azurehealthcareapis.azure.com>
         * 
         * @return builder
         * 
         */
        public Builder audiences(@Nullable Output> audiences) {
            $.audiences = audiences;
            return this;
        }

        /**
         * @param audiences The intended audience to receive authentication tokens for the service. The default value is <https://dicom.azurehealthcareapis.azure.com>
         * 
         * @return builder
         * 
         */
        public Builder audiences(List audiences) {
            return audiences(Output.of(audiences));
        }

        /**
         * @param audiences The intended audience to receive authentication tokens for the service. The default value is <https://dicom.azurehealthcareapis.azure.com>
         * 
         * @return builder
         * 
         */
        public Builder audiences(String... audiences) {
            return audiences(List.of(audiences));
        }

        public Builder authority(@Nullable Output authority) {
            $.authority = authority;
            return this;
        }

        public Builder authority(String authority) {
            return authority(Output.of(authority));
        }

        public DicomServiceAuthenticationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy