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
@@ -100,7 +100,7 @@ class BackendSetBackend(dict):
100
100
  :param bool is_offline: (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
101
101
  :param str name: (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`, or `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>:443` or `10.0.0.3:0`
102
102
  :param str target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
103
- :param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
103
+ :param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
104
104
  """
105
105
  pulumi.set(__self__, "port", port)
106
106
  if ip_address is not None:
@@ -178,7 +178,7 @@ class BackendSetBackend(dict):
178
178
  @pulumi.getter
179
179
  def weight(self) -> Optional[int]:
180
180
  """
181
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
181
+ (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
182
182
  """
183
183
  return pulumi.get(self, "weight")
184
184
 
@@ -615,7 +615,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
615
615
  :param bool is_offline: (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
616
616
  :param str name: (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`, or `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>:443` or `10.0.0.3:0`
617
617
  :param str target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
618
- :param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
618
+ :param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
619
619
  """
620
620
  pulumi.set(__self__, "port", port)
621
621
  if ip_address is not None:
@@ -693,7 +693,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
693
693
  @pulumi.getter
694
694
  def weight(self) -> Optional[int]:
695
695
  """
696
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
696
+ (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
697
697
  """
698
698
  return pulumi.get(self, "weight")
699
699
 
@@ -1002,7 +1002,7 @@ class GetBackendSetBackendResult(dict):
1002
1002
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
1003
1003
  :param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
1004
1004
  :param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
1005
- :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1005
+ :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about network load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
1006
1006
  """
1007
1007
  pulumi.set(__self__, "ip_address", ip_address)
1008
1008
  pulumi.set(__self__, "is_backup", is_backup)
@@ -1073,7 +1073,7 @@ class GetBackendSetBackendResult(dict):
1073
1073
  @pulumi.getter
1074
1074
  def weight(self) -> int:
1075
1075
  """
1076
- The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1076
+ The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about network load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
1077
1077
  """
1078
1078
  return pulumi.get(self, "weight")
1079
1079
 
@@ -1283,38 +1283,52 @@ class GetBackendSetsBackendSetCollectionResult(dict):
1283
1283
  @pulumi.output_type
1284
1284
  class GetBackendSetsBackendSetCollectionItemResult(dict):
1285
1285
  def __init__(__self__, *,
1286
+ are_operationally_active_backends_preferred: bool,
1286
1287
  backends: Sequence['outputs.GetBackendSetsBackendSetCollectionItemBackendResult'],
1287
1288
  health_checkers: Sequence['outputs.GetBackendSetsBackendSetCollectionItemHealthCheckerResult'],
1288
1289
  id: str,
1289
1290
  ip_version: str,
1290
1291
  is_fail_open: bool,
1291
1292
  is_instant_failover_enabled: bool,
1293
+ is_instant_failover_tcp_reset_enabled: bool,
1292
1294
  is_preserve_source: bool,
1293
1295
  name: str,
1294
1296
  network_load_balancer_id: str,
1295
1297
  policy: str):
1296
1298
  """
1299
+ :param bool are_operationally_active_backends_preferred: If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
1297
1300
  :param Sequence['GetBackendSetsBackendSetCollectionItemBackendArgs'] backends: An array of backends.
1298
- :param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
1301
+ :param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-management.htm).
1299
1302
  :param str ip_version: IP version associated with the backend set.
1300
1303
  :param bool is_fail_open: If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
1301
1304
  :param bool is_instant_failover_enabled: If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
1305
+ :param bool is_instant_failover_tcp_reset_enabled: If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
1302
1306
  :param bool is_preserve_source: If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
1303
1307
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
1304
1308
  :param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
1305
1309
  :param str policy: The network load balancer policy for the backend set. Example: `FIVE_TUPLE`
1306
1310
  """
1311
+ pulumi.set(__self__, "are_operationally_active_backends_preferred", are_operationally_active_backends_preferred)
1307
1312
  pulumi.set(__self__, "backends", backends)
1308
1313
  pulumi.set(__self__, "health_checkers", health_checkers)
1309
1314
  pulumi.set(__self__, "id", id)
1310
1315
  pulumi.set(__self__, "ip_version", ip_version)
1311
1316
  pulumi.set(__self__, "is_fail_open", is_fail_open)
1312
1317
  pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
1318
+ pulumi.set(__self__, "is_instant_failover_tcp_reset_enabled", is_instant_failover_tcp_reset_enabled)
1313
1319
  pulumi.set(__self__, "is_preserve_source", is_preserve_source)
1314
1320
  pulumi.set(__self__, "name", name)
1315
1321
  pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
1316
1322
  pulumi.set(__self__, "policy", policy)
1317
1323
 
1324
+ @property
1325
+ @pulumi.getter(name="areOperationallyActiveBackendsPreferred")
1326
+ def are_operationally_active_backends_preferred(self) -> bool:
1327
+ """
1328
+ If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
1329
+ """
1330
+ return pulumi.get(self, "are_operationally_active_backends_preferred")
1331
+
1318
1332
  @property
1319
1333
  @pulumi.getter
1320
1334
  def backends(self) -> Sequence['outputs.GetBackendSetsBackendSetCollectionItemBackendResult']:
@@ -1327,7 +1341,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
1327
1341
  @pulumi.getter(name="healthCheckers")
1328
1342
  def health_checkers(self) -> Sequence['outputs.GetBackendSetsBackendSetCollectionItemHealthCheckerResult']:
1329
1343
  """
1330
- The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
1344
+ The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-management.htm).
1331
1345
  """
1332
1346
  return pulumi.get(self, "health_checkers")
1333
1347
 
@@ -1360,6 +1374,14 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
1360
1374
  """
1361
1375
  return pulumi.get(self, "is_instant_failover_enabled")
1362
1376
 
1377
+ @property
1378
+ @pulumi.getter(name="isInstantFailoverTcpResetEnabled")
1379
+ def is_instant_failover_tcp_reset_enabled(self) -> bool:
1380
+ """
1381
+ If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
1382
+ """
1383
+ return pulumi.get(self, "is_instant_failover_tcp_reset_enabled")
1384
+
1363
1385
  @property
1364
1386
  @pulumi.getter(name="isPreserveSource")
1365
1387
  def is_preserve_source(self) -> bool:
@@ -1412,7 +1434,7 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
1412
1434
  :param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
1413
1435
  :param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
1414
1436
  :param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
1415
- :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1437
+ :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about network load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
1416
1438
  """
1417
1439
  pulumi.set(__self__, "ip_address", ip_address)
1418
1440
  pulumi.set(__self__, "is_backup", is_backup)
@@ -1483,7 +1505,7 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
1483
1505
  @pulumi.getter
1484
1506
  def weight(self) -> int:
1485
1507
  """
1486
- The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
1508
+ The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about network load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
1487
1509
  """
1488
1510
  return pulumi.get(self, "weight")
1489
1511
 
@@ -1747,7 +1769,7 @@ class GetBackendsBackendCollectionItemResult(dict):
1747
1769
  :param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
1748
1770
  :param int port: The communication port for the backend server. Example: `8080`
1749
1771
  :param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
1750
- :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
1772
+ :param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about network load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
1751
1773
  """
1752
1774
  pulumi.set(__self__, "backend_set_name", backend_set_name)
1753
1775
  pulumi.set(__self__, "id", id)
@@ -1842,7 +1864,7 @@ class GetBackendsBackendCollectionItemResult(dict):
1842
1864
  @pulumi.getter
1843
1865
  def weight(self) -> int:
1844
1866
  """
1845
- The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
1867
+ The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about network load balancing policies, see [Network Load Balancer Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#Policies). Example: `3`
1846
1868
  """
1847
1869
  return pulumi.get(self, "weight")
1848
1870
 
@@ -15,6 +15,14 @@ else:
15
15
  from .. import _utilities
16
16
 
17
17
  __all__ = [
18
+ 'ClusterMaintenanceDetailsArgs',
19
+ 'ClusterMaintenanceDetailsArgsDict',
20
+ 'ClusterOutboundClusterConfigArgs',
21
+ 'ClusterOutboundClusterConfigArgsDict',
22
+ 'ClusterOutboundClusterConfigOutboundClusterArgs',
23
+ 'ClusterOutboundClusterConfigOutboundClusterArgsDict',
24
+ 'ClusterReverseConnectionEndpointArgs',
25
+ 'ClusterReverseConnectionEndpointArgsDict',
18
26
  'GetOpensearchClustersFilterArgs',
19
27
  'GetOpensearchClustersFilterArgsDict',
20
28
  'GetOpensearchVersionsFilterArgs',
@@ -23,6 +31,310 @@ __all__ = [
23
31
 
24
32
  MYPY = False
25
33
 
34
+ if not MYPY:
35
+ class ClusterMaintenanceDetailsArgsDict(TypedDict):
36
+ end_time: NotRequired[pulumi.Input[str]]
37
+ """
38
+ End time of the maintenance activity
39
+ """
40
+ notification_email_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
41
+ """
42
+ (Updatable) The Email IDs given by the customer to get notified about maintenance activities
43
+ """
44
+ start_time: NotRequired[pulumi.Input[str]]
45
+ """
46
+ Start time of the maintenance activity
47
+ """
48
+ state: NotRequired[pulumi.Input[str]]
49
+ """
50
+ The current state of the cluster.
51
+ """
52
+ elif False:
53
+ ClusterMaintenanceDetailsArgsDict: TypeAlias = Mapping[str, Any]
54
+
55
+ @pulumi.input_type
56
+ class ClusterMaintenanceDetailsArgs:
57
+ def __init__(__self__, *,
58
+ end_time: Optional[pulumi.Input[str]] = None,
59
+ notification_email_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
60
+ start_time: Optional[pulumi.Input[str]] = None,
61
+ state: Optional[pulumi.Input[str]] = None):
62
+ """
63
+ :param pulumi.Input[str] end_time: End time of the maintenance activity
64
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] notification_email_ids: (Updatable) The Email IDs given by the customer to get notified about maintenance activities
65
+ :param pulumi.Input[str] start_time: Start time of the maintenance activity
66
+ :param pulumi.Input[str] state: The current state of the cluster.
67
+ """
68
+ if end_time is not None:
69
+ pulumi.set(__self__, "end_time", end_time)
70
+ if notification_email_ids is not None:
71
+ pulumi.set(__self__, "notification_email_ids", notification_email_ids)
72
+ if start_time is not None:
73
+ pulumi.set(__self__, "start_time", start_time)
74
+ if state is not None:
75
+ pulumi.set(__self__, "state", state)
76
+
77
+ @property
78
+ @pulumi.getter(name="endTime")
79
+ def end_time(self) -> Optional[pulumi.Input[str]]:
80
+ """
81
+ End time of the maintenance activity
82
+ """
83
+ return pulumi.get(self, "end_time")
84
+
85
+ @end_time.setter
86
+ def end_time(self, value: Optional[pulumi.Input[str]]):
87
+ pulumi.set(self, "end_time", value)
88
+
89
+ @property
90
+ @pulumi.getter(name="notificationEmailIds")
91
+ def notification_email_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
92
+ """
93
+ (Updatable) The Email IDs given by the customer to get notified about maintenance activities
94
+ """
95
+ return pulumi.get(self, "notification_email_ids")
96
+
97
+ @notification_email_ids.setter
98
+ def notification_email_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
99
+ pulumi.set(self, "notification_email_ids", value)
100
+
101
+ @property
102
+ @pulumi.getter(name="startTime")
103
+ def start_time(self) -> Optional[pulumi.Input[str]]:
104
+ """
105
+ Start time of the maintenance activity
106
+ """
107
+ return pulumi.get(self, "start_time")
108
+
109
+ @start_time.setter
110
+ def start_time(self, value: Optional[pulumi.Input[str]]):
111
+ pulumi.set(self, "start_time", value)
112
+
113
+ @property
114
+ @pulumi.getter
115
+ def state(self) -> Optional[pulumi.Input[str]]:
116
+ """
117
+ The current state of the cluster.
118
+ """
119
+ return pulumi.get(self, "state")
120
+
121
+ @state.setter
122
+ def state(self, value: Optional[pulumi.Input[str]]):
123
+ pulumi.set(self, "state", value)
124
+
125
+
126
+ if not MYPY:
127
+ class ClusterOutboundClusterConfigArgsDict(TypedDict):
128
+ is_enabled: pulumi.Input[bool]
129
+ """
130
+ (Updatable) Flag to indicate whether outbound cluster configuration is enabled
131
+ """
132
+ outbound_clusters: pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgsDict']]]
133
+ """
134
+ (Updatable) List of outbound clusters to be connected to the inbound cluster
135
+ """
136
+ elif False:
137
+ ClusterOutboundClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
138
+
139
+ @pulumi.input_type
140
+ class ClusterOutboundClusterConfigArgs:
141
+ def __init__(__self__, *,
142
+ is_enabled: pulumi.Input[bool],
143
+ outbound_clusters: pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]]):
144
+ """
145
+ :param pulumi.Input[bool] is_enabled: (Updatable) Flag to indicate whether outbound cluster configuration is enabled
146
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]] outbound_clusters: (Updatable) List of outbound clusters to be connected to the inbound cluster
147
+ """
148
+ pulumi.set(__self__, "is_enabled", is_enabled)
149
+ pulumi.set(__self__, "outbound_clusters", outbound_clusters)
150
+
151
+ @property
152
+ @pulumi.getter(name="isEnabled")
153
+ def is_enabled(self) -> pulumi.Input[bool]:
154
+ """
155
+ (Updatable) Flag to indicate whether outbound cluster configuration is enabled
156
+ """
157
+ return pulumi.get(self, "is_enabled")
158
+
159
+ @is_enabled.setter
160
+ def is_enabled(self, value: pulumi.Input[bool]):
161
+ pulumi.set(self, "is_enabled", value)
162
+
163
+ @property
164
+ @pulumi.getter(name="outboundClusters")
165
+ def outbound_clusters(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]]:
166
+ """
167
+ (Updatable) List of outbound clusters to be connected to the inbound cluster
168
+ """
169
+ return pulumi.get(self, "outbound_clusters")
170
+
171
+ @outbound_clusters.setter
172
+ def outbound_clusters(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]]):
173
+ pulumi.set(self, "outbound_clusters", value)
174
+
175
+
176
+ if not MYPY:
177
+ class ClusterOutboundClusterConfigOutboundClusterArgsDict(TypedDict):
178
+ display_name: pulumi.Input[str]
179
+ """
180
+ (Updatable) Name of the Outbound cluster. Avoid entering confidential information.
181
+ """
182
+ seed_cluster_id: pulumi.Input[str]
183
+ """
184
+ (Updatable) OCID of the Outbound cluster
185
+ """
186
+ is_skip_unavailable: NotRequired[pulumi.Input[bool]]
187
+ """
188
+ (Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
189
+ """
190
+ mode: NotRequired[pulumi.Input[str]]
191
+ """
192
+ (Updatable) Mode for the cross cluster connection
193
+ """
194
+ ping_schedule: NotRequired[pulumi.Input[str]]
195
+ """
196
+ (Updatable) Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent.
197
+ """
198
+ elif False:
199
+ ClusterOutboundClusterConfigOutboundClusterArgsDict: TypeAlias = Mapping[str, Any]
200
+
201
+ @pulumi.input_type
202
+ class ClusterOutboundClusterConfigOutboundClusterArgs:
203
+ def __init__(__self__, *,
204
+ display_name: pulumi.Input[str],
205
+ seed_cluster_id: pulumi.Input[str],
206
+ is_skip_unavailable: Optional[pulumi.Input[bool]] = None,
207
+ mode: Optional[pulumi.Input[str]] = None,
208
+ ping_schedule: Optional[pulumi.Input[str]] = None):
209
+ """
210
+ :param pulumi.Input[str] display_name: (Updatable) Name of the Outbound cluster. Avoid entering confidential information.
211
+ :param pulumi.Input[str] seed_cluster_id: (Updatable) OCID of the Outbound cluster
212
+ :param pulumi.Input[bool] is_skip_unavailable: (Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
213
+ :param pulumi.Input[str] mode: (Updatable) Mode for the cross cluster connection
214
+ :param pulumi.Input[str] ping_schedule: (Updatable) Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent.
215
+ """
216
+ pulumi.set(__self__, "display_name", display_name)
217
+ pulumi.set(__self__, "seed_cluster_id", seed_cluster_id)
218
+ if is_skip_unavailable is not None:
219
+ pulumi.set(__self__, "is_skip_unavailable", is_skip_unavailable)
220
+ if mode is not None:
221
+ pulumi.set(__self__, "mode", mode)
222
+ if ping_schedule is not None:
223
+ pulumi.set(__self__, "ping_schedule", ping_schedule)
224
+
225
+ @property
226
+ @pulumi.getter(name="displayName")
227
+ def display_name(self) -> pulumi.Input[str]:
228
+ """
229
+ (Updatable) Name of the Outbound cluster. Avoid entering confidential information.
230
+ """
231
+ return pulumi.get(self, "display_name")
232
+
233
+ @display_name.setter
234
+ def display_name(self, value: pulumi.Input[str]):
235
+ pulumi.set(self, "display_name", value)
236
+
237
+ @property
238
+ @pulumi.getter(name="seedClusterId")
239
+ def seed_cluster_id(self) -> pulumi.Input[str]:
240
+ """
241
+ (Updatable) OCID of the Outbound cluster
242
+ """
243
+ return pulumi.get(self, "seed_cluster_id")
244
+
245
+ @seed_cluster_id.setter
246
+ def seed_cluster_id(self, value: pulumi.Input[str]):
247
+ pulumi.set(self, "seed_cluster_id", value)
248
+
249
+ @property
250
+ @pulumi.getter(name="isSkipUnavailable")
251
+ def is_skip_unavailable(self) -> Optional[pulumi.Input[bool]]:
252
+ """
253
+ (Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
254
+ """
255
+ return pulumi.get(self, "is_skip_unavailable")
256
+
257
+ @is_skip_unavailable.setter
258
+ def is_skip_unavailable(self, value: Optional[pulumi.Input[bool]]):
259
+ pulumi.set(self, "is_skip_unavailable", value)
260
+
261
+ @property
262
+ @pulumi.getter
263
+ def mode(self) -> Optional[pulumi.Input[str]]:
264
+ """
265
+ (Updatable) Mode for the cross cluster connection
266
+ """
267
+ return pulumi.get(self, "mode")
268
+
269
+ @mode.setter
270
+ def mode(self, value: Optional[pulumi.Input[str]]):
271
+ pulumi.set(self, "mode", value)
272
+
273
+ @property
274
+ @pulumi.getter(name="pingSchedule")
275
+ def ping_schedule(self) -> Optional[pulumi.Input[str]]:
276
+ """
277
+ (Updatable) Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent.
278
+ """
279
+ return pulumi.get(self, "ping_schedule")
280
+
281
+ @ping_schedule.setter
282
+ def ping_schedule(self, value: Optional[pulumi.Input[str]]):
283
+ pulumi.set(self, "ping_schedule", value)
284
+
285
+
286
+ if not MYPY:
287
+ class ClusterReverseConnectionEndpointArgsDict(TypedDict):
288
+ customer_ip: NotRequired[pulumi.Input[str]]
289
+ """
290
+ The IP addresses of the endpoint in customer VCN
291
+ """
292
+ nat_ip: NotRequired[pulumi.Input[str]]
293
+ """
294
+ The NAT IP addresses of the endpoint in service VCN
295
+ """
296
+ elif False:
297
+ ClusterReverseConnectionEndpointArgsDict: TypeAlias = Mapping[str, Any]
298
+
299
+ @pulumi.input_type
300
+ class ClusterReverseConnectionEndpointArgs:
301
+ def __init__(__self__, *,
302
+ customer_ip: Optional[pulumi.Input[str]] = None,
303
+ nat_ip: Optional[pulumi.Input[str]] = None):
304
+ """
305
+ :param pulumi.Input[str] customer_ip: The IP addresses of the endpoint in customer VCN
306
+ :param pulumi.Input[str] nat_ip: The NAT IP addresses of the endpoint in service VCN
307
+ """
308
+ if customer_ip is not None:
309
+ pulumi.set(__self__, "customer_ip", customer_ip)
310
+ if nat_ip is not None:
311
+ pulumi.set(__self__, "nat_ip", nat_ip)
312
+
313
+ @property
314
+ @pulumi.getter(name="customerIp")
315
+ def customer_ip(self) -> Optional[pulumi.Input[str]]:
316
+ """
317
+ The IP addresses of the endpoint in customer VCN
318
+ """
319
+ return pulumi.get(self, "customer_ip")
320
+
321
+ @customer_ip.setter
322
+ def customer_ip(self, value: Optional[pulumi.Input[str]]):
323
+ pulumi.set(self, "customer_ip", value)
324
+
325
+ @property
326
+ @pulumi.getter(name="natIp")
327
+ def nat_ip(self) -> Optional[pulumi.Input[str]]:
328
+ """
329
+ The NAT IP addresses of the endpoint in service VCN
330
+ """
331
+ return pulumi.get(self, "nat_ip")
332
+
333
+ @nat_ip.setter
334
+ def nat_ip(self, value: Optional[pulumi.Input[str]]):
335
+ pulumi.set(self, "nat_ip", value)
336
+
337
+
26
338
  if not MYPY:
27
339
  class GetOpensearchClustersFilterArgsDict(TypedDict):
28
340
  name: str