pulumi-oci 2.21.0a1736852431__py3-none-any.whl → 2.21.0a1737573335__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.
@@ -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
 
@@ -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