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

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

import com.pulumi.azure.healthcare.inputs.FhirServiceAuthenticationArgs;
import com.pulumi.azure.healthcare.inputs.FhirServiceCorsArgs;
import com.pulumi.azure.healthcare.inputs.FhirServiceIdentityArgs;
import com.pulumi.azure.healthcare.inputs.FhirServiceOciArtifactArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final FhirServiceState Empty = new FhirServiceState();

    /**
     * A list of the access policies of the service instance.
     * 
     */
    @Import(name="accessPolicyObjectIds")
    private @Nullable Output> accessPolicyObjectIds;

    /**
     * @return A list of the access policies of the service instance.
     * 
     */
    public Optional>> accessPolicyObjectIds() {
        return Optional.ofNullable(this.accessPolicyObjectIds);
    }

    /**
     * An `authentication` block as defined below.
     * 
     */
    @Import(name="authentication")
    private @Nullable Output authentication;

    /**
     * @return An `authentication` block as defined below.
     * 
     */
    public Optional> authentication() {
        return Optional.ofNullable(this.authentication);
    }

    /**
     * Specifies the name of the storage account which the operation configuration information is exported to.
     * 
     */
    @Import(name="configurationExportStorageAccountName")
    private @Nullable Output configurationExportStorageAccountName;

    /**
     * @return Specifies the name of the storage account which the operation configuration information is exported to.
     * 
     */
    public Optional> configurationExportStorageAccountName() {
        return Optional.ofNullable(this.configurationExportStorageAccountName);
    }

    /**
     * A list of azure container registry settings used for convert data operation of the service instance.
     * 
     */
    @Import(name="containerRegistryLoginServerUrls")
    private @Nullable Output> containerRegistryLoginServerUrls;

    /**
     * @return A list of azure container registry settings used for convert data operation of the service instance.
     * 
     */
    public Optional>> containerRegistryLoginServerUrls() {
        return Optional.ofNullable(this.containerRegistryLoginServerUrls);
    }

    /**
     * A `cors` block as defined below.
     * 
     */
    @Import(name="cors")
    private @Nullable Output cors;

    /**
     * @return A `cors` block as defined below.
     * 
     */
    public Optional> cors() {
        return Optional.ofNullable(this.cors);
    }

    /**
     * An `identity` block as defined below.
     * 
     */
    @Import(name="identity")
    private @Nullable Output identity;

    /**
     * @return An `identity` block as defined below.
     * 
     */
    public Optional> identity() {
        return Optional.ofNullable(this.identity);
    }

    /**
     * Specifies the kind of the Healthcare FHIR Service. Possible values are: `fhir-Stu3` and `fhir-R4`. Defaults to `fhir-R4`. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    @Import(name="kind")
    private @Nullable Output kind;

    /**
     * @return Specifies the kind of the Healthcare FHIR Service. Possible values are: `fhir-Stu3` and `fhir-R4`. Defaults to `fhir-R4`. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    public Optional> kind() {
        return Optional.ofNullable(this.kind);
    }

    /**
     * Specifies the Azure Region where the Healthcare FHIR Service should be created. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return Specifies the Azure Region where the Healthcare FHIR Service should be created. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * Specifies the name of the Healthcare FHIR Service. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Specifies the name of the Healthcare FHIR Service. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * [A list](https://www.terraform.io/docs/configuration/attr-as-blocks.html) of `oci_artifact` objects as defined below to describe [OCI artifacts for export](https://learn.microsoft.com/en-gb/azure/healthcare-apis/fhir/de-identified-export).
     * 
     */
    @Import(name="ociArtifacts")
    private @Nullable Output> ociArtifacts;

    /**
     * @return [A list](https://www.terraform.io/docs/configuration/attr-as-blocks.html) of `oci_artifact` objects as defined below to describe [OCI artifacts for export](https://learn.microsoft.com/en-gb/azure/healthcare-apis/fhir/de-identified-export).
     * 
     */
    public Optional>> ociArtifacts() {
        return Optional.ofNullable(this.ociArtifacts);
    }

    /**
     * Whether public networks access is enabled.
     * 
     */
    @Import(name="publicNetworkAccessEnabled")
    private @Nullable Output publicNetworkAccessEnabled;

    /**
     * @return Whether public networks access is enabled.
     * 
     */
    public Optional> publicNetworkAccessEnabled() {
        return Optional.ofNullable(this.publicNetworkAccessEnabled);
    }

    /**
     * Specifies the name of the Resource Group in which to create the Healthcare FHIR Service. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="resourceGroupName")
    private @Nullable Output resourceGroupName;

    /**
     * @return Specifies the name of the Resource Group in which to create the Healthcare FHIR Service. Changing this forces a new resource to be created.
     * 
     */
    public Optional> resourceGroupName() {
        return Optional.ofNullable(this.resourceGroupName);
    }

    /**
     * A mapping of tags to assign to the Healthcare FHIR Service.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return A mapping of tags to assign to the Healthcare FHIR Service.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    /**
     * Specifies the id of the Healthcare Workspace where the Healthcare FHIR Service should exist. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    @Import(name="workspaceId")
    private @Nullable Output workspaceId;

    /**
     * @return Specifies the id of the Healthcare Workspace where the Healthcare FHIR Service should exist. Changing this forces a new Healthcare FHIR Service to be created.
     * 
     */
    public Optional> workspaceId() {
        return Optional.ofNullable(this.workspaceId);
    }

    private FhirServiceState() {}

    private FhirServiceState(FhirServiceState $) {
        this.accessPolicyObjectIds = $.accessPolicyObjectIds;
        this.authentication = $.authentication;
        this.configurationExportStorageAccountName = $.configurationExportStorageAccountName;
        this.containerRegistryLoginServerUrls = $.containerRegistryLoginServerUrls;
        this.cors = $.cors;
        this.identity = $.identity;
        this.kind = $.kind;
        this.location = $.location;
        this.name = $.name;
        this.ociArtifacts = $.ociArtifacts;
        this.publicNetworkAccessEnabled = $.publicNetworkAccessEnabled;
        this.resourceGroupName = $.resourceGroupName;
        this.tags = $.tags;
        this.workspaceId = $.workspaceId;
    }

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

    public static final class Builder {
        private FhirServiceState $;

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

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

        /**
         * @param accessPolicyObjectIds A list of the access policies of the service instance.
         * 
         * @return builder
         * 
         */
        public Builder accessPolicyObjectIds(@Nullable Output> accessPolicyObjectIds) {
            $.accessPolicyObjectIds = accessPolicyObjectIds;
            return this;
        }

        /**
         * @param accessPolicyObjectIds A list of the access policies of the service instance.
         * 
         * @return builder
         * 
         */
        public Builder accessPolicyObjectIds(List accessPolicyObjectIds) {
            return accessPolicyObjectIds(Output.of(accessPolicyObjectIds));
        }

        /**
         * @param accessPolicyObjectIds A list of the access policies of the service instance.
         * 
         * @return builder
         * 
         */
        public Builder accessPolicyObjectIds(String... accessPolicyObjectIds) {
            return accessPolicyObjectIds(List.of(accessPolicyObjectIds));
        }

        /**
         * @param authentication An `authentication` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder authentication(@Nullable Output authentication) {
            $.authentication = authentication;
            return this;
        }

        /**
         * @param authentication An `authentication` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder authentication(FhirServiceAuthenticationArgs authentication) {
            return authentication(Output.of(authentication));
        }

        /**
         * @param configurationExportStorageAccountName Specifies the name of the storage account which the operation configuration information is exported to.
         * 
         * @return builder
         * 
         */
        public Builder configurationExportStorageAccountName(@Nullable Output configurationExportStorageAccountName) {
            $.configurationExportStorageAccountName = configurationExportStorageAccountName;
            return this;
        }

        /**
         * @param configurationExportStorageAccountName Specifies the name of the storage account which the operation configuration information is exported to.
         * 
         * @return builder
         * 
         */
        public Builder configurationExportStorageAccountName(String configurationExportStorageAccountName) {
            return configurationExportStorageAccountName(Output.of(configurationExportStorageAccountName));
        }

        /**
         * @param containerRegistryLoginServerUrls A list of azure container registry settings used for convert data operation of the service instance.
         * 
         * @return builder
         * 
         */
        public Builder containerRegistryLoginServerUrls(@Nullable Output> containerRegistryLoginServerUrls) {
            $.containerRegistryLoginServerUrls = containerRegistryLoginServerUrls;
            return this;
        }

        /**
         * @param containerRegistryLoginServerUrls A list of azure container registry settings used for convert data operation of the service instance.
         * 
         * @return builder
         * 
         */
        public Builder containerRegistryLoginServerUrls(List containerRegistryLoginServerUrls) {
            return containerRegistryLoginServerUrls(Output.of(containerRegistryLoginServerUrls));
        }

        /**
         * @param containerRegistryLoginServerUrls A list of azure container registry settings used for convert data operation of the service instance.
         * 
         * @return builder
         * 
         */
        public Builder containerRegistryLoginServerUrls(String... containerRegistryLoginServerUrls) {
            return containerRegistryLoginServerUrls(List.of(containerRegistryLoginServerUrls));
        }

        /**
         * @param cors A `cors` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder cors(@Nullable Output cors) {
            $.cors = cors;
            return this;
        }

        /**
         * @param cors A `cors` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder cors(FhirServiceCorsArgs cors) {
            return cors(Output.of(cors));
        }

        /**
         * @param identity An `identity` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder identity(@Nullable Output identity) {
            $.identity = identity;
            return this;
        }

        /**
         * @param identity An `identity` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder identity(FhirServiceIdentityArgs identity) {
            return identity(Output.of(identity));
        }

        /**
         * @param kind Specifies the kind of the Healthcare FHIR Service. Possible values are: `fhir-Stu3` and `fhir-R4`. Defaults to `fhir-R4`. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder kind(@Nullable Output kind) {
            $.kind = kind;
            return this;
        }

        /**
         * @param kind Specifies the kind of the Healthcare FHIR Service. Possible values are: `fhir-Stu3` and `fhir-R4`. Defaults to `fhir-R4`. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder kind(String kind) {
            return kind(Output.of(kind));
        }

        /**
         * @param location Specifies the Azure Region where the Healthcare FHIR Service should be created. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location Specifies the Azure Region where the Healthcare FHIR Service should be created. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param name Specifies the name of the Healthcare FHIR Service. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Specifies the name of the Healthcare FHIR Service. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param ociArtifacts [A list](https://www.terraform.io/docs/configuration/attr-as-blocks.html) of `oci_artifact` objects as defined below to describe [OCI artifacts for export](https://learn.microsoft.com/en-gb/azure/healthcare-apis/fhir/de-identified-export).
         * 
         * @return builder
         * 
         */
        public Builder ociArtifacts(@Nullable Output> ociArtifacts) {
            $.ociArtifacts = ociArtifacts;
            return this;
        }

        /**
         * @param ociArtifacts [A list](https://www.terraform.io/docs/configuration/attr-as-blocks.html) of `oci_artifact` objects as defined below to describe [OCI artifacts for export](https://learn.microsoft.com/en-gb/azure/healthcare-apis/fhir/de-identified-export).
         * 
         * @return builder
         * 
         */
        public Builder ociArtifacts(List ociArtifacts) {
            return ociArtifacts(Output.of(ociArtifacts));
        }

        /**
         * @param ociArtifacts [A list](https://www.terraform.io/docs/configuration/attr-as-blocks.html) of `oci_artifact` objects as defined below to describe [OCI artifacts for export](https://learn.microsoft.com/en-gb/azure/healthcare-apis/fhir/de-identified-export).
         * 
         * @return builder
         * 
         */
        public Builder ociArtifacts(FhirServiceOciArtifactArgs... ociArtifacts) {
            return ociArtifacts(List.of(ociArtifacts));
        }

        /**
         * @param publicNetworkAccessEnabled Whether public networks access is enabled.
         * 
         * @return builder
         * 
         */
        public Builder publicNetworkAccessEnabled(@Nullable Output publicNetworkAccessEnabled) {
            $.publicNetworkAccessEnabled = publicNetworkAccessEnabled;
            return this;
        }

        /**
         * @param publicNetworkAccessEnabled Whether public networks access is enabled.
         * 
         * @return builder
         * 
         */
        public Builder publicNetworkAccessEnabled(Boolean publicNetworkAccessEnabled) {
            return publicNetworkAccessEnabled(Output.of(publicNetworkAccessEnabled));
        }

        /**
         * @param resourceGroupName Specifies the name of the Resource Group in which to create the Healthcare FHIR Service. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(@Nullable Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Specifies the name of the Resource Group in which to create the Healthcare FHIR Service. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param tags A mapping of tags to assign to the Healthcare FHIR Service.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags A mapping of tags to assign to the Healthcare FHIR Service.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param workspaceId Specifies the id of the Healthcare Workspace where the Healthcare FHIR Service should exist. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder workspaceId(@Nullable Output workspaceId) {
            $.workspaceId = workspaceId;
            return this;
        }

        /**
         * @param workspaceId Specifies the id of the Healthcare Workspace where the Healthcare FHIR Service should exist. Changing this forces a new Healthcare FHIR Service to be created.
         * 
         * @return builder
         * 
         */
        public Builder workspaceId(String workspaceId) {
            return workspaceId(Output.of(workspaceId));
        }

        public FhirServiceState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy