pulumi-gcp 8.42.0a1758133038__py3-none-any.whl → 9.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,7 @@ class FhirStoreArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
dataset: pulumi.Input[_builtins.str],
|
25
25
|
complex_data_type_reference_parsing: Optional[pulumi.Input[_builtins.str]] = None,
|
26
|
+
consent_config: Optional[pulumi.Input['FhirStoreConsentConfigArgs']] = None,
|
26
27
|
default_search_handling_strict: Optional[pulumi.Input[_builtins.bool]] = None,
|
27
28
|
disable_referential_integrity: Optional[pulumi.Input[_builtins.bool]] = None,
|
28
29
|
disable_resource_versioning: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -41,6 +42,8 @@ class FhirStoreArgs:
|
|
41
42
|
'projects/{project}/locations/{location}/datasets/{dataset}'
|
42
43
|
:param pulumi.Input[_builtins.str] complex_data_type_reference_parsing: 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.
|
43
44
|
Possible values are: `COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED`, `DISABLED`, `ENABLED`.
|
45
|
+
:param pulumi.Input['FhirStoreConsentConfigArgs'] consent_config: Specifies whether this store has consent enforcement. Not available for DSTU2 FHIR version due to absence of Consent resources. Not supported for R5 FHIR version.
|
46
|
+
Structure is documented below.
|
44
47
|
:param pulumi.Input[_builtins.bool] default_search_handling_strict: If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters.
|
45
48
|
If false, uses the FHIR specification default handling=lenient which ignores unrecognized search parameters.
|
46
49
|
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.
|
@@ -104,6 +107,8 @@ class FhirStoreArgs:
|
|
104
107
|
pulumi.set(__self__, "dataset", dataset)
|
105
108
|
if complex_data_type_reference_parsing is not None:
|
106
109
|
pulumi.set(__self__, "complex_data_type_reference_parsing", complex_data_type_reference_parsing)
|
110
|
+
if consent_config is not None:
|
111
|
+
pulumi.set(__self__, "consent_config", consent_config)
|
107
112
|
if default_search_handling_strict is not None:
|
108
113
|
pulumi.set(__self__, "default_search_handling_strict", default_search_handling_strict)
|
109
114
|
if disable_referential_integrity is not None:
|
@@ -158,6 +163,19 @@ class FhirStoreArgs:
|
|
158
163
|
def complex_data_type_reference_parsing(self, value: Optional[pulumi.Input[_builtins.str]]):
|
159
164
|
pulumi.set(self, "complex_data_type_reference_parsing", value)
|
160
165
|
|
166
|
+
@_builtins.property
|
167
|
+
@pulumi.getter(name="consentConfig")
|
168
|
+
def consent_config(self) -> Optional[pulumi.Input['FhirStoreConsentConfigArgs']]:
|
169
|
+
"""
|
170
|
+
Specifies whether this store has consent enforcement. Not available for DSTU2 FHIR version due to absence of Consent resources. Not supported for R5 FHIR version.
|
171
|
+
Structure is documented below.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "consent_config")
|
174
|
+
|
175
|
+
@consent_config.setter
|
176
|
+
def consent_config(self, value: Optional[pulumi.Input['FhirStoreConsentConfigArgs']]):
|
177
|
+
pulumi.set(self, "consent_config", value)
|
178
|
+
|
161
179
|
@_builtins.property
|
162
180
|
@pulumi.getter(name="defaultSearchHandlingStrict")
|
163
181
|
def default_search_handling_strict(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
@@ -355,6 +373,7 @@ class FhirStoreArgs:
|
|
355
373
|
class _FhirStoreState:
|
356
374
|
def __init__(__self__, *,
|
357
375
|
complex_data_type_reference_parsing: Optional[pulumi.Input[_builtins.str]] = None,
|
376
|
+
consent_config: Optional[pulumi.Input['FhirStoreConsentConfigArgs']] = None,
|
358
377
|
dataset: Optional[pulumi.Input[_builtins.str]] = None,
|
359
378
|
default_search_handling_strict: Optional[pulumi.Input[_builtins.bool]] = None,
|
360
379
|
disable_referential_integrity: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -375,6 +394,8 @@ class _FhirStoreState:
|
|
375
394
|
Input properties used for looking up and filtering FhirStore resources.
|
376
395
|
:param pulumi.Input[_builtins.str] complex_data_type_reference_parsing: 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.
|
377
396
|
Possible values are: `COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED`, `DISABLED`, `ENABLED`.
|
397
|
+
:param pulumi.Input['FhirStoreConsentConfigArgs'] consent_config: Specifies whether this store has consent enforcement. Not available for DSTU2 FHIR version due to absence of Consent resources. Not supported for R5 FHIR version.
|
398
|
+
Structure is documented below.
|
378
399
|
:param pulumi.Input[_builtins.str] dataset: Identifies the dataset addressed by this request. Must be in the format
|
379
400
|
'projects/{project}/locations/{location}/datasets/{dataset}'
|
380
401
|
:param pulumi.Input[_builtins.bool] default_search_handling_strict: If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters.
|
@@ -443,6 +464,8 @@ class _FhirStoreState:
|
|
443
464
|
"""
|
444
465
|
if complex_data_type_reference_parsing is not None:
|
445
466
|
pulumi.set(__self__, "complex_data_type_reference_parsing", complex_data_type_reference_parsing)
|
467
|
+
if consent_config is not None:
|
468
|
+
pulumi.set(__self__, "consent_config", consent_config)
|
446
469
|
if dataset is not None:
|
447
470
|
pulumi.set(__self__, "dataset", dataset)
|
448
471
|
if default_search_handling_strict is not None:
|
@@ -492,6 +515,19 @@ class _FhirStoreState:
|
|
492
515
|
def complex_data_type_reference_parsing(self, value: Optional[pulumi.Input[_builtins.str]]):
|
493
516
|
pulumi.set(self, "complex_data_type_reference_parsing", value)
|
494
517
|
|
518
|
+
@_builtins.property
|
519
|
+
@pulumi.getter(name="consentConfig")
|
520
|
+
def consent_config(self) -> Optional[pulumi.Input['FhirStoreConsentConfigArgs']]:
|
521
|
+
"""
|
522
|
+
Specifies whether this store has consent enforcement. Not available for DSTU2 FHIR version due to absence of Consent resources. Not supported for R5 FHIR version.
|
523
|
+
Structure is documented below.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "consent_config")
|
526
|
+
|
527
|
+
@consent_config.setter
|
528
|
+
def consent_config(self, value: Optional[pulumi.Input['FhirStoreConsentConfigArgs']]):
|
529
|
+
pulumi.set(self, "consent_config", value)
|
530
|
+
|
495
531
|
@_builtins.property
|
496
532
|
@pulumi.getter
|
497
533
|
def dataset(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -742,6 +778,7 @@ class FhirStore(pulumi.CustomResource):
|
|
742
778
|
resource_name: str,
|
743
779
|
opts: Optional[pulumi.ResourceOptions] = None,
|
744
780
|
complex_data_type_reference_parsing: Optional[pulumi.Input[_builtins.str]] = None,
|
781
|
+
consent_config: Optional[pulumi.Input[Union['FhirStoreConsentConfigArgs', 'FhirStoreConsentConfigArgsDict']]] = None,
|
745
782
|
dataset: Optional[pulumi.Input[_builtins.str]] = None,
|
746
783
|
default_search_handling_strict: Optional[pulumi.Input[_builtins.bool]] = None,
|
747
784
|
disable_referential_integrity: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -867,6 +904,43 @@ class FhirStore(pulumi.CustomResource):
|
|
867
904
|
"send_previous_resource_on_delete": True,
|
868
905
|
}])
|
869
906
|
```
|
907
|
+
### Healthcare Fhir Store Consent Config
|
908
|
+
|
909
|
+
```python
|
910
|
+
import pulumi
|
911
|
+
import pulumi_gcp as gcp
|
912
|
+
|
913
|
+
topic = gcp.pubsub.Topic("topic", name="fhir-notifications")
|
914
|
+
dataset = gcp.healthcare.Dataset("dataset",
|
915
|
+
name="example-dataset",
|
916
|
+
location="us-central1")
|
917
|
+
default = gcp.healthcare.FhirStore("default",
|
918
|
+
name="example-fhir-store",
|
919
|
+
dataset=dataset.id,
|
920
|
+
version="R4",
|
921
|
+
complex_data_type_reference_parsing="DISABLED",
|
922
|
+
enable_update_create=False,
|
923
|
+
disable_referential_integrity=False,
|
924
|
+
disable_resource_versioning=False,
|
925
|
+
enable_history_import=False,
|
926
|
+
default_search_handling_strict=False,
|
927
|
+
notification_configs=[{
|
928
|
+
"pubsub_topic": topic.id,
|
929
|
+
}],
|
930
|
+
labels={
|
931
|
+
"label1": "labelvalue1",
|
932
|
+
},
|
933
|
+
consent_config={
|
934
|
+
"version": "V1",
|
935
|
+
"access_enforced": True,
|
936
|
+
"consent_header_handling": {
|
937
|
+
"profile": "REQUIRED_ON_READ",
|
938
|
+
},
|
939
|
+
"access_determination_log_config": {
|
940
|
+
"log_level": "VERBOSE",
|
941
|
+
},
|
942
|
+
})
|
943
|
+
```
|
870
944
|
|
871
945
|
## Import
|
872
946
|
|
@@ -890,6 +964,8 @@ class FhirStore(pulumi.CustomResource):
|
|
890
964
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
891
965
|
:param pulumi.Input[_builtins.str] complex_data_type_reference_parsing: 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.
|
892
966
|
Possible values are: `COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED`, `DISABLED`, `ENABLED`.
|
967
|
+
:param pulumi.Input[Union['FhirStoreConsentConfigArgs', 'FhirStoreConsentConfigArgsDict']] consent_config: Specifies whether this store has consent enforcement. Not available for DSTU2 FHIR version due to absence of Consent resources. Not supported for R5 FHIR version.
|
968
|
+
Structure is documented below.
|
893
969
|
:param pulumi.Input[_builtins.str] dataset: Identifies the dataset addressed by this request. Must be in the format
|
894
970
|
'projects/{project}/locations/{location}/datasets/{dataset}'
|
895
971
|
:param pulumi.Input[_builtins.bool] default_search_handling_strict: If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters.
|
@@ -1069,6 +1145,43 @@ class FhirStore(pulumi.CustomResource):
|
|
1069
1145
|
"send_previous_resource_on_delete": True,
|
1070
1146
|
}])
|
1071
1147
|
```
|
1148
|
+
### Healthcare Fhir Store Consent Config
|
1149
|
+
|
1150
|
+
```python
|
1151
|
+
import pulumi
|
1152
|
+
import pulumi_gcp as gcp
|
1153
|
+
|
1154
|
+
topic = gcp.pubsub.Topic("topic", name="fhir-notifications")
|
1155
|
+
dataset = gcp.healthcare.Dataset("dataset",
|
1156
|
+
name="example-dataset",
|
1157
|
+
location="us-central1")
|
1158
|
+
default = gcp.healthcare.FhirStore("default",
|
1159
|
+
name="example-fhir-store",
|
1160
|
+
dataset=dataset.id,
|
1161
|
+
version="R4",
|
1162
|
+
complex_data_type_reference_parsing="DISABLED",
|
1163
|
+
enable_update_create=False,
|
1164
|
+
disable_referential_integrity=False,
|
1165
|
+
disable_resource_versioning=False,
|
1166
|
+
enable_history_import=False,
|
1167
|
+
default_search_handling_strict=False,
|
1168
|
+
notification_configs=[{
|
1169
|
+
"pubsub_topic": topic.id,
|
1170
|
+
}],
|
1171
|
+
labels={
|
1172
|
+
"label1": "labelvalue1",
|
1173
|
+
},
|
1174
|
+
consent_config={
|
1175
|
+
"version": "V1",
|
1176
|
+
"access_enforced": True,
|
1177
|
+
"consent_header_handling": {
|
1178
|
+
"profile": "REQUIRED_ON_READ",
|
1179
|
+
},
|
1180
|
+
"access_determination_log_config": {
|
1181
|
+
"log_level": "VERBOSE",
|
1182
|
+
},
|
1183
|
+
})
|
1184
|
+
```
|
1072
1185
|
|
1073
1186
|
## Import
|
1074
1187
|
|
@@ -1104,6 +1217,7 @@ class FhirStore(pulumi.CustomResource):
|
|
1104
1217
|
resource_name: str,
|
1105
1218
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1106
1219
|
complex_data_type_reference_parsing: Optional[pulumi.Input[_builtins.str]] = None,
|
1220
|
+
consent_config: Optional[pulumi.Input[Union['FhirStoreConsentConfigArgs', 'FhirStoreConsentConfigArgsDict']]] = None,
|
1107
1221
|
dataset: Optional[pulumi.Input[_builtins.str]] = None,
|
1108
1222
|
default_search_handling_strict: Optional[pulumi.Input[_builtins.bool]] = None,
|
1109
1223
|
disable_referential_integrity: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -1127,6 +1241,7 @@ class FhirStore(pulumi.CustomResource):
|
|
1127
1241
|
__props__ = FhirStoreArgs.__new__(FhirStoreArgs)
|
1128
1242
|
|
1129
1243
|
__props__.__dict__["complex_data_type_reference_parsing"] = complex_data_type_reference_parsing
|
1244
|
+
__props__.__dict__["consent_config"] = consent_config
|
1130
1245
|
if dataset is None and not opts.urn:
|
1131
1246
|
raise TypeError("Missing required property 'dataset'")
|
1132
1247
|
__props__.__dict__["dataset"] = dataset
|
@@ -1158,6 +1273,7 @@ class FhirStore(pulumi.CustomResource):
|
|
1158
1273
|
id: pulumi.Input[str],
|
1159
1274
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1160
1275
|
complex_data_type_reference_parsing: Optional[pulumi.Input[_builtins.str]] = None,
|
1276
|
+
consent_config: Optional[pulumi.Input[Union['FhirStoreConsentConfigArgs', 'FhirStoreConsentConfigArgsDict']]] = None,
|
1161
1277
|
dataset: Optional[pulumi.Input[_builtins.str]] = None,
|
1162
1278
|
default_search_handling_strict: Optional[pulumi.Input[_builtins.bool]] = None,
|
1163
1279
|
disable_referential_integrity: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -1183,6 +1299,8 @@ class FhirStore(pulumi.CustomResource):
|
|
1183
1299
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1184
1300
|
:param pulumi.Input[_builtins.str] complex_data_type_reference_parsing: 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.
|
1185
1301
|
Possible values are: `COMPLEX_DATA_TYPE_REFERENCE_PARSING_UNSPECIFIED`, `DISABLED`, `ENABLED`.
|
1302
|
+
:param pulumi.Input[Union['FhirStoreConsentConfigArgs', 'FhirStoreConsentConfigArgsDict']] consent_config: Specifies whether this store has consent enforcement. Not available for DSTU2 FHIR version due to absence of Consent resources. Not supported for R5 FHIR version.
|
1303
|
+
Structure is documented below.
|
1186
1304
|
:param pulumi.Input[_builtins.str] dataset: Identifies the dataset addressed by this request. Must be in the format
|
1187
1305
|
'projects/{project}/locations/{location}/datasets/{dataset}'
|
1188
1306
|
:param pulumi.Input[_builtins.bool] default_search_handling_strict: If true, overrides the default search behavior for this FHIR store to handling=strict which returns an error for unrecognized search parameters.
|
@@ -1254,6 +1372,7 @@ class FhirStore(pulumi.CustomResource):
|
|
1254
1372
|
__props__ = _FhirStoreState.__new__(_FhirStoreState)
|
1255
1373
|
|
1256
1374
|
__props__.__dict__["complex_data_type_reference_parsing"] = complex_data_type_reference_parsing
|
1375
|
+
__props__.__dict__["consent_config"] = consent_config
|
1257
1376
|
__props__.__dict__["dataset"] = dataset
|
1258
1377
|
__props__.__dict__["default_search_handling_strict"] = default_search_handling_strict
|
1259
1378
|
__props__.__dict__["disable_referential_integrity"] = disable_referential_integrity
|
@@ -1281,6 +1400,15 @@ class FhirStore(pulumi.CustomResource):
|
|
1281
1400
|
"""
|
1282
1401
|
return pulumi.get(self, "complex_data_type_reference_parsing")
|
1283
1402
|
|
1403
|
+
@_builtins.property
|
1404
|
+
@pulumi.getter(name="consentConfig")
|
1405
|
+
def consent_config(self) -> pulumi.Output[Optional['outputs.FhirStoreConsentConfig']]:
|
1406
|
+
"""
|
1407
|
+
Specifies whether this store has consent enforcement. Not available for DSTU2 FHIR version due to absence of Consent resources. Not supported for R5 FHIR version.
|
1408
|
+
Structure is documented below.
|
1409
|
+
"""
|
1410
|
+
return pulumi.get(self, "consent_config")
|
1411
|
+
|
1284
1412
|
@_builtins.property
|
1285
1413
|
@pulumi.getter
|
1286
1414
|
def dataset(self) -> pulumi.Output[_builtins.str]:
|
pulumi_gcp/healthcare/outputs.py
CHANGED
@@ -26,6 +26,9 @@ __all__ = [
|
|
26
26
|
'DicomStoreNotificationConfig',
|
27
27
|
'DicomStoreStreamConfig',
|
28
28
|
'DicomStoreStreamConfigBigqueryDestination',
|
29
|
+
'FhirStoreConsentConfig',
|
30
|
+
'FhirStoreConsentConfigAccessDeterminationLogConfig',
|
31
|
+
'FhirStoreConsentConfigConsentHeaderHandling',
|
29
32
|
'FhirStoreIamBindingCondition',
|
30
33
|
'FhirStoreIamMemberCondition',
|
31
34
|
'FhirStoreNotificationConfig',
|
@@ -384,6 +387,166 @@ class DicomStoreStreamConfigBigqueryDestination(dict):
|
|
384
387
|
return pulumi.get(self, "table_uri")
|
385
388
|
|
386
389
|
|
390
|
+
@pulumi.output_type
|
391
|
+
class FhirStoreConsentConfig(dict):
|
392
|
+
@staticmethod
|
393
|
+
def __key_warning(key: str):
|
394
|
+
suggest = None
|
395
|
+
if key == "accessDeterminationLogConfig":
|
396
|
+
suggest = "access_determination_log_config"
|
397
|
+
elif key == "accessEnforced":
|
398
|
+
suggest = "access_enforced"
|
399
|
+
elif key == "consentHeaderHandling":
|
400
|
+
suggest = "consent_header_handling"
|
401
|
+
elif key == "enforcedAdminConsents":
|
402
|
+
suggest = "enforced_admin_consents"
|
403
|
+
|
404
|
+
if suggest:
|
405
|
+
pulumi.log.warn(f"Key '{key}' not found in FhirStoreConsentConfig. Access the value via the '{suggest}' property getter instead.")
|
406
|
+
|
407
|
+
def __getitem__(self, key: str) -> Any:
|
408
|
+
FhirStoreConsentConfig.__key_warning(key)
|
409
|
+
return super().__getitem__(key)
|
410
|
+
|
411
|
+
def get(self, key: str, default = None) -> Any:
|
412
|
+
FhirStoreConsentConfig.__key_warning(key)
|
413
|
+
return super().get(key, default)
|
414
|
+
|
415
|
+
def __init__(__self__, *,
|
416
|
+
version: _builtins.str,
|
417
|
+
access_determination_log_config: Optional['outputs.FhirStoreConsentConfigAccessDeterminationLogConfig'] = None,
|
418
|
+
access_enforced: Optional[_builtins.bool] = None,
|
419
|
+
consent_header_handling: Optional['outputs.FhirStoreConsentConfigConsentHeaderHandling'] = None,
|
420
|
+
enforced_admin_consents: Optional[Sequence[_builtins.str]] = None):
|
421
|
+
"""
|
422
|
+
:param _builtins.str version: Specifies which consent enforcement version is being used for this FHIR store. This field can only be set once by either [fhirStores.create][] or [fhirStores.patch][]. After that, you must call [fhirStores.applyConsents][] to change the version.
|
423
|
+
Possible values are: `CONSENT_ENFORCEMENT_VERSION_UNSPECIFIED`, `V1`.
|
424
|
+
:param 'FhirStoreConsentConfigAccessDeterminationLogConfigArgs' access_determination_log_config: Specifies how the server logs the consent-aware requests. If not specified, the AccessDeterminationLogConfig.LogLevel.MINIMUM option is used.
|
425
|
+
Structure is documented below.
|
426
|
+
:param _builtins.bool access_enforced: The default value is false. If set to true, when accessing FHIR resources, the consent headers will be verified against consents given by patients. See the ConsentEnforcementVersion for the supported consent headers.
|
427
|
+
:param 'FhirStoreConsentConfigConsentHeaderHandlingArgs' consent_header_handling: Different options to configure the behaviour of the server when handling the X-Consent-Scope header.
|
428
|
+
Structure is documented below.
|
429
|
+
:param Sequence[_builtins.str] enforced_admin_consents: (Output)
|
430
|
+
The versioned names of the enforced admin Consent resource(s), in the format projects/{projectId}/locations/{location}/datasets/{datasetId}/fhirStores/{fhirStoreId}/fhir/Consent/{resourceId}/_history/{version_id}. For FHIR stores with disableResourceVersioning=true, the format is projects/{projectId}/locations/{location}/datasets/{datasetId}/fhirStores/{fhirStoreId}/fhir/Consent/{resourceId}. This field can only be updated using [fhirStores.applyAdminConsents][].
|
431
|
+
"""
|
432
|
+
pulumi.set(__self__, "version", version)
|
433
|
+
if access_determination_log_config is not None:
|
434
|
+
pulumi.set(__self__, "access_determination_log_config", access_determination_log_config)
|
435
|
+
if access_enforced is not None:
|
436
|
+
pulumi.set(__self__, "access_enforced", access_enforced)
|
437
|
+
if consent_header_handling is not None:
|
438
|
+
pulumi.set(__self__, "consent_header_handling", consent_header_handling)
|
439
|
+
if enforced_admin_consents is not None:
|
440
|
+
pulumi.set(__self__, "enforced_admin_consents", enforced_admin_consents)
|
441
|
+
|
442
|
+
@_builtins.property
|
443
|
+
@pulumi.getter
|
444
|
+
def version(self) -> _builtins.str:
|
445
|
+
"""
|
446
|
+
Specifies which consent enforcement version is being used for this FHIR store. This field can only be set once by either [fhirStores.create][] or [fhirStores.patch][]. After that, you must call [fhirStores.applyConsents][] to change the version.
|
447
|
+
Possible values are: `CONSENT_ENFORCEMENT_VERSION_UNSPECIFIED`, `V1`.
|
448
|
+
"""
|
449
|
+
return pulumi.get(self, "version")
|
450
|
+
|
451
|
+
@_builtins.property
|
452
|
+
@pulumi.getter(name="accessDeterminationLogConfig")
|
453
|
+
def access_determination_log_config(self) -> Optional['outputs.FhirStoreConsentConfigAccessDeterminationLogConfig']:
|
454
|
+
"""
|
455
|
+
Specifies how the server logs the consent-aware requests. If not specified, the AccessDeterminationLogConfig.LogLevel.MINIMUM option is used.
|
456
|
+
Structure is documented below.
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "access_determination_log_config")
|
459
|
+
|
460
|
+
@_builtins.property
|
461
|
+
@pulumi.getter(name="accessEnforced")
|
462
|
+
def access_enforced(self) -> Optional[_builtins.bool]:
|
463
|
+
"""
|
464
|
+
The default value is false. If set to true, when accessing FHIR resources, the consent headers will be verified against consents given by patients. See the ConsentEnforcementVersion for the supported consent headers.
|
465
|
+
"""
|
466
|
+
return pulumi.get(self, "access_enforced")
|
467
|
+
|
468
|
+
@_builtins.property
|
469
|
+
@pulumi.getter(name="consentHeaderHandling")
|
470
|
+
def consent_header_handling(self) -> Optional['outputs.FhirStoreConsentConfigConsentHeaderHandling']:
|
471
|
+
"""
|
472
|
+
Different options to configure the behaviour of the server when handling the X-Consent-Scope header.
|
473
|
+
Structure is documented below.
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "consent_header_handling")
|
476
|
+
|
477
|
+
@_builtins.property
|
478
|
+
@pulumi.getter(name="enforcedAdminConsents")
|
479
|
+
def enforced_admin_consents(self) -> Optional[Sequence[_builtins.str]]:
|
480
|
+
"""
|
481
|
+
(Output)
|
482
|
+
The versioned names of the enforced admin Consent resource(s), in the format projects/{projectId}/locations/{location}/datasets/{datasetId}/fhirStores/{fhirStoreId}/fhir/Consent/{resourceId}/_history/{version_id}. For FHIR stores with disableResourceVersioning=true, the format is projects/{projectId}/locations/{location}/datasets/{datasetId}/fhirStores/{fhirStoreId}/fhir/Consent/{resourceId}. This field can only be updated using [fhirStores.applyAdminConsents][].
|
483
|
+
"""
|
484
|
+
return pulumi.get(self, "enforced_admin_consents")
|
485
|
+
|
486
|
+
|
487
|
+
@pulumi.output_type
|
488
|
+
class FhirStoreConsentConfigAccessDeterminationLogConfig(dict):
|
489
|
+
@staticmethod
|
490
|
+
def __key_warning(key: str):
|
491
|
+
suggest = None
|
492
|
+
if key == "logLevel":
|
493
|
+
suggest = "log_level"
|
494
|
+
|
495
|
+
if suggest:
|
496
|
+
pulumi.log.warn(f"Key '{key}' not found in FhirStoreConsentConfigAccessDeterminationLogConfig. Access the value via the '{suggest}' property getter instead.")
|
497
|
+
|
498
|
+
def __getitem__(self, key: str) -> Any:
|
499
|
+
FhirStoreConsentConfigAccessDeterminationLogConfig.__key_warning(key)
|
500
|
+
return super().__getitem__(key)
|
501
|
+
|
502
|
+
def get(self, key: str, default = None) -> Any:
|
503
|
+
FhirStoreConsentConfigAccessDeterminationLogConfig.__key_warning(key)
|
504
|
+
return super().get(key, default)
|
505
|
+
|
506
|
+
def __init__(__self__, *,
|
507
|
+
log_level: Optional[_builtins.str] = None):
|
508
|
+
"""
|
509
|
+
:param _builtins.str log_level: Controls the amount of detail to include as part of the audit logs.
|
510
|
+
Default value is `MINIMUM`.
|
511
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `DISABLED`, `MINIMUM`, `VERBOSE`.
|
512
|
+
"""
|
513
|
+
if log_level is not None:
|
514
|
+
pulumi.set(__self__, "log_level", log_level)
|
515
|
+
|
516
|
+
@_builtins.property
|
517
|
+
@pulumi.getter(name="logLevel")
|
518
|
+
def log_level(self) -> Optional[_builtins.str]:
|
519
|
+
"""
|
520
|
+
Controls the amount of detail to include as part of the audit logs.
|
521
|
+
Default value is `MINIMUM`.
|
522
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `DISABLED`, `MINIMUM`, `VERBOSE`.
|
523
|
+
"""
|
524
|
+
return pulumi.get(self, "log_level")
|
525
|
+
|
526
|
+
|
527
|
+
@pulumi.output_type
|
528
|
+
class FhirStoreConsentConfigConsentHeaderHandling(dict):
|
529
|
+
def __init__(__self__, *,
|
530
|
+
profile: Optional[_builtins.str] = None):
|
531
|
+
"""
|
532
|
+
:param _builtins.str profile: Specifies the default server behavior when the header is empty. If not specified, the ScopeProfile.PERMIT_EMPTY_SCOPE option is used.
|
533
|
+
Default value is `PERMIT_EMPTY_SCOPE`.
|
534
|
+
Possible values are: `SCOPE_PROFILE_UNSPECIFIED`, `PERMIT_EMPTY_SCOPE`, `REQUIRED_ON_READ`.
|
535
|
+
"""
|
536
|
+
if profile is not None:
|
537
|
+
pulumi.set(__self__, "profile", profile)
|
538
|
+
|
539
|
+
@_builtins.property
|
540
|
+
@pulumi.getter
|
541
|
+
def profile(self) -> Optional[_builtins.str]:
|
542
|
+
"""
|
543
|
+
Specifies the default server behavior when the header is empty. If not specified, the ScopeProfile.PERMIT_EMPTY_SCOPE option is used.
|
544
|
+
Default value is `PERMIT_EMPTY_SCOPE`.
|
545
|
+
Possible values are: `SCOPE_PROFILE_UNSPECIFIED`, `PERMIT_EMPTY_SCOPE`, `REQUIRED_ON_READ`.
|
546
|
+
"""
|
547
|
+
return pulumi.get(self, "profile")
|
548
|
+
|
549
|
+
|
387
550
|
@pulumi.output_type
|
388
551
|
class FhirStoreIamBindingCondition(dict):
|
389
552
|
def __init__(__self__, *,
|