pulumi-oci 2.21.0a1736852431__py3-none-any.whl → 2.22.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. pulumi_oci/__init__.py +8 -0
  2. pulumi_oci/bigdataservice/bds_instance_api_key.py +0 -14
  3. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +0 -2
  4. pulumi_oci/bigdataservice/outputs.py +0 -4
  5. pulumi_oci/core/__init__.py +3 -0
  6. pulumi_oci/core/_inputs.py +414 -21
  7. pulumi_oci/core/byoasn.py +595 -0
  8. pulumi_oci/core/get_byoasn.py +268 -0
  9. pulumi_oci/core/get_byoasns.py +131 -0
  10. pulumi_oci/core/get_byoip_range.py +15 -1
  11. pulumi_oci/core/get_instance.py +15 -1
  12. pulumi_oci/core/get_ipv6.py +15 -1
  13. pulumi_oci/core/get_private_ip.py +12 -1
  14. pulumi_oci/core/get_virtual_circuit.py +1 -1
  15. pulumi_oci/core/get_vnic.py +12 -1
  16. pulumi_oci/core/instance.py +54 -7
  17. pulumi_oci/core/instance_configuration.py +16 -0
  18. pulumi_oci/core/ipv6.py +52 -3
  19. pulumi_oci/core/outputs.py +1019 -52
  20. pulumi_oci/core/private_ip.py +49 -0
  21. pulumi_oci/core/virtual_circuit.py +4 -4
  22. pulumi_oci/database/_inputs.py +696 -89
  23. pulumi_oci/database/autonomous_database.py +98 -4
  24. pulumi_oci/database/autonomous_exadata_infrastructure.py +0 -2
  25. pulumi_oci/database/autonomous_vm_cluster.py +0 -2
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +0 -2
  27. pulumi_oci/database/data_guard_association.py +75 -28
  28. pulumi_oci/database/database.py +147 -32
  29. pulumi_oci/database/database_upgrade.py +28 -0
  30. pulumi_oci/database/exadata_infrastructure.py +0 -2
  31. pulumi_oci/database/get_autonomous_database.py +30 -2
  32. pulumi_oci/database/get_data_guard_association.py +12 -1
  33. pulumi_oci/database/get_database.py +40 -1
  34. pulumi_oci/database/outputs.py +994 -114
  35. pulumi_oci/networkloadbalancer/__init__.py +1 -0
  36. pulumi_oci/networkloadbalancer/_inputs.py +6 -6
  37. pulumi_oci/networkloadbalancer/backend.py +7 -7
  38. pulumi_oci/networkloadbalancer/backend_set.py +105 -7
  39. pulumi_oci/networkloadbalancer/get_backend_set.py +30 -2
  40. pulumi_oci/networkloadbalancer/get_network_load_balancer_backend_set_backend_operational_status.py +165 -0
  41. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -7
  42. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +105 -7
  43. pulumi_oci/networkloadbalancer/outputs.py +34 -12
  44. pulumi_oci/opensearch/_inputs.py +312 -0
  45. pulumi_oci/opensearch/cluster.py +289 -104
  46. pulumi_oci/opensearch/get_opensearch_cluster.py +84 -2
  47. pulumi_oci/opensearch/get_opensearch_clusters.py +1 -1
  48. pulumi_oci/opensearch/outputs.py +678 -0
  49. pulumi_oci/pulumi-plugin.json +1 -1
  50. {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/METADATA +7 -1
  51. {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/RECORD +53 -49
  52. {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/WHEEL +0 -0
  53. {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,7 @@ class PrivateIpArgs:
24
24
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
25
25
  hostname_label: Optional[pulumi.Input[str]] = None,
26
26
  ip_address: Optional[pulumi.Input[str]] = None,
27
+ route_table_id: Optional[pulumi.Input[str]] = None,
27
28
  vlan_id: Optional[pulumi.Input[str]] = None,
28
29
  vnic_id: Optional[pulumi.Input[str]] = None):
29
30
  """
@@ -37,6 +38,7 @@ class PrivateIpArgs:
37
38
 
38
39
  Example: `bminstance1`
39
40
  :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
41
+ :param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
40
42
  :param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
41
43
 
42
44
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN from which the private IP is to be drawn. The IP address, *if supplied*, must be valid for the given VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
@@ -56,6 +58,8 @@ class PrivateIpArgs:
56
58
  pulumi.set(__self__, "hostname_label", hostname_label)
57
59
  if ip_address is not None:
58
60
  pulumi.set(__self__, "ip_address", ip_address)
61
+ if route_table_id is not None:
62
+ pulumi.set(__self__, "route_table_id", route_table_id)
59
63
  if vlan_id is not None:
60
64
  pulumi.set(__self__, "vlan_id", vlan_id)
61
65
  if vnic_id is not None:
@@ -125,6 +129,18 @@ class PrivateIpArgs:
125
129
  def ip_address(self, value: Optional[pulumi.Input[str]]):
126
130
  pulumi.set(self, "ip_address", value)
127
131
 
132
+ @property
133
+ @pulumi.getter(name="routeTableId")
134
+ def route_table_id(self) -> Optional[pulumi.Input[str]]:
135
+ """
136
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
137
+ """
138
+ return pulumi.get(self, "route_table_id")
139
+
140
+ @route_table_id.setter
141
+ def route_table_id(self, value: Optional[pulumi.Input[str]]):
142
+ pulumi.set(self, "route_table_id", value)
143
+
128
144
  @property
129
145
  @pulumi.getter(name="vlanId")
130
146
  def vlan_id(self) -> Optional[pulumi.Input[str]]:
@@ -168,6 +184,7 @@ class _PrivateIpState:
168
184
  ip_address: Optional[pulumi.Input[str]] = None,
169
185
  is_primary: Optional[pulumi.Input[bool]] = None,
170
186
  is_reserved: Optional[pulumi.Input[bool]] = None,
187
+ route_table_id: Optional[pulumi.Input[str]] = None,
171
188
  subnet_id: Optional[pulumi.Input[str]] = None,
172
189
  time_created: Optional[pulumi.Input[str]] = None,
173
190
  vlan_id: Optional[pulumi.Input[str]] = None,
@@ -187,6 +204,7 @@ class _PrivateIpState:
187
204
  :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
188
205
  :param pulumi.Input[bool] is_primary: Whether this private IP is the primary one on the VNIC. Primary private IPs are unassigned and deleted automatically when the VNIC is terminated. Example: `true`
189
206
  :param pulumi.Input[bool] is_reserved: true if the IP is reserved and can exist detached from vnic
207
+ :param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
190
208
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the VNIC is in.
191
209
  :param pulumi.Input[str] time_created: The date and time the private IP was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
192
210
  :param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
@@ -216,6 +234,8 @@ class _PrivateIpState:
216
234
  pulumi.set(__self__, "is_primary", is_primary)
217
235
  if is_reserved is not None:
218
236
  pulumi.set(__self__, "is_reserved", is_reserved)
237
+ if route_table_id is not None:
238
+ pulumi.set(__self__, "route_table_id", route_table_id)
219
239
  if subnet_id is not None:
220
240
  pulumi.set(__self__, "subnet_id", subnet_id)
221
241
  if time_created is not None:
@@ -337,6 +357,18 @@ class _PrivateIpState:
337
357
  def is_reserved(self, value: Optional[pulumi.Input[bool]]):
338
358
  pulumi.set(self, "is_reserved", value)
339
359
 
360
+ @property
361
+ @pulumi.getter(name="routeTableId")
362
+ def route_table_id(self) -> Optional[pulumi.Input[str]]:
363
+ """
364
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
365
+ """
366
+ return pulumi.get(self, "route_table_id")
367
+
368
+ @route_table_id.setter
369
+ def route_table_id(self, value: Optional[pulumi.Input[str]]):
370
+ pulumi.set(self, "route_table_id", value)
371
+
340
372
  @property
341
373
  @pulumi.getter(name="subnetId")
342
374
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
@@ -402,6 +434,7 @@ class PrivateIp(pulumi.CustomResource):
402
434
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
403
435
  hostname_label: Optional[pulumi.Input[str]] = None,
404
436
  ip_address: Optional[pulumi.Input[str]] = None,
437
+ route_table_id: Optional[pulumi.Input[str]] = None,
405
438
  vlan_id: Optional[pulumi.Input[str]] = None,
406
439
  vnic_id: Optional[pulumi.Input[str]] = None,
407
440
  __props__=None):
@@ -428,6 +461,7 @@ class PrivateIp(pulumi.CustomResource):
428
461
  },
429
462
  hostname_label=private_ip_hostname_label,
430
463
  ip_address=private_ip_ip_address,
464
+ route_table_id=test_route_table["id"],
431
465
  vlan_id=test_vlan["id"],
432
466
  vnic_id=test_vnic_attachment["vnicId"])
433
467
  ```
@@ -451,6 +485,7 @@ class PrivateIp(pulumi.CustomResource):
451
485
 
452
486
  Example: `bminstance1`
453
487
  :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
488
+ :param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
454
489
  :param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
455
490
 
456
491
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN from which the private IP is to be drawn. The IP address, *if supplied*, must be valid for the given VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
@@ -489,6 +524,7 @@ class PrivateIp(pulumi.CustomResource):
489
524
  },
490
525
  hostname_label=private_ip_hostname_label,
491
526
  ip_address=private_ip_ip_address,
527
+ route_table_id=test_route_table["id"],
492
528
  vlan_id=test_vlan["id"],
493
529
  vnic_id=test_vnic_attachment["vnicId"])
494
530
  ```
@@ -521,6 +557,7 @@ class PrivateIp(pulumi.CustomResource):
521
557
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
522
558
  hostname_label: Optional[pulumi.Input[str]] = None,
523
559
  ip_address: Optional[pulumi.Input[str]] = None,
560
+ route_table_id: Optional[pulumi.Input[str]] = None,
524
561
  vlan_id: Optional[pulumi.Input[str]] = None,
525
562
  vnic_id: Optional[pulumi.Input[str]] = None,
526
563
  __props__=None):
@@ -537,6 +574,7 @@ class PrivateIp(pulumi.CustomResource):
537
574
  __props__.__dict__["freeform_tags"] = freeform_tags
538
575
  __props__.__dict__["hostname_label"] = hostname_label
539
576
  __props__.__dict__["ip_address"] = ip_address
577
+ __props__.__dict__["route_table_id"] = route_table_id
540
578
  __props__.__dict__["vlan_id"] = vlan_id
541
579
  __props__.__dict__["vnic_id"] = vnic_id
542
580
  __props__.__dict__["availability_domain"] = None
@@ -564,6 +602,7 @@ class PrivateIp(pulumi.CustomResource):
564
602
  ip_address: Optional[pulumi.Input[str]] = None,
565
603
  is_primary: Optional[pulumi.Input[bool]] = None,
566
604
  is_reserved: Optional[pulumi.Input[bool]] = None,
605
+ route_table_id: Optional[pulumi.Input[str]] = None,
567
606
  subnet_id: Optional[pulumi.Input[str]] = None,
568
607
  time_created: Optional[pulumi.Input[str]] = None,
569
608
  vlan_id: Optional[pulumi.Input[str]] = None,
@@ -588,6 +627,7 @@ class PrivateIp(pulumi.CustomResource):
588
627
  :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
589
628
  :param pulumi.Input[bool] is_primary: Whether this private IP is the primary one on the VNIC. Primary private IPs are unassigned and deleted automatically when the VNIC is terminated. Example: `true`
590
629
  :param pulumi.Input[bool] is_reserved: true if the IP is reserved and can exist detached from vnic
630
+ :param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
591
631
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the VNIC is in.
592
632
  :param pulumi.Input[str] time_created: The date and time the private IP was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
593
633
  :param pulumi.Input[str] vlan_id: Use this attribute only with the Oracle Cloud VMware Solution.
@@ -612,6 +652,7 @@ class PrivateIp(pulumi.CustomResource):
612
652
  __props__.__dict__["ip_address"] = ip_address
613
653
  __props__.__dict__["is_primary"] = is_primary
614
654
  __props__.__dict__["is_reserved"] = is_reserved
655
+ __props__.__dict__["route_table_id"] = route_table_id
615
656
  __props__.__dict__["subnet_id"] = subnet_id
616
657
  __props__.__dict__["time_created"] = time_created
617
658
  __props__.__dict__["vlan_id"] = vlan_id
@@ -694,6 +735,14 @@ class PrivateIp(pulumi.CustomResource):
694
735
  """
695
736
  return pulumi.get(self, "is_reserved")
696
737
 
738
+ @property
739
+ @pulumi.getter(name="routeTableId")
740
+ def route_table_id(self) -> pulumi.Output[Optional[str]]:
741
+ """
742
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
743
+ """
744
+ return pulumi.get(self, "route_table_id")
745
+
697
746
  @property
698
747
  @pulumi.getter(name="subnetId")
699
748
  def subnet_id(self) -> pulumi.Output[str]:
@@ -406,7 +406,7 @@ class _VirtualCircuitState:
406
406
 
407
407
  ** IMPORTANT **
408
408
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
409
- :param pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]] virtual_circuit_redundancy_metadatas: Redundancy level details of the virtual circuit
409
+ :param pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]] virtual_circuit_redundancy_metadatas: This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
410
410
  """
411
411
  if bandwidth_shape_name is not None:
412
412
  pulumi.set(__self__, "bandwidth_shape_name", bandwidth_shape_name)
@@ -819,7 +819,7 @@ class _VirtualCircuitState:
819
819
  @pulumi.getter(name="virtualCircuitRedundancyMetadatas")
820
820
  def virtual_circuit_redundancy_metadatas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]]]:
821
821
  """
822
- Redundancy level details of the virtual circuit
822
+ This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
823
823
  """
824
824
  return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
825
825
 
@@ -1189,7 +1189,7 @@ class VirtualCircuit(pulumi.CustomResource):
1189
1189
 
1190
1190
  ** IMPORTANT **
1191
1191
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1192
- :param pulumi.Input[Sequence[pulumi.Input[Union['VirtualCircuitVirtualCircuitRedundancyMetadataArgs', 'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict']]]] virtual_circuit_redundancy_metadatas: Redundancy level details of the virtual circuit
1192
+ :param pulumi.Input[Sequence[pulumi.Input[Union['VirtualCircuitVirtualCircuitRedundancyMetadataArgs', 'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict']]]] virtual_circuit_redundancy_metadatas: This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
1193
1193
  """
1194
1194
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1195
1195
 
@@ -1460,7 +1460,7 @@ class VirtualCircuit(pulumi.CustomResource):
1460
1460
  @pulumi.getter(name="virtualCircuitRedundancyMetadatas")
1461
1461
  def virtual_circuit_redundancy_metadatas(self) -> pulumi.Output[Sequence['outputs.VirtualCircuitVirtualCircuitRedundancyMetadata']]:
1462
1462
  """
1463
- Redundancy level details of the virtual circuit
1463
+ This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
1464
1464
  """
1465
1465
  return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
1466
1466