1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. healthcare
  5. FhirStore
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

gcp.healthcare.FhirStore

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

    A FhirStore is a datastore inside a Healthcare dataset that conforms to the FHIR (https://www.hl7.org/fhir/STU3/) standard for Healthcare information exchange

    To get more information about FhirStore, see:

    Example Usage

    Healthcare Fhir Store Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const topic = new gcp.pubsub.Topic("topic", {name: "fhir-notifications"});
    const dataset = new gcp.healthcare.Dataset("dataset", {
        name: "example-dataset",
        location: "us-central1",
    });
    const _default = new gcp.healthcare.FhirStore("default", {
        name: "example-fhir-store",
        dataset: dataset.id,
        version: "R4",
        complexDataTypeReferenceParsing: "DISABLED",
        enableUpdateCreate: false,
        disableReferentialIntegrity: false,
        disableResourceVersioning: false,
        enableHistoryImport: false,
        defaultSearchHandlingStrict: false,
        notificationConfig: {
            pubsubTopic: topic.id,
        },
        labels: {
            label1: "labelvalue1",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    topic = gcp.pubsub.Topic("topic", name="fhir-notifications")
    dataset = gcp.healthcare.Dataset("dataset",
        name="example-dataset",
        location="us-central1")
    default = gcp.healthcare.FhirStore("default",
        name="example-fhir-store",
        dataset=dataset.id,
        version="R4",
        complex_data_type_reference_parsing="DISABLED",
        enable_update_create=False,
        disable_referential_integrity=False,
        disable_resource_versioning=False,
        enable_history_import=False,
        default_search_handling_strict=False,
        notification_config=gcp.healthcare.FhirStoreNotificationConfigArgs(
            pubsub_topic=topic.id,
        ),
        labels={
            "label1": "labelvalue1",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/healthcare"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/pubsub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		topic, err := pubsub.NewTopic(ctx, "topic", &pubsub.TopicArgs{
    			Name: pulumi.String("fhir-notifications"),
    		})
    		if err != nil {
    			return err
    		}
    		dataset, err := healthcare.NewDataset(ctx, "dataset", &healthcare.DatasetArgs{
    			Name:     pulumi.String("example-dataset"),
    			Location: pulumi.String("us-central1"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = healthcare.NewFhirStore(ctx, "default", &healthcare.FhirStoreArgs{
    			Name:                            pulumi.String("example-fhir-store"),
    			Dataset:                         dataset.ID(),
    			Version:                         pulumi.String("R4"),
    			ComplexDataTypeReferenceParsing: pulumi.String("DISABLED"),
    			EnableUpdateCreate:              pulumi.Bool(false),
    			DisableReferentialIntegrity:     pulumi.Bool(false),
    			DisableResourceVersioning:       pulumi.Bool(false),
    			EnableHistoryImport:             pulumi.Bool(false),
    			DefaultSearchHandlingStrict:     pulumi.Bool(false),
    			NotificationConfig: &healthcare.FhirStoreNotificationConfigArgs{
    				PubsubTopic: topic.ID(),
    			},
    			Labels: pulumi.StringMap{
    				"label1": pulumi.String("labelvalue1"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var topic = new Gcp.PubSub.Topic("topic", new()
        {
            Name = "fhir-notifications",
        });
    
        var dataset = new Gcp.Healthcare.Dataset("dataset", new()
        {
            Name = "example-dataset",
            Location = "us-central1",
        });
    
        var @default = new Gcp.Healthcare.FhirStore("default", new()
        {
            Name = "example-fhir-store",
            Dataset = dataset.Id,
            Version = "R4",
            ComplexDataTypeReferenceParsing = "DISABLED",
            EnableUpdateCreate = false,
            DisableReferentialIntegrity = false,
            DisableResourceVersioning = false,
            EnableHistoryImport = false,
            DefaultSearchHandlingStrict = false,
            NotificationConfig = new Gcp.Healthcare.Inputs.FhirStoreNotificationConfigArgs
            {
                PubsubTopic = topic.Id,
            },
            Labels = 
            {
                { "label1", "labelvalue1" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.pubsub.Topic;
    import com.pulumi.gcp.pubsub.TopicArgs;
    import com.pulumi.gcp.healthcare.Dataset;
    import com.pulumi.gcp.healthcare.DatasetArgs;
    import com.pulumi.gcp.healthcare.FhirStore;
    import com.pulumi.gcp.healthcare.FhirStoreArgs;
    import com.pulumi.gcp.healthcare.inputs.FhirStoreNotificationConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var topic = new Topic("topic", TopicArgs.builder()        
                .name("fhir-notifications")
                .build());
    
            var dataset = new Dataset("dataset", DatasetArgs.builder()        
                .name("example-dataset")
                .location("us-central1")
                .build());
    
            var default_ = new FhirStore("default", FhirStoreArgs.builder()        
                .name("example-fhir-store")
                .dataset(dataset.id())
                .version("R4")
                .complexDataTypeReferenceParsing("DISABLED")
                .enableUpdateCreate(false)
                .disableReferentialIntegrity(false)
                .disableResourceVersioning(false)
                .enableHistoryImport(false)
                .defaultSearchHandlingStrict(false)
                .notificationConfig(FhirStoreNotificationConfigArgs.builder()
                    .pubsubTopic(topic.id())
                    .build())
                .labels(Map.of("label1", "labelvalue1"))
                .build());
    
        }
    }
    
    resources:
      default:
        type: gcp:healthcare:FhirStore
        properties:
          name: example-fhir-store
          dataset: ${dataset.id}
          version: R4
          complexDataTypeReferenceParsing: DISABLED
          enableUpdateCreate: false
          disableReferentialIntegrity: false
          disableResourceVersioning: false
          enableHistoryImport: false
          defaultSearchHandlingStrict: false
          notificationConfig:
            pubsubTopic: ${topic.id}
          labels:
            label1: labelvalue1
      topic:
        type: gcp:pubsub:Topic
        properties:
          name: fhir-notifications
      dataset:
        type: gcp:healthcare:Dataset
        properties:
          name: example-dataset
          location: us-central1
    

    Healthcare Fhir Store Streaming Config

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const dataset = new gcp.healthcare.Dataset("dataset", {
        name: "example-dataset",
        location: "us-central1",
    });
    const bqDataset = new gcp.bigquery.Dataset("bq_dataset", {
        datasetId: "bq_example_dataset",
        friendlyName: "test",
        description: "This is a test description",
        location: "US",
        deleteContentsOnDestroy: true,
    });
    const _default = new gcp.healthcare.FhirStore("default", {
        name: "example-fhir-store",
        dataset: dataset.id,
        version: "R4",
        enableUpdateCreate: false,
        disableReferentialIntegrity: false,
        disableResourceVersioning: false,
        enableHistoryImport: false,
        labels: {
            label1: "labelvalue1",
        },
        streamConfigs: [{
            resourceTypes: ["Observation"],
            bigqueryDestination: {
                datasetUri: pulumi.interpolate`bq://${bqDataset.project}.${bqDataset.datasetId}`,
                schemaConfig: {
                    recursiveStructureDepth: 3,
                    lastUpdatedPartitionConfig: {
                        type: "HOUR",
                        expirationMs: "1000000",
                    },
                },
            },
        }],
    });
    const topic = new gcp.pubsub.Topic("topic", {name: "fhir-notifications"});
    
    import pulumi
    import pulumi_gcp as gcp
    
    dataset = gcp.healthcare.Dataset("dataset",
        name="example-dataset",
        location="us-central1")
    bq_dataset = gcp.bigquery.Dataset("bq_dataset",
        dataset_id="bq_example_dataset",
        friendly_name="test",
        description="This is a test description",
        location="US",
        delete_contents_on_destroy=True)
    default = gcp.healthcare.FhirStore("default",
        name="example-fhir-store",
        dataset=dataset.id,
        version="R4",
        enable_update_create=False,
        disable_referential_integrity=False,
        disable_resource_versioning=False,
        enable_history_import=False,
        labels={
            "label1": "labelvalue1",
        },
        stream_configs=[gcp.healthcare.FhirStoreStreamConfigArgs(
            resource_types=["Observation"],
            bigquery_destination=gcp.healthcare.FhirStoreStreamConfigBigqueryDestinationArgs(
                dataset_uri=pulumi.Output.all(bq_dataset.project, bq_dataset.dataset_id).apply(lambda project, dataset_id: f"bq://{project}.{dataset_id}"),
                schema_config=gcp.healthcare.FhirStoreStreamConfigBigqueryDestinationSchemaConfigArgs(
                    recursive_structure_depth=3,
                    last_updated_partition_config=gcp.healthcare.FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigArgs(
                        type="HOUR",
                        expiration_ms="1000000",
                    ),
                ),
            ),
        )])
    topic = gcp.pubsub.Topic("topic", name="fhir-notifications")
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/healthcare"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/pubsub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		dataset, err := healthcare.NewDataset(ctx, "dataset", &healthcare.DatasetArgs{
    			Name:     pulumi.String("example-dataset"),
    			Location: pulumi.String("us-central1"),
    		})
    		if err != nil {
    			return err
    		}
    		bqDataset, err := bigquery.NewDataset(ctx, "bq_dataset", &bigquery.DatasetArgs{
    			DatasetId:               pulumi.String("bq_example_dataset"),
    			FriendlyName:            pulumi.String("test"),
    			Description:             pulumi.String("This is a test description"),
    			Location:                pulumi.String("US"),
    			DeleteContentsOnDestroy: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = healthcare.NewFhirStore(ctx, "default", &healthcare.FhirStoreArgs{
    			Name:                        pulumi.String("example-fhir-store"),
    			Dataset:                     dataset.ID(),
    			Version:                     pulumi.String("R4"),
    			EnableUpdateCreate:          pulumi.Bool(false),
    			DisableReferentialIntegrity: pulumi.Bool(false),
    			DisableResourceVersioning:   pulumi.Bool(false),
    			EnableHistoryImport:         pulumi.Bool(false),
    			Labels: pulumi.StringMap{
    				"label1": pulumi.String("labelvalue1"),
    			},
    			StreamConfigs: healthcare.FhirStoreStreamConfigArray{
    				&healthcare.FhirStoreStreamConfigArgs{
    					ResourceTypes: pulumi.StringArray{
    						pulumi.String("Observation"),
    					},
    					BigqueryDestination: &healthcare.FhirStoreStreamConfigBigqueryDestinationArgs{
    						DatasetUri: pulumi.All(bqDataset.Project, bqDataset.DatasetId).ApplyT(func(_args []interface{}) (string, error) {
    							project := _args[0].(string)
    							datasetId := _args[1].(string)
    							return fmt.Sprintf("bq://%v.%v", project, datasetId), nil
    						}).(pulumi.StringOutput),
    						SchemaConfig: &healthcare.FhirStoreStreamConfigBigqueryDestinationSchemaConfigArgs{
    							RecursiveStructureDepth: pulumi.Int(3),
    							LastUpdatedPartitionConfig: &healthcare.FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigArgs{
    								Type:         pulumi.String("HOUR"),
    								ExpirationMs: pulumi.String("1000000"),
    							},
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pubsub.NewTopic(ctx, "topic", &pubsub.TopicArgs{
    			Name: pulumi.String("fhir-notifications"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var dataset = new Gcp.Healthcare.Dataset("dataset", new()
        {
            Name = "example-dataset",
            Location = "us-central1",
        });
    
        var bqDataset = new Gcp.BigQuery.Dataset("bq_dataset", new()
        {
            DatasetId = "bq_example_dataset",
            FriendlyName = "test",
            Description = "This is a test description",
            Location = "US",
            DeleteContentsOnDestroy = true,
        });
    
        var @default = new Gcp.Healthcare.FhirStore("default", new()
        {
            Name = "example-fhir-store",
            Dataset = dataset.Id,
            Version = "R4",
            EnableUpdateCreate = false,
            DisableReferentialIntegrity = false,
            DisableResourceVersioning = false,
            EnableHistoryImport = false,
            Labels = 
            {
                { "label1", "labelvalue1" },
            },
            StreamConfigs = new[]
            {
                new Gcp.Healthcare.Inputs.FhirStoreStreamConfigArgs
                {
                    ResourceTypes = new[]
                    {
                        "Observation",
                    },
                    BigqueryDestination = new Gcp.Healthcare.Inputs.FhirStoreStreamConfigBigqueryDestinationArgs
                    {
                        DatasetUri = Output.Tuple(bqDataset.Project, bqDataset.DatasetId).Apply(values =>
                        {
                            var project = values.Item1;
                            var datasetId = values.Item2;
                            return $"bq://{project}.{datasetId}";
                        }),
                        SchemaConfig = new Gcp.Healthcare.Inputs.FhirStoreStreamConfigBigqueryDestinationSchemaConfigArgs
                        {
                            RecursiveStructureDepth = 3,
                            LastUpdatedPartitionConfig = new Gcp.Healthcare.Inputs.FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigArgs
                            {
                                Type = "HOUR",
                                ExpirationMs = "1000000",
                            },
                        },
                    },
                },
            },
        });
    
        var topic = new Gcp.PubSub.Topic("topic", new()
        {
            Name = "fhir-notifications",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.healthcare.Dataset;
    import com.pulumi.gcp.healthcare.DatasetArgs;
    import com.pulumi.gcp.bigquery.Dataset;
    import com.pulumi.gcp.bigquery.DatasetArgs;
    import com.pulumi.gcp.healthcare.FhirStore;
    import com.pulumi.gcp.healthcare.FhirStoreArgs;
    import com.pulumi.gcp.healthcare.inputs.FhirStoreStreamConfigArgs;
    import com.pulumi.gcp.healthcare.inputs.FhirStoreStreamConfigBigqueryDestinationArgs;
    import com.pulumi.gcp.healthcare.inputs.FhirStoreStreamConfigBigqueryDestinationSchemaConfigArgs;
    import com.pulumi.gcp.healthcare.inputs.FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigArgs;
    import com.pulumi.gcp.pubsub.Topic;
    import com.pulumi.gcp.pubsub.TopicArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var dataset = new Dataset("dataset", DatasetArgs.builder()        
                .name("example-dataset")
                .location("us-central1")
                .build());
    
            var bqDataset = new Dataset("bqDataset", DatasetArgs.builder()        
                .datasetId("bq_example_dataset")
                .friendlyName("test")
                .description("This is a test description")
                .location("US")
                .deleteContentsOnDestroy(true)
                .build());
    
            var default_ = new FhirStore("default", FhirStoreArgs.builder()        
                .name("example-fhir-store")
                .dataset(dataset.id())
                .version("R4")
                .enableUpdateCreate(false)
                .disableReferentialIntegrity(false)
                .disableResourceVersioning(false)
                .enableHistoryImport(false)
                .labels(Map.of("label1", "labelvalue1"))
                .streamConfigs(FhirStoreStreamConfigArgs.builder()
                    .resourceTypes("Observation")
                    .bigqueryDestination(FhirStoreStreamConfigBigqueryDestinationArgs.builder()
                        .datasetUri(Output.tuple(bqDataset.project(), bqDataset.datasetId()).applyValue(values -> {
                            var project = values.t1;
                            var datasetId = values.t2;
                            return String.format("bq://%s.%s", project,datasetId);
                        }))
                        .schemaConfig(FhirStoreStreamConfigBigqueryDestinationSchemaConfigArgs.builder()
                            .recursiveStructureDepth(3)
                            .lastUpdatedPartitionConfig(FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigArgs.builder()
                                .type("HOUR")
                                .expirationMs(1000000)
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            var topic = new Topic("topic", TopicArgs.builder()        
                .name("fhir-notifications")
                .build());
    
        }
    }
    
    resources:
      default:
        type: gcp:healthcare:FhirStore
        properties:
          name: example-fhir-store
          dataset: ${dataset.id}
          version: R4
          enableUpdateCreate: false
          disableReferentialIntegrity: false
          disableResourceVersioning: false
          enableHistoryImport: false
          labels:
            label1: labelvalue1
          streamConfigs:
            - resourceTypes:
                - Observation
              bigqueryDestination:
                datasetUri: bq://${bqDataset.project}.${bqDataset.datasetId}
                schemaConfig:
                  recursiveStructureDepth: 3
                  lastUpdatedPartitionConfig:
                    type: HOUR
                    expirationMs: 1e+06
      topic:
        type: gcp:pubsub:Topic
        properties:
          name: fhir-notifications
      dataset:
        type: gcp:healthcare:Dataset
        properties:
          name: example-dataset
          location: us-central1
      bqDataset:
        type: gcp:bigquery:Dataset
        name: bq_dataset
        properties:
          datasetId: bq_example_dataset
          friendlyName: test
          description: This is a test description
          location: US
          deleteContentsOnDestroy: true
    

    Healthcare Fhir Store Notification Config

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const topic = new gcp.pubsub.Topic("topic", {name: "fhir-notifications"});
    const dataset = new gcp.healthcare.Dataset("dataset", {
        name: "example-dataset",
        location: "us-central1",
    });
    const _default = new gcp.healthcare.FhirStore("default", {
        name: "example-fhir-store",
        dataset: dataset.id,
        version: "R4",
        enableUpdateCreate: false,
        disableReferentialIntegrity: false,
        disableResourceVersioning: false,
        enableHistoryImport: false,
        labels: {
            label1: "labelvalue1",
        },
        notificationConfig: {
            pubsubTopic: topic.id,
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    topic = gcp.pubsub.Topic("topic", name="fhir-notifications")
    dataset = gcp.healthcare.Dataset("dataset",
        name="example-dataset",
        location="us-central1")
    default = gcp.healthcare.FhirStore("default",
        name="example-fhir-store",
        dataset=dataset.id,
        version="R4",
        enable_update_create=False,
        disable_referential_integrity=False,
        disable_resource_versioning=False,
        enable_history_import=False,
        labels={
            "label1": "labelvalue1",
        },
        notification_config=gcp.healthcare.FhirStoreNotificationConfigArgs(
            pubsub_topic=topic.id,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/healthcare"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/pubsub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		topic, err := pubsub.NewTopic(ctx, "topic", &pubsub.TopicArgs{
    			Name: pulumi.String("fhir-notifications"),
    		})
    		if err != nil {
    			return err
    		}
    		dataset, err := healthcare.NewDataset(ctx, "dataset", &healthcare.DatasetArgs{
    			Name:     pulumi.String("example-dataset"),
    			Location: pulumi.String("us-central1"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = healthcare.NewFhirStore(ctx, "default", &healthcare.FhirStoreArgs{
    			Name:                        pulumi.String("example-fhir-store"),
    			Dataset:                     dataset.ID(),
    			Version:                     pulumi.String("R4"),
    			EnableUpdateCreate:          pulumi.Bool(false),
    			DisableReferentialIntegrity: pulumi.Bool(false),
    			DisableResourceVersioning:   pulumi.Bool(false),
    			EnableHistoryImport:         pulumi.Bool(false),
    			Labels: pulumi.StringMap{
    				"label1": pulumi.String("labelvalue1"),
    			},
    			NotificationConfig: &healthcare.FhirStoreNotificationConfigArgs{
    				PubsubTopic: topic.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var topic = new Gcp.PubSub.Topic("topic", new()
        {
            Name = "fhir-notifications",
        });
    
        var dataset = new Gcp.Healthcare.Dataset("dataset", new()
        {
            Name = "example-dataset",
            Location = "us-central1",
        });
    
        var @default = new Gcp.Healthcare.FhirStore("default", new()
        {
            Name = "example-fhir-store",
            Dataset = dataset.Id,
            Version = "R4",
            EnableUpdateCreate = false,
            DisableReferentialIntegrity = false,
            DisableResourceVersioning = false,
            EnableHistoryImport = false,
            Labels = 
            {
                { "label1", "labelvalue1" },
            },
            NotificationConfig = new Gcp.Healthcare.Inputs.FhirStoreNotificationConfigArgs
            {
                PubsubTopic = topic.Id,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.pubsub.Topic;
    import com.pulumi.gcp.pubsub.TopicArgs;
    import com.pulumi.gcp.healthcare.Dataset;
    import com.pulumi.gcp.healthcare.DatasetArgs;
    import com.pulumi.gcp.healthcare.FhirStore;
    import com.pulumi.gcp.healthcare.FhirStoreArgs;
    import com.pulumi.gcp.healthcare.inputs.FhirStoreNotificationConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var topic = new Topic("topic", TopicArgs.builder()        
                .name("fhir-notifications")
                .build());
    
            var dataset = new Dataset("dataset", DatasetArgs.builder()        
                .name("example-dataset")
                .location("us-central1")
                .build());
    
            var default_ = new FhirStore("default", FhirStoreArgs.builder()        
                .name("example-fhir-store")
                .dataset(dataset.id())
                .version("R4")
                .enableUpdateCreate(false)
                .disableReferentialIntegrity(false)
                .disableResourceVersioning(false)
                .enableHistoryImport(false)
                .labels(Map.of("label1", "labelvalue1"))
                .notificationConfig(FhirStoreNotificationConfigArgs.builder()
                    .pubsubTopic(topic.id())
                    .build())
                .build());
    
        }
    }
    
    resources:
      default:
        type: gcp:healthcare:FhirStore
        properties:
          name: example-fhir-store
          dataset: ${dataset.id}
          version: R4
          enableUpdateCreate: false
          disableReferentialIntegrity: false
          disableResourceVersioning: false
          enableHistoryImport: false
          labels:
            label1: labelvalue1
          notificationConfig:
            pubsubTopic: ${topic.id}
      topic:
        type: gcp:pubsub:Topic
        properties:
          name: fhir-notifications
      dataset:
        type: gcp:healthcare:Dataset
        properties:
          name: example-dataset
          location: us-central1
    

    Healthcare Fhir Store Notification Configs

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const topic = new gcp.pubsub.Topic("topic", {name: "fhir-notifications"});
    const dataset = new gcp.healthcare.Dataset("dataset", {
        name: "example-dataset",
        location: "us-central1",
    });
    const _default = new gcp.healthcare.FhirStore("default", {
        name: "example-fhir-store",
        dataset: dataset.id,
        version: "R4",
        enableUpdateCreate: false,
        disableReferentialIntegrity: false,
        disableResourceVersioning: false,
        enableHistoryImport: false,
        enableHistoryModifications: false,
        labels: {
            label1: "labelvalue1",
        },
        notificationConfigs: [{
            pubsubTopic: topic.id,
            sendFullResource: true,
            sendPreviousResourceOnDelete: true,
        }],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    topic = gcp.pubsub.Topic("topic", name="fhir-notifications")
    dataset = gcp.healthcare.Dataset("dataset",
        name="example-dataset",
        location="us-central1")
    default = gcp.healthcare.FhirStore("default",
        name="example-fhir-store",
        dataset=dataset.id,
        version="R4",
        enable_update_create=False,
        disable_referential_integrity=False,
        disable_resource_versioning=False,
        enable_history_import=False,
        enable_history_modifications=False,
        labels={
            "label1": "labelvalue1",
        },
        notification_configs=[gcp.healthcare.FhirStoreNotificationConfigArgs(
            pubsub_topic=topic.id,
            send_full_resource=True,
            send_previous_resource_on_delete=True,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/healthcare"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/pubsub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		topic, err := pubsub.NewTopic(ctx, "topic", &pubsub.TopicArgs{
    			Name: pulumi.String("fhir-notifications"),
    		})
    		if err != nil {
    			return err
    		}
    		dataset, err := healthcare.NewDataset(ctx, "dataset", &healthcare.DatasetArgs{
    			Name:     pulumi.String("example-dataset"),
    			Location: pulumi.String("us-central1"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = healthcare.NewFhirStore(ctx, "default", &healthcare.FhirStoreArgs{
    			Name:                        pulumi.String("example-fhir-store"),
    			Dataset:                     dataset.ID(),
    			Version:                     pulumi.String("R4"),
    			EnableUpdateCreate:          pulumi.Bool(false),
    			DisableReferentialIntegrity: pulumi.Bool(false),
    			DisableResourceVersioning:   pulumi.Bool(false),
    			EnableHistoryImport:         pulumi.Bool(false),
    			EnableHistoryModifications:  pulumi.Bool(false),
    			Labels: pulumi.StringMap{
    				"label1": pulumi.String("labelvalue1"),
    			},
    			NotificationConfigs: healthcare.FhirStoreNotificationConfigArray{
    				&healthcare.FhirStoreNotificationConfigArgs{
    					PubsubTopic:                  topic.ID(),
    					SendFullResource:             pulumi.Bool(true),
    					SendPreviousResourceOnDelete: pulumi.Bool(true),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var topic = new Gcp.PubSub.Topic("topic", new()
        {
            Name = "fhir-notifications",
        });
    
        var dataset = new Gcp.Healthcare.Dataset("dataset", new()
        {
            Name = "example-dataset",
            Location = "us-central1",
        });
    
        var @default = new Gcp.Healthcare.FhirStore("default", new()
        {
            Name = "example-fhir-store",
            Dataset = dataset.Id,
            Version = "R4",
            EnableUpdateCreate = false,
            DisableReferentialIntegrity = false,
            DisableResourceVersioning = false,
            EnableHistoryImport = false,
            EnableHistoryModifications = false,
            Labels = 
            {
                { "label1", "labelvalue1" },
            },
            NotificationConfigs = new[]
            {
                new Gcp.Healthcare.Inputs.FhirStoreNotificationConfigArgs
                {
                    PubsubTopic = topic.Id,
                    SendFullResource = true,
                    SendPreviousResourceOnDelete = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.pubsub.Topic;
    import com.pulumi.gcp.pubsub.TopicArgs;
    import com.pulumi.gcp.healthcare.Dataset;
    import com.pulumi.gcp.healthcare.DatasetArgs;
    import com.pulumi.gcp.healthcare.FhirStore;
    import com.pulumi.gcp.healthcare.FhirStoreArgs;
    import com.pulumi.gcp.healthcare.inputs.FhirStoreNotificationConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var topic = new Topic("topic", TopicArgs.builder()        
                .name("fhir-notifications")
                .build());
    
            var dataset = new Dataset("dataset", DatasetArgs.builder()        
                .name("example-dataset")
                .location("us-central1")
                .build());
    
            var default_ = new FhirStore("default", FhirStoreArgs.builder()        
                .name("example-fhir-store")
                .dataset(dataset.id())
                .version("R4")
                .enableUpdateCreate(false)
                .disableReferentialIntegrity(false)
                .disableResourceVersioning(false)
                .enableHistoryImport(false)
                .enableHistoryModifications(false)
                .labels(Map.of("label1", "labelvalue1"))
                .notificationConfigs(FhirStoreNotificationConfigArgs.builder()
                    .pubsubTopic(topic.id())
                    .sendFullResource(true)
                    .sendPreviousResourceOnDelete(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      default:
        type: gcp:healthcare:FhirStore
        properties:
          name: example-fhir-store
          dataset: ${dataset.id}
          version: R4
          enableUpdateCreate: false
          disableReferentialIntegrity: false
          disableResourceVersioning: false
          enableHistoryImport: false
          enableHistoryModifications: false
          labels:
            label1: labelvalue1
          notificationConfigs:
            - pubsubTopic: ${topic.id}
              sendFullResource: true
              sendPreviousResourceOnDelete: true
      topic:
        type: gcp:pubsub:Topic
        properties:
          name: fhir-notifications
      dataset:
        type: gcp:healthcare:Dataset
        properties:
          name: example-dataset
          location: us-central1
    

    Create FhirStore Resource

    new FhirStore(name: string, args: FhirStoreArgs, opts?: CustomResourceOptions);
    @overload
    def FhirStore(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  complex_data_type_reference_parsing: Optional[str] = None,
                  dataset: Optional[str] = None,
                  default_search_handling_strict: Optional[bool] = None,
                  disable_referential_integrity: Optional[bool] = None,
                  disable_resource_versioning: Optional[bool] = None,
                  enable_history_import: Optional[bool] = None,
                  enable_history_modifications: Optional[bool] = None,
                  enable_update_create: Optional[bool] = None,
                  labels: Optional[Mapping[str, str]] = None,
                  name: Optional[str] = None,
                  notification_config: Optional[FhirStoreNotificationConfigArgs] = None,
                  notification_configs: Optional[Sequence[FhirStoreNotificationConfigArgs]] = None,
                  stream_configs: Optional[Sequence[FhirStoreStreamConfigArgs]] = None,
                  version: Optional[str] = None)
    @overload
    def FhirStore(resource_name: str,
                  args: FhirStoreArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewFhirStore(ctx *Context, name string, args FhirStoreArgs, opts ...ResourceOption) (*FhirStore, error)
    public FhirStore(string name, FhirStoreArgs args, CustomResourceOptions? opts = null)
    public FhirStore(String name, FhirStoreArgs args)
    public FhirStore(String name, FhirStoreArgs args, CustomResourceOptions options)
    
    type: gcp:healthcare:FhirStore
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args FhirStoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args FhirStoreArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args FhirStoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FhirStoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FhirStoreArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    FhirStore Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The FhirStore resource accepts the following input properties:

    Dataset string
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    ComplexDataTypeReferenceParsing string
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    DefaultSearchHandlingStrict bool
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    DisableReferentialIntegrity bool
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    DisableResourceVersioning bool
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    EnableHistoryImport bool
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    EnableHistoryModifications bool
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    EnableUpdateCreate bool
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    Labels Dictionary<string, string>

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    NotificationConfig FhirStoreNotificationConfig
    A nested object resource Structure is documented below.
    NotificationConfigs List<FhirStoreNotificationConfig>
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    StreamConfigs List<FhirStoreStreamConfig>
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    Version string
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    Dataset string
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    ComplexDataTypeReferenceParsing string
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    DefaultSearchHandlingStrict bool
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    DisableReferentialIntegrity bool
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    DisableResourceVersioning bool
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    EnableHistoryImport bool
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    EnableHistoryModifications bool
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    EnableUpdateCreate bool
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    Labels map[string]string

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    NotificationConfig FhirStoreNotificationConfigArgs
    A nested object resource Structure is documented below.
    NotificationConfigs []FhirStoreNotificationConfigArgs
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    StreamConfigs []FhirStoreStreamConfigArgs
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    Version string
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    dataset String
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    complexDataTypeReferenceParsing String
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    defaultSearchHandlingStrict Boolean
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disableReferentialIntegrity Boolean
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disableResourceVersioning Boolean
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    enableHistoryImport Boolean
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enableHistoryModifications Boolean
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enableUpdateCreate Boolean
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels Map<String,String>

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notificationConfig FhirStoreNotificationConfig
    A nested object resource Structure is documented below.
    notificationConfigs List<FhirStoreNotificationConfig>
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    streamConfigs List<FhirStoreStreamConfig>
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version String
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    dataset string
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    complexDataTypeReferenceParsing string
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    defaultSearchHandlingStrict boolean
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disableReferentialIntegrity boolean
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disableResourceVersioning boolean
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    enableHistoryImport boolean
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enableHistoryModifications boolean
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enableUpdateCreate boolean
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels {[key: string]: string}

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name string
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notificationConfig FhirStoreNotificationConfig
    A nested object resource Structure is documented below.
    notificationConfigs FhirStoreNotificationConfig[]
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    streamConfigs FhirStoreStreamConfig[]
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version string
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    dataset str
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    complex_data_type_reference_parsing str
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    default_search_handling_strict bool
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disable_referential_integrity bool
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disable_resource_versioning bool
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    enable_history_import bool
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enable_history_modifications bool
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enable_update_create bool
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels Mapping[str, str]

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name str
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notification_config FhirStoreNotificationConfigArgs
    A nested object resource Structure is documented below.
    notification_configs Sequence[FhirStoreNotificationConfigArgs]
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    stream_configs Sequence[FhirStoreStreamConfigArgs]
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version str
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    dataset String
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    complexDataTypeReferenceParsing String
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    defaultSearchHandlingStrict Boolean
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disableReferentialIntegrity Boolean
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disableResourceVersioning Boolean
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    enableHistoryImport Boolean
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enableHistoryModifications Boolean
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enableUpdateCreate Boolean
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels Map<String>

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notificationConfig Property Map
    A nested object resource Structure is documented below.
    notificationConfigs List<Property Map>
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    streamConfigs List<Property Map>
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version String
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FhirStore resource produces the following output properties:

    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    SelfLink string
    The fully qualified name of this dataset
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    SelfLink string
    The fully qualified name of this dataset
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink String
    The fully qualified name of this dataset
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink string
    The fully qualified name of this dataset
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    self_link str
    The fully qualified name of this dataset
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink String
    The fully qualified name of this dataset

    Look up Existing FhirStore Resource

    Get an existing FhirStore resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: FhirStoreState, opts?: CustomResourceOptions): FhirStore
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            complex_data_type_reference_parsing: Optional[str] = None,
            dataset: Optional[str] = None,
            default_search_handling_strict: Optional[bool] = None,
            disable_referential_integrity: Optional[bool] = None,
            disable_resource_versioning: Optional[bool] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            enable_history_import: Optional[bool] = None,
            enable_history_modifications: Optional[bool] = None,
            enable_update_create: Optional[bool] = None,
            labels: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            notification_config: Optional[FhirStoreNotificationConfigArgs] = None,
            notification_configs: Optional[Sequence[FhirStoreNotificationConfigArgs]] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            self_link: Optional[str] = None,
            stream_configs: Optional[Sequence[FhirStoreStreamConfigArgs]] = None,
            version: Optional[str] = None) -> FhirStore
    func GetFhirStore(ctx *Context, name string, id IDInput, state *FhirStoreState, opts ...ResourceOption) (*FhirStore, error)
    public static FhirStore Get(string name, Input<string> id, FhirStoreState? state, CustomResourceOptions? opts = null)
    public static FhirStore get(String name, Output<String> id, FhirStoreState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ComplexDataTypeReferenceParsing string
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    Dataset string
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    DefaultSearchHandlingStrict bool
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    DisableReferentialIntegrity bool
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    DisableResourceVersioning bool
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    EnableHistoryImport bool
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    EnableHistoryModifications bool
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    EnableUpdateCreate bool
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    Labels Dictionary<string, string>

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    NotificationConfig FhirStoreNotificationConfig
    A nested object resource Structure is documented below.
    NotificationConfigs List<FhirStoreNotificationConfig>
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    SelfLink string
    The fully qualified name of this dataset
    StreamConfigs List<FhirStoreStreamConfig>
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    Version string
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    ComplexDataTypeReferenceParsing string
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    Dataset string
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    DefaultSearchHandlingStrict bool
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    DisableReferentialIntegrity bool
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    DisableResourceVersioning bool
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    EnableHistoryImport bool
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    EnableHistoryModifications bool
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    EnableUpdateCreate bool
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    Labels map[string]string

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    NotificationConfig FhirStoreNotificationConfigArgs
    A nested object resource Structure is documented below.
    NotificationConfigs []FhirStoreNotificationConfigArgs
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    SelfLink string
    The fully qualified name of this dataset
    StreamConfigs []FhirStoreStreamConfigArgs
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    Version string
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    complexDataTypeReferenceParsing String
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    dataset String
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    defaultSearchHandlingStrict Boolean
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disableReferentialIntegrity Boolean
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disableResourceVersioning Boolean
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    enableHistoryImport Boolean
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enableHistoryModifications Boolean
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enableUpdateCreate Boolean
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels Map<String,String>

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notificationConfig FhirStoreNotificationConfig
    A nested object resource Structure is documented below.
    notificationConfigs List<FhirStoreNotificationConfig>
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink String
    The fully qualified name of this dataset
    streamConfigs List<FhirStoreStreamConfig>
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version String
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    complexDataTypeReferenceParsing string
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    dataset string
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    defaultSearchHandlingStrict boolean
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disableReferentialIntegrity boolean
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disableResourceVersioning boolean
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    enableHistoryImport boolean
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enableHistoryModifications boolean
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enableUpdateCreate boolean
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels {[key: string]: string}

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name string
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notificationConfig FhirStoreNotificationConfig
    A nested object resource Structure is documented below.
    notificationConfigs FhirStoreNotificationConfig[]
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink string
    The fully qualified name of this dataset
    streamConfigs FhirStoreStreamConfig[]
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version string
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    complex_data_type_reference_parsing str
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    dataset str
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    default_search_handling_strict bool
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disable_referential_integrity bool
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disable_resource_versioning bool
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    enable_history_import bool
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enable_history_modifications bool
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enable_update_create bool
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels Mapping[str, str]

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name str
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notification_config FhirStoreNotificationConfigArgs
    A nested object resource Structure is documented below.
    notification_configs Sequence[FhirStoreNotificationConfigArgs]
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    self_link str
    The fully qualified name of this dataset
    stream_configs Sequence[FhirStoreStreamConfigArgs]
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version str
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.
    complexDataTypeReferenceParsing String
    Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED by default after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. Possible values are: COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED, DISABLED, ENABLED.
    dataset String
    Identifies the dataset addressed by this request. Must be in the format 'projects/{project}/locations/{location}/datasets/{dataset}'


    defaultSearchHandlingStrict Boolean
    If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters. If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters. The handling can always be changed from the default on an individual API call by setting the HTTP header Prefer: handling=strict or Prefer: handling=lenient.
    disableReferentialIntegrity Boolean
    Whether to disable referential integrity in this FHIR store. This field is immutable after FHIR store creation. The default value is false, meaning that the API will enforce referential integrity and fail the requests that will result in inconsistent state in the FHIR store. When this field is set to true, the API will skip referential integrity check. Consequently, operations that rely on references, such as Patient.get$everything, will not return all the results if broken references exist. ** Changing this property may recreate the FHIR store (removing all data) **
    disableResourceVersioning Boolean
    Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations will cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions will be kept. The server will send back errors for attempts to read the historical versions. ** Changing this property may recreate the FHIR store (removing all data) **
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    enableHistoryImport Boolean
    Whether to allow the bulk import API to accept history bundles and directly insert historical resource versions into the FHIR store. Importing resource histories creates resource interactions that appear to have occurred in the past, which clients may not want to allow. If set to false, history bundles within an import will fail with an error. ** Changing this property may recreate the FHIR store (removing all data) ** ** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
    enableHistoryModifications Boolean
    Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. If set to false, using history bundles fails with an error.
    enableUpdateCreate Boolean
    Whether this FHIR store has the updateCreate capability. This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to Update a non-existent resource will return errors. Please treat the audit logs with appropriate levels of care if client-specified resource IDs contain sensitive data such as patient identifiers, those IDs will be part of the FHIR resource path recorded in Cloud audit logs and Cloud Pub/Sub notifications.
    labels Map<String>

    User-supplied key-value pairs used to organize FHIR stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The resource name for the FhirStore. ** Changing this property may recreate the FHIR store (removing all data) **
    notificationConfig Property Map
    A nested object resource Structure is documented below.
    notificationConfigs List<Property Map>
    A list of notifcation configs that configure the notification for every resource mutation in this FHIR store. Structure is documented below.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink String
    The fully qualified name of this dataset
    streamConfigs List<Property Map>
    A list of streaming configs that configure the destinations of streaming export for every resource mutation in this FHIR store. Each store is allowed to have up to 10 streaming configs. After a new config is added, the next resource mutation is streamed to the new location in addition to the existing ones. When a location is removed from the list, the server stops streaming to that location. Before adding a new config, you must add the required bigquery.dataEditor role to your project's Cloud Healthcare Service Agent service account. Some lag (typically on the order of dozens of seconds) is expected before the results show up in the streaming destination. Structure is documented below.
    version String
    The FHIR specification version. Default value is STU3. Possible values are: DSTU2, STU3, R4.

    Supporting Types

    FhirStoreNotificationConfig, FhirStoreNotificationConfigArgs

    PubsubTopic string
    The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client. PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message. It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
    SendFullResource bool
    Whether to send full FHIR resource to this Pub/Sub topic for Create and Update operation. Note that setting this to true does not guarantee that all resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full resource as a separate operation.
    SendPreviousResourceOnDelete bool
    Whether to send full FHIR resource to this Pub/Sub topic for deleting FHIR resource. Note that setting this to true does not guarantee that all previous resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full previous resource as a separate operation.
    PubsubTopic string
    The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client. PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message. It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
    SendFullResource bool
    Whether to send full FHIR resource to this Pub/Sub topic for Create and Update operation. Note that setting this to true does not guarantee that all resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full resource as a separate operation.
    SendPreviousResourceOnDelete bool
    Whether to send full FHIR resource to this Pub/Sub topic for deleting FHIR resource. Note that setting this to true does not guarantee that all previous resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full previous resource as a separate operation.
    pubsubTopic String
    The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client. PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message. It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
    sendFullResource Boolean
    Whether to send full FHIR resource to this Pub/Sub topic for Create and Update operation. Note that setting this to true does not guarantee that all resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full resource as a separate operation.
    sendPreviousResourceOnDelete Boolean
    Whether to send full FHIR resource to this Pub/Sub topic for deleting FHIR resource. Note that setting this to true does not guarantee that all previous resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full previous resource as a separate operation.
    pubsubTopic string
    The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client. PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message. It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
    sendFullResource boolean
    Whether to send full FHIR resource to this Pub/Sub topic for Create and Update operation. Note that setting this to true does not guarantee that all resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full resource as a separate operation.
    sendPreviousResourceOnDelete boolean
    Whether to send full FHIR resource to this Pub/Sub topic for deleting FHIR resource. Note that setting this to true does not guarantee that all previous resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full previous resource as a separate operation.
    pubsub_topic str
    The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client. PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message. It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
    send_full_resource bool
    Whether to send full FHIR resource to this Pub/Sub topic for Create and Update operation. Note that setting this to true does not guarantee that all resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full resource as a separate operation.
    send_previous_resource_on_delete bool
    Whether to send full FHIR resource to this Pub/Sub topic for deleting FHIR resource. Note that setting this to true does not guarantee that all previous resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full previous resource as a separate operation.
    pubsubTopic String
    The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client. PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message. It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.
    sendFullResource Boolean
    Whether to send full FHIR resource to this Pub/Sub topic for Create and Update operation. Note that setting this to true does not guarantee that all resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full resource as a separate operation.
    sendPreviousResourceOnDelete Boolean
    Whether to send full FHIR resource to this Pub/Sub topic for deleting FHIR resource. Note that setting this to true does not guarantee that all previous resources will be sent in the format of full FHIR resource. When a resource change is too large or during heavy traffic, only the resource name will be sent. Clients should always check the "payloadType" label from a Pub/Sub message to determine whether it needs to fetch the full previous resource as a separate operation.

    FhirStoreStreamConfig, FhirStoreStreamConfigArgs

    BigqueryDestination FhirStoreStreamConfigBigqueryDestination
    The destination BigQuery structure that contains both the dataset location and corresponding schema config. The output is organized in one table per resource type. The server reuses the existing tables (if any) that are named after the resource types, e.g. "Patient", "Observation". When there is no existing table for a given resource type, the server attempts to create one. See the streaming config reference for more details. Structure is documented below.
    ResourceTypes List<string>
    Supply a FHIR resource type (such as "Patient" or "Observation"). See https://www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store.
    BigqueryDestination FhirStoreStreamConfigBigqueryDestination
    The destination BigQuery structure that contains both the dataset location and corresponding schema config. The output is organized in one table per resource type. The server reuses the existing tables (if any) that are named after the resource types, e.g. "Patient", "Observation". When there is no existing table for a given resource type, the server attempts to create one. See the streaming config reference for more details. Structure is documented below.
    ResourceTypes []string
    Supply a FHIR resource type (such as "Patient" or "Observation"). See https://www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store.
    bigqueryDestination FhirStoreStreamConfigBigqueryDestination
    The destination BigQuery structure that contains both the dataset location and corresponding schema config. The output is organized in one table per resource type. The server reuses the existing tables (if any) that are named after the resource types, e.g. "Patient", "Observation". When there is no existing table for a given resource type, the server attempts to create one. See the streaming config reference for more details. Structure is documented below.
    resourceTypes List<String>
    Supply a FHIR resource type (such as "Patient" or "Observation"). See https://www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store.
    bigqueryDestination FhirStoreStreamConfigBigqueryDestination
    The destination BigQuery structure that contains both the dataset location and corresponding schema config. The output is organized in one table per resource type. The server reuses the existing tables (if any) that are named after the resource types, e.g. "Patient", "Observation". When there is no existing table for a given resource type, the server attempts to create one. See the streaming config reference for more details. Structure is documented below.
    resourceTypes string[]
    Supply a FHIR resource type (such as "Patient" or "Observation"). See https://www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store.
    bigquery_destination FhirStoreStreamConfigBigqueryDestination
    The destination BigQuery structure that contains both the dataset location and corresponding schema config. The output is organized in one table per resource type. The server reuses the existing tables (if any) that are named after the resource types, e.g. "Patient", "Observation". When there is no existing table for a given resource type, the server attempts to create one. See the streaming config reference for more details. Structure is documented below.
    resource_types Sequence[str]
    Supply a FHIR resource type (such as "Patient" or "Observation"). See https://www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store.
    bigqueryDestination Property Map
    The destination BigQuery structure that contains both the dataset location and corresponding schema config. The output is organized in one table per resource type. The server reuses the existing tables (if any) that are named after the resource types, e.g. "Patient", "Observation". When there is no existing table for a given resource type, the server attempts to create one. See the streaming config reference for more details. Structure is documented below.
    resourceTypes List<String>
    Supply a FHIR resource type (such as "Patient" or "Observation"). See https://www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store.

    FhirStoreStreamConfigBigqueryDestination, FhirStoreStreamConfigBigqueryDestinationArgs

    DatasetUri string
    BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
    SchemaConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfig
    The configuration for the exported BigQuery schema. Structure is documented below.
    DatasetUri string
    BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
    SchemaConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfig
    The configuration for the exported BigQuery schema. Structure is documented below.
    datasetUri String
    BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
    schemaConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfig
    The configuration for the exported BigQuery schema. Structure is documented below.
    datasetUri string
    BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
    schemaConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfig
    The configuration for the exported BigQuery schema. Structure is documented below.
    dataset_uri str
    BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
    schema_config FhirStoreStreamConfigBigqueryDestinationSchemaConfig
    The configuration for the exported BigQuery schema. Structure is documented below.
    datasetUri String
    BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
    schemaConfig Property Map
    The configuration for the exported BigQuery schema. Structure is documented below.

    FhirStoreStreamConfigBigqueryDestinationSchemaConfig, FhirStoreStreamConfigBigqueryDestinationSchemaConfigArgs

    RecursiveStructureDepth int
    The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. The maximum depth allowed is 5.
    LastUpdatedPartitionConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig
    The configuration for exported BigQuery tables to be partitioned by FHIR resource's last updated time column. Structure is documented below.
    SchemaType string
    Specifies the output schema type.

    • ANALYTICS: Analytics schema defined by the FHIR community. See https://github.com/FHIR/sql-on-fhir/blob/master/sql-on-fhir.md.
    • ANALYTICS_V2: Analytics V2, similar to schema defined by the FHIR community, with added support for extensions with one or more occurrences and contained resources in stringified JSON.
    • LOSSLESS: A data-driven schema generated from the fields present in the FHIR data being exported, with no additional simplification. Default value is ANALYTICS. Possible values are: ANALYTICS, ANALYTICS_V2, LOSSLESS.
    RecursiveStructureDepth int
    The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. The maximum depth allowed is 5.
    LastUpdatedPartitionConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig
    The configuration for exported BigQuery tables to be partitioned by FHIR resource's last updated time column. Structure is documented below.
    SchemaType string
    Specifies the output schema type.

    • ANALYTICS: Analytics schema defined by the FHIR community. See https://github.com/FHIR/sql-on-fhir/blob/master/sql-on-fhir.md.
    • ANALYTICS_V2: Analytics V2, similar to schema defined by the FHIR community, with added support for extensions with one or more occurrences and contained resources in stringified JSON.
    • LOSSLESS: A data-driven schema generated from the fields present in the FHIR data being exported, with no additional simplification. Default value is ANALYTICS. Possible values are: ANALYTICS, ANALYTICS_V2, LOSSLESS.
    recursiveStructureDepth Integer
    The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. The maximum depth allowed is 5.
    lastUpdatedPartitionConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig
    The configuration for exported BigQuery tables to be partitioned by FHIR resource's last updated time column. Structure is documented below.
    schemaType String
    Specifies the output schema type.

    • ANALYTICS: Analytics schema defined by the FHIR community. See https://github.com/FHIR/sql-on-fhir/blob/master/sql-on-fhir.md.
    • ANALYTICS_V2: Analytics V2, similar to schema defined by the FHIR community, with added support for extensions with one or more occurrences and contained resources in stringified JSON.
    • LOSSLESS: A data-driven schema generated from the fields present in the FHIR data being exported, with no additional simplification. Default value is ANALYTICS. Possible values are: ANALYTICS, ANALYTICS_V2, LOSSLESS.
    recursiveStructureDepth number
    The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. The maximum depth allowed is 5.
    lastUpdatedPartitionConfig FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig
    The configuration for exported BigQuery tables to be partitioned by FHIR resource's last updated time column. Structure is documented below.
    schemaType string
    Specifies the output schema type.

    • ANALYTICS: Analytics schema defined by the FHIR community. See https://github.com/FHIR/sql-on-fhir/blob/master/sql-on-fhir.md.
    • ANALYTICS_V2: Analytics V2, similar to schema defined by the FHIR community, with added support for extensions with one or more occurrences and contained resources in stringified JSON.
    • LOSSLESS: A data-driven schema generated from the fields present in the FHIR data being exported, with no additional simplification. Default value is ANALYTICS. Possible values are: ANALYTICS, ANALYTICS_V2, LOSSLESS.
    recursive_structure_depth int
    The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. The maximum depth allowed is 5.
    last_updated_partition_config FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig
    The configuration for exported BigQuery tables to be partitioned by FHIR resource's last updated time column. Structure is documented below.
    schema_type str
    Specifies the output schema type.

    • ANALYTICS: Analytics schema defined by the FHIR community. See https://github.com/FHIR/sql-on-fhir/blob/master/sql-on-fhir.md.
    • ANALYTICS_V2: Analytics V2, similar to schema defined by the FHIR community, with added support for extensions with one or more occurrences and contained resources in stringified JSON.
    • LOSSLESS: A data-driven schema generated from the fields present in the FHIR data being exported, with no additional simplification. Default value is ANALYTICS. Possible values are: ANALYTICS, ANALYTICS_V2, LOSSLESS.
    recursiveStructureDepth Number
    The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. The maximum depth allowed is 5.
    lastUpdatedPartitionConfig Property Map
    The configuration for exported BigQuery tables to be partitioned by FHIR resource's last updated time column. Structure is documented below.
    schemaType String
    Specifies the output schema type.

    • ANALYTICS: Analytics schema defined by the FHIR community. See https://github.com/FHIR/sql-on-fhir/blob/master/sql-on-fhir.md.
    • ANALYTICS_V2: Analytics V2, similar to schema defined by the FHIR community, with added support for extensions with one or more occurrences and contained resources in stringified JSON.
    • LOSSLESS: A data-driven schema generated from the fields present in the FHIR data being exported, with no additional simplification. Default value is ANALYTICS. Possible values are: ANALYTICS, ANALYTICS_V2, LOSSLESS.

    FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfig, FhirStoreStreamConfigBigqueryDestinationSchemaConfigLastUpdatedPartitionConfigArgs

    Type string
    Type of partitioning. Possible values are: PARTITION_TYPE_UNSPECIFIED, HOUR, DAY, MONTH, YEAR.
    ExpirationMs string
    Number of milliseconds for which to keep the storage for a partition.
    Type string
    Type of partitioning. Possible values are: PARTITION_TYPE_UNSPECIFIED, HOUR, DAY, MONTH, YEAR.
    ExpirationMs string
    Number of milliseconds for which to keep the storage for a partition.
    type String
    Type of partitioning. Possible values are: PARTITION_TYPE_UNSPECIFIED, HOUR, DAY, MONTH, YEAR.
    expirationMs String
    Number of milliseconds for which to keep the storage for a partition.
    type string
    Type of partitioning. Possible values are: PARTITION_TYPE_UNSPECIFIED, HOUR, DAY, MONTH, YEAR.
    expirationMs string
    Number of milliseconds for which to keep the storage for a partition.
    type str
    Type of partitioning. Possible values are: PARTITION_TYPE_UNSPECIFIED, HOUR, DAY, MONTH, YEAR.
    expiration_ms str
    Number of milliseconds for which to keep the storage for a partition.
    type String
    Type of partitioning. Possible values are: PARTITION_TYPE_UNSPECIFIED, HOUR, DAY, MONTH, YEAR.
    expirationMs String
    Number of milliseconds for which to keep the storage for a partition.

    Import

    FhirStore can be imported using any of these accepted formats:

    • {{dataset}}/fhirStores/{{name}}

    • {{dataset}}/{{name}}

    When using the pulumi import command, FhirStore can be imported using one of the formats above. For example:

    $ pulumi import gcp:healthcare/fhirStore:FhirStore default {{dataset}}/fhirStores/{{name}}
    
    $ pulumi import gcp:healthcare/fhirStore:FhirStore default {{dataset}}/{{name}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi