pulumi-gcp 8.6.0a1728595713__py3-none-any.whl → 8.7.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.
Files changed (128) hide show
  1. pulumi_gcp/__init__.py +78 -0
  2. pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
  3. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
  7. pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
  8. pulumi_gcp/apigee/__init__.py +2 -0
  9. pulumi_gcp/apigee/_inputs.py +108 -0
  10. pulumi_gcp/apigee/app_group.py +811 -0
  11. pulumi_gcp/apigee/developer.py +757 -0
  12. pulumi_gcp/apigee/outputs.py +64 -0
  13. pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
  14. pulumi_gcp/bigquery/connection.py +12 -12
  15. pulumi_gcp/bigquery/job.py +6 -6
  16. pulumi_gcp/bigtable/_inputs.py +58 -0
  17. pulumi_gcp/bigtable/instance_iam_binding.py +13 -34
  18. pulumi_gcp/bigtable/instance_iam_member.py +13 -34
  19. pulumi_gcp/bigtable/instance_iam_policy.py +0 -47
  20. pulumi_gcp/bigtable/outputs.py +36 -0
  21. pulumi_gcp/cloudrunv2/get_service.py +12 -1
  22. pulumi_gcp/cloudrunv2/service.py +92 -0
  23. pulumi_gcp/compute/_inputs.py +217 -119
  24. pulumi_gcp/compute/backend_service.py +76 -0
  25. pulumi_gcp/compute/get_backend_service.py +12 -1
  26. pulumi_gcp/compute/get_instance.py +29 -1
  27. pulumi_gcp/compute/get_instance_template.py +29 -1
  28. pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
  29. pulumi_gcp/compute/get_region_instance_template.py +29 -1
  30. pulumi_gcp/compute/instance.py +89 -0
  31. pulumi_gcp/compute/instance_from_machine_image.py +82 -0
  32. pulumi_gcp/compute/instance_from_template.py +82 -0
  33. pulumi_gcp/compute/instance_template.py +75 -0
  34. pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
  35. pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
  36. pulumi_gcp/compute/outputs.py +172 -82
  37. pulumi_gcp/compute/region_backend_service.py +94 -0
  38. pulumi_gcp/compute/region_instance_template.py +75 -0
  39. pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
  40. pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
  41. pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
  42. pulumi_gcp/config/__init__.pyi +4 -0
  43. pulumi_gcp/config/vars.py +8 -0
  44. pulumi_gcp/container/_inputs.py +12 -0
  45. pulumi_gcp/container/attached_cluster.py +9 -6
  46. pulumi_gcp/container/outputs.py +10 -2
  47. pulumi_gcp/datastream/stream.py +2 -2
  48. pulumi_gcp/diagflow/_inputs.py +472 -2
  49. pulumi_gcp/diagflow/cx_agent.py +64 -4
  50. pulumi_gcp/diagflow/cx_flow.py +30 -0
  51. pulumi_gcp/diagflow/outputs.py +378 -2
  52. pulumi_gcp/discoveryengine/_inputs.py +32 -5
  53. pulumi_gcp/discoveryengine/chat_engine.py +64 -0
  54. pulumi_gcp/discoveryengine/outputs.py +22 -3
  55. pulumi_gcp/gkehub/feature.py +2 -4
  56. pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
  57. pulumi_gcp/kms/key_handle.py +8 -8
  58. pulumi_gcp/looker/instance.py +104 -2
  59. pulumi_gcp/monitoring/_inputs.py +23 -0
  60. pulumi_gcp/monitoring/get_secret_version.py +22 -3
  61. pulumi_gcp/monitoring/outputs.py +16 -0
  62. pulumi_gcp/netapp/backup_vault.py +2 -2
  63. pulumi_gcp/networkconnectivity/__init__.py +1 -0
  64. pulumi_gcp/networkconnectivity/_inputs.py +218 -0
  65. pulumi_gcp/networkconnectivity/group.py +764 -0
  66. pulumi_gcp/networkconnectivity/internal_range.py +117 -7
  67. pulumi_gcp/networkconnectivity/outputs.py +167 -0
  68. pulumi_gcp/networkconnectivity/spoke.py +144 -0
  69. pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
  70. pulumi_gcp/networkservices/gateway.py +54 -0
  71. pulumi_gcp/oracledatabase/__init__.py +20 -0
  72. pulumi_gcp/oracledatabase/_inputs.py +4745 -0
  73. pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
  74. pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
  75. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
  76. pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
  77. pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
  78. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
  79. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
  80. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
  81. pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
  82. pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
  83. pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
  84. pulumi_gcp/oracledatabase/outputs.py +9304 -0
  85. pulumi_gcp/organizations/folder.py +7 -7
  86. pulumi_gcp/organizations/project.py +7 -7
  87. pulumi_gcp/orgpolicy/_inputs.py +3 -3
  88. pulumi_gcp/orgpolicy/outputs.py +2 -2
  89. pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
  90. pulumi_gcp/provider.py +40 -0
  91. pulumi_gcp/pulumi-plugin.json +1 -1
  92. pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
  93. pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
  94. pulumi_gcp/secretmanager/get_secret_version.py +22 -3
  95. pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
  96. pulumi_gcp/secretmanager/outputs.py +2 -10
  97. pulumi_gcp/secretmanager/regional_secret.py +2 -2
  98. pulumi_gcp/securesourcemanager/__init__.py +1 -0
  99. pulumi_gcp/securesourcemanager/branch_rule.py +975 -0
  100. pulumi_gcp/siteverification/get_token.py +0 -16
  101. pulumi_gcp/siteverification/owner.py +0 -16
  102. pulumi_gcp/spanner/_inputs.py +29 -5
  103. pulumi_gcp/spanner/backup_schedule.py +4 -2
  104. pulumi_gcp/spanner/outputs.py +20 -3
  105. pulumi_gcp/sql/_inputs.py +6 -6
  106. pulumi_gcp/sql/outputs.py +4 -4
  107. pulumi_gcp/sql/user.py +28 -21
  108. pulumi_gcp/storage/_inputs.py +36 -0
  109. pulumi_gcp/storage/bucket.py +47 -0
  110. pulumi_gcp/storage/get_bucket.py +12 -1
  111. pulumi_gcp/storage/outputs.py +40 -0
  112. pulumi_gcp/transcoder/__init__.py +11 -0
  113. pulumi_gcp/transcoder/_inputs.py +3991 -0
  114. pulumi_gcp/transcoder/job.py +2134 -0
  115. pulumi_gcp/transcoder/job_template.py +1524 -0
  116. pulumi_gcp/transcoder/outputs.py +2918 -0
  117. pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
  118. pulumi_gcp/vmwareengine/_inputs.py +440 -0
  119. pulumi_gcp/vmwareengine/cluster.py +100 -2
  120. pulumi_gcp/vmwareengine/get_cluster.py +12 -1
  121. pulumi_gcp/vmwareengine/outputs.py +615 -0
  122. pulumi_gcp/workstations/_inputs.py +54 -0
  123. pulumi_gcp/workstations/outputs.py +32 -0
  124. pulumi_gcp/workstations/workstation_config.py +205 -0
  125. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/METADATA +1 -1
  126. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/RECORD +128 -105
  127. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/WHEEL +1 -1
  128. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/config/vars.py CHANGED
@@ -509,6 +509,10 @@ class _ExportableConfig(types.ModuleType):
509
509
  def notebooks_custom_endpoint(self) -> Optional[str]:
510
510
  return __config__.get('notebooksCustomEndpoint')
511
511
 
512
+ @property
513
+ def oracle_database_custom_endpoint(self) -> Optional[str]:
514
+ return __config__.get('oracleDatabaseCustomEndpoint')
515
+
512
516
  @property
513
517
  def org_policy_custom_endpoint(self) -> Optional[str]:
514
518
  return __config__.get('orgPolicyCustomEndpoint')
@@ -689,6 +693,10 @@ class _ExportableConfig(types.ModuleType):
689
693
  def tpu_v2_custom_endpoint(self) -> Optional[str]:
690
694
  return __config__.get('tpuV2CustomEndpoint')
691
695
 
696
+ @property
697
+ def transcoder_custom_endpoint(self) -> Optional[str]:
698
+ return __config__.get('transcoderCustomEndpoint')
699
+
692
700
  @property
693
701
  def universe_domain(self) -> Optional[str]:
694
702
  return __config__.get('universeDomain')
@@ -9887,6 +9887,8 @@ if not MYPY:
9887
9887
  The CPU management policy on the node. See
9888
9888
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9889
9889
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
9890
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
9891
+ is setting the empty string `""`, which will function identically to not setting this field.
9890
9892
  """
9891
9893
  insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
9892
9894
  """
@@ -9917,6 +9919,8 @@ class ClusterNodeConfigKubeletConfigArgs:
9917
9919
  :param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
9918
9920
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9919
9921
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
9922
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
9923
+ is setting the empty string `""`, which will function identically to not setting this field.
9920
9924
  :param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
9921
9925
  :param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
9922
9926
  """
@@ -9966,6 +9970,8 @@ class ClusterNodeConfigKubeletConfigArgs:
9966
9970
  The CPU management policy on the node. See
9967
9971
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9968
9972
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
9973
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
9974
+ is setting the empty string `""`, which will function identically to not setting this field.
9969
9975
  """
9970
9976
  return pulumi.get(self, "cpu_manager_policy")
9971
9977
 
@@ -13778,6 +13784,8 @@ if not MYPY:
13778
13784
  The CPU management policy on the node. See
13779
13785
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13780
13786
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
13787
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
13788
+ is setting the empty string `""`, which will function identically to not setting this field.
13781
13789
  """
13782
13790
  insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
13783
13791
  """
@@ -13808,6 +13816,8 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
13808
13816
  :param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
13809
13817
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13810
13818
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
13819
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
13820
+ is setting the empty string `""`, which will function identically to not setting this field.
13811
13821
  :param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
13812
13822
  :param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
13813
13823
  """
@@ -13857,6 +13867,8 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
13857
13867
  The CPU management policy on the node. See
13858
13868
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13859
13869
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
13870
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
13871
+ is setting the empty string `""`, which will function identically to not setting this field.
13860
13872
  """
13861
13873
  return pulumi.get(self, "cpu_manager_policy")
13862
13874
 
@@ -97,6 +97,9 @@ class AttachedClusterArgs:
97
97
  pulumi.set(__self__, "project", project)
98
98
  if proxy_config is not None:
99
99
  pulumi.set(__self__, "proxy_config", proxy_config)
100
+ if security_posture_config is not None:
101
+ warnings.warn("""`security_posture_config` is deprecated and will be removed in a future major release.""", DeprecationWarning)
102
+ pulumi.log.warn("""security_posture_config is deprecated: `security_posture_config` is deprecated and will be removed in a future major release.""")
100
103
  if security_posture_config is not None:
101
104
  pulumi.set(__self__, "security_posture_config", security_posture_config)
102
105
 
@@ -296,6 +299,7 @@ class AttachedClusterArgs:
296
299
 
297
300
  @property
298
301
  @pulumi.getter(name="securityPostureConfig")
302
+ @_utilities.deprecated("""`security_posture_config` is deprecated and will be removed in a future major release.""")
299
303
  def security_posture_config(self) -> Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]:
300
304
  """
301
305
  Enable/Disable Security Posture API features for the cluster.
@@ -428,6 +432,9 @@ class _AttachedClusterState:
428
432
  pulumi.set(__self__, "proxy_config", proxy_config)
429
433
  if reconciling is not None:
430
434
  pulumi.set(__self__, "reconciling", reconciling)
435
+ if security_posture_config is not None:
436
+ warnings.warn("""`security_posture_config` is deprecated and will be removed in a future major release.""", DeprecationWarning)
437
+ pulumi.log.warn("""security_posture_config is deprecated: `security_posture_config` is deprecated and will be removed in a future major release.""")
431
438
  if security_posture_config is not None:
432
439
  pulumi.set(__self__, "security_posture_config", security_posture_config)
433
440
  if state is not None:
@@ -707,6 +714,7 @@ class _AttachedClusterState:
707
714
 
708
715
  @property
709
716
  @pulumi.getter(name="securityPostureConfig")
717
+ @_utilities.deprecated("""`security_posture_config` is deprecated and will be removed in a future major release.""")
710
718
  def security_posture_config(self) -> Optional[pulumi.Input['AttachedClusterSecurityPostureConfigArgs']]:
711
719
  """
712
720
  Enable/Disable Security Posture API features for the cluster.
@@ -884,9 +892,6 @@ class AttachedCluster(pulumi.CustomResource):
884
892
  "name": "proxy-config",
885
893
  "namespace": "default",
886
894
  },
887
- },
888
- security_posture_config={
889
- "vulnerability_mode": "VULNERABILITY_ENTERPRISE",
890
895
  })
891
896
  ```
892
897
  ### Container Attached Cluster Ignore Errors
@@ -1072,9 +1077,6 @@ class AttachedCluster(pulumi.CustomResource):
1072
1077
  "name": "proxy-config",
1073
1078
  "namespace": "default",
1074
1079
  },
1075
- },
1076
- security_posture_config={
1077
- "vulnerability_mode": "VULNERABILITY_ENTERPRISE",
1078
1080
  })
1079
1081
  ```
1080
1082
  ### Container Attached Cluster Ignore Errors
@@ -1509,6 +1511,7 @@ class AttachedCluster(pulumi.CustomResource):
1509
1511
 
1510
1512
  @property
1511
1513
  @pulumi.getter(name="securityPostureConfig")
1514
+ @_utilities.deprecated("""`security_posture_config` is deprecated and will be removed in a future major release.""")
1512
1515
  def security_posture_config(self) -> pulumi.Output['outputs.AttachedClusterSecurityPostureConfig']:
1513
1516
  """
1514
1517
  Enable/Disable Security Posture API features for the cluster.
@@ -8045,6 +8045,8 @@ class ClusterNodeConfigKubeletConfig(dict):
8045
8045
  :param str cpu_manager_policy: The CPU management policy on the node. See
8046
8046
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
8047
8047
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
8048
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
8049
+ is setting the empty string `""`, which will function identically to not setting this field.
8048
8050
  :param str insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
8049
8051
  :param int pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
8050
8052
  """
@@ -8086,6 +8088,8 @@ class ClusterNodeConfigKubeletConfig(dict):
8086
8088
  The CPU management policy on the node. See
8087
8089
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
8088
8090
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
8091
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
8092
+ is setting the empty string `""`, which will function identically to not setting this field.
8089
8093
  """
8090
8094
  return pulumi.get(self, "cpu_manager_policy")
8091
8095
 
@@ -11123,6 +11127,8 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
11123
11127
  :param str cpu_manager_policy: The CPU management policy on the node. See
11124
11128
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
11125
11129
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
11130
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
11131
+ is setting the empty string `""`, which will function identically to not setting this field.
11126
11132
  :param str insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
11127
11133
  :param int pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
11128
11134
  """
@@ -11164,6 +11170,8 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
11164
11170
  The CPU management policy on the node. See
11165
11171
  [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
11166
11172
  One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
11173
+ Prior to the 6.4.0 this field was marked as required. The workaround for the required field
11174
+ is setting the empty string `""`, which will function identically to not setting this field.
11167
11175
  """
11168
11176
  return pulumi.get(self, "cpu_manager_policy")
11169
11177
 
@@ -16526,7 +16534,7 @@ class GetClusterLoggingConfigResult(dict):
16526
16534
  def __init__(__self__, *,
16527
16535
  enable_components: Sequence[str]):
16528
16536
  """
16529
- :param Sequence[str] enable_components: GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS.
16537
+ :param Sequence[str] enable_components: GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, KCP_CONNECTION, KCP_SSHD, SCHEDULER, and WORKLOADS.
16530
16538
  """
16531
16539
  pulumi.set(__self__, "enable_components", enable_components)
16532
16540
 
@@ -16534,7 +16542,7 @@ class GetClusterLoggingConfigResult(dict):
16534
16542
  @pulumi.getter(name="enableComponents")
16535
16543
  def enable_components(self) -> Sequence[str]:
16536
16544
  """
16537
- GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS.
16545
+ GKE components exposing logs. Valid values include SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, KCP_CONNECTION, KCP_SSHD, SCHEDULER, and WORKLOADS.
16538
16546
  """
16539
16547
  return pulumi.get(self, "enable_components")
16540
16548
 
@@ -707,7 +707,7 @@ class Stream(pulumi.CustomResource):
707
707
  connection_profile_id="source-profile",
708
708
  postgresql_profile={
709
709
  "hostname": "hostname",
710
- "port": 3306,
710
+ "port": 5432,
711
711
  "username": "user",
712
712
  "password": "pass",
713
713
  "database": "postgres",
@@ -1545,7 +1545,7 @@ class Stream(pulumi.CustomResource):
1545
1545
  connection_profile_id="source-profile",
1546
1546
  postgresql_profile={
1547
1547
  "hostname": "hostname",
1548
- "port": 3306,
1548
+ "port": 5432,
1549
1549
  "username": "user",
1550
1550
  "password": "pass",
1551
1551
  "database": "postgres",