pulumi-gcp 7.28.0a1718950249__py3-none-any.whl → 7.29.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 +67 -0
- pulumi_gcp/_utilities.py +35 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/activedirectory/domain.py +14 -14
- pulumi_gcp/activedirectory/domain_trust.py +14 -14
- pulumi_gcp/alloydb/backup.py +8 -8
- pulumi_gcp/alloydb/cluster.py +11 -17
- pulumi_gcp/alloydb/instance.py +8 -8
- pulumi_gcp/alloydb/user.py +8 -8
- pulumi_gcp/apigee/addons_config.py +4 -4
- pulumi_gcp/apigee/endpoint_attachment.py +2 -2
- pulumi_gcp/apigee/env_group.py +2 -2
- pulumi_gcp/apigee/environment.py +2 -2
- pulumi_gcp/apigee/instance.py +8 -8
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +10 -10
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +6 -6
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/apigee/target_server.py +10 -10
- pulumi_gcp/apphub/service.py +20 -20
- pulumi_gcp/apphub/service_project_attachment.py +8 -8
- pulumi_gcp/applicationintegration/auth_config.py +2 -2
- pulumi_gcp/applicationintegration/client.py +6 -18
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/_inputs.py +4 -4
- pulumi_gcp/artifactregistry/get_docker_image.py +244 -0
- pulumi_gcp/artifactregistry/outputs.py +6 -6
- pulumi_gcp/artifactregistry/repository.py +10 -10
- pulumi_gcp/backupdisasterrecovery/management_server.py +2 -2
- pulumi_gcp/bigquery/_inputs.py +2 -6
- pulumi_gcp/bigquery/data_transfer_config.py +4 -4
- pulumi_gcp/bigquery/dataset.py +75 -0
- pulumi_gcp/bigquery/get_dataset.py +11 -1
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/bigquery/outputs.py +2 -6
- pulumi_gcp/bigtable/_inputs.py +41 -3
- pulumi_gcp/bigtable/instance.py +3 -9
- pulumi_gcp/bigtable/outputs.py +50 -3
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/billing/_inputs.py +22 -0
- pulumi_gcp/billing/budget.py +50 -0
- pulumi_gcp/billing/outputs.py +20 -0
- pulumi_gcp/certificateauthority/authority.py +2 -2
- pulumi_gcp/certificateauthority/certificate.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +2 -6
- pulumi_gcp/certificatemanager/certificate.py +4 -4
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +2 -2
- pulumi_gcp/certificatemanager/outputs.py +2 -6
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +6 -6
- pulumi_gcp/cloudbuild/trigger.py +2 -2
- pulumi_gcp/cloudbuild/worker_pool.py +6 -6
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +112 -4
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/cloudfunctionsv2/function.py +28 -28
- pulumi_gcp/cloudids/endpoint.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +3 -9
- pulumi_gcp/cloudrun/outputs.py +3 -9
- pulumi_gcp/cloudrunv2/get_job.py +21 -1
- pulumi_gcp/cloudrunv2/job.py +163 -19
- pulumi_gcp/cloudrunv2/service.py +8 -8
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +87 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/disk.py +3 -9
- pulumi_gcp/compute/firewall.py +3 -9
- pulumi_gcp/compute/forwarding_rule.py +22 -22
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +176 -5
- pulumi_gcp/compute/packet_mirroring.py +2 -2
- pulumi_gcp/compute/project_cloud_armor_tier.py +2 -2
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_disk.py +3 -9
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_security_policy_rule.py +2 -2
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/route.py +2 -2
- pulumi_gcp/compute/subnetwork.py +2 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/compute/target_instance.py +2 -2
- pulumi_gcp/compute/vpn_gateway.py +2 -2
- pulumi_gcp/compute/vpn_tunnel.py +2 -2
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +4 -8
- pulumi_gcp/container/outputs.py +6 -10
- pulumi_gcp/databasemigrationservice/connection_profile.py +16 -16
- pulumi_gcp/datacatalog/policy_tag.py +2 -2
- pulumi_gcp/datafusion/instance.py +4 -8
- pulumi_gcp/dataplex/asset.py +2 -2
- pulumi_gcp/dataplex/datascan.py +2 -2
- pulumi_gcp/dataproc/_inputs.py +100 -0
- pulumi_gcp/dataproc/metastore_service.py +172 -0
- pulumi_gcp/dataproc/outputs.py +192 -1
- pulumi_gcp/dataproc/workflow_template.py +3 -9
- pulumi_gcp/datastore/data_store_index.py +2 -2
- pulumi_gcp/datastream/stream.py +6 -6
- pulumi_gcp/diagflow/entity_type.py +2 -2
- pulumi_gcp/diagflow/fulfillment.py +2 -2
- pulumi_gcp/diagflow/intent.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/node_pool.py +2 -2
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/edgecontainer/vpn_connection.py +2 -2
- pulumi_gcp/eventarc/channel.py +2 -2
- pulumi_gcp/eventarc/google_channel_config.py +2 -2
- pulumi_gcp/filestore/instance.py +3 -9
- pulumi_gcp/firebase/app_check_app_attest_config.py +8 -8
- pulumi_gcp/firebase/app_check_debug_token.py +4 -4
- pulumi_gcp/firebase/app_check_device_check_config.py +4 -4
- pulumi_gcp/firebase/app_check_play_integrity_config.py +8 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +4 -4
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +4 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -6
- pulumi_gcp/firebase/database_instance.py +2 -2
- pulumi_gcp/firestore/database.py +4 -4
- pulumi_gcp/firestore/document.py +12 -12
- pulumi_gcp/folder/access_approval_settings.py +2 -2
- pulumi_gcp/gkehub/_inputs.py +20 -8
- pulumi_gcp/gkehub/membership.py +3 -9
- pulumi_gcp/gkehub/membership_binding.py +4 -4
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +2 -2
- pulumi_gcp/gkehub/outputs.py +19 -9
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +2 -2
- pulumi_gcp/healthcare/fhir_store.py +3 -9
- pulumi_gcp/healthcare/hl7_store.py +3 -9
- pulumi_gcp/integrationconnectors/connection.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +6 -6
- pulumi_gcp/kms/_inputs.py +1 -3
- pulumi_gcp/kms/autokey_config.py +16 -16
- pulumi_gcp/kms/key_handle.py +22 -22
- pulumi_gcp/kms/outputs.py +1 -3
- pulumi_gcp/logging/folder_settings.py +2 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/linked_dataset.py +2 -2
- pulumi_gcp/logging/organization_settings.py +2 -2
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/logging/project_bucket_config.py +2 -2
- pulumi_gcp/looker/instance.py +2 -2
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/netapp/volume_replication.py +2 -2
- pulumi_gcp/netapp/volume_snapshot.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +2 -2
- pulumi_gcp/networksecurity/gateway_security_policy.py +4 -4
- pulumi_gcp/networksecurity/tls_inspection_policy.py +4 -4
- pulumi_gcp/networkservices/gateway.py +6 -6
- pulumi_gcp/organizations/access_approval_settings.py +2 -2
- pulumi_gcp/parallelstore/instance.py +2 -2
- pulumi_gcp/projects/access_approval_settings.py +5 -11
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +66 -0
- pulumi_gcp/pubsub/schema.py +2 -2
- pulumi_gcp/pubsub/subscription.py +174 -8
- pulumi_gcp/pubsub/topic.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +4 -4
- pulumi_gcp/redis/get_instance.py +11 -1
- pulumi_gcp/redis/instance.py +49 -2
- pulumi_gcp/secretmanager/secret.py +2 -2
- pulumi_gcp/securesourcemanager/instance.py +6 -6
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +2 -2
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/servicenetworking/__init__.py +1 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +511 -0
- pulumi_gcp/sql/_inputs.py +1 -3
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +1 -3
- pulumi_gcp/sql/user.py +21 -7
- pulumi_gcp/storage/get_project_service_account.py +2 -2
- pulumi_gcp/storage/insights_report_config.py +2 -2
- pulumi_gcp/storage/notification.py +2 -2
- pulumi_gcp/storage/transfer_agent_pool.py +2 -2
- pulumi_gcp/storage/transfer_job.py +4 -4
- pulumi_gcp/tpu/v2_vm.py +4 -4
- pulumi_gcp/vertex/_inputs.py +1 -3
- pulumi_gcp/vertex/ai_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store.py +31 -8
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_tensorboard.py +2 -2
- pulumi_gcp/vertex/outputs.py +1 -3
- pulumi_gcp/vmwareengine/external_address.py +2 -2
- pulumi_gcp/vmwareengine/network.py +4 -4
- pulumi_gcp/vpcaccess/connector.py +2 -8
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/RECORD +214 -200
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/kms/outputs.py
CHANGED
@@ -226,14 +226,12 @@ class CryptoKeyVersionAttestation(dict):
|
|
226
226
|
|
227
227
|
@property
|
228
228
|
@pulumi.getter(name="externalProtectionLevelOptions")
|
229
|
+
@_utilities.deprecated("""`externalProtectionLevelOptions` is being un-nested from the `attestation` field. Please use the top level `externalProtectionLevelOptions` field instead.""")
|
229
230
|
def external_protection_level_options(self) -> Optional['outputs.CryptoKeyVersionAttestationExternalProtectionLevelOptions']:
|
230
231
|
"""
|
231
232
|
ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.
|
232
233
|
Structure is documented below.
|
233
234
|
"""
|
234
|
-
warnings.warn("""`externalProtectionLevelOptions` is being un-nested from the `attestation` field. Please use the top level `externalProtectionLevelOptions` field instead.""", DeprecationWarning)
|
235
|
-
pulumi.log.warn("""external_protection_level_options is deprecated: `externalProtectionLevelOptions` is being un-nested from the `attestation` field. Please use the top level `externalProtectionLevelOptions` field instead.""")
|
236
|
-
|
237
235
|
return pulumi.get(self, "external_protection_level_options")
|
238
236
|
|
239
237
|
@property
|
@@ -254,7 +254,7 @@ class FolderSettings(pulumi.CustomResource):
|
|
254
254
|
folder=my_folder.folder_id,
|
255
255
|
kms_key_name="kms-key",
|
256
256
|
storage_location="us-central1",
|
257
|
-
opts=pulumi.ResourceOptions(depends_on=[iam]))
|
257
|
+
opts = pulumi.ResourceOptions(depends_on=[iam]))
|
258
258
|
```
|
259
259
|
|
260
260
|
## Import
|
@@ -321,7 +321,7 @@ class FolderSettings(pulumi.CustomResource):
|
|
321
321
|
folder=my_folder.folder_id,
|
322
322
|
kms_key_name="kms-key",
|
323
323
|
storage_location="us-central1",
|
324
|
-
opts=pulumi.ResourceOptions(depends_on=[iam]))
|
324
|
+
opts = pulumi.ResourceOptions(depends_on=[iam]))
|
325
325
|
```
|
326
326
|
|
327
327
|
## Import
|
@@ -48,8 +48,8 @@ class FolderSinkArgs:
|
|
48
48
|
write a filter.
|
49
49
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
50
50
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
51
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
52
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
51
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
52
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
53
53
|
:param pulumi.Input[str] name: The name of the logging sink.
|
54
54
|
"""
|
55
55
|
pulumi.set(__self__, "destination", destination)
|
@@ -183,8 +183,8 @@ class FolderSinkArgs:
|
|
183
183
|
@pulumi.getter(name="interceptChildren")
|
184
184
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
185
185
|
"""
|
186
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
187
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
186
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not
|
187
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
188
188
|
"""
|
189
189
|
return pulumi.get(self, "intercept_children")
|
190
190
|
|
@@ -241,8 +241,8 @@ class _FolderSinkState:
|
|
241
241
|
accepted.
|
242
242
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
243
243
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
244
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
245
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
244
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
245
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
246
246
|
:param pulumi.Input[str] name: The name of the logging sink.
|
247
247
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
248
248
|
configured `destination`.
|
@@ -382,8 +382,8 @@ class _FolderSinkState:
|
|
382
382
|
@pulumi.getter(name="interceptChildren")
|
383
383
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
384
384
|
"""
|
385
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
386
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
385
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not
|
386
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
387
387
|
"""
|
388
388
|
return pulumi.get(self, "intercept_children")
|
389
389
|
|
@@ -497,8 +497,8 @@ class FolderSink(pulumi.CustomResource):
|
|
497
497
|
accepted.
|
498
498
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
499
499
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
500
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
501
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
500
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
501
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
502
502
|
:param pulumi.Input[str] name: The name of the logging sink.
|
503
503
|
"""
|
504
504
|
...
|
@@ -646,8 +646,8 @@ class FolderSink(pulumi.CustomResource):
|
|
646
646
|
accepted.
|
647
647
|
:param pulumi.Input[bool] include_children: Whether or not to include children folders in the sink export. If true, logs
|
648
648
|
associated with child projects are also exported; otherwise only logs relating to the provided folder are included.
|
649
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
650
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
649
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
650
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
651
651
|
:param pulumi.Input[str] name: The name of the logging sink.
|
652
652
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
653
653
|
configured `destination`.
|
@@ -749,8 +749,8 @@ class FolderSink(pulumi.CustomResource):
|
|
749
749
|
@pulumi.getter(name="interceptChildren")
|
750
750
|
def intercept_children(self) -> pulumi.Output[Optional[bool]]:
|
751
751
|
"""
|
752
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
753
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
752
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not
|
753
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
754
754
|
"""
|
755
755
|
return pulumi.get(self, "intercept_children")
|
756
756
|
|
@@ -353,7 +353,7 @@ class LinkedDataset(pulumi.CustomResource):
|
|
353
353
|
parent="projects/my-project-name",
|
354
354
|
location="global",
|
355
355
|
description="Linked dataset test",
|
356
|
-
opts=pulumi.ResourceOptions(depends_on=[logging_linked_dataset]))
|
356
|
+
opts = pulumi.ResourceOptions(depends_on=[logging_linked_dataset]))
|
357
357
|
```
|
358
358
|
|
359
359
|
## Import
|
@@ -433,7 +433,7 @@ class LinkedDataset(pulumi.CustomResource):
|
|
433
433
|
parent="projects/my-project-name",
|
434
434
|
location="global",
|
435
435
|
description="Linked dataset test",
|
436
|
-
opts=pulumi.ResourceOptions(depends_on=[logging_linked_dataset]))
|
436
|
+
opts = pulumi.ResourceOptions(depends_on=[logging_linked_dataset]))
|
437
437
|
```
|
438
438
|
|
439
439
|
## Import
|
@@ -251,7 +251,7 @@ class OrganizationSettings(pulumi.CustomResource):
|
|
251
251
|
kms_key_name="kms-key",
|
252
252
|
organization="123456789",
|
253
253
|
storage_location="us-central1",
|
254
|
-
opts=pulumi.ResourceOptions(depends_on=[iam]))
|
254
|
+
opts = pulumi.ResourceOptions(depends_on=[iam]))
|
255
255
|
```
|
256
256
|
|
257
257
|
## Import
|
@@ -315,7 +315,7 @@ class OrganizationSettings(pulumi.CustomResource):
|
|
315
315
|
kms_key_name="kms-key",
|
316
316
|
organization="123456789",
|
317
317
|
storage_location="us-central1",
|
318
|
-
opts=pulumi.ResourceOptions(depends_on=[iam]))
|
318
|
+
opts = pulumi.ResourceOptions(depends_on=[iam]))
|
319
319
|
```
|
320
320
|
|
321
321
|
## Import
|
@@ -47,8 +47,8 @@ class OrganizationSinkArgs:
|
|
47
47
|
write a filter.
|
48
48
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
49
49
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
50
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
51
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
50
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
51
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
52
52
|
:param pulumi.Input[str] name: The name of the logging sink.
|
53
53
|
"""
|
54
54
|
pulumi.set(__self__, "destination", destination)
|
@@ -181,8 +181,8 @@ class OrganizationSinkArgs:
|
|
181
181
|
@pulumi.getter(name="interceptChildren")
|
182
182
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
183
183
|
"""
|
184
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
185
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
184
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not
|
185
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
186
186
|
"""
|
187
187
|
return pulumi.get(self, "intercept_children")
|
188
188
|
|
@@ -237,8 +237,8 @@ class _OrganizationSinkState:
|
|
237
237
|
write a filter.
|
238
238
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
239
239
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
240
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
241
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
240
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
241
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
242
242
|
:param pulumi.Input[str] name: The name of the logging sink.
|
243
243
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
244
244
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -366,8 +366,8 @@ class _OrganizationSinkState:
|
|
366
366
|
@pulumi.getter(name="interceptChildren")
|
367
367
|
def intercept_children(self) -> Optional[pulumi.Input[bool]]:
|
368
368
|
"""
|
369
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
370
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
369
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not
|
370
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
371
371
|
"""
|
372
372
|
return pulumi.get(self, "intercept_children")
|
373
373
|
|
@@ -488,8 +488,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
488
488
|
write a filter.
|
489
489
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
490
490
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
491
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
492
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
491
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
492
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
493
493
|
:param pulumi.Input[str] name: The name of the logging sink.
|
494
494
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
495
495
|
"""
|
@@ -633,8 +633,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
633
633
|
write a filter.
|
634
634
|
:param pulumi.Input[bool] include_children: Whether or not to include children organizations in the sink export. If true, logs
|
635
635
|
associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
|
636
|
-
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
637
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
636
|
+
:param pulumi.Input[bool] intercept_children: Whether or not to intercept logs from child projects. If true, matching logs will not
|
637
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
638
638
|
:param pulumi.Input[str] name: The name of the logging sink.
|
639
639
|
:param pulumi.Input[str] org_id: The numeric ID of the organization to be exported to the sink.
|
640
640
|
:param pulumi.Input[str] writer_identity: The identity associated with this sink. This identity must be granted write access to the
|
@@ -728,8 +728,8 @@ class OrganizationSink(pulumi.CustomResource):
|
|
728
728
|
@pulumi.getter(name="interceptChildren")
|
729
729
|
def intercept_children(self) -> pulumi.Output[Optional[bool]]:
|
730
730
|
"""
|
731
|
-
Whether or not to intercept logs from child projects. If true, matching logs will not
|
732
|
-
resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
731
|
+
Whether or not to intercept logs from child projects. If true, matching logs will not
|
732
|
+
match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
|
733
733
|
"""
|
734
734
|
return pulumi.get(self, "intercept_children")
|
735
735
|
|
@@ -438,7 +438,7 @@ class ProjectBucketConfig(pulumi.CustomResource):
|
|
438
438
|
cmek_settings=gcp.logging.ProjectBucketConfigCmekSettingsArgs(
|
439
439
|
kms_key_name=key.id,
|
440
440
|
),
|
441
|
-
opts=pulumi.ResourceOptions(depends_on=[crypto_key_binding]))
|
441
|
+
opts = pulumi.ResourceOptions(depends_on=[crypto_key_binding]))
|
442
442
|
```
|
443
443
|
|
444
444
|
Create logging bucket with index configs
|
@@ -565,7 +565,7 @@ class ProjectBucketConfig(pulumi.CustomResource):
|
|
565
565
|
cmek_settings=gcp.logging.ProjectBucketConfigCmekSettingsArgs(
|
566
566
|
kms_key_name=key.id,
|
567
567
|
),
|
568
|
-
opts=pulumi.ResourceOptions(depends_on=[crypto_key_binding]))
|
568
|
+
opts = pulumi.ResourceOptions(depends_on=[crypto_key_binding]))
|
569
569
|
```
|
570
570
|
|
571
571
|
Create logging bucket with index configs
|
pulumi_gcp/looker/instance.py
CHANGED
@@ -909,7 +909,7 @@ class Instance(pulumi.CustomResource):
|
|
909
909
|
client_id="my-client-id",
|
910
910
|
client_secret="my-client-secret",
|
911
911
|
),
|
912
|
-
opts=pulumi.ResourceOptions(depends_on=[looker_vpc_connection]))
|
912
|
+
opts = pulumi.ResourceOptions(depends_on=[looker_vpc_connection]))
|
913
913
|
project = gcp.organizations.get_project()
|
914
914
|
crypto_key = gcp.kms.CryptoKeyIAMMember("crypto_key",
|
915
915
|
crypto_key_id="looker-kms-key",
|
@@ -1156,7 +1156,7 @@ class Instance(pulumi.CustomResource):
|
|
1156
1156
|
client_id="my-client-id",
|
1157
1157
|
client_secret="my-client-secret",
|
1158
1158
|
),
|
1159
|
-
opts=pulumi.ResourceOptions(depends_on=[looker_vpc_connection]))
|
1159
|
+
opts = pulumi.ResourceOptions(depends_on=[looker_vpc_connection]))
|
1160
1160
|
project = gcp.organizations.get_project()
|
1161
1161
|
crypto_key = gcp.kms.CryptoKeyIAMMember("crypto_key",
|
1162
1162
|
crypto_key_id="looker-kms-key",
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .cluster import *
|
9
|
+
from .topic import *
|
10
|
+
from ._inputs import *
|
11
|
+
from . import outputs
|
@@ -0,0 +1,169 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = [
|
13
|
+
'ClusterCapacityConfigArgs',
|
14
|
+
'ClusterGcpConfigArgs',
|
15
|
+
'ClusterGcpConfigAccessConfigArgs',
|
16
|
+
'ClusterGcpConfigAccessConfigNetworkConfigArgs',
|
17
|
+
'ClusterRebalanceConfigArgs',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.input_type
|
21
|
+
class ClusterCapacityConfigArgs:
|
22
|
+
def __init__(__self__, *,
|
23
|
+
memory_bytes: pulumi.Input[str],
|
24
|
+
vcpu_count: pulumi.Input[str]):
|
25
|
+
"""
|
26
|
+
:param pulumi.Input[str] memory_bytes: The memory to provision for the cluster in bytes. The value must be between 1 GiB and 8 GiB per vCPU. Ex. 1024Mi, 4Gi.
|
27
|
+
|
28
|
+
- - -
|
29
|
+
:param pulumi.Input[str] vcpu_count: The number of vCPUs to provision for the cluster. The minimum is 3.
|
30
|
+
"""
|
31
|
+
pulumi.set(__self__, "memory_bytes", memory_bytes)
|
32
|
+
pulumi.set(__self__, "vcpu_count", vcpu_count)
|
33
|
+
|
34
|
+
@property
|
35
|
+
@pulumi.getter(name="memoryBytes")
|
36
|
+
def memory_bytes(self) -> pulumi.Input[str]:
|
37
|
+
"""
|
38
|
+
The memory to provision for the cluster in bytes. The value must be between 1 GiB and 8 GiB per vCPU. Ex. 1024Mi, 4Gi.
|
39
|
+
|
40
|
+
- - -
|
41
|
+
"""
|
42
|
+
return pulumi.get(self, "memory_bytes")
|
43
|
+
|
44
|
+
@memory_bytes.setter
|
45
|
+
def memory_bytes(self, value: pulumi.Input[str]):
|
46
|
+
pulumi.set(self, "memory_bytes", value)
|
47
|
+
|
48
|
+
@property
|
49
|
+
@pulumi.getter(name="vcpuCount")
|
50
|
+
def vcpu_count(self) -> pulumi.Input[str]:
|
51
|
+
"""
|
52
|
+
The number of vCPUs to provision for the cluster. The minimum is 3.
|
53
|
+
"""
|
54
|
+
return pulumi.get(self, "vcpu_count")
|
55
|
+
|
56
|
+
@vcpu_count.setter
|
57
|
+
def vcpu_count(self, value: pulumi.Input[str]):
|
58
|
+
pulumi.set(self, "vcpu_count", value)
|
59
|
+
|
60
|
+
|
61
|
+
@pulumi.input_type
|
62
|
+
class ClusterGcpConfigArgs:
|
63
|
+
def __init__(__self__, *,
|
64
|
+
access_config: pulumi.Input['ClusterGcpConfigAccessConfigArgs'],
|
65
|
+
kms_key: Optional[pulumi.Input[str]] = None):
|
66
|
+
"""
|
67
|
+
:param pulumi.Input['ClusterGcpConfigAccessConfigArgs'] access_config: The configuration of access to the Kafka cluster.
|
68
|
+
Structure is documented below.
|
69
|
+
:param pulumi.Input[str] kms_key: The Cloud KMS Key name to use for encryption. The key must be located in the same region as the cluster and cannot be changed. Must be in the format `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`.
|
70
|
+
"""
|
71
|
+
pulumi.set(__self__, "access_config", access_config)
|
72
|
+
if kms_key is not None:
|
73
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="accessConfig")
|
77
|
+
def access_config(self) -> pulumi.Input['ClusterGcpConfigAccessConfigArgs']:
|
78
|
+
"""
|
79
|
+
The configuration of access to the Kafka cluster.
|
80
|
+
Structure is documented below.
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "access_config")
|
83
|
+
|
84
|
+
@access_config.setter
|
85
|
+
def access_config(self, value: pulumi.Input['ClusterGcpConfigAccessConfigArgs']):
|
86
|
+
pulumi.set(self, "access_config", value)
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="kmsKey")
|
90
|
+
def kms_key(self) -> Optional[pulumi.Input[str]]:
|
91
|
+
"""
|
92
|
+
The Cloud KMS Key name to use for encryption. The key must be located in the same region as the cluster and cannot be changed. Must be in the format `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "kms_key")
|
95
|
+
|
96
|
+
@kms_key.setter
|
97
|
+
def kms_key(self, value: Optional[pulumi.Input[str]]):
|
98
|
+
pulumi.set(self, "kms_key", value)
|
99
|
+
|
100
|
+
|
101
|
+
@pulumi.input_type
|
102
|
+
class ClusterGcpConfigAccessConfigArgs:
|
103
|
+
def __init__(__self__, *,
|
104
|
+
network_configs: pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]]):
|
105
|
+
"""
|
106
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]] network_configs: Virtual Private Cloud (VPC) networks that must be granted direct access to the Kafka cluster. Minimum of 1 network is required. Maximum of 10 networks can be specified.
|
107
|
+
Structure is documented below.
|
108
|
+
"""
|
109
|
+
pulumi.set(__self__, "network_configs", network_configs)
|
110
|
+
|
111
|
+
@property
|
112
|
+
@pulumi.getter(name="networkConfigs")
|
113
|
+
def network_configs(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]]:
|
114
|
+
"""
|
115
|
+
Virtual Private Cloud (VPC) networks that must be granted direct access to the Kafka cluster. Minimum of 1 network is required. Maximum of 10 networks can be specified.
|
116
|
+
Structure is documented below.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "network_configs")
|
119
|
+
|
120
|
+
@network_configs.setter
|
121
|
+
def network_configs(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]]):
|
122
|
+
pulumi.set(self, "network_configs", value)
|
123
|
+
|
124
|
+
|
125
|
+
@pulumi.input_type
|
126
|
+
class ClusterGcpConfigAccessConfigNetworkConfigArgs:
|
127
|
+
def __init__(__self__, *,
|
128
|
+
subnet: pulumi.Input[str]):
|
129
|
+
"""
|
130
|
+
:param pulumi.Input[str] subnet: Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ. A minimum of 1 subnet is required. A maximum of 10 subnets can be specified. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
131
|
+
"""
|
132
|
+
pulumi.set(__self__, "subnet", subnet)
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter
|
136
|
+
def subnet(self) -> pulumi.Input[str]:
|
137
|
+
"""
|
138
|
+
Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ. A minimum of 1 subnet is required. A maximum of 10 subnets can be specified. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "subnet")
|
141
|
+
|
142
|
+
@subnet.setter
|
143
|
+
def subnet(self, value: pulumi.Input[str]):
|
144
|
+
pulumi.set(self, "subnet", value)
|
145
|
+
|
146
|
+
|
147
|
+
@pulumi.input_type
|
148
|
+
class ClusterRebalanceConfigArgs:
|
149
|
+
def __init__(__self__, *,
|
150
|
+
mode: Optional[pulumi.Input[str]] = None):
|
151
|
+
"""
|
152
|
+
:param pulumi.Input[str] mode: The rebalance behavior for the cluster. When not specified, defaults to `NO_REBALANCE`. Possible values: `MODE_UNSPECIFIED`, `NO_REBALANCE`, `AUTO_REBALANCE_ON_SCALE_UP`.
|
153
|
+
"""
|
154
|
+
if mode is not None:
|
155
|
+
pulumi.set(__self__, "mode", mode)
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter
|
159
|
+
def mode(self) -> Optional[pulumi.Input[str]]:
|
160
|
+
"""
|
161
|
+
The rebalance behavior for the cluster. When not specified, defaults to `NO_REBALANCE`. Possible values: `MODE_UNSPECIFIED`, `NO_REBALANCE`, `AUTO_REBALANCE_ON_SCALE_UP`.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "mode")
|
164
|
+
|
165
|
+
@mode.setter
|
166
|
+
def mode(self, value: Optional[pulumi.Input[str]]):
|
167
|
+
pulumi.set(self, "mode", value)
|
168
|
+
|
169
|
+
|