hashicorp / terraform-provider-google

Terraform Provider for Google Cloud Platform
https://registry.terraform.io/providers/hashicorp/google/latest/docs
Mozilla Public License 2.0
2.29k stars 1.72k forks source link

Add "sendForBulkImport" argument to the "notification_config" block for "google_healthcare_dicom_store" #16421

Closed anubbhavm closed 3 months ago

anubbhavm commented 10 months ago

Community Note

Description

The "sendForBulkImport" argument will allow Pub/Sub notifications to be sent for DICOM import operations.

New or Affected Resource(s)

Potential Terraform Configuration

resource "google_healthcare_dicom_store" "default" {
  name    = "example-dicom-store"
  dataset = google_healthcare_dataset.dataset.id

  notification_config {
    pubsub_topic = google_pubsub_topic.topic.id
    **bulk_import = true**
  }

  labels = {
    label1 = "labelvalue1"
  }
}

resource "google_pubsub_topic" "topic" {
  name     = "dicom-notifications"
}

References

https://cloud.google.com/healthcare-api/docs/reference/rest/v1/NotificationConfig

github-actions[bot] commented 2 months ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.