pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.26.0a1741943394__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.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,433 @@
|
|
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
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetOpensearchClusterPipelineResult',
|
20
|
+
'AwaitableGetOpensearchClusterPipelineResult',
|
21
|
+
'get_opensearch_cluster_pipeline',
|
22
|
+
'get_opensearch_cluster_pipeline_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetOpensearchClusterPipelineResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getOpensearchClusterPipeline.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, compartment_id=None, data_prepper_configuration_body=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, memory_gb=None, node_count=None, nsg_id=None, ocpu_count=None, opc_dry_run=None, opensearch_cluster_pipeline_id=None, opensearch_pipeline_fqdn=None, opensearch_pipeline_private_ip=None, pipeline_configuration_body=None, pipeline_mode=None, reverse_connection_endpoints=None, state=None, subnet_compartment_id=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None, vcn_compartment_id=None, vcn_id=None):
|
31
|
+
if compartment_id and not isinstance(compartment_id, str):
|
32
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
34
|
+
if data_prepper_configuration_body and not isinstance(data_prepper_configuration_body, str):
|
35
|
+
raise TypeError("Expected argument 'data_prepper_configuration_body' to be a str")
|
36
|
+
pulumi.set(__self__, "data_prepper_configuration_body", data_prepper_configuration_body)
|
37
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
38
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
39
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
40
|
+
if display_name and not isinstance(display_name, str):
|
41
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
42
|
+
pulumi.set(__self__, "display_name", display_name)
|
43
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
44
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
45
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
46
|
+
if id and not isinstance(id, str):
|
47
|
+
raise TypeError("Expected argument 'id' to be a str")
|
48
|
+
pulumi.set(__self__, "id", id)
|
49
|
+
if memory_gb and not isinstance(memory_gb, int):
|
50
|
+
raise TypeError("Expected argument 'memory_gb' to be a int")
|
51
|
+
pulumi.set(__self__, "memory_gb", memory_gb)
|
52
|
+
if node_count and not isinstance(node_count, int):
|
53
|
+
raise TypeError("Expected argument 'node_count' to be a int")
|
54
|
+
pulumi.set(__self__, "node_count", node_count)
|
55
|
+
if nsg_id and not isinstance(nsg_id, str):
|
56
|
+
raise TypeError("Expected argument 'nsg_id' to be a str")
|
57
|
+
pulumi.set(__self__, "nsg_id", nsg_id)
|
58
|
+
if ocpu_count and not isinstance(ocpu_count, int):
|
59
|
+
raise TypeError("Expected argument 'ocpu_count' to be a int")
|
60
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
61
|
+
if opc_dry_run and not isinstance(opc_dry_run, bool):
|
62
|
+
raise TypeError("Expected argument 'opc_dry_run' to be a bool")
|
63
|
+
pulumi.set(__self__, "opc_dry_run", opc_dry_run)
|
64
|
+
if opensearch_cluster_pipeline_id and not isinstance(opensearch_cluster_pipeline_id, str):
|
65
|
+
raise TypeError("Expected argument 'opensearch_cluster_pipeline_id' to be a str")
|
66
|
+
pulumi.set(__self__, "opensearch_cluster_pipeline_id", opensearch_cluster_pipeline_id)
|
67
|
+
if opensearch_pipeline_fqdn and not isinstance(opensearch_pipeline_fqdn, str):
|
68
|
+
raise TypeError("Expected argument 'opensearch_pipeline_fqdn' to be a str")
|
69
|
+
pulumi.set(__self__, "opensearch_pipeline_fqdn", opensearch_pipeline_fqdn)
|
70
|
+
if opensearch_pipeline_private_ip and not isinstance(opensearch_pipeline_private_ip, str):
|
71
|
+
raise TypeError("Expected argument 'opensearch_pipeline_private_ip' to be a str")
|
72
|
+
pulumi.set(__self__, "opensearch_pipeline_private_ip", opensearch_pipeline_private_ip)
|
73
|
+
if pipeline_configuration_body and not isinstance(pipeline_configuration_body, str):
|
74
|
+
raise TypeError("Expected argument 'pipeline_configuration_body' to be a str")
|
75
|
+
pulumi.set(__self__, "pipeline_configuration_body", pipeline_configuration_body)
|
76
|
+
if pipeline_mode and not isinstance(pipeline_mode, str):
|
77
|
+
raise TypeError("Expected argument 'pipeline_mode' to be a str")
|
78
|
+
pulumi.set(__self__, "pipeline_mode", pipeline_mode)
|
79
|
+
if reverse_connection_endpoints and not isinstance(reverse_connection_endpoints, list):
|
80
|
+
raise TypeError("Expected argument 'reverse_connection_endpoints' to be a list")
|
81
|
+
pulumi.set(__self__, "reverse_connection_endpoints", reverse_connection_endpoints)
|
82
|
+
if state and not isinstance(state, str):
|
83
|
+
raise TypeError("Expected argument 'state' to be a str")
|
84
|
+
pulumi.set(__self__, "state", state)
|
85
|
+
if subnet_compartment_id and not isinstance(subnet_compartment_id, str):
|
86
|
+
raise TypeError("Expected argument 'subnet_compartment_id' to be a str")
|
87
|
+
pulumi.set(__self__, "subnet_compartment_id", subnet_compartment_id)
|
88
|
+
if subnet_id and not isinstance(subnet_id, str):
|
89
|
+
raise TypeError("Expected argument 'subnet_id' to be a str")
|
90
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
91
|
+
if system_tags and not isinstance(system_tags, dict):
|
92
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
93
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
94
|
+
if time_created and not isinstance(time_created, str):
|
95
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
96
|
+
pulumi.set(__self__, "time_created", time_created)
|
97
|
+
if time_updated and not isinstance(time_updated, str):
|
98
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
99
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
100
|
+
if vcn_compartment_id and not isinstance(vcn_compartment_id, str):
|
101
|
+
raise TypeError("Expected argument 'vcn_compartment_id' to be a str")
|
102
|
+
pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
|
103
|
+
if vcn_id and not isinstance(vcn_id, str):
|
104
|
+
raise TypeError("Expected argument 'vcn_id' to be a str")
|
105
|
+
pulumi.set(__self__, "vcn_id", vcn_id)
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter(name="compartmentId")
|
109
|
+
def compartment_id(self) -> str:
|
110
|
+
"""
|
111
|
+
The OCID of the compartment where the pipeline is located.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "compartment_id")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="dataPrepperConfigurationBody")
|
117
|
+
def data_prepper_configuration_body(self) -> str:
|
118
|
+
"""
|
119
|
+
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 \\.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "data_prepper_configuration_body")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="definedTags")
|
125
|
+
def defined_tags(self) -> Mapping[str, str]:
|
126
|
+
"""
|
127
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "defined_tags")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="displayName")
|
133
|
+
def display_name(self) -> str:
|
134
|
+
"""
|
135
|
+
The name of the pipeline. Avoid entering confidential information.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "display_name")
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="freeformTags")
|
141
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
142
|
+
"""
|
143
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "freeform_tags")
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter
|
149
|
+
def id(self) -> str:
|
150
|
+
"""
|
151
|
+
The OCID of the cluster pipeline.
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "id")
|
154
|
+
|
155
|
+
@property
|
156
|
+
@pulumi.getter(name="memoryGb")
|
157
|
+
def memory_gb(self) -> int:
|
158
|
+
"""
|
159
|
+
The amount of memory in GB, for each pipeline node.
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "memory_gb")
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="nodeCount")
|
165
|
+
def node_count(self) -> int:
|
166
|
+
"""
|
167
|
+
The number of nodes configured for the pipeline.
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "node_count")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter(name="nsgId")
|
173
|
+
def nsg_id(self) -> str:
|
174
|
+
"""
|
175
|
+
The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "nsg_id")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="ocpuCount")
|
181
|
+
def ocpu_count(self) -> int:
|
182
|
+
"""
|
183
|
+
The number of OCPUs configured for each pipeline node.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "ocpu_count")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter(name="opcDryRun")
|
189
|
+
def opc_dry_run(self) -> bool:
|
190
|
+
return pulumi.get(self, "opc_dry_run")
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter(name="opensearchClusterPipelineId")
|
194
|
+
def opensearch_cluster_pipeline_id(self) -> str:
|
195
|
+
return pulumi.get(self, "opensearch_cluster_pipeline_id")
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="opensearchPipelineFqdn")
|
199
|
+
def opensearch_pipeline_fqdn(self) -> str:
|
200
|
+
"""
|
201
|
+
The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "opensearch_pipeline_fqdn")
|
204
|
+
|
205
|
+
@property
|
206
|
+
@pulumi.getter(name="opensearchPipelinePrivateIp")
|
207
|
+
def opensearch_pipeline_private_ip(self) -> str:
|
208
|
+
"""
|
209
|
+
The pipeline's private IP address.
|
210
|
+
"""
|
211
|
+
return pulumi.get(self, "opensearch_pipeline_private_ip")
|
212
|
+
|
213
|
+
@property
|
214
|
+
@pulumi.getter(name="pipelineConfigurationBody")
|
215
|
+
def pipeline_configuration_body(self) -> str:
|
216
|
+
"""
|
217
|
+
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 \\.
|
218
|
+
"""
|
219
|
+
return pulumi.get(self, "pipeline_configuration_body")
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter(name="pipelineMode")
|
223
|
+
def pipeline_mode(self) -> str:
|
224
|
+
"""
|
225
|
+
The current state of the pipeline.
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "pipeline_mode")
|
228
|
+
|
229
|
+
@property
|
230
|
+
@pulumi.getter(name="reverseConnectionEndpoints")
|
231
|
+
def reverse_connection_endpoints(self) -> Sequence['outputs.GetOpensearchClusterPipelineReverseConnectionEndpointResult']:
|
232
|
+
"""
|
233
|
+
The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
234
|
+
"""
|
235
|
+
return pulumi.get(self, "reverse_connection_endpoints")
|
236
|
+
|
237
|
+
@property
|
238
|
+
@pulumi.getter
|
239
|
+
def state(self) -> str:
|
240
|
+
"""
|
241
|
+
The current state of the cluster backup.
|
242
|
+
"""
|
243
|
+
return pulumi.get(self, "state")
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter(name="subnetCompartmentId")
|
247
|
+
def subnet_compartment_id(self) -> str:
|
248
|
+
"""
|
249
|
+
The OCID for the compartment where the pipeline's subnet is located.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "subnet_compartment_id")
|
252
|
+
|
253
|
+
@property
|
254
|
+
@pulumi.getter(name="subnetId")
|
255
|
+
def subnet_id(self) -> str:
|
256
|
+
"""
|
257
|
+
The OCID of the pipeline's subnet.
|
258
|
+
"""
|
259
|
+
return pulumi.get(self, "subnet_id")
|
260
|
+
|
261
|
+
@property
|
262
|
+
@pulumi.getter(name="systemTags")
|
263
|
+
def system_tags(self) -> Mapping[str, str]:
|
264
|
+
"""
|
265
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
266
|
+
"""
|
267
|
+
return pulumi.get(self, "system_tags")
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="timeCreated")
|
271
|
+
def time_created(self) -> str:
|
272
|
+
"""
|
273
|
+
The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "time_created")
|
276
|
+
|
277
|
+
@property
|
278
|
+
@pulumi.getter(name="timeUpdated")
|
279
|
+
def time_updated(self) -> str:
|
280
|
+
"""
|
281
|
+
The amount of time in milliseconds since the pipeline was updated.
|
282
|
+
"""
|
283
|
+
return pulumi.get(self, "time_updated")
|
284
|
+
|
285
|
+
@property
|
286
|
+
@pulumi.getter(name="vcnCompartmentId")
|
287
|
+
def vcn_compartment_id(self) -> str:
|
288
|
+
"""
|
289
|
+
The OCID for the compartment where the pipeline's VCN is located.
|
290
|
+
"""
|
291
|
+
return pulumi.get(self, "vcn_compartment_id")
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="vcnId")
|
295
|
+
def vcn_id(self) -> str:
|
296
|
+
"""
|
297
|
+
The OCID of the pipeline's VCN.
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "vcn_id")
|
300
|
+
|
301
|
+
|
302
|
+
class AwaitableGetOpensearchClusterPipelineResult(GetOpensearchClusterPipelineResult):
|
303
|
+
# pylint: disable=using-constant-test
|
304
|
+
def __await__(self):
|
305
|
+
if False:
|
306
|
+
yield self
|
307
|
+
return GetOpensearchClusterPipelineResult(
|
308
|
+
compartment_id=self.compartment_id,
|
309
|
+
data_prepper_configuration_body=self.data_prepper_configuration_body,
|
310
|
+
defined_tags=self.defined_tags,
|
311
|
+
display_name=self.display_name,
|
312
|
+
freeform_tags=self.freeform_tags,
|
313
|
+
id=self.id,
|
314
|
+
memory_gb=self.memory_gb,
|
315
|
+
node_count=self.node_count,
|
316
|
+
nsg_id=self.nsg_id,
|
317
|
+
ocpu_count=self.ocpu_count,
|
318
|
+
opc_dry_run=self.opc_dry_run,
|
319
|
+
opensearch_cluster_pipeline_id=self.opensearch_cluster_pipeline_id,
|
320
|
+
opensearch_pipeline_fqdn=self.opensearch_pipeline_fqdn,
|
321
|
+
opensearch_pipeline_private_ip=self.opensearch_pipeline_private_ip,
|
322
|
+
pipeline_configuration_body=self.pipeline_configuration_body,
|
323
|
+
pipeline_mode=self.pipeline_mode,
|
324
|
+
reverse_connection_endpoints=self.reverse_connection_endpoints,
|
325
|
+
state=self.state,
|
326
|
+
subnet_compartment_id=self.subnet_compartment_id,
|
327
|
+
subnet_id=self.subnet_id,
|
328
|
+
system_tags=self.system_tags,
|
329
|
+
time_created=self.time_created,
|
330
|
+
time_updated=self.time_updated,
|
331
|
+
vcn_compartment_id=self.vcn_compartment_id,
|
332
|
+
vcn_id=self.vcn_id)
|
333
|
+
|
334
|
+
|
335
|
+
def get_opensearch_cluster_pipeline(opensearch_cluster_pipeline_id: Optional[str] = None,
|
336
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOpensearchClusterPipelineResult:
|
337
|
+
"""
|
338
|
+
This data source provides details about a specific Opensearch Cluster Pipeline resource in Oracle Cloud Infrastructure Opensearch service.
|
339
|
+
|
340
|
+
Gets a OpensearchCluster Pipeline by identifier
|
341
|
+
|
342
|
+
## Example Usage
|
343
|
+
|
344
|
+
```python
|
345
|
+
import pulumi
|
346
|
+
import pulumi_oci as oci
|
347
|
+
|
348
|
+
test_opensearch_cluster_pipeline = oci.Opensearch.get_opensearch_cluster_pipeline(opensearch_cluster_pipeline_id=test_opensearch_cluster_pipeline_oci_opensearch_opensearch_cluster_pipeline["id"])
|
349
|
+
```
|
350
|
+
|
351
|
+
|
352
|
+
:param str opensearch_cluster_pipeline_id: unique OpensearchClusterPipeline identifier
|
353
|
+
"""
|
354
|
+
__args__ = dict()
|
355
|
+
__args__['opensearchClusterPipelineId'] = opensearch_cluster_pipeline_id
|
356
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
357
|
+
__ret__ = pulumi.runtime.invoke('oci:Opensearch/getOpensearchClusterPipeline:getOpensearchClusterPipeline', __args__, opts=opts, typ=GetOpensearchClusterPipelineResult).value
|
358
|
+
|
359
|
+
return AwaitableGetOpensearchClusterPipelineResult(
|
360
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
361
|
+
data_prepper_configuration_body=pulumi.get(__ret__, 'data_prepper_configuration_body'),
|
362
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
363
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
364
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
365
|
+
id=pulumi.get(__ret__, 'id'),
|
366
|
+
memory_gb=pulumi.get(__ret__, 'memory_gb'),
|
367
|
+
node_count=pulumi.get(__ret__, 'node_count'),
|
368
|
+
nsg_id=pulumi.get(__ret__, 'nsg_id'),
|
369
|
+
ocpu_count=pulumi.get(__ret__, 'ocpu_count'),
|
370
|
+
opc_dry_run=pulumi.get(__ret__, 'opc_dry_run'),
|
371
|
+
opensearch_cluster_pipeline_id=pulumi.get(__ret__, 'opensearch_cluster_pipeline_id'),
|
372
|
+
opensearch_pipeline_fqdn=pulumi.get(__ret__, 'opensearch_pipeline_fqdn'),
|
373
|
+
opensearch_pipeline_private_ip=pulumi.get(__ret__, 'opensearch_pipeline_private_ip'),
|
374
|
+
pipeline_configuration_body=pulumi.get(__ret__, 'pipeline_configuration_body'),
|
375
|
+
pipeline_mode=pulumi.get(__ret__, 'pipeline_mode'),
|
376
|
+
reverse_connection_endpoints=pulumi.get(__ret__, 'reverse_connection_endpoints'),
|
377
|
+
state=pulumi.get(__ret__, 'state'),
|
378
|
+
subnet_compartment_id=pulumi.get(__ret__, 'subnet_compartment_id'),
|
379
|
+
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
380
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
381
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
382
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
383
|
+
vcn_compartment_id=pulumi.get(__ret__, 'vcn_compartment_id'),
|
384
|
+
vcn_id=pulumi.get(__ret__, 'vcn_id'))
|
385
|
+
def get_opensearch_cluster_pipeline_output(opensearch_cluster_pipeline_id: Optional[pulumi.Input[str]] = None,
|
386
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOpensearchClusterPipelineResult]:
|
387
|
+
"""
|
388
|
+
This data source provides details about a specific Opensearch Cluster Pipeline resource in Oracle Cloud Infrastructure Opensearch service.
|
389
|
+
|
390
|
+
Gets a OpensearchCluster Pipeline by identifier
|
391
|
+
|
392
|
+
## Example Usage
|
393
|
+
|
394
|
+
```python
|
395
|
+
import pulumi
|
396
|
+
import pulumi_oci as oci
|
397
|
+
|
398
|
+
test_opensearch_cluster_pipeline = oci.Opensearch.get_opensearch_cluster_pipeline(opensearch_cluster_pipeline_id=test_opensearch_cluster_pipeline_oci_opensearch_opensearch_cluster_pipeline["id"])
|
399
|
+
```
|
400
|
+
|
401
|
+
|
402
|
+
:param str opensearch_cluster_pipeline_id: unique OpensearchClusterPipeline identifier
|
403
|
+
"""
|
404
|
+
__args__ = dict()
|
405
|
+
__args__['opensearchClusterPipelineId'] = opensearch_cluster_pipeline_id
|
406
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
407
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Opensearch/getOpensearchClusterPipeline:getOpensearchClusterPipeline', __args__, opts=opts, typ=GetOpensearchClusterPipelineResult)
|
408
|
+
return __ret__.apply(lambda __response__: GetOpensearchClusterPipelineResult(
|
409
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
410
|
+
data_prepper_configuration_body=pulumi.get(__response__, 'data_prepper_configuration_body'),
|
411
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
412
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
413
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
414
|
+
id=pulumi.get(__response__, 'id'),
|
415
|
+
memory_gb=pulumi.get(__response__, 'memory_gb'),
|
416
|
+
node_count=pulumi.get(__response__, 'node_count'),
|
417
|
+
nsg_id=pulumi.get(__response__, 'nsg_id'),
|
418
|
+
ocpu_count=pulumi.get(__response__, 'ocpu_count'),
|
419
|
+
opc_dry_run=pulumi.get(__response__, 'opc_dry_run'),
|
420
|
+
opensearch_cluster_pipeline_id=pulumi.get(__response__, 'opensearch_cluster_pipeline_id'),
|
421
|
+
opensearch_pipeline_fqdn=pulumi.get(__response__, 'opensearch_pipeline_fqdn'),
|
422
|
+
opensearch_pipeline_private_ip=pulumi.get(__response__, 'opensearch_pipeline_private_ip'),
|
423
|
+
pipeline_configuration_body=pulumi.get(__response__, 'pipeline_configuration_body'),
|
424
|
+
pipeline_mode=pulumi.get(__response__, 'pipeline_mode'),
|
425
|
+
reverse_connection_endpoints=pulumi.get(__response__, 'reverse_connection_endpoints'),
|
426
|
+
state=pulumi.get(__response__, 'state'),
|
427
|
+
subnet_compartment_id=pulumi.get(__response__, 'subnet_compartment_id'),
|
428
|
+
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
429
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
430
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
431
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
432
|
+
vcn_compartment_id=pulumi.get(__response__, 'vcn_compartment_id'),
|
433
|
+
vcn_id=pulumi.get(__response__, 'vcn_id')))
|
@@ -0,0 +1,218 @@
|
|
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__ = [
|
20
|
+
'GetOpensearchClusterPipelinesResult',
|
21
|
+
'AwaitableGetOpensearchClusterPipelinesResult',
|
22
|
+
'get_opensearch_cluster_pipelines',
|
23
|
+
'get_opensearch_cluster_pipelines_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetOpensearchClusterPipelinesResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getOpensearchClusterPipelines.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, opensearch_cluster_pipeline_collections=None, pipeline_component_id=None, state=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if display_name and not isinstance(display_name, str):
|
36
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
37
|
+
pulumi.set(__self__, "display_name", display_name)
|
38
|
+
if filters and not isinstance(filters, list):
|
39
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
40
|
+
pulumi.set(__self__, "filters", filters)
|
41
|
+
if id and not isinstance(id, str):
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
if opensearch_cluster_pipeline_collections and not isinstance(opensearch_cluster_pipeline_collections, list):
|
45
|
+
raise TypeError("Expected argument 'opensearch_cluster_pipeline_collections' to be a list")
|
46
|
+
pulumi.set(__self__, "opensearch_cluster_pipeline_collections", opensearch_cluster_pipeline_collections)
|
47
|
+
if pipeline_component_id and not isinstance(pipeline_component_id, str):
|
48
|
+
raise TypeError("Expected argument 'pipeline_component_id' to be a str")
|
49
|
+
pulumi.set(__self__, "pipeline_component_id", pipeline_component_id)
|
50
|
+
if state and not isinstance(state, str):
|
51
|
+
raise TypeError("Expected argument 'state' to be a str")
|
52
|
+
pulumi.set(__self__, "state", state)
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter(name="compartmentId")
|
56
|
+
def compartment_id(self) -> str:
|
57
|
+
"""
|
58
|
+
The OCID of the compartment where the pipeline is located.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "compartment_id")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="displayName")
|
64
|
+
def display_name(self) -> Optional[str]:
|
65
|
+
"""
|
66
|
+
The name of the pipeline. Avoid entering confidential information.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "display_name")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter
|
72
|
+
def filters(self) -> Optional[Sequence['outputs.GetOpensearchClusterPipelinesFilterResult']]:
|
73
|
+
return pulumi.get(self, "filters")
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter
|
77
|
+
def id(self) -> Optional[str]:
|
78
|
+
"""
|
79
|
+
The OCID of the cluster pipeline.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "id")
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter(name="opensearchClusterPipelineCollections")
|
85
|
+
def opensearch_cluster_pipeline_collections(self) -> Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionResult']:
|
86
|
+
"""
|
87
|
+
The list of opensearch_cluster_pipeline_collection.
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "opensearch_cluster_pipeline_collections")
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter(name="pipelineComponentId")
|
93
|
+
def pipeline_component_id(self) -> Optional[str]:
|
94
|
+
return pulumi.get(self, "pipeline_component_id")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter
|
98
|
+
def state(self) -> Optional[str]:
|
99
|
+
"""
|
100
|
+
The current state of the cluster backup.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "state")
|
103
|
+
|
104
|
+
|
105
|
+
class AwaitableGetOpensearchClusterPipelinesResult(GetOpensearchClusterPipelinesResult):
|
106
|
+
# pylint: disable=using-constant-test
|
107
|
+
def __await__(self):
|
108
|
+
if False:
|
109
|
+
yield self
|
110
|
+
return GetOpensearchClusterPipelinesResult(
|
111
|
+
compartment_id=self.compartment_id,
|
112
|
+
display_name=self.display_name,
|
113
|
+
filters=self.filters,
|
114
|
+
id=self.id,
|
115
|
+
opensearch_cluster_pipeline_collections=self.opensearch_cluster_pipeline_collections,
|
116
|
+
pipeline_component_id=self.pipeline_component_id,
|
117
|
+
state=self.state)
|
118
|
+
|
119
|
+
|
120
|
+
def get_opensearch_cluster_pipelines(compartment_id: Optional[str] = None,
|
121
|
+
display_name: Optional[str] = None,
|
122
|
+
filters: Optional[Sequence[Union['GetOpensearchClusterPipelinesFilterArgs', 'GetOpensearchClusterPipelinesFilterArgsDict']]] = None,
|
123
|
+
id: Optional[str] = None,
|
124
|
+
pipeline_component_id: Optional[str] = None,
|
125
|
+
state: Optional[str] = None,
|
126
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOpensearchClusterPipelinesResult:
|
127
|
+
"""
|
128
|
+
This data source provides the list of Opensearch Cluster Pipelines in Oracle Cloud Infrastructure Opensearch service.
|
129
|
+
|
130
|
+
Returns a list of OpensearchClusterPipelines.
|
131
|
+
|
132
|
+
## Example Usage
|
133
|
+
|
134
|
+
```python
|
135
|
+
import pulumi
|
136
|
+
import pulumi_oci as oci
|
137
|
+
|
138
|
+
test_opensearch_cluster_pipelines = oci.Opensearch.get_opensearch_cluster_pipelines(compartment_id=compartment_id,
|
139
|
+
display_name=opensearch_cluster_pipeline_display_name,
|
140
|
+
id=opensearch_cluster_pipeline_id,
|
141
|
+
pipeline_component_id=test_pipeline_component["id"],
|
142
|
+
state=opensearch_cluster_pipeline_state)
|
143
|
+
```
|
144
|
+
|
145
|
+
|
146
|
+
:param str compartment_id: The ID of the compartment in which to list resources.
|
147
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
148
|
+
:param str id: unique OpensearchClusterPipeline identifier
|
149
|
+
:param str pipeline_component_id: A filter to return pipelines whose any component has the given pipelineComponentId.
|
150
|
+
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
151
|
+
"""
|
152
|
+
__args__ = dict()
|
153
|
+
__args__['compartmentId'] = compartment_id
|
154
|
+
__args__['displayName'] = display_name
|
155
|
+
__args__['filters'] = filters
|
156
|
+
__args__['id'] = id
|
157
|
+
__args__['pipelineComponentId'] = pipeline_component_id
|
158
|
+
__args__['state'] = state
|
159
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
160
|
+
__ret__ = pulumi.runtime.invoke('oci:Opensearch/getOpensearchClusterPipelines:getOpensearchClusterPipelines', __args__, opts=opts, typ=GetOpensearchClusterPipelinesResult).value
|
161
|
+
|
162
|
+
return AwaitableGetOpensearchClusterPipelinesResult(
|
163
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
164
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
165
|
+
filters=pulumi.get(__ret__, 'filters'),
|
166
|
+
id=pulumi.get(__ret__, 'id'),
|
167
|
+
opensearch_cluster_pipeline_collections=pulumi.get(__ret__, 'opensearch_cluster_pipeline_collections'),
|
168
|
+
pipeline_component_id=pulumi.get(__ret__, 'pipeline_component_id'),
|
169
|
+
state=pulumi.get(__ret__, 'state'))
|
170
|
+
def get_opensearch_cluster_pipelines_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
171
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
172
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetOpensearchClusterPipelinesFilterArgs', 'GetOpensearchClusterPipelinesFilterArgsDict']]]]] = None,
|
173
|
+
id: Optional[pulumi.Input[Optional[str]]] = None,
|
174
|
+
pipeline_component_id: Optional[pulumi.Input[Optional[str]]] = None,
|
175
|
+
state: Optional[pulumi.Input[Optional[str]]] = None,
|
176
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOpensearchClusterPipelinesResult]:
|
177
|
+
"""
|
178
|
+
This data source provides the list of Opensearch Cluster Pipelines in Oracle Cloud Infrastructure Opensearch service.
|
179
|
+
|
180
|
+
Returns a list of OpensearchClusterPipelines.
|
181
|
+
|
182
|
+
## Example Usage
|
183
|
+
|
184
|
+
```python
|
185
|
+
import pulumi
|
186
|
+
import pulumi_oci as oci
|
187
|
+
|
188
|
+
test_opensearch_cluster_pipelines = oci.Opensearch.get_opensearch_cluster_pipelines(compartment_id=compartment_id,
|
189
|
+
display_name=opensearch_cluster_pipeline_display_name,
|
190
|
+
id=opensearch_cluster_pipeline_id,
|
191
|
+
pipeline_component_id=test_pipeline_component["id"],
|
192
|
+
state=opensearch_cluster_pipeline_state)
|
193
|
+
```
|
194
|
+
|
195
|
+
|
196
|
+
:param str compartment_id: The ID of the compartment in which to list resources.
|
197
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
198
|
+
:param str id: unique OpensearchClusterPipeline identifier
|
199
|
+
:param str pipeline_component_id: A filter to return pipelines whose any component has the given pipelineComponentId.
|
200
|
+
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
201
|
+
"""
|
202
|
+
__args__ = dict()
|
203
|
+
__args__['compartmentId'] = compartment_id
|
204
|
+
__args__['displayName'] = display_name
|
205
|
+
__args__['filters'] = filters
|
206
|
+
__args__['id'] = id
|
207
|
+
__args__['pipelineComponentId'] = pipeline_component_id
|
208
|
+
__args__['state'] = state
|
209
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
210
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Opensearch/getOpensearchClusterPipelines:getOpensearchClusterPipelines', __args__, opts=opts, typ=GetOpensearchClusterPipelinesResult)
|
211
|
+
return __ret__.apply(lambda __response__: GetOpensearchClusterPipelinesResult(
|
212
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
213
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
214
|
+
filters=pulumi.get(__response__, 'filters'),
|
215
|
+
id=pulumi.get(__response__, 'id'),
|
216
|
+
opensearch_cluster_pipeline_collections=pulumi.get(__response__, 'opensearch_cluster_pipeline_collections'),
|
217
|
+
pipeline_component_id=pulumi.get(__response__, 'pipeline_component_id'),
|
218
|
+
state=pulumi.get(__response__, 'state')))
|