pulumi-gcp 8.27.0a1744903336__py3-none-any.whl → 8.28.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 (79) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +369 -0
  5. pulumi_gcp/alloydb/_inputs.py +47 -1
  6. pulumi_gcp/alloydb/outputs.py +61 -3
  7. pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
  8. pulumi_gcp/applicationintegration/client.py +34 -12
  9. pulumi_gcp/artifactregistry/outputs.py +2 -2
  10. pulumi_gcp/certificateauthority/_inputs.py +32 -0
  11. pulumi_gcp/certificateauthority/ca_pool.py +2 -0
  12. pulumi_gcp/certificateauthority/outputs.py +22 -0
  13. pulumi_gcp/clouddeploy/_inputs.py +0 -6
  14. pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
  15. pulumi_gcp/clouddeploy/outputs.py +0 -4
  16. pulumi_gcp/cloudrunv2/_inputs.py +3 -3
  17. pulumi_gcp/cloudrunv2/outputs.py +4 -4
  18. pulumi_gcp/colab/runtime_template.py +3 -3
  19. pulumi_gcp/compute/__init__.py +7 -0
  20. pulumi_gcp/compute/_inputs.py +809 -1
  21. pulumi_gcp/compute/backend_service.py +89 -0
  22. pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
  23. pulumi_gcp/compute/get_backend_service.py +12 -1
  24. pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
  25. pulumi_gcp/compute/get_storage_pool_types.py +268 -0
  26. pulumi_gcp/compute/outputs.py +743 -3
  27. pulumi_gcp/compute/resource_policy_attachment.py +476 -0
  28. pulumi_gcp/compute/storage_pool.py +1045 -0
  29. pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
  30. pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
  31. pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/container/_inputs.py +63 -3
  35. pulumi_gcp/container/outputs.py +70 -6
  36. pulumi_gcp/dataproc/get_metastore_service.py +12 -1
  37. pulumi_gcp/dataproc/metastore_service.py +61 -0
  38. pulumi_gcp/datastream/connection_profile.py +40 -0
  39. pulumi_gcp/discoveryengine/_inputs.py +38 -0
  40. pulumi_gcp/discoveryengine/chat_engine.py +6 -4
  41. pulumi_gcp/discoveryengine/outputs.py +26 -0
  42. pulumi_gcp/firebaserules/_inputs.py +6 -6
  43. pulumi_gcp/firebaserules/outputs.py +4 -4
  44. pulumi_gcp/gkebackup/__init__.py +2 -0
  45. pulumi_gcp/gkebackup/backup_channel.py +737 -0
  46. pulumi_gcp/gkebackup/restore_channel.py +737 -0
  47. pulumi_gcp/gkehub/_inputs.py +208 -0
  48. pulumi_gcp/gkehub/outputs.py +171 -1
  49. pulumi_gcp/healthcare/pipeline_job.py +2 -2
  50. pulumi_gcp/iap/__init__.py +4 -0
  51. pulumi_gcp/iap/_inputs.py +130 -0
  52. pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
  53. pulumi_gcp/iap/outputs.py +76 -0
  54. pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
  55. pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
  56. pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
  57. pulumi_gcp/kms/key_ring_import_job.py +7 -7
  58. pulumi_gcp/managedkafka/connect_cluster.py +8 -4
  59. pulumi_gcp/managedkafka/connector.py +8 -4
  60. pulumi_gcp/monitoring/uptime_check_config.py +49 -0
  61. pulumi_gcp/networkconnectivity/internal_range.py +82 -0
  62. pulumi_gcp/projects/_inputs.py +0 -6
  63. pulumi_gcp/projects/api_key.py +28 -0
  64. pulumi_gcp/projects/outputs.py +0 -4
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pulumi-plugin.json +1 -1
  67. pulumi_gcp/redis/get_instance.py +12 -1
  68. pulumi_gcp/redis/instance.py +61 -0
  69. pulumi_gcp/secretmanager/secret.py +16 -17
  70. pulumi_gcp/sql/_inputs.py +86 -6
  71. pulumi_gcp/sql/outputs.py +156 -12
  72. pulumi_gcp/storage/__init__.py +1 -0
  73. pulumi_gcp/storage/_inputs.py +457 -0
  74. pulumi_gcp/storage/batch_operations_job.py +776 -0
  75. pulumi_gcp/storage/outputs.py +403 -0
  76. {pulumi_gcp-8.27.0a1744903336.dist-info → pulumi_gcp-8.28.0.dist-info}/METADATA +1 -1
  77. {pulumi_gcp-8.27.0a1744903336.dist-info → pulumi_gcp-8.28.0.dist-info}/RECORD +79 -65
  78. {pulumi_gcp-8.27.0a1744903336.dist-info → pulumi_gcp-8.28.0.dist-info}/WHEEL +1 -1
  79. {pulumi_gcp-8.27.0a1744903336.dist-info → pulumi_gcp-8.28.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/sql/_inputs.py CHANGED
@@ -833,6 +833,14 @@ if not MYPY:
833
833
  """
834
834
  Data cache configurations.
835
835
  """
836
+ data_disk_provisioned_iops: NotRequired[pulumi.Input[builtins.int]]
837
+ """
838
+ Provisioned number of I/O operations per second for the data disk. This field is only used for `HYPERDISK_BALANCED` disk types.
839
+ """
840
+ data_disk_provisioned_throughput: NotRequired[pulumi.Input[builtins.int]]
841
+ """
842
+ Provisioned throughput measured in MiB per second for the data disk. This field is only used for `HYPERDISK_BALANCED` disk types.
843
+ """
836
844
  database_flags: NotRequired[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsDatabaseFlagArgsDict']]]]
837
845
  deletion_protection_enabled: NotRequired[pulumi.Input[builtins.bool]]
838
846
  """
@@ -849,11 +857,11 @@ if not MYPY:
849
857
  """
850
858
  disk_size: NotRequired[pulumi.Input[builtins.int]]
851
859
  """
852
- The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
860
+ The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB for PD_SSD, PD_HDD and 20GB for HYPERDISK_BALANCED. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
853
861
  """
854
862
  disk_type: NotRequired[pulumi.Input[builtins.str]]
855
863
  """
856
- The type of data disk: PD_SSD or PD_HDD. Defaults to `PD_SSD`.
864
+ The type of data disk: PD_SSD, PD_HDD, or HYPERDISK_BALANCED. Defaults to `PD_SSD`. HYPERDISK_BALANCED is preview.
857
865
  """
858
866
  edition: NotRequired[pulumi.Input[builtins.str]]
859
867
  """
@@ -882,6 +890,10 @@ if not MYPY:
882
890
  """
883
891
  Pricing plan for this instance, can only be `PER_USE`.
884
892
  """
893
+ retain_backups_on_delete: NotRequired[pulumi.Input[builtins.bool]]
894
+ """
895
+ When this parameter is set to true, Cloud SQL retains backups of the instance even after the instance is deleted. The `ON_DEMAND` backup will be retained until customer deletes the backup or the project. The `AUTOMATED` backup will be retained based on the backups retention setting.
896
+ """
885
897
  sql_server_audit_config: NotRequired[pulumi.Input['DatabaseInstanceSettingsSqlServerAuditConfigArgsDict']]
886
898
  time_zone: NotRequired[pulumi.Input[builtins.str]]
887
899
  """
@@ -911,6 +923,8 @@ class DatabaseInstanceSettingsArgs:
911
923
  collation: Optional[pulumi.Input[builtins.str]] = None,
912
924
  connector_enforcement: Optional[pulumi.Input[builtins.str]] = None,
913
925
  data_cache_config: Optional[pulumi.Input['DatabaseInstanceSettingsDataCacheConfigArgs']] = None,
926
+ data_disk_provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
927
+ data_disk_provisioned_throughput: Optional[pulumi.Input[builtins.int]] = None,
914
928
  database_flags: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsDatabaseFlagArgs']]]] = None,
915
929
  deletion_protection_enabled: Optional[pulumi.Input[builtins.bool]] = None,
916
930
  deny_maintenance_period: Optional[pulumi.Input['DatabaseInstanceSettingsDenyMaintenancePeriodArgs']] = None,
@@ -927,6 +941,7 @@ class DatabaseInstanceSettingsArgs:
927
941
  maintenance_window: Optional[pulumi.Input['DatabaseInstanceSettingsMaintenanceWindowArgs']] = None,
928
942
  password_validation_policy: Optional[pulumi.Input['DatabaseInstanceSettingsPasswordValidationPolicyArgs']] = None,
929
943
  pricing_plan: Optional[pulumi.Input[builtins.str]] = None,
944
+ retain_backups_on_delete: Optional[pulumi.Input[builtins.bool]] = None,
930
945
  sql_server_audit_config: Optional[pulumi.Input['DatabaseInstanceSettingsSqlServerAuditConfigArgs']] = None,
931
946
  time_zone: Optional[pulumi.Input[builtins.str]] = None,
932
947
  user_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
@@ -946,17 +961,20 @@ class DatabaseInstanceSettingsArgs:
946
961
  :param pulumi.Input[builtins.str] collation: The name of server instance collation.
947
962
  :param pulumi.Input[builtins.str] connector_enforcement: Control the enforcement of Cloud SQL Auth Proxy or Cloud SQL connectors for all the connections, can be `REQUIRED` or `NOT_REQUIRED`. If enabled, all the direct connections are rejected.
948
963
  :param pulumi.Input['DatabaseInstanceSettingsDataCacheConfigArgs'] data_cache_config: Data cache configurations.
964
+ :param pulumi.Input[builtins.int] data_disk_provisioned_iops: Provisioned number of I/O operations per second for the data disk. This field is only used for `HYPERDISK_BALANCED` disk types.
965
+ :param pulumi.Input[builtins.int] data_disk_provisioned_throughput: Provisioned throughput measured in MiB per second for the data disk. This field is only used for `HYPERDISK_BALANCED` disk types.
949
966
  :param pulumi.Input[builtins.bool] deletion_protection_enabled: Configuration to protect against accidental instance deletion.
950
967
  :param pulumi.Input[builtins.bool] disk_autoresize: Enables auto-resizing of the storage size. Defaults to `true`. Note that if `disk_size` is set, future `pulumi up` calls will attempt to delete the instance in order to resize the disk to the value specified in disk_size if it has been resized. To avoid this, ensure that `lifecycle.ignore_changes` is applied to `disk_size`.
951
968
  :param pulumi.Input[builtins.int] disk_autoresize_limit: The maximum size to which storage capacity can be automatically increased. The default value is 0, which specifies that there is no limit.
952
- :param pulumi.Input[builtins.int] disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
953
- :param pulumi.Input[builtins.str] disk_type: The type of data disk: PD_SSD or PD_HDD. Defaults to `PD_SSD`.
969
+ :param pulumi.Input[builtins.int] disk_size: The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB for PD_SSD, PD_HDD and 20GB for HYPERDISK_BALANCED. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
970
+ :param pulumi.Input[builtins.str] disk_type: The type of data disk: PD_SSD, PD_HDD, or HYPERDISK_BALANCED. Defaults to `PD_SSD`. HYPERDISK_BALANCED is preview.
954
971
  :param pulumi.Input[builtins.str] edition: The edition of the instance, can be `ENTERPRISE` or `ENTERPRISE_PLUS`.
955
972
  :param pulumi.Input[builtins.bool] enable_dataplex_integration: Enables [Cloud SQL instance integration with Dataplex](https://cloud.google.com/sql/docs/mysql/dataplex-catalog-integration). MySQL, Postgres and SQL Server instances are supported for this feature. Defaults to `false`.
956
973
  :param pulumi.Input[builtins.bool] enable_google_ml_integration: Enables [Cloud SQL instances to connect to Vertex AI](https://cloud.google.com/sql/docs/postgres/integrate-cloud-sql-with-vertex-ai) and pass requests for real-time predictions and insights. Defaults to `false`.
957
974
  :param pulumi.Input['DatabaseInstanceSettingsInsightsConfigArgs'] insights_config: Configuration of Query Insights.
958
975
  :param pulumi.Input['DatabaseInstanceSettingsMaintenanceWindowArgs'] maintenance_window: Declares a one-hour maintenance window when an Instance can automatically restart to apply updates. The maintenance window is specified in UTC time.
959
976
  :param pulumi.Input[builtins.str] pricing_plan: Pricing plan for this instance, can only be `PER_USE`.
977
+ :param pulumi.Input[builtins.bool] retain_backups_on_delete: When this parameter is set to true, Cloud SQL retains backups of the instance even after the instance is deleted. The `ON_DEMAND` backup will be retained until customer deletes the backup or the project. The `AUTOMATED` backup will be retained based on the backups retention setting.
960
978
  :param pulumi.Input[builtins.str] time_zone: The time_zone to be used by the database engine (supported only for SQL Server), in SQL Server timezone format.
961
979
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] user_labels: A set of key/value user label pairs to assign to the instance.
962
980
  :param pulumi.Input[builtins.int] version: Used to make sure changes to the `settings` block are
@@ -979,6 +997,10 @@ class DatabaseInstanceSettingsArgs:
979
997
  pulumi.set(__self__, "connector_enforcement", connector_enforcement)
980
998
  if data_cache_config is not None:
981
999
  pulumi.set(__self__, "data_cache_config", data_cache_config)
1000
+ if data_disk_provisioned_iops is not None:
1001
+ pulumi.set(__self__, "data_disk_provisioned_iops", data_disk_provisioned_iops)
1002
+ if data_disk_provisioned_throughput is not None:
1003
+ pulumi.set(__self__, "data_disk_provisioned_throughput", data_disk_provisioned_throughput)
982
1004
  if database_flags is not None:
983
1005
  pulumi.set(__self__, "database_flags", database_flags)
984
1006
  if deletion_protection_enabled is not None:
@@ -1011,6 +1033,8 @@ class DatabaseInstanceSettingsArgs:
1011
1033
  pulumi.set(__self__, "password_validation_policy", password_validation_policy)
1012
1034
  if pricing_plan is not None:
1013
1035
  pulumi.set(__self__, "pricing_plan", pricing_plan)
1036
+ if retain_backups_on_delete is not None:
1037
+ pulumi.set(__self__, "retain_backups_on_delete", retain_backups_on_delete)
1014
1038
  if sql_server_audit_config is not None:
1015
1039
  pulumi.set(__self__, "sql_server_audit_config", sql_server_audit_config)
1016
1040
  if time_zone is not None:
@@ -1127,6 +1151,30 @@ class DatabaseInstanceSettingsArgs:
1127
1151
  def data_cache_config(self, value: Optional[pulumi.Input['DatabaseInstanceSettingsDataCacheConfigArgs']]):
1128
1152
  pulumi.set(self, "data_cache_config", value)
1129
1153
 
1154
+ @property
1155
+ @pulumi.getter(name="dataDiskProvisionedIops")
1156
+ def data_disk_provisioned_iops(self) -> Optional[pulumi.Input[builtins.int]]:
1157
+ """
1158
+ Provisioned number of I/O operations per second for the data disk. This field is only used for `HYPERDISK_BALANCED` disk types.
1159
+ """
1160
+ return pulumi.get(self, "data_disk_provisioned_iops")
1161
+
1162
+ @data_disk_provisioned_iops.setter
1163
+ def data_disk_provisioned_iops(self, value: Optional[pulumi.Input[builtins.int]]):
1164
+ pulumi.set(self, "data_disk_provisioned_iops", value)
1165
+
1166
+ @property
1167
+ @pulumi.getter(name="dataDiskProvisionedThroughput")
1168
+ def data_disk_provisioned_throughput(self) -> Optional[pulumi.Input[builtins.int]]:
1169
+ """
1170
+ Provisioned throughput measured in MiB per second for the data disk. This field is only used for `HYPERDISK_BALANCED` disk types.
1171
+ """
1172
+ return pulumi.get(self, "data_disk_provisioned_throughput")
1173
+
1174
+ @data_disk_provisioned_throughput.setter
1175
+ def data_disk_provisioned_throughput(self, value: Optional[pulumi.Input[builtins.int]]):
1176
+ pulumi.set(self, "data_disk_provisioned_throughput", value)
1177
+
1130
1178
  @property
1131
1179
  @pulumi.getter(name="databaseFlags")
1132
1180
  def database_flags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsDatabaseFlagArgs']]]]:
@@ -1185,7 +1233,7 @@ class DatabaseInstanceSettingsArgs:
1185
1233
  @pulumi.getter(name="diskSize")
1186
1234
  def disk_size(self) -> Optional[pulumi.Input[builtins.int]]:
1187
1235
  """
1188
- The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
1236
+ The size of data disk, in GB. Size of a running instance cannot be reduced but can be increased. The minimum value is 10GB for PD_SSD, PD_HDD and 20GB for HYPERDISK_BALANCED. Note that this value will override the resizing from `disk_autoresize` if that feature is enabled. To avoid this, set `lifecycle.ignore_changes` on this field.
1189
1237
  """
1190
1238
  return pulumi.get(self, "disk_size")
1191
1239
 
@@ -1197,7 +1245,7 @@ class DatabaseInstanceSettingsArgs:
1197
1245
  @pulumi.getter(name="diskType")
1198
1246
  def disk_type(self) -> Optional[pulumi.Input[builtins.str]]:
1199
1247
  """
1200
- The type of data disk: PD_SSD or PD_HDD. Defaults to `PD_SSD`.
1248
+ The type of data disk: PD_SSD, PD_HDD, or HYPERDISK_BALANCED. Defaults to `PD_SSD`. HYPERDISK_BALANCED is preview.
1201
1249
  """
1202
1250
  return pulumi.get(self, "disk_type")
1203
1251
 
@@ -1304,6 +1352,18 @@ class DatabaseInstanceSettingsArgs:
1304
1352
  def pricing_plan(self, value: Optional[pulumi.Input[builtins.str]]):
1305
1353
  pulumi.set(self, "pricing_plan", value)
1306
1354
 
1355
+ @property
1356
+ @pulumi.getter(name="retainBackupsOnDelete")
1357
+ def retain_backups_on_delete(self) -> Optional[pulumi.Input[builtins.bool]]:
1358
+ """
1359
+ When this parameter is set to true, Cloud SQL retains backups of the instance even after the instance is deleted. The `ON_DEMAND` backup will be retained until customer deletes the backup or the project. The `AUTOMATED` backup will be retained based on the backups retention setting.
1360
+ """
1361
+ return pulumi.get(self, "retain_backups_on_delete")
1362
+
1363
+ @retain_backups_on_delete.setter
1364
+ def retain_backups_on_delete(self, value: Optional[pulumi.Input[builtins.bool]]):
1365
+ pulumi.set(self, "retain_backups_on_delete", value)
1366
+
1307
1367
  @property
1308
1368
  @pulumi.getter(name="sqlServerAuditConfig")
1309
1369
  def sql_server_audit_config(self) -> Optional[pulumi.Input['DatabaseInstanceSettingsSqlServerAuditConfigArgs']]:
@@ -1899,6 +1959,10 @@ if not MYPY:
1899
1959
  The name of the allocated ip range for the private ip CloudSQL instance. For example: "google-managed-services-default". If set, the instance ip will be created in the allocated range. The range name must comply with [RFC 1035](https://datatracker.ietf.org/doc/html/rfc1035). Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
1900
1960
  """
1901
1961
  authorized_networks: NotRequired[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationAuthorizedNetworkArgsDict']]]]
1962
+ custom_subject_alternative_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
1963
+ """
1964
+ The custom subject alternative names for an instance with `CUSTOMER_MANAGED_CAS_CA` as the `server_ca_mode`.
1965
+ """
1902
1966
  enable_private_path_for_google_cloud_services: NotRequired[pulumi.Input[builtins.bool]]
1903
1967
  """
1904
1968
  Whether Google Cloud services such as BigQuery are allowed to access data in this Cloud SQL instance over a private IP connection. SQLSERVER database type is not supported.
@@ -1941,6 +2005,7 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1941
2005
  def __init__(__self__, *,
1942
2006
  allocated_ip_range: Optional[pulumi.Input[builtins.str]] = None,
1943
2007
  authorized_networks: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationAuthorizedNetworkArgs']]]] = None,
2008
+ custom_subject_alternative_names: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1944
2009
  enable_private_path_for_google_cloud_services: Optional[pulumi.Input[builtins.bool]] = None,
1945
2010
  ipv4_enabled: Optional[pulumi.Input[builtins.bool]] = None,
1946
2011
  private_network: Optional[pulumi.Input[builtins.str]] = None,
@@ -1950,6 +2015,7 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1950
2015
  ssl_mode: Optional[pulumi.Input[builtins.str]] = None):
1951
2016
  """
1952
2017
  :param pulumi.Input[builtins.str] allocated_ip_range: The name of the allocated ip range for the private ip CloudSQL instance. For example: "google-managed-services-default". If set, the instance ip will be created in the allocated range. The range name must comply with [RFC 1035](https://datatracker.ietf.org/doc/html/rfc1035). Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
2018
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] custom_subject_alternative_names: The custom subject alternative names for an instance with `CUSTOMER_MANAGED_CAS_CA` as the `server_ca_mode`.
1953
2019
  :param pulumi.Input[builtins.bool] enable_private_path_for_google_cloud_services: Whether Google Cloud services such as BigQuery are allowed to access data in this Cloud SQL instance over a private IP connection. SQLSERVER database type is not supported.
1954
2020
  :param pulumi.Input[builtins.bool] ipv4_enabled: Whether this Cloud SQL instance should be assigned
1955
2021
  a public IPV4 address. At least `ipv4_enabled` must be enabled or a
@@ -1968,6 +2034,8 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1968
2034
  pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
1969
2035
  if authorized_networks is not None:
1970
2036
  pulumi.set(__self__, "authorized_networks", authorized_networks)
2037
+ if custom_subject_alternative_names is not None:
2038
+ pulumi.set(__self__, "custom_subject_alternative_names", custom_subject_alternative_names)
1971
2039
  if enable_private_path_for_google_cloud_services is not None:
1972
2040
  pulumi.set(__self__, "enable_private_path_for_google_cloud_services", enable_private_path_for_google_cloud_services)
1973
2041
  if ipv4_enabled is not None:
@@ -2004,6 +2072,18 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
2004
2072
  def authorized_networks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationAuthorizedNetworkArgs']]]]):
2005
2073
  pulumi.set(self, "authorized_networks", value)
2006
2074
 
2075
+ @property
2076
+ @pulumi.getter(name="customSubjectAlternativeNames")
2077
+ def custom_subject_alternative_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
2078
+ """
2079
+ The custom subject alternative names for an instance with `CUSTOMER_MANAGED_CAS_CA` as the `server_ca_mode`.
2080
+ """
2081
+ return pulumi.get(self, "custom_subject_alternative_names")
2082
+
2083
+ @custom_subject_alternative_names.setter
2084
+ def custom_subject_alternative_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
2085
+ pulumi.set(self, "custom_subject_alternative_names", value)
2086
+
2007
2087
  @property
2008
2088
  @pulumi.getter(name="enablePrivatePathForGoogleCloudServices")
2009
2089
  def enable_private_path_for_google_cloud_services(self) -> Optional[pulumi.Input[builtins.bool]]: