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.
@@ -16,15 +16,460 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'ClusterMaintenanceDetails',
20
+ 'ClusterOutboundClusterConfig',
21
+ 'ClusterOutboundClusterConfigOutboundCluster',
22
+ 'ClusterReverseConnectionEndpoint',
23
+ 'GetOpensearchClusterMaintenanceDetailResult',
24
+ 'GetOpensearchClusterOutboundClusterConfigResult',
25
+ 'GetOpensearchClusterOutboundClusterConfigOutboundClusterResult',
26
+ 'GetOpensearchClusterReverseConnectionEndpointResult',
19
27
  'GetOpensearchClustersFilterResult',
20
28
  'GetOpensearchClustersOpensearchClusterCollectionResult',
21
29
  'GetOpensearchClustersOpensearchClusterCollectionItemResult',
30
+ 'GetOpensearchClustersOpensearchClusterCollectionItemMaintenanceDetailResult',
31
+ 'GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigResult',
32
+ 'GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigOutboundClusterResult',
33
+ 'GetOpensearchClustersOpensearchClusterCollectionItemReverseConnectionEndpointResult',
22
34
  'GetOpensearchVersionItemResult',
23
35
  'GetOpensearchVersionsFilterResult',
24
36
  'GetOpensearchVersionsOpensearchVersionsCollectionResult',
25
37
  'GetOpensearchVersionsOpensearchVersionsCollectionItemResult',
26
38
  ]
27
39
 
40
+ @pulumi.output_type
41
+ class ClusterMaintenanceDetails(dict):
42
+ @staticmethod
43
+ def __key_warning(key: str):
44
+ suggest = None
45
+ if key == "endTime":
46
+ suggest = "end_time"
47
+ elif key == "notificationEmailIds":
48
+ suggest = "notification_email_ids"
49
+ elif key == "startTime":
50
+ suggest = "start_time"
51
+
52
+ if suggest:
53
+ pulumi.log.warn(f"Key '{key}' not found in ClusterMaintenanceDetails. Access the value via the '{suggest}' property getter instead.")
54
+
55
+ def __getitem__(self, key: str) -> Any:
56
+ ClusterMaintenanceDetails.__key_warning(key)
57
+ return super().__getitem__(key)
58
+
59
+ def get(self, key: str, default = None) -> Any:
60
+ ClusterMaintenanceDetails.__key_warning(key)
61
+ return super().get(key, default)
62
+
63
+ def __init__(__self__, *,
64
+ end_time: Optional[str] = None,
65
+ notification_email_ids: Optional[Sequence[str]] = None,
66
+ start_time: Optional[str] = None,
67
+ state: Optional[str] = None):
68
+ """
69
+ :param str end_time: End time of the maintenance activity
70
+ :param Sequence[str] notification_email_ids: (Updatable) The Email IDs given by the customer to get notified about maintenance activities
71
+ :param str start_time: Start time of the maintenance activity
72
+ :param str state: The current state of the cluster.
73
+ """
74
+ if end_time is not None:
75
+ pulumi.set(__self__, "end_time", end_time)
76
+ if notification_email_ids is not None:
77
+ pulumi.set(__self__, "notification_email_ids", notification_email_ids)
78
+ if start_time is not None:
79
+ pulumi.set(__self__, "start_time", start_time)
80
+ if state is not None:
81
+ pulumi.set(__self__, "state", state)
82
+
83
+ @property
84
+ @pulumi.getter(name="endTime")
85
+ def end_time(self) -> Optional[str]:
86
+ """
87
+ End time of the maintenance activity
88
+ """
89
+ return pulumi.get(self, "end_time")
90
+
91
+ @property
92
+ @pulumi.getter(name="notificationEmailIds")
93
+ def notification_email_ids(self) -> Optional[Sequence[str]]:
94
+ """
95
+ (Updatable) The Email IDs given by the customer to get notified about maintenance activities
96
+ """
97
+ return pulumi.get(self, "notification_email_ids")
98
+
99
+ @property
100
+ @pulumi.getter(name="startTime")
101
+ def start_time(self) -> Optional[str]:
102
+ """
103
+ Start time of the maintenance activity
104
+ """
105
+ return pulumi.get(self, "start_time")
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def state(self) -> Optional[str]:
110
+ """
111
+ The current state of the cluster.
112
+ """
113
+ return pulumi.get(self, "state")
114
+
115
+
116
+ @pulumi.output_type
117
+ class ClusterOutboundClusterConfig(dict):
118
+ @staticmethod
119
+ def __key_warning(key: str):
120
+ suggest = None
121
+ if key == "isEnabled":
122
+ suggest = "is_enabled"
123
+ elif key == "outboundClusters":
124
+ suggest = "outbound_clusters"
125
+
126
+ if suggest:
127
+ pulumi.log.warn(f"Key '{key}' not found in ClusterOutboundClusterConfig. Access the value via the '{suggest}' property getter instead.")
128
+
129
+ def __getitem__(self, key: str) -> Any:
130
+ ClusterOutboundClusterConfig.__key_warning(key)
131
+ return super().__getitem__(key)
132
+
133
+ def get(self, key: str, default = None) -> Any:
134
+ ClusterOutboundClusterConfig.__key_warning(key)
135
+ return super().get(key, default)
136
+
137
+ def __init__(__self__, *,
138
+ is_enabled: bool,
139
+ outbound_clusters: Sequence['outputs.ClusterOutboundClusterConfigOutboundCluster']):
140
+ """
141
+ :param bool is_enabled: (Updatable) Flag to indicate whether outbound cluster configuration is enabled
142
+ :param Sequence['ClusterOutboundClusterConfigOutboundClusterArgs'] outbound_clusters: (Updatable) List of outbound clusters to be connected to the inbound cluster
143
+ """
144
+ pulumi.set(__self__, "is_enabled", is_enabled)
145
+ pulumi.set(__self__, "outbound_clusters", outbound_clusters)
146
+
147
+ @property
148
+ @pulumi.getter(name="isEnabled")
149
+ def is_enabled(self) -> bool:
150
+ """
151
+ (Updatable) Flag to indicate whether outbound cluster configuration is enabled
152
+ """
153
+ return pulumi.get(self, "is_enabled")
154
+
155
+ @property
156
+ @pulumi.getter(name="outboundClusters")
157
+ def outbound_clusters(self) -> Sequence['outputs.ClusterOutboundClusterConfigOutboundCluster']:
158
+ """
159
+ (Updatable) List of outbound clusters to be connected to the inbound cluster
160
+ """
161
+ return pulumi.get(self, "outbound_clusters")
162
+
163
+
164
+ @pulumi.output_type
165
+ class ClusterOutboundClusterConfigOutboundCluster(dict):
166
+ @staticmethod
167
+ def __key_warning(key: str):
168
+ suggest = None
169
+ if key == "displayName":
170
+ suggest = "display_name"
171
+ elif key == "seedClusterId":
172
+ suggest = "seed_cluster_id"
173
+ elif key == "isSkipUnavailable":
174
+ suggest = "is_skip_unavailable"
175
+ elif key == "pingSchedule":
176
+ suggest = "ping_schedule"
177
+
178
+ if suggest:
179
+ pulumi.log.warn(f"Key '{key}' not found in ClusterOutboundClusterConfigOutboundCluster. Access the value via the '{suggest}' property getter instead.")
180
+
181
+ def __getitem__(self, key: str) -> Any:
182
+ ClusterOutboundClusterConfigOutboundCluster.__key_warning(key)
183
+ return super().__getitem__(key)
184
+
185
+ def get(self, key: str, default = None) -> Any:
186
+ ClusterOutboundClusterConfigOutboundCluster.__key_warning(key)
187
+ return super().get(key, default)
188
+
189
+ def __init__(__self__, *,
190
+ display_name: str,
191
+ seed_cluster_id: str,
192
+ is_skip_unavailable: Optional[bool] = None,
193
+ mode: Optional[str] = None,
194
+ ping_schedule: Optional[str] = None):
195
+ """
196
+ :param str display_name: (Updatable) Name of the Outbound cluster. Avoid entering confidential information.
197
+ :param str seed_cluster_id: (Updatable) OCID of the Outbound cluster
198
+ :param bool is_skip_unavailable: (Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
199
+ :param str mode: (Updatable) Mode for the cross cluster connection
200
+ :param 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.
201
+ """
202
+ pulumi.set(__self__, "display_name", display_name)
203
+ pulumi.set(__self__, "seed_cluster_id", seed_cluster_id)
204
+ if is_skip_unavailable is not None:
205
+ pulumi.set(__self__, "is_skip_unavailable", is_skip_unavailable)
206
+ if mode is not None:
207
+ pulumi.set(__self__, "mode", mode)
208
+ if ping_schedule is not None:
209
+ pulumi.set(__self__, "ping_schedule", ping_schedule)
210
+
211
+ @property
212
+ @pulumi.getter(name="displayName")
213
+ def display_name(self) -> str:
214
+ """
215
+ (Updatable) Name of the Outbound cluster. Avoid entering confidential information.
216
+ """
217
+ return pulumi.get(self, "display_name")
218
+
219
+ @property
220
+ @pulumi.getter(name="seedClusterId")
221
+ def seed_cluster_id(self) -> str:
222
+ """
223
+ (Updatable) OCID of the Outbound cluster
224
+ """
225
+ return pulumi.get(self, "seed_cluster_id")
226
+
227
+ @property
228
+ @pulumi.getter(name="isSkipUnavailable")
229
+ def is_skip_unavailable(self) -> Optional[bool]:
230
+ """
231
+ (Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
232
+ """
233
+ return pulumi.get(self, "is_skip_unavailable")
234
+
235
+ @property
236
+ @pulumi.getter
237
+ def mode(self) -> Optional[str]:
238
+ """
239
+ (Updatable) Mode for the cross cluster connection
240
+ """
241
+ return pulumi.get(self, "mode")
242
+
243
+ @property
244
+ @pulumi.getter(name="pingSchedule")
245
+ def ping_schedule(self) -> Optional[str]:
246
+ """
247
+ (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.
248
+ """
249
+ return pulumi.get(self, "ping_schedule")
250
+
251
+
252
+ @pulumi.output_type
253
+ class ClusterReverseConnectionEndpoint(dict):
254
+ @staticmethod
255
+ def __key_warning(key: str):
256
+ suggest = None
257
+ if key == "customerIp":
258
+ suggest = "customer_ip"
259
+ elif key == "natIp":
260
+ suggest = "nat_ip"
261
+
262
+ if suggest:
263
+ pulumi.log.warn(f"Key '{key}' not found in ClusterReverseConnectionEndpoint. Access the value via the '{suggest}' property getter instead.")
264
+
265
+ def __getitem__(self, key: str) -> Any:
266
+ ClusterReverseConnectionEndpoint.__key_warning(key)
267
+ return super().__getitem__(key)
268
+
269
+ def get(self, key: str, default = None) -> Any:
270
+ ClusterReverseConnectionEndpoint.__key_warning(key)
271
+ return super().get(key, default)
272
+
273
+ def __init__(__self__, *,
274
+ customer_ip: Optional[str] = None,
275
+ nat_ip: Optional[str] = None):
276
+ """
277
+ :param str customer_ip: The IP addresses of the endpoint in customer VCN
278
+ :param str nat_ip: The NAT IP addresses of the endpoint in service VCN
279
+ """
280
+ if customer_ip is not None:
281
+ pulumi.set(__self__, "customer_ip", customer_ip)
282
+ if nat_ip is not None:
283
+ pulumi.set(__self__, "nat_ip", nat_ip)
284
+
285
+ @property
286
+ @pulumi.getter(name="customerIp")
287
+ def customer_ip(self) -> Optional[str]:
288
+ """
289
+ The IP addresses of the endpoint in customer VCN
290
+ """
291
+ return pulumi.get(self, "customer_ip")
292
+
293
+ @property
294
+ @pulumi.getter(name="natIp")
295
+ def nat_ip(self) -> Optional[str]:
296
+ """
297
+ The NAT IP addresses of the endpoint in service VCN
298
+ """
299
+ return pulumi.get(self, "nat_ip")
300
+
301
+
302
+ @pulumi.output_type
303
+ class GetOpensearchClusterMaintenanceDetailResult(dict):
304
+ def __init__(__self__, *,
305
+ end_time: str,
306
+ notification_email_ids: Sequence[str],
307
+ start_time: str,
308
+ state: str):
309
+ """
310
+ :param str end_time: End time of the maintenance activity
311
+ :param Sequence[str] notification_email_ids: The Email Ids given the by customer to get notified about maintenance activities
312
+ :param str start_time: Start time of the maintenance activity
313
+ :param str state: The current state of the cluster.
314
+ """
315
+ pulumi.set(__self__, "end_time", end_time)
316
+ pulumi.set(__self__, "notification_email_ids", notification_email_ids)
317
+ pulumi.set(__self__, "start_time", start_time)
318
+ pulumi.set(__self__, "state", state)
319
+
320
+ @property
321
+ @pulumi.getter(name="endTime")
322
+ def end_time(self) -> str:
323
+ """
324
+ End time of the maintenance activity
325
+ """
326
+ return pulumi.get(self, "end_time")
327
+
328
+ @property
329
+ @pulumi.getter(name="notificationEmailIds")
330
+ def notification_email_ids(self) -> Sequence[str]:
331
+ """
332
+ The Email Ids given the by customer to get notified about maintenance activities
333
+ """
334
+ return pulumi.get(self, "notification_email_ids")
335
+
336
+ @property
337
+ @pulumi.getter(name="startTime")
338
+ def start_time(self) -> str:
339
+ """
340
+ Start time of the maintenance activity
341
+ """
342
+ return pulumi.get(self, "start_time")
343
+
344
+ @property
345
+ @pulumi.getter
346
+ def state(self) -> str:
347
+ """
348
+ The current state of the cluster.
349
+ """
350
+ return pulumi.get(self, "state")
351
+
352
+
353
+ @pulumi.output_type
354
+ class GetOpensearchClusterOutboundClusterConfigResult(dict):
355
+ def __init__(__self__, *,
356
+ is_enabled: bool,
357
+ outbound_clusters: Sequence['outputs.GetOpensearchClusterOutboundClusterConfigOutboundClusterResult']):
358
+ """
359
+ :param bool is_enabled: Flag to indicate whether outbound cluster configuration is enabled
360
+ :param Sequence['GetOpensearchClusterOutboundClusterConfigOutboundClusterArgs'] outbound_clusters: List of outbound clusters to be connected to the inbound cluster
361
+ """
362
+ pulumi.set(__self__, "is_enabled", is_enabled)
363
+ pulumi.set(__self__, "outbound_clusters", outbound_clusters)
364
+
365
+ @property
366
+ @pulumi.getter(name="isEnabled")
367
+ def is_enabled(self) -> bool:
368
+ """
369
+ Flag to indicate whether outbound cluster configuration is enabled
370
+ """
371
+ return pulumi.get(self, "is_enabled")
372
+
373
+ @property
374
+ @pulumi.getter(name="outboundClusters")
375
+ def outbound_clusters(self) -> Sequence['outputs.GetOpensearchClusterOutboundClusterConfigOutboundClusterResult']:
376
+ """
377
+ List of outbound clusters to be connected to the inbound cluster
378
+ """
379
+ return pulumi.get(self, "outbound_clusters")
380
+
381
+
382
+ @pulumi.output_type
383
+ class GetOpensearchClusterOutboundClusterConfigOutboundClusterResult(dict):
384
+ def __init__(__self__, *,
385
+ display_name: str,
386
+ is_skip_unavailable: bool,
387
+ mode: str,
388
+ ping_schedule: str,
389
+ seed_cluster_id: str):
390
+ """
391
+ :param str display_name: Name of the Outbound cluster. Avoid entering confidential information.
392
+ :param bool is_skip_unavailable: Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
393
+ :param str mode: Mode for the cross cluster connection
394
+ :param str ping_schedule: 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.
395
+ :param str seed_cluster_id: OCID of the Outbound cluster
396
+ """
397
+ pulumi.set(__self__, "display_name", display_name)
398
+ pulumi.set(__self__, "is_skip_unavailable", is_skip_unavailable)
399
+ pulumi.set(__self__, "mode", mode)
400
+ pulumi.set(__self__, "ping_schedule", ping_schedule)
401
+ pulumi.set(__self__, "seed_cluster_id", seed_cluster_id)
402
+
403
+ @property
404
+ @pulumi.getter(name="displayName")
405
+ def display_name(self) -> str:
406
+ """
407
+ Name of the Outbound cluster. Avoid entering confidential information.
408
+ """
409
+ return pulumi.get(self, "display_name")
410
+
411
+ @property
412
+ @pulumi.getter(name="isSkipUnavailable")
413
+ def is_skip_unavailable(self) -> bool:
414
+ """
415
+ Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
416
+ """
417
+ return pulumi.get(self, "is_skip_unavailable")
418
+
419
+ @property
420
+ @pulumi.getter
421
+ def mode(self) -> str:
422
+ """
423
+ Mode for the cross cluster connection
424
+ """
425
+ return pulumi.get(self, "mode")
426
+
427
+ @property
428
+ @pulumi.getter(name="pingSchedule")
429
+ def ping_schedule(self) -> str:
430
+ """
431
+ 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.
432
+ """
433
+ return pulumi.get(self, "ping_schedule")
434
+
435
+ @property
436
+ @pulumi.getter(name="seedClusterId")
437
+ def seed_cluster_id(self) -> str:
438
+ """
439
+ OCID of the Outbound cluster
440
+ """
441
+ return pulumi.get(self, "seed_cluster_id")
442
+
443
+
444
+ @pulumi.output_type
445
+ class GetOpensearchClusterReverseConnectionEndpointResult(dict):
446
+ def __init__(__self__, *,
447
+ customer_ip: str,
448
+ nat_ip: str):
449
+ """
450
+ :param str customer_ip: The IP addresses of the endpoint in customer VCN
451
+ :param str nat_ip: The NAT IP addresses of the endpoint in service VCN
452
+ """
453
+ pulumi.set(__self__, "customer_ip", customer_ip)
454
+ pulumi.set(__self__, "nat_ip", nat_ip)
455
+
456
+ @property
457
+ @pulumi.getter(name="customerIp")
458
+ def customer_ip(self) -> str:
459
+ """
460
+ The IP addresses of the endpoint in customer VCN
461
+ """
462
+ return pulumi.get(self, "customer_ip")
463
+
464
+ @property
465
+ @pulumi.getter(name="natIp")
466
+ def nat_ip(self) -> str:
467
+ """
468
+ The NAT IP addresses of the endpoint in service VCN
469
+ """
470
+ return pulumi.get(self, "nat_ip")
471
+
472
+
28
473
  @pulumi.output_type
29
474
  class GetOpensearchClustersFilterResult(dict):
30
475
  def __init__(__self__, *,
@@ -69,6 +514,7 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
69
514
  def __init__(__self__, *,
70
515
  availability_domains: Sequence[str],
71
516
  compartment_id: str,
517
+ configure_outbound_cluster_trigger: int,
72
518
  data_node_count: int,
73
519
  data_node_host_bare_metal_shape: str,
74
520
  data_node_host_memory_gb: int,
@@ -80,7 +526,9 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
80
526
  fqdn: str,
81
527
  freeform_tags: Mapping[str, str],
82
528
  id: str,
529
+ inbound_cluster_ids: Sequence[str],
83
530
  lifecycle_details: str,
531
+ maintenance_details: Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemMaintenanceDetailResult'],
84
532
  master_node_count: int,
85
533
  master_node_host_bare_metal_shape: str,
86
534
  master_node_host_memory_gb: int,
@@ -93,6 +541,9 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
93
541
  opendashboard_private_ip: str,
94
542
  opensearch_fqdn: str,
95
543
  opensearch_private_ip: str,
544
+ outbound_cluster_configs: Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigResult'],
545
+ reverse_connection_endpoint_customer_ips: Sequence[str],
546
+ reverse_connection_endpoints: Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemReverseConnectionEndpointResult'],
96
547
  security_master_user_name: str,
97
548
  security_master_user_password_hash: str,
98
549
  security_mode: str,
@@ -121,7 +572,9 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
121
572
  :param str fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
122
573
  :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
123
574
  :param str id: unique OpensearchCluster identifier
575
+ :param Sequence[str] inbound_cluster_ids: List of inbound clusters for which this cluster is an outbound cluster
124
576
  :param str lifecycle_details: Additional information about the current lifecycle state of the cluster.
577
+ :param Sequence['GetOpensearchClustersOpensearchClusterCollectionItemMaintenanceDetailArgs'] maintenance_details: Details for the maintenance activity.
125
578
  :param int master_node_count: The number of master nodes configured for the cluster.
126
579
  :param str master_node_host_bare_metal_shape: The bare metal shape for the cluster's master nodes.
127
580
  :param int master_node_host_memory_gb: The amount of memory in GB, for the cluster's master nodes.
@@ -134,6 +587,9 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
134
587
  :param str opendashboard_private_ip: The private IP address for the cluster's OpenSearch Dashboard.
135
588
  :param str opensearch_fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
136
589
  :param str opensearch_private_ip: The cluster's private IP address.
590
+ :param Sequence['GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigArgs'] outbound_cluster_configs: This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
591
+ :param Sequence[str] reverse_connection_endpoint_customer_ips: The customer IP addresses of the endpoint in customer VCN
592
+ :param Sequence['GetOpensearchClustersOpensearchClusterCollectionItemReverseConnectionEndpointArgs'] reverse_connection_endpoints: The list of reverse connection endpoints.
137
593
  :param str security_master_user_name: The name of the master user that are used to manage security config
138
594
  :param str security_master_user_password_hash: The password hash of the master user that are used to manage security config
139
595
  :param str security_mode: The security mode of the cluster.
@@ -151,6 +607,7 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
151
607
  """
152
608
  pulumi.set(__self__, "availability_domains", availability_domains)
153
609
  pulumi.set(__self__, "compartment_id", compartment_id)
610
+ pulumi.set(__self__, "configure_outbound_cluster_trigger", configure_outbound_cluster_trigger)
154
611
  pulumi.set(__self__, "data_node_count", data_node_count)
155
612
  pulumi.set(__self__, "data_node_host_bare_metal_shape", data_node_host_bare_metal_shape)
156
613
  pulumi.set(__self__, "data_node_host_memory_gb", data_node_host_memory_gb)
@@ -162,7 +619,9 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
162
619
  pulumi.set(__self__, "fqdn", fqdn)
163
620
  pulumi.set(__self__, "freeform_tags", freeform_tags)
164
621
  pulumi.set(__self__, "id", id)
622
+ pulumi.set(__self__, "inbound_cluster_ids", inbound_cluster_ids)
165
623
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
624
+ pulumi.set(__self__, "maintenance_details", maintenance_details)
166
625
  pulumi.set(__self__, "master_node_count", master_node_count)
167
626
  pulumi.set(__self__, "master_node_host_bare_metal_shape", master_node_host_bare_metal_shape)
168
627
  pulumi.set(__self__, "master_node_host_memory_gb", master_node_host_memory_gb)
@@ -175,6 +634,9 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
175
634
  pulumi.set(__self__, "opendashboard_private_ip", opendashboard_private_ip)
176
635
  pulumi.set(__self__, "opensearch_fqdn", opensearch_fqdn)
177
636
  pulumi.set(__self__, "opensearch_private_ip", opensearch_private_ip)
637
+ pulumi.set(__self__, "outbound_cluster_configs", outbound_cluster_configs)
638
+ pulumi.set(__self__, "reverse_connection_endpoint_customer_ips", reverse_connection_endpoint_customer_ips)
639
+ pulumi.set(__self__, "reverse_connection_endpoints", reverse_connection_endpoints)
178
640
  pulumi.set(__self__, "security_master_user_name", security_master_user_name)
179
641
  pulumi.set(__self__, "security_master_user_password_hash", security_master_user_password_hash)
180
642
  pulumi.set(__self__, "security_mode", security_mode)
@@ -206,6 +668,11 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
206
668
  """
207
669
  return pulumi.get(self, "compartment_id")
208
670
 
671
+ @property
672
+ @pulumi.getter(name="configureOutboundClusterTrigger")
673
+ def configure_outbound_cluster_trigger(self) -> int:
674
+ return pulumi.get(self, "configure_outbound_cluster_trigger")
675
+
209
676
  @property
210
677
  @pulumi.getter(name="dataNodeCount")
211
678
  def data_node_count(self) -> int:
@@ -294,6 +761,14 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
294
761
  """
295
762
  return pulumi.get(self, "id")
296
763
 
764
+ @property
765
+ @pulumi.getter(name="inboundClusterIds")
766
+ def inbound_cluster_ids(self) -> Sequence[str]:
767
+ """
768
+ List of inbound clusters for which this cluster is an outbound cluster
769
+ """
770
+ return pulumi.get(self, "inbound_cluster_ids")
771
+
297
772
  @property
298
773
  @pulumi.getter(name="lifecycleDetails")
299
774
  def lifecycle_details(self) -> str:
@@ -302,6 +777,14 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
302
777
  """
303
778
  return pulumi.get(self, "lifecycle_details")
304
779
 
780
+ @property
781
+ @pulumi.getter(name="maintenanceDetails")
782
+ def maintenance_details(self) -> Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemMaintenanceDetailResult']:
783
+ """
784
+ Details for the maintenance activity.
785
+ """
786
+ return pulumi.get(self, "maintenance_details")
787
+
305
788
  @property
306
789
  @pulumi.getter(name="masterNodeCount")
307
790
  def master_node_count(self) -> int:
@@ -398,6 +881,30 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
398
881
  """
399
882
  return pulumi.get(self, "opensearch_private_ip")
400
883
 
884
+ @property
885
+ @pulumi.getter(name="outboundClusterConfigs")
886
+ def outbound_cluster_configs(self) -> Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigResult']:
887
+ """
888
+ This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
889
+ """
890
+ return pulumi.get(self, "outbound_cluster_configs")
891
+
892
+ @property
893
+ @pulumi.getter(name="reverseConnectionEndpointCustomerIps")
894
+ def reverse_connection_endpoint_customer_ips(self) -> Sequence[str]:
895
+ """
896
+ The customer IP addresses of the endpoint in customer VCN
897
+ """
898
+ return pulumi.get(self, "reverse_connection_endpoint_customer_ips")
899
+
900
+ @property
901
+ @pulumi.getter(name="reverseConnectionEndpoints")
902
+ def reverse_connection_endpoints(self) -> Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemReverseConnectionEndpointResult']:
903
+ """
904
+ The list of reverse connection endpoints.
905
+ """
906
+ return pulumi.get(self, "reverse_connection_endpoints")
907
+
401
908
  @property
402
909
  @pulumi.getter(name="securityMasterUserName")
403
910
  def security_master_user_name(self) -> str:
@@ -511,6 +1018,177 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
511
1018
  return pulumi.get(self, "vcn_id")
512
1019
 
513
1020
 
1021
+ @pulumi.output_type
1022
+ class GetOpensearchClustersOpensearchClusterCollectionItemMaintenanceDetailResult(dict):
1023
+ def __init__(__self__, *,
1024
+ end_time: str,
1025
+ notification_email_ids: Sequence[str],
1026
+ start_time: str,
1027
+ state: str):
1028
+ """
1029
+ :param str end_time: End time of the maintenance activity
1030
+ :param Sequence[str] notification_email_ids: The Email Ids given the by customer to get notified about maintenance activities
1031
+ :param str start_time: Start time of the maintenance activity
1032
+ :param str state: A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
1033
+ """
1034
+ pulumi.set(__self__, "end_time", end_time)
1035
+ pulumi.set(__self__, "notification_email_ids", notification_email_ids)
1036
+ pulumi.set(__self__, "start_time", start_time)
1037
+ pulumi.set(__self__, "state", state)
1038
+
1039
+ @property
1040
+ @pulumi.getter(name="endTime")
1041
+ def end_time(self) -> str:
1042
+ """
1043
+ End time of the maintenance activity
1044
+ """
1045
+ return pulumi.get(self, "end_time")
1046
+
1047
+ @property
1048
+ @pulumi.getter(name="notificationEmailIds")
1049
+ def notification_email_ids(self) -> Sequence[str]:
1050
+ """
1051
+ The Email Ids given the by customer to get notified about maintenance activities
1052
+ """
1053
+ return pulumi.get(self, "notification_email_ids")
1054
+
1055
+ @property
1056
+ @pulumi.getter(name="startTime")
1057
+ def start_time(self) -> str:
1058
+ """
1059
+ Start time of the maintenance activity
1060
+ """
1061
+ return pulumi.get(self, "start_time")
1062
+
1063
+ @property
1064
+ @pulumi.getter
1065
+ def state(self) -> str:
1066
+ """
1067
+ A filter to return only OpensearchClusters their lifecycleState matches the given lifecycleState.
1068
+ """
1069
+ return pulumi.get(self, "state")
1070
+
1071
+
1072
+ @pulumi.output_type
1073
+ class GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigResult(dict):
1074
+ def __init__(__self__, *,
1075
+ is_enabled: bool,
1076
+ outbound_clusters: Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigOutboundClusterResult']):
1077
+ """
1078
+ :param bool is_enabled: Flag to indicate whether outbound cluster configuration is enabled
1079
+ :param Sequence['GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigOutboundClusterArgs'] outbound_clusters: List of outbound clusters to be connected to the inbound cluster
1080
+ """
1081
+ pulumi.set(__self__, "is_enabled", is_enabled)
1082
+ pulumi.set(__self__, "outbound_clusters", outbound_clusters)
1083
+
1084
+ @property
1085
+ @pulumi.getter(name="isEnabled")
1086
+ def is_enabled(self) -> bool:
1087
+ """
1088
+ Flag to indicate whether outbound cluster configuration is enabled
1089
+ """
1090
+ return pulumi.get(self, "is_enabled")
1091
+
1092
+ @property
1093
+ @pulumi.getter(name="outboundClusters")
1094
+ def outbound_clusters(self) -> Sequence['outputs.GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigOutboundClusterResult']:
1095
+ """
1096
+ List of outbound clusters to be connected to the inbound cluster
1097
+ """
1098
+ return pulumi.get(self, "outbound_clusters")
1099
+
1100
+
1101
+ @pulumi.output_type
1102
+ class GetOpensearchClustersOpensearchClusterCollectionItemOutboundClusterConfigOutboundClusterResult(dict):
1103
+ def __init__(__self__, *,
1104
+ display_name: str,
1105
+ is_skip_unavailable: bool,
1106
+ mode: str,
1107
+ ping_schedule: str,
1108
+ seed_cluster_id: str):
1109
+ """
1110
+ :param str display_name: A filter to return only resources that match the entire display name given.
1111
+ :param bool is_skip_unavailable: Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
1112
+ :param str mode: Mode for the cross cluster connection
1113
+ :param str ping_schedule: 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.
1114
+ :param str seed_cluster_id: OCID of the Outbound cluster
1115
+ """
1116
+ pulumi.set(__self__, "display_name", display_name)
1117
+ pulumi.set(__self__, "is_skip_unavailable", is_skip_unavailable)
1118
+ pulumi.set(__self__, "mode", mode)
1119
+ pulumi.set(__self__, "ping_schedule", ping_schedule)
1120
+ pulumi.set(__self__, "seed_cluster_id", seed_cluster_id)
1121
+
1122
+ @property
1123
+ @pulumi.getter(name="displayName")
1124
+ def display_name(self) -> str:
1125
+ """
1126
+ A filter to return only resources that match the entire display name given.
1127
+ """
1128
+ return pulumi.get(self, "display_name")
1129
+
1130
+ @property
1131
+ @pulumi.getter(name="isSkipUnavailable")
1132
+ def is_skip_unavailable(self) -> bool:
1133
+ """
1134
+ Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
1135
+ """
1136
+ return pulumi.get(self, "is_skip_unavailable")
1137
+
1138
+ @property
1139
+ @pulumi.getter
1140
+ def mode(self) -> str:
1141
+ """
1142
+ Mode for the cross cluster connection
1143
+ """
1144
+ return pulumi.get(self, "mode")
1145
+
1146
+ @property
1147
+ @pulumi.getter(name="pingSchedule")
1148
+ def ping_schedule(self) -> str:
1149
+ """
1150
+ 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.
1151
+ """
1152
+ return pulumi.get(self, "ping_schedule")
1153
+
1154
+ @property
1155
+ @pulumi.getter(name="seedClusterId")
1156
+ def seed_cluster_id(self) -> str:
1157
+ """
1158
+ OCID of the Outbound cluster
1159
+ """
1160
+ return pulumi.get(self, "seed_cluster_id")
1161
+
1162
+
1163
+ @pulumi.output_type
1164
+ class GetOpensearchClustersOpensearchClusterCollectionItemReverseConnectionEndpointResult(dict):
1165
+ def __init__(__self__, *,
1166
+ customer_ip: str,
1167
+ nat_ip: str):
1168
+ """
1169
+ :param str customer_ip: The IP addresses of the endpoint in customer VCN
1170
+ :param str nat_ip: The NAT IP addresses of the endpoint in service VCN
1171
+ """
1172
+ pulumi.set(__self__, "customer_ip", customer_ip)
1173
+ pulumi.set(__self__, "nat_ip", nat_ip)
1174
+
1175
+ @property
1176
+ @pulumi.getter(name="customerIp")
1177
+ def customer_ip(self) -> str:
1178
+ """
1179
+ The IP addresses of the endpoint in customer VCN
1180
+ """
1181
+ return pulumi.get(self, "customer_ip")
1182
+
1183
+ @property
1184
+ @pulumi.getter(name="natIp")
1185
+ def nat_ip(self) -> str:
1186
+ """
1187
+ The NAT IP addresses of the endpoint in service VCN
1188
+ """
1189
+ return pulumi.get(self, "nat_ip")
1190
+
1191
+
514
1192
  @pulumi.output_type
515
1193
  class GetOpensearchVersionItemResult(dict):
516
1194
  def __init__(__self__, *,