pulumi-gcp 8.25.0a1743489606__py3-none-any.whl → 8.25.0a1743706148__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 +104 -0
- pulumi_gcp/_inputs.py +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
- pulumi_gcp/accesscontextmanager/outputs.py +204 -12
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/_inputs.py +58 -0
- pulumi_gcp/apigee/dns_zone.py +491 -0
- pulumi_gcp/apigee/outputs.py +53 -0
- pulumi_gcp/bigquery/reservation_assignment.py +7 -7
- pulumi_gcp/bigtable/table.py +8 -8
- pulumi_gcp/chronicle/data_access_label.py +2 -2
- pulumi_gcp/chronicle/data_access_scope.py +16 -0
- pulumi_gcp/chronicle/reference_list.py +16 -0
- pulumi_gcp/chronicle/retrohunt.py +16 -0
- pulumi_gcp/chronicle/rule.py +16 -0
- pulumi_gcp/chronicle/rule_deployment.py +16 -0
- pulumi_gcp/chronicle/watchlist.py +16 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2011 -43
- pulumi_gcp/compute/backend_service.py +121 -3
- pulumi_gcp/compute/get_backend_service.py +15 -4
- pulumi_gcp/compute/get_instance.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +482 -0
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/get_subnetwork.py +43 -1
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +94 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/outputs.py +3578 -139
- pulumi_gcp/compute/public_delegated_prefix.py +69 -15
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/subnetwork.py +35 -5
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/outputs.py +27 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +12 -12
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_registry_image.py +4 -0
- pulumi_gcp/container/get_registry_repository.py +4 -0
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/container/registry.py +4 -0
- pulumi_gcp/datafusion/instance.py +68 -0
- pulumi_gcp/dataproc/__init__.py +8 -0
- pulumi_gcp/dataproc/_inputs.py +196 -0
- pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
- pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
- pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
- pulumi_gcp/dataproc/metastore_federation.py +38 -2
- pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
- pulumi_gcp/dataproc/outputs.py +112 -0
- pulumi_gcp/datastream/_inputs.py +311 -94
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/datastream/outputs.py +244 -51
- pulumi_gcp/datastream/stream.py +216 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/sitemap.py +504 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/enrollment.py +980 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +484 -0
- pulumi_gcp/firebase/app_hosting_build.py +1232 -0
- pulumi_gcp/firebase/outputs.py +333 -0
- pulumi_gcp/identityplatform/_inputs.py +91 -0
- pulumi_gcp/identityplatform/outputs.py +73 -0
- pulumi_gcp/identityplatform/tenant.py +56 -0
- pulumi_gcp/managedkafka/cluster.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/_inputs.py +826 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +344 -23
- pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
- pulumi_gcp/memorystore/outputs.py +889 -8
- pulumi_gcp/networksecurity/_inputs.py +473 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +291 -1
- pulumi_gcp/networksecurity/security_profile.py +8 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
- pulumi_gcp/organizations/outputs.py +96 -0
- pulumi_gcp/parametermanager/get_parameter.py +16 -1
- pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
- pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
- pulumi_gcp/parametermanager/get_parameters.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/parameter.py +88 -0
- pulumi_gcp/parametermanager/parameter_version.py +74 -0
- pulumi_gcp/parametermanager/regional_parameter.py +12 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
- pulumi_gcp/provider.py +15 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +136 -0
- pulumi_gcp/redis/cluster.py +54 -0
- pulumi_gcp/redis/outputs.py +114 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
- pulumi_gcp/storage/__init__.py +4 -0
- pulumi_gcp/storage/_inputs.py +596 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
- pulumi_gcp/storage/get_bucket_object_content.py +16 -1
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
- pulumi_gcp/storage/outputs.py +2132 -1312
- pulumi_gcp/workbench/instance.py +14 -2
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/RECORD +126 -107
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/top_level.txt +0 -0
pulumi_gcp/datastream/_inputs.py
CHANGED
@@ -85,6 +85,8 @@ __all__ = [
|
|
85
85
|
'StreamDestinationConfigBigqueryDestinationConfigArgsDict',
|
86
86
|
'StreamDestinationConfigBigqueryDestinationConfigAppendOnlyArgs',
|
87
87
|
'StreamDestinationConfigBigqueryDestinationConfigAppendOnlyArgsDict',
|
88
|
+
'StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgs',
|
89
|
+
'StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgsDict',
|
88
90
|
'StreamDestinationConfigBigqueryDestinationConfigMergeArgs',
|
89
91
|
'StreamDestinationConfigBigqueryDestinationConfigMergeArgsDict',
|
90
92
|
'StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgs',
|
@@ -374,19 +376,23 @@ if not MYPY:
|
|
374
376
|
"""
|
375
377
|
Hostname for the MySQL connection.
|
376
378
|
"""
|
377
|
-
password: pulumi.Input[str]
|
378
|
-
"""
|
379
|
-
Password for the MySQL connection.
|
380
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
381
|
-
"""
|
382
379
|
username: pulumi.Input[str]
|
383
380
|
"""
|
384
381
|
Username for the MySQL connection.
|
385
382
|
"""
|
383
|
+
password: NotRequired[pulumi.Input[str]]
|
384
|
+
"""
|
385
|
+
Password for the MySQL connection.
|
386
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
387
|
+
"""
|
386
388
|
port: NotRequired[pulumi.Input[int]]
|
387
389
|
"""
|
388
390
|
Port for the MySQL connection.
|
389
391
|
"""
|
392
|
+
secret_manager_stored_password: NotRequired[pulumi.Input[str]]
|
393
|
+
"""
|
394
|
+
A reference to a Secret Manager resource name storing the user's password.
|
395
|
+
"""
|
390
396
|
ssl_config: NotRequired[pulumi.Input['ConnectionProfileMysqlProfileSslConfigArgsDict']]
|
391
397
|
"""
|
392
398
|
SSL configuration for the MySQL connection.
|
@@ -399,24 +405,29 @@ elif False:
|
|
399
405
|
class ConnectionProfileMysqlProfileArgs:
|
400
406
|
def __init__(__self__, *,
|
401
407
|
hostname: pulumi.Input[str],
|
402
|
-
password: pulumi.Input[str],
|
403
408
|
username: pulumi.Input[str],
|
409
|
+
password: Optional[pulumi.Input[str]] = None,
|
404
410
|
port: Optional[pulumi.Input[int]] = None,
|
411
|
+
secret_manager_stored_password: Optional[pulumi.Input[str]] = None,
|
405
412
|
ssl_config: Optional[pulumi.Input['ConnectionProfileMysqlProfileSslConfigArgs']] = None):
|
406
413
|
"""
|
407
414
|
:param pulumi.Input[str] hostname: Hostname for the MySQL connection.
|
415
|
+
:param pulumi.Input[str] username: Username for the MySQL connection.
|
408
416
|
:param pulumi.Input[str] password: Password for the MySQL connection.
|
409
417
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
410
|
-
:param pulumi.Input[str] username: Username for the MySQL connection.
|
411
418
|
:param pulumi.Input[int] port: Port for the MySQL connection.
|
419
|
+
:param pulumi.Input[str] secret_manager_stored_password: A reference to a Secret Manager resource name storing the user's password.
|
412
420
|
:param pulumi.Input['ConnectionProfileMysqlProfileSslConfigArgs'] ssl_config: SSL configuration for the MySQL connection.
|
413
421
|
Structure is documented below.
|
414
422
|
"""
|
415
423
|
pulumi.set(__self__, "hostname", hostname)
|
416
|
-
pulumi.set(__self__, "password", password)
|
417
424
|
pulumi.set(__self__, "username", username)
|
425
|
+
if password is not None:
|
426
|
+
pulumi.set(__self__, "password", password)
|
418
427
|
if port is not None:
|
419
428
|
pulumi.set(__self__, "port", port)
|
429
|
+
if secret_manager_stored_password is not None:
|
430
|
+
pulumi.set(__self__, "secret_manager_stored_password", secret_manager_stored_password)
|
420
431
|
if ssl_config is not None:
|
421
432
|
pulumi.set(__self__, "ssl_config", ssl_config)
|
422
433
|
|
@@ -432,19 +443,6 @@ class ConnectionProfileMysqlProfileArgs:
|
|
432
443
|
def hostname(self, value: pulumi.Input[str]):
|
433
444
|
pulumi.set(self, "hostname", value)
|
434
445
|
|
435
|
-
@property
|
436
|
-
@pulumi.getter
|
437
|
-
def password(self) -> pulumi.Input[str]:
|
438
|
-
"""
|
439
|
-
Password for the MySQL connection.
|
440
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
441
|
-
"""
|
442
|
-
return pulumi.get(self, "password")
|
443
|
-
|
444
|
-
@password.setter
|
445
|
-
def password(self, value: pulumi.Input[str]):
|
446
|
-
pulumi.set(self, "password", value)
|
447
|
-
|
448
446
|
@property
|
449
447
|
@pulumi.getter
|
450
448
|
def username(self) -> pulumi.Input[str]:
|
@@ -457,6 +455,19 @@ class ConnectionProfileMysqlProfileArgs:
|
|
457
455
|
def username(self, value: pulumi.Input[str]):
|
458
456
|
pulumi.set(self, "username", value)
|
459
457
|
|
458
|
+
@property
|
459
|
+
@pulumi.getter
|
460
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
461
|
+
"""
|
462
|
+
Password for the MySQL connection.
|
463
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
464
|
+
"""
|
465
|
+
return pulumi.get(self, "password")
|
466
|
+
|
467
|
+
@password.setter
|
468
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
469
|
+
pulumi.set(self, "password", value)
|
470
|
+
|
460
471
|
@property
|
461
472
|
@pulumi.getter
|
462
473
|
def port(self) -> Optional[pulumi.Input[int]]:
|
@@ -469,6 +480,18 @@ class ConnectionProfileMysqlProfileArgs:
|
|
469
480
|
def port(self, value: Optional[pulumi.Input[int]]):
|
470
481
|
pulumi.set(self, "port", value)
|
471
482
|
|
483
|
+
@property
|
484
|
+
@pulumi.getter(name="secretManagerStoredPassword")
|
485
|
+
def secret_manager_stored_password(self) -> Optional[pulumi.Input[str]]:
|
486
|
+
"""
|
487
|
+
A reference to a Secret Manager resource name storing the user's password.
|
488
|
+
"""
|
489
|
+
return pulumi.get(self, "secret_manager_stored_password")
|
490
|
+
|
491
|
+
@secret_manager_stored_password.setter
|
492
|
+
def secret_manager_stored_password(self, value: Optional[pulumi.Input[str]]):
|
493
|
+
pulumi.set(self, "secret_manager_stored_password", value)
|
494
|
+
|
472
495
|
@property
|
473
496
|
@pulumi.getter(name="sslConfig")
|
474
497
|
def ssl_config(self) -> Optional[pulumi.Input['ConnectionProfileMysqlProfileSslConfigArgs']]:
|
@@ -661,11 +684,6 @@ if not MYPY:
|
|
661
684
|
"""
|
662
685
|
Hostname for the Oracle connection.
|
663
686
|
"""
|
664
|
-
password: pulumi.Input[str]
|
665
|
-
"""
|
666
|
-
Password for the Oracle connection.
|
667
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
668
|
-
"""
|
669
687
|
username: pulumi.Input[str]
|
670
688
|
"""
|
671
689
|
Username for the Oracle connection.
|
@@ -674,10 +692,19 @@ if not MYPY:
|
|
674
692
|
"""
|
675
693
|
Connection string attributes
|
676
694
|
"""
|
695
|
+
password: NotRequired[pulumi.Input[str]]
|
696
|
+
"""
|
697
|
+
Password for the Oracle connection.
|
698
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
699
|
+
"""
|
677
700
|
port: NotRequired[pulumi.Input[int]]
|
678
701
|
"""
|
679
702
|
Port for the Oracle connection.
|
680
703
|
"""
|
704
|
+
secret_manager_stored_password: NotRequired[pulumi.Input[str]]
|
705
|
+
"""
|
706
|
+
A reference to a Secret Manager resource name storing the user's password.
|
707
|
+
"""
|
681
708
|
elif False:
|
682
709
|
ConnectionProfileOracleProfileArgsDict: TypeAlias = Mapping[str, Any]
|
683
710
|
|
@@ -686,27 +713,32 @@ class ConnectionProfileOracleProfileArgs:
|
|
686
713
|
def __init__(__self__, *,
|
687
714
|
database_service: pulumi.Input[str],
|
688
715
|
hostname: pulumi.Input[str],
|
689
|
-
password: pulumi.Input[str],
|
690
716
|
username: pulumi.Input[str],
|
691
717
|
connection_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
692
|
-
|
718
|
+
password: Optional[pulumi.Input[str]] = None,
|
719
|
+
port: Optional[pulumi.Input[int]] = None,
|
720
|
+
secret_manager_stored_password: Optional[pulumi.Input[str]] = None):
|
693
721
|
"""
|
694
722
|
:param pulumi.Input[str] database_service: Database for the Oracle connection.
|
695
723
|
:param pulumi.Input[str] hostname: Hostname for the Oracle connection.
|
696
|
-
:param pulumi.Input[str] password: Password for the Oracle connection.
|
697
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
698
724
|
:param pulumi.Input[str] username: Username for the Oracle connection.
|
699
725
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] connection_attributes: Connection string attributes
|
726
|
+
:param pulumi.Input[str] password: Password for the Oracle connection.
|
727
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
700
728
|
:param pulumi.Input[int] port: Port for the Oracle connection.
|
729
|
+
:param pulumi.Input[str] secret_manager_stored_password: A reference to a Secret Manager resource name storing the user's password.
|
701
730
|
"""
|
702
731
|
pulumi.set(__self__, "database_service", database_service)
|
703
732
|
pulumi.set(__self__, "hostname", hostname)
|
704
|
-
pulumi.set(__self__, "password", password)
|
705
733
|
pulumi.set(__self__, "username", username)
|
706
734
|
if connection_attributes is not None:
|
707
735
|
pulumi.set(__self__, "connection_attributes", connection_attributes)
|
736
|
+
if password is not None:
|
737
|
+
pulumi.set(__self__, "password", password)
|
708
738
|
if port is not None:
|
709
739
|
pulumi.set(__self__, "port", port)
|
740
|
+
if secret_manager_stored_password is not None:
|
741
|
+
pulumi.set(__self__, "secret_manager_stored_password", secret_manager_stored_password)
|
710
742
|
|
711
743
|
@property
|
712
744
|
@pulumi.getter(name="databaseService")
|
@@ -732,19 +764,6 @@ class ConnectionProfileOracleProfileArgs:
|
|
732
764
|
def hostname(self, value: pulumi.Input[str]):
|
733
765
|
pulumi.set(self, "hostname", value)
|
734
766
|
|
735
|
-
@property
|
736
|
-
@pulumi.getter
|
737
|
-
def password(self) -> pulumi.Input[str]:
|
738
|
-
"""
|
739
|
-
Password for the Oracle connection.
|
740
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
741
|
-
"""
|
742
|
-
return pulumi.get(self, "password")
|
743
|
-
|
744
|
-
@password.setter
|
745
|
-
def password(self, value: pulumi.Input[str]):
|
746
|
-
pulumi.set(self, "password", value)
|
747
|
-
|
748
767
|
@property
|
749
768
|
@pulumi.getter
|
750
769
|
def username(self) -> pulumi.Input[str]:
|
@@ -769,6 +788,19 @@ class ConnectionProfileOracleProfileArgs:
|
|
769
788
|
def connection_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
770
789
|
pulumi.set(self, "connection_attributes", value)
|
771
790
|
|
791
|
+
@property
|
792
|
+
@pulumi.getter
|
793
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
794
|
+
"""
|
795
|
+
Password for the Oracle connection.
|
796
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
797
|
+
"""
|
798
|
+
return pulumi.get(self, "password")
|
799
|
+
|
800
|
+
@password.setter
|
801
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
802
|
+
pulumi.set(self, "password", value)
|
803
|
+
|
772
804
|
@property
|
773
805
|
@pulumi.getter
|
774
806
|
def port(self) -> Optional[pulumi.Input[int]]:
|
@@ -781,6 +813,18 @@ class ConnectionProfileOracleProfileArgs:
|
|
781
813
|
def port(self, value: Optional[pulumi.Input[int]]):
|
782
814
|
pulumi.set(self, "port", value)
|
783
815
|
|
816
|
+
@property
|
817
|
+
@pulumi.getter(name="secretManagerStoredPassword")
|
818
|
+
def secret_manager_stored_password(self) -> Optional[pulumi.Input[str]]:
|
819
|
+
"""
|
820
|
+
A reference to a Secret Manager resource name storing the user's password.
|
821
|
+
"""
|
822
|
+
return pulumi.get(self, "secret_manager_stored_password")
|
823
|
+
|
824
|
+
@secret_manager_stored_password.setter
|
825
|
+
def secret_manager_stored_password(self, value: Optional[pulumi.Input[str]]):
|
826
|
+
pulumi.set(self, "secret_manager_stored_password", value)
|
827
|
+
|
784
828
|
|
785
829
|
if not MYPY:
|
786
830
|
class ConnectionProfilePostgresqlProfileArgsDict(TypedDict):
|
@@ -792,19 +836,23 @@ if not MYPY:
|
|
792
836
|
"""
|
793
837
|
Hostname for the PostgreSQL connection.
|
794
838
|
"""
|
795
|
-
password: pulumi.Input[str]
|
796
|
-
"""
|
797
|
-
Password for the PostgreSQL connection.
|
798
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
799
|
-
"""
|
800
839
|
username: pulumi.Input[str]
|
801
840
|
"""
|
802
841
|
Username for the PostgreSQL connection.
|
803
842
|
"""
|
843
|
+
password: NotRequired[pulumi.Input[str]]
|
844
|
+
"""
|
845
|
+
Password for the PostgreSQL connection.
|
846
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
847
|
+
"""
|
804
848
|
port: NotRequired[pulumi.Input[int]]
|
805
849
|
"""
|
806
850
|
Port for the PostgreSQL connection.
|
807
851
|
"""
|
852
|
+
secret_manager_stored_password: NotRequired[pulumi.Input[str]]
|
853
|
+
"""
|
854
|
+
A reference to a Secret Manager resource name storing the user's password.
|
855
|
+
"""
|
808
856
|
elif False:
|
809
857
|
ConnectionProfilePostgresqlProfileArgsDict: TypeAlias = Mapping[str, Any]
|
810
858
|
|
@@ -813,23 +861,28 @@ class ConnectionProfilePostgresqlProfileArgs:
|
|
813
861
|
def __init__(__self__, *,
|
814
862
|
database: pulumi.Input[str],
|
815
863
|
hostname: pulumi.Input[str],
|
816
|
-
password: pulumi.Input[str],
|
817
864
|
username: pulumi.Input[str],
|
818
|
-
|
865
|
+
password: Optional[pulumi.Input[str]] = None,
|
866
|
+
port: Optional[pulumi.Input[int]] = None,
|
867
|
+
secret_manager_stored_password: Optional[pulumi.Input[str]] = None):
|
819
868
|
"""
|
820
869
|
:param pulumi.Input[str] database: Database for the PostgreSQL connection.
|
821
870
|
:param pulumi.Input[str] hostname: Hostname for the PostgreSQL connection.
|
871
|
+
:param pulumi.Input[str] username: Username for the PostgreSQL connection.
|
822
872
|
:param pulumi.Input[str] password: Password for the PostgreSQL connection.
|
823
873
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
824
|
-
:param pulumi.Input[str] username: Username for the PostgreSQL connection.
|
825
874
|
:param pulumi.Input[int] port: Port for the PostgreSQL connection.
|
875
|
+
:param pulumi.Input[str] secret_manager_stored_password: A reference to a Secret Manager resource name storing the user's password.
|
826
876
|
"""
|
827
877
|
pulumi.set(__self__, "database", database)
|
828
878
|
pulumi.set(__self__, "hostname", hostname)
|
829
|
-
pulumi.set(__self__, "password", password)
|
830
879
|
pulumi.set(__self__, "username", username)
|
880
|
+
if password is not None:
|
881
|
+
pulumi.set(__self__, "password", password)
|
831
882
|
if port is not None:
|
832
883
|
pulumi.set(__self__, "port", port)
|
884
|
+
if secret_manager_stored_password is not None:
|
885
|
+
pulumi.set(__self__, "secret_manager_stored_password", secret_manager_stored_password)
|
833
886
|
|
834
887
|
@property
|
835
888
|
@pulumi.getter
|
@@ -855,19 +908,6 @@ class ConnectionProfilePostgresqlProfileArgs:
|
|
855
908
|
def hostname(self, value: pulumi.Input[str]):
|
856
909
|
pulumi.set(self, "hostname", value)
|
857
910
|
|
858
|
-
@property
|
859
|
-
@pulumi.getter
|
860
|
-
def password(self) -> pulumi.Input[str]:
|
861
|
-
"""
|
862
|
-
Password for the PostgreSQL connection.
|
863
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
864
|
-
"""
|
865
|
-
return pulumi.get(self, "password")
|
866
|
-
|
867
|
-
@password.setter
|
868
|
-
def password(self, value: pulumi.Input[str]):
|
869
|
-
pulumi.set(self, "password", value)
|
870
|
-
|
871
911
|
@property
|
872
912
|
@pulumi.getter
|
873
913
|
def username(self) -> pulumi.Input[str]:
|
@@ -880,6 +920,19 @@ class ConnectionProfilePostgresqlProfileArgs:
|
|
880
920
|
def username(self, value: pulumi.Input[str]):
|
881
921
|
pulumi.set(self, "username", value)
|
882
922
|
|
923
|
+
@property
|
924
|
+
@pulumi.getter
|
925
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
926
|
+
"""
|
927
|
+
Password for the PostgreSQL connection.
|
928
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
929
|
+
"""
|
930
|
+
return pulumi.get(self, "password")
|
931
|
+
|
932
|
+
@password.setter
|
933
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
934
|
+
pulumi.set(self, "password", value)
|
935
|
+
|
883
936
|
@property
|
884
937
|
@pulumi.getter
|
885
938
|
def port(self) -> Optional[pulumi.Input[int]]:
|
@@ -892,6 +945,18 @@ class ConnectionProfilePostgresqlProfileArgs:
|
|
892
945
|
def port(self, value: Optional[pulumi.Input[int]]):
|
893
946
|
pulumi.set(self, "port", value)
|
894
947
|
|
948
|
+
@property
|
949
|
+
@pulumi.getter(name="secretManagerStoredPassword")
|
950
|
+
def secret_manager_stored_password(self) -> Optional[pulumi.Input[str]]:
|
951
|
+
"""
|
952
|
+
A reference to a Secret Manager resource name storing the user's password.
|
953
|
+
"""
|
954
|
+
return pulumi.get(self, "secret_manager_stored_password")
|
955
|
+
|
956
|
+
@secret_manager_stored_password.setter
|
957
|
+
def secret_manager_stored_password(self, value: Optional[pulumi.Input[str]]):
|
958
|
+
pulumi.set(self, "secret_manager_stored_password", value)
|
959
|
+
|
895
960
|
|
896
961
|
if not MYPY:
|
897
962
|
class ConnectionProfilePrivateConnectivityArgsDict(TypedDict):
|
@@ -1201,19 +1266,23 @@ if not MYPY:
|
|
1201
1266
|
"""
|
1202
1267
|
Hostname for the SQL Server connection.
|
1203
1268
|
"""
|
1204
|
-
password: pulumi.Input[str]
|
1205
|
-
"""
|
1206
|
-
Password for the SQL Server connection.
|
1207
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
1208
|
-
"""
|
1209
1269
|
username: pulumi.Input[str]
|
1210
1270
|
"""
|
1211
1271
|
Username for the SQL Server connection.
|
1212
1272
|
"""
|
1273
|
+
password: NotRequired[pulumi.Input[str]]
|
1274
|
+
"""
|
1275
|
+
Password for the SQL Server connection.
|
1276
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
1277
|
+
"""
|
1213
1278
|
port: NotRequired[pulumi.Input[int]]
|
1214
1279
|
"""
|
1215
1280
|
Port for the SQL Server connection.
|
1216
1281
|
"""
|
1282
|
+
secret_manager_stored_password: NotRequired[pulumi.Input[str]]
|
1283
|
+
"""
|
1284
|
+
A reference to a Secret Manager resource name storing the user's password.
|
1285
|
+
"""
|
1217
1286
|
elif False:
|
1218
1287
|
ConnectionProfileSqlServerProfileArgsDict: TypeAlias = Mapping[str, Any]
|
1219
1288
|
|
@@ -1222,23 +1291,28 @@ class ConnectionProfileSqlServerProfileArgs:
|
|
1222
1291
|
def __init__(__self__, *,
|
1223
1292
|
database: pulumi.Input[str],
|
1224
1293
|
hostname: pulumi.Input[str],
|
1225
|
-
password: pulumi.Input[str],
|
1226
1294
|
username: pulumi.Input[str],
|
1227
|
-
|
1295
|
+
password: Optional[pulumi.Input[str]] = None,
|
1296
|
+
port: Optional[pulumi.Input[int]] = None,
|
1297
|
+
secret_manager_stored_password: Optional[pulumi.Input[str]] = None):
|
1228
1298
|
"""
|
1229
1299
|
:param pulumi.Input[str] database: Database for the SQL Server connection.
|
1230
1300
|
:param pulumi.Input[str] hostname: Hostname for the SQL Server connection.
|
1301
|
+
:param pulumi.Input[str] username: Username for the SQL Server connection.
|
1231
1302
|
:param pulumi.Input[str] password: Password for the SQL Server connection.
|
1232
1303
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
1233
|
-
:param pulumi.Input[str] username: Username for the SQL Server connection.
|
1234
1304
|
:param pulumi.Input[int] port: Port for the SQL Server connection.
|
1305
|
+
:param pulumi.Input[str] secret_manager_stored_password: A reference to a Secret Manager resource name storing the user's password.
|
1235
1306
|
"""
|
1236
1307
|
pulumi.set(__self__, "database", database)
|
1237
1308
|
pulumi.set(__self__, "hostname", hostname)
|
1238
|
-
pulumi.set(__self__, "password", password)
|
1239
1309
|
pulumi.set(__self__, "username", username)
|
1310
|
+
if password is not None:
|
1311
|
+
pulumi.set(__self__, "password", password)
|
1240
1312
|
if port is not None:
|
1241
1313
|
pulumi.set(__self__, "port", port)
|
1314
|
+
if secret_manager_stored_password is not None:
|
1315
|
+
pulumi.set(__self__, "secret_manager_stored_password", secret_manager_stored_password)
|
1242
1316
|
|
1243
1317
|
@property
|
1244
1318
|
@pulumi.getter
|
@@ -1264,19 +1338,6 @@ class ConnectionProfileSqlServerProfileArgs:
|
|
1264
1338
|
def hostname(self, value: pulumi.Input[str]):
|
1265
1339
|
pulumi.set(self, "hostname", value)
|
1266
1340
|
|
1267
|
-
@property
|
1268
|
-
@pulumi.getter
|
1269
|
-
def password(self) -> pulumi.Input[str]:
|
1270
|
-
"""
|
1271
|
-
Password for the SQL Server connection.
|
1272
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
1273
|
-
"""
|
1274
|
-
return pulumi.get(self, "password")
|
1275
|
-
|
1276
|
-
@password.setter
|
1277
|
-
def password(self, value: pulumi.Input[str]):
|
1278
|
-
pulumi.set(self, "password", value)
|
1279
|
-
|
1280
1341
|
@property
|
1281
1342
|
@pulumi.getter
|
1282
1343
|
def username(self) -> pulumi.Input[str]:
|
@@ -1289,6 +1350,19 @@ class ConnectionProfileSqlServerProfileArgs:
|
|
1289
1350
|
def username(self, value: pulumi.Input[str]):
|
1290
1351
|
pulumi.set(self, "username", value)
|
1291
1352
|
|
1353
|
+
@property
|
1354
|
+
@pulumi.getter
|
1355
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
1356
|
+
"""
|
1357
|
+
Password for the SQL Server connection.
|
1358
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
1359
|
+
"""
|
1360
|
+
return pulumi.get(self, "password")
|
1361
|
+
|
1362
|
+
@password.setter
|
1363
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
1364
|
+
pulumi.set(self, "password", value)
|
1365
|
+
|
1292
1366
|
@property
|
1293
1367
|
@pulumi.getter
|
1294
1368
|
def port(self) -> Optional[pulumi.Input[int]]:
|
@@ -1301,6 +1375,18 @@ class ConnectionProfileSqlServerProfileArgs:
|
|
1301
1375
|
def port(self, value: Optional[pulumi.Input[int]]):
|
1302
1376
|
pulumi.set(self, "port", value)
|
1303
1377
|
|
1378
|
+
@property
|
1379
|
+
@pulumi.getter(name="secretManagerStoredPassword")
|
1380
|
+
def secret_manager_stored_password(self) -> Optional[pulumi.Input[str]]:
|
1381
|
+
"""
|
1382
|
+
A reference to a Secret Manager resource name storing the user's password.
|
1383
|
+
"""
|
1384
|
+
return pulumi.get(self, "secret_manager_stored_password")
|
1385
|
+
|
1386
|
+
@secret_manager_stored_password.setter
|
1387
|
+
def secret_manager_stored_password(self, value: Optional[pulumi.Input[str]]):
|
1388
|
+
pulumi.set(self, "secret_manager_stored_password", value)
|
1389
|
+
|
1304
1390
|
|
1305
1391
|
if not MYPY:
|
1306
1392
|
class PrivateConnectionErrorArgsDict(TypedDict):
|
@@ -2933,6 +3019,11 @@ if not MYPY:
|
|
2933
3019
|
events) to a source table will be written to the destination Google BigQuery table, retaining the
|
2934
3020
|
historical state of the data.
|
2935
3021
|
"""
|
3022
|
+
blmt_config: NotRequired[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgsDict']]
|
3023
|
+
"""
|
3024
|
+
BigLake Managed Tables configuration for BigQuery streams.
|
3025
|
+
Structure is documented below.
|
3026
|
+
"""
|
2936
3027
|
data_freshness: NotRequired[pulumi.Input[str]]
|
2937
3028
|
"""
|
2938
3029
|
The guaranteed data freshness (in seconds) when querying tables created by the stream.
|
@@ -2963,6 +3054,7 @@ elif False:
|
|
2963
3054
|
class StreamDestinationConfigBigqueryDestinationConfigArgs:
|
2964
3055
|
def __init__(__self__, *,
|
2965
3056
|
append_only: Optional[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigAppendOnlyArgs']] = None,
|
3057
|
+
blmt_config: Optional[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgs']] = None,
|
2966
3058
|
data_freshness: Optional[pulumi.Input[str]] = None,
|
2967
3059
|
merge: Optional[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigMergeArgs']] = None,
|
2968
3060
|
single_target_dataset: Optional[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgs']] = None,
|
@@ -2971,6 +3063,8 @@ class StreamDestinationConfigBigqueryDestinationConfigArgs:
|
|
2971
3063
|
:param pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigAppendOnlyArgs'] append_only: AppendOnly mode defines that the stream of changes (INSERT, UPDATE-INSERT, UPDATE-DELETE and DELETE
|
2972
3064
|
events) to a source table will be written to the destination Google BigQuery table, retaining the
|
2973
3065
|
historical state of the data.
|
3066
|
+
:param pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgs'] blmt_config: BigLake Managed Tables configuration for BigQuery streams.
|
3067
|
+
Structure is documented below.
|
2974
3068
|
:param pulumi.Input[str] data_freshness: The guaranteed data freshness (in seconds) when querying tables created by the stream.
|
2975
3069
|
Editing this field will only affect new tables created in the future, but existing tables
|
2976
3070
|
will not be impacted. Lower values mean that queries will return fresher data, but may result in higher cost.
|
@@ -2985,6 +3079,8 @@ class StreamDestinationConfigBigqueryDestinationConfigArgs:
|
|
2985
3079
|
"""
|
2986
3080
|
if append_only is not None:
|
2987
3081
|
pulumi.set(__self__, "append_only", append_only)
|
3082
|
+
if blmt_config is not None:
|
3083
|
+
pulumi.set(__self__, "blmt_config", blmt_config)
|
2988
3084
|
if data_freshness is not None:
|
2989
3085
|
pulumi.set(__self__, "data_freshness", data_freshness)
|
2990
3086
|
if merge is not None:
|
@@ -3008,6 +3104,19 @@ class StreamDestinationConfigBigqueryDestinationConfigArgs:
|
|
3008
3104
|
def append_only(self, value: Optional[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigAppendOnlyArgs']]):
|
3009
3105
|
pulumi.set(self, "append_only", value)
|
3010
3106
|
|
3107
|
+
@property
|
3108
|
+
@pulumi.getter(name="blmtConfig")
|
3109
|
+
def blmt_config(self) -> Optional[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgs']]:
|
3110
|
+
"""
|
3111
|
+
BigLake Managed Tables configuration for BigQuery streams.
|
3112
|
+
Structure is documented below.
|
3113
|
+
"""
|
3114
|
+
return pulumi.get(self, "blmt_config")
|
3115
|
+
|
3116
|
+
@blmt_config.setter
|
3117
|
+
def blmt_config(self, value: Optional[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgs']]):
|
3118
|
+
pulumi.set(self, "blmt_config", value)
|
3119
|
+
|
3011
3120
|
@property
|
3012
3121
|
@pulumi.getter(name="dataFreshness")
|
3013
3122
|
def data_freshness(self) -> Optional[pulumi.Input[str]]:
|
@@ -3076,6 +3185,120 @@ class StreamDestinationConfigBigqueryDestinationConfigAppendOnlyArgs:
|
|
3076
3185
|
pass
|
3077
3186
|
|
3078
3187
|
|
3188
|
+
if not MYPY:
|
3189
|
+
class StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgsDict(TypedDict):
|
3190
|
+
bucket: pulumi.Input[str]
|
3191
|
+
"""
|
3192
|
+
The Cloud Storage bucket name.
|
3193
|
+
"""
|
3194
|
+
connection_name: pulumi.Input[str]
|
3195
|
+
"""
|
3196
|
+
The bigquery connection. Format: `{project}.{location}.{name}`
|
3197
|
+
"""
|
3198
|
+
file_format: pulumi.Input[str]
|
3199
|
+
"""
|
3200
|
+
The file format.
|
3201
|
+
"""
|
3202
|
+
table_format: pulumi.Input[str]
|
3203
|
+
"""
|
3204
|
+
The table format.
|
3205
|
+
"""
|
3206
|
+
root_path: NotRequired[pulumi.Input[str]]
|
3207
|
+
"""
|
3208
|
+
The root path inside the Cloud Storage bucket.
|
3209
|
+
|
3210
|
+
- - -
|
3211
|
+
"""
|
3212
|
+
elif False:
|
3213
|
+
StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3214
|
+
|
3215
|
+
@pulumi.input_type
|
3216
|
+
class StreamDestinationConfigBigqueryDestinationConfigBlmtConfigArgs:
|
3217
|
+
def __init__(__self__, *,
|
3218
|
+
bucket: pulumi.Input[str],
|
3219
|
+
connection_name: pulumi.Input[str],
|
3220
|
+
file_format: pulumi.Input[str],
|
3221
|
+
table_format: pulumi.Input[str],
|
3222
|
+
root_path: Optional[pulumi.Input[str]] = None):
|
3223
|
+
"""
|
3224
|
+
:param pulumi.Input[str] bucket: The Cloud Storage bucket name.
|
3225
|
+
:param pulumi.Input[str] connection_name: The bigquery connection. Format: `{project}.{location}.{name}`
|
3226
|
+
:param pulumi.Input[str] file_format: The file format.
|
3227
|
+
:param pulumi.Input[str] table_format: The table format.
|
3228
|
+
:param pulumi.Input[str] root_path: The root path inside the Cloud Storage bucket.
|
3229
|
+
|
3230
|
+
- - -
|
3231
|
+
"""
|
3232
|
+
pulumi.set(__self__, "bucket", bucket)
|
3233
|
+
pulumi.set(__self__, "connection_name", connection_name)
|
3234
|
+
pulumi.set(__self__, "file_format", file_format)
|
3235
|
+
pulumi.set(__self__, "table_format", table_format)
|
3236
|
+
if root_path is not None:
|
3237
|
+
pulumi.set(__self__, "root_path", root_path)
|
3238
|
+
|
3239
|
+
@property
|
3240
|
+
@pulumi.getter
|
3241
|
+
def bucket(self) -> pulumi.Input[str]:
|
3242
|
+
"""
|
3243
|
+
The Cloud Storage bucket name.
|
3244
|
+
"""
|
3245
|
+
return pulumi.get(self, "bucket")
|
3246
|
+
|
3247
|
+
@bucket.setter
|
3248
|
+
def bucket(self, value: pulumi.Input[str]):
|
3249
|
+
pulumi.set(self, "bucket", value)
|
3250
|
+
|
3251
|
+
@property
|
3252
|
+
@pulumi.getter(name="connectionName")
|
3253
|
+
def connection_name(self) -> pulumi.Input[str]:
|
3254
|
+
"""
|
3255
|
+
The bigquery connection. Format: `{project}.{location}.{name}`
|
3256
|
+
"""
|
3257
|
+
return pulumi.get(self, "connection_name")
|
3258
|
+
|
3259
|
+
@connection_name.setter
|
3260
|
+
def connection_name(self, value: pulumi.Input[str]):
|
3261
|
+
pulumi.set(self, "connection_name", value)
|
3262
|
+
|
3263
|
+
@property
|
3264
|
+
@pulumi.getter(name="fileFormat")
|
3265
|
+
def file_format(self) -> pulumi.Input[str]:
|
3266
|
+
"""
|
3267
|
+
The file format.
|
3268
|
+
"""
|
3269
|
+
return pulumi.get(self, "file_format")
|
3270
|
+
|
3271
|
+
@file_format.setter
|
3272
|
+
def file_format(self, value: pulumi.Input[str]):
|
3273
|
+
pulumi.set(self, "file_format", value)
|
3274
|
+
|
3275
|
+
@property
|
3276
|
+
@pulumi.getter(name="tableFormat")
|
3277
|
+
def table_format(self) -> pulumi.Input[str]:
|
3278
|
+
"""
|
3279
|
+
The table format.
|
3280
|
+
"""
|
3281
|
+
return pulumi.get(self, "table_format")
|
3282
|
+
|
3283
|
+
@table_format.setter
|
3284
|
+
def table_format(self, value: pulumi.Input[str]):
|
3285
|
+
pulumi.set(self, "table_format", value)
|
3286
|
+
|
3287
|
+
@property
|
3288
|
+
@pulumi.getter(name="rootPath")
|
3289
|
+
def root_path(self) -> Optional[pulumi.Input[str]]:
|
3290
|
+
"""
|
3291
|
+
The root path inside the Cloud Storage bucket.
|
3292
|
+
|
3293
|
+
- - -
|
3294
|
+
"""
|
3295
|
+
return pulumi.get(self, "root_path")
|
3296
|
+
|
3297
|
+
@root_path.setter
|
3298
|
+
def root_path(self, value: Optional[pulumi.Input[str]]):
|
3299
|
+
pulumi.set(self, "root_path", value)
|
3300
|
+
|
3301
|
+
|
3079
3302
|
if not MYPY:
|
3080
3303
|
class StreamDestinationConfigBigqueryDestinationConfigMergeArgsDict(TypedDict):
|
3081
3304
|
pass
|
@@ -3174,8 +3397,6 @@ if not MYPY:
|
|
3174
3397
|
table. The BigQuery Service Account associated with your project requires access to this
|
3175
3398
|
encryption key. i.e. projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}.
|
3176
3399
|
See https://cloud.google.com/bigquery/docs/customer-managed-encryption for more information.
|
3177
|
-
|
3178
|
-
- - -
|
3179
3400
|
"""
|
3180
3401
|
elif False:
|
3181
3402
|
StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplateArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3195,8 +3416,6 @@ class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDat
|
|
3195
3416
|
table. The BigQuery Service Account associated with your project requires access to this
|
3196
3417
|
encryption key. i.e. projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}.
|
3197
3418
|
See https://cloud.google.com/bigquery/docs/customer-managed-encryption for more information.
|
3198
|
-
|
3199
|
-
- - -
|
3200
3419
|
"""
|
3201
3420
|
pulumi.set(__self__, "location", location)
|
3202
3421
|
if dataset_id_prefix is not None:
|
@@ -3238,8 +3457,6 @@ class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDat
|
|
3238
3457
|
table. The BigQuery Service Account associated with your project requires access to this
|
3239
3458
|
encryption key. i.e. projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}.
|
3240
3459
|
See https://cloud.google.com/bigquery/docs/customer-managed-encryption for more information.
|
3241
|
-
|
3242
|
-
- - -
|
3243
3460
|
"""
|
3244
3461
|
return pulumi.get(self, "kms_key_name")
|
3245
3462
|
|