pulumi-oci 2.3.0a1721242122__py3-none-any.whl → 2.4.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.
Files changed (89) hide show
  1. pulumi_oci/__init__.py +19 -11
  2. pulumi_oci/apmsynthetics/_inputs.py +457 -1
  3. pulumi_oci/apmsynthetics/config.py +172 -7
  4. pulumi_oci/apmsynthetics/get_monitor.py +42 -3
  5. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  6. pulumi_oci/apmsynthetics/outputs.py +1129 -9
  7. pulumi_oci/core/_inputs.py +8 -8
  8. pulumi_oci/core/outputs.py +24 -8
  9. pulumi_oci/database/_inputs.py +16 -0
  10. pulumi_oci/database/autonomous_database.py +83 -9
  11. pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
  12. pulumi_oci/database/cloud_exadata_infrastructure.py +66 -17
  13. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  14. pulumi_oci/database/database.py +0 -96
  15. pulumi_oci/database/get_autonomous_database.py +25 -1
  16. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  17. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  18. pulumi_oci/database/get_key_store.py +11 -1
  19. pulumi_oci/database/key_store.py +34 -0
  20. pulumi_oci/database/outputs.py +93 -0
  21. pulumi_oci/datasafe/__init__.py +1 -0
  22. pulumi_oci/datasafe/_inputs.py +130 -0
  23. pulumi_oci/datasafe/discovery_mod.py +67 -38
  24. pulumi_oci/datasafe/get_audit_events.py +2 -2
  25. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  26. pulumi_oci/datasafe/get_report.py +1 -1
  27. pulumi_oci/datasafe/get_report_definition.py +1 -1
  28. pulumi_oci/datasafe/get_reports.py +43 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +14 -1
  30. pulumi_oci/datasafe/get_security_assessment_finding.py +16 -3
  31. pulumi_oci/datasafe/get_security_assessment_findings.py +21 -3
  32. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  33. pulumi_oci/datasafe/get_sensitive_data_model_sensitive_types.py +153 -0
  34. pulumi_oci/datasafe/get_user_assessment.py +14 -1
  35. pulumi_oci/datasafe/outputs.py +530 -6
  36. pulumi_oci/datasafe/report.py +4 -4
  37. pulumi_oci/datasafe/report_definition.py +4 -4
  38. pulumi_oci/datasafe/security_assessment.py +49 -0
  39. pulumi_oci/datasafe/sensitive_data_model.py +60 -3
  40. pulumi_oci/datasafe/unset_security_assessment_baseline.py +69 -16
  41. pulumi_oci/datasafe/unset_user_assessment_baseline.py +58 -5
  42. pulumi_oci/datasafe/user_assessment.py +49 -0
  43. pulumi_oci/{emwarehouse → globallydistributeddatabase}/__init__.py +6 -6
  44. pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
  45. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
  46. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
  47. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
  48. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
  49. pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
  50. pulumi_oci/{emwarehouse/em_warehouse.py → globallydistributeddatabase/private_endpoint.py} +288 -267
  51. pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
  52. pulumi_oci/integration/_inputs.py +0 -2
  53. pulumi_oci/integration/get_integration_instance.py +0 -1
  54. pulumi_oci/integration/integration_instance.py +0 -27
  55. pulumi_oci/integration/outputs.py +4 -12
  56. pulumi_oci/opsi/_inputs.py +8 -8
  57. pulumi_oci/opsi/database_insight.py +71 -15
  58. pulumi_oci/opsi/get_database_insight.py +29 -3
  59. pulumi_oci/opsi/get_database_insights.py +1 -1
  60. pulumi_oci/opsi/get_enterprise_manager_bridges.py +2 -2
  61. pulumi_oci/opsi/get_host_insight.py +1 -4
  62. pulumi_oci/opsi/get_host_insights.py +3 -3
  63. pulumi_oci/opsi/get_news_report.py +1 -1
  64. pulumi_oci/opsi/get_news_reports.py +3 -3
  65. pulumi_oci/opsi/get_operations_insights_private_endpoint.py +1 -1
  66. pulumi_oci/opsi/get_operations_insights_private_endpoints.py +1 -1
  67. pulumi_oci/opsi/get_operations_insights_warehouse.py +7 -7
  68. pulumi_oci/opsi/get_operations_insights_warehouse_user.py +2 -2
  69. pulumi_oci/opsi/get_operations_insights_warehouses.py +5 -5
  70. pulumi_oci/opsi/host_insight.py +6 -14
  71. pulumi_oci/opsi/news_report.py +2 -2
  72. pulumi_oci/opsi/operations_insights_private_endpoint.py +9 -9
  73. pulumi_oci/opsi/operations_insights_warehouse.py +17 -17
  74. pulumi_oci/opsi/operations_insights_warehouse_download_warehouse_wallet.py +14 -14
  75. pulumi_oci/opsi/operations_insights_warehouse_rotate_warehouse_wallet.py +7 -7
  76. pulumi_oci/opsi/operations_insights_warehouse_user.py +14 -14
  77. pulumi_oci/opsi/outputs.py +46 -24
  78. pulumi_oci/pulumi-plugin.json +1 -1
  79. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/METADATA +1 -1
  80. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/RECORD +82 -81
  81. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/WHEEL +1 -1
  82. pulumi_oci/emwarehouse/_inputs.py +0 -94
  83. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  84. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  85. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  86. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  87. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  88. pulumi_oci/emwarehouse/outputs.py +0 -616
  89. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/top_level.txt +0 -0
@@ -1,300 +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 pulumi
8
- import pulumi.runtime
9
- from typing import Any, Mapping, Optional, Sequence, Union, overload
10
- from .. import _utilities
11
-
12
- __all__ = [
13
- 'GetEmWarehouseResult',
14
- 'AwaitableGetEmWarehouseResult',
15
- 'get_em_warehouse',
16
- 'get_em_warehouse_output',
17
- ]
18
-
19
- @pulumi.output_type
20
- class GetEmWarehouseResult:
21
- """
22
- A collection of values returned by getEmWarehouse.
23
- """
24
- def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, em_bridge_id=None, em_warehouse_id=None, em_warehouse_type=None, freeform_tags=None, id=None, latest_etl_run_message=None, latest_etl_run_status=None, latest_etl_run_time=None, lifecycle_details=None, operations_insights_warehouse_id=None, state=None, system_tags=None, time_created=None, time_updated=None):
25
- if compartment_id and not isinstance(compartment_id, str):
26
- raise TypeError("Expected argument 'compartment_id' to be a str")
27
- pulumi.set(__self__, "compartment_id", compartment_id)
28
- if defined_tags and not isinstance(defined_tags, dict):
29
- raise TypeError("Expected argument 'defined_tags' to be a dict")
30
- pulumi.set(__self__, "defined_tags", defined_tags)
31
- if display_name and not isinstance(display_name, str):
32
- raise TypeError("Expected argument 'display_name' to be a str")
33
- pulumi.set(__self__, "display_name", display_name)
34
- if em_bridge_id and not isinstance(em_bridge_id, str):
35
- raise TypeError("Expected argument 'em_bridge_id' to be a str")
36
- pulumi.set(__self__, "em_bridge_id", em_bridge_id)
37
- if em_warehouse_id and not isinstance(em_warehouse_id, str):
38
- raise TypeError("Expected argument 'em_warehouse_id' to be a str")
39
- pulumi.set(__self__, "em_warehouse_id", em_warehouse_id)
40
- if em_warehouse_type and not isinstance(em_warehouse_type, str):
41
- raise TypeError("Expected argument 'em_warehouse_type' to be a str")
42
- pulumi.set(__self__, "em_warehouse_type", em_warehouse_type)
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 latest_etl_run_message and not isinstance(latest_etl_run_message, str):
50
- raise TypeError("Expected argument 'latest_etl_run_message' to be a str")
51
- pulumi.set(__self__, "latest_etl_run_message", latest_etl_run_message)
52
- if latest_etl_run_status and not isinstance(latest_etl_run_status, str):
53
- raise TypeError("Expected argument 'latest_etl_run_status' to be a str")
54
- pulumi.set(__self__, "latest_etl_run_status", latest_etl_run_status)
55
- if latest_etl_run_time and not isinstance(latest_etl_run_time, str):
56
- raise TypeError("Expected argument 'latest_etl_run_time' to be a str")
57
- pulumi.set(__self__, "latest_etl_run_time", latest_etl_run_time)
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 operations_insights_warehouse_id and not isinstance(operations_insights_warehouse_id, str):
62
- raise TypeError("Expected argument 'operations_insights_warehouse_id' to be a str")
63
- pulumi.set(__self__, "operations_insights_warehouse_id", operations_insights_warehouse_id)
64
- if state and not isinstance(state, str):
65
- raise TypeError("Expected argument 'state' to be a str")
66
- pulumi.set(__self__, "state", state)
67
- if system_tags and not isinstance(system_tags, dict):
68
- raise TypeError("Expected argument 'system_tags' to be a dict")
69
- pulumi.set(__self__, "system_tags", system_tags)
70
- if time_created and not isinstance(time_created, str):
71
- raise TypeError("Expected argument 'time_created' to be a str")
72
- pulumi.set(__self__, "time_created", time_created)
73
- if time_updated and not isinstance(time_updated, str):
74
- raise TypeError("Expected argument 'time_updated' to be a str")
75
- pulumi.set(__self__, "time_updated", time_updated)
76
-
77
- @property
78
- @pulumi.getter(name="compartmentId")
79
- def compartment_id(self) -> str:
80
- """
81
- Compartment Identifier
82
- """
83
- return pulumi.get(self, "compartment_id")
84
-
85
- @property
86
- @pulumi.getter(name="definedTags")
87
- def defined_tags(self) -> Mapping[str, Any]:
88
- """
89
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
90
- """
91
- return pulumi.get(self, "defined_tags")
92
-
93
- @property
94
- @pulumi.getter(name="displayName")
95
- def display_name(self) -> str:
96
- """
97
- EmWarehouse Identifier, can be renamed
98
- """
99
- return pulumi.get(self, "display_name")
100
-
101
- @property
102
- @pulumi.getter(name="emBridgeId")
103
- def em_bridge_id(self) -> str:
104
- """
105
- EMBridge Identifier
106
- """
107
- return pulumi.get(self, "em_bridge_id")
108
-
109
- @property
110
- @pulumi.getter(name="emWarehouseId")
111
- def em_warehouse_id(self) -> str:
112
- return pulumi.get(self, "em_warehouse_id")
113
-
114
- @property
115
- @pulumi.getter(name="emWarehouseType")
116
- def em_warehouse_type(self) -> str:
117
- """
118
- Type of the EmWarehouse.
119
- """
120
- return pulumi.get(self, "em_warehouse_type")
121
-
122
- @property
123
- @pulumi.getter(name="freeformTags")
124
- def freeform_tags(self) -> Mapping[str, Any]:
125
- """
126
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
127
- """
128
- return pulumi.get(self, "freeform_tags")
129
-
130
- @property
131
- @pulumi.getter
132
- def id(self) -> str:
133
- """
134
- Unique identifier that is immutable on creation
135
- """
136
- return pulumi.get(self, "id")
137
-
138
- @property
139
- @pulumi.getter(name="latestEtlRunMessage")
140
- def latest_etl_run_message(self) -> str:
141
- """
142
- Data Flow Run Status Message
143
- """
144
- return pulumi.get(self, "latest_etl_run_message")
145
-
146
- @property
147
- @pulumi.getter(name="latestEtlRunStatus")
148
- def latest_etl_run_status(self) -> str:
149
- """
150
- Data Flow Run Status
151
- """
152
- return pulumi.get(self, "latest_etl_run_status")
153
-
154
- @property
155
- @pulumi.getter(name="latestEtlRunTime")
156
- def latest_etl_run_time(self) -> str:
157
- """
158
- Data Flow Run Total Time
159
- """
160
- return pulumi.get(self, "latest_etl_run_time")
161
-
162
- @property
163
- @pulumi.getter(name="lifecycleDetails")
164
- def lifecycle_details(self) -> str:
165
- """
166
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
167
- """
168
- return pulumi.get(self, "lifecycle_details")
169
-
170
- @property
171
- @pulumi.getter(name="operationsInsightsWarehouseId")
172
- def operations_insights_warehouse_id(self) -> str:
173
- """
174
- operations Insights Warehouse Identifier
175
- """
176
- return pulumi.get(self, "operations_insights_warehouse_id")
177
-
178
- @property
179
- @pulumi.getter
180
- def state(self) -> str:
181
- """
182
- The current state of the EmWarehouse.
183
- """
184
- return pulumi.get(self, "state")
185
-
186
- @property
187
- @pulumi.getter(name="systemTags")
188
- def system_tags(self) -> Mapping[str, Any]:
189
- """
190
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
191
- """
192
- return pulumi.get(self, "system_tags")
193
-
194
- @property
195
- @pulumi.getter(name="timeCreated")
196
- def time_created(self) -> str:
197
- """
198
- The time the the EmWarehouse was created. An RFC3339 formatted datetime string
199
- """
200
- return pulumi.get(self, "time_created")
201
-
202
- @property
203
- @pulumi.getter(name="timeUpdated")
204
- def time_updated(self) -> str:
205
- """
206
- The time the EmWarehouse was updated. An RFC3339 formatted datetime string
207
- """
208
- return pulumi.get(self, "time_updated")
209
-
210
-
211
- class AwaitableGetEmWarehouseResult(GetEmWarehouseResult):
212
- # pylint: disable=using-constant-test
213
- def __await__(self):
214
- if False:
215
- yield self
216
- return GetEmWarehouseResult(
217
- compartment_id=self.compartment_id,
218
- defined_tags=self.defined_tags,
219
- display_name=self.display_name,
220
- em_bridge_id=self.em_bridge_id,
221
- em_warehouse_id=self.em_warehouse_id,
222
- em_warehouse_type=self.em_warehouse_type,
223
- freeform_tags=self.freeform_tags,
224
- id=self.id,
225
- latest_etl_run_message=self.latest_etl_run_message,
226
- latest_etl_run_status=self.latest_etl_run_status,
227
- latest_etl_run_time=self.latest_etl_run_time,
228
- lifecycle_details=self.lifecycle_details,
229
- operations_insights_warehouse_id=self.operations_insights_warehouse_id,
230
- state=self.state,
231
- system_tags=self.system_tags,
232
- time_created=self.time_created,
233
- time_updated=self.time_updated)
234
-
235
-
236
- def get_em_warehouse(em_warehouse_id: Optional[str] = None,
237
- opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEmWarehouseResult:
238
- """
239
- This data source provides details about a specific Em Warehouse resource in Oracle Cloud Infrastructure Em Warehouse service.
240
-
241
- Gets a EmWarehouse by identifier
242
-
243
- ## Example Usage
244
-
245
- ```python
246
- import pulumi
247
- import pulumi_oci as oci
248
-
249
- test_em_warehouse = oci.EmWarehouse.get_em_warehouse(em_warehouse_id=test_em_warehouse_oci_em_warehouse_em_warehouse["id"])
250
- ```
251
-
252
-
253
- :param str em_warehouse_id: unique EmWarehouse identifier
254
- """
255
- __args__ = dict()
256
- __args__['emWarehouseId'] = em_warehouse_id
257
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
258
- __ret__ = pulumi.runtime.invoke('oci:EmWarehouse/getEmWarehouse:getEmWarehouse', __args__, opts=opts, typ=GetEmWarehouseResult).value
259
-
260
- return AwaitableGetEmWarehouseResult(
261
- compartment_id=pulumi.get(__ret__, 'compartment_id'),
262
- defined_tags=pulumi.get(__ret__, 'defined_tags'),
263
- display_name=pulumi.get(__ret__, 'display_name'),
264
- em_bridge_id=pulumi.get(__ret__, 'em_bridge_id'),
265
- em_warehouse_id=pulumi.get(__ret__, 'em_warehouse_id'),
266
- em_warehouse_type=pulumi.get(__ret__, 'em_warehouse_type'),
267
- freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
268
- id=pulumi.get(__ret__, 'id'),
269
- latest_etl_run_message=pulumi.get(__ret__, 'latest_etl_run_message'),
270
- latest_etl_run_status=pulumi.get(__ret__, 'latest_etl_run_status'),
271
- latest_etl_run_time=pulumi.get(__ret__, 'latest_etl_run_time'),
272
- lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
273
- operations_insights_warehouse_id=pulumi.get(__ret__, 'operations_insights_warehouse_id'),
274
- state=pulumi.get(__ret__, 'state'),
275
- system_tags=pulumi.get(__ret__, 'system_tags'),
276
- time_created=pulumi.get(__ret__, 'time_created'),
277
- time_updated=pulumi.get(__ret__, 'time_updated'))
278
-
279
-
280
- @_utilities.lift_output_func(get_em_warehouse)
281
- def get_em_warehouse_output(em_warehouse_id: Optional[pulumi.Input[str]] = None,
282
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEmWarehouseResult]:
283
- """
284
- This data source provides details about a specific Em Warehouse resource in Oracle Cloud Infrastructure Em Warehouse service.
285
-
286
- Gets a EmWarehouse by identifier
287
-
288
- ## Example Usage
289
-
290
- ```python
291
- import pulumi
292
- import pulumi_oci as oci
293
-
294
- test_em_warehouse = oci.EmWarehouse.get_em_warehouse(em_warehouse_id=test_em_warehouse_oci_em_warehouse_em_warehouse["id"])
295
- ```
296
-
297
-
298
- :param str em_warehouse_id: unique EmWarehouse identifier
299
- """
300
- ...
@@ -1,203 +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 pulumi
8
- import pulumi.runtime
9
- from typing import Any, Mapping, Optional, Sequence, Union, overload
10
- from .. import _utilities
11
- from . import outputs
12
- from ._inputs import *
13
-
14
- __all__ = [
15
- 'GetEmWarehousesResult',
16
- 'AwaitableGetEmWarehousesResult',
17
- 'get_em_warehouses',
18
- 'get_em_warehouses_output',
19
- ]
20
-
21
- @pulumi.output_type
22
- class GetEmWarehousesResult:
23
- """
24
- A collection of values returned by getEmWarehouses.
25
- """
26
- def __init__(__self__, compartment_id=None, display_name=None, em_warehouse_collections=None, filters=None, id=None, operations_insights_warehouse_id=None, state=None):
27
- if compartment_id and not isinstance(compartment_id, str):
28
- raise TypeError("Expected argument 'compartment_id' to be a str")
29
- pulumi.set(__self__, "compartment_id", compartment_id)
30
- if display_name and not isinstance(display_name, str):
31
- raise TypeError("Expected argument 'display_name' to be a str")
32
- pulumi.set(__self__, "display_name", display_name)
33
- if em_warehouse_collections and not isinstance(em_warehouse_collections, list):
34
- raise TypeError("Expected argument 'em_warehouse_collections' to be a list")
35
- pulumi.set(__self__, "em_warehouse_collections", em_warehouse_collections)
36
- if filters and not isinstance(filters, list):
37
- raise TypeError("Expected argument 'filters' to be a list")
38
- pulumi.set(__self__, "filters", filters)
39
- if id and not isinstance(id, str):
40
- raise TypeError("Expected argument 'id' to be a str")
41
- pulumi.set(__self__, "id", id)
42
- if operations_insights_warehouse_id and not isinstance(operations_insights_warehouse_id, str):
43
- raise TypeError("Expected argument 'operations_insights_warehouse_id' to be a str")
44
- pulumi.set(__self__, "operations_insights_warehouse_id", operations_insights_warehouse_id)
45
- if state and not isinstance(state, str):
46
- raise TypeError("Expected argument 'state' to be a str")
47
- pulumi.set(__self__, "state", state)
48
-
49
- @property
50
- @pulumi.getter(name="compartmentId")
51
- def compartment_id(self) -> Optional[str]:
52
- """
53
- Compartment Identifier
54
- """
55
- return pulumi.get(self, "compartment_id")
56
-
57
- @property
58
- @pulumi.getter(name="displayName")
59
- def display_name(self) -> Optional[str]:
60
- """
61
- EmWarehouse Identifier, can be renamed
62
- """
63
- return pulumi.get(self, "display_name")
64
-
65
- @property
66
- @pulumi.getter(name="emWarehouseCollections")
67
- def em_warehouse_collections(self) -> Sequence['outputs.GetEmWarehousesEmWarehouseCollectionResult']:
68
- """
69
- The list of em_warehouse_collection.
70
- """
71
- return pulumi.get(self, "em_warehouse_collections")
72
-
73
- @property
74
- @pulumi.getter
75
- def filters(self) -> Optional[Sequence['outputs.GetEmWarehousesFilterResult']]:
76
- return pulumi.get(self, "filters")
77
-
78
- @property
79
- @pulumi.getter
80
- def id(self) -> Optional[str]:
81
- """
82
- Unique identifier that is immutable on creation
83
- """
84
- return pulumi.get(self, "id")
85
-
86
- @property
87
- @pulumi.getter(name="operationsInsightsWarehouseId")
88
- def operations_insights_warehouse_id(self) -> Optional[str]:
89
- """
90
- operations Insights Warehouse Identifier
91
- """
92
- return pulumi.get(self, "operations_insights_warehouse_id")
93
-
94
- @property
95
- @pulumi.getter
96
- def state(self) -> Optional[str]:
97
- """
98
- The current state of the EmWarehouse.
99
- """
100
- return pulumi.get(self, "state")
101
-
102
-
103
- class AwaitableGetEmWarehousesResult(GetEmWarehousesResult):
104
- # pylint: disable=using-constant-test
105
- def __await__(self):
106
- if False:
107
- yield self
108
- return GetEmWarehousesResult(
109
- compartment_id=self.compartment_id,
110
- display_name=self.display_name,
111
- em_warehouse_collections=self.em_warehouse_collections,
112
- filters=self.filters,
113
- id=self.id,
114
- operations_insights_warehouse_id=self.operations_insights_warehouse_id,
115
- state=self.state)
116
-
117
-
118
- def get_em_warehouses(compartment_id: Optional[str] = None,
119
- display_name: Optional[str] = None,
120
- filters: Optional[Sequence[pulumi.InputType['GetEmWarehousesFilterArgs']]] = None,
121
- id: Optional[str] = None,
122
- operations_insights_warehouse_id: Optional[str] = None,
123
- state: Optional[str] = None,
124
- opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEmWarehousesResult:
125
- """
126
- This data source provides the list of Em Warehouses in Oracle Cloud Infrastructure Em Warehouse service.
127
-
128
- Returns a list of EmWarehouses.
129
-
130
- ## Example Usage
131
-
132
- ```python
133
- import pulumi
134
- import pulumi_oci as oci
135
-
136
- test_em_warehouses = oci.EmWarehouse.get_em_warehouses(compartment_id=compartment_id,
137
- display_name=em_warehouse_display_name,
138
- id=em_warehouse_id,
139
- operations_insights_warehouse_id=test_operations_insights_warehouse["id"],
140
- state=em_warehouse_state)
141
- ```
142
-
143
-
144
- :param str compartment_id: The ID of the compartment in which to list resources.
145
- :param str display_name: A filter to return only resources that match the entire display name given.
146
- :param str id: unique EmWarehouse identifier
147
- :param str operations_insights_warehouse_id: unique operationsInsightsWarehouseId identifier
148
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
149
- """
150
- __args__ = dict()
151
- __args__['compartmentId'] = compartment_id
152
- __args__['displayName'] = display_name
153
- __args__['filters'] = filters
154
- __args__['id'] = id
155
- __args__['operationsInsightsWarehouseId'] = operations_insights_warehouse_id
156
- __args__['state'] = state
157
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
158
- __ret__ = pulumi.runtime.invoke('oci:EmWarehouse/getEmWarehouses:getEmWarehouses', __args__, opts=opts, typ=GetEmWarehousesResult).value
159
-
160
- return AwaitableGetEmWarehousesResult(
161
- compartment_id=pulumi.get(__ret__, 'compartment_id'),
162
- display_name=pulumi.get(__ret__, 'display_name'),
163
- em_warehouse_collections=pulumi.get(__ret__, 'em_warehouse_collections'),
164
- filters=pulumi.get(__ret__, 'filters'),
165
- id=pulumi.get(__ret__, 'id'),
166
- operations_insights_warehouse_id=pulumi.get(__ret__, 'operations_insights_warehouse_id'),
167
- state=pulumi.get(__ret__, 'state'))
168
-
169
-
170
- @_utilities.lift_output_func(get_em_warehouses)
171
- def get_em_warehouses_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
172
- display_name: Optional[pulumi.Input[Optional[str]]] = None,
173
- filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetEmWarehousesFilterArgs']]]]] = None,
174
- id: Optional[pulumi.Input[Optional[str]]] = None,
175
- operations_insights_warehouse_id: Optional[pulumi.Input[Optional[str]]] = None,
176
- state: Optional[pulumi.Input[Optional[str]]] = None,
177
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEmWarehousesResult]:
178
- """
179
- This data source provides the list of Em Warehouses in Oracle Cloud Infrastructure Em Warehouse service.
180
-
181
- Returns a list of EmWarehouses.
182
-
183
- ## Example Usage
184
-
185
- ```python
186
- import pulumi
187
- import pulumi_oci as oci
188
-
189
- test_em_warehouses = oci.EmWarehouse.get_em_warehouses(compartment_id=compartment_id,
190
- display_name=em_warehouse_display_name,
191
- id=em_warehouse_id,
192
- operations_insights_warehouse_id=test_operations_insights_warehouse["id"],
193
- state=em_warehouse_state)
194
- ```
195
-
196
-
197
- :param str compartment_id: The ID of the compartment in which to list resources.
198
- :param str display_name: A filter to return only resources that match the entire display name given.
199
- :param str id: unique EmWarehouse identifier
200
- :param str operations_insights_warehouse_id: unique operationsInsightsWarehouseId identifier
201
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
202
- """
203
- ...
@@ -1,159 +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 pulumi
8
- import pulumi.runtime
9
- from typing import Any, Mapping, Optional, Sequence, Union, overload
10
- from .. import _utilities
11
- from . import outputs
12
-
13
- __all__ = [
14
- 'GetEtlRunResult',
15
- 'AwaitableGetEtlRunResult',
16
- 'get_etl_run',
17
- 'get_etl_run_output',
18
- ]
19
-
20
- @pulumi.output_type
21
- class GetEtlRunResult:
22
- """
23
- A collection of values returned by getEtlRun.
24
- """
25
- def __init__(__self__, compartment_id=None, display_name=None, em_warehouse_id=None, id=None, items=None):
26
- if compartment_id and not isinstance(compartment_id, str):
27
- raise TypeError("Expected argument 'compartment_id' to be a str")
28
- pulumi.set(__self__, "compartment_id", compartment_id)
29
- if display_name and not isinstance(display_name, str):
30
- raise TypeError("Expected argument 'display_name' to be a str")
31
- pulumi.set(__self__, "display_name", display_name)
32
- if em_warehouse_id and not isinstance(em_warehouse_id, str):
33
- raise TypeError("Expected argument 'em_warehouse_id' to be a str")
34
- pulumi.set(__self__, "em_warehouse_id", em_warehouse_id)
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 items and not isinstance(items, list):
39
- raise TypeError("Expected argument 'items' to be a list")
40
- pulumi.set(__self__, "items", items)
41
-
42
- @property
43
- @pulumi.getter(name="compartmentId")
44
- def compartment_id(self) -> Optional[str]:
45
- """
46
- Compartment Identifier
47
- """
48
- return pulumi.get(self, "compartment_id")
49
-
50
- @property
51
- @pulumi.getter(name="displayName")
52
- def display_name(self) -> Optional[str]:
53
- """
54
- The name of the ETLRun.
55
- """
56
- return pulumi.get(self, "display_name")
57
-
58
- @property
59
- @pulumi.getter(name="emWarehouseId")
60
- def em_warehouse_id(self) -> str:
61
- return pulumi.get(self, "em_warehouse_id")
62
-
63
- @property
64
- @pulumi.getter
65
- def id(self) -> str:
66
- """
67
- The provider-assigned unique ID for this managed resource.
68
- """
69
- return pulumi.get(self, "id")
70
-
71
- @property
72
- @pulumi.getter
73
- def items(self) -> Sequence['outputs.GetEtlRunItemResult']:
74
- """
75
- List of runs
76
- """
77
- return pulumi.get(self, "items")
78
-
79
-
80
- class AwaitableGetEtlRunResult(GetEtlRunResult):
81
- # pylint: disable=using-constant-test
82
- def __await__(self):
83
- if False:
84
- yield self
85
- return GetEtlRunResult(
86
- compartment_id=self.compartment_id,
87
- display_name=self.display_name,
88
- em_warehouse_id=self.em_warehouse_id,
89
- id=self.id,
90
- items=self.items)
91
-
92
-
93
- def get_etl_run(compartment_id: Optional[str] = None,
94
- display_name: Optional[str] = None,
95
- em_warehouse_id: Optional[str] = None,
96
- opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEtlRunResult:
97
- """
98
- This data source provides details about a specific Em Warehouse Etl Run resource in Oracle Cloud Infrastructure Em Warehouse service.
99
-
100
- Gets a list of runs of an EmWarehouseResource by identifier
101
-
102
- ## Example Usage
103
-
104
- ```python
105
- import pulumi
106
- import pulumi_oci as oci
107
-
108
- test_em_warehouse_etl_run = oci.EmWarehouse.get_etl_run(em_warehouse_id=test_em_warehouse["id"],
109
- compartment_id=compartment_id,
110
- display_name=em_warehouse_etl_run_display_name)
111
- ```
112
-
113
-
114
- :param str compartment_id: The ID of the compartment in which to list resources.
115
- :param str display_name: A filter to return only resources that match the entire display name given.
116
- :param str em_warehouse_id: unique EmWarehouse identifier
117
- """
118
- __args__ = dict()
119
- __args__['compartmentId'] = compartment_id
120
- __args__['displayName'] = display_name
121
- __args__['emWarehouseId'] = em_warehouse_id
122
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
123
- __ret__ = pulumi.runtime.invoke('oci:EmWarehouse/getEtlRun:getEtlRun', __args__, opts=opts, typ=GetEtlRunResult).value
124
-
125
- return AwaitableGetEtlRunResult(
126
- compartment_id=pulumi.get(__ret__, 'compartment_id'),
127
- display_name=pulumi.get(__ret__, 'display_name'),
128
- em_warehouse_id=pulumi.get(__ret__, 'em_warehouse_id'),
129
- id=pulumi.get(__ret__, 'id'),
130
- items=pulumi.get(__ret__, 'items'))
131
-
132
-
133
- @_utilities.lift_output_func(get_etl_run)
134
- def get_etl_run_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
135
- display_name: Optional[pulumi.Input[Optional[str]]] = None,
136
- em_warehouse_id: Optional[pulumi.Input[str]] = None,
137
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEtlRunResult]:
138
- """
139
- This data source provides details about a specific Em Warehouse Etl Run resource in Oracle Cloud Infrastructure Em Warehouse service.
140
-
141
- Gets a list of runs of an EmWarehouseResource by identifier
142
-
143
- ## Example Usage
144
-
145
- ```python
146
- import pulumi
147
- import pulumi_oci as oci
148
-
149
- test_em_warehouse_etl_run = oci.EmWarehouse.get_etl_run(em_warehouse_id=test_em_warehouse["id"],
150
- compartment_id=compartment_id,
151
- display_name=em_warehouse_etl_run_display_name)
152
- ```
153
-
154
-
155
- :param str compartment_id: The ID of the compartment in which to list resources.
156
- :param str display_name: A filter to return only resources that match the entire display name given.
157
- :param str em_warehouse_id: unique EmWarehouse identifier
158
- """
159
- ...