pulumi-oci 2.14.0a1730198001__py3-none-any.whl → 2.15.0a1730374112__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 (36) hide show
  1. pulumi_oci/containerengine/addon.py +54 -7
  2. pulumi_oci/containerengine/get_addon.py +12 -1
  3. pulumi_oci/containerengine/outputs.py +9 -1
  4. pulumi_oci/core/instance_pool.py +7 -7
  5. pulumi_oci/datasafe/__init__.py +2 -0
  6. pulumi_oci/datasafe/_inputs.py +49 -0
  7. pulumi_oci/datasafe/get_database_security_config.py +307 -0
  8. pulumi_oci/datasafe/get_database_security_configs.py +342 -0
  9. pulumi_oci/datasafe/outputs.py +325 -0
  10. pulumi_oci/datascience/get_model.py +29 -4
  11. pulumi_oci/datascience/get_models.py +25 -5
  12. pulumi_oci/datascience/model.py +205 -4
  13. pulumi_oci/datascience/outputs.py +19 -1
  14. pulumi_oci/identity/domains_auth_token.py +68 -0
  15. pulumi_oci/identity/domains_customer_secret_key.py +56 -0
  16. pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
  17. pulumi_oci/identity/domains_smtp_credential.py +60 -0
  18. pulumi_oci/identity/get_domains_auth_token.py +15 -1
  19. pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
  20. pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
  21. pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
  22. pulumi_oci/identity/outputs.py +44 -0
  23. pulumi_oci/loadbalancer/listener.py +7 -7
  24. pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
  25. pulumi_oci/networkloadbalancer/get_listener.py +15 -1
  26. pulumi_oci/networkloadbalancer/listener.py +49 -0
  27. pulumi_oci/networkloadbalancer/outputs.py +13 -2
  28. pulumi_oci/pulumi-plugin.json +1 -1
  29. pulumi_oci/resourcescheduler/_inputs.py +24 -21
  30. pulumi_oci/resourcescheduler/get_schedules.py +6 -6
  31. pulumi_oci/resourcescheduler/outputs.py +18 -16
  32. pulumi_oci/resourcescheduler/schedule.py +14 -88
  33. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0a1730374112.dist-info}/METADATA +1 -1
  34. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0a1730374112.dist-info}/RECORD +36 -34
  35. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0a1730374112.dist-info}/WHEEL +0 -0
  36. {pulumi_oci-2.14.0a1730198001.dist-info → pulumi_oci-2.15.0a1730374112.dist-info}/top_level.txt +0 -0
@@ -25,13 +25,15 @@ class AddonArgs:
25
25
  cluster_id: pulumi.Input[str],
26
26
  remove_addon_resources_on_delete: pulumi.Input[bool],
27
27
  configurations: Optional[pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]]] = None,
28
+ override_existing: Optional[pulumi.Input[bool]] = None,
28
29
  version: Optional[pulumi.Input[str]] = None):
29
30
  """
30
31
  The set of arguments for constructing a Addon resource.
31
32
  :param pulumi.Input[str] addon_name: The name of the addon.
32
33
  :param pulumi.Input[str] cluster_id: The OCID of the cluster.
33
34
  :param pulumi.Input[bool] remove_addon_resources_on_delete: Whether to remove addon resource in deletion.
34
- :param pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]] configurations: (Updatable) Addon configuration details.
35
+ :param pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]] configurations: (Updatable) Addon configuration details
36
+ :param pulumi.Input[bool] override_existing: Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.
35
37
  :param pulumi.Input[str] version: (Updatable) The version of addon to be installed.
36
38
 
37
39
 
@@ -43,6 +45,8 @@ class AddonArgs:
43
45
  pulumi.set(__self__, "remove_addon_resources_on_delete", remove_addon_resources_on_delete)
44
46
  if configurations is not None:
45
47
  pulumi.set(__self__, "configurations", configurations)
48
+ if override_existing is not None:
49
+ pulumi.set(__self__, "override_existing", override_existing)
46
50
  if version is not None:
47
51
  pulumi.set(__self__, "version", version)
48
52
 
@@ -86,7 +90,7 @@ class AddonArgs:
86
90
  @pulumi.getter
87
91
  def configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]]]:
88
92
  """
89
- (Updatable) Addon configuration details.
93
+ (Updatable) Addon configuration details
90
94
  """
91
95
  return pulumi.get(self, "configurations")
92
96
 
@@ -94,6 +98,18 @@ class AddonArgs:
94
98
  def configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]]]):
95
99
  pulumi.set(self, "configurations", value)
96
100
 
101
+ @property
102
+ @pulumi.getter(name="overrideExisting")
103
+ def override_existing(self) -> Optional[pulumi.Input[bool]]:
104
+ """
105
+ Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.
106
+ """
107
+ return pulumi.get(self, "override_existing")
108
+
109
+ @override_existing.setter
110
+ def override_existing(self, value: Optional[pulumi.Input[bool]]):
111
+ pulumi.set(self, "override_existing", value)
112
+
97
113
  @property
98
114
  @pulumi.getter
99
115
  def version(self) -> Optional[pulumi.Input[str]]:
@@ -119,6 +135,7 @@ class _AddonState:
119
135
  cluster_id: Optional[pulumi.Input[str]] = None,
120
136
  configurations: Optional[pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]]] = None,
121
137
  current_installed_version: Optional[pulumi.Input[str]] = None,
138
+ override_existing: Optional[pulumi.Input[bool]] = None,
122
139
  remove_addon_resources_on_delete: Optional[pulumi.Input[bool]] = None,
123
140
  state: Optional[pulumi.Input[str]] = None,
124
141
  time_created: Optional[pulumi.Input[str]] = None,
@@ -128,8 +145,9 @@ class _AddonState:
128
145
  :param pulumi.Input[Sequence[pulumi.Input['AddonAddonErrorArgs']]] addon_errors: The error info of the addon.
129
146
  :param pulumi.Input[str] addon_name: The name of the addon.
130
147
  :param pulumi.Input[str] cluster_id: The OCID of the cluster.
131
- :param pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]] configurations: (Updatable) Addon configuration details.
148
+ :param pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]] configurations: (Updatable) Addon configuration details
132
149
  :param pulumi.Input[str] current_installed_version: current installed version of the addon
150
+ :param pulumi.Input[bool] override_existing: Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.
133
151
  :param pulumi.Input[bool] remove_addon_resources_on_delete: Whether to remove addon resource in deletion.
134
152
  :param pulumi.Input[str] state: The state of the addon.
135
153
  :param pulumi.Input[str] time_created: The time the cluster was created.
@@ -149,6 +167,8 @@ class _AddonState:
149
167
  pulumi.set(__self__, "configurations", configurations)
150
168
  if current_installed_version is not None:
151
169
  pulumi.set(__self__, "current_installed_version", current_installed_version)
170
+ if override_existing is not None:
171
+ pulumi.set(__self__, "override_existing", override_existing)
152
172
  if remove_addon_resources_on_delete is not None:
153
173
  pulumi.set(__self__, "remove_addon_resources_on_delete", remove_addon_resources_on_delete)
154
174
  if state is not None:
@@ -198,7 +218,7 @@ class _AddonState:
198
218
  @pulumi.getter
199
219
  def configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AddonConfigurationArgs']]]]:
200
220
  """
201
- (Updatable) Addon configuration details.
221
+ (Updatable) Addon configuration details
202
222
  """
203
223
  return pulumi.get(self, "configurations")
204
224
 
@@ -218,6 +238,18 @@ class _AddonState:
218
238
  def current_installed_version(self, value: Optional[pulumi.Input[str]]):
219
239
  pulumi.set(self, "current_installed_version", value)
220
240
 
241
+ @property
242
+ @pulumi.getter(name="overrideExisting")
243
+ def override_existing(self) -> Optional[pulumi.Input[bool]]:
244
+ """
245
+ Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.
246
+ """
247
+ return pulumi.get(self, "override_existing")
248
+
249
+ @override_existing.setter
250
+ def override_existing(self, value: Optional[pulumi.Input[bool]]):
251
+ pulumi.set(self, "override_existing", value)
252
+
221
253
  @property
222
254
  @pulumi.getter(name="removeAddonResourcesOnDelete")
223
255
  def remove_addon_resources_on_delete(self) -> Optional[pulumi.Input[bool]]:
@@ -279,6 +311,7 @@ class Addon(pulumi.CustomResource):
279
311
  addon_name: Optional[pulumi.Input[str]] = None,
280
312
  cluster_id: Optional[pulumi.Input[str]] = None,
281
313
  configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AddonConfigurationArgs', 'AddonConfigurationArgsDict']]]]] = None,
314
+ override_existing: Optional[pulumi.Input[bool]] = None,
282
315
  remove_addon_resources_on_delete: Optional[pulumi.Input[bool]] = None,
283
316
  version: Optional[pulumi.Input[str]] = None,
284
317
  __props__=None):
@@ -299,7 +332,8 @@ class Addon(pulumi.CustomResource):
299
332
  :param pulumi.ResourceOptions opts: Options for the resource.
300
333
  :param pulumi.Input[str] addon_name: The name of the addon.
301
334
  :param pulumi.Input[str] cluster_id: The OCID of the cluster.
302
- :param pulumi.Input[Sequence[pulumi.Input[Union['AddonConfigurationArgs', 'AddonConfigurationArgsDict']]]] configurations: (Updatable) Addon configuration details.
335
+ :param pulumi.Input[Sequence[pulumi.Input[Union['AddonConfigurationArgs', 'AddonConfigurationArgsDict']]]] configurations: (Updatable) Addon configuration details
336
+ :param pulumi.Input[bool] override_existing: Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.
303
337
  :param pulumi.Input[bool] remove_addon_resources_on_delete: Whether to remove addon resource in deletion.
304
338
  :param pulumi.Input[str] version: (Updatable) The version of addon to be installed.
305
339
 
@@ -344,6 +378,7 @@ class Addon(pulumi.CustomResource):
344
378
  addon_name: Optional[pulumi.Input[str]] = None,
345
379
  cluster_id: Optional[pulumi.Input[str]] = None,
346
380
  configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AddonConfigurationArgs', 'AddonConfigurationArgsDict']]]]] = None,
381
+ override_existing: Optional[pulumi.Input[bool]] = None,
347
382
  remove_addon_resources_on_delete: Optional[pulumi.Input[bool]] = None,
348
383
  version: Optional[pulumi.Input[str]] = None,
349
384
  __props__=None):
@@ -362,6 +397,7 @@ class Addon(pulumi.CustomResource):
362
397
  raise TypeError("Missing required property 'cluster_id'")
363
398
  __props__.__dict__["cluster_id"] = cluster_id
364
399
  __props__.__dict__["configurations"] = configurations
400
+ __props__.__dict__["override_existing"] = override_existing
365
401
  if remove_addon_resources_on_delete is None and not opts.urn:
366
402
  raise TypeError("Missing required property 'remove_addon_resources_on_delete'")
367
403
  __props__.__dict__["remove_addon_resources_on_delete"] = remove_addon_resources_on_delete
@@ -385,6 +421,7 @@ class Addon(pulumi.CustomResource):
385
421
  cluster_id: Optional[pulumi.Input[str]] = None,
386
422
  configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AddonConfigurationArgs', 'AddonConfigurationArgsDict']]]]] = None,
387
423
  current_installed_version: Optional[pulumi.Input[str]] = None,
424
+ override_existing: Optional[pulumi.Input[bool]] = None,
388
425
  remove_addon_resources_on_delete: Optional[pulumi.Input[bool]] = None,
389
426
  state: Optional[pulumi.Input[str]] = None,
390
427
  time_created: Optional[pulumi.Input[str]] = None,
@@ -399,8 +436,9 @@ class Addon(pulumi.CustomResource):
399
436
  :param pulumi.Input[Sequence[pulumi.Input[Union['AddonAddonErrorArgs', 'AddonAddonErrorArgsDict']]]] addon_errors: The error info of the addon.
400
437
  :param pulumi.Input[str] addon_name: The name of the addon.
401
438
  :param pulumi.Input[str] cluster_id: The OCID of the cluster.
402
- :param pulumi.Input[Sequence[pulumi.Input[Union['AddonConfigurationArgs', 'AddonConfigurationArgsDict']]]] configurations: (Updatable) Addon configuration details.
439
+ :param pulumi.Input[Sequence[pulumi.Input[Union['AddonConfigurationArgs', 'AddonConfigurationArgsDict']]]] configurations: (Updatable) Addon configuration details
403
440
  :param pulumi.Input[str] current_installed_version: current installed version of the addon
441
+ :param pulumi.Input[bool] override_existing: Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.
404
442
  :param pulumi.Input[bool] remove_addon_resources_on_delete: Whether to remove addon resource in deletion.
405
443
  :param pulumi.Input[str] state: The state of the addon.
406
444
  :param pulumi.Input[str] time_created: The time the cluster was created.
@@ -419,6 +457,7 @@ class Addon(pulumi.CustomResource):
419
457
  __props__.__dict__["cluster_id"] = cluster_id
420
458
  __props__.__dict__["configurations"] = configurations
421
459
  __props__.__dict__["current_installed_version"] = current_installed_version
460
+ __props__.__dict__["override_existing"] = override_existing
422
461
  __props__.__dict__["remove_addon_resources_on_delete"] = remove_addon_resources_on_delete
423
462
  __props__.__dict__["state"] = state
424
463
  __props__.__dict__["time_created"] = time_created
@@ -453,7 +492,7 @@ class Addon(pulumi.CustomResource):
453
492
  @pulumi.getter
454
493
  def configurations(self) -> pulumi.Output[Sequence['outputs.AddonConfiguration']]:
455
494
  """
456
- (Updatable) Addon configuration details.
495
+ (Updatable) Addon configuration details
457
496
  """
458
497
  return pulumi.get(self, "configurations")
459
498
 
@@ -465,6 +504,14 @@ class Addon(pulumi.CustomResource):
465
504
  """
466
505
  return pulumi.get(self, "current_installed_version")
467
506
 
507
+ @property
508
+ @pulumi.getter(name="overrideExisting")
509
+ def override_existing(self) -> pulumi.Output[Optional[bool]]:
510
+ """
511
+ Whether or not to override an existing addon installation. Defaults to false. If set to true, any existing addon installation would be overridden as per new installation details.
512
+ """
513
+ return pulumi.get(self, "override_existing")
514
+
468
515
  @property
469
516
  @pulumi.getter(name="removeAddonResourcesOnDelete")
470
517
  def remove_addon_resources_on_delete(self) -> pulumi.Output[bool]:
@@ -27,7 +27,7 @@ class GetAddonResult:
27
27
  """
28
28
  A collection of values returned by getAddon.
29
29
  """
30
- def __init__(__self__, addon_errors=None, addon_name=None, cluster_id=None, configurations=None, current_installed_version=None, id=None, remove_addon_resources_on_delete=None, state=None, time_created=None, version=None):
30
+ def __init__(__self__, addon_errors=None, addon_name=None, cluster_id=None, configurations=None, current_installed_version=None, id=None, override_existing=None, remove_addon_resources_on_delete=None, state=None, time_created=None, version=None):
31
31
  if addon_errors and not isinstance(addon_errors, list):
32
32
  raise TypeError("Expected argument 'addon_errors' to be a list")
33
33
  pulumi.set(__self__, "addon_errors", addon_errors)
@@ -46,6 +46,9 @@ class GetAddonResult:
46
46
  if id and not isinstance(id, str):
47
47
  raise TypeError("Expected argument 'id' to be a str")
48
48
  pulumi.set(__self__, "id", id)
49
+ if override_existing and not isinstance(override_existing, bool):
50
+ raise TypeError("Expected argument 'override_existing' to be a bool")
51
+ pulumi.set(__self__, "override_existing", override_existing)
49
52
  if remove_addon_resources_on_delete and not isinstance(remove_addon_resources_on_delete, bool):
50
53
  raise TypeError("Expected argument 'remove_addon_resources_on_delete' to be a bool")
51
54
  pulumi.set(__self__, "remove_addon_resources_on_delete", remove_addon_resources_on_delete)
@@ -101,6 +104,11 @@ class GetAddonResult:
101
104
  def id(self) -> str:
102
105
  return pulumi.get(self, "id")
103
106
 
107
+ @property
108
+ @pulumi.getter(name="overrideExisting")
109
+ def override_existing(self) -> bool:
110
+ return pulumi.get(self, "override_existing")
111
+
104
112
  @property
105
113
  @pulumi.getter(name="removeAddonResourcesOnDelete")
106
114
  def remove_addon_resources_on_delete(self) -> bool:
@@ -143,6 +151,7 @@ class AwaitableGetAddonResult(GetAddonResult):
143
151
  configurations=self.configurations,
144
152
  current_installed_version=self.current_installed_version,
145
153
  id=self.id,
154
+ override_existing=self.override_existing,
146
155
  remove_addon_resources_on_delete=self.remove_addon_resources_on_delete,
147
156
  state=self.state,
148
157
  time_created=self.time_created,
@@ -184,6 +193,7 @@ def get_addon(addon_name: Optional[str] = None,
184
193
  configurations=pulumi.get(__ret__, 'configurations'),
185
194
  current_installed_version=pulumi.get(__ret__, 'current_installed_version'),
186
195
  id=pulumi.get(__ret__, 'id'),
196
+ override_existing=pulumi.get(__ret__, 'override_existing'),
187
197
  remove_addon_resources_on_delete=pulumi.get(__ret__, 'remove_addon_resources_on_delete'),
188
198
  state=pulumi.get(__ret__, 'state'),
189
199
  time_created=pulumi.get(__ret__, 'time_created'),
@@ -222,6 +232,7 @@ def get_addon_output(addon_name: Optional[pulumi.Input[str]] = None,
222
232
  configurations=pulumi.get(__response__, 'configurations'),
223
233
  current_installed_version=pulumi.get(__response__, 'current_installed_version'),
224
234
  id=pulumi.get(__response__, 'id'),
235
+ override_existing=pulumi.get(__response__, 'override_existing'),
225
236
  remove_addon_resources_on_delete=pulumi.get(__response__, 'remove_addon_resources_on_delete'),
226
237
  state=pulumi.get(__response__, 'state'),
227
238
  time_created=pulumi.get(__response__, 'time_created'),
@@ -4290,7 +4290,8 @@ class GetAddonsAddonResult(dict):
4290
4290
  remove_addon_resources_on_delete: bool,
4291
4291
  state: str,
4292
4292
  time_created: str,
4293
- version: str):
4293
+ version: str,
4294
+ override_existing: Optional[bool] = None):
4294
4295
  """
4295
4296
  :param Sequence['GetAddonsAddonAddonErrorArgs'] addon_errors: The error info of the addon.
4296
4297
  :param str addon_name: The name of the addon.
@@ -4310,6 +4311,8 @@ class GetAddonsAddonResult(dict):
4310
4311
  pulumi.set(__self__, "state", state)
4311
4312
  pulumi.set(__self__, "time_created", time_created)
4312
4313
  pulumi.set(__self__, "version", version)
4314
+ if override_existing is not None:
4315
+ pulumi.set(__self__, "override_existing", override_existing)
4313
4316
 
4314
4317
  @property
4315
4318
  @pulumi.getter(name="addonErrors")
@@ -4380,6 +4383,11 @@ class GetAddonsAddonResult(dict):
4380
4383
  """
4381
4384
  return pulumi.get(self, "version")
4382
4385
 
4386
+ @property
4387
+ @pulumi.getter(name="overrideExisting")
4388
+ def override_existing(self) -> Optional[bool]:
4389
+ return pulumi.get(self, "override_existing")
4390
+
4383
4391
 
4384
4392
  @pulumi.output_type
4385
4393
  class GetAddonsAddonAddonErrorResult(dict):
@@ -45,7 +45,7 @@ class InstancePoolArgs:
45
45
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
46
46
  :param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
47
47
  :param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
48
- :param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool.
48
+ :param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.14.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
49
49
  :param pulumi.Input[str] state: (Updatable) The target state for the instance pool update operation (ignored at create time and should not be set). Could be set to RUNNING or STOPPED.
50
50
 
51
51
 
@@ -185,7 +185,7 @@ class InstancePoolArgs:
185
185
  @pulumi.getter(name="loadBalancers")
186
186
  def load_balancers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]]]:
187
187
  """
188
- The load balancers to attach to the instance pool.
188
+ The load balancers to attach to the instance pool. (Note: From 6.14.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
189
189
  """
190
190
  return pulumi.get(self, "load_balancers")
191
191
 
@@ -236,7 +236,7 @@ class _InstancePoolState:
236
236
  :param pulumi.Input[str] instance_configuration_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance configuration associated with the instance pool.
237
237
  :param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
238
238
  :param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
239
- :param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool.
239
+ :param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.14.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
240
240
  :param pulumi.Input[Sequence[pulumi.Input['InstancePoolPlacementConfigurationArgs']]] placement_configurations: (Updatable) The placement configurations for the instance pool. Provide one placement configuration for each availability domain.
241
241
 
242
242
  To use the instance pool with a regional subnet, provide a placement configuration for each availability domain, and include the regional subnet in each placement configuration.
@@ -375,7 +375,7 @@ class _InstancePoolState:
375
375
  @pulumi.getter(name="loadBalancers")
376
376
  def load_balancers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]]]:
377
377
  """
378
- The load balancers to attach to the instance pool.
378
+ The load balancers to attach to the instance pool. (Note: From 6.14.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
379
379
  """
380
380
  return pulumi.get(self, "load_balancers")
381
381
 
@@ -528,7 +528,7 @@ class InstancePool(pulumi.CustomResource):
528
528
  :param pulumi.Input[str] instance_configuration_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance configuration associated with the instance pool.
529
529
  :param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
530
530
  :param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
531
- :param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool.
531
+ :param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.14.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
532
532
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolPlacementConfigurationArgs', 'InstancePoolPlacementConfigurationArgsDict']]]] placement_configurations: (Updatable) The placement configurations for the instance pool. Provide one placement configuration for each availability domain.
533
533
 
534
534
  To use the instance pool with a regional subnet, provide a placement configuration for each availability domain, and include the regional subnet in each placement configuration.
@@ -703,7 +703,7 @@ class InstancePool(pulumi.CustomResource):
703
703
  :param pulumi.Input[str] instance_configuration_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance configuration associated with the instance pool.
704
704
  :param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
705
705
  :param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
706
- :param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool.
706
+ :param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.14.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
707
707
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolPlacementConfigurationArgs', 'InstancePoolPlacementConfigurationArgsDict']]]] placement_configurations: (Updatable) The placement configurations for the instance pool. Provide one placement configuration for each availability domain.
708
708
 
709
709
  To use the instance pool with a regional subnet, provide a placement configuration for each availability domain, and include the regional subnet in each placement configuration.
@@ -802,7 +802,7 @@ class InstancePool(pulumi.CustomResource):
802
802
  @pulumi.getter(name="loadBalancers")
803
803
  def load_balancers(self) -> pulumi.Output[Sequence['outputs.InstancePoolLoadBalancer']]:
804
804
  """
805
- The load balancers to attach to the instance pool.
805
+ The load balancers to attach to the instance pool. (Note: From 6.14.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
806
806
  """
807
807
  return pulumi.get(self, "load_balancers")
808
808
 
@@ -56,6 +56,8 @@ from .get_compatible_formats_for_sensitive_type import *
56
56
  from .get_data_safe_configuration import *
57
57
  from .get_data_safe_private_endpoint import *
58
58
  from .get_data_safe_private_endpoints import *
59
+ from .get_database_security_config import *
60
+ from .get_database_security_configs import *
59
61
  from .get_discovery_analytic import *
60
62
  from .get_discovery_analytics import *
61
63
  from .get_discovery_job import *
@@ -125,6 +125,8 @@ __all__ = [
125
125
  'GetAuditTrailsFilterArgsDict',
126
126
  'GetDataSafePrivateEndpointsFilterArgs',
127
127
  'GetDataSafePrivateEndpointsFilterArgsDict',
128
+ 'GetDatabaseSecurityConfigsFilterArgs',
129
+ 'GetDatabaseSecurityConfigsFilterArgsDict',
128
130
  'GetDiscoveryAnalyticsFilterArgs',
129
131
  'GetDiscoveryAnalyticsFilterArgsDict',
130
132
  'GetDiscoveryJobsResultsFilterArgs',
@@ -7368,6 +7370,53 @@ class GetDataSafePrivateEndpointsFilterArgs:
7368
7370
  pulumi.set(self, "regex", value)
7369
7371
 
7370
7372
 
7373
+ if not MYPY:
7374
+ class GetDatabaseSecurityConfigsFilterArgsDict(TypedDict):
7375
+ name: str
7376
+ values: Sequence[str]
7377
+ regex: NotRequired[bool]
7378
+ elif False:
7379
+ GetDatabaseSecurityConfigsFilterArgsDict: TypeAlias = Mapping[str, Any]
7380
+
7381
+ @pulumi.input_type
7382
+ class GetDatabaseSecurityConfigsFilterArgs:
7383
+ def __init__(__self__, *,
7384
+ name: str,
7385
+ values: Sequence[str],
7386
+ regex: Optional[bool] = None):
7387
+ pulumi.set(__self__, "name", name)
7388
+ pulumi.set(__self__, "values", values)
7389
+ if regex is not None:
7390
+ pulumi.set(__self__, "regex", regex)
7391
+
7392
+ @property
7393
+ @pulumi.getter
7394
+ def name(self) -> str:
7395
+ return pulumi.get(self, "name")
7396
+
7397
+ @name.setter
7398
+ def name(self, value: str):
7399
+ pulumi.set(self, "name", value)
7400
+
7401
+ @property
7402
+ @pulumi.getter
7403
+ def values(self) -> Sequence[str]:
7404
+ return pulumi.get(self, "values")
7405
+
7406
+ @values.setter
7407
+ def values(self, value: Sequence[str]):
7408
+ pulumi.set(self, "values", value)
7409
+
7410
+ @property
7411
+ @pulumi.getter
7412
+ def regex(self) -> Optional[bool]:
7413
+ return pulumi.get(self, "regex")
7414
+
7415
+ @regex.setter
7416
+ def regex(self, value: Optional[bool]):
7417
+ pulumi.set(self, "regex", value)
7418
+
7419
+
7371
7420
  if not MYPY:
7372
7421
  class GetDiscoveryAnalyticsFilterArgsDict(TypedDict):
7373
7422
  name: str