pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.15.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.
- pulumi_oci/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/_inputs.py +74 -0
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +165 -7
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +113 -4
- pulumi_oci/datascience/get_models.py +30 -5
- pulumi_oci/datascience/model.py +346 -5
- pulumi_oci/datascience/outputs.py +778 -1
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +24 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +65 -63
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.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):
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -347,6 +347,8 @@ __all__ = [
|
|
347
347
|
'VirtualCircuitCrossConnectMappingArgsDict',
|
348
348
|
'VirtualCircuitPublicPrefixArgs',
|
349
349
|
'VirtualCircuitPublicPrefixArgsDict',
|
350
|
+
'VirtualCircuitVirtualCircuitRedundancyMetadataArgs',
|
351
|
+
'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict',
|
350
352
|
'VirtualNetworkByoipv6cidrDetailArgs',
|
351
353
|
'VirtualNetworkByoipv6cidrDetailArgsDict',
|
352
354
|
'VnicAttachmentCreateVnicDetailsArgs',
|
@@ -17936,6 +17938,78 @@ class VirtualCircuitPublicPrefixArgs:
|
|
17936
17938
|
pulumi.set(self, "cidr_block", value)
|
17937
17939
|
|
17938
17940
|
|
17941
|
+
if not MYPY:
|
17942
|
+
class VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict(TypedDict):
|
17943
|
+
configured_redundancy_level: NotRequired[pulumi.Input[str]]
|
17944
|
+
"""
|
17945
|
+
The configured redundancy level of the virtual circuit
|
17946
|
+
"""
|
17947
|
+
ipv4bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
|
17948
|
+
"""
|
17949
|
+
IPV4 BGP redundancy status indicates if the configured redundancy level is met
|
17950
|
+
"""
|
17951
|
+
ipv6bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
|
17952
|
+
"""
|
17953
|
+
IPV6 BGP redundancy status indicates if the configured redundancy level is met
|
17954
|
+
"""
|
17955
|
+
elif False:
|
17956
|
+
VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict: TypeAlias = Mapping[str, Any]
|
17957
|
+
|
17958
|
+
@pulumi.input_type
|
17959
|
+
class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
17960
|
+
def __init__(__self__, *,
|
17961
|
+
configured_redundancy_level: Optional[pulumi.Input[str]] = None,
|
17962
|
+
ipv4bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None,
|
17963
|
+
ipv6bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None):
|
17964
|
+
"""
|
17965
|
+
:param pulumi.Input[str] configured_redundancy_level: The configured redundancy level of the virtual circuit
|
17966
|
+
:param pulumi.Input[str] ipv4bgp_session_redundancy_status: IPV4 BGP redundancy status indicates if the configured redundancy level is met
|
17967
|
+
:param pulumi.Input[str] ipv6bgp_session_redundancy_status: IPV6 BGP redundancy status indicates if the configured redundancy level is met
|
17968
|
+
"""
|
17969
|
+
if configured_redundancy_level is not None:
|
17970
|
+
pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
|
17971
|
+
if ipv4bgp_session_redundancy_status is not None:
|
17972
|
+
pulumi.set(__self__, "ipv4bgp_session_redundancy_status", ipv4bgp_session_redundancy_status)
|
17973
|
+
if ipv6bgp_session_redundancy_status is not None:
|
17974
|
+
pulumi.set(__self__, "ipv6bgp_session_redundancy_status", ipv6bgp_session_redundancy_status)
|
17975
|
+
|
17976
|
+
@property
|
17977
|
+
@pulumi.getter(name="configuredRedundancyLevel")
|
17978
|
+
def configured_redundancy_level(self) -> Optional[pulumi.Input[str]]:
|
17979
|
+
"""
|
17980
|
+
The configured redundancy level of the virtual circuit
|
17981
|
+
"""
|
17982
|
+
return pulumi.get(self, "configured_redundancy_level")
|
17983
|
+
|
17984
|
+
@configured_redundancy_level.setter
|
17985
|
+
def configured_redundancy_level(self, value: Optional[pulumi.Input[str]]):
|
17986
|
+
pulumi.set(self, "configured_redundancy_level", value)
|
17987
|
+
|
17988
|
+
@property
|
17989
|
+
@pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
|
17990
|
+
def ipv4bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
|
17991
|
+
"""
|
17992
|
+
IPV4 BGP redundancy status indicates if the configured redundancy level is met
|
17993
|
+
"""
|
17994
|
+
return pulumi.get(self, "ipv4bgp_session_redundancy_status")
|
17995
|
+
|
17996
|
+
@ipv4bgp_session_redundancy_status.setter
|
17997
|
+
def ipv4bgp_session_redundancy_status(self, value: Optional[pulumi.Input[str]]):
|
17998
|
+
pulumi.set(self, "ipv4bgp_session_redundancy_status", value)
|
17999
|
+
|
18000
|
+
@property
|
18001
|
+
@pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
|
18002
|
+
def ipv6bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
|
18003
|
+
"""
|
18004
|
+
IPV6 BGP redundancy status indicates if the configured redundancy level is met
|
18005
|
+
"""
|
18006
|
+
return pulumi.get(self, "ipv6bgp_session_redundancy_status")
|
18007
|
+
|
18008
|
+
@ipv6bgp_session_redundancy_status.setter
|
18009
|
+
def ipv6bgp_session_redundancy_status(self, value: Optional[pulumi.Input[str]]):
|
18010
|
+
pulumi.set(self, "ipv6bgp_session_redundancy_status", value)
|
18011
|
+
|
18012
|
+
|
17939
18013
|
if not MYPY:
|
17940
18014
|
class VirtualNetworkByoipv6cidrDetailArgsDict(TypedDict):
|
17941
18015
|
byoipv6range_id: pulumi.Input[str]
|
pulumi_oci/core/get_instance.py
CHANGED
@@ -450,7 +450,7 @@ class GetInstanceResult:
|
|
450
450
|
@pulumi.getter(name="securityAttributes")
|
451
451
|
def security_attributes(self) -> Mapping[str, str]:
|
452
452
|
"""
|
453
|
-
Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
453
|
+
Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
454
454
|
"""
|
455
455
|
return pulumi.get(self, "security_attributes")
|
456
456
|
|
@@ -27,7 +27,7 @@ class GetVirtualCircuitResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getVirtualCircuit.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, bandwidth_shape_name=None, bgp_admin_state=None, bgp_ipv6session_state=None, bgp_management=None, bgp_session_state=None, compartment_id=None, cross_connect_mappings=None, customer_asn=None, customer_bgp_asn=None, defined_tags=None, display_name=None, freeform_tags=None, gateway_id=None, id=None, ip_mtu=None, is_bfd_enabled=None, is_transport_mode=None, oracle_bgp_asn=None, provider_service_id=None, provider_service_key_name=None, provider_state=None, public_prefixes=None, reference_comment=None, region=None, routing_policies=None, service_type=None, state=None, time_created=None, type=None, virtual_circuit_id=None):
|
30
|
+
def __init__(__self__, bandwidth_shape_name=None, bgp_admin_state=None, bgp_ipv6session_state=None, bgp_management=None, bgp_session_state=None, compartment_id=None, cross_connect_mappings=None, customer_asn=None, customer_bgp_asn=None, defined_tags=None, display_name=None, freeform_tags=None, gateway_id=None, id=None, ip_mtu=None, is_bfd_enabled=None, is_transport_mode=None, oracle_bgp_asn=None, provider_service_id=None, provider_service_key_name=None, provider_state=None, public_prefixes=None, reference_comment=None, region=None, routing_policies=None, service_type=None, state=None, time_created=None, type=None, virtual_circuit_id=None, virtual_circuit_redundancy_metadatas=None):
|
31
31
|
if bandwidth_shape_name and not isinstance(bandwidth_shape_name, str):
|
32
32
|
raise TypeError("Expected argument 'bandwidth_shape_name' to be a str")
|
33
33
|
pulumi.set(__self__, "bandwidth_shape_name", bandwidth_shape_name)
|
@@ -118,6 +118,9 @@ class GetVirtualCircuitResult:
|
|
118
118
|
if virtual_circuit_id and not isinstance(virtual_circuit_id, str):
|
119
119
|
raise TypeError("Expected argument 'virtual_circuit_id' to be a str")
|
120
120
|
pulumi.set(__self__, "virtual_circuit_id", virtual_circuit_id)
|
121
|
+
if virtual_circuit_redundancy_metadatas and not isinstance(virtual_circuit_redundancy_metadatas, list):
|
122
|
+
raise TypeError("Expected argument 'virtual_circuit_redundancy_metadatas' to be a list")
|
123
|
+
pulumi.set(__self__, "virtual_circuit_redundancy_metadatas", virtual_circuit_redundancy_metadatas)
|
121
124
|
|
122
125
|
@property
|
123
126
|
@pulumi.getter(name="bandwidthShapeName")
|
@@ -358,6 +361,14 @@ class GetVirtualCircuitResult:
|
|
358
361
|
def virtual_circuit_id(self) -> str:
|
359
362
|
return pulumi.get(self, "virtual_circuit_id")
|
360
363
|
|
364
|
+
@property
|
365
|
+
@pulumi.getter(name="virtualCircuitRedundancyMetadatas")
|
366
|
+
def virtual_circuit_redundancy_metadatas(self) -> Sequence['outputs.GetVirtualCircuitVirtualCircuitRedundancyMetadataResult']:
|
367
|
+
"""
|
368
|
+
Redundancy level details of the virtual circuit
|
369
|
+
"""
|
370
|
+
return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
|
371
|
+
|
361
372
|
|
362
373
|
class AwaitableGetVirtualCircuitResult(GetVirtualCircuitResult):
|
363
374
|
# pylint: disable=using-constant-test
|
@@ -394,7 +405,8 @@ class AwaitableGetVirtualCircuitResult(GetVirtualCircuitResult):
|
|
394
405
|
state=self.state,
|
395
406
|
time_created=self.time_created,
|
396
407
|
type=self.type,
|
397
|
-
virtual_circuit_id=self.virtual_circuit_id
|
408
|
+
virtual_circuit_id=self.virtual_circuit_id,
|
409
|
+
virtual_circuit_redundancy_metadatas=self.virtual_circuit_redundancy_metadatas)
|
398
410
|
|
399
411
|
|
400
412
|
def get_virtual_circuit(virtual_circuit_id: Optional[str] = None,
|
@@ -451,7 +463,8 @@ def get_virtual_circuit(virtual_circuit_id: Optional[str] = None,
|
|
451
463
|
state=pulumi.get(__ret__, 'state'),
|
452
464
|
time_created=pulumi.get(__ret__, 'time_created'),
|
453
465
|
type=pulumi.get(__ret__, 'type'),
|
454
|
-
virtual_circuit_id=pulumi.get(__ret__, 'virtual_circuit_id')
|
466
|
+
virtual_circuit_id=pulumi.get(__ret__, 'virtual_circuit_id'),
|
467
|
+
virtual_circuit_redundancy_metadatas=pulumi.get(__ret__, 'virtual_circuit_redundancy_metadatas'))
|
455
468
|
def get_virtual_circuit_output(virtual_circuit_id: Optional[pulumi.Input[str]] = None,
|
456
469
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVirtualCircuitResult]:
|
457
470
|
"""
|
@@ -505,4 +518,5 @@ def get_virtual_circuit_output(virtual_circuit_id: Optional[pulumi.Input[str]] =
|
|
505
518
|
state=pulumi.get(__response__, 'state'),
|
506
519
|
time_created=pulumi.get(__response__, 'time_created'),
|
507
520
|
type=pulumi.get(__response__, 'type'),
|
508
|
-
virtual_circuit_id=pulumi.get(__response__, 'virtual_circuit_id')
|
521
|
+
virtual_circuit_id=pulumi.get(__response__, 'virtual_circuit_id'),
|
522
|
+
virtual_circuit_redundancy_metadatas=pulumi.get(__response__, 'virtual_circuit_redundancy_metadatas')))
|
pulumi_oci/core/instance.py
CHANGED
@@ -145,7 +145,7 @@ class InstanceArgs:
|
|
145
145
|
For more information about BIOS settings for bare metal instances, see [BIOS Settings for Bare Metal Instances](https://docs.cloud.oracle.com/iaas/Content/Compute/References/bios-settings.htm).
|
146
146
|
:param pulumi.Input['InstancePreemptibleInstanceConfigArgs'] preemptible_instance_config: Configuration options for preemptible instances.
|
147
147
|
:param pulumi.Input[bool] preserve_boot_volume: (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
|
148
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
148
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
149
149
|
:param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
150
150
|
|
151
151
|
You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
@@ -634,7 +634,7 @@ class InstanceArgs:
|
|
634
634
|
@pulumi.getter(name="securityAttributes")
|
635
635
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
636
636
|
"""
|
637
|
-
(Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
637
|
+
(Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
638
638
|
"""
|
639
639
|
return pulumi.get(self, "security_attributes")
|
640
640
|
|
@@ -869,7 +869,7 @@ class _InstanceState:
|
|
869
869
|
:param pulumi.Input[str] private_ip: The private IP address of instance VNIC. To set the private IP address, use the `private_ip` argument in create_vnic_details.
|
870
870
|
:param pulumi.Input[str] public_ip: The public IP address of instance VNIC (if enabled).
|
871
871
|
:param pulumi.Input[str] region: The region that contains the availability domain the instance is running in.
|
872
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
872
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
873
873
|
:param pulumi.Input[str] security_attributes_state: The lifecycle state of the `securityAttributes`
|
874
874
|
:param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
875
875
|
|
@@ -1460,7 +1460,7 @@ class _InstanceState:
|
|
1460
1460
|
@pulumi.getter(name="securityAttributes")
|
1461
1461
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1462
1462
|
"""
|
1463
|
-
(Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
1463
|
+
(Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
1464
1464
|
"""
|
1465
1465
|
return pulumi.get(self, "security_attributes")
|
1466
1466
|
|
@@ -1787,7 +1787,7 @@ class Instance(pulumi.CustomResource):
|
|
1787
1787
|
For more information about BIOS settings for bare metal instances, see [BIOS Settings for Bare Metal Instances](https://docs.cloud.oracle.com/iaas/Content/Compute/References/bios-settings.htm).
|
1788
1788
|
:param pulumi.Input[Union['InstancePreemptibleInstanceConfigArgs', 'InstancePreemptibleInstanceConfigArgsDict']] preemptible_instance_config: Configuration options for preemptible instances.
|
1789
1789
|
:param pulumi.Input[bool] preserve_boot_volume: (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
|
1790
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
1790
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
1791
1791
|
:param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
1792
1792
|
|
1793
1793
|
You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
@@ -2137,7 +2137,7 @@ class Instance(pulumi.CustomResource):
|
|
2137
2137
|
:param pulumi.Input[str] private_ip: The private IP address of instance VNIC. To set the private IP address, use the `private_ip` argument in create_vnic_details.
|
2138
2138
|
:param pulumi.Input[str] public_ip: The public IP address of instance VNIC (if enabled).
|
2139
2139
|
:param pulumi.Input[str] region: The region that contains the availability domain the instance is running in.
|
2140
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
2140
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
2141
2141
|
:param pulumi.Input[str] security_attributes_state: The lifecycle state of the `securityAttributes`
|
2142
2142
|
:param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
2143
2143
|
|
@@ -2543,7 +2543,7 @@ class Instance(pulumi.CustomResource):
|
|
2543
2543
|
@pulumi.getter(name="securityAttributes")
|
2544
2544
|
def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
|
2545
2545
|
"""
|
2546
|
-
(Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR
|
2546
|
+
(Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
2547
2547
|
"""
|
2548
2548
|
return pulumi.get(self, "security_attributes")
|
2549
2549
|
|
pulumi_oci/core/instance_pool.py
CHANGED
@@ -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
|
|