pulumi-oci 2.20.0__py3-none-any.whl → 2.20.0a1734071208__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.
Files changed (50) hide show
  1. pulumi_oci/__init__.py +0 -16
  2. pulumi_oci/bigdataservice/__init__.py +0 -4
  3. pulumi_oci/bigdataservice/_inputs.py +6 -672
  4. pulumi_oci/bigdataservice/bds_instance.py +7 -169
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +3 -66
  6. pulumi_oci/bigdataservice/bds_instance_patch_action.py +0 -4
  7. pulumi_oci/bigdataservice/get_bds_instance.py +1 -48
  8. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +1 -17
  9. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +0 -3
  10. pulumi_oci/bigdataservice/outputs.py +98 -1466
  11. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  12. pulumi_oci/blockchain/outputs.py +2 -2
  13. pulumi_oci/core/outputs.py +0 -4
  14. pulumi_oci/database/autonomous_database.py +0 -47
  15. pulumi_oci/database/exadb_vm_cluster.py +0 -104
  16. pulumi_oci/database/get_autonomous_database.py +1 -15
  17. pulumi_oci/database/outputs.py +0 -22
  18. pulumi_oci/datascience/_inputs.py +12 -32
  19. pulumi_oci/datascience/get_job_run.py +3 -3
  20. pulumi_oci/datascience/get_job_runs.py +2 -2
  21. pulumi_oci/datascience/job_run.py +7 -7
  22. pulumi_oci/datascience/model_deployment.py +0 -2
  23. pulumi_oci/datascience/outputs.py +26 -62
  24. pulumi_oci/generativeai/dedicated_ai_cluster.py +0 -21
  25. pulumi_oci/goldengate/__init__.py +0 -7
  26. pulumi_oci/goldengate/_inputs.py +0 -665
  27. pulumi_oci/goldengate/connection.py +7 -7
  28. pulumi_oci/goldengate/get_trail_files.py +2 -4
  29. pulumi_oci/goldengate/get_trail_sequences.py +2 -4
  30. pulumi_oci/goldengate/outputs.py +0 -1500
  31. pulumi_oci/pulumi-plugin.json +1 -1
  32. pulumi_oci/stackmonitoring/_inputs.py +14 -94
  33. pulumi_oci/stackmonitoring/get_metric_extensions.py +3 -22
  34. pulumi_oci/stackmonitoring/metric_extension.py +0 -8
  35. pulumi_oci/stackmonitoring/outputs.py +24 -166
  36. {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734071208.dist-info}/METADATA +3 -3
  37. {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734071208.dist-info}/RECORD +39 -50
  38. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +0 -859
  39. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +0 -123
  40. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +0 -322
  41. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +0 -207
  42. pulumi_oci/goldengate/get_pipeline.py +0 -408
  43. pulumi_oci/goldengate/get_pipeline_running_processes.py +0 -144
  44. pulumi_oci/goldengate/get_pipeline_schema_tables.py +0 -207
  45. pulumi_oci/goldengate/get_pipeline_schemas.py +0 -163
  46. pulumi_oci/goldengate/get_pipelines.py +0 -213
  47. pulumi_oci/goldengate/get_recipes.py +0 -188
  48. pulumi_oci/goldengate/pipeline.py +0 -928
  49. {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734071208.dist-info}/WHEEL +0 -0
  50. {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734071208.dist-info}/top_level.txt +0 -0
@@ -1,188 +0,0 @@
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')))