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,616 +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
- 'GetEmWarehousesEmWarehouseCollectionResult',
15
- 'GetEmWarehousesEmWarehouseCollectionItemResult',
16
- 'GetEmWarehousesFilterResult',
17
- 'GetEtlRunItemResult',
18
- 'GetEtlRunsEtlRunCollectionResult',
19
- 'GetEtlRunsEtlRunCollectionItemResult',
20
- 'GetEtlRunsEtlRunCollectionItemItemResult',
21
- 'GetEtlRunsFilterResult',
22
- 'GetResourceUsageEmInstanceResult',
23
- ]
24
-
25
- @pulumi.output_type
26
- class GetEmWarehousesEmWarehouseCollectionResult(dict):
27
- def __init__(__self__, *,
28
- items: Sequence['outputs.GetEmWarehousesEmWarehouseCollectionItemResult']):
29
- pulumi.set(__self__, "items", items)
30
-
31
- @property
32
- @pulumi.getter
33
- def items(self) -> Sequence['outputs.GetEmWarehousesEmWarehouseCollectionItemResult']:
34
- return pulumi.get(self, "items")
35
-
36
-
37
- @pulumi.output_type
38
- class GetEmWarehousesEmWarehouseCollectionItemResult(dict):
39
- def __init__(__self__, *,
40
- compartment_id: str,
41
- defined_tags: Mapping[str, Any],
42
- display_name: str,
43
- em_bridge_id: str,
44
- em_warehouse_type: str,
45
- freeform_tags: Mapping[str, Any],
46
- id: str,
47
- latest_etl_run_message: str,
48
- latest_etl_run_status: str,
49
- latest_etl_run_time: str,
50
- lifecycle_details: str,
51
- operations_insights_warehouse_id: str,
52
- state: str,
53
- system_tags: Mapping[str, Any],
54
- time_created: str,
55
- time_updated: str):
56
- """
57
- :param str compartment_id: The ID of the compartment in which to list resources.
58
- :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
59
- :param str display_name: A filter to return only resources that match the entire display name given.
60
- :param str em_bridge_id: EMBridge Identifier
61
- :param str em_warehouse_type: Type of the EmWarehouse.
62
- :param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
63
- :param str id: unique EmWarehouse identifier
64
- :param str latest_etl_run_message: Data Flow Run Status Message
65
- :param str latest_etl_run_status: Data Flow Run Status
66
- :param str latest_etl_run_time: Data Flow Run Total Time
67
- :param str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
68
- :param str operations_insights_warehouse_id: unique operationsInsightsWarehouseId identifier
69
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
70
- :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
71
- :param str time_created: The time the the EmWarehouse was created. An RFC3339 formatted datetime string
72
- :param str time_updated: The time the EmWarehouse was updated. An RFC3339 formatted datetime string
73
- """
74
- pulumi.set(__self__, "compartment_id", compartment_id)
75
- pulumi.set(__self__, "defined_tags", defined_tags)
76
- pulumi.set(__self__, "display_name", display_name)
77
- pulumi.set(__self__, "em_bridge_id", em_bridge_id)
78
- pulumi.set(__self__, "em_warehouse_type", em_warehouse_type)
79
- pulumi.set(__self__, "freeform_tags", freeform_tags)
80
- pulumi.set(__self__, "id", id)
81
- pulumi.set(__self__, "latest_etl_run_message", latest_etl_run_message)
82
- pulumi.set(__self__, "latest_etl_run_status", latest_etl_run_status)
83
- pulumi.set(__self__, "latest_etl_run_time", latest_etl_run_time)
84
- pulumi.set(__self__, "lifecycle_details", lifecycle_details)
85
- pulumi.set(__self__, "operations_insights_warehouse_id", operations_insights_warehouse_id)
86
- pulumi.set(__self__, "state", state)
87
- pulumi.set(__self__, "system_tags", system_tags)
88
- pulumi.set(__self__, "time_created", time_created)
89
- pulumi.set(__self__, "time_updated", time_updated)
90
-
91
- @property
92
- @pulumi.getter(name="compartmentId")
93
- def compartment_id(self) -> str:
94
- """
95
- The ID of the compartment in which to list resources.
96
- """
97
- return pulumi.get(self, "compartment_id")
98
-
99
- @property
100
- @pulumi.getter(name="definedTags")
101
- def defined_tags(self) -> Mapping[str, Any]:
102
- """
103
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
104
- """
105
- return pulumi.get(self, "defined_tags")
106
-
107
- @property
108
- @pulumi.getter(name="displayName")
109
- def display_name(self) -> str:
110
- """
111
- A filter to return only resources that match the entire display name given.
112
- """
113
- return pulumi.get(self, "display_name")
114
-
115
- @property
116
- @pulumi.getter(name="emBridgeId")
117
- def em_bridge_id(self) -> str:
118
- """
119
- EMBridge Identifier
120
- """
121
- return pulumi.get(self, "em_bridge_id")
122
-
123
- @property
124
- @pulumi.getter(name="emWarehouseType")
125
- def em_warehouse_type(self) -> str:
126
- """
127
- Type of the EmWarehouse.
128
- """
129
- return pulumi.get(self, "em_warehouse_type")
130
-
131
- @property
132
- @pulumi.getter(name="freeformTags")
133
- def freeform_tags(self) -> Mapping[str, Any]:
134
- """
135
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
136
- """
137
- return pulumi.get(self, "freeform_tags")
138
-
139
- @property
140
- @pulumi.getter
141
- def id(self) -> str:
142
- """
143
- unique EmWarehouse identifier
144
- """
145
- return pulumi.get(self, "id")
146
-
147
- @property
148
- @pulumi.getter(name="latestEtlRunMessage")
149
- def latest_etl_run_message(self) -> str:
150
- """
151
- Data Flow Run Status Message
152
- """
153
- return pulumi.get(self, "latest_etl_run_message")
154
-
155
- @property
156
- @pulumi.getter(name="latestEtlRunStatus")
157
- def latest_etl_run_status(self) -> str:
158
- """
159
- Data Flow Run Status
160
- """
161
- return pulumi.get(self, "latest_etl_run_status")
162
-
163
- @property
164
- @pulumi.getter(name="latestEtlRunTime")
165
- def latest_etl_run_time(self) -> str:
166
- """
167
- Data Flow Run Total Time
168
- """
169
- return pulumi.get(self, "latest_etl_run_time")
170
-
171
- @property
172
- @pulumi.getter(name="lifecycleDetails")
173
- def lifecycle_details(self) -> str:
174
- """
175
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
176
- """
177
- return pulumi.get(self, "lifecycle_details")
178
-
179
- @property
180
- @pulumi.getter(name="operationsInsightsWarehouseId")
181
- def operations_insights_warehouse_id(self) -> str:
182
- """
183
- unique operationsInsightsWarehouseId identifier
184
- """
185
- return pulumi.get(self, "operations_insights_warehouse_id")
186
-
187
- @property
188
- @pulumi.getter
189
- def state(self) -> str:
190
- """
191
- A filter to return only resources their lifecycleState matches the given lifecycleState.
192
- """
193
- return pulumi.get(self, "state")
194
-
195
- @property
196
- @pulumi.getter(name="systemTags")
197
- def system_tags(self) -> Mapping[str, Any]:
198
- """
199
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
200
- """
201
- return pulumi.get(self, "system_tags")
202
-
203
- @property
204
- @pulumi.getter(name="timeCreated")
205
- def time_created(self) -> str:
206
- """
207
- The time the the EmWarehouse was created. An RFC3339 formatted datetime string
208
- """
209
- return pulumi.get(self, "time_created")
210
-
211
- @property
212
- @pulumi.getter(name="timeUpdated")
213
- def time_updated(self) -> str:
214
- """
215
- The time the EmWarehouse was updated. An RFC3339 formatted datetime string
216
- """
217
- return pulumi.get(self, "time_updated")
218
-
219
-
220
- @pulumi.output_type
221
- class GetEmWarehousesFilterResult(dict):
222
- def __init__(__self__, *,
223
- name: str,
224
- values: Sequence[str],
225
- regex: Optional[bool] = None):
226
- pulumi.set(__self__, "name", name)
227
- pulumi.set(__self__, "values", values)
228
- if regex is not None:
229
- pulumi.set(__self__, "regex", regex)
230
-
231
- @property
232
- @pulumi.getter
233
- def name(self) -> str:
234
- return pulumi.get(self, "name")
235
-
236
- @property
237
- @pulumi.getter
238
- def values(self) -> Sequence[str]:
239
- return pulumi.get(self, "values")
240
-
241
- @property
242
- @pulumi.getter
243
- def regex(self) -> Optional[bool]:
244
- return pulumi.get(self, "regex")
245
-
246
-
247
- @pulumi.output_type
248
- class GetEtlRunItemResult(dict):
249
- def __init__(__self__, *,
250
- compartment_id: str,
251
- data_read_in_bytes: str,
252
- data_written: str,
253
- defined_tags: Mapping[str, Any],
254
- display_name: str,
255
- freeform_tags: Mapping[str, Any],
256
- lifecycle_details: str,
257
- run_duration_in_milliseconds: str,
258
- state: str,
259
- time_created: str,
260
- time_updated: str):
261
- """
262
- :param str compartment_id: The ID of the compartment in which to list resources.
263
- :param str data_read_in_bytes: Data read by the dataflow run
264
- :param str data_written: Data written by the dataflow run
265
- :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
266
- :param str display_name: A filter to return only resources that match the entire display name given.
267
- :param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
268
- :param str lifecycle_details: Details of the lifecycle state
269
- :param str run_duration_in_milliseconds: Dataflow run duration
270
- :param str state: The current state of the etlRun.
271
- :param str time_created: Time when the dataflow run was created
272
- :param str time_updated: Time when the dataflow run was updated
273
- """
274
- pulumi.set(__self__, "compartment_id", compartment_id)
275
- pulumi.set(__self__, "data_read_in_bytes", data_read_in_bytes)
276
- pulumi.set(__self__, "data_written", data_written)
277
- pulumi.set(__self__, "defined_tags", defined_tags)
278
- pulumi.set(__self__, "display_name", display_name)
279
- pulumi.set(__self__, "freeform_tags", freeform_tags)
280
- pulumi.set(__self__, "lifecycle_details", lifecycle_details)
281
- pulumi.set(__self__, "run_duration_in_milliseconds", run_duration_in_milliseconds)
282
- pulumi.set(__self__, "state", state)
283
- pulumi.set(__self__, "time_created", time_created)
284
- pulumi.set(__self__, "time_updated", time_updated)
285
-
286
- @property
287
- @pulumi.getter(name="compartmentId")
288
- def compartment_id(self) -> str:
289
- """
290
- The ID of the compartment in which to list resources.
291
- """
292
- return pulumi.get(self, "compartment_id")
293
-
294
- @property
295
- @pulumi.getter(name="dataReadInBytes")
296
- def data_read_in_bytes(self) -> str:
297
- """
298
- Data read by the dataflow run
299
- """
300
- return pulumi.get(self, "data_read_in_bytes")
301
-
302
- @property
303
- @pulumi.getter(name="dataWritten")
304
- def data_written(self) -> str:
305
- """
306
- Data written by the dataflow run
307
- """
308
- return pulumi.get(self, "data_written")
309
-
310
- @property
311
- @pulumi.getter(name="definedTags")
312
- def defined_tags(self) -> Mapping[str, Any]:
313
- """
314
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
315
- """
316
- return pulumi.get(self, "defined_tags")
317
-
318
- @property
319
- @pulumi.getter(name="displayName")
320
- def display_name(self) -> str:
321
- """
322
- A filter to return only resources that match the entire display name given.
323
- """
324
- return pulumi.get(self, "display_name")
325
-
326
- @property
327
- @pulumi.getter(name="freeformTags")
328
- def freeform_tags(self) -> Mapping[str, Any]:
329
- """
330
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
331
- """
332
- return pulumi.get(self, "freeform_tags")
333
-
334
- @property
335
- @pulumi.getter(name="lifecycleDetails")
336
- def lifecycle_details(self) -> str:
337
- """
338
- Details of the lifecycle state
339
- """
340
- return pulumi.get(self, "lifecycle_details")
341
-
342
- @property
343
- @pulumi.getter(name="runDurationInMilliseconds")
344
- def run_duration_in_milliseconds(self) -> str:
345
- """
346
- Dataflow run duration
347
- """
348
- return pulumi.get(self, "run_duration_in_milliseconds")
349
-
350
- @property
351
- @pulumi.getter
352
- def state(self) -> str:
353
- """
354
- The current state of the etlRun.
355
- """
356
- return pulumi.get(self, "state")
357
-
358
- @property
359
- @pulumi.getter(name="timeCreated")
360
- def time_created(self) -> str:
361
- """
362
- Time when the dataflow run was created
363
- """
364
- return pulumi.get(self, "time_created")
365
-
366
- @property
367
- @pulumi.getter(name="timeUpdated")
368
- def time_updated(self) -> str:
369
- """
370
- Time when the dataflow run was updated
371
- """
372
- return pulumi.get(self, "time_updated")
373
-
374
-
375
- @pulumi.output_type
376
- class GetEtlRunsEtlRunCollectionResult(dict):
377
- def __init__(__self__, *,
378
- items: Sequence['outputs.GetEtlRunsEtlRunCollectionItemResult']):
379
- """
380
- :param Sequence['GetEtlRunsEtlRunCollectionItemArgs'] items: List of runs
381
- """
382
- pulumi.set(__self__, "items", items)
383
-
384
- @property
385
- @pulumi.getter
386
- def items(self) -> Sequence['outputs.GetEtlRunsEtlRunCollectionItemResult']:
387
- """
388
- List of runs
389
- """
390
- return pulumi.get(self, "items")
391
-
392
-
393
- @pulumi.output_type
394
- class GetEtlRunsEtlRunCollectionItemResult(dict):
395
- def __init__(__self__, *,
396
- items: Sequence['outputs.GetEtlRunsEtlRunCollectionItemItemResult']):
397
- """
398
- :param Sequence['GetEtlRunsEtlRunCollectionItemItemArgs'] items: List of runs
399
- """
400
- pulumi.set(__self__, "items", items)
401
-
402
- @property
403
- @pulumi.getter
404
- def items(self) -> Sequence['outputs.GetEtlRunsEtlRunCollectionItemItemResult']:
405
- """
406
- List of runs
407
- """
408
- return pulumi.get(self, "items")
409
-
410
-
411
- @pulumi.output_type
412
- class GetEtlRunsEtlRunCollectionItemItemResult(dict):
413
- def __init__(__self__, *,
414
- compartment_id: str,
415
- data_read_in_bytes: str,
416
- data_written: str,
417
- defined_tags: Mapping[str, Any],
418
- display_name: str,
419
- freeform_tags: Mapping[str, Any],
420
- lifecycle_details: str,
421
- run_duration_in_milliseconds: str,
422
- state: str,
423
- time_created: str,
424
- time_updated: str):
425
- """
426
- :param str compartment_id: The ID of the compartment in which to list resources.
427
- :param str data_read_in_bytes: Data read by the dataflow run
428
- :param str data_written: Data written by the dataflow run
429
- :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
430
- :param str display_name: A filter to return only resources that match the entire display name given.
431
- :param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
432
- :param str lifecycle_details: Details of the lifecycle state
433
- :param str run_duration_in_milliseconds: Dataflow run duration
434
- :param str state: The current state of the etlRun.
435
- :param str time_created: Time when the dataflow run was created
436
- :param str time_updated: Time when the dataflow run was updated
437
- """
438
- pulumi.set(__self__, "compartment_id", compartment_id)
439
- pulumi.set(__self__, "data_read_in_bytes", data_read_in_bytes)
440
- pulumi.set(__self__, "data_written", data_written)
441
- pulumi.set(__self__, "defined_tags", defined_tags)
442
- pulumi.set(__self__, "display_name", display_name)
443
- pulumi.set(__self__, "freeform_tags", freeform_tags)
444
- pulumi.set(__self__, "lifecycle_details", lifecycle_details)
445
- pulumi.set(__self__, "run_duration_in_milliseconds", run_duration_in_milliseconds)
446
- pulumi.set(__self__, "state", state)
447
- pulumi.set(__self__, "time_created", time_created)
448
- pulumi.set(__self__, "time_updated", time_updated)
449
-
450
- @property
451
- @pulumi.getter(name="compartmentId")
452
- def compartment_id(self) -> str:
453
- """
454
- The ID of the compartment in which to list resources.
455
- """
456
- return pulumi.get(self, "compartment_id")
457
-
458
- @property
459
- @pulumi.getter(name="dataReadInBytes")
460
- def data_read_in_bytes(self) -> str:
461
- """
462
- Data read by the dataflow run
463
- """
464
- return pulumi.get(self, "data_read_in_bytes")
465
-
466
- @property
467
- @pulumi.getter(name="dataWritten")
468
- def data_written(self) -> str:
469
- """
470
- Data written by the dataflow run
471
- """
472
- return pulumi.get(self, "data_written")
473
-
474
- @property
475
- @pulumi.getter(name="definedTags")
476
- def defined_tags(self) -> Mapping[str, Any]:
477
- """
478
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
479
- """
480
- return pulumi.get(self, "defined_tags")
481
-
482
- @property
483
- @pulumi.getter(name="displayName")
484
- def display_name(self) -> str:
485
- """
486
- A filter to return only resources that match the entire display name given.
487
- """
488
- return pulumi.get(self, "display_name")
489
-
490
- @property
491
- @pulumi.getter(name="freeformTags")
492
- def freeform_tags(self) -> Mapping[str, Any]:
493
- """
494
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
495
- """
496
- return pulumi.get(self, "freeform_tags")
497
-
498
- @property
499
- @pulumi.getter(name="lifecycleDetails")
500
- def lifecycle_details(self) -> str:
501
- """
502
- Details of the lifecycle state
503
- """
504
- return pulumi.get(self, "lifecycle_details")
505
-
506
- @property
507
- @pulumi.getter(name="runDurationInMilliseconds")
508
- def run_duration_in_milliseconds(self) -> str:
509
- """
510
- Dataflow run duration
511
- """
512
- return pulumi.get(self, "run_duration_in_milliseconds")
513
-
514
- @property
515
- @pulumi.getter
516
- def state(self) -> str:
517
- """
518
- The current state of the etlRun.
519
- """
520
- return pulumi.get(self, "state")
521
-
522
- @property
523
- @pulumi.getter(name="timeCreated")
524
- def time_created(self) -> str:
525
- """
526
- Time when the dataflow run was created
527
- """
528
- return pulumi.get(self, "time_created")
529
-
530
- @property
531
- @pulumi.getter(name="timeUpdated")
532
- def time_updated(self) -> str:
533
- """
534
- Time when the dataflow run was updated
535
- """
536
- return pulumi.get(self, "time_updated")
537
-
538
-
539
- @pulumi.output_type
540
- class GetEtlRunsFilterResult(dict):
541
- def __init__(__self__, *,
542
- name: str,
543
- values: Sequence[str],
544
- regex: Optional[bool] = None):
545
- pulumi.set(__self__, "name", name)
546
- pulumi.set(__self__, "values", values)
547
- if regex is not None:
548
- pulumi.set(__self__, "regex", regex)
549
-
550
- @property
551
- @pulumi.getter
552
- def name(self) -> str:
553
- return pulumi.get(self, "name")
554
-
555
- @property
556
- @pulumi.getter
557
- def values(self) -> Sequence[str]:
558
- return pulumi.get(self, "values")
559
-
560
- @property
561
- @pulumi.getter
562
- def regex(self) -> Optional[bool]:
563
- return pulumi.get(self, "regex")
564
-
565
-
566
- @pulumi.output_type
567
- class GetResourceUsageEmInstanceResult(dict):
568
- def __init__(__self__, *,
569
- em_discoverer_url: str,
570
- em_host: str,
571
- em_id: str,
572
- targets_count: int):
573
- """
574
- :param str em_discoverer_url: emdDiscoverer url
575
- :param str em_host: emHost name
576
- :param str em_id: operations Insights Warehouse Identifier
577
- :param int targets_count: EmInstance Target count
578
- """
579
- pulumi.set(__self__, "em_discoverer_url", em_discoverer_url)
580
- pulumi.set(__self__, "em_host", em_host)
581
- pulumi.set(__self__, "em_id", em_id)
582
- pulumi.set(__self__, "targets_count", targets_count)
583
-
584
- @property
585
- @pulumi.getter(name="emDiscovererUrl")
586
- def em_discoverer_url(self) -> str:
587
- """
588
- emdDiscoverer url
589
- """
590
- return pulumi.get(self, "em_discoverer_url")
591
-
592
- @property
593
- @pulumi.getter(name="emHost")
594
- def em_host(self) -> str:
595
- """
596
- emHost name
597
- """
598
- return pulumi.get(self, "em_host")
599
-
600
- @property
601
- @pulumi.getter(name="emId")
602
- def em_id(self) -> str:
603
- """
604
- operations Insights Warehouse Identifier
605
- """
606
- return pulumi.get(self, "em_id")
607
-
608
- @property
609
- @pulumi.getter(name="targetsCount")
610
- def targets_count(self) -> int:
611
- """
612
- EmInstance Target count
613
- """
614
- return pulumi.get(self, "targets_count")
615
-
616
-