pulumi-oci 2.20.0a1734503093__py3-none-any.whl → 2.20.0a1734744214__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.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/METADATA +3 -3
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/RECORD +50 -39
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,188 @@
|
|
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
|
+
'GetRecipesResult',
|
21
|
+
'AwaitableGetRecipesResult',
|
22
|
+
'get_recipes',
|
23
|
+
'get_recipes_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetRecipesResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getRecipes.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, recipe_summary_collections=None, recipe_type=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 recipe_summary_collections and not isinstance(recipe_summary_collections, list):
|
45
|
+
raise TypeError("Expected argument 'recipe_summary_collections' to be a list")
|
46
|
+
pulumi.set(__self__, "recipe_summary_collections", recipe_summary_collections)
|
47
|
+
if recipe_type and not isinstance(recipe_type, str):
|
48
|
+
raise TypeError("Expected argument 'recipe_type' to be a str")
|
49
|
+
pulumi.set(__self__, "recipe_type", recipe_type)
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="compartmentId")
|
53
|
+
def compartment_id(self) -> str:
|
54
|
+
return pulumi.get(self, "compartment_id")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="displayName")
|
58
|
+
def display_name(self) -> Optional[str]:
|
59
|
+
"""
|
60
|
+
An object's Display Name.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "display_name")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter
|
66
|
+
def filters(self) -> Optional[Sequence['outputs.GetRecipesFilterResult']]:
|
67
|
+
return pulumi.get(self, "filters")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter
|
71
|
+
def id(self) -> str:
|
72
|
+
"""
|
73
|
+
The provider-assigned unique ID for this managed resource.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "id")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="recipeSummaryCollections")
|
79
|
+
def recipe_summary_collections(self) -> Sequence['outputs.GetRecipesRecipeSummaryCollectionResult']:
|
80
|
+
"""
|
81
|
+
The list of recipe_summary_collection.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "recipe_summary_collections")
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="recipeType")
|
87
|
+
def recipe_type(self) -> Optional[str]:
|
88
|
+
"""
|
89
|
+
The type of the recipe
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "recipe_type")
|
92
|
+
|
93
|
+
|
94
|
+
class AwaitableGetRecipesResult(GetRecipesResult):
|
95
|
+
# pylint: disable=using-constant-test
|
96
|
+
def __await__(self):
|
97
|
+
if False:
|
98
|
+
yield self
|
99
|
+
return GetRecipesResult(
|
100
|
+
compartment_id=self.compartment_id,
|
101
|
+
display_name=self.display_name,
|
102
|
+
filters=self.filters,
|
103
|
+
id=self.id,
|
104
|
+
recipe_summary_collections=self.recipe_summary_collections,
|
105
|
+
recipe_type=self.recipe_type)
|
106
|
+
|
107
|
+
|
108
|
+
def get_recipes(compartment_id: Optional[str] = None,
|
109
|
+
display_name: Optional[str] = None,
|
110
|
+
filters: Optional[Sequence[Union['GetRecipesFilterArgs', 'GetRecipesFilterArgsDict']]] = None,
|
111
|
+
recipe_type: Optional[str] = None,
|
112
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRecipesResult:
|
113
|
+
"""
|
114
|
+
This data source provides the list of Recipes in Oracle Cloud Infrastructure Golden Gate service.
|
115
|
+
|
116
|
+
Returns an array of Recipe Summary.
|
117
|
+
|
118
|
+
## Example Usage
|
119
|
+
|
120
|
+
```python
|
121
|
+
import pulumi
|
122
|
+
import pulumi_oci as oci
|
123
|
+
|
124
|
+
test_recipes = oci.GoldenGate.get_recipes(compartment_id=compartment_id,
|
125
|
+
display_name=recipe_display_name,
|
126
|
+
recipe_type=recipe_recipe_type)
|
127
|
+
```
|
128
|
+
|
129
|
+
|
130
|
+
:param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
131
|
+
:param str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
132
|
+
:param str recipe_type: The pipeline's recipe type. The default value is ZERO_ETL.
|
133
|
+
"""
|
134
|
+
__args__ = dict()
|
135
|
+
__args__['compartmentId'] = compartment_id
|
136
|
+
__args__['displayName'] = display_name
|
137
|
+
__args__['filters'] = filters
|
138
|
+
__args__['recipeType'] = recipe_type
|
139
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
140
|
+
__ret__ = pulumi.runtime.invoke('oci:GoldenGate/getRecipes:getRecipes', __args__, opts=opts, typ=GetRecipesResult).value
|
141
|
+
|
142
|
+
return AwaitableGetRecipesResult(
|
143
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
144
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
145
|
+
filters=pulumi.get(__ret__, 'filters'),
|
146
|
+
id=pulumi.get(__ret__, 'id'),
|
147
|
+
recipe_summary_collections=pulumi.get(__ret__, 'recipe_summary_collections'),
|
148
|
+
recipe_type=pulumi.get(__ret__, 'recipe_type'))
|
149
|
+
def get_recipes_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
150
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
151
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetRecipesFilterArgs', 'GetRecipesFilterArgsDict']]]]] = None,
|
152
|
+
recipe_type: Optional[pulumi.Input[Optional[str]]] = None,
|
153
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRecipesResult]:
|
154
|
+
"""
|
155
|
+
This data source provides the list of Recipes in Oracle Cloud Infrastructure Golden Gate service.
|
156
|
+
|
157
|
+
Returns an array of Recipe Summary.
|
158
|
+
|
159
|
+
## Example Usage
|
160
|
+
|
161
|
+
```python
|
162
|
+
import pulumi
|
163
|
+
import pulumi_oci as oci
|
164
|
+
|
165
|
+
test_recipes = oci.GoldenGate.get_recipes(compartment_id=compartment_id,
|
166
|
+
display_name=recipe_display_name,
|
167
|
+
recipe_type=recipe_recipe_type)
|
168
|
+
```
|
169
|
+
|
170
|
+
|
171
|
+
:param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
172
|
+
:param str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
173
|
+
:param str recipe_type: The pipeline's recipe type. The default value is ZERO_ETL.
|
174
|
+
"""
|
175
|
+
__args__ = dict()
|
176
|
+
__args__['compartmentId'] = compartment_id
|
177
|
+
__args__['displayName'] = display_name
|
178
|
+
__args__['filters'] = filters
|
179
|
+
__args__['recipeType'] = recipe_type
|
180
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
181
|
+
__ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getRecipes:getRecipes', __args__, opts=opts, typ=GetRecipesResult)
|
182
|
+
return __ret__.apply(lambda __response__: GetRecipesResult(
|
183
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
184
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
185
|
+
filters=pulumi.get(__response__, 'filters'),
|
186
|
+
id=pulumi.get(__response__, 'id'),
|
187
|
+
recipe_summary_collections=pulumi.get(__response__, 'recipe_summary_collections'),
|
188
|
+
recipe_type=pulumi.get(__response__, 'recipe_type')))
|
@@ -113,7 +113,8 @@ def get_trail_files(deployment_id: Optional[str] = None,
|
|
113
113
|
"""
|
114
114
|
This data source provides the list of Trail Files in Oracle Cloud Infrastructure Golden Gate service.
|
115
115
|
|
116
|
-
Lists the TrailFiles for a deployment.
|
116
|
+
Lists the TrailFiles for a deployment.
|
117
|
+
Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
|
117
118
|
|
118
119
|
## Example Usage
|
119
120
|
|
@@ -154,7 +155,8 @@ def get_trail_files_output(deployment_id: Optional[pulumi.Input[str]] = None,
|
|
154
155
|
"""
|
155
156
|
This data source provides the list of Trail Files in Oracle Cloud Infrastructure Golden Gate service.
|
156
157
|
|
157
|
-
Lists the TrailFiles for a deployment.
|
158
|
+
Lists the TrailFiles for a deployment.
|
159
|
+
Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
|
158
160
|
|
159
161
|
## Example Usage
|
160
162
|
|
@@ -120,7 +120,8 @@ def get_trail_sequences(deployment_id: Optional[str] = None,
|
|
120
120
|
"""
|
121
121
|
This data source provides the list of Trail Sequences in Oracle Cloud Infrastructure Golden Gate service.
|
122
122
|
|
123
|
-
Lists the Trail Sequences for a TrailFile in a given deployment.
|
123
|
+
Lists the Trail Sequences for a TrailFile in a given deployment.
|
124
|
+
Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
|
124
125
|
|
125
126
|
## Example Usage
|
126
127
|
|
@@ -166,7 +167,8 @@ def get_trail_sequences_output(deployment_id: Optional[pulumi.Input[str]] = None
|
|
166
167
|
"""
|
167
168
|
This data source provides the list of Trail Sequences in Oracle Cloud Infrastructure Golden Gate service.
|
168
169
|
|
169
|
-
Lists the Trail Sequences for a TrailFile in a given deployment.
|
170
|
+
Lists the Trail Sequences for a TrailFile in a given deployment.
|
171
|
+
Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
|
170
172
|
|
171
173
|
## Example Usage
|
172
174
|
|