pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0a1742000109__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/__init__.py +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1172 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['OpensearchClusterPipelineArgs', 'OpensearchClusterPipeline']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class OpensearchClusterPipelineArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
compartment_id: pulumi.Input[str],
|
25
|
+
data_prepper_configuration_body: pulumi.Input[str],
|
26
|
+
display_name: pulumi.Input[str],
|
27
|
+
memory_gb: pulumi.Input[int],
|
28
|
+
node_count: pulumi.Input[int],
|
29
|
+
ocpu_count: pulumi.Input[int],
|
30
|
+
pipeline_configuration_body: pulumi.Input[str],
|
31
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
33
|
+
nsg_id: Optional[pulumi.Input[str]] = None,
|
34
|
+
opc_dry_run: Optional[pulumi.Input[bool]] = None,
|
35
|
+
reverse_connection_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]]] = None,
|
36
|
+
subnet_compartment_id: Optional[pulumi.Input[str]] = None,
|
37
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
38
|
+
vcn_compartment_id: Optional[pulumi.Input[str]] = None,
|
39
|
+
vcn_id: Optional[pulumi.Input[str]] = None):
|
40
|
+
"""
|
41
|
+
The set of arguments for constructing a OpensearchClusterPipeline resource.
|
42
|
+
:param pulumi.Input[str] compartment_id: The OCID of the compartment to create the pipeline in.
|
43
|
+
:param pulumi.Input[str] data_prepper_configuration_body: (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
44
|
+
:param pulumi.Input[str] display_name: (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
|
45
|
+
:param pulumi.Input[int] memory_gb: (Updatable) The amount of memory in GB, for each pipeline node.
|
46
|
+
:param pulumi.Input[int] node_count: (Updatable) The number of nodes configured for the pipeline.
|
47
|
+
:param pulumi.Input[int] ocpu_count: (Updatable) The number of OCPUs configured for each pipeline node.
|
48
|
+
:param pulumi.Input[str] pipeline_configuration_body: (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
49
|
+
: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"}`
|
50
|
+
: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"}`
|
51
|
+
:param pulumi.Input[str] nsg_id: (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
52
|
+
:param pulumi.Input[bool] opc_dry_run: (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
53
|
+
:param pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]] reverse_connection_endpoints: (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
54
|
+
:param pulumi.Input[str] subnet_compartment_id: (Updatable) The OCID for the compartment where the pipeline's subnet is located.
|
55
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The OCID of the pipeline's subnet.
|
56
|
+
:param pulumi.Input[str] vcn_compartment_id: (Updatable) The OCID for the compartment where the pipeline's VCN is located.
|
57
|
+
:param pulumi.Input[str] vcn_id: (Updatable) The OCID of the pipeline's VCN.
|
58
|
+
|
59
|
+
|
60
|
+
** IMPORTANT **
|
61
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
62
|
+
"""
|
63
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
64
|
+
pulumi.set(__self__, "data_prepper_configuration_body", data_prepper_configuration_body)
|
65
|
+
pulumi.set(__self__, "display_name", display_name)
|
66
|
+
pulumi.set(__self__, "memory_gb", memory_gb)
|
67
|
+
pulumi.set(__self__, "node_count", node_count)
|
68
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
69
|
+
pulumi.set(__self__, "pipeline_configuration_body", pipeline_configuration_body)
|
70
|
+
if defined_tags is not None:
|
71
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
72
|
+
if freeform_tags is not None:
|
73
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
74
|
+
if nsg_id is not None:
|
75
|
+
pulumi.set(__self__, "nsg_id", nsg_id)
|
76
|
+
if opc_dry_run is not None:
|
77
|
+
pulumi.set(__self__, "opc_dry_run", opc_dry_run)
|
78
|
+
if reverse_connection_endpoints is not None:
|
79
|
+
pulumi.set(__self__, "reverse_connection_endpoints", reverse_connection_endpoints)
|
80
|
+
if subnet_compartment_id is not None:
|
81
|
+
pulumi.set(__self__, "subnet_compartment_id", subnet_compartment_id)
|
82
|
+
if subnet_id is not None:
|
83
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
84
|
+
if vcn_compartment_id is not None:
|
85
|
+
pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
|
86
|
+
if vcn_id is not None:
|
87
|
+
pulumi.set(__self__, "vcn_id", vcn_id)
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="compartmentId")
|
91
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
92
|
+
"""
|
93
|
+
The OCID of the compartment to create the pipeline in.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "compartment_id")
|
96
|
+
|
97
|
+
@compartment_id.setter
|
98
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
99
|
+
pulumi.set(self, "compartment_id", value)
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="dataPrepperConfigurationBody")
|
103
|
+
def data_prepper_configuration_body(self) -> pulumi.Input[str]:
|
104
|
+
"""
|
105
|
+
(Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "data_prepper_configuration_body")
|
108
|
+
|
109
|
+
@data_prepper_configuration_body.setter
|
110
|
+
def data_prepper_configuration_body(self, value: pulumi.Input[str]):
|
111
|
+
pulumi.set(self, "data_prepper_configuration_body", value)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="displayName")
|
115
|
+
def display_name(self) -> pulumi.Input[str]:
|
116
|
+
"""
|
117
|
+
(Updatable) The name of the cluster pipeline. Avoid entering confidential information.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "display_name")
|
120
|
+
|
121
|
+
@display_name.setter
|
122
|
+
def display_name(self, value: pulumi.Input[str]):
|
123
|
+
pulumi.set(self, "display_name", value)
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="memoryGb")
|
127
|
+
def memory_gb(self) -> pulumi.Input[int]:
|
128
|
+
"""
|
129
|
+
(Updatable) The amount of memory in GB, for each pipeline node.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "memory_gb")
|
132
|
+
|
133
|
+
@memory_gb.setter
|
134
|
+
def memory_gb(self, value: pulumi.Input[int]):
|
135
|
+
pulumi.set(self, "memory_gb", value)
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter(name="nodeCount")
|
139
|
+
def node_count(self) -> pulumi.Input[int]:
|
140
|
+
"""
|
141
|
+
(Updatable) The number of nodes configured for the pipeline.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "node_count")
|
144
|
+
|
145
|
+
@node_count.setter
|
146
|
+
def node_count(self, value: pulumi.Input[int]):
|
147
|
+
pulumi.set(self, "node_count", value)
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter(name="ocpuCount")
|
151
|
+
def ocpu_count(self) -> pulumi.Input[int]:
|
152
|
+
"""
|
153
|
+
(Updatable) The number of OCPUs configured for each pipeline node.
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "ocpu_count")
|
156
|
+
|
157
|
+
@ocpu_count.setter
|
158
|
+
def ocpu_count(self, value: pulumi.Input[int]):
|
159
|
+
pulumi.set(self, "ocpu_count", value)
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="pipelineConfigurationBody")
|
163
|
+
def pipeline_configuration_body(self) -> pulumi.Input[str]:
|
164
|
+
"""
|
165
|
+
(Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "pipeline_configuration_body")
|
168
|
+
|
169
|
+
@pipeline_configuration_body.setter
|
170
|
+
def pipeline_configuration_body(self, value: pulumi.Input[str]):
|
171
|
+
pulumi.set(self, "pipeline_configuration_body", value)
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter(name="definedTags")
|
175
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
176
|
+
"""
|
177
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "defined_tags")
|
180
|
+
|
181
|
+
@defined_tags.setter
|
182
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
183
|
+
pulumi.set(self, "defined_tags", value)
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="freeformTags")
|
187
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
188
|
+
"""
|
189
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "freeform_tags")
|
192
|
+
|
193
|
+
@freeform_tags.setter
|
194
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
195
|
+
pulumi.set(self, "freeform_tags", value)
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="nsgId")
|
199
|
+
def nsg_id(self) -> Optional[pulumi.Input[str]]:
|
200
|
+
"""
|
201
|
+
(Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "nsg_id")
|
204
|
+
|
205
|
+
@nsg_id.setter
|
206
|
+
def nsg_id(self, value: Optional[pulumi.Input[str]]):
|
207
|
+
pulumi.set(self, "nsg_id", value)
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter(name="opcDryRun")
|
211
|
+
def opc_dry_run(self) -> Optional[pulumi.Input[bool]]:
|
212
|
+
"""
|
213
|
+
(Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "opc_dry_run")
|
216
|
+
|
217
|
+
@opc_dry_run.setter
|
218
|
+
def opc_dry_run(self, value: Optional[pulumi.Input[bool]]):
|
219
|
+
pulumi.set(self, "opc_dry_run", value)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter(name="reverseConnectionEndpoints")
|
223
|
+
def reverse_connection_endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]]]:
|
224
|
+
"""
|
225
|
+
(Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "reverse_connection_endpoints")
|
228
|
+
|
229
|
+
@reverse_connection_endpoints.setter
|
230
|
+
def reverse_connection_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]]]):
|
231
|
+
pulumi.set(self, "reverse_connection_endpoints", value)
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="subnetCompartmentId")
|
235
|
+
def subnet_compartment_id(self) -> Optional[pulumi.Input[str]]:
|
236
|
+
"""
|
237
|
+
(Updatable) The OCID for the compartment where the pipeline's subnet is located.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "subnet_compartment_id")
|
240
|
+
|
241
|
+
@subnet_compartment_id.setter
|
242
|
+
def subnet_compartment_id(self, value: Optional[pulumi.Input[str]]):
|
243
|
+
pulumi.set(self, "subnet_compartment_id", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter(name="subnetId")
|
247
|
+
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
248
|
+
"""
|
249
|
+
(Updatable) The OCID of the pipeline's subnet.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "subnet_id")
|
252
|
+
|
253
|
+
@subnet_id.setter
|
254
|
+
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
255
|
+
pulumi.set(self, "subnet_id", value)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="vcnCompartmentId")
|
259
|
+
def vcn_compartment_id(self) -> Optional[pulumi.Input[str]]:
|
260
|
+
"""
|
261
|
+
(Updatable) The OCID for the compartment where the pipeline's VCN is located.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "vcn_compartment_id")
|
264
|
+
|
265
|
+
@vcn_compartment_id.setter
|
266
|
+
def vcn_compartment_id(self, value: Optional[pulumi.Input[str]]):
|
267
|
+
pulumi.set(self, "vcn_compartment_id", value)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="vcnId")
|
271
|
+
def vcn_id(self) -> Optional[pulumi.Input[str]]:
|
272
|
+
"""
|
273
|
+
(Updatable) The OCID of the pipeline's VCN.
|
274
|
+
|
275
|
+
|
276
|
+
** IMPORTANT **
|
277
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
278
|
+
"""
|
279
|
+
return pulumi.get(self, "vcn_id")
|
280
|
+
|
281
|
+
@vcn_id.setter
|
282
|
+
def vcn_id(self, value: Optional[pulumi.Input[str]]):
|
283
|
+
pulumi.set(self, "vcn_id", value)
|
284
|
+
|
285
|
+
|
286
|
+
@pulumi.input_type
|
287
|
+
class _OpensearchClusterPipelineState:
|
288
|
+
def __init__(__self__, *,
|
289
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
290
|
+
data_prepper_configuration_body: Optional[pulumi.Input[str]] = None,
|
291
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
292
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
293
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
294
|
+
memory_gb: Optional[pulumi.Input[int]] = None,
|
295
|
+
node_count: Optional[pulumi.Input[int]] = None,
|
296
|
+
nsg_id: Optional[pulumi.Input[str]] = None,
|
297
|
+
ocpu_count: Optional[pulumi.Input[int]] = None,
|
298
|
+
opc_dry_run: Optional[pulumi.Input[bool]] = None,
|
299
|
+
opensearch_pipeline_fqdn: Optional[pulumi.Input[str]] = None,
|
300
|
+
opensearch_pipeline_private_ip: Optional[pulumi.Input[str]] = None,
|
301
|
+
pipeline_configuration_body: Optional[pulumi.Input[str]] = None,
|
302
|
+
pipeline_mode: Optional[pulumi.Input[str]] = None,
|
303
|
+
reverse_connection_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]]] = None,
|
304
|
+
state: Optional[pulumi.Input[str]] = None,
|
305
|
+
subnet_compartment_id: Optional[pulumi.Input[str]] = None,
|
306
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
307
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
308
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
309
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
310
|
+
vcn_compartment_id: Optional[pulumi.Input[str]] = None,
|
311
|
+
vcn_id: Optional[pulumi.Input[str]] = None):
|
312
|
+
"""
|
313
|
+
Input properties used for looking up and filtering OpensearchClusterPipeline resources.
|
314
|
+
:param pulumi.Input[str] compartment_id: The OCID of the compartment to create the pipeline in.
|
315
|
+
:param pulumi.Input[str] data_prepper_configuration_body: (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
316
|
+
: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"}`
|
317
|
+
:param pulumi.Input[str] display_name: (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
|
318
|
+
: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"}`
|
319
|
+
:param pulumi.Input[int] memory_gb: (Updatable) The amount of memory in GB, for each pipeline node.
|
320
|
+
:param pulumi.Input[int] node_count: (Updatable) The number of nodes configured for the pipeline.
|
321
|
+
:param pulumi.Input[str] nsg_id: (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
322
|
+
:param pulumi.Input[int] ocpu_count: (Updatable) The number of OCPUs configured for each pipeline node.
|
323
|
+
:param pulumi.Input[bool] opc_dry_run: (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
324
|
+
:param pulumi.Input[str] opensearch_pipeline_fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
325
|
+
:param pulumi.Input[str] opensearch_pipeline_private_ip: The pipeline's private IP address.
|
326
|
+
:param pulumi.Input[str] pipeline_configuration_body: (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
327
|
+
:param pulumi.Input[str] pipeline_mode: The current state of the pipeline.
|
328
|
+
:param pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]] reverse_connection_endpoints: (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
329
|
+
:param pulumi.Input[str] state: The current state of the cluster backup.
|
330
|
+
:param pulumi.Input[str] subnet_compartment_id: (Updatable) The OCID for the compartment where the pipeline's subnet is located.
|
331
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The OCID of the pipeline's subnet.
|
332
|
+
: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"}`
|
333
|
+
:param pulumi.Input[str] time_created: The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
334
|
+
:param pulumi.Input[str] time_updated: The amount of time in milliseconds since the pipeline was updated.
|
335
|
+
:param pulumi.Input[str] vcn_compartment_id: (Updatable) The OCID for the compartment where the pipeline's VCN is located.
|
336
|
+
:param pulumi.Input[str] vcn_id: (Updatable) The OCID of the pipeline's VCN.
|
337
|
+
|
338
|
+
|
339
|
+
** IMPORTANT **
|
340
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
341
|
+
"""
|
342
|
+
if compartment_id is not None:
|
343
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
344
|
+
if data_prepper_configuration_body is not None:
|
345
|
+
pulumi.set(__self__, "data_prepper_configuration_body", data_prepper_configuration_body)
|
346
|
+
if defined_tags is not None:
|
347
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
348
|
+
if display_name is not None:
|
349
|
+
pulumi.set(__self__, "display_name", display_name)
|
350
|
+
if freeform_tags is not None:
|
351
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
352
|
+
if memory_gb is not None:
|
353
|
+
pulumi.set(__self__, "memory_gb", memory_gb)
|
354
|
+
if node_count is not None:
|
355
|
+
pulumi.set(__self__, "node_count", node_count)
|
356
|
+
if nsg_id is not None:
|
357
|
+
pulumi.set(__self__, "nsg_id", nsg_id)
|
358
|
+
if ocpu_count is not None:
|
359
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
360
|
+
if opc_dry_run is not None:
|
361
|
+
pulumi.set(__self__, "opc_dry_run", opc_dry_run)
|
362
|
+
if opensearch_pipeline_fqdn is not None:
|
363
|
+
pulumi.set(__self__, "opensearch_pipeline_fqdn", opensearch_pipeline_fqdn)
|
364
|
+
if opensearch_pipeline_private_ip is not None:
|
365
|
+
pulumi.set(__self__, "opensearch_pipeline_private_ip", opensearch_pipeline_private_ip)
|
366
|
+
if pipeline_configuration_body is not None:
|
367
|
+
pulumi.set(__self__, "pipeline_configuration_body", pipeline_configuration_body)
|
368
|
+
if pipeline_mode is not None:
|
369
|
+
pulumi.set(__self__, "pipeline_mode", pipeline_mode)
|
370
|
+
if reverse_connection_endpoints is not None:
|
371
|
+
pulumi.set(__self__, "reverse_connection_endpoints", reverse_connection_endpoints)
|
372
|
+
if state is not None:
|
373
|
+
pulumi.set(__self__, "state", state)
|
374
|
+
if subnet_compartment_id is not None:
|
375
|
+
pulumi.set(__self__, "subnet_compartment_id", subnet_compartment_id)
|
376
|
+
if subnet_id is not None:
|
377
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
378
|
+
if system_tags is not None:
|
379
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
380
|
+
if time_created is not None:
|
381
|
+
pulumi.set(__self__, "time_created", time_created)
|
382
|
+
if time_updated is not None:
|
383
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
384
|
+
if vcn_compartment_id is not None:
|
385
|
+
pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
|
386
|
+
if vcn_id is not None:
|
387
|
+
pulumi.set(__self__, "vcn_id", vcn_id)
|
388
|
+
|
389
|
+
@property
|
390
|
+
@pulumi.getter(name="compartmentId")
|
391
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
392
|
+
"""
|
393
|
+
The OCID of the compartment to create the pipeline in.
|
394
|
+
"""
|
395
|
+
return pulumi.get(self, "compartment_id")
|
396
|
+
|
397
|
+
@compartment_id.setter
|
398
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
399
|
+
pulumi.set(self, "compartment_id", value)
|
400
|
+
|
401
|
+
@property
|
402
|
+
@pulumi.getter(name="dataPrepperConfigurationBody")
|
403
|
+
def data_prepper_configuration_body(self) -> Optional[pulumi.Input[str]]:
|
404
|
+
"""
|
405
|
+
(Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "data_prepper_configuration_body")
|
408
|
+
|
409
|
+
@data_prepper_configuration_body.setter
|
410
|
+
def data_prepper_configuration_body(self, value: Optional[pulumi.Input[str]]):
|
411
|
+
pulumi.set(self, "data_prepper_configuration_body", value)
|
412
|
+
|
413
|
+
@property
|
414
|
+
@pulumi.getter(name="definedTags")
|
415
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
416
|
+
"""
|
417
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
418
|
+
"""
|
419
|
+
return pulumi.get(self, "defined_tags")
|
420
|
+
|
421
|
+
@defined_tags.setter
|
422
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
423
|
+
pulumi.set(self, "defined_tags", value)
|
424
|
+
|
425
|
+
@property
|
426
|
+
@pulumi.getter(name="displayName")
|
427
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
428
|
+
"""
|
429
|
+
(Updatable) The name of the cluster pipeline. Avoid entering confidential information.
|
430
|
+
"""
|
431
|
+
return pulumi.get(self, "display_name")
|
432
|
+
|
433
|
+
@display_name.setter
|
434
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
435
|
+
pulumi.set(self, "display_name", value)
|
436
|
+
|
437
|
+
@property
|
438
|
+
@pulumi.getter(name="freeformTags")
|
439
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
440
|
+
"""
|
441
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
442
|
+
"""
|
443
|
+
return pulumi.get(self, "freeform_tags")
|
444
|
+
|
445
|
+
@freeform_tags.setter
|
446
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
447
|
+
pulumi.set(self, "freeform_tags", value)
|
448
|
+
|
449
|
+
@property
|
450
|
+
@pulumi.getter(name="memoryGb")
|
451
|
+
def memory_gb(self) -> Optional[pulumi.Input[int]]:
|
452
|
+
"""
|
453
|
+
(Updatable) The amount of memory in GB, for each pipeline node.
|
454
|
+
"""
|
455
|
+
return pulumi.get(self, "memory_gb")
|
456
|
+
|
457
|
+
@memory_gb.setter
|
458
|
+
def memory_gb(self, value: Optional[pulumi.Input[int]]):
|
459
|
+
pulumi.set(self, "memory_gb", value)
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="nodeCount")
|
463
|
+
def node_count(self) -> Optional[pulumi.Input[int]]:
|
464
|
+
"""
|
465
|
+
(Updatable) The number of nodes configured for the pipeline.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "node_count")
|
468
|
+
|
469
|
+
@node_count.setter
|
470
|
+
def node_count(self, value: Optional[pulumi.Input[int]]):
|
471
|
+
pulumi.set(self, "node_count", value)
|
472
|
+
|
473
|
+
@property
|
474
|
+
@pulumi.getter(name="nsgId")
|
475
|
+
def nsg_id(self) -> Optional[pulumi.Input[str]]:
|
476
|
+
"""
|
477
|
+
(Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
478
|
+
"""
|
479
|
+
return pulumi.get(self, "nsg_id")
|
480
|
+
|
481
|
+
@nsg_id.setter
|
482
|
+
def nsg_id(self, value: Optional[pulumi.Input[str]]):
|
483
|
+
pulumi.set(self, "nsg_id", value)
|
484
|
+
|
485
|
+
@property
|
486
|
+
@pulumi.getter(name="ocpuCount")
|
487
|
+
def ocpu_count(self) -> Optional[pulumi.Input[int]]:
|
488
|
+
"""
|
489
|
+
(Updatable) The number of OCPUs configured for each pipeline node.
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "ocpu_count")
|
492
|
+
|
493
|
+
@ocpu_count.setter
|
494
|
+
def ocpu_count(self, value: Optional[pulumi.Input[int]]):
|
495
|
+
pulumi.set(self, "ocpu_count", value)
|
496
|
+
|
497
|
+
@property
|
498
|
+
@pulumi.getter(name="opcDryRun")
|
499
|
+
def opc_dry_run(self) -> Optional[pulumi.Input[bool]]:
|
500
|
+
"""
|
501
|
+
(Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
502
|
+
"""
|
503
|
+
return pulumi.get(self, "opc_dry_run")
|
504
|
+
|
505
|
+
@opc_dry_run.setter
|
506
|
+
def opc_dry_run(self, value: Optional[pulumi.Input[bool]]):
|
507
|
+
pulumi.set(self, "opc_dry_run", value)
|
508
|
+
|
509
|
+
@property
|
510
|
+
@pulumi.getter(name="opensearchPipelineFqdn")
|
511
|
+
def opensearch_pipeline_fqdn(self) -> Optional[pulumi.Input[str]]:
|
512
|
+
"""
|
513
|
+
The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
514
|
+
"""
|
515
|
+
return pulumi.get(self, "opensearch_pipeline_fqdn")
|
516
|
+
|
517
|
+
@opensearch_pipeline_fqdn.setter
|
518
|
+
def opensearch_pipeline_fqdn(self, value: Optional[pulumi.Input[str]]):
|
519
|
+
pulumi.set(self, "opensearch_pipeline_fqdn", value)
|
520
|
+
|
521
|
+
@property
|
522
|
+
@pulumi.getter(name="opensearchPipelinePrivateIp")
|
523
|
+
def opensearch_pipeline_private_ip(self) -> Optional[pulumi.Input[str]]:
|
524
|
+
"""
|
525
|
+
The pipeline's private IP address.
|
526
|
+
"""
|
527
|
+
return pulumi.get(self, "opensearch_pipeline_private_ip")
|
528
|
+
|
529
|
+
@opensearch_pipeline_private_ip.setter
|
530
|
+
def opensearch_pipeline_private_ip(self, value: Optional[pulumi.Input[str]]):
|
531
|
+
pulumi.set(self, "opensearch_pipeline_private_ip", value)
|
532
|
+
|
533
|
+
@property
|
534
|
+
@pulumi.getter(name="pipelineConfigurationBody")
|
535
|
+
def pipeline_configuration_body(self) -> Optional[pulumi.Input[str]]:
|
536
|
+
"""
|
537
|
+
(Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
538
|
+
"""
|
539
|
+
return pulumi.get(self, "pipeline_configuration_body")
|
540
|
+
|
541
|
+
@pipeline_configuration_body.setter
|
542
|
+
def pipeline_configuration_body(self, value: Optional[pulumi.Input[str]]):
|
543
|
+
pulumi.set(self, "pipeline_configuration_body", value)
|
544
|
+
|
545
|
+
@property
|
546
|
+
@pulumi.getter(name="pipelineMode")
|
547
|
+
def pipeline_mode(self) -> Optional[pulumi.Input[str]]:
|
548
|
+
"""
|
549
|
+
The current state of the pipeline.
|
550
|
+
"""
|
551
|
+
return pulumi.get(self, "pipeline_mode")
|
552
|
+
|
553
|
+
@pipeline_mode.setter
|
554
|
+
def pipeline_mode(self, value: Optional[pulumi.Input[str]]):
|
555
|
+
pulumi.set(self, "pipeline_mode", value)
|
556
|
+
|
557
|
+
@property
|
558
|
+
@pulumi.getter(name="reverseConnectionEndpoints")
|
559
|
+
def reverse_connection_endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]]]:
|
560
|
+
"""
|
561
|
+
(Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
562
|
+
"""
|
563
|
+
return pulumi.get(self, "reverse_connection_endpoints")
|
564
|
+
|
565
|
+
@reverse_connection_endpoints.setter
|
566
|
+
def reverse_connection_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OpensearchClusterPipelineReverseConnectionEndpointArgs']]]]):
|
567
|
+
pulumi.set(self, "reverse_connection_endpoints", value)
|
568
|
+
|
569
|
+
@property
|
570
|
+
@pulumi.getter
|
571
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
572
|
+
"""
|
573
|
+
The current state of the cluster backup.
|
574
|
+
"""
|
575
|
+
return pulumi.get(self, "state")
|
576
|
+
|
577
|
+
@state.setter
|
578
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
579
|
+
pulumi.set(self, "state", value)
|
580
|
+
|
581
|
+
@property
|
582
|
+
@pulumi.getter(name="subnetCompartmentId")
|
583
|
+
def subnet_compartment_id(self) -> Optional[pulumi.Input[str]]:
|
584
|
+
"""
|
585
|
+
(Updatable) The OCID for the compartment where the pipeline's subnet is located.
|
586
|
+
"""
|
587
|
+
return pulumi.get(self, "subnet_compartment_id")
|
588
|
+
|
589
|
+
@subnet_compartment_id.setter
|
590
|
+
def subnet_compartment_id(self, value: Optional[pulumi.Input[str]]):
|
591
|
+
pulumi.set(self, "subnet_compartment_id", value)
|
592
|
+
|
593
|
+
@property
|
594
|
+
@pulumi.getter(name="subnetId")
|
595
|
+
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
596
|
+
"""
|
597
|
+
(Updatable) The OCID of the pipeline's subnet.
|
598
|
+
"""
|
599
|
+
return pulumi.get(self, "subnet_id")
|
600
|
+
|
601
|
+
@subnet_id.setter
|
602
|
+
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
603
|
+
pulumi.set(self, "subnet_id", value)
|
604
|
+
|
605
|
+
@property
|
606
|
+
@pulumi.getter(name="systemTags")
|
607
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
608
|
+
"""
|
609
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
610
|
+
"""
|
611
|
+
return pulumi.get(self, "system_tags")
|
612
|
+
|
613
|
+
@system_tags.setter
|
614
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
615
|
+
pulumi.set(self, "system_tags", value)
|
616
|
+
|
617
|
+
@property
|
618
|
+
@pulumi.getter(name="timeCreated")
|
619
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
620
|
+
"""
|
621
|
+
The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
622
|
+
"""
|
623
|
+
return pulumi.get(self, "time_created")
|
624
|
+
|
625
|
+
@time_created.setter
|
626
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
627
|
+
pulumi.set(self, "time_created", value)
|
628
|
+
|
629
|
+
@property
|
630
|
+
@pulumi.getter(name="timeUpdated")
|
631
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
632
|
+
"""
|
633
|
+
The amount of time in milliseconds since the pipeline was updated.
|
634
|
+
"""
|
635
|
+
return pulumi.get(self, "time_updated")
|
636
|
+
|
637
|
+
@time_updated.setter
|
638
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
639
|
+
pulumi.set(self, "time_updated", value)
|
640
|
+
|
641
|
+
@property
|
642
|
+
@pulumi.getter(name="vcnCompartmentId")
|
643
|
+
def vcn_compartment_id(self) -> Optional[pulumi.Input[str]]:
|
644
|
+
"""
|
645
|
+
(Updatable) The OCID for the compartment where the pipeline's VCN is located.
|
646
|
+
"""
|
647
|
+
return pulumi.get(self, "vcn_compartment_id")
|
648
|
+
|
649
|
+
@vcn_compartment_id.setter
|
650
|
+
def vcn_compartment_id(self, value: Optional[pulumi.Input[str]]):
|
651
|
+
pulumi.set(self, "vcn_compartment_id", value)
|
652
|
+
|
653
|
+
@property
|
654
|
+
@pulumi.getter(name="vcnId")
|
655
|
+
def vcn_id(self) -> Optional[pulumi.Input[str]]:
|
656
|
+
"""
|
657
|
+
(Updatable) The OCID of the pipeline's VCN.
|
658
|
+
|
659
|
+
|
660
|
+
** IMPORTANT **
|
661
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
662
|
+
"""
|
663
|
+
return pulumi.get(self, "vcn_id")
|
664
|
+
|
665
|
+
@vcn_id.setter
|
666
|
+
def vcn_id(self, value: Optional[pulumi.Input[str]]):
|
667
|
+
pulumi.set(self, "vcn_id", value)
|
668
|
+
|
669
|
+
|
670
|
+
class OpensearchClusterPipeline(pulumi.CustomResource):
|
671
|
+
@overload
|
672
|
+
def __init__(__self__,
|
673
|
+
resource_name: str,
|
674
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
675
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
676
|
+
data_prepper_configuration_body: Optional[pulumi.Input[str]] = None,
|
677
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
678
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
679
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
680
|
+
memory_gb: Optional[pulumi.Input[int]] = None,
|
681
|
+
node_count: Optional[pulumi.Input[int]] = None,
|
682
|
+
nsg_id: Optional[pulumi.Input[str]] = None,
|
683
|
+
ocpu_count: Optional[pulumi.Input[int]] = None,
|
684
|
+
opc_dry_run: Optional[pulumi.Input[bool]] = None,
|
685
|
+
pipeline_configuration_body: Optional[pulumi.Input[str]] = None,
|
686
|
+
reverse_connection_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpensearchClusterPipelineReverseConnectionEndpointArgs', 'OpensearchClusterPipelineReverseConnectionEndpointArgsDict']]]]] = None,
|
687
|
+
subnet_compartment_id: Optional[pulumi.Input[str]] = None,
|
688
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
689
|
+
vcn_compartment_id: Optional[pulumi.Input[str]] = None,
|
690
|
+
vcn_id: Optional[pulumi.Input[str]] = None,
|
691
|
+
__props__=None):
|
692
|
+
"""
|
693
|
+
This resource provides the Opensearch Cluster Pipeline resource in Oracle Cloud Infrastructure Opensearch service.
|
694
|
+
|
695
|
+
Creates a new OpensearchCluster Pipeline.
|
696
|
+
|
697
|
+
## Example Usage
|
698
|
+
|
699
|
+
```python
|
700
|
+
import pulumi
|
701
|
+
import pulumi_oci as oci
|
702
|
+
|
703
|
+
test_opensearch_cluster_pipeline = oci.opensearch.OpensearchClusterPipeline("test_opensearch_cluster_pipeline",
|
704
|
+
compartment_id=compartment_id,
|
705
|
+
data_prepper_configuration_body=opensearch_cluster_pipeline_data_prepper_configuration_body,
|
706
|
+
display_name=opensearch_cluster_pipeline_display_name,
|
707
|
+
memory_gb=opensearch_cluster_pipeline_memory_gb,
|
708
|
+
node_count=opensearch_cluster_pipeline_node_count,
|
709
|
+
ocpu_count=opensearch_cluster_pipeline_ocpu_count,
|
710
|
+
pipeline_configuration_body=opensearch_cluster_pipeline_pipeline_configuration_body,
|
711
|
+
defined_tags={
|
712
|
+
"foo-namespace.bar-key": "value",
|
713
|
+
},
|
714
|
+
freeform_tags={
|
715
|
+
"bar-key": "value",
|
716
|
+
},
|
717
|
+
nsg_id=test_nsg["id"],
|
718
|
+
opc_dry_run=opensearch_cluster_pipeline_opc_dry_run,
|
719
|
+
reverse_connection_endpoints=[{
|
720
|
+
"customer_fqdn": opensearch_cluster_pipeline_reverse_connection_endpoints_customer_fqdn,
|
721
|
+
"customer_ip": opensearch_cluster_pipeline_reverse_connection_endpoints_customer_ip,
|
722
|
+
}],
|
723
|
+
subnet_compartment_id=test_compartment["id"],
|
724
|
+
subnet_id=test_subnet["id"],
|
725
|
+
vcn_compartment_id=test_compartment["id"],
|
726
|
+
vcn_id=test_vcn["id"])
|
727
|
+
```
|
728
|
+
|
729
|
+
## Import
|
730
|
+
|
731
|
+
OpensearchClusterPipelines can be imported using the `id`, e.g.
|
732
|
+
|
733
|
+
```sh
|
734
|
+
$ pulumi import oci:Opensearch/opensearchClusterPipeline:OpensearchClusterPipeline test_opensearch_cluster_pipeline "id"
|
735
|
+
```
|
736
|
+
|
737
|
+
:param str resource_name: The name of the resource.
|
738
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
739
|
+
:param pulumi.Input[str] compartment_id: The OCID of the compartment to create the pipeline in.
|
740
|
+
:param pulumi.Input[str] data_prepper_configuration_body: (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
741
|
+
: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"}`
|
742
|
+
:param pulumi.Input[str] display_name: (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
|
743
|
+
: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"}`
|
744
|
+
:param pulumi.Input[int] memory_gb: (Updatable) The amount of memory in GB, for each pipeline node.
|
745
|
+
:param pulumi.Input[int] node_count: (Updatable) The number of nodes configured for the pipeline.
|
746
|
+
:param pulumi.Input[str] nsg_id: (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
747
|
+
:param pulumi.Input[int] ocpu_count: (Updatable) The number of OCPUs configured for each pipeline node.
|
748
|
+
:param pulumi.Input[bool] opc_dry_run: (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
749
|
+
:param pulumi.Input[str] pipeline_configuration_body: (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
750
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OpensearchClusterPipelineReverseConnectionEndpointArgs', 'OpensearchClusterPipelineReverseConnectionEndpointArgsDict']]]] reverse_connection_endpoints: (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
751
|
+
:param pulumi.Input[str] subnet_compartment_id: (Updatable) The OCID for the compartment where the pipeline's subnet is located.
|
752
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The OCID of the pipeline's subnet.
|
753
|
+
:param pulumi.Input[str] vcn_compartment_id: (Updatable) The OCID for the compartment where the pipeline's VCN is located.
|
754
|
+
:param pulumi.Input[str] vcn_id: (Updatable) The OCID of the pipeline's VCN.
|
755
|
+
|
756
|
+
|
757
|
+
** IMPORTANT **
|
758
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
759
|
+
"""
|
760
|
+
...
|
761
|
+
@overload
|
762
|
+
def __init__(__self__,
|
763
|
+
resource_name: str,
|
764
|
+
args: OpensearchClusterPipelineArgs,
|
765
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
766
|
+
"""
|
767
|
+
This resource provides the Opensearch Cluster Pipeline resource in Oracle Cloud Infrastructure Opensearch service.
|
768
|
+
|
769
|
+
Creates a new OpensearchCluster Pipeline.
|
770
|
+
|
771
|
+
## Example Usage
|
772
|
+
|
773
|
+
```python
|
774
|
+
import pulumi
|
775
|
+
import pulumi_oci as oci
|
776
|
+
|
777
|
+
test_opensearch_cluster_pipeline = oci.opensearch.OpensearchClusterPipeline("test_opensearch_cluster_pipeline",
|
778
|
+
compartment_id=compartment_id,
|
779
|
+
data_prepper_configuration_body=opensearch_cluster_pipeline_data_prepper_configuration_body,
|
780
|
+
display_name=opensearch_cluster_pipeline_display_name,
|
781
|
+
memory_gb=opensearch_cluster_pipeline_memory_gb,
|
782
|
+
node_count=opensearch_cluster_pipeline_node_count,
|
783
|
+
ocpu_count=opensearch_cluster_pipeline_ocpu_count,
|
784
|
+
pipeline_configuration_body=opensearch_cluster_pipeline_pipeline_configuration_body,
|
785
|
+
defined_tags={
|
786
|
+
"foo-namespace.bar-key": "value",
|
787
|
+
},
|
788
|
+
freeform_tags={
|
789
|
+
"bar-key": "value",
|
790
|
+
},
|
791
|
+
nsg_id=test_nsg["id"],
|
792
|
+
opc_dry_run=opensearch_cluster_pipeline_opc_dry_run,
|
793
|
+
reverse_connection_endpoints=[{
|
794
|
+
"customer_fqdn": opensearch_cluster_pipeline_reverse_connection_endpoints_customer_fqdn,
|
795
|
+
"customer_ip": opensearch_cluster_pipeline_reverse_connection_endpoints_customer_ip,
|
796
|
+
}],
|
797
|
+
subnet_compartment_id=test_compartment["id"],
|
798
|
+
subnet_id=test_subnet["id"],
|
799
|
+
vcn_compartment_id=test_compartment["id"],
|
800
|
+
vcn_id=test_vcn["id"])
|
801
|
+
```
|
802
|
+
|
803
|
+
## Import
|
804
|
+
|
805
|
+
OpensearchClusterPipelines can be imported using the `id`, e.g.
|
806
|
+
|
807
|
+
```sh
|
808
|
+
$ pulumi import oci:Opensearch/opensearchClusterPipeline:OpensearchClusterPipeline test_opensearch_cluster_pipeline "id"
|
809
|
+
```
|
810
|
+
|
811
|
+
:param str resource_name: The name of the resource.
|
812
|
+
:param OpensearchClusterPipelineArgs args: The arguments to use to populate this resource's properties.
|
813
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
814
|
+
"""
|
815
|
+
...
|
816
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
817
|
+
resource_args, opts = _utilities.get_resource_args_opts(OpensearchClusterPipelineArgs, pulumi.ResourceOptions, *args, **kwargs)
|
818
|
+
if resource_args is not None:
|
819
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
820
|
+
else:
|
821
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
822
|
+
|
823
|
+
def _internal_init(__self__,
|
824
|
+
resource_name: str,
|
825
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
826
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
827
|
+
data_prepper_configuration_body: Optional[pulumi.Input[str]] = None,
|
828
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
829
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
830
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
831
|
+
memory_gb: Optional[pulumi.Input[int]] = None,
|
832
|
+
node_count: Optional[pulumi.Input[int]] = None,
|
833
|
+
nsg_id: Optional[pulumi.Input[str]] = None,
|
834
|
+
ocpu_count: Optional[pulumi.Input[int]] = None,
|
835
|
+
opc_dry_run: Optional[pulumi.Input[bool]] = None,
|
836
|
+
pipeline_configuration_body: Optional[pulumi.Input[str]] = None,
|
837
|
+
reverse_connection_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpensearchClusterPipelineReverseConnectionEndpointArgs', 'OpensearchClusterPipelineReverseConnectionEndpointArgsDict']]]]] = None,
|
838
|
+
subnet_compartment_id: Optional[pulumi.Input[str]] = None,
|
839
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
840
|
+
vcn_compartment_id: Optional[pulumi.Input[str]] = None,
|
841
|
+
vcn_id: Optional[pulumi.Input[str]] = None,
|
842
|
+
__props__=None):
|
843
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
844
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
845
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
846
|
+
if opts.id is None:
|
847
|
+
if __props__ is not None:
|
848
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
849
|
+
__props__ = OpensearchClusterPipelineArgs.__new__(OpensearchClusterPipelineArgs)
|
850
|
+
|
851
|
+
if compartment_id is None and not opts.urn:
|
852
|
+
raise TypeError("Missing required property 'compartment_id'")
|
853
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
854
|
+
if data_prepper_configuration_body is None and not opts.urn:
|
855
|
+
raise TypeError("Missing required property 'data_prepper_configuration_body'")
|
856
|
+
__props__.__dict__["data_prepper_configuration_body"] = data_prepper_configuration_body
|
857
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
858
|
+
if display_name is None and not opts.urn:
|
859
|
+
raise TypeError("Missing required property 'display_name'")
|
860
|
+
__props__.__dict__["display_name"] = display_name
|
861
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
862
|
+
if memory_gb is None and not opts.urn:
|
863
|
+
raise TypeError("Missing required property 'memory_gb'")
|
864
|
+
__props__.__dict__["memory_gb"] = memory_gb
|
865
|
+
if node_count is None and not opts.urn:
|
866
|
+
raise TypeError("Missing required property 'node_count'")
|
867
|
+
__props__.__dict__["node_count"] = node_count
|
868
|
+
__props__.__dict__["nsg_id"] = nsg_id
|
869
|
+
if ocpu_count is None and not opts.urn:
|
870
|
+
raise TypeError("Missing required property 'ocpu_count'")
|
871
|
+
__props__.__dict__["ocpu_count"] = ocpu_count
|
872
|
+
__props__.__dict__["opc_dry_run"] = opc_dry_run
|
873
|
+
if pipeline_configuration_body is None and not opts.urn:
|
874
|
+
raise TypeError("Missing required property 'pipeline_configuration_body'")
|
875
|
+
__props__.__dict__["pipeline_configuration_body"] = pipeline_configuration_body
|
876
|
+
__props__.__dict__["reverse_connection_endpoints"] = reverse_connection_endpoints
|
877
|
+
__props__.__dict__["subnet_compartment_id"] = subnet_compartment_id
|
878
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
879
|
+
__props__.__dict__["vcn_compartment_id"] = vcn_compartment_id
|
880
|
+
__props__.__dict__["vcn_id"] = vcn_id
|
881
|
+
__props__.__dict__["opensearch_pipeline_fqdn"] = None
|
882
|
+
__props__.__dict__["opensearch_pipeline_private_ip"] = None
|
883
|
+
__props__.__dict__["pipeline_mode"] = None
|
884
|
+
__props__.__dict__["state"] = None
|
885
|
+
__props__.__dict__["system_tags"] = None
|
886
|
+
__props__.__dict__["time_created"] = None
|
887
|
+
__props__.__dict__["time_updated"] = None
|
888
|
+
super(OpensearchClusterPipeline, __self__).__init__(
|
889
|
+
'oci:Opensearch/opensearchClusterPipeline:OpensearchClusterPipeline',
|
890
|
+
resource_name,
|
891
|
+
__props__,
|
892
|
+
opts)
|
893
|
+
|
894
|
+
@staticmethod
|
895
|
+
def get(resource_name: str,
|
896
|
+
id: pulumi.Input[str],
|
897
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
898
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
899
|
+
data_prepper_configuration_body: Optional[pulumi.Input[str]] = None,
|
900
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
901
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
902
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
903
|
+
memory_gb: Optional[pulumi.Input[int]] = None,
|
904
|
+
node_count: Optional[pulumi.Input[int]] = None,
|
905
|
+
nsg_id: Optional[pulumi.Input[str]] = None,
|
906
|
+
ocpu_count: Optional[pulumi.Input[int]] = None,
|
907
|
+
opc_dry_run: Optional[pulumi.Input[bool]] = None,
|
908
|
+
opensearch_pipeline_fqdn: Optional[pulumi.Input[str]] = None,
|
909
|
+
opensearch_pipeline_private_ip: Optional[pulumi.Input[str]] = None,
|
910
|
+
pipeline_configuration_body: Optional[pulumi.Input[str]] = None,
|
911
|
+
pipeline_mode: Optional[pulumi.Input[str]] = None,
|
912
|
+
reverse_connection_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpensearchClusterPipelineReverseConnectionEndpointArgs', 'OpensearchClusterPipelineReverseConnectionEndpointArgsDict']]]]] = None,
|
913
|
+
state: Optional[pulumi.Input[str]] = None,
|
914
|
+
subnet_compartment_id: Optional[pulumi.Input[str]] = None,
|
915
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
916
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
917
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
918
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
919
|
+
vcn_compartment_id: Optional[pulumi.Input[str]] = None,
|
920
|
+
vcn_id: Optional[pulumi.Input[str]] = None) -> 'OpensearchClusterPipeline':
|
921
|
+
"""
|
922
|
+
Get an existing OpensearchClusterPipeline resource's state with the given name, id, and optional extra
|
923
|
+
properties used to qualify the lookup.
|
924
|
+
|
925
|
+
:param str resource_name: The unique name of the resulting resource.
|
926
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
927
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
928
|
+
:param pulumi.Input[str] compartment_id: The OCID of the compartment to create the pipeline in.
|
929
|
+
:param pulumi.Input[str] data_prepper_configuration_body: (Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
930
|
+
: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"}`
|
931
|
+
:param pulumi.Input[str] display_name: (Updatable) The name of the cluster pipeline. Avoid entering confidential information.
|
932
|
+
: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"}`
|
933
|
+
:param pulumi.Input[int] memory_gb: (Updatable) The amount of memory in GB, for each pipeline node.
|
934
|
+
:param pulumi.Input[int] node_count: (Updatable) The number of nodes configured for the pipeline.
|
935
|
+
:param pulumi.Input[str] nsg_id: (Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
936
|
+
:param pulumi.Input[int] ocpu_count: (Updatable) The number of OCPUs configured for each pipeline node.
|
937
|
+
:param pulumi.Input[bool] opc_dry_run: (Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
938
|
+
:param pulumi.Input[str] opensearch_pipeline_fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
939
|
+
:param pulumi.Input[str] opensearch_pipeline_private_ip: The pipeline's private IP address.
|
940
|
+
:param pulumi.Input[str] pipeline_configuration_body: (Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
941
|
+
:param pulumi.Input[str] pipeline_mode: The current state of the pipeline.
|
942
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OpensearchClusterPipelineReverseConnectionEndpointArgs', 'OpensearchClusterPipelineReverseConnectionEndpointArgsDict']]]] reverse_connection_endpoints: (Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
943
|
+
:param pulumi.Input[str] state: The current state of the cluster backup.
|
944
|
+
:param pulumi.Input[str] subnet_compartment_id: (Updatable) The OCID for the compartment where the pipeline's subnet is located.
|
945
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The OCID of the pipeline's subnet.
|
946
|
+
: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"}`
|
947
|
+
:param pulumi.Input[str] time_created: The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
948
|
+
:param pulumi.Input[str] time_updated: The amount of time in milliseconds since the pipeline was updated.
|
949
|
+
:param pulumi.Input[str] vcn_compartment_id: (Updatable) The OCID for the compartment where the pipeline's VCN is located.
|
950
|
+
:param pulumi.Input[str] vcn_id: (Updatable) The OCID of the pipeline's VCN.
|
951
|
+
|
952
|
+
|
953
|
+
** IMPORTANT **
|
954
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
955
|
+
"""
|
956
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
957
|
+
|
958
|
+
__props__ = _OpensearchClusterPipelineState.__new__(_OpensearchClusterPipelineState)
|
959
|
+
|
960
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
961
|
+
__props__.__dict__["data_prepper_configuration_body"] = data_prepper_configuration_body
|
962
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
963
|
+
__props__.__dict__["display_name"] = display_name
|
964
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
965
|
+
__props__.__dict__["memory_gb"] = memory_gb
|
966
|
+
__props__.__dict__["node_count"] = node_count
|
967
|
+
__props__.__dict__["nsg_id"] = nsg_id
|
968
|
+
__props__.__dict__["ocpu_count"] = ocpu_count
|
969
|
+
__props__.__dict__["opc_dry_run"] = opc_dry_run
|
970
|
+
__props__.__dict__["opensearch_pipeline_fqdn"] = opensearch_pipeline_fqdn
|
971
|
+
__props__.__dict__["opensearch_pipeline_private_ip"] = opensearch_pipeline_private_ip
|
972
|
+
__props__.__dict__["pipeline_configuration_body"] = pipeline_configuration_body
|
973
|
+
__props__.__dict__["pipeline_mode"] = pipeline_mode
|
974
|
+
__props__.__dict__["reverse_connection_endpoints"] = reverse_connection_endpoints
|
975
|
+
__props__.__dict__["state"] = state
|
976
|
+
__props__.__dict__["subnet_compartment_id"] = subnet_compartment_id
|
977
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
978
|
+
__props__.__dict__["system_tags"] = system_tags
|
979
|
+
__props__.__dict__["time_created"] = time_created
|
980
|
+
__props__.__dict__["time_updated"] = time_updated
|
981
|
+
__props__.__dict__["vcn_compartment_id"] = vcn_compartment_id
|
982
|
+
__props__.__dict__["vcn_id"] = vcn_id
|
983
|
+
return OpensearchClusterPipeline(resource_name, opts=opts, __props__=__props__)
|
984
|
+
|
985
|
+
@property
|
986
|
+
@pulumi.getter(name="compartmentId")
|
987
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
988
|
+
"""
|
989
|
+
The OCID of the compartment to create the pipeline in.
|
990
|
+
"""
|
991
|
+
return pulumi.get(self, "compartment_id")
|
992
|
+
|
993
|
+
@property
|
994
|
+
@pulumi.getter(name="dataPrepperConfigurationBody")
|
995
|
+
def data_prepper_configuration_body(self) -> pulumi.Output[str]:
|
996
|
+
"""
|
997
|
+
(Updatable) The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
998
|
+
"""
|
999
|
+
return pulumi.get(self, "data_prepper_configuration_body")
|
1000
|
+
|
1001
|
+
@property
|
1002
|
+
@pulumi.getter(name="definedTags")
|
1003
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1004
|
+
"""
|
1005
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1006
|
+
"""
|
1007
|
+
return pulumi.get(self, "defined_tags")
|
1008
|
+
|
1009
|
+
@property
|
1010
|
+
@pulumi.getter(name="displayName")
|
1011
|
+
def display_name(self) -> pulumi.Output[str]:
|
1012
|
+
"""
|
1013
|
+
(Updatable) The name of the cluster pipeline. Avoid entering confidential information.
|
1014
|
+
"""
|
1015
|
+
return pulumi.get(self, "display_name")
|
1016
|
+
|
1017
|
+
@property
|
1018
|
+
@pulumi.getter(name="freeformTags")
|
1019
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1020
|
+
"""
|
1021
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1022
|
+
"""
|
1023
|
+
return pulumi.get(self, "freeform_tags")
|
1024
|
+
|
1025
|
+
@property
|
1026
|
+
@pulumi.getter(name="memoryGb")
|
1027
|
+
def memory_gb(self) -> pulumi.Output[int]:
|
1028
|
+
"""
|
1029
|
+
(Updatable) The amount of memory in GB, for each pipeline node.
|
1030
|
+
"""
|
1031
|
+
return pulumi.get(self, "memory_gb")
|
1032
|
+
|
1033
|
+
@property
|
1034
|
+
@pulumi.getter(name="nodeCount")
|
1035
|
+
def node_count(self) -> pulumi.Output[int]:
|
1036
|
+
"""
|
1037
|
+
(Updatable) The number of nodes configured for the pipeline.
|
1038
|
+
"""
|
1039
|
+
return pulumi.get(self, "node_count")
|
1040
|
+
|
1041
|
+
@property
|
1042
|
+
@pulumi.getter(name="nsgId")
|
1043
|
+
def nsg_id(self) -> pulumi.Output[str]:
|
1044
|
+
"""
|
1045
|
+
(Updatable) The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
1046
|
+
"""
|
1047
|
+
return pulumi.get(self, "nsg_id")
|
1048
|
+
|
1049
|
+
@property
|
1050
|
+
@pulumi.getter(name="ocpuCount")
|
1051
|
+
def ocpu_count(self) -> pulumi.Output[int]:
|
1052
|
+
"""
|
1053
|
+
(Updatable) The number of OCPUs configured for each pipeline node.
|
1054
|
+
"""
|
1055
|
+
return pulumi.get(self, "ocpu_count")
|
1056
|
+
|
1057
|
+
@property
|
1058
|
+
@pulumi.getter(name="opcDryRun")
|
1059
|
+
def opc_dry_run(self) -> pulumi.Output[bool]:
|
1060
|
+
"""
|
1061
|
+
(Updatable) Indicates that the request is a dry run, if set to "true". A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
1062
|
+
"""
|
1063
|
+
return pulumi.get(self, "opc_dry_run")
|
1064
|
+
|
1065
|
+
@property
|
1066
|
+
@pulumi.getter(name="opensearchPipelineFqdn")
|
1067
|
+
def opensearch_pipeline_fqdn(self) -> pulumi.Output[str]:
|
1068
|
+
"""
|
1069
|
+
The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
1070
|
+
"""
|
1071
|
+
return pulumi.get(self, "opensearch_pipeline_fqdn")
|
1072
|
+
|
1073
|
+
@property
|
1074
|
+
@pulumi.getter(name="opensearchPipelinePrivateIp")
|
1075
|
+
def opensearch_pipeline_private_ip(self) -> pulumi.Output[str]:
|
1076
|
+
"""
|
1077
|
+
The pipeline's private IP address.
|
1078
|
+
"""
|
1079
|
+
return pulumi.get(self, "opensearch_pipeline_private_ip")
|
1080
|
+
|
1081
|
+
@property
|
1082
|
+
@pulumi.getter(name="pipelineConfigurationBody")
|
1083
|
+
def pipeline_configuration_body(self) -> pulumi.Output[str]:
|
1084
|
+
"""
|
1085
|
+
(Updatable) The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
1086
|
+
"""
|
1087
|
+
return pulumi.get(self, "pipeline_configuration_body")
|
1088
|
+
|
1089
|
+
@property
|
1090
|
+
@pulumi.getter(name="pipelineMode")
|
1091
|
+
def pipeline_mode(self) -> pulumi.Output[str]:
|
1092
|
+
"""
|
1093
|
+
The current state of the pipeline.
|
1094
|
+
"""
|
1095
|
+
return pulumi.get(self, "pipeline_mode")
|
1096
|
+
|
1097
|
+
@property
|
1098
|
+
@pulumi.getter(name="reverseConnectionEndpoints")
|
1099
|
+
def reverse_connection_endpoints(self) -> pulumi.Output[Sequence['outputs.OpensearchClusterPipelineReverseConnectionEndpoint']]:
|
1100
|
+
"""
|
1101
|
+
(Updatable) The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
1102
|
+
"""
|
1103
|
+
return pulumi.get(self, "reverse_connection_endpoints")
|
1104
|
+
|
1105
|
+
@property
|
1106
|
+
@pulumi.getter
|
1107
|
+
def state(self) -> pulumi.Output[str]:
|
1108
|
+
"""
|
1109
|
+
The current state of the cluster backup.
|
1110
|
+
"""
|
1111
|
+
return pulumi.get(self, "state")
|
1112
|
+
|
1113
|
+
@property
|
1114
|
+
@pulumi.getter(name="subnetCompartmentId")
|
1115
|
+
def subnet_compartment_id(self) -> pulumi.Output[str]:
|
1116
|
+
"""
|
1117
|
+
(Updatable) The OCID for the compartment where the pipeline's subnet is located.
|
1118
|
+
"""
|
1119
|
+
return pulumi.get(self, "subnet_compartment_id")
|
1120
|
+
|
1121
|
+
@property
|
1122
|
+
@pulumi.getter(name="subnetId")
|
1123
|
+
def subnet_id(self) -> pulumi.Output[str]:
|
1124
|
+
"""
|
1125
|
+
(Updatable) The OCID of the pipeline's subnet.
|
1126
|
+
"""
|
1127
|
+
return pulumi.get(self, "subnet_id")
|
1128
|
+
|
1129
|
+
@property
|
1130
|
+
@pulumi.getter(name="systemTags")
|
1131
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1132
|
+
"""
|
1133
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1134
|
+
"""
|
1135
|
+
return pulumi.get(self, "system_tags")
|
1136
|
+
|
1137
|
+
@property
|
1138
|
+
@pulumi.getter(name="timeCreated")
|
1139
|
+
def time_created(self) -> pulumi.Output[str]:
|
1140
|
+
"""
|
1141
|
+
The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
1142
|
+
"""
|
1143
|
+
return pulumi.get(self, "time_created")
|
1144
|
+
|
1145
|
+
@property
|
1146
|
+
@pulumi.getter(name="timeUpdated")
|
1147
|
+
def time_updated(self) -> pulumi.Output[str]:
|
1148
|
+
"""
|
1149
|
+
The amount of time in milliseconds since the pipeline was updated.
|
1150
|
+
"""
|
1151
|
+
return pulumi.get(self, "time_updated")
|
1152
|
+
|
1153
|
+
@property
|
1154
|
+
@pulumi.getter(name="vcnCompartmentId")
|
1155
|
+
def vcn_compartment_id(self) -> pulumi.Output[str]:
|
1156
|
+
"""
|
1157
|
+
(Updatable) The OCID for the compartment where the pipeline's VCN is located.
|
1158
|
+
"""
|
1159
|
+
return pulumi.get(self, "vcn_compartment_id")
|
1160
|
+
|
1161
|
+
@property
|
1162
|
+
@pulumi.getter(name="vcnId")
|
1163
|
+
def vcn_id(self) -> pulumi.Output[str]:
|
1164
|
+
"""
|
1165
|
+
(Updatable) The OCID of the pipeline's VCN.
|
1166
|
+
|
1167
|
+
|
1168
|
+
** IMPORTANT **
|
1169
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1170
|
+
"""
|
1171
|
+
return pulumi.get(self, "vcn_id")
|
1172
|
+
|