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
pulumi_gcp/gkehub/membership.py
CHANGED
@@ -23,7 +23,6 @@ class MembershipArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
membership_id: pulumi.Input[_builtins.str],
|
25
25
|
authority: Optional[pulumi.Input['MembershipAuthorityArgs']] = None,
|
26
|
-
description: Optional[pulumi.Input[_builtins.str]] = None,
|
27
26
|
endpoint: Optional[pulumi.Input['MembershipEndpointArgs']] = None,
|
28
27
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
29
28
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -35,9 +34,6 @@ class MembershipArgs:
|
|
35
34
|
See the workload identity documentation for more details:
|
36
35
|
https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
|
37
36
|
Structure is documented below.
|
38
|
-
:param pulumi.Input[_builtins.str] description: The name of this entity type to be displayed on the console. This field is unavailable in v1 of the API.
|
39
|
-
|
40
|
-
> **Warning:** `description` is deprecated and will be removed in a future major release.
|
41
37
|
:param pulumi.Input['MembershipEndpointArgs'] endpoint: If this Membership is a Kubernetes API server hosted on GKE, this is a self link to its GCP resource.
|
42
38
|
Structure is documented below.
|
43
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Labels to apply to this membership.
|
@@ -52,11 +48,6 @@ class MembershipArgs:
|
|
52
48
|
pulumi.set(__self__, "membership_id", membership_id)
|
53
49
|
if authority is not None:
|
54
50
|
pulumi.set(__self__, "authority", authority)
|
55
|
-
if description is not None:
|
56
|
-
warnings.warn("""`description` is deprecated and will be removed in a future major release.""", DeprecationWarning)
|
57
|
-
pulumi.log.warn("""description is deprecated: `description` is deprecated and will be removed in a future major release.""")
|
58
|
-
if description is not None:
|
59
|
-
pulumi.set(__self__, "description", description)
|
60
51
|
if endpoint is not None:
|
61
52
|
pulumi.set(__self__, "endpoint", endpoint)
|
62
53
|
if labels is not None:
|
@@ -93,21 +84,6 @@ class MembershipArgs:
|
|
93
84
|
def authority(self, value: Optional[pulumi.Input['MembershipAuthorityArgs']]):
|
94
85
|
pulumi.set(self, "authority", value)
|
95
86
|
|
96
|
-
@_builtins.property
|
97
|
-
@pulumi.getter
|
98
|
-
@_utilities.deprecated("""`description` is deprecated and will be removed in a future major release.""")
|
99
|
-
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
100
|
-
"""
|
101
|
-
The name of this entity type to be displayed on the console. This field is unavailable in v1 of the API.
|
102
|
-
|
103
|
-
> **Warning:** `description` is deprecated and will be removed in a future major release.
|
104
|
-
"""
|
105
|
-
return pulumi.get(self, "description")
|
106
|
-
|
107
|
-
@description.setter
|
108
|
-
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
109
|
-
pulumi.set(self, "description", value)
|
110
|
-
|
111
87
|
@_builtins.property
|
112
88
|
@pulumi.getter
|
113
89
|
def endpoint(self) -> Optional[pulumi.Input['MembershipEndpointArgs']]:
|
@@ -167,7 +143,6 @@ class MembershipArgs:
|
|
167
143
|
class _MembershipState:
|
168
144
|
def __init__(__self__, *,
|
169
145
|
authority: Optional[pulumi.Input['MembershipAuthorityArgs']] = None,
|
170
|
-
description: Optional[pulumi.Input[_builtins.str]] = None,
|
171
146
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
172
147
|
endpoint: Optional[pulumi.Input['MembershipEndpointArgs']] = None,
|
173
148
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
@@ -182,9 +157,6 @@ class _MembershipState:
|
|
182
157
|
See the workload identity documentation for more details:
|
183
158
|
https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
|
184
159
|
Structure is documented below.
|
185
|
-
:param pulumi.Input[_builtins.str] description: The name of this entity type to be displayed on the console. This field is unavailable in v1 of the API.
|
186
|
-
|
187
|
-
> **Warning:** `description` is deprecated and will be removed in a future major release.
|
188
160
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
189
161
|
:param pulumi.Input['MembershipEndpointArgs'] endpoint: If this Membership is a Kubernetes API server hosted on GKE, this is a self link to its GCP resource.
|
190
162
|
Structure is documented below.
|
@@ -203,11 +175,6 @@ class _MembershipState:
|
|
203
175
|
"""
|
204
176
|
if authority is not None:
|
205
177
|
pulumi.set(__self__, "authority", authority)
|
206
|
-
if description is not None:
|
207
|
-
warnings.warn("""`description` is deprecated and will be removed in a future major release.""", DeprecationWarning)
|
208
|
-
pulumi.log.warn("""description is deprecated: `description` is deprecated and will be removed in a future major release.""")
|
209
|
-
if description is not None:
|
210
|
-
pulumi.set(__self__, "description", description)
|
211
178
|
if effective_labels is not None:
|
212
179
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
213
180
|
if endpoint is not None:
|
@@ -240,21 +207,6 @@ class _MembershipState:
|
|
240
207
|
def authority(self, value: Optional[pulumi.Input['MembershipAuthorityArgs']]):
|
241
208
|
pulumi.set(self, "authority", value)
|
242
209
|
|
243
|
-
@_builtins.property
|
244
|
-
@pulumi.getter
|
245
|
-
@_utilities.deprecated("""`description` is deprecated and will be removed in a future major release.""")
|
246
|
-
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
247
|
-
"""
|
248
|
-
The name of this entity type to be displayed on the console. This field is unavailable in v1 of the API.
|
249
|
-
|
250
|
-
> **Warning:** `description` is deprecated and will be removed in a future major release.
|
251
|
-
"""
|
252
|
-
return pulumi.get(self, "description")
|
253
|
-
|
254
|
-
@description.setter
|
255
|
-
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
256
|
-
pulumi.set(self, "description", value)
|
257
|
-
|
258
210
|
@_builtins.property
|
259
211
|
@pulumi.getter(name="effectiveLabels")
|
260
212
|
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
@@ -366,7 +318,6 @@ class Membership(pulumi.CustomResource):
|
|
366
318
|
resource_name: str,
|
367
319
|
opts: Optional[pulumi.ResourceOptions] = None,
|
368
320
|
authority: Optional[pulumi.Input[Union['MembershipAuthorityArgs', 'MembershipAuthorityArgsDict']]] = None,
|
369
|
-
description: Optional[pulumi.Input[_builtins.str]] = None,
|
370
321
|
endpoint: Optional[pulumi.Input[Union['MembershipEndpointArgs', 'MembershipEndpointArgsDict']]] = None,
|
371
322
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
372
323
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -488,9 +439,6 @@ class Membership(pulumi.CustomResource):
|
|
488
439
|
See the workload identity documentation for more details:
|
489
440
|
https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
|
490
441
|
Structure is documented below.
|
491
|
-
:param pulumi.Input[_builtins.str] description: The name of this entity type to be displayed on the console. This field is unavailable in v1 of the API.
|
492
|
-
|
493
|
-
> **Warning:** `description` is deprecated and will be removed in a future major release.
|
494
442
|
:param pulumi.Input[Union['MembershipEndpointArgs', 'MembershipEndpointArgsDict']] endpoint: If this Membership is a Kubernetes API server hosted on GKE, this is a self link to its GCP resource.
|
495
443
|
Structure is documented below.
|
496
444
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Labels to apply to this membership.
|
@@ -634,7 +582,6 @@ class Membership(pulumi.CustomResource):
|
|
634
582
|
resource_name: str,
|
635
583
|
opts: Optional[pulumi.ResourceOptions] = None,
|
636
584
|
authority: Optional[pulumi.Input[Union['MembershipAuthorityArgs', 'MembershipAuthorityArgsDict']]] = None,
|
637
|
-
description: Optional[pulumi.Input[_builtins.str]] = None,
|
638
585
|
endpoint: Optional[pulumi.Input[Union['MembershipEndpointArgs', 'MembershipEndpointArgsDict']]] = None,
|
639
586
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
640
587
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -650,7 +597,6 @@ class Membership(pulumi.CustomResource):
|
|
650
597
|
__props__ = MembershipArgs.__new__(MembershipArgs)
|
651
598
|
|
652
599
|
__props__.__dict__["authority"] = authority
|
653
|
-
__props__.__dict__["description"] = description
|
654
600
|
__props__.__dict__["endpoint"] = endpoint
|
655
601
|
__props__.__dict__["labels"] = labels
|
656
602
|
__props__.__dict__["location"] = location
|
@@ -674,7 +620,6 @@ class Membership(pulumi.CustomResource):
|
|
674
620
|
id: pulumi.Input[str],
|
675
621
|
opts: Optional[pulumi.ResourceOptions] = None,
|
676
622
|
authority: Optional[pulumi.Input[Union['MembershipAuthorityArgs', 'MembershipAuthorityArgsDict']]] = None,
|
677
|
-
description: Optional[pulumi.Input[_builtins.str]] = None,
|
678
623
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
679
624
|
endpoint: Optional[pulumi.Input[Union['MembershipEndpointArgs', 'MembershipEndpointArgsDict']]] = None,
|
680
625
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
@@ -694,9 +639,6 @@ class Membership(pulumi.CustomResource):
|
|
694
639
|
See the workload identity documentation for more details:
|
695
640
|
https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
|
696
641
|
Structure is documented below.
|
697
|
-
:param pulumi.Input[_builtins.str] description: The name of this entity type to be displayed on the console. This field is unavailable in v1 of the API.
|
698
|
-
|
699
|
-
> **Warning:** `description` is deprecated and will be removed in a future major release.
|
700
642
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
701
643
|
:param pulumi.Input[Union['MembershipEndpointArgs', 'MembershipEndpointArgsDict']] endpoint: If this Membership is a Kubernetes API server hosted on GKE, this is a self link to its GCP resource.
|
702
644
|
Structure is documented below.
|
@@ -718,7 +660,6 @@ class Membership(pulumi.CustomResource):
|
|
718
660
|
__props__ = _MembershipState.__new__(_MembershipState)
|
719
661
|
|
720
662
|
__props__.__dict__["authority"] = authority
|
721
|
-
__props__.__dict__["description"] = description
|
722
663
|
__props__.__dict__["effective_labels"] = effective_labels
|
723
664
|
__props__.__dict__["endpoint"] = endpoint
|
724
665
|
__props__.__dict__["labels"] = labels
|
@@ -740,17 +681,6 @@ class Membership(pulumi.CustomResource):
|
|
740
681
|
"""
|
741
682
|
return pulumi.get(self, "authority")
|
742
683
|
|
743
|
-
@_builtins.property
|
744
|
-
@pulumi.getter
|
745
|
-
@_utilities.deprecated("""`description` is deprecated and will be removed in a future major release.""")
|
746
|
-
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
747
|
-
"""
|
748
|
-
The name of this entity type to be displayed on the console. This field is unavailable in v1 of the API.
|
749
|
-
|
750
|
-
> **Warning:** `description` is deprecated and will be removed in a future major release.
|
751
|
-
"""
|
752
|
-
return pulumi.get(self, "description")
|
753
|
-
|
754
684
|
@_builtins.property
|
755
685
|
@pulumi.getter(name="effectiveLabels")
|
756
686
|
def effective_labels(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
@@ -353,6 +353,14 @@ class MembershipRbacRoleBinding(pulumi.CustomResource):
|
|
353
353
|
user: Optional[pulumi.Input[_builtins.str]] = None,
|
354
354
|
__props__=None):
|
355
355
|
"""
|
356
|
+
RBACRoleBinding represents a rbacrolebinding across the Fleet.
|
357
|
+
|
358
|
+
To get more information about MembershipRBACRoleBinding, see:
|
359
|
+
|
360
|
+
* [API documentation](https://cloud.google.com/anthos/fleet-management/docs/reference/rest/v1/projects.locations.memberships)
|
361
|
+
* How-to Guides
|
362
|
+
* [Registering a Cluster](https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster#register_cluster)
|
363
|
+
|
356
364
|
## Example Usage
|
357
365
|
|
358
366
|
### Gkehub Membership Rbac Role Binding Basic
|
@@ -433,6 +441,14 @@ class MembershipRbacRoleBinding(pulumi.CustomResource):
|
|
433
441
|
args: MembershipRbacRoleBindingArgs,
|
434
442
|
opts: Optional[pulumi.ResourceOptions] = None):
|
435
443
|
"""
|
444
|
+
RBACRoleBinding represents a rbacrolebinding across the Fleet.
|
445
|
+
|
446
|
+
To get more information about MembershipRBACRoleBinding, see:
|
447
|
+
|
448
|
+
* [API documentation](https://cloud.google.com/anthos/fleet-management/docs/reference/rest/v1/projects.locations.memberships)
|
449
|
+
* How-to Guides
|
450
|
+
* [Registering a Cluster](https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster#register_cluster)
|
451
|
+
|
436
452
|
## Example Usage
|
437
453
|
|
438
454
|
### Gkehub Membership Rbac Role Binding Basic
|
pulumi_gcp/gkehub/outputs.py
CHANGED
@@ -36,7 +36,6 @@ __all__ = [
|
|
36
36
|
'FeatureIamBindingCondition',
|
37
37
|
'FeatureIamMemberCondition',
|
38
38
|
'FeatureMembershipConfigmanagement',
|
39
|
-
'FeatureMembershipConfigmanagementBinauthz',
|
40
39
|
'FeatureMembershipConfigmanagementConfigSync',
|
41
40
|
'FeatureMembershipConfigmanagementConfigSyncDeploymentOverride',
|
42
41
|
'FeatureMembershipConfigmanagementConfigSyncDeploymentOverrideContainer',
|
@@ -1291,16 +1290,12 @@ class FeatureMembershipConfigmanagement(dict):
|
|
1291
1290
|
return super().get(key, default)
|
1292
1291
|
|
1293
1292
|
def __init__(__self__, *,
|
1294
|
-
binauthz: Optional['outputs.FeatureMembershipConfigmanagementBinauthz'] = None,
|
1295
1293
|
config_sync: Optional['outputs.FeatureMembershipConfigmanagementConfigSync'] = None,
|
1296
1294
|
hierarchy_controller: Optional['outputs.FeatureMembershipConfigmanagementHierarchyController'] = None,
|
1297
1295
|
management: Optional[_builtins.str] = None,
|
1298
1296
|
policy_controller: Optional['outputs.FeatureMembershipConfigmanagementPolicyController'] = None,
|
1299
1297
|
version: Optional[_builtins.str] = None):
|
1300
1298
|
"""
|
1301
|
-
:param 'FeatureMembershipConfigmanagementBinauthzArgs' binauthz: (Optional, Deprecated)
|
1302
|
-
Binauthz configuration for the cluster. Structure is documented below.
|
1303
|
-
This field will be ignored and should not be set.
|
1304
1299
|
:param 'FeatureMembershipConfigmanagementConfigSyncArgs' config_sync: Config Sync configuration for the cluster. Structure is documented below.
|
1305
1300
|
:param 'FeatureMembershipConfigmanagementHierarchyControllerArgs' hierarchy_controller: Hierarchy Controller configuration for the cluster. Structure is documented below.
|
1306
1301
|
Configuring Hierarchy Controller through the configmanagement feature is no longer recommended.
|
@@ -1313,8 +1308,6 @@ class FeatureMembershipConfigmanagement(dict):
|
|
1313
1308
|
Use the policycontroller feature instead.
|
1314
1309
|
:param _builtins.str version: Version of Config Sync installed.
|
1315
1310
|
"""
|
1316
|
-
if binauthz is not None:
|
1317
|
-
pulumi.set(__self__, "binauthz", binauthz)
|
1318
1311
|
if config_sync is not None:
|
1319
1312
|
pulumi.set(__self__, "config_sync", config_sync)
|
1320
1313
|
if hierarchy_controller is not None:
|
@@ -1326,16 +1319,6 @@ class FeatureMembershipConfigmanagement(dict):
|
|
1326
1319
|
if version is not None:
|
1327
1320
|
pulumi.set(__self__, "version", version)
|
1328
1321
|
|
1329
|
-
@_builtins.property
|
1330
|
-
@pulumi.getter
|
1331
|
-
def binauthz(self) -> Optional['outputs.FeatureMembershipConfigmanagementBinauthz']:
|
1332
|
-
"""
|
1333
|
-
(Optional, Deprecated)
|
1334
|
-
Binauthz configuration for the cluster. Structure is documented below.
|
1335
|
-
This field will be ignored and should not be set.
|
1336
|
-
"""
|
1337
|
-
return pulumi.get(self, "binauthz")
|
1338
|
-
|
1339
1322
|
@_builtins.property
|
1340
1323
|
@pulumi.getter(name="configSync")
|
1341
1324
|
def config_sync(self) -> Optional['outputs.FeatureMembershipConfigmanagementConfigSync']:
|
@@ -1383,25 +1366,6 @@ class FeatureMembershipConfigmanagement(dict):
|
|
1383
1366
|
return pulumi.get(self, "version")
|
1384
1367
|
|
1385
1368
|
|
1386
|
-
@pulumi.output_type
|
1387
|
-
class FeatureMembershipConfigmanagementBinauthz(dict):
|
1388
|
-
def __init__(__self__, *,
|
1389
|
-
enabled: Optional[_builtins.bool] = None):
|
1390
|
-
"""
|
1391
|
-
:param _builtins.bool enabled: Whether binauthz is enabled in this cluster.
|
1392
|
-
"""
|
1393
|
-
if enabled is not None:
|
1394
|
-
pulumi.set(__self__, "enabled", enabled)
|
1395
|
-
|
1396
|
-
@_builtins.property
|
1397
|
-
@pulumi.getter
|
1398
|
-
def enabled(self) -> Optional[_builtins.bool]:
|
1399
|
-
"""
|
1400
|
-
Whether binauthz is enabled in this cluster.
|
1401
|
-
"""
|
1402
|
-
return pulumi.get(self, "enabled")
|
1403
|
-
|
1404
|
-
|
1405
1369
|
@pulumi.output_type
|
1406
1370
|
class FeatureMembershipConfigmanagementConfigSync(dict):
|
1407
1371
|
@staticmethod
|
pulumi_gcp/healthcare/_inputs.py
CHANGED
@@ -35,6 +35,12 @@ __all__ = [
|
|
35
35
|
'DicomStoreStreamConfigArgsDict',
|
36
36
|
'DicomStoreStreamConfigBigqueryDestinationArgs',
|
37
37
|
'DicomStoreStreamConfigBigqueryDestinationArgsDict',
|
38
|
+
'FhirStoreConsentConfigArgs',
|
39
|
+
'FhirStoreConsentConfigArgsDict',
|
40
|
+
'FhirStoreConsentConfigAccessDeterminationLogConfigArgs',
|
41
|
+
'FhirStoreConsentConfigAccessDeterminationLogConfigArgsDict',
|
42
|
+
'FhirStoreConsentConfigConsentHeaderHandlingArgs',
|
43
|
+
'FhirStoreConsentConfigConsentHeaderHandlingArgsDict',
|
38
44
|
'FhirStoreIamBindingConditionArgs',
|
39
45
|
'FhirStoreIamBindingConditionArgsDict',
|
40
46
|
'FhirStoreIamMemberConditionArgs',
|
@@ -535,6 +541,205 @@ class DicomStoreStreamConfigBigqueryDestinationArgs:
|
|
535
541
|
pulumi.set(self, "table_uri", value)
|
536
542
|
|
537
543
|
|
544
|
+
if not MYPY:
|
545
|
+
class FhirStoreConsentConfigArgsDict(TypedDict):
|
546
|
+
version: pulumi.Input[_builtins.str]
|
547
|
+
"""
|
548
|
+
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.
|
549
|
+
Possible values are: `CONSENT_ENFORCEMENT_VERSION_UNSPECIFIED`, `V1`.
|
550
|
+
"""
|
551
|
+
access_determination_log_config: NotRequired[pulumi.Input['FhirStoreConsentConfigAccessDeterminationLogConfigArgsDict']]
|
552
|
+
"""
|
553
|
+
Specifies how the server logs the consent-aware requests. If not specified, the AccessDeterminationLogConfig.LogLevel.MINIMUM option is used.
|
554
|
+
Structure is documented below.
|
555
|
+
"""
|
556
|
+
access_enforced: NotRequired[pulumi.Input[_builtins.bool]]
|
557
|
+
"""
|
558
|
+
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.
|
559
|
+
"""
|
560
|
+
consent_header_handling: NotRequired[pulumi.Input['FhirStoreConsentConfigConsentHeaderHandlingArgsDict']]
|
561
|
+
"""
|
562
|
+
Different options to configure the behaviour of the server when handling the X-Consent-Scope header.
|
563
|
+
Structure is documented below.
|
564
|
+
"""
|
565
|
+
enforced_admin_consents: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
566
|
+
"""
|
567
|
+
(Output)
|
568
|
+
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][].
|
569
|
+
"""
|
570
|
+
elif False:
|
571
|
+
FhirStoreConsentConfigArgsDict: TypeAlias = Mapping[str, Any]
|
572
|
+
|
573
|
+
@pulumi.input_type
|
574
|
+
class FhirStoreConsentConfigArgs:
|
575
|
+
def __init__(__self__, *,
|
576
|
+
version: pulumi.Input[_builtins.str],
|
577
|
+
access_determination_log_config: Optional[pulumi.Input['FhirStoreConsentConfigAccessDeterminationLogConfigArgs']] = None,
|
578
|
+
access_enforced: Optional[pulumi.Input[_builtins.bool]] = None,
|
579
|
+
consent_header_handling: Optional[pulumi.Input['FhirStoreConsentConfigConsentHeaderHandlingArgs']] = None,
|
580
|
+
enforced_admin_consents: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
581
|
+
"""
|
582
|
+
:param pulumi.Input[_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.
|
583
|
+
Possible values are: `CONSENT_ENFORCEMENT_VERSION_UNSPECIFIED`, `V1`.
|
584
|
+
:param pulumi.Input['FhirStoreConsentConfigAccessDeterminationLogConfigArgs'] access_determination_log_config: Specifies how the server logs the consent-aware requests. If not specified, the AccessDeterminationLogConfig.LogLevel.MINIMUM option is used.
|
585
|
+
Structure is documented below.
|
586
|
+
:param pulumi.Input[_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.
|
587
|
+
:param pulumi.Input['FhirStoreConsentConfigConsentHeaderHandlingArgs'] consent_header_handling: Different options to configure the behaviour of the server when handling the X-Consent-Scope header.
|
588
|
+
Structure is documented below.
|
589
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enforced_admin_consents: (Output)
|
590
|
+
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][].
|
591
|
+
"""
|
592
|
+
pulumi.set(__self__, "version", version)
|
593
|
+
if access_determination_log_config is not None:
|
594
|
+
pulumi.set(__self__, "access_determination_log_config", access_determination_log_config)
|
595
|
+
if access_enforced is not None:
|
596
|
+
pulumi.set(__self__, "access_enforced", access_enforced)
|
597
|
+
if consent_header_handling is not None:
|
598
|
+
pulumi.set(__self__, "consent_header_handling", consent_header_handling)
|
599
|
+
if enforced_admin_consents is not None:
|
600
|
+
pulumi.set(__self__, "enforced_admin_consents", enforced_admin_consents)
|
601
|
+
|
602
|
+
@_builtins.property
|
603
|
+
@pulumi.getter
|
604
|
+
def version(self) -> pulumi.Input[_builtins.str]:
|
605
|
+
"""
|
606
|
+
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.
|
607
|
+
Possible values are: `CONSENT_ENFORCEMENT_VERSION_UNSPECIFIED`, `V1`.
|
608
|
+
"""
|
609
|
+
return pulumi.get(self, "version")
|
610
|
+
|
611
|
+
@version.setter
|
612
|
+
def version(self, value: pulumi.Input[_builtins.str]):
|
613
|
+
pulumi.set(self, "version", value)
|
614
|
+
|
615
|
+
@_builtins.property
|
616
|
+
@pulumi.getter(name="accessDeterminationLogConfig")
|
617
|
+
def access_determination_log_config(self) -> Optional[pulumi.Input['FhirStoreConsentConfigAccessDeterminationLogConfigArgs']]:
|
618
|
+
"""
|
619
|
+
Specifies how the server logs the consent-aware requests. If not specified, the AccessDeterminationLogConfig.LogLevel.MINIMUM option is used.
|
620
|
+
Structure is documented below.
|
621
|
+
"""
|
622
|
+
return pulumi.get(self, "access_determination_log_config")
|
623
|
+
|
624
|
+
@access_determination_log_config.setter
|
625
|
+
def access_determination_log_config(self, value: Optional[pulumi.Input['FhirStoreConsentConfigAccessDeterminationLogConfigArgs']]):
|
626
|
+
pulumi.set(self, "access_determination_log_config", value)
|
627
|
+
|
628
|
+
@_builtins.property
|
629
|
+
@pulumi.getter(name="accessEnforced")
|
630
|
+
def access_enforced(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
631
|
+
"""
|
632
|
+
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.
|
633
|
+
"""
|
634
|
+
return pulumi.get(self, "access_enforced")
|
635
|
+
|
636
|
+
@access_enforced.setter
|
637
|
+
def access_enforced(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
638
|
+
pulumi.set(self, "access_enforced", value)
|
639
|
+
|
640
|
+
@_builtins.property
|
641
|
+
@pulumi.getter(name="consentHeaderHandling")
|
642
|
+
def consent_header_handling(self) -> Optional[pulumi.Input['FhirStoreConsentConfigConsentHeaderHandlingArgs']]:
|
643
|
+
"""
|
644
|
+
Different options to configure the behaviour of the server when handling the X-Consent-Scope header.
|
645
|
+
Structure is documented below.
|
646
|
+
"""
|
647
|
+
return pulumi.get(self, "consent_header_handling")
|
648
|
+
|
649
|
+
@consent_header_handling.setter
|
650
|
+
def consent_header_handling(self, value: Optional[pulumi.Input['FhirStoreConsentConfigConsentHeaderHandlingArgs']]):
|
651
|
+
pulumi.set(self, "consent_header_handling", value)
|
652
|
+
|
653
|
+
@_builtins.property
|
654
|
+
@pulumi.getter(name="enforcedAdminConsents")
|
655
|
+
def enforced_admin_consents(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
656
|
+
"""
|
657
|
+
(Output)
|
658
|
+
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][].
|
659
|
+
"""
|
660
|
+
return pulumi.get(self, "enforced_admin_consents")
|
661
|
+
|
662
|
+
@enforced_admin_consents.setter
|
663
|
+
def enforced_admin_consents(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
664
|
+
pulumi.set(self, "enforced_admin_consents", value)
|
665
|
+
|
666
|
+
|
667
|
+
if not MYPY:
|
668
|
+
class FhirStoreConsentConfigAccessDeterminationLogConfigArgsDict(TypedDict):
|
669
|
+
log_level: NotRequired[pulumi.Input[_builtins.str]]
|
670
|
+
"""
|
671
|
+
Controls the amount of detail to include as part of the audit logs.
|
672
|
+
Default value is `MINIMUM`.
|
673
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `DISABLED`, `MINIMUM`, `VERBOSE`.
|
674
|
+
"""
|
675
|
+
elif False:
|
676
|
+
FhirStoreConsentConfigAccessDeterminationLogConfigArgsDict: TypeAlias = Mapping[str, Any]
|
677
|
+
|
678
|
+
@pulumi.input_type
|
679
|
+
class FhirStoreConsentConfigAccessDeterminationLogConfigArgs:
|
680
|
+
def __init__(__self__, *,
|
681
|
+
log_level: Optional[pulumi.Input[_builtins.str]] = None):
|
682
|
+
"""
|
683
|
+
:param pulumi.Input[_builtins.str] log_level: Controls the amount of detail to include as part of the audit logs.
|
684
|
+
Default value is `MINIMUM`.
|
685
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `DISABLED`, `MINIMUM`, `VERBOSE`.
|
686
|
+
"""
|
687
|
+
if log_level is not None:
|
688
|
+
pulumi.set(__self__, "log_level", log_level)
|
689
|
+
|
690
|
+
@_builtins.property
|
691
|
+
@pulumi.getter(name="logLevel")
|
692
|
+
def log_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
693
|
+
"""
|
694
|
+
Controls the amount of detail to include as part of the audit logs.
|
695
|
+
Default value is `MINIMUM`.
|
696
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `DISABLED`, `MINIMUM`, `VERBOSE`.
|
697
|
+
"""
|
698
|
+
return pulumi.get(self, "log_level")
|
699
|
+
|
700
|
+
@log_level.setter
|
701
|
+
def log_level(self, value: Optional[pulumi.Input[_builtins.str]]):
|
702
|
+
pulumi.set(self, "log_level", value)
|
703
|
+
|
704
|
+
|
705
|
+
if not MYPY:
|
706
|
+
class FhirStoreConsentConfigConsentHeaderHandlingArgsDict(TypedDict):
|
707
|
+
profile: NotRequired[pulumi.Input[_builtins.str]]
|
708
|
+
"""
|
709
|
+
Specifies the default server behavior when the header is empty. If not specified, the ScopeProfile.PERMIT_EMPTY_SCOPE option is used.
|
710
|
+
Default value is `PERMIT_EMPTY_SCOPE`.
|
711
|
+
Possible values are: `SCOPE_PROFILE_UNSPECIFIED`, `PERMIT_EMPTY_SCOPE`, `REQUIRED_ON_READ`.
|
712
|
+
"""
|
713
|
+
elif False:
|
714
|
+
FhirStoreConsentConfigConsentHeaderHandlingArgsDict: TypeAlias = Mapping[str, Any]
|
715
|
+
|
716
|
+
@pulumi.input_type
|
717
|
+
class FhirStoreConsentConfigConsentHeaderHandlingArgs:
|
718
|
+
def __init__(__self__, *,
|
719
|
+
profile: Optional[pulumi.Input[_builtins.str]] = None):
|
720
|
+
"""
|
721
|
+
:param pulumi.Input[_builtins.str] profile: Specifies the default server behavior when the header is empty. If not specified, the ScopeProfile.PERMIT_EMPTY_SCOPE option is used.
|
722
|
+
Default value is `PERMIT_EMPTY_SCOPE`.
|
723
|
+
Possible values are: `SCOPE_PROFILE_UNSPECIFIED`, `PERMIT_EMPTY_SCOPE`, `REQUIRED_ON_READ`.
|
724
|
+
"""
|
725
|
+
if profile is not None:
|
726
|
+
pulumi.set(__self__, "profile", profile)
|
727
|
+
|
728
|
+
@_builtins.property
|
729
|
+
@pulumi.getter
|
730
|
+
def profile(self) -> Optional[pulumi.Input[_builtins.str]]:
|
731
|
+
"""
|
732
|
+
Specifies the default server behavior when the header is empty. If not specified, the ScopeProfile.PERMIT_EMPTY_SCOPE option is used.
|
733
|
+
Default value is `PERMIT_EMPTY_SCOPE`.
|
734
|
+
Possible values are: `SCOPE_PROFILE_UNSPECIFIED`, `PERMIT_EMPTY_SCOPE`, `REQUIRED_ON_READ`.
|
735
|
+
"""
|
736
|
+
return pulumi.get(self, "profile")
|
737
|
+
|
738
|
+
@profile.setter
|
739
|
+
def profile(self, value: Optional[pulumi.Input[_builtins.str]]):
|
740
|
+
pulumi.set(self, "profile", value)
|
741
|
+
|
742
|
+
|
538
743
|
if not MYPY:
|
539
744
|
class FhirStoreIamBindingConditionArgsDict(TypedDict):
|
540
745
|
expression: pulumi.Input[_builtins.str]
|