pulumi-oci 2.19.0a1734003732__py3-none-any.whl → 2.20.0__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 +16 -0
- pulumi_oci/bigdataservice/__init__.py +4 -0
- pulumi_oci/bigdataservice/_inputs.py +672 -6
- pulumi_oci/bigdataservice/bds_instance.py +169 -7
- pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
- pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
- pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
- pulumi_oci/bigdataservice/outputs.py +1466 -98
- pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
- pulumi_oci/blockchain/outputs.py +2 -2
- pulumi_oci/core/outputs.py +4 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +104 -0
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/datascience/_inputs.py +32 -12
- pulumi_oci/datascience/get_job_run.py +3 -3
- pulumi_oci/datascience/get_job_runs.py +2 -2
- pulumi_oci/datascience/job_run.py +7 -7
- pulumi_oci/datascience/model_deployment.py +2 -0
- pulumi_oci/datascience/outputs.py +62 -26
- pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
- pulumi_oci/goldengate/__init__.py +7 -0
- pulumi_oci/goldengate/_inputs.py +665 -0
- pulumi_oci/goldengate/connection.py +7 -7
- pulumi_oci/goldengate/get_pipeline.py +408 -0
- pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
- pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
- pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
- pulumi_oci/goldengate/get_pipelines.py +213 -0
- pulumi_oci/goldengate/get_recipes.py +188 -0
- pulumi_oci/goldengate/get_trail_files.py +4 -2
- pulumi_oci/goldengate/get_trail_sequences.py +4 -2
- pulumi_oci/goldengate/outputs.py +1500 -0
- pulumi_oci/goldengate/pipeline.py +928 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/_inputs.py +94 -14
- pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
- pulumi_oci/stackmonitoring/metric_extension.py +8 -0
- pulumi_oci/stackmonitoring/outputs.py +166 -24
- {pulumi_oci-2.19.0a1734003732.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
- {pulumi_oci-2.19.0a1734003732.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +50 -39
- {pulumi_oci-2.19.0a1734003732.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.19.0a1734003732.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -199,7 +199,7 @@ class ConnectionArgs:
|
|
199
199
|
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
200
200
|
:param pulumi.Input[str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
201
201
|
:param pulumi.Input[str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
202
|
-
:param pulumi.Input[str] ssl_key: (Updatable) Client Key
|
202
|
+
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
203
203
|
:param pulumi.Input[str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
|
204
204
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
205
205
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
@@ -1344,7 +1344,7 @@ class ConnectionArgs:
|
|
1344
1344
|
@pulumi.getter(name="sslKey")
|
1345
1345
|
def ssl_key(self) -> Optional[pulumi.Input[str]]:
|
1346
1346
|
"""
|
1347
|
-
(Updatable) Client Key
|
1347
|
+
(Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
1348
1348
|
"""
|
1349
1349
|
return pulumi.get(self, "ssl_key")
|
1350
1350
|
|
@@ -1774,7 +1774,7 @@ class _ConnectionState:
|
|
1774
1774
|
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
1775
1775
|
:param pulumi.Input[str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
1776
1776
|
:param pulumi.Input[str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
1777
|
-
:param pulumi.Input[str] ssl_key: (Updatable) Client Key
|
1777
|
+
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
1778
1778
|
:param pulumi.Input[str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
|
1779
1779
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
1780
1780
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
@@ -2952,7 +2952,7 @@ class _ConnectionState:
|
|
2952
2952
|
@pulumi.getter(name="sslKey")
|
2953
2953
|
def ssl_key(self) -> Optional[pulumi.Input[str]]:
|
2954
2954
|
"""
|
2955
|
-
(Updatable) Client Key
|
2955
|
+
(Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
2956
2956
|
"""
|
2957
2957
|
return pulumi.get(self, "ssl_key")
|
2958
2958
|
|
@@ -3569,7 +3569,7 @@ class Connection(pulumi.CustomResource):
|
|
3569
3569
|
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
3570
3570
|
:param pulumi.Input[str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
3571
3571
|
:param pulumi.Input[str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
3572
|
-
:param pulumi.Input[str] ssl_key: (Updatable) Client Key
|
3572
|
+
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
3573
3573
|
:param pulumi.Input[str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
|
3574
3574
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
3575
3575
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
@@ -4168,7 +4168,7 @@ class Connection(pulumi.CustomResource):
|
|
4168
4168
|
:param pulumi.Input[str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate.
|
4169
4169
|
:param pulumi.Input[str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
4170
4170
|
:param pulumi.Input[str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
4171
|
-
:param pulumi.Input[str] ssl_key: (Updatable) Client Key
|
4171
|
+
:param pulumi.Input[str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
4172
4172
|
:param pulumi.Input[str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided.
|
4173
4173
|
:param pulumi.Input[str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
4174
4174
|
:param pulumi.Input[str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
@@ -4936,7 +4936,7 @@ class Connection(pulumi.CustomResource):
|
|
4936
4936
|
@pulumi.getter(name="sslKey")
|
4937
4937
|
def ssl_key(self) -> pulumi.Output[Optional[str]]:
|
4938
4938
|
"""
|
4939
|
-
(Updatable) Client Key
|
4939
|
+
(Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL).
|
4940
4940
|
"""
|
4941
4941
|
return pulumi.get(self, "ssl_key")
|
4942
4942
|
|
@@ -0,0 +1,408 @@
|
|
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
|
+
'GetPipelineResult',
|
20
|
+
'AwaitableGetPipelineResult',
|
21
|
+
'get_pipeline',
|
22
|
+
'get_pipeline_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetPipelineResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getPipeline.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, compartment_id=None, cpu_core_count=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_auto_scaling_enabled=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, locks=None, mapping_rules=None, pipeline_id=None, process_options=None, recipe_type=None, source_connection_details=None, state=None, system_tags=None, target_connection_details=None, time_created=None, time_last_recorded=None, time_updated=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 cpu_core_count and not isinstance(cpu_core_count, int):
|
35
|
+
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
36
|
+
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
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 description and not isinstance(description, str):
|
41
|
+
raise TypeError("Expected argument 'description' to be a str")
|
42
|
+
pulumi.set(__self__, "description", description)
|
43
|
+
if display_name and not isinstance(display_name, str):
|
44
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
45
|
+
pulumi.set(__self__, "display_name", display_name)
|
46
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
47
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
48
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
49
|
+
if id and not isinstance(id, str):
|
50
|
+
raise TypeError("Expected argument 'id' to be a str")
|
51
|
+
pulumi.set(__self__, "id", id)
|
52
|
+
if is_auto_scaling_enabled and not isinstance(is_auto_scaling_enabled, bool):
|
53
|
+
raise TypeError("Expected argument 'is_auto_scaling_enabled' to be a bool")
|
54
|
+
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
55
|
+
if license_model and not isinstance(license_model, str):
|
56
|
+
raise TypeError("Expected argument 'license_model' to be a str")
|
57
|
+
pulumi.set(__self__, "license_model", license_model)
|
58
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
59
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
60
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
61
|
+
if lifecycle_sub_state and not isinstance(lifecycle_sub_state, str):
|
62
|
+
raise TypeError("Expected argument 'lifecycle_sub_state' to be a str")
|
63
|
+
pulumi.set(__self__, "lifecycle_sub_state", lifecycle_sub_state)
|
64
|
+
if locks and not isinstance(locks, list):
|
65
|
+
raise TypeError("Expected argument 'locks' to be a list")
|
66
|
+
pulumi.set(__self__, "locks", locks)
|
67
|
+
if mapping_rules and not isinstance(mapping_rules, list):
|
68
|
+
raise TypeError("Expected argument 'mapping_rules' to be a list")
|
69
|
+
pulumi.set(__self__, "mapping_rules", mapping_rules)
|
70
|
+
if pipeline_id and not isinstance(pipeline_id, str):
|
71
|
+
raise TypeError("Expected argument 'pipeline_id' to be a str")
|
72
|
+
pulumi.set(__self__, "pipeline_id", pipeline_id)
|
73
|
+
if process_options and not isinstance(process_options, list):
|
74
|
+
raise TypeError("Expected argument 'process_options' to be a list")
|
75
|
+
pulumi.set(__self__, "process_options", process_options)
|
76
|
+
if recipe_type and not isinstance(recipe_type, str):
|
77
|
+
raise TypeError("Expected argument 'recipe_type' to be a str")
|
78
|
+
pulumi.set(__self__, "recipe_type", recipe_type)
|
79
|
+
if source_connection_details and not isinstance(source_connection_details, list):
|
80
|
+
raise TypeError("Expected argument 'source_connection_details' to be a list")
|
81
|
+
pulumi.set(__self__, "source_connection_details", source_connection_details)
|
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 system_tags and not isinstance(system_tags, dict):
|
86
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
87
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
88
|
+
if target_connection_details and not isinstance(target_connection_details, list):
|
89
|
+
raise TypeError("Expected argument 'target_connection_details' to be a list")
|
90
|
+
pulumi.set(__self__, "target_connection_details", target_connection_details)
|
91
|
+
if time_created and not isinstance(time_created, str):
|
92
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
93
|
+
pulumi.set(__self__, "time_created", time_created)
|
94
|
+
if time_last_recorded and not isinstance(time_last_recorded, str):
|
95
|
+
raise TypeError("Expected argument 'time_last_recorded' to be a str")
|
96
|
+
pulumi.set(__self__, "time_last_recorded", time_last_recorded)
|
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
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="compartmentId")
|
103
|
+
def compartment_id(self) -> str:
|
104
|
+
"""
|
105
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "compartment_id")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="cpuCoreCount")
|
111
|
+
def cpu_core_count(self) -> int:
|
112
|
+
"""
|
113
|
+
The Minimum number of OCPUs to be made available for this Deployment.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "cpu_core_count")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="definedTags")
|
119
|
+
def defined_tags(self) -> Mapping[str, str]:
|
120
|
+
"""
|
121
|
+
Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "defined_tags")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter
|
127
|
+
def description(self) -> str:
|
128
|
+
"""
|
129
|
+
Metadata about this specific object.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "description")
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="displayName")
|
135
|
+
def display_name(self) -> str:
|
136
|
+
"""
|
137
|
+
An object's Display Name.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "display_name")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="freeformTags")
|
143
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
144
|
+
"""
|
145
|
+
A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "freeform_tags")
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter
|
151
|
+
def id(self) -> str:
|
152
|
+
"""
|
153
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline. This option applies when retrieving a pipeline.
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "id")
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="isAutoScalingEnabled")
|
159
|
+
def is_auto_scaling_enabled(self) -> bool:
|
160
|
+
"""
|
161
|
+
Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "is_auto_scaling_enabled")
|
164
|
+
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="licenseModel")
|
167
|
+
def license_model(self) -> str:
|
168
|
+
"""
|
169
|
+
The Oracle license model that applies to a Deployment.
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "license_model")
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter(name="lifecycleDetails")
|
175
|
+
def lifecycle_details(self) -> str:
|
176
|
+
"""
|
177
|
+
Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "lifecycle_details")
|
180
|
+
|
181
|
+
@property
|
182
|
+
@pulumi.getter(name="lifecycleSubState")
|
183
|
+
def lifecycle_sub_state(self) -> str:
|
184
|
+
"""
|
185
|
+
Possible lifecycle substates when retrieving a pipeline.
|
186
|
+
"""
|
187
|
+
return pulumi.get(self, "lifecycle_sub_state")
|
188
|
+
|
189
|
+
@property
|
190
|
+
@pulumi.getter
|
191
|
+
def locks(self) -> Sequence['outputs.GetPipelineLockResult']:
|
192
|
+
"""
|
193
|
+
Locks associated with this resource.
|
194
|
+
"""
|
195
|
+
return pulumi.get(self, "locks")
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="mappingRules")
|
199
|
+
def mapping_rules(self) -> Sequence['outputs.GetPipelineMappingRuleResult']:
|
200
|
+
"""
|
201
|
+
Mapping for source/target schema/tables for the pipeline data replication.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "mapping_rules")
|
204
|
+
|
205
|
+
@property
|
206
|
+
@pulumi.getter(name="pipelineId")
|
207
|
+
def pipeline_id(self) -> str:
|
208
|
+
return pulumi.get(self, "pipeline_id")
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="processOptions")
|
212
|
+
def process_options(self) -> Sequence['outputs.GetPipelineProcessOptionResult']:
|
213
|
+
"""
|
214
|
+
Required pipeline options to configure the replication process (Extract or Replicat).
|
215
|
+
"""
|
216
|
+
return pulumi.get(self, "process_options")
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="recipeType")
|
220
|
+
def recipe_type(self) -> str:
|
221
|
+
"""
|
222
|
+
The type of the recipe
|
223
|
+
"""
|
224
|
+
return pulumi.get(self, "recipe_type")
|
225
|
+
|
226
|
+
@property
|
227
|
+
@pulumi.getter(name="sourceConnectionDetails")
|
228
|
+
def source_connection_details(self) -> Sequence['outputs.GetPipelineSourceConnectionDetailResult']:
|
229
|
+
"""
|
230
|
+
The source connection details for creating a pipeline.
|
231
|
+
"""
|
232
|
+
return pulumi.get(self, "source_connection_details")
|
233
|
+
|
234
|
+
@property
|
235
|
+
@pulumi.getter
|
236
|
+
def state(self) -> str:
|
237
|
+
"""
|
238
|
+
Lifecycle state of the pipeline.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "state")
|
241
|
+
|
242
|
+
@property
|
243
|
+
@pulumi.getter(name="systemTags")
|
244
|
+
def system_tags(self) -> Mapping[str, str]:
|
245
|
+
"""
|
246
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
247
|
+
"""
|
248
|
+
return pulumi.get(self, "system_tags")
|
249
|
+
|
250
|
+
@property
|
251
|
+
@pulumi.getter(name="targetConnectionDetails")
|
252
|
+
def target_connection_details(self) -> Sequence['outputs.GetPipelineTargetConnectionDetailResult']:
|
253
|
+
"""
|
254
|
+
The target connection details for creating a pipeline.
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "target_connection_details")
|
257
|
+
|
258
|
+
@property
|
259
|
+
@pulumi.getter(name="timeCreated")
|
260
|
+
def time_created(self) -> str:
|
261
|
+
"""
|
262
|
+
The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "time_created")
|
265
|
+
|
266
|
+
@property
|
267
|
+
@pulumi.getter(name="timeLastRecorded")
|
268
|
+
def time_last_recorded(self) -> str:
|
269
|
+
"""
|
270
|
+
When the resource was last updated. This option applies when retrieving a pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "time_last_recorded")
|
273
|
+
|
274
|
+
@property
|
275
|
+
@pulumi.getter(name="timeUpdated")
|
276
|
+
def time_updated(self) -> str:
|
277
|
+
"""
|
278
|
+
The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
279
|
+
"""
|
280
|
+
return pulumi.get(self, "time_updated")
|
281
|
+
|
282
|
+
|
283
|
+
class AwaitableGetPipelineResult(GetPipelineResult):
|
284
|
+
# pylint: disable=using-constant-test
|
285
|
+
def __await__(self):
|
286
|
+
if False:
|
287
|
+
yield self
|
288
|
+
return GetPipelineResult(
|
289
|
+
compartment_id=self.compartment_id,
|
290
|
+
cpu_core_count=self.cpu_core_count,
|
291
|
+
defined_tags=self.defined_tags,
|
292
|
+
description=self.description,
|
293
|
+
display_name=self.display_name,
|
294
|
+
freeform_tags=self.freeform_tags,
|
295
|
+
id=self.id,
|
296
|
+
is_auto_scaling_enabled=self.is_auto_scaling_enabled,
|
297
|
+
license_model=self.license_model,
|
298
|
+
lifecycle_details=self.lifecycle_details,
|
299
|
+
lifecycle_sub_state=self.lifecycle_sub_state,
|
300
|
+
locks=self.locks,
|
301
|
+
mapping_rules=self.mapping_rules,
|
302
|
+
pipeline_id=self.pipeline_id,
|
303
|
+
process_options=self.process_options,
|
304
|
+
recipe_type=self.recipe_type,
|
305
|
+
source_connection_details=self.source_connection_details,
|
306
|
+
state=self.state,
|
307
|
+
system_tags=self.system_tags,
|
308
|
+
target_connection_details=self.target_connection_details,
|
309
|
+
time_created=self.time_created,
|
310
|
+
time_last_recorded=self.time_last_recorded,
|
311
|
+
time_updated=self.time_updated)
|
312
|
+
|
313
|
+
|
314
|
+
def get_pipeline(pipeline_id: Optional[str] = None,
|
315
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPipelineResult:
|
316
|
+
"""
|
317
|
+
This data source provides details about a specific Pipeline resource in Oracle Cloud Infrastructure Golden Gate service.
|
318
|
+
|
319
|
+
Retrieves a Pipeline details.
|
320
|
+
|
321
|
+
## Example Usage
|
322
|
+
|
323
|
+
```python
|
324
|
+
import pulumi
|
325
|
+
import pulumi_oci as oci
|
326
|
+
|
327
|
+
test_pipeline = oci.GoldenGate.get_pipeline(pipeline_id=test_pipeline_oci_golden_gate_pipeline["id"])
|
328
|
+
```
|
329
|
+
|
330
|
+
|
331
|
+
:param str pipeline_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline created.
|
332
|
+
"""
|
333
|
+
__args__ = dict()
|
334
|
+
__args__['pipelineId'] = pipeline_id
|
335
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
336
|
+
__ret__ = pulumi.runtime.invoke('oci:GoldenGate/getPipeline:getPipeline', __args__, opts=opts, typ=GetPipelineResult).value
|
337
|
+
|
338
|
+
return AwaitableGetPipelineResult(
|
339
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
340
|
+
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
341
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
342
|
+
description=pulumi.get(__ret__, 'description'),
|
343
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
344
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
345
|
+
id=pulumi.get(__ret__, 'id'),
|
346
|
+
is_auto_scaling_enabled=pulumi.get(__ret__, 'is_auto_scaling_enabled'),
|
347
|
+
license_model=pulumi.get(__ret__, 'license_model'),
|
348
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
349
|
+
lifecycle_sub_state=pulumi.get(__ret__, 'lifecycle_sub_state'),
|
350
|
+
locks=pulumi.get(__ret__, 'locks'),
|
351
|
+
mapping_rules=pulumi.get(__ret__, 'mapping_rules'),
|
352
|
+
pipeline_id=pulumi.get(__ret__, 'pipeline_id'),
|
353
|
+
process_options=pulumi.get(__ret__, 'process_options'),
|
354
|
+
recipe_type=pulumi.get(__ret__, 'recipe_type'),
|
355
|
+
source_connection_details=pulumi.get(__ret__, 'source_connection_details'),
|
356
|
+
state=pulumi.get(__ret__, 'state'),
|
357
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
358
|
+
target_connection_details=pulumi.get(__ret__, 'target_connection_details'),
|
359
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
360
|
+
time_last_recorded=pulumi.get(__ret__, 'time_last_recorded'),
|
361
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
362
|
+
def get_pipeline_output(pipeline_id: Optional[pulumi.Input[str]] = None,
|
363
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPipelineResult]:
|
364
|
+
"""
|
365
|
+
This data source provides details about a specific Pipeline resource in Oracle Cloud Infrastructure Golden Gate service.
|
366
|
+
|
367
|
+
Retrieves a Pipeline details.
|
368
|
+
|
369
|
+
## Example Usage
|
370
|
+
|
371
|
+
```python
|
372
|
+
import pulumi
|
373
|
+
import pulumi_oci as oci
|
374
|
+
|
375
|
+
test_pipeline = oci.GoldenGate.get_pipeline(pipeline_id=test_pipeline_oci_golden_gate_pipeline["id"])
|
376
|
+
```
|
377
|
+
|
378
|
+
|
379
|
+
:param str pipeline_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline created.
|
380
|
+
"""
|
381
|
+
__args__ = dict()
|
382
|
+
__args__['pipelineId'] = pipeline_id
|
383
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
384
|
+
__ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getPipeline:getPipeline', __args__, opts=opts, typ=GetPipelineResult)
|
385
|
+
return __ret__.apply(lambda __response__: GetPipelineResult(
|
386
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
387
|
+
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
388
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
389
|
+
description=pulumi.get(__response__, 'description'),
|
390
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
391
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
392
|
+
id=pulumi.get(__response__, 'id'),
|
393
|
+
is_auto_scaling_enabled=pulumi.get(__response__, 'is_auto_scaling_enabled'),
|
394
|
+
license_model=pulumi.get(__response__, 'license_model'),
|
395
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
396
|
+
lifecycle_sub_state=pulumi.get(__response__, 'lifecycle_sub_state'),
|
397
|
+
locks=pulumi.get(__response__, 'locks'),
|
398
|
+
mapping_rules=pulumi.get(__response__, 'mapping_rules'),
|
399
|
+
pipeline_id=pulumi.get(__response__, 'pipeline_id'),
|
400
|
+
process_options=pulumi.get(__response__, 'process_options'),
|
401
|
+
recipe_type=pulumi.get(__response__, 'recipe_type'),
|
402
|
+
source_connection_details=pulumi.get(__response__, 'source_connection_details'),
|
403
|
+
state=pulumi.get(__response__, 'state'),
|
404
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
405
|
+
target_connection_details=pulumi.get(__response__, 'target_connection_details'),
|
406
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
407
|
+
time_last_recorded=pulumi.get(__response__, 'time_last_recorded'),
|
408
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,144 @@
|
|
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
|
+
'GetPipelineRunningProcessesResult',
|
21
|
+
'AwaitableGetPipelineRunningProcessesResult',
|
22
|
+
'get_pipeline_running_processes',
|
23
|
+
'get_pipeline_running_processes_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetPipelineRunningProcessesResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getPipelineRunningProcesses.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, filters=None, id=None, pipeline_id=None, pipeline_running_process_collections=None):
|
32
|
+
if filters and not isinstance(filters, list):
|
33
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
34
|
+
pulumi.set(__self__, "filters", filters)
|
35
|
+
if id and not isinstance(id, str):
|
36
|
+
raise TypeError("Expected argument 'id' to be a str")
|
37
|
+
pulumi.set(__self__, "id", id)
|
38
|
+
if pipeline_id and not isinstance(pipeline_id, str):
|
39
|
+
raise TypeError("Expected argument 'pipeline_id' to be a str")
|
40
|
+
pulumi.set(__self__, "pipeline_id", pipeline_id)
|
41
|
+
if pipeline_running_process_collections and not isinstance(pipeline_running_process_collections, list):
|
42
|
+
raise TypeError("Expected argument 'pipeline_running_process_collections' to be a list")
|
43
|
+
pulumi.set(__self__, "pipeline_running_process_collections", pipeline_running_process_collections)
|
44
|
+
|
45
|
+
@property
|
46
|
+
@pulumi.getter
|
47
|
+
def filters(self) -> Optional[Sequence['outputs.GetPipelineRunningProcessesFilterResult']]:
|
48
|
+
return pulumi.get(self, "filters")
|
49
|
+
|
50
|
+
@property
|
51
|
+
@pulumi.getter
|
52
|
+
def id(self) -> str:
|
53
|
+
"""
|
54
|
+
The provider-assigned unique ID for this managed resource.
|
55
|
+
"""
|
56
|
+
return pulumi.get(self, "id")
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="pipelineId")
|
60
|
+
def pipeline_id(self) -> str:
|
61
|
+
return pulumi.get(self, "pipeline_id")
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="pipelineRunningProcessCollections")
|
65
|
+
def pipeline_running_process_collections(self) -> Sequence['outputs.GetPipelineRunningProcessesPipelineRunningProcessCollectionResult']:
|
66
|
+
"""
|
67
|
+
The list of pipeline_running_process_collection.
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "pipeline_running_process_collections")
|
70
|
+
|
71
|
+
|
72
|
+
class AwaitableGetPipelineRunningProcessesResult(GetPipelineRunningProcessesResult):
|
73
|
+
# pylint: disable=using-constant-test
|
74
|
+
def __await__(self):
|
75
|
+
if False:
|
76
|
+
yield self
|
77
|
+
return GetPipelineRunningProcessesResult(
|
78
|
+
filters=self.filters,
|
79
|
+
id=self.id,
|
80
|
+
pipeline_id=self.pipeline_id,
|
81
|
+
pipeline_running_process_collections=self.pipeline_running_process_collections)
|
82
|
+
|
83
|
+
|
84
|
+
def get_pipeline_running_processes(filters: Optional[Sequence[Union['GetPipelineRunningProcessesFilterArgs', 'GetPipelineRunningProcessesFilterArgsDict']]] = None,
|
85
|
+
pipeline_id: Optional[str] = None,
|
86
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPipelineRunningProcessesResult:
|
87
|
+
"""
|
88
|
+
This data source provides the list of Pipeline Running Processes in Oracle Cloud Infrastructure Golden Gate service.
|
89
|
+
|
90
|
+
Retrieves a Pipeline's running replication process's status like extracts/replicats.
|
91
|
+
|
92
|
+
## Example Usage
|
93
|
+
|
94
|
+
```python
|
95
|
+
import pulumi
|
96
|
+
import pulumi_oci as oci
|
97
|
+
|
98
|
+
test_pipeline_running_processes = oci.GoldenGate.get_pipeline_running_processes(pipeline_id=test_pipeline["id"])
|
99
|
+
```
|
100
|
+
|
101
|
+
|
102
|
+
:param str pipeline_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline created.
|
103
|
+
"""
|
104
|
+
__args__ = dict()
|
105
|
+
__args__['filters'] = filters
|
106
|
+
__args__['pipelineId'] = pipeline_id
|
107
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
108
|
+
__ret__ = pulumi.runtime.invoke('oci:GoldenGate/getPipelineRunningProcesses:getPipelineRunningProcesses', __args__, opts=opts, typ=GetPipelineRunningProcessesResult).value
|
109
|
+
|
110
|
+
return AwaitableGetPipelineRunningProcessesResult(
|
111
|
+
filters=pulumi.get(__ret__, 'filters'),
|
112
|
+
id=pulumi.get(__ret__, 'id'),
|
113
|
+
pipeline_id=pulumi.get(__ret__, 'pipeline_id'),
|
114
|
+
pipeline_running_process_collections=pulumi.get(__ret__, 'pipeline_running_process_collections'))
|
115
|
+
def get_pipeline_running_processes_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetPipelineRunningProcessesFilterArgs', 'GetPipelineRunningProcessesFilterArgsDict']]]]] = None,
|
116
|
+
pipeline_id: Optional[pulumi.Input[str]] = None,
|
117
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPipelineRunningProcessesResult]:
|
118
|
+
"""
|
119
|
+
This data source provides the list of Pipeline Running Processes in Oracle Cloud Infrastructure Golden Gate service.
|
120
|
+
|
121
|
+
Retrieves a Pipeline's running replication process's status like extracts/replicats.
|
122
|
+
|
123
|
+
## Example Usage
|
124
|
+
|
125
|
+
```python
|
126
|
+
import pulumi
|
127
|
+
import pulumi_oci as oci
|
128
|
+
|
129
|
+
test_pipeline_running_processes = oci.GoldenGate.get_pipeline_running_processes(pipeline_id=test_pipeline["id"])
|
130
|
+
```
|
131
|
+
|
132
|
+
|
133
|
+
:param str pipeline_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline created.
|
134
|
+
"""
|
135
|
+
__args__ = dict()
|
136
|
+
__args__['filters'] = filters
|
137
|
+
__args__['pipelineId'] = pipeline_id
|
138
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
139
|
+
__ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getPipelineRunningProcesses:getPipelineRunningProcesses', __args__, opts=opts, typ=GetPipelineRunningProcessesResult)
|
140
|
+
return __ret__.apply(lambda __response__: GetPipelineRunningProcessesResult(
|
141
|
+
filters=pulumi.get(__response__, 'filters'),
|
142
|
+
id=pulumi.get(__response__, 'id'),
|
143
|
+
pipeline_id=pulumi.get(__response__, 'pipeline_id'),
|
144
|
+
pipeline_running_process_collections=pulumi.get(__response__, 'pipeline_running_process_collections')))
|