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.
- pulumi_oci/core/_inputs.py +271 -21
- pulumi_oci/core/get_instance.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/get_private_ip.py +12 -1
- pulumi_oci/core/get_virtual_circuit.py +1 -1
- pulumi_oci/core/get_vnic.py +12 -1
- pulumi_oci/core/instance.py +47 -0
- pulumi_oci/core/instance_configuration.py +16 -0
- pulumi_oci/core/ipv6.py +52 -3
- pulumi_oci/core/outputs.py +562 -52
- pulumi_oci/core/private_ip.py +49 -0
- pulumi_oci/core/virtual_circuit.py +4 -4
- pulumi_oci/opensearch/_inputs.py +312 -0
- pulumi_oci/opensearch/cluster.py +289 -104
- pulumi_oci/opensearch/get_opensearch_cluster.py +84 -2
- pulumi_oci/opensearch/get_opensearch_clusters.py +1 -1
- pulumi_oci/opensearch/outputs.py +678 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/METADATA +7 -1
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/RECORD +22 -22
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/top_level.txt +0 -0
pulumi_oci/opensearch/cluster.py
CHANGED
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
19
|
__all__ = ['ClusterArgs', 'Cluster']
|
18
20
|
|
@@ -38,10 +40,15 @@ class ClusterArgs:
|
|
38
40
|
subnet_id: pulumi.Input[str],
|
39
41
|
vcn_compartment_id: pulumi.Input[str],
|
40
42
|
vcn_id: pulumi.Input[str],
|
43
|
+
configure_outbound_cluster_trigger: Optional[pulumi.Input[int]] = None,
|
41
44
|
data_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
42
45
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
43
46
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
47
|
+
inbound_cluster_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
48
|
+
maintenance_details: Optional[pulumi.Input['ClusterMaintenanceDetailsArgs']] = None,
|
44
49
|
master_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
50
|
+
outbound_cluster_config: Optional[pulumi.Input['ClusterOutboundClusterConfigArgs']] = None,
|
51
|
+
reverse_connection_endpoint_customer_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
45
52
|
security_master_user_name: Optional[pulumi.Input[str]] = None,
|
46
53
|
security_master_user_password_hash: Optional[pulumi.Input[str]] = None,
|
47
54
|
security_mode: Optional[pulumi.Input[str]] = None,
|
@@ -67,6 +74,7 @@ class ClusterArgs:
|
|
67
74
|
:param pulumi.Input[str] subnet_id: The OCID of the cluster's subnet.
|
68
75
|
:param pulumi.Input[str] vcn_compartment_id: The OCID for the compartment where the cluster's VCN is located.
|
69
76
|
:param pulumi.Input[str] vcn_id: The OCID of the cluster's VCN.
|
77
|
+
:param pulumi.Input[int] configure_outbound_cluster_trigger: (Updatable) An optional property when incremented triggers Configure Outbound Cluster. Could be set to any integer value.
|
70
78
|
|
71
79
|
|
72
80
|
** IMPORTANT **
|
@@ -74,7 +82,11 @@ class ClusterArgs:
|
|
74
82
|
:param pulumi.Input[str] data_node_host_bare_metal_shape: The bare metal shape for the cluster's data nodes.
|
75
83
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
76
84
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
85
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_cluster_ids: List of inbound clusters that will be queried using cross cluster search
|
86
|
+
:param pulumi.Input['ClusterMaintenanceDetailsArgs'] maintenance_details: (Updatable) Details for creation of maintenance details
|
77
87
|
:param pulumi.Input[str] master_node_host_bare_metal_shape: The bare metal shape for the cluster's master nodes.
|
88
|
+
:param pulumi.Input['ClusterOutboundClusterConfigArgs'] outbound_cluster_config: (Updatable) This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
|
89
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] reverse_connection_endpoint_customer_ips: (Updatable) The customer IP addresses of the endpoint in customer VCN
|
78
90
|
:param pulumi.Input[str] security_master_user_name: (Updatable) The name of the master user that are used to manage security config
|
79
91
|
:param pulumi.Input[str] security_master_user_password_hash: (Updatable) The password hash of the master user that are used to manage security config
|
80
92
|
:param pulumi.Input[str] security_mode: (Updatable) The security mode of the cluster.
|
@@ -99,14 +111,24 @@ class ClusterArgs:
|
|
99
111
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
100
112
|
pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
|
101
113
|
pulumi.set(__self__, "vcn_id", vcn_id)
|
114
|
+
if configure_outbound_cluster_trigger is not None:
|
115
|
+
pulumi.set(__self__, "configure_outbound_cluster_trigger", configure_outbound_cluster_trigger)
|
102
116
|
if data_node_host_bare_metal_shape is not None:
|
103
117
|
pulumi.set(__self__, "data_node_host_bare_metal_shape", data_node_host_bare_metal_shape)
|
104
118
|
if defined_tags is not None:
|
105
119
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
106
120
|
if freeform_tags is not None:
|
107
121
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
122
|
+
if inbound_cluster_ids is not None:
|
123
|
+
pulumi.set(__self__, "inbound_cluster_ids", inbound_cluster_ids)
|
124
|
+
if maintenance_details is not None:
|
125
|
+
pulumi.set(__self__, "maintenance_details", maintenance_details)
|
108
126
|
if master_node_host_bare_metal_shape is not None:
|
109
127
|
pulumi.set(__self__, "master_node_host_bare_metal_shape", master_node_host_bare_metal_shape)
|
128
|
+
if outbound_cluster_config is not None:
|
129
|
+
pulumi.set(__self__, "outbound_cluster_config", outbound_cluster_config)
|
130
|
+
if reverse_connection_endpoint_customer_ips is not None:
|
131
|
+
pulumi.set(__self__, "reverse_connection_endpoint_customer_ips", reverse_connection_endpoint_customer_ips)
|
110
132
|
if security_master_user_name is not None:
|
111
133
|
pulumi.set(__self__, "security_master_user_name", security_master_user_name)
|
112
134
|
if security_master_user_password_hash is not None:
|
@@ -337,10 +359,6 @@ class ClusterArgs:
|
|
337
359
|
def vcn_id(self) -> pulumi.Input[str]:
|
338
360
|
"""
|
339
361
|
The OCID of the cluster's VCN.
|
340
|
-
|
341
|
-
|
342
|
-
** IMPORTANT **
|
343
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
344
362
|
"""
|
345
363
|
return pulumi.get(self, "vcn_id")
|
346
364
|
|
@@ -348,6 +366,22 @@ class ClusterArgs:
|
|
348
366
|
def vcn_id(self, value: pulumi.Input[str]):
|
349
367
|
pulumi.set(self, "vcn_id", value)
|
350
368
|
|
369
|
+
@property
|
370
|
+
@pulumi.getter(name="configureOutboundClusterTrigger")
|
371
|
+
def configure_outbound_cluster_trigger(self) -> Optional[pulumi.Input[int]]:
|
372
|
+
"""
|
373
|
+
(Updatable) An optional property when incremented triggers Configure Outbound Cluster. Could be set to any integer value.
|
374
|
+
|
375
|
+
|
376
|
+
** IMPORTANT **
|
377
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
378
|
+
"""
|
379
|
+
return pulumi.get(self, "configure_outbound_cluster_trigger")
|
380
|
+
|
381
|
+
@configure_outbound_cluster_trigger.setter
|
382
|
+
def configure_outbound_cluster_trigger(self, value: Optional[pulumi.Input[int]]):
|
383
|
+
pulumi.set(self, "configure_outbound_cluster_trigger", value)
|
384
|
+
|
351
385
|
@property
|
352
386
|
@pulumi.getter(name="dataNodeHostBareMetalShape")
|
353
387
|
def data_node_host_bare_metal_shape(self) -> Optional[pulumi.Input[str]]:
|
@@ -384,6 +418,30 @@ class ClusterArgs:
|
|
384
418
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
385
419
|
pulumi.set(self, "freeform_tags", value)
|
386
420
|
|
421
|
+
@property
|
422
|
+
@pulumi.getter(name="inboundClusterIds")
|
423
|
+
def inbound_cluster_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
424
|
+
"""
|
425
|
+
List of inbound clusters that will be queried using cross cluster search
|
426
|
+
"""
|
427
|
+
return pulumi.get(self, "inbound_cluster_ids")
|
428
|
+
|
429
|
+
@inbound_cluster_ids.setter
|
430
|
+
def inbound_cluster_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
431
|
+
pulumi.set(self, "inbound_cluster_ids", value)
|
432
|
+
|
433
|
+
@property
|
434
|
+
@pulumi.getter(name="maintenanceDetails")
|
435
|
+
def maintenance_details(self) -> Optional[pulumi.Input['ClusterMaintenanceDetailsArgs']]:
|
436
|
+
"""
|
437
|
+
(Updatable) Details for creation of maintenance details
|
438
|
+
"""
|
439
|
+
return pulumi.get(self, "maintenance_details")
|
440
|
+
|
441
|
+
@maintenance_details.setter
|
442
|
+
def maintenance_details(self, value: Optional[pulumi.Input['ClusterMaintenanceDetailsArgs']]):
|
443
|
+
pulumi.set(self, "maintenance_details", value)
|
444
|
+
|
387
445
|
@property
|
388
446
|
@pulumi.getter(name="masterNodeHostBareMetalShape")
|
389
447
|
def master_node_host_bare_metal_shape(self) -> Optional[pulumi.Input[str]]:
|
@@ -396,6 +454,30 @@ class ClusterArgs:
|
|
396
454
|
def master_node_host_bare_metal_shape(self, value: Optional[pulumi.Input[str]]):
|
397
455
|
pulumi.set(self, "master_node_host_bare_metal_shape", value)
|
398
456
|
|
457
|
+
@property
|
458
|
+
@pulumi.getter(name="outboundClusterConfig")
|
459
|
+
def outbound_cluster_config(self) -> Optional[pulumi.Input['ClusterOutboundClusterConfigArgs']]:
|
460
|
+
"""
|
461
|
+
(Updatable) This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
|
462
|
+
"""
|
463
|
+
return pulumi.get(self, "outbound_cluster_config")
|
464
|
+
|
465
|
+
@outbound_cluster_config.setter
|
466
|
+
def outbound_cluster_config(self, value: Optional[pulumi.Input['ClusterOutboundClusterConfigArgs']]):
|
467
|
+
pulumi.set(self, "outbound_cluster_config", value)
|
468
|
+
|
469
|
+
@property
|
470
|
+
@pulumi.getter(name="reverseConnectionEndpointCustomerIps")
|
471
|
+
def reverse_connection_endpoint_customer_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
472
|
+
"""
|
473
|
+
(Updatable) The customer IP addresses of the endpoint in customer VCN
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "reverse_connection_endpoint_customer_ips")
|
476
|
+
|
477
|
+
@reverse_connection_endpoint_customer_ips.setter
|
478
|
+
def reverse_connection_endpoint_customer_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
479
|
+
pulumi.set(self, "reverse_connection_endpoint_customer_ips", value)
|
480
|
+
|
399
481
|
@property
|
400
482
|
@pulumi.getter(name="securityMasterUserName")
|
401
483
|
def security_master_user_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -450,6 +532,7 @@ class _ClusterState:
|
|
450
532
|
def __init__(__self__, *,
|
451
533
|
availability_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
452
534
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
535
|
+
configure_outbound_cluster_trigger: Optional[pulumi.Input[int]] = None,
|
453
536
|
data_node_count: Optional[pulumi.Input[int]] = None,
|
454
537
|
data_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
455
538
|
data_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -460,7 +543,9 @@ class _ClusterState:
|
|
460
543
|
display_name: Optional[pulumi.Input[str]] = None,
|
461
544
|
fqdn: Optional[pulumi.Input[str]] = None,
|
462
545
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
546
|
+
inbound_cluster_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
463
547
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
548
|
+
maintenance_details: Optional[pulumi.Input['ClusterMaintenanceDetailsArgs']] = None,
|
464
549
|
master_node_count: Optional[pulumi.Input[int]] = None,
|
465
550
|
master_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
466
551
|
master_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -473,6 +558,9 @@ class _ClusterState:
|
|
473
558
|
opendashboard_private_ip: Optional[pulumi.Input[str]] = None,
|
474
559
|
opensearch_fqdn: Optional[pulumi.Input[str]] = None,
|
475
560
|
opensearch_private_ip: Optional[pulumi.Input[str]] = None,
|
561
|
+
outbound_cluster_config: Optional[pulumi.Input['ClusterOutboundClusterConfigArgs']] = None,
|
562
|
+
reverse_connection_endpoint_customer_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
563
|
+
reverse_connection_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterReverseConnectionEndpointArgs']]]] = None,
|
476
564
|
security_master_user_name: Optional[pulumi.Input[str]] = None,
|
477
565
|
security_master_user_password_hash: Optional[pulumi.Input[str]] = None,
|
478
566
|
security_mode: Optional[pulumi.Input[str]] = None,
|
@@ -491,6 +579,11 @@ class _ClusterState:
|
|
491
579
|
Input properties used for looking up and filtering Cluster resources.
|
492
580
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] availability_domains: The availability domains to distribute the cluser nodes across.
|
493
581
|
:param pulumi.Input[str] compartment_id: The OCID of the compartment to create the cluster in.
|
582
|
+
:param pulumi.Input[int] configure_outbound_cluster_trigger: (Updatable) An optional property when incremented triggers Configure Outbound Cluster. Could be set to any integer value.
|
583
|
+
|
584
|
+
|
585
|
+
** IMPORTANT **
|
586
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
494
587
|
:param pulumi.Input[int] data_node_count: (Updatable) The number of data nodes to configure for the cluster.
|
495
588
|
:param pulumi.Input[str] data_node_host_bare_metal_shape: The bare metal shape for the cluster's data nodes.
|
496
589
|
:param pulumi.Input[int] data_node_host_memory_gb: (Updatable) The amount of memory in GB, to configure per node for the cluster's data nodes.
|
@@ -501,7 +594,9 @@ class _ClusterState:
|
|
501
594
|
:param pulumi.Input[str] display_name: (Updatable) The name of the cluster. Avoid entering confidential information.
|
502
595
|
:param pulumi.Input[str] fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
503
596
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
597
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_cluster_ids: List of inbound clusters that will be queried using cross cluster search
|
504
598
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state of the cluster.
|
599
|
+
:param pulumi.Input['ClusterMaintenanceDetailsArgs'] maintenance_details: (Updatable) Details for creation of maintenance details
|
505
600
|
:param pulumi.Input[int] master_node_count: (Updatable) The number of master nodes to configure for the cluster.
|
506
601
|
:param pulumi.Input[str] master_node_host_bare_metal_shape: The bare metal shape for the cluster's master nodes.
|
507
602
|
:param pulumi.Input[int] master_node_host_memory_gb: (Updatable) The amount of memory in GB, to configure per node for the cluster's master nodes.
|
@@ -514,6 +609,9 @@ class _ClusterState:
|
|
514
609
|
:param pulumi.Input[str] opendashboard_private_ip: The private IP address for the cluster's OpenSearch Dashboard.
|
515
610
|
:param pulumi.Input[str] opensearch_fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
516
611
|
:param pulumi.Input[str] opensearch_private_ip: The cluster's private IP address.
|
612
|
+
:param pulumi.Input['ClusterOutboundClusterConfigArgs'] outbound_cluster_config: (Updatable) This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
|
613
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] reverse_connection_endpoint_customer_ips: (Updatable) The customer IP addresses of the endpoint in customer VCN
|
614
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterReverseConnectionEndpointArgs']]] reverse_connection_endpoints: The list of reverse connection endpoints.
|
517
615
|
:param pulumi.Input[str] security_master_user_name: (Updatable) The name of the master user that are used to manage security config
|
518
616
|
:param pulumi.Input[str] security_master_user_password_hash: (Updatable) The password hash of the master user that are used to manage security config
|
519
617
|
:param pulumi.Input[str] security_mode: (Updatable) The security mode of the cluster.
|
@@ -528,15 +626,13 @@ class _ClusterState:
|
|
528
626
|
:param pulumi.Input[int] total_storage_gb: The size in GB of the cluster's total storage.
|
529
627
|
:param pulumi.Input[str] vcn_compartment_id: The OCID for the compartment where the cluster's VCN is located.
|
530
628
|
:param pulumi.Input[str] vcn_id: The OCID of the cluster's VCN.
|
531
|
-
|
532
|
-
|
533
|
-
** IMPORTANT **
|
534
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
535
629
|
"""
|
536
630
|
if availability_domains is not None:
|
537
631
|
pulumi.set(__self__, "availability_domains", availability_domains)
|
538
632
|
if compartment_id is not None:
|
539
633
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
634
|
+
if configure_outbound_cluster_trigger is not None:
|
635
|
+
pulumi.set(__self__, "configure_outbound_cluster_trigger", configure_outbound_cluster_trigger)
|
540
636
|
if data_node_count is not None:
|
541
637
|
pulumi.set(__self__, "data_node_count", data_node_count)
|
542
638
|
if data_node_host_bare_metal_shape is not None:
|
@@ -557,8 +653,12 @@ class _ClusterState:
|
|
557
653
|
pulumi.set(__self__, "fqdn", fqdn)
|
558
654
|
if freeform_tags is not None:
|
559
655
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
656
|
+
if inbound_cluster_ids is not None:
|
657
|
+
pulumi.set(__self__, "inbound_cluster_ids", inbound_cluster_ids)
|
560
658
|
if lifecycle_details is not None:
|
561
659
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
660
|
+
if maintenance_details is not None:
|
661
|
+
pulumi.set(__self__, "maintenance_details", maintenance_details)
|
562
662
|
if master_node_count is not None:
|
563
663
|
pulumi.set(__self__, "master_node_count", master_node_count)
|
564
664
|
if master_node_host_bare_metal_shape is not None:
|
@@ -583,6 +683,12 @@ class _ClusterState:
|
|
583
683
|
pulumi.set(__self__, "opensearch_fqdn", opensearch_fqdn)
|
584
684
|
if opensearch_private_ip is not None:
|
585
685
|
pulumi.set(__self__, "opensearch_private_ip", opensearch_private_ip)
|
686
|
+
if outbound_cluster_config is not None:
|
687
|
+
pulumi.set(__self__, "outbound_cluster_config", outbound_cluster_config)
|
688
|
+
if reverse_connection_endpoint_customer_ips is not None:
|
689
|
+
pulumi.set(__self__, "reverse_connection_endpoint_customer_ips", reverse_connection_endpoint_customer_ips)
|
690
|
+
if reverse_connection_endpoints is not None:
|
691
|
+
pulumi.set(__self__, "reverse_connection_endpoints", reverse_connection_endpoints)
|
586
692
|
if security_master_user_name is not None:
|
587
693
|
pulumi.set(__self__, "security_master_user_name", security_master_user_name)
|
588
694
|
if security_master_user_password_hash is not None:
|
@@ -636,6 +742,22 @@ class _ClusterState:
|
|
636
742
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
637
743
|
pulumi.set(self, "compartment_id", value)
|
638
744
|
|
745
|
+
@property
|
746
|
+
@pulumi.getter(name="configureOutboundClusterTrigger")
|
747
|
+
def configure_outbound_cluster_trigger(self) -> Optional[pulumi.Input[int]]:
|
748
|
+
"""
|
749
|
+
(Updatable) An optional property when incremented triggers Configure Outbound Cluster. Could be set to any integer value.
|
750
|
+
|
751
|
+
|
752
|
+
** IMPORTANT **
|
753
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
754
|
+
"""
|
755
|
+
return pulumi.get(self, "configure_outbound_cluster_trigger")
|
756
|
+
|
757
|
+
@configure_outbound_cluster_trigger.setter
|
758
|
+
def configure_outbound_cluster_trigger(self, value: Optional[pulumi.Input[int]]):
|
759
|
+
pulumi.set(self, "configure_outbound_cluster_trigger", value)
|
760
|
+
|
639
761
|
@property
|
640
762
|
@pulumi.getter(name="dataNodeCount")
|
641
763
|
def data_node_count(self) -> Optional[pulumi.Input[int]]:
|
@@ -756,6 +878,18 @@ class _ClusterState:
|
|
756
878
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
757
879
|
pulumi.set(self, "freeform_tags", value)
|
758
880
|
|
881
|
+
@property
|
882
|
+
@pulumi.getter(name="inboundClusterIds")
|
883
|
+
def inbound_cluster_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
884
|
+
"""
|
885
|
+
List of inbound clusters that will be queried using cross cluster search
|
886
|
+
"""
|
887
|
+
return pulumi.get(self, "inbound_cluster_ids")
|
888
|
+
|
889
|
+
@inbound_cluster_ids.setter
|
890
|
+
def inbound_cluster_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
891
|
+
pulumi.set(self, "inbound_cluster_ids", value)
|
892
|
+
|
759
893
|
@property
|
760
894
|
@pulumi.getter(name="lifecycleDetails")
|
761
895
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -768,6 +902,18 @@ class _ClusterState:
|
|
768
902
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
769
903
|
pulumi.set(self, "lifecycle_details", value)
|
770
904
|
|
905
|
+
@property
|
906
|
+
@pulumi.getter(name="maintenanceDetails")
|
907
|
+
def maintenance_details(self) -> Optional[pulumi.Input['ClusterMaintenanceDetailsArgs']]:
|
908
|
+
"""
|
909
|
+
(Updatable) Details for creation of maintenance details
|
910
|
+
"""
|
911
|
+
return pulumi.get(self, "maintenance_details")
|
912
|
+
|
913
|
+
@maintenance_details.setter
|
914
|
+
def maintenance_details(self, value: Optional[pulumi.Input['ClusterMaintenanceDetailsArgs']]):
|
915
|
+
pulumi.set(self, "maintenance_details", value)
|
916
|
+
|
771
917
|
@property
|
772
918
|
@pulumi.getter(name="masterNodeCount")
|
773
919
|
def master_node_count(self) -> Optional[pulumi.Input[int]]:
|
@@ -912,6 +1058,42 @@ class _ClusterState:
|
|
912
1058
|
def opensearch_private_ip(self, value: Optional[pulumi.Input[str]]):
|
913
1059
|
pulumi.set(self, "opensearch_private_ip", value)
|
914
1060
|
|
1061
|
+
@property
|
1062
|
+
@pulumi.getter(name="outboundClusterConfig")
|
1063
|
+
def outbound_cluster_config(self) -> Optional[pulumi.Input['ClusterOutboundClusterConfigArgs']]:
|
1064
|
+
"""
|
1065
|
+
(Updatable) This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
|
1066
|
+
"""
|
1067
|
+
return pulumi.get(self, "outbound_cluster_config")
|
1068
|
+
|
1069
|
+
@outbound_cluster_config.setter
|
1070
|
+
def outbound_cluster_config(self, value: Optional[pulumi.Input['ClusterOutboundClusterConfigArgs']]):
|
1071
|
+
pulumi.set(self, "outbound_cluster_config", value)
|
1072
|
+
|
1073
|
+
@property
|
1074
|
+
@pulumi.getter(name="reverseConnectionEndpointCustomerIps")
|
1075
|
+
def reverse_connection_endpoint_customer_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1076
|
+
"""
|
1077
|
+
(Updatable) The customer IP addresses of the endpoint in customer VCN
|
1078
|
+
"""
|
1079
|
+
return pulumi.get(self, "reverse_connection_endpoint_customer_ips")
|
1080
|
+
|
1081
|
+
@reverse_connection_endpoint_customer_ips.setter
|
1082
|
+
def reverse_connection_endpoint_customer_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1083
|
+
pulumi.set(self, "reverse_connection_endpoint_customer_ips", value)
|
1084
|
+
|
1085
|
+
@property
|
1086
|
+
@pulumi.getter(name="reverseConnectionEndpoints")
|
1087
|
+
def reverse_connection_endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterReverseConnectionEndpointArgs']]]]:
|
1088
|
+
"""
|
1089
|
+
The list of reverse connection endpoints.
|
1090
|
+
"""
|
1091
|
+
return pulumi.get(self, "reverse_connection_endpoints")
|
1092
|
+
|
1093
|
+
@reverse_connection_endpoints.setter
|
1094
|
+
def reverse_connection_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterReverseConnectionEndpointArgs']]]]):
|
1095
|
+
pulumi.set(self, "reverse_connection_endpoints", value)
|
1096
|
+
|
915
1097
|
@property
|
916
1098
|
@pulumi.getter(name="securityMasterUserName")
|
917
1099
|
def security_master_user_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -1073,10 +1255,6 @@ class _ClusterState:
|
|
1073
1255
|
def vcn_id(self) -> Optional[pulumi.Input[str]]:
|
1074
1256
|
"""
|
1075
1257
|
The OCID of the cluster's VCN.
|
1076
|
-
|
1077
|
-
|
1078
|
-
** IMPORTANT **
|
1079
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1080
1258
|
"""
|
1081
1259
|
return pulumi.get(self, "vcn_id")
|
1082
1260
|
|
@@ -1091,6 +1269,7 @@ class Cluster(pulumi.CustomResource):
|
|
1091
1269
|
resource_name: str,
|
1092
1270
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1093
1271
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1272
|
+
configure_outbound_cluster_trigger: Optional[pulumi.Input[int]] = None,
|
1094
1273
|
data_node_count: Optional[pulumi.Input[int]] = None,
|
1095
1274
|
data_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
1096
1275
|
data_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -1100,6 +1279,8 @@ class Cluster(pulumi.CustomResource):
|
|
1100
1279
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1101
1280
|
display_name: Optional[pulumi.Input[str]] = None,
|
1102
1281
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1282
|
+
inbound_cluster_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1283
|
+
maintenance_details: Optional[pulumi.Input[Union['ClusterMaintenanceDetailsArgs', 'ClusterMaintenanceDetailsArgsDict']]] = None,
|
1103
1284
|
master_node_count: Optional[pulumi.Input[int]] = None,
|
1104
1285
|
master_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
1105
1286
|
master_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -1108,6 +1289,8 @@ class Cluster(pulumi.CustomResource):
|
|
1108
1289
|
opendashboard_node_count: Optional[pulumi.Input[int]] = None,
|
1109
1290
|
opendashboard_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
1110
1291
|
opendashboard_node_host_ocpu_count: Optional[pulumi.Input[int]] = None,
|
1292
|
+
outbound_cluster_config: Optional[pulumi.Input[Union['ClusterOutboundClusterConfigArgs', 'ClusterOutboundClusterConfigArgsDict']]] = None,
|
1293
|
+
reverse_connection_endpoint_customer_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1111
1294
|
security_master_user_name: Optional[pulumi.Input[str]] = None,
|
1112
1295
|
security_master_user_password_hash: Optional[pulumi.Input[str]] = None,
|
1113
1296
|
security_mode: Optional[pulumi.Input[str]] = None,
|
@@ -1132,46 +1315,6 @@ class Cluster(pulumi.CustomResource):
|
|
1132
1315
|
For latest documentation on OpenSearch use please refer to https://docs.oracle.com/en-us/iaas/Content/search-opensearch/home.htm\\
|
1133
1316
|
Required permissions: https://docs.oracle.com/en-us/iaas/Content/search-opensearch/Concepts/ocisearchpermissions.htm
|
1134
1317
|
|
1135
|
-
## Example Usage
|
1136
|
-
|
1137
|
-
```python
|
1138
|
-
import pulumi
|
1139
|
-
import pulumi_oci as oci
|
1140
|
-
|
1141
|
-
test_opensearch_cluster = oci.opensearch.Cluster("test_opensearch_cluster",
|
1142
|
-
compartment_id=compartment_id,
|
1143
|
-
data_node_count=opensearch_cluster_data_node_count,
|
1144
|
-
data_node_host_memory_gb=opensearch_cluster_data_node_host_memory_gb,
|
1145
|
-
data_node_host_ocpu_count=opensearch_cluster_data_node_host_ocpu_count,
|
1146
|
-
data_node_host_type=opensearch_cluster_data_node_host_type,
|
1147
|
-
data_node_storage_gb=opensearch_cluster_data_node_storage_gb,
|
1148
|
-
display_name=opensearch_cluster_display_name,
|
1149
|
-
master_node_count=opensearch_cluster_master_node_count,
|
1150
|
-
master_node_host_memory_gb=opensearch_cluster_master_node_host_memory_gb,
|
1151
|
-
master_node_host_ocpu_count=opensearch_cluster_master_node_host_ocpu_count,
|
1152
|
-
master_node_host_type=opensearch_cluster_master_node_host_type,
|
1153
|
-
opendashboard_node_count=opensearch_cluster_opendashboard_node_count,
|
1154
|
-
opendashboard_node_host_memory_gb=opensearch_cluster_opendashboard_node_host_memory_gb,
|
1155
|
-
opendashboard_node_host_ocpu_count=opensearch_cluster_opendashboard_node_host_ocpu_count,
|
1156
|
-
software_version=opensearch_cluster_software_version,
|
1157
|
-
subnet_compartment_id=test_compartment["id"],
|
1158
|
-
subnet_id=test_subnet["id"],
|
1159
|
-
vcn_compartment_id=test_compartment["id"],
|
1160
|
-
vcn_id=test_vcn["id"],
|
1161
|
-
data_node_host_bare_metal_shape=opensearch_cluster_data_node_host_bare_metal_shape,
|
1162
|
-
defined_tags={
|
1163
|
-
"foo-namespace.bar-key": "value",
|
1164
|
-
},
|
1165
|
-
freeform_tags={
|
1166
|
-
"bar-key": "value",
|
1167
|
-
},
|
1168
|
-
master_node_host_bare_metal_shape=opensearch_cluster_master_node_host_bare_metal_shape,
|
1169
|
-
security_master_user_name=test_user["name"],
|
1170
|
-
security_master_user_password_hash=opensearch_cluster_security_master_user_password_hash,
|
1171
|
-
security_mode=opensearch_cluster_security_mode,
|
1172
|
-
system_tags=opensearch_cluster_system_tags)
|
1173
|
-
```
|
1174
|
-
|
1175
1318
|
## Import
|
1176
1319
|
|
1177
1320
|
OpensearchClusters can be imported using the `id`, e.g.
|
@@ -1183,6 +1326,11 @@ class Cluster(pulumi.CustomResource):
|
|
1183
1326
|
:param str resource_name: The name of the resource.
|
1184
1327
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1185
1328
|
:param pulumi.Input[str] compartment_id: The OCID of the compartment to create the cluster in.
|
1329
|
+
:param pulumi.Input[int] configure_outbound_cluster_trigger: (Updatable) An optional property when incremented triggers Configure Outbound Cluster. Could be set to any integer value.
|
1330
|
+
|
1331
|
+
|
1332
|
+
** IMPORTANT **
|
1333
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1186
1334
|
:param pulumi.Input[int] data_node_count: (Updatable) The number of data nodes to configure for the cluster.
|
1187
1335
|
:param pulumi.Input[str] data_node_host_bare_metal_shape: The bare metal shape for the cluster's data nodes.
|
1188
1336
|
:param pulumi.Input[int] data_node_host_memory_gb: (Updatable) The amount of memory in GB, to configure per node for the cluster's data nodes.
|
@@ -1192,6 +1340,8 @@ class Cluster(pulumi.CustomResource):
|
|
1192
1340
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1193
1341
|
:param pulumi.Input[str] display_name: (Updatable) The name of the cluster. Avoid entering confidential information.
|
1194
1342
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1343
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_cluster_ids: List of inbound clusters that will be queried using cross cluster search
|
1344
|
+
:param pulumi.Input[Union['ClusterMaintenanceDetailsArgs', 'ClusterMaintenanceDetailsArgsDict']] maintenance_details: (Updatable) Details for creation of maintenance details
|
1195
1345
|
:param pulumi.Input[int] master_node_count: (Updatable) The number of master nodes to configure for the cluster.
|
1196
1346
|
:param pulumi.Input[str] master_node_host_bare_metal_shape: The bare metal shape for the cluster's master nodes.
|
1197
1347
|
:param pulumi.Input[int] master_node_host_memory_gb: (Updatable) The amount of memory in GB, to configure per node for the cluster's master nodes.
|
@@ -1200,6 +1350,8 @@ class Cluster(pulumi.CustomResource):
|
|
1200
1350
|
:param pulumi.Input[int] opendashboard_node_count: (Updatable) The number of OpenSearch Dashboard nodes to configure for the cluster.
|
1201
1351
|
:param pulumi.Input[int] opendashboard_node_host_memory_gb: (Updatable) The amount of memory in GB, to configure for the cluster's OpenSearch Dashboard nodes.
|
1202
1352
|
:param pulumi.Input[int] opendashboard_node_host_ocpu_count: (Updatable) The number of OCPUs to configure for the cluster's OpenSearch Dashboard nodes.
|
1353
|
+
:param pulumi.Input[Union['ClusterOutboundClusterConfigArgs', 'ClusterOutboundClusterConfigArgsDict']] outbound_cluster_config: (Updatable) This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
|
1354
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] reverse_connection_endpoint_customer_ips: (Updatable) The customer IP addresses of the endpoint in customer VCN
|
1203
1355
|
:param pulumi.Input[str] security_master_user_name: (Updatable) The name of the master user that are used to manage security config
|
1204
1356
|
:param pulumi.Input[str] security_master_user_password_hash: (Updatable) The password hash of the master user that are used to manage security config
|
1205
1357
|
:param pulumi.Input[str] security_mode: (Updatable) The security mode of the cluster.
|
@@ -1209,10 +1361,6 @@ class Cluster(pulumi.CustomResource):
|
|
1209
1361
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1210
1362
|
:param pulumi.Input[str] vcn_compartment_id: The OCID for the compartment where the cluster's VCN is located.
|
1211
1363
|
:param pulumi.Input[str] vcn_id: The OCID of the cluster's VCN.
|
1212
|
-
|
1213
|
-
|
1214
|
-
** IMPORTANT **
|
1215
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1216
1364
|
"""
|
1217
1365
|
...
|
1218
1366
|
@overload
|
@@ -1234,46 +1382,6 @@ class Cluster(pulumi.CustomResource):
|
|
1234
1382
|
For latest documentation on OpenSearch use please refer to https://docs.oracle.com/en-us/iaas/Content/search-opensearch/home.htm\\
|
1235
1383
|
Required permissions: https://docs.oracle.com/en-us/iaas/Content/search-opensearch/Concepts/ocisearchpermissions.htm
|
1236
1384
|
|
1237
|
-
## Example Usage
|
1238
|
-
|
1239
|
-
```python
|
1240
|
-
import pulumi
|
1241
|
-
import pulumi_oci as oci
|
1242
|
-
|
1243
|
-
test_opensearch_cluster = oci.opensearch.Cluster("test_opensearch_cluster",
|
1244
|
-
compartment_id=compartment_id,
|
1245
|
-
data_node_count=opensearch_cluster_data_node_count,
|
1246
|
-
data_node_host_memory_gb=opensearch_cluster_data_node_host_memory_gb,
|
1247
|
-
data_node_host_ocpu_count=opensearch_cluster_data_node_host_ocpu_count,
|
1248
|
-
data_node_host_type=opensearch_cluster_data_node_host_type,
|
1249
|
-
data_node_storage_gb=opensearch_cluster_data_node_storage_gb,
|
1250
|
-
display_name=opensearch_cluster_display_name,
|
1251
|
-
master_node_count=opensearch_cluster_master_node_count,
|
1252
|
-
master_node_host_memory_gb=opensearch_cluster_master_node_host_memory_gb,
|
1253
|
-
master_node_host_ocpu_count=opensearch_cluster_master_node_host_ocpu_count,
|
1254
|
-
master_node_host_type=opensearch_cluster_master_node_host_type,
|
1255
|
-
opendashboard_node_count=opensearch_cluster_opendashboard_node_count,
|
1256
|
-
opendashboard_node_host_memory_gb=opensearch_cluster_opendashboard_node_host_memory_gb,
|
1257
|
-
opendashboard_node_host_ocpu_count=opensearch_cluster_opendashboard_node_host_ocpu_count,
|
1258
|
-
software_version=opensearch_cluster_software_version,
|
1259
|
-
subnet_compartment_id=test_compartment["id"],
|
1260
|
-
subnet_id=test_subnet["id"],
|
1261
|
-
vcn_compartment_id=test_compartment["id"],
|
1262
|
-
vcn_id=test_vcn["id"],
|
1263
|
-
data_node_host_bare_metal_shape=opensearch_cluster_data_node_host_bare_metal_shape,
|
1264
|
-
defined_tags={
|
1265
|
-
"foo-namespace.bar-key": "value",
|
1266
|
-
},
|
1267
|
-
freeform_tags={
|
1268
|
-
"bar-key": "value",
|
1269
|
-
},
|
1270
|
-
master_node_host_bare_metal_shape=opensearch_cluster_master_node_host_bare_metal_shape,
|
1271
|
-
security_master_user_name=test_user["name"],
|
1272
|
-
security_master_user_password_hash=opensearch_cluster_security_master_user_password_hash,
|
1273
|
-
security_mode=opensearch_cluster_security_mode,
|
1274
|
-
system_tags=opensearch_cluster_system_tags)
|
1275
|
-
```
|
1276
|
-
|
1277
1385
|
## Import
|
1278
1386
|
|
1279
1387
|
OpensearchClusters can be imported using the `id`, e.g.
|
@@ -1298,6 +1406,7 @@ class Cluster(pulumi.CustomResource):
|
|
1298
1406
|
resource_name: str,
|
1299
1407
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1300
1408
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1409
|
+
configure_outbound_cluster_trigger: Optional[pulumi.Input[int]] = None,
|
1301
1410
|
data_node_count: Optional[pulumi.Input[int]] = None,
|
1302
1411
|
data_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
1303
1412
|
data_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -1307,6 +1416,8 @@ class Cluster(pulumi.CustomResource):
|
|
1307
1416
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1308
1417
|
display_name: Optional[pulumi.Input[str]] = None,
|
1309
1418
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1419
|
+
inbound_cluster_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1420
|
+
maintenance_details: Optional[pulumi.Input[Union['ClusterMaintenanceDetailsArgs', 'ClusterMaintenanceDetailsArgsDict']]] = None,
|
1310
1421
|
master_node_count: Optional[pulumi.Input[int]] = None,
|
1311
1422
|
master_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
1312
1423
|
master_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -1315,6 +1426,8 @@ class Cluster(pulumi.CustomResource):
|
|
1315
1426
|
opendashboard_node_count: Optional[pulumi.Input[int]] = None,
|
1316
1427
|
opendashboard_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
1317
1428
|
opendashboard_node_host_ocpu_count: Optional[pulumi.Input[int]] = None,
|
1429
|
+
outbound_cluster_config: Optional[pulumi.Input[Union['ClusterOutboundClusterConfigArgs', 'ClusterOutboundClusterConfigArgsDict']]] = None,
|
1430
|
+
reverse_connection_endpoint_customer_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1318
1431
|
security_master_user_name: Optional[pulumi.Input[str]] = None,
|
1319
1432
|
security_master_user_password_hash: Optional[pulumi.Input[str]] = None,
|
1320
1433
|
security_mode: Optional[pulumi.Input[str]] = None,
|
@@ -1336,6 +1449,7 @@ class Cluster(pulumi.CustomResource):
|
|
1336
1449
|
if compartment_id is None and not opts.urn:
|
1337
1450
|
raise TypeError("Missing required property 'compartment_id'")
|
1338
1451
|
__props__.__dict__["compartment_id"] = compartment_id
|
1452
|
+
__props__.__dict__["configure_outbound_cluster_trigger"] = configure_outbound_cluster_trigger
|
1339
1453
|
if data_node_count is None and not opts.urn:
|
1340
1454
|
raise TypeError("Missing required property 'data_node_count'")
|
1341
1455
|
__props__.__dict__["data_node_count"] = data_node_count
|
@@ -1357,6 +1471,8 @@ class Cluster(pulumi.CustomResource):
|
|
1357
1471
|
raise TypeError("Missing required property 'display_name'")
|
1358
1472
|
__props__.__dict__["display_name"] = display_name
|
1359
1473
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1474
|
+
__props__.__dict__["inbound_cluster_ids"] = inbound_cluster_ids
|
1475
|
+
__props__.__dict__["maintenance_details"] = maintenance_details
|
1360
1476
|
if master_node_count is None and not opts.urn:
|
1361
1477
|
raise TypeError("Missing required property 'master_node_count'")
|
1362
1478
|
__props__.__dict__["master_node_count"] = master_node_count
|
@@ -1379,6 +1495,8 @@ class Cluster(pulumi.CustomResource):
|
|
1379
1495
|
if opendashboard_node_host_ocpu_count is None and not opts.urn:
|
1380
1496
|
raise TypeError("Missing required property 'opendashboard_node_host_ocpu_count'")
|
1381
1497
|
__props__.__dict__["opendashboard_node_host_ocpu_count"] = opendashboard_node_host_ocpu_count
|
1498
|
+
__props__.__dict__["outbound_cluster_config"] = outbound_cluster_config
|
1499
|
+
__props__.__dict__["reverse_connection_endpoint_customer_ips"] = reverse_connection_endpoint_customer_ips
|
1382
1500
|
__props__.__dict__["security_master_user_name"] = security_master_user_name
|
1383
1501
|
__props__.__dict__["security_master_user_password_hash"] = None if security_master_user_password_hash is None else pulumi.Output.secret(security_master_user_password_hash)
|
1384
1502
|
__props__.__dict__["security_mode"] = security_mode
|
@@ -1405,6 +1523,7 @@ class Cluster(pulumi.CustomResource):
|
|
1405
1523
|
__props__.__dict__["opendashboard_private_ip"] = None
|
1406
1524
|
__props__.__dict__["opensearch_fqdn"] = None
|
1407
1525
|
__props__.__dict__["opensearch_private_ip"] = None
|
1526
|
+
__props__.__dict__["reverse_connection_endpoints"] = None
|
1408
1527
|
__props__.__dict__["state"] = None
|
1409
1528
|
__props__.__dict__["time_created"] = None
|
1410
1529
|
__props__.__dict__["time_deleted"] = None
|
@@ -1424,6 +1543,7 @@ class Cluster(pulumi.CustomResource):
|
|
1424
1543
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1425
1544
|
availability_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1426
1545
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1546
|
+
configure_outbound_cluster_trigger: Optional[pulumi.Input[int]] = None,
|
1427
1547
|
data_node_count: Optional[pulumi.Input[int]] = None,
|
1428
1548
|
data_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
1429
1549
|
data_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -1434,7 +1554,9 @@ class Cluster(pulumi.CustomResource):
|
|
1434
1554
|
display_name: Optional[pulumi.Input[str]] = None,
|
1435
1555
|
fqdn: Optional[pulumi.Input[str]] = None,
|
1436
1556
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1557
|
+
inbound_cluster_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1437
1558
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
1559
|
+
maintenance_details: Optional[pulumi.Input[Union['ClusterMaintenanceDetailsArgs', 'ClusterMaintenanceDetailsArgsDict']]] = None,
|
1438
1560
|
master_node_count: Optional[pulumi.Input[int]] = None,
|
1439
1561
|
master_node_host_bare_metal_shape: Optional[pulumi.Input[str]] = None,
|
1440
1562
|
master_node_host_memory_gb: Optional[pulumi.Input[int]] = None,
|
@@ -1447,6 +1569,9 @@ class Cluster(pulumi.CustomResource):
|
|
1447
1569
|
opendashboard_private_ip: Optional[pulumi.Input[str]] = None,
|
1448
1570
|
opensearch_fqdn: Optional[pulumi.Input[str]] = None,
|
1449
1571
|
opensearch_private_ip: Optional[pulumi.Input[str]] = None,
|
1572
|
+
outbound_cluster_config: Optional[pulumi.Input[Union['ClusterOutboundClusterConfigArgs', 'ClusterOutboundClusterConfigArgsDict']]] = None,
|
1573
|
+
reverse_connection_endpoint_customer_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1574
|
+
reverse_connection_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterReverseConnectionEndpointArgs', 'ClusterReverseConnectionEndpointArgsDict']]]]] = None,
|
1450
1575
|
security_master_user_name: Optional[pulumi.Input[str]] = None,
|
1451
1576
|
security_master_user_password_hash: Optional[pulumi.Input[str]] = None,
|
1452
1577
|
security_mode: Optional[pulumi.Input[str]] = None,
|
@@ -1470,6 +1595,11 @@ class Cluster(pulumi.CustomResource):
|
|
1470
1595
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1471
1596
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] availability_domains: The availability domains to distribute the cluser nodes across.
|
1472
1597
|
:param pulumi.Input[str] compartment_id: The OCID of the compartment to create the cluster in.
|
1598
|
+
:param pulumi.Input[int] configure_outbound_cluster_trigger: (Updatable) An optional property when incremented triggers Configure Outbound Cluster. Could be set to any integer value.
|
1599
|
+
|
1600
|
+
|
1601
|
+
** IMPORTANT **
|
1602
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1473
1603
|
:param pulumi.Input[int] data_node_count: (Updatable) The number of data nodes to configure for the cluster.
|
1474
1604
|
:param pulumi.Input[str] data_node_host_bare_metal_shape: The bare metal shape for the cluster's data nodes.
|
1475
1605
|
:param pulumi.Input[int] data_node_host_memory_gb: (Updatable) The amount of memory in GB, to configure per node for the cluster's data nodes.
|
@@ -1480,7 +1610,9 @@ class Cluster(pulumi.CustomResource):
|
|
1480
1610
|
:param pulumi.Input[str] display_name: (Updatable) The name of the cluster. Avoid entering confidential information.
|
1481
1611
|
:param pulumi.Input[str] fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
1482
1612
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1613
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_cluster_ids: List of inbound clusters that will be queried using cross cluster search
|
1483
1614
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state of the cluster.
|
1615
|
+
:param pulumi.Input[Union['ClusterMaintenanceDetailsArgs', 'ClusterMaintenanceDetailsArgsDict']] maintenance_details: (Updatable) Details for creation of maintenance details
|
1484
1616
|
:param pulumi.Input[int] master_node_count: (Updatable) The number of master nodes to configure for the cluster.
|
1485
1617
|
:param pulumi.Input[str] master_node_host_bare_metal_shape: The bare metal shape for the cluster's master nodes.
|
1486
1618
|
:param pulumi.Input[int] master_node_host_memory_gb: (Updatable) The amount of memory in GB, to configure per node for the cluster's master nodes.
|
@@ -1493,6 +1625,9 @@ class Cluster(pulumi.CustomResource):
|
|
1493
1625
|
:param pulumi.Input[str] opendashboard_private_ip: The private IP address for the cluster's OpenSearch Dashboard.
|
1494
1626
|
:param pulumi.Input[str] opensearch_fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
1495
1627
|
:param pulumi.Input[str] opensearch_private_ip: The cluster's private IP address.
|
1628
|
+
:param pulumi.Input[Union['ClusterOutboundClusterConfigArgs', 'ClusterOutboundClusterConfigArgsDict']] outbound_cluster_config: (Updatable) This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
|
1629
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] reverse_connection_endpoint_customer_ips: (Updatable) The customer IP addresses of the endpoint in customer VCN
|
1630
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ClusterReverseConnectionEndpointArgs', 'ClusterReverseConnectionEndpointArgsDict']]]] reverse_connection_endpoints: The list of reverse connection endpoints.
|
1496
1631
|
:param pulumi.Input[str] security_master_user_name: (Updatable) The name of the master user that are used to manage security config
|
1497
1632
|
:param pulumi.Input[str] security_master_user_password_hash: (Updatable) The password hash of the master user that are used to manage security config
|
1498
1633
|
:param pulumi.Input[str] security_mode: (Updatable) The security mode of the cluster.
|
@@ -1507,10 +1642,6 @@ class Cluster(pulumi.CustomResource):
|
|
1507
1642
|
:param pulumi.Input[int] total_storage_gb: The size in GB of the cluster's total storage.
|
1508
1643
|
:param pulumi.Input[str] vcn_compartment_id: The OCID for the compartment where the cluster's VCN is located.
|
1509
1644
|
:param pulumi.Input[str] vcn_id: The OCID of the cluster's VCN.
|
1510
|
-
|
1511
|
-
|
1512
|
-
** IMPORTANT **
|
1513
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1514
1645
|
"""
|
1515
1646
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1516
1647
|
|
@@ -1518,6 +1649,7 @@ class Cluster(pulumi.CustomResource):
|
|
1518
1649
|
|
1519
1650
|
__props__.__dict__["availability_domains"] = availability_domains
|
1520
1651
|
__props__.__dict__["compartment_id"] = compartment_id
|
1652
|
+
__props__.__dict__["configure_outbound_cluster_trigger"] = configure_outbound_cluster_trigger
|
1521
1653
|
__props__.__dict__["data_node_count"] = data_node_count
|
1522
1654
|
__props__.__dict__["data_node_host_bare_metal_shape"] = data_node_host_bare_metal_shape
|
1523
1655
|
__props__.__dict__["data_node_host_memory_gb"] = data_node_host_memory_gb
|
@@ -1528,7 +1660,9 @@ class Cluster(pulumi.CustomResource):
|
|
1528
1660
|
__props__.__dict__["display_name"] = display_name
|
1529
1661
|
__props__.__dict__["fqdn"] = fqdn
|
1530
1662
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1663
|
+
__props__.__dict__["inbound_cluster_ids"] = inbound_cluster_ids
|
1531
1664
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
1665
|
+
__props__.__dict__["maintenance_details"] = maintenance_details
|
1532
1666
|
__props__.__dict__["master_node_count"] = master_node_count
|
1533
1667
|
__props__.__dict__["master_node_host_bare_metal_shape"] = master_node_host_bare_metal_shape
|
1534
1668
|
__props__.__dict__["master_node_host_memory_gb"] = master_node_host_memory_gb
|
@@ -1541,6 +1675,9 @@ class Cluster(pulumi.CustomResource):
|
|
1541
1675
|
__props__.__dict__["opendashboard_private_ip"] = opendashboard_private_ip
|
1542
1676
|
__props__.__dict__["opensearch_fqdn"] = opensearch_fqdn
|
1543
1677
|
__props__.__dict__["opensearch_private_ip"] = opensearch_private_ip
|
1678
|
+
__props__.__dict__["outbound_cluster_config"] = outbound_cluster_config
|
1679
|
+
__props__.__dict__["reverse_connection_endpoint_customer_ips"] = reverse_connection_endpoint_customer_ips
|
1680
|
+
__props__.__dict__["reverse_connection_endpoints"] = reverse_connection_endpoints
|
1544
1681
|
__props__.__dict__["security_master_user_name"] = security_master_user_name
|
1545
1682
|
__props__.__dict__["security_master_user_password_hash"] = security_master_user_password_hash
|
1546
1683
|
__props__.__dict__["security_mode"] = security_mode
|
@@ -1573,6 +1710,18 @@ class Cluster(pulumi.CustomResource):
|
|
1573
1710
|
"""
|
1574
1711
|
return pulumi.get(self, "compartment_id")
|
1575
1712
|
|
1713
|
+
@property
|
1714
|
+
@pulumi.getter(name="configureOutboundClusterTrigger")
|
1715
|
+
def configure_outbound_cluster_trigger(self) -> pulumi.Output[Optional[int]]:
|
1716
|
+
"""
|
1717
|
+
(Updatable) An optional property when incremented triggers Configure Outbound Cluster. Could be set to any integer value.
|
1718
|
+
|
1719
|
+
|
1720
|
+
** IMPORTANT **
|
1721
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1722
|
+
"""
|
1723
|
+
return pulumi.get(self, "configure_outbound_cluster_trigger")
|
1724
|
+
|
1576
1725
|
@property
|
1577
1726
|
@pulumi.getter(name="dataNodeCount")
|
1578
1727
|
def data_node_count(self) -> pulumi.Output[int]:
|
@@ -1653,6 +1802,14 @@ class Cluster(pulumi.CustomResource):
|
|
1653
1802
|
"""
|
1654
1803
|
return pulumi.get(self, "freeform_tags")
|
1655
1804
|
|
1805
|
+
@property
|
1806
|
+
@pulumi.getter(name="inboundClusterIds")
|
1807
|
+
def inbound_cluster_ids(self) -> pulumi.Output[Sequence[str]]:
|
1808
|
+
"""
|
1809
|
+
List of inbound clusters that will be queried using cross cluster search
|
1810
|
+
"""
|
1811
|
+
return pulumi.get(self, "inbound_cluster_ids")
|
1812
|
+
|
1656
1813
|
@property
|
1657
1814
|
@pulumi.getter(name="lifecycleDetails")
|
1658
1815
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
@@ -1661,6 +1818,14 @@ class Cluster(pulumi.CustomResource):
|
|
1661
1818
|
"""
|
1662
1819
|
return pulumi.get(self, "lifecycle_details")
|
1663
1820
|
|
1821
|
+
@property
|
1822
|
+
@pulumi.getter(name="maintenanceDetails")
|
1823
|
+
def maintenance_details(self) -> pulumi.Output['outputs.ClusterMaintenanceDetails']:
|
1824
|
+
"""
|
1825
|
+
(Updatable) Details for creation of maintenance details
|
1826
|
+
"""
|
1827
|
+
return pulumi.get(self, "maintenance_details")
|
1828
|
+
|
1664
1829
|
@property
|
1665
1830
|
@pulumi.getter(name="masterNodeCount")
|
1666
1831
|
def master_node_count(self) -> pulumi.Output[int]:
|
@@ -1757,6 +1922,30 @@ class Cluster(pulumi.CustomResource):
|
|
1757
1922
|
"""
|
1758
1923
|
return pulumi.get(self, "opensearch_private_ip")
|
1759
1924
|
|
1925
|
+
@property
|
1926
|
+
@pulumi.getter(name="outboundClusterConfig")
|
1927
|
+
def outbound_cluster_config(self) -> pulumi.Output['outputs.ClusterOutboundClusterConfig']:
|
1928
|
+
"""
|
1929
|
+
(Updatable) This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
|
1930
|
+
"""
|
1931
|
+
return pulumi.get(self, "outbound_cluster_config")
|
1932
|
+
|
1933
|
+
@property
|
1934
|
+
@pulumi.getter(name="reverseConnectionEndpointCustomerIps")
|
1935
|
+
def reverse_connection_endpoint_customer_ips(self) -> pulumi.Output[Sequence[str]]:
|
1936
|
+
"""
|
1937
|
+
(Updatable) The customer IP addresses of the endpoint in customer VCN
|
1938
|
+
"""
|
1939
|
+
return pulumi.get(self, "reverse_connection_endpoint_customer_ips")
|
1940
|
+
|
1941
|
+
@property
|
1942
|
+
@pulumi.getter(name="reverseConnectionEndpoints")
|
1943
|
+
def reverse_connection_endpoints(self) -> pulumi.Output[Sequence['outputs.ClusterReverseConnectionEndpoint']]:
|
1944
|
+
"""
|
1945
|
+
The list of reverse connection endpoints.
|
1946
|
+
"""
|
1947
|
+
return pulumi.get(self, "reverse_connection_endpoints")
|
1948
|
+
|
1760
1949
|
@property
|
1761
1950
|
@pulumi.getter(name="securityMasterUserName")
|
1762
1951
|
def security_master_user_name(self) -> pulumi.Output[str]:
|
@@ -1866,10 +2055,6 @@ class Cluster(pulumi.CustomResource):
|
|
1866
2055
|
def vcn_id(self) -> pulumi.Output[str]:
|
1867
2056
|
"""
|
1868
2057
|
The OCID of the cluster's VCN.
|
1869
|
-
|
1870
|
-
|
1871
|
-
** IMPORTANT **
|
1872
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1873
2058
|
"""
|
1874
2059
|
return pulumi.get(self, "vcn_id")
|
1875
2060
|
|