pulumi-gcp 7.38.0a1724479203__py3-none-any.whl → 7.39.0a1724911478__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 (46) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/appengine/flexible_app_version.py +8 -0
  3. pulumi_gcp/applicationintegration/client.py +2 -2
  4. pulumi_gcp/artifactregistry/__init__.py +1 -0
  5. pulumi_gcp/artifactregistry/get_locations.py +167 -0
  6. pulumi_gcp/bigquery/connection.py +12 -0
  7. pulumi_gcp/clouddeploy/_inputs.py +41 -1
  8. pulumi_gcp/clouddeploy/outputs.py +29 -1
  9. pulumi_gcp/cloudfunctionsv2/function.py +2 -0
  10. pulumi_gcp/cloudidentity/__init__.py +1 -0
  11. pulumi_gcp/cloudidentity/get_group_memberships.py +12 -0
  12. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +93 -0
  13. pulumi_gcp/cloudidentity/outputs.py +131 -0
  14. pulumi_gcp/compute/_inputs.py +36 -30
  15. pulumi_gcp/compute/outputs.py +48 -38
  16. pulumi_gcp/compute/region_network_endpoint_group.py +8 -0
  17. pulumi_gcp/compute/subnetwork.py +82 -0
  18. pulumi_gcp/container/_inputs.py +15 -18
  19. pulumi_gcp/container/attached_cluster.py +14 -7
  20. pulumi_gcp/container/outputs.py +10 -12
  21. pulumi_gcp/discoveryengine/__init__.py +1 -0
  22. pulumi_gcp/discoveryengine/schema.py +524 -0
  23. pulumi_gcp/dns/_inputs.py +80 -76
  24. pulumi_gcp/dns/outputs.py +56 -52
  25. pulumi_gcp/managedkafka/_inputs.py +6 -6
  26. pulumi_gcp/managedkafka/cluster.py +7 -7
  27. pulumi_gcp/managedkafka/outputs.py +4 -4
  28. pulumi_gcp/managedkafka/topic.py +7 -7
  29. pulumi_gcp/parallelstore/instance.py +215 -15
  30. pulumi_gcp/pulumi-plugin.json +1 -1
  31. pulumi_gcp/securitycenter/__init__.py +2 -0
  32. pulumi_gcp/securitycenter/_inputs.py +186 -0
  33. pulumi_gcp/securitycenter/folder_notification_config.py +486 -0
  34. pulumi_gcp/securitycenter/outputs.py +118 -0
  35. pulumi_gcp/securitycenter/v2_folder_notification_config.py +575 -0
  36. pulumi_gcp/servicenetworking/connection.py +50 -3
  37. pulumi_gcp/sql/_inputs.py +20 -0
  38. pulumi_gcp/sql/outputs.py +36 -0
  39. pulumi_gcp/vertex/__init__.py +1 -0
  40. pulumi_gcp/vertex/_inputs.py +438 -0
  41. pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +1170 -0
  42. pulumi_gcp/vertex/outputs.py +393 -0
  43. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/METADATA +1 -1
  44. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/RECORD +46 -40
  45. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/WHEEL +1 -1
  46. {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,8 @@ class ConnectionArgs:
22
22
  network: pulumi.Input[str],
23
23
  reserved_peering_ranges: pulumi.Input[Sequence[pulumi.Input[str]]],
24
24
  service: pulumi.Input[str],
25
- deletion_policy: Optional[pulumi.Input[str]] = None):
25
+ deletion_policy: Optional[pulumi.Input[str]] = None,
26
+ update_on_creation_fail: Optional[pulumi.Input[bool]] = None):
26
27
  """
27
28
  The set of arguments for constructing a Connection resource.
28
29
  :param pulumi.Input[str] network: Name of VPC network connected with service producers using VPC peering.
@@ -32,12 +33,15 @@ class ConnectionArgs:
32
33
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
33
34
  service provider organization. For Google services that support this functionality it is
34
35
  'servicenetworking.googleapis.com'.
36
+ :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
35
37
  """
36
38
  pulumi.set(__self__, "network", network)
37
39
  pulumi.set(__self__, "reserved_peering_ranges", reserved_peering_ranges)
38
40
  pulumi.set(__self__, "service", service)
39
41
  if deletion_policy is not None:
40
42
  pulumi.set(__self__, "deletion_policy", deletion_policy)
43
+ if update_on_creation_fail is not None:
44
+ pulumi.set(__self__, "update_on_creation_fail", update_on_creation_fail)
41
45
 
42
46
  @property
43
47
  @pulumi.getter
@@ -88,6 +92,18 @@ class ConnectionArgs:
88
92
  def deletion_policy(self, value: Optional[pulumi.Input[str]]):
89
93
  pulumi.set(self, "deletion_policy", value)
90
94
 
95
+ @property
96
+ @pulumi.getter(name="updateOnCreationFail")
97
+ def update_on_creation_fail(self) -> Optional[pulumi.Input[bool]]:
98
+ """
99
+ When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
100
+ """
101
+ return pulumi.get(self, "update_on_creation_fail")
102
+
103
+ @update_on_creation_fail.setter
104
+ def update_on_creation_fail(self, value: Optional[pulumi.Input[bool]]):
105
+ pulumi.set(self, "update_on_creation_fail", value)
106
+
91
107
 
92
108
  @pulumi.input_type
93
109
  class _ConnectionState:
@@ -96,7 +112,8 @@ class _ConnectionState:
96
112
  network: Optional[pulumi.Input[str]] = None,
97
113
  peering: Optional[pulumi.Input[str]] = None,
98
114
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
99
- service: Optional[pulumi.Input[str]] = None):
115
+ service: Optional[pulumi.Input[str]] = None,
116
+ update_on_creation_fail: Optional[pulumi.Input[bool]] = None):
100
117
  """
101
118
  Input properties used for looking up and filtering Connection resources.
102
119
  :param pulumi.Input[str] network: Name of VPC network connected with service producers using VPC peering.
@@ -107,6 +124,7 @@ class _ConnectionState:
107
124
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
108
125
  service provider organization. For Google services that support this functionality it is
109
126
  'servicenetworking.googleapis.com'.
127
+ :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
110
128
  """
111
129
  if deletion_policy is not None:
112
130
  pulumi.set(__self__, "deletion_policy", deletion_policy)
@@ -118,6 +136,8 @@ class _ConnectionState:
118
136
  pulumi.set(__self__, "reserved_peering_ranges", reserved_peering_ranges)
119
137
  if service is not None:
120
138
  pulumi.set(__self__, "service", service)
139
+ if update_on_creation_fail is not None:
140
+ pulumi.set(__self__, "update_on_creation_fail", update_on_creation_fail)
121
141
 
122
142
  @property
123
143
  @pulumi.getter(name="deletionPolicy")
@@ -180,6 +200,18 @@ class _ConnectionState:
180
200
  def service(self, value: Optional[pulumi.Input[str]]):
181
201
  pulumi.set(self, "service", value)
182
202
 
203
+ @property
204
+ @pulumi.getter(name="updateOnCreationFail")
205
+ def update_on_creation_fail(self) -> Optional[pulumi.Input[bool]]:
206
+ """
207
+ When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
208
+ """
209
+ return pulumi.get(self, "update_on_creation_fail")
210
+
211
+ @update_on_creation_fail.setter
212
+ def update_on_creation_fail(self, value: Optional[pulumi.Input[bool]]):
213
+ pulumi.set(self, "update_on_creation_fail", value)
214
+
183
215
 
184
216
  class Connection(pulumi.CustomResource):
185
217
  @overload
@@ -190,6 +222,7 @@ class Connection(pulumi.CustomResource):
190
222
  network: Optional[pulumi.Input[str]] = None,
191
223
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
192
224
  service: Optional[pulumi.Input[str]] = None,
225
+ update_on_creation_fail: Optional[pulumi.Input[bool]] = None,
193
226
  __props__=None):
194
227
  """
195
228
  Manages a private VPC connection with a GCP service provider. For more information see
@@ -252,6 +285,7 @@ class Connection(pulumi.CustomResource):
252
285
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
253
286
  service provider organization. For Google services that support this functionality it is
254
287
  'servicenetworking.googleapis.com'.
288
+ :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
255
289
  """
256
290
  ...
257
291
  @overload
@@ -330,6 +364,7 @@ class Connection(pulumi.CustomResource):
330
364
  network: Optional[pulumi.Input[str]] = None,
331
365
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
332
366
  service: Optional[pulumi.Input[str]] = None,
367
+ update_on_creation_fail: Optional[pulumi.Input[bool]] = None,
333
368
  __props__=None):
334
369
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
335
370
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -349,6 +384,7 @@ class Connection(pulumi.CustomResource):
349
384
  if service is None and not opts.urn:
350
385
  raise TypeError("Missing required property 'service'")
351
386
  __props__.__dict__["service"] = service
387
+ __props__.__dict__["update_on_creation_fail"] = update_on_creation_fail
352
388
  __props__.__dict__["peering"] = None
353
389
  super(Connection, __self__).__init__(
354
390
  'gcp:servicenetworking/connection:Connection',
@@ -364,7 +400,8 @@ class Connection(pulumi.CustomResource):
364
400
  network: Optional[pulumi.Input[str]] = None,
365
401
  peering: Optional[pulumi.Input[str]] = None,
366
402
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
367
- service: Optional[pulumi.Input[str]] = None) -> 'Connection':
403
+ service: Optional[pulumi.Input[str]] = None,
404
+ update_on_creation_fail: Optional[pulumi.Input[bool]] = None) -> 'Connection':
368
405
  """
369
406
  Get an existing Connection resource's state with the given name, id, and optional extra
370
407
  properties used to qualify the lookup.
@@ -380,6 +417,7 @@ class Connection(pulumi.CustomResource):
380
417
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
381
418
  service provider organization. For Google services that support this functionality it is
382
419
  'servicenetworking.googleapis.com'.
420
+ :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
383
421
  """
384
422
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
385
423
 
@@ -390,6 +428,7 @@ class Connection(pulumi.CustomResource):
390
428
  __props__.__dict__["peering"] = peering
391
429
  __props__.__dict__["reserved_peering_ranges"] = reserved_peering_ranges
392
430
  __props__.__dict__["service"] = service
431
+ __props__.__dict__["update_on_creation_fail"] = update_on_creation_fail
393
432
  return Connection(resource_name, opts=opts, __props__=__props__)
394
433
 
395
434
  @property
@@ -433,3 +472,11 @@ class Connection(pulumi.CustomResource):
433
472
  """
434
473
  return pulumi.get(self, "service")
435
474
 
475
+ @property
476
+ @pulumi.getter(name="updateOnCreationFail")
477
+ def update_on_creation_fail(self) -> pulumi.Output[Optional[bool]]:
478
+ """
479
+ When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
480
+ """
481
+ return pulumi.get(self, "update_on_creation_fail")
482
+
pulumi_gcp/sql/_inputs.py CHANGED
@@ -1839,6 +1839,10 @@ if not MYPY:
1839
1839
  """
1840
1840
  Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in `ssl_mode`. It will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.
1841
1841
  """
1842
+ server_ca_mode: NotRequired[pulumi.Input[str]]
1843
+ """
1844
+ Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
1845
+ """
1842
1846
  ssl_mode: NotRequired[pulumi.Input[str]]
1843
1847
  """
1844
1848
  Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
@@ -1859,6 +1863,7 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1859
1863
  private_network: Optional[pulumi.Input[str]] = None,
1860
1864
  psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationPscConfigArgs']]]] = None,
1861
1865
  require_ssl: Optional[pulumi.Input[bool]] = None,
1866
+ server_ca_mode: Optional[pulumi.Input[str]] = None,
1862
1867
  ssl_mode: Optional[pulumi.Input[str]] = None):
1863
1868
  """
1864
1869
  :param pulumi.Input[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?.
@@ -1873,6 +1878,7 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1873
1878
  This setting can be updated, but it cannot be removed after it is set.
1874
1879
  :param pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationPscConfigArgs']]] psc_configs: PSC settings for a Cloud SQL instance.
1875
1880
  :param pulumi.Input[bool] require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in `ssl_mode`. It will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.
1881
+ :param pulumi.Input[str] server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
1876
1882
  :param pulumi.Input[str] ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
1877
1883
  * For PostgreSQL instances, the value pairs are listed in the [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1beta4/instances#ipconfiguration) for `ssl_mode` field.
1878
1884
  * For MySQL instances, use the same value pairs as the PostgreSQL instances.
@@ -1895,6 +1901,8 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1895
1901
  pulumi.log.warn("""require_ssl is deprecated: `require_ssl` will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.""")
1896
1902
  if require_ssl is not None:
1897
1903
  pulumi.set(__self__, "require_ssl", require_ssl)
1904
+ if server_ca_mode is not None:
1905
+ pulumi.set(__self__, "server_ca_mode", server_ca_mode)
1898
1906
  if ssl_mode is not None:
1899
1907
  pulumi.set(__self__, "ssl_mode", ssl_mode)
1900
1908
 
@@ -1986,6 +1994,18 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1986
1994
  def require_ssl(self, value: Optional[pulumi.Input[bool]]):
1987
1995
  pulumi.set(self, "require_ssl", value)
1988
1996
 
1997
+ @property
1998
+ @pulumi.getter(name="serverCaMode")
1999
+ def server_ca_mode(self) -> Optional[pulumi.Input[str]]:
2000
+ """
2001
+ Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
2002
+ """
2003
+ return pulumi.get(self, "server_ca_mode")
2004
+
2005
+ @server_ca_mode.setter
2006
+ def server_ca_mode(self, value: Optional[pulumi.Input[str]]):
2007
+ pulumi.set(self, "server_ca_mode", value)
2008
+
1989
2009
  @property
1990
2010
  @pulumi.getter(name="sslMode")
1991
2011
  def ssl_mode(self) -> Optional[pulumi.Input[str]]:
pulumi_gcp/sql/outputs.py CHANGED
@@ -1457,6 +1457,8 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
1457
1457
  suggest = "psc_configs"
1458
1458
  elif key == "requireSsl":
1459
1459
  suggest = "require_ssl"
1460
+ elif key == "serverCaMode":
1461
+ suggest = "server_ca_mode"
1460
1462
  elif key == "sslMode":
1461
1463
  suggest = "ssl_mode"
1462
1464
 
@@ -1479,6 +1481,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
1479
1481
  private_network: Optional[str] = None,
1480
1482
  psc_configs: Optional[Sequence['outputs.DatabaseInstanceSettingsIpConfigurationPscConfig']] = None,
1481
1483
  require_ssl: Optional[bool] = None,
1484
+ server_ca_mode: Optional[str] = None,
1482
1485
  ssl_mode: Optional[str] = None):
1483
1486
  """
1484
1487
  :param 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?.
@@ -1493,6 +1496,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
1493
1496
  This setting can be updated, but it cannot be removed after it is set.
1494
1497
  :param Sequence['DatabaseInstanceSettingsIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
1495
1498
  :param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in `ssl_mode`. It will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.
1499
+ :param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
1496
1500
  :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
1497
1501
  * For PostgreSQL instances, the value pairs are listed in the [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1beta4/instances#ipconfiguration) for `ssl_mode` field.
1498
1502
  * For MySQL instances, use the same value pairs as the PostgreSQL instances.
@@ -1512,6 +1516,8 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
1512
1516
  pulumi.set(__self__, "psc_configs", psc_configs)
1513
1517
  if require_ssl is not None:
1514
1518
  pulumi.set(__self__, "require_ssl", require_ssl)
1519
+ if server_ca_mode is not None:
1520
+ pulumi.set(__self__, "server_ca_mode", server_ca_mode)
1515
1521
  if ssl_mode is not None:
1516
1522
  pulumi.set(__self__, "ssl_mode", ssl_mode)
1517
1523
 
@@ -1575,6 +1581,14 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
1575
1581
  """
1576
1582
  return pulumi.get(self, "require_ssl")
1577
1583
 
1584
+ @property
1585
+ @pulumi.getter(name="serverCaMode")
1586
+ def server_ca_mode(self) -> Optional[str]:
1587
+ """
1588
+ Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
1589
+ """
1590
+ return pulumi.get(self, "server_ca_mode")
1591
+
1578
1592
  @property
1579
1593
  @pulumi.getter(name="sslMode")
1580
1594
  def ssl_mode(self) -> Optional[str]:
@@ -3159,6 +3173,7 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
3159
3173
  private_network: str,
3160
3174
  psc_configs: Sequence['outputs.GetDatabaseInstanceSettingIpConfigurationPscConfigResult'],
3161
3175
  require_ssl: bool,
3176
+ server_ca_mode: str,
3162
3177
  ssl_mode: str):
3163
3178
  """
3164
3179
  :param 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. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
@@ -3167,6 +3182,7 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
3167
3182
  :param str private_network: The VPC network from which the Cloud SQL instance is accessible for private IP. For example, projects/myProject/global/networks/default. Specifying a network enables private IP. At least ipv4_enabled must be enabled or a private_network must be configured. This setting can be updated, but it cannot be removed after it is set.
3168
3183
  :param Sequence['GetDatabaseInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
3169
3184
  :param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in ssl_mode if it has been set too.
3185
+ :param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted.
3170
3186
  :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
3171
3187
  """
3172
3188
  pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
@@ -3176,6 +3192,7 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
3176
3192
  pulumi.set(__self__, "private_network", private_network)
3177
3193
  pulumi.set(__self__, "psc_configs", psc_configs)
3178
3194
  pulumi.set(__self__, "require_ssl", require_ssl)
3195
+ pulumi.set(__self__, "server_ca_mode", server_ca_mode)
3179
3196
  pulumi.set(__self__, "ssl_mode", ssl_mode)
3180
3197
 
3181
3198
  @property
@@ -3231,6 +3248,14 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
3231
3248
  """
3232
3249
  return pulumi.get(self, "require_ssl")
3233
3250
 
3251
+ @property
3252
+ @pulumi.getter(name="serverCaMode")
3253
+ def server_ca_mode(self) -> str:
3254
+ """
3255
+ Specify how the server certificate's Certificate Authority is hosted.
3256
+ """
3257
+ return pulumi.get(self, "server_ca_mode")
3258
+
3234
3259
  @property
3235
3260
  @pulumi.getter(name="sslMode")
3236
3261
  def ssl_mode(self) -> str:
@@ -4662,6 +4687,7 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
4662
4687
  private_network: str,
4663
4688
  psc_configs: Sequence['outputs.GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigResult'],
4664
4689
  require_ssl: bool,
4690
+ server_ca_mode: str,
4665
4691
  ssl_mode: str):
4666
4692
  """
4667
4693
  :param 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. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
@@ -4670,6 +4696,7 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
4670
4696
  :param str private_network: The VPC network from which the Cloud SQL instance is accessible for private IP. For example, projects/myProject/global/networks/default. Specifying a network enables private IP. At least ipv4_enabled must be enabled or a private_network must be configured. This setting can be updated, but it cannot be removed after it is set.
4671
4697
  :param Sequence['GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
4672
4698
  :param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in ssl_mode if it has been set too.
4699
+ :param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted.
4673
4700
  :param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
4674
4701
  """
4675
4702
  pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
@@ -4679,6 +4706,7 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
4679
4706
  pulumi.set(__self__, "private_network", private_network)
4680
4707
  pulumi.set(__self__, "psc_configs", psc_configs)
4681
4708
  pulumi.set(__self__, "require_ssl", require_ssl)
4709
+ pulumi.set(__self__, "server_ca_mode", server_ca_mode)
4682
4710
  pulumi.set(__self__, "ssl_mode", ssl_mode)
4683
4711
 
4684
4712
  @property
@@ -4734,6 +4762,14 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
4734
4762
  """
4735
4763
  return pulumi.get(self, "require_ssl")
4736
4764
 
4765
+ @property
4766
+ @pulumi.getter(name="serverCaMode")
4767
+ def server_ca_mode(self) -> str:
4768
+ """
4769
+ Specify how the server certificate's Certificate Authority is hosted.
4770
+ """
4771
+ return pulumi.get(self, "server_ca_mode")
4772
+
4737
4773
  @property
4738
4774
  @pulumi.getter(name="sslMode")
4739
4775
  def ssl_mode(self) -> str:
@@ -26,6 +26,7 @@ from .ai_feature_store_iam_member import *
26
26
  from .ai_feature_store_iam_policy import *
27
27
  from .ai_index import *
28
28
  from .ai_index_endpoint import *
29
+ from .ai_index_endpoint_deployed_index import *
29
30
  from .ai_metadata_store import *
30
31
  from .ai_tensorboard import *
31
32
  from .get_ai_endpoint_iam_policy import *