pulumi-oci 1.28.0a1711030900__py3-none-any.whl → 1.29.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/apmtraces/get_query_quick_picks.py +2 -2
- pulumi_oci/apmtraces/get_trace.py +69 -5
- pulumi_oci/apmtraces/get_trace_aggregated_snapshot_data.py +73 -5
- pulumi_oci/apmtraces/get_trace_snapshot_data.py +6 -6
- pulumi_oci/apmtraces/outputs.py +22 -0
- pulumi_oci/database/_inputs.py +4 -4
- pulumi_oci/database/autonomous_database.py +425 -179
- pulumi_oci/database/get_autonomous_database.py +41 -2
- pulumi_oci/database/get_autonomous_databases.py +1 -1
- pulumi_oci/database/outputs.py +72 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
- pulumi_oci/databasemanagement/outputs.py +267 -75
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +4504 -0
- pulumi_oci/dataintegration/get_workspace_task.py +443 -0
- pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
- pulumi_oci/dataintegration/outputs.py +16511 -4723
- pulumi_oci/dataintegration/workspace_task.py +1364 -0
- pulumi_oci/devops/_inputs.py +18 -2
- pulumi_oci/devops/deploy_artifact.py +2 -0
- pulumi_oci/devops/deploy_stage.py +141 -0
- pulumi_oci/devops/get_deploy_stage.py +40 -1
- pulumi_oci/devops/outputs.py +75 -6
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +58 -0
- pulumi_oci/integration/get_integration_instance.py +15 -1
- pulumi_oci/integration/integration_instance.py +42 -0
- pulumi_oci/integration/outputs.py +170 -4
- pulumi_oci/integration/private_endpoint_outbound_connection.py +234 -0
- pulumi_oci/logging/_inputs.py +2751 -187
- pulumi_oci/logging/outputs.py +4981 -768
- pulumi_oci/logging/unified_agent_configuration.py +34 -208
- pulumi_oci/monitoring/_inputs.py +136 -0
- pulumi_oci/monitoring/alarm.py +173 -0
- pulumi_oci/monitoring/get_alarm.py +40 -1
- pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
- pulumi_oci/monitoring/outputs.py +305 -0
- pulumi_oci/networkloadbalancer/_inputs.py +20 -20
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +11 -11
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +1 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
- pulumi_oci/networkloadbalancer/outputs.py +41 -34
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/RECORD +53 -49
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -1801,6 +1801,14 @@ _utilities.register(
|
|
1801
1801
|
"oci:DataIntegration/workspaceProject:WorkspaceProject": "WorkspaceProject"
|
1802
1802
|
}
|
1803
1803
|
},
|
1804
|
+
{
|
1805
|
+
"pkg": "oci",
|
1806
|
+
"mod": "DataIntegration/workspaceTask",
|
1807
|
+
"fqn": "pulumi_oci.dataintegration",
|
1808
|
+
"classes": {
|
1809
|
+
"oci:DataIntegration/workspaceTask:WorkspaceTask": "WorkspaceTask"
|
1810
|
+
}
|
1811
|
+
},
|
1804
1812
|
{
|
1805
1813
|
"pkg": "oci",
|
1806
1814
|
"mod": "DataLabellingService/dataset",
|
@@ -4049,6 +4057,14 @@ _utilities.register(
|
|
4049
4057
|
"oci:Integration/integrationInstance:IntegrationInstance": "IntegrationInstance"
|
4050
4058
|
}
|
4051
4059
|
},
|
4060
|
+
{
|
4061
|
+
"pkg": "oci",
|
4062
|
+
"mod": "Integration/privateEndpointOutboundConnection",
|
4063
|
+
"fqn": "pulumi_oci.integration",
|
4064
|
+
"classes": {
|
4065
|
+
"oci:Integration/privateEndpointOutboundConnection:PrivateEndpointOutboundConnection": "PrivateEndpointOutboundConnection"
|
4066
|
+
}
|
4067
|
+
},
|
4052
4068
|
{
|
4053
4069
|
"pkg": "oci",
|
4054
4070
|
"mod": "Jms/fleet",
|
@@ -97,7 +97,7 @@ def get_query_quick_picks(apm_domain_id: Optional[str] = None,
|
|
97
97
|
<!--End PulumiCodeChooser -->
|
98
98
|
|
99
99
|
|
100
|
-
:param str apm_domain_id: The APM Domain ID the
|
100
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
101
101
|
"""
|
102
102
|
__args__ = dict()
|
103
103
|
__args__['apmDomainId'] = apm_domain_id
|
@@ -134,6 +134,6 @@ def get_query_quick_picks_output(apm_domain_id: Optional[pulumi.Input[str]] = No
|
|
134
134
|
<!--End PulumiCodeChooser -->
|
135
135
|
|
136
136
|
|
137
|
-
:param str apm_domain_id: The APM Domain ID the
|
137
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
138
138
|
"""
|
139
139
|
...
|
@@ -22,7 +22,7 @@ class GetTraceResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getTrace.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, apm_domain_id=None, error_span_count=None, id=None, is_fault=None, key=None, root_span_duration_in_ms=None, root_span_operation_name=None, root_span_service_name=None, service_summaries=None, span_count=None, span_summaries=None, spans=None, time_earliest_span_started=None, time_latest_span_ended=None, time_root_span_ended=None, time_root_span_started=None, trace_duration_in_ms=None, trace_error_code=None, trace_error_type=None, trace_key=None, trace_status=None):
|
25
|
+
def __init__(__self__, apm_domain_id=None, error_span_count=None, id=None, is_fault=None, key=None, root_span_duration_in_ms=None, root_span_operation_name=None, root_span_service_name=None, service_summaries=None, source_name=None, span_count=None, span_summaries=None, spans=None, time_earliest_span_started=None, time_latest_span_ended=None, time_root_span_ended=None, time_root_span_started=None, time_trace_started_greater_than_or_equal_to=None, time_trace_started_less_than=None, trace_duration_in_ms=None, trace_error_code=None, trace_error_type=None, trace_key=None, trace_namespace=None, trace_status=None):
|
26
26
|
if apm_domain_id and not isinstance(apm_domain_id, str):
|
27
27
|
raise TypeError("Expected argument 'apm_domain_id' to be a str")
|
28
28
|
pulumi.set(__self__, "apm_domain_id", apm_domain_id)
|
@@ -50,6 +50,9 @@ class GetTraceResult:
|
|
50
50
|
if service_summaries and not isinstance(service_summaries, list):
|
51
51
|
raise TypeError("Expected argument 'service_summaries' to be a list")
|
52
52
|
pulumi.set(__self__, "service_summaries", service_summaries)
|
53
|
+
if source_name and not isinstance(source_name, str):
|
54
|
+
raise TypeError("Expected argument 'source_name' to be a str")
|
55
|
+
pulumi.set(__self__, "source_name", source_name)
|
53
56
|
if span_count and not isinstance(span_count, int):
|
54
57
|
raise TypeError("Expected argument 'span_count' to be a int")
|
55
58
|
pulumi.set(__self__, "span_count", span_count)
|
@@ -71,6 +74,12 @@ class GetTraceResult:
|
|
71
74
|
if time_root_span_started and not isinstance(time_root_span_started, str):
|
72
75
|
raise TypeError("Expected argument 'time_root_span_started' to be a str")
|
73
76
|
pulumi.set(__self__, "time_root_span_started", time_root_span_started)
|
77
|
+
if time_trace_started_greater_than_or_equal_to and not isinstance(time_trace_started_greater_than_or_equal_to, str):
|
78
|
+
raise TypeError("Expected argument 'time_trace_started_greater_than_or_equal_to' to be a str")
|
79
|
+
pulumi.set(__self__, "time_trace_started_greater_than_or_equal_to", time_trace_started_greater_than_or_equal_to)
|
80
|
+
if time_trace_started_less_than and not isinstance(time_trace_started_less_than, str):
|
81
|
+
raise TypeError("Expected argument 'time_trace_started_less_than' to be a str")
|
82
|
+
pulumi.set(__self__, "time_trace_started_less_than", time_trace_started_less_than)
|
74
83
|
if trace_duration_in_ms and not isinstance(trace_duration_in_ms, int):
|
75
84
|
raise TypeError("Expected argument 'trace_duration_in_ms' to be a int")
|
76
85
|
pulumi.set(__self__, "trace_duration_in_ms", trace_duration_in_ms)
|
@@ -83,6 +92,9 @@ class GetTraceResult:
|
|
83
92
|
if trace_key and not isinstance(trace_key, str):
|
84
93
|
raise TypeError("Expected argument 'trace_key' to be a str")
|
85
94
|
pulumi.set(__self__, "trace_key", trace_key)
|
95
|
+
if trace_namespace and not isinstance(trace_namespace, str):
|
96
|
+
raise TypeError("Expected argument 'trace_namespace' to be a str")
|
97
|
+
pulumi.set(__self__, "trace_namespace", trace_namespace)
|
86
98
|
if trace_status and not isinstance(trace_status, str):
|
87
99
|
raise TypeError("Expected argument 'trace_status' to be a str")
|
88
100
|
pulumi.set(__self__, "trace_status", trace_status)
|
@@ -156,6 +168,14 @@ class GetTraceResult:
|
|
156
168
|
"""
|
157
169
|
return pulumi.get(self, "service_summaries")
|
158
170
|
|
171
|
+
@property
|
172
|
+
@pulumi.getter(name="sourceName")
|
173
|
+
def source_name(self) -> str:
|
174
|
+
"""
|
175
|
+
Source of span (spans, syn_spans).
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "source_name")
|
178
|
+
|
159
179
|
@property
|
160
180
|
@pulumi.getter(name="spanCount")
|
161
181
|
def span_count(self) -> int:
|
@@ -212,6 +232,16 @@ class GetTraceResult:
|
|
212
232
|
"""
|
213
233
|
return pulumi.get(self, "time_root_span_started")
|
214
234
|
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="timeTraceStartedGreaterThanOrEqualTo")
|
237
|
+
def time_trace_started_greater_than_or_equal_to(self) -> Optional[str]:
|
238
|
+
return pulumi.get(self, "time_trace_started_greater_than_or_equal_to")
|
239
|
+
|
240
|
+
@property
|
241
|
+
@pulumi.getter(name="timeTraceStartedLessThan")
|
242
|
+
def time_trace_started_less_than(self) -> Optional[str]:
|
243
|
+
return pulumi.get(self, "time_trace_started_less_than")
|
244
|
+
|
215
245
|
@property
|
216
246
|
@pulumi.getter(name="traceDurationInMs")
|
217
247
|
def trace_duration_in_ms(self) -> int:
|
@@ -244,6 +274,11 @@ class GetTraceResult:
|
|
244
274
|
"""
|
245
275
|
return pulumi.get(self, "trace_key")
|
246
276
|
|
277
|
+
@property
|
278
|
+
@pulumi.getter(name="traceNamespace")
|
279
|
+
def trace_namespace(self) -> Optional[str]:
|
280
|
+
return pulumi.get(self, "trace_namespace")
|
281
|
+
|
247
282
|
@property
|
248
283
|
@pulumi.getter(name="traceStatus")
|
249
284
|
def trace_status(self) -> str:
|
@@ -268,6 +303,7 @@ class AwaitableGetTraceResult(GetTraceResult):
|
|
268
303
|
root_span_operation_name=self.root_span_operation_name,
|
269
304
|
root_span_service_name=self.root_span_service_name,
|
270
305
|
service_summaries=self.service_summaries,
|
306
|
+
source_name=self.source_name,
|
271
307
|
span_count=self.span_count,
|
272
308
|
span_summaries=self.span_summaries,
|
273
309
|
spans=self.spans,
|
@@ -275,15 +311,21 @@ class AwaitableGetTraceResult(GetTraceResult):
|
|
275
311
|
time_latest_span_ended=self.time_latest_span_ended,
|
276
312
|
time_root_span_ended=self.time_root_span_ended,
|
277
313
|
time_root_span_started=self.time_root_span_started,
|
314
|
+
time_trace_started_greater_than_or_equal_to=self.time_trace_started_greater_than_or_equal_to,
|
315
|
+
time_trace_started_less_than=self.time_trace_started_less_than,
|
278
316
|
trace_duration_in_ms=self.trace_duration_in_ms,
|
279
317
|
trace_error_code=self.trace_error_code,
|
280
318
|
trace_error_type=self.trace_error_type,
|
281
319
|
trace_key=self.trace_key,
|
320
|
+
trace_namespace=self.trace_namespace,
|
282
321
|
trace_status=self.trace_status)
|
283
322
|
|
284
323
|
|
285
324
|
def get_trace(apm_domain_id: Optional[str] = None,
|
325
|
+
time_trace_started_greater_than_or_equal_to: Optional[str] = None,
|
326
|
+
time_trace_started_less_than: Optional[str] = None,
|
286
327
|
trace_key: Optional[str] = None,
|
328
|
+
trace_namespace: Optional[str] = None,
|
287
329
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTraceResult:
|
288
330
|
"""
|
289
331
|
This data source provides details about a specific Trace resource in Oracle Cloud Infrastructure Apm Traces service.
|
@@ -298,17 +340,26 @@ def get_trace(apm_domain_id: Optional[str] = None,
|
|
298
340
|
import pulumi_oci as oci
|
299
341
|
|
300
342
|
test_trace = oci.ApmTraces.get_trace(apm_domain_id=oci_apm_apm_domain["test_apm_domain"]["id"],
|
301
|
-
trace_key=var["trace_trace_key"]
|
343
|
+
trace_key=var["trace_trace_key"],
|
344
|
+
time_trace_started_greater_than_or_equal_to=var["trace_time_trace_started_greater_than_or_equal_to"],
|
345
|
+
time_trace_started_less_than=var["trace_time_trace_started_less_than"],
|
346
|
+
trace_namespace=var["trace_trace_namespace"])
|
302
347
|
```
|
303
348
|
<!--End PulumiCodeChooser -->
|
304
349
|
|
305
350
|
|
306
|
-
:param str apm_domain_id: The APM Domain ID the
|
351
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
352
|
+
:param str time_trace_started_greater_than_or_equal_to: Include traces that have a `minTraceStartTime` equal to or greater than this value.
|
353
|
+
:param str time_trace_started_less_than: Include traces that have a `minTraceStartTime` less than this value.
|
307
354
|
:param str trace_key: Unique Application Performance Monitoring trace identifier (traceId).
|
355
|
+
:param str trace_namespace: Name space from which the trace details need to be retrieved.
|
308
356
|
"""
|
309
357
|
__args__ = dict()
|
310
358
|
__args__['apmDomainId'] = apm_domain_id
|
359
|
+
__args__['timeTraceStartedGreaterThanOrEqualTo'] = time_trace_started_greater_than_or_equal_to
|
360
|
+
__args__['timeTraceStartedLessThan'] = time_trace_started_less_than
|
311
361
|
__args__['traceKey'] = trace_key
|
362
|
+
__args__['traceNamespace'] = trace_namespace
|
312
363
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
313
364
|
__ret__ = pulumi.runtime.invoke('oci:ApmTraces/getTrace:getTrace', __args__, opts=opts, typ=GetTraceResult).value
|
314
365
|
|
@@ -322,6 +373,7 @@ def get_trace(apm_domain_id: Optional[str] = None,
|
|
322
373
|
root_span_operation_name=pulumi.get(__ret__, 'root_span_operation_name'),
|
323
374
|
root_span_service_name=pulumi.get(__ret__, 'root_span_service_name'),
|
324
375
|
service_summaries=pulumi.get(__ret__, 'service_summaries'),
|
376
|
+
source_name=pulumi.get(__ret__, 'source_name'),
|
325
377
|
span_count=pulumi.get(__ret__, 'span_count'),
|
326
378
|
span_summaries=pulumi.get(__ret__, 'span_summaries'),
|
327
379
|
spans=pulumi.get(__ret__, 'spans'),
|
@@ -329,16 +381,22 @@ def get_trace(apm_domain_id: Optional[str] = None,
|
|
329
381
|
time_latest_span_ended=pulumi.get(__ret__, 'time_latest_span_ended'),
|
330
382
|
time_root_span_ended=pulumi.get(__ret__, 'time_root_span_ended'),
|
331
383
|
time_root_span_started=pulumi.get(__ret__, 'time_root_span_started'),
|
384
|
+
time_trace_started_greater_than_or_equal_to=pulumi.get(__ret__, 'time_trace_started_greater_than_or_equal_to'),
|
385
|
+
time_trace_started_less_than=pulumi.get(__ret__, 'time_trace_started_less_than'),
|
332
386
|
trace_duration_in_ms=pulumi.get(__ret__, 'trace_duration_in_ms'),
|
333
387
|
trace_error_code=pulumi.get(__ret__, 'trace_error_code'),
|
334
388
|
trace_error_type=pulumi.get(__ret__, 'trace_error_type'),
|
335
389
|
trace_key=pulumi.get(__ret__, 'trace_key'),
|
390
|
+
trace_namespace=pulumi.get(__ret__, 'trace_namespace'),
|
336
391
|
trace_status=pulumi.get(__ret__, 'trace_status'))
|
337
392
|
|
338
393
|
|
339
394
|
@_utilities.lift_output_func(get_trace)
|
340
395
|
def get_trace_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
|
396
|
+
time_trace_started_greater_than_or_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
|
397
|
+
time_trace_started_less_than: Optional[pulumi.Input[Optional[str]]] = None,
|
341
398
|
trace_key: Optional[pulumi.Input[str]] = None,
|
399
|
+
trace_namespace: Optional[pulumi.Input[Optional[str]]] = None,
|
342
400
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTraceResult]:
|
343
401
|
"""
|
344
402
|
This data source provides details about a specific Trace resource in Oracle Cloud Infrastructure Apm Traces service.
|
@@ -353,12 +411,18 @@ def get_trace_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
|
|
353
411
|
import pulumi_oci as oci
|
354
412
|
|
355
413
|
test_trace = oci.ApmTraces.get_trace(apm_domain_id=oci_apm_apm_domain["test_apm_domain"]["id"],
|
356
|
-
trace_key=var["trace_trace_key"]
|
414
|
+
trace_key=var["trace_trace_key"],
|
415
|
+
time_trace_started_greater_than_or_equal_to=var["trace_time_trace_started_greater_than_or_equal_to"],
|
416
|
+
time_trace_started_less_than=var["trace_time_trace_started_less_than"],
|
417
|
+
trace_namespace=var["trace_trace_namespace"])
|
357
418
|
```
|
358
419
|
<!--End PulumiCodeChooser -->
|
359
420
|
|
360
421
|
|
361
|
-
:param str apm_domain_id: The APM Domain ID the
|
422
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
423
|
+
:param str time_trace_started_greater_than_or_equal_to: Include traces that have a `minTraceStartTime` equal to or greater than this value.
|
424
|
+
:param str time_trace_started_less_than: Include traces that have a `minTraceStartTime` less than this value.
|
362
425
|
:param str trace_key: Unique Application Performance Monitoring trace identifier (traceId).
|
426
|
+
:param str trace_namespace: Name space from which the trace details need to be retrieved.
|
363
427
|
"""
|
364
428
|
...
|
@@ -22,7 +22,7 @@ class GetTraceAggregatedSnapshotDataResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getTraceAggregatedSnapshotData.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, apm_domain_id=None, details=None, id=None, trace_key=None):
|
25
|
+
def __init__(__self__, apm_domain_id=None, details=None, id=None, server_name=None, service_name=None, span_key=None, span_name=None, trace_key=None):
|
26
26
|
if apm_domain_id and not isinstance(apm_domain_id, str):
|
27
27
|
raise TypeError("Expected argument 'apm_domain_id' to be a str")
|
28
28
|
pulumi.set(__self__, "apm_domain_id", apm_domain_id)
|
@@ -32,6 +32,18 @@ class GetTraceAggregatedSnapshotDataResult:
|
|
32
32
|
if id and not isinstance(id, str):
|
33
33
|
raise TypeError("Expected argument 'id' to be a str")
|
34
34
|
pulumi.set(__self__, "id", id)
|
35
|
+
if server_name and not isinstance(server_name, str):
|
36
|
+
raise TypeError("Expected argument 'server_name' to be a str")
|
37
|
+
pulumi.set(__self__, "server_name", server_name)
|
38
|
+
if service_name and not isinstance(service_name, str):
|
39
|
+
raise TypeError("Expected argument 'service_name' to be a str")
|
40
|
+
pulumi.set(__self__, "service_name", service_name)
|
41
|
+
if span_key and not isinstance(span_key, str):
|
42
|
+
raise TypeError("Expected argument 'span_key' to be a str")
|
43
|
+
pulumi.set(__self__, "span_key", span_key)
|
44
|
+
if span_name and not isinstance(span_name, str):
|
45
|
+
raise TypeError("Expected argument 'span_name' to be a str")
|
46
|
+
pulumi.set(__self__, "span_name", span_name)
|
35
47
|
if trace_key and not isinstance(trace_key, str):
|
36
48
|
raise TypeError("Expected argument 'trace_key' to be a str")
|
37
49
|
pulumi.set(__self__, "trace_key", trace_key)
|
@@ -57,6 +69,26 @@ class GetTraceAggregatedSnapshotDataResult:
|
|
57
69
|
"""
|
58
70
|
return pulumi.get(self, "id")
|
59
71
|
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="serverName")
|
74
|
+
def server_name(self) -> Optional[str]:
|
75
|
+
return pulumi.get(self, "server_name")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="serviceName")
|
79
|
+
def service_name(self) -> Optional[str]:
|
80
|
+
return pulumi.get(self, "service_name")
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter(name="spanKey")
|
84
|
+
def span_key(self) -> Optional[str]:
|
85
|
+
return pulumi.get(self, "span_key")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="spanName")
|
89
|
+
def span_name(self) -> Optional[str]:
|
90
|
+
return pulumi.get(self, "span_name")
|
91
|
+
|
60
92
|
@property
|
61
93
|
@pulumi.getter(name="traceKey")
|
62
94
|
def trace_key(self) -> str:
|
@@ -72,10 +104,18 @@ class AwaitableGetTraceAggregatedSnapshotDataResult(GetTraceAggregatedSnapshotDa
|
|
72
104
|
apm_domain_id=self.apm_domain_id,
|
73
105
|
details=self.details,
|
74
106
|
id=self.id,
|
107
|
+
server_name=self.server_name,
|
108
|
+
service_name=self.service_name,
|
109
|
+
span_key=self.span_key,
|
110
|
+
span_name=self.span_name,
|
75
111
|
trace_key=self.trace_key)
|
76
112
|
|
77
113
|
|
78
114
|
def get_trace_aggregated_snapshot_data(apm_domain_id: Optional[str] = None,
|
115
|
+
server_name: Optional[str] = None,
|
116
|
+
service_name: Optional[str] = None,
|
117
|
+
span_key: Optional[str] = None,
|
118
|
+
span_name: Optional[str] = None,
|
79
119
|
trace_key: Optional[str] = None,
|
80
120
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTraceAggregatedSnapshotDataResult:
|
81
121
|
"""
|
@@ -91,16 +131,28 @@ def get_trace_aggregated_snapshot_data(apm_domain_id: Optional[str] = None,
|
|
91
131
|
import pulumi_oci as oci
|
92
132
|
|
93
133
|
test_trace_aggregated_snapshot_data = oci.ApmTraces.get_trace_aggregated_snapshot_data(apm_domain_id=oci_apm_apm_domain["test_apm_domain"]["id"],
|
94
|
-
trace_key=var["trace_aggregated_snapshot_data_trace_key"]
|
134
|
+
trace_key=var["trace_aggregated_snapshot_data_trace_key"],
|
135
|
+
server_name=var["trace_aggregated_snapshot_data_server_name"],
|
136
|
+
service_name=oci_core_service["test_service"]["name"],
|
137
|
+
span_key=var["trace_aggregated_snapshot_data_span_key"],
|
138
|
+
span_name=var["trace_aggregated_snapshot_data_span_name"])
|
95
139
|
```
|
96
140
|
<!--End PulumiCodeChooser -->
|
97
141
|
|
98
142
|
|
99
|
-
:param str apm_domain_id: The APM Domain ID the
|
143
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
144
|
+
:param str server_name: Name of the server.
|
145
|
+
:param str service_name: Name associated with the service.
|
146
|
+
:param str span_key: Unique Application Performance Monitoring span identifier (spanId).
|
147
|
+
:param str span_name: Name of the span associated with the trace.
|
100
148
|
:param str trace_key: Unique Application Performance Monitoring trace identifier (traceId).
|
101
149
|
"""
|
102
150
|
__args__ = dict()
|
103
151
|
__args__['apmDomainId'] = apm_domain_id
|
152
|
+
__args__['serverName'] = server_name
|
153
|
+
__args__['serviceName'] = service_name
|
154
|
+
__args__['spanKey'] = span_key
|
155
|
+
__args__['spanName'] = span_name
|
104
156
|
__args__['traceKey'] = trace_key
|
105
157
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
106
158
|
__ret__ = pulumi.runtime.invoke('oci:ApmTraces/getTraceAggregatedSnapshotData:getTraceAggregatedSnapshotData', __args__, opts=opts, typ=GetTraceAggregatedSnapshotDataResult).value
|
@@ -109,11 +161,19 @@ def get_trace_aggregated_snapshot_data(apm_domain_id: Optional[str] = None,
|
|
109
161
|
apm_domain_id=pulumi.get(__ret__, 'apm_domain_id'),
|
110
162
|
details=pulumi.get(__ret__, 'details'),
|
111
163
|
id=pulumi.get(__ret__, 'id'),
|
164
|
+
server_name=pulumi.get(__ret__, 'server_name'),
|
165
|
+
service_name=pulumi.get(__ret__, 'service_name'),
|
166
|
+
span_key=pulumi.get(__ret__, 'span_key'),
|
167
|
+
span_name=pulumi.get(__ret__, 'span_name'),
|
112
168
|
trace_key=pulumi.get(__ret__, 'trace_key'))
|
113
169
|
|
114
170
|
|
115
171
|
@_utilities.lift_output_func(get_trace_aggregated_snapshot_data)
|
116
172
|
def get_trace_aggregated_snapshot_data_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
|
173
|
+
server_name: Optional[pulumi.Input[Optional[str]]] = None,
|
174
|
+
service_name: Optional[pulumi.Input[Optional[str]]] = None,
|
175
|
+
span_key: Optional[pulumi.Input[Optional[str]]] = None,
|
176
|
+
span_name: Optional[pulumi.Input[Optional[str]]] = None,
|
117
177
|
trace_key: Optional[pulumi.Input[str]] = None,
|
118
178
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTraceAggregatedSnapshotDataResult]:
|
119
179
|
"""
|
@@ -129,12 +189,20 @@ def get_trace_aggregated_snapshot_data_output(apm_domain_id: Optional[pulumi.Inp
|
|
129
189
|
import pulumi_oci as oci
|
130
190
|
|
131
191
|
test_trace_aggregated_snapshot_data = oci.ApmTraces.get_trace_aggregated_snapshot_data(apm_domain_id=oci_apm_apm_domain["test_apm_domain"]["id"],
|
132
|
-
trace_key=var["trace_aggregated_snapshot_data_trace_key"]
|
192
|
+
trace_key=var["trace_aggregated_snapshot_data_trace_key"],
|
193
|
+
server_name=var["trace_aggregated_snapshot_data_server_name"],
|
194
|
+
service_name=oci_core_service["test_service"]["name"],
|
195
|
+
span_key=var["trace_aggregated_snapshot_data_span_key"],
|
196
|
+
span_name=var["trace_aggregated_snapshot_data_span_name"])
|
133
197
|
```
|
134
198
|
<!--End PulumiCodeChooser -->
|
135
199
|
|
136
200
|
|
137
|
-
:param str apm_domain_id: The APM Domain ID the
|
201
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
202
|
+
:param str server_name: Name of the server.
|
203
|
+
:param str service_name: Name associated with the service.
|
204
|
+
:param str span_key: Unique Application Performance Monitoring span identifier (spanId).
|
205
|
+
:param str span_name: Name of the span associated with the trace.
|
138
206
|
:param str trace_key: Unique Application Performance Monitoring trace identifier (traceId).
|
139
207
|
"""
|
140
208
|
...
|
@@ -165,10 +165,10 @@ def get_trace_snapshot_data(apm_domain_id: Optional[str] = None,
|
|
165
165
|
<!--End PulumiCodeChooser -->
|
166
166
|
|
167
167
|
|
168
|
-
:param str apm_domain_id: The APM Domain ID the
|
169
|
-
:param bool is_summarized: If enabled,
|
168
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
169
|
+
:param bool is_summarized: If enabled, only span level details are sent.
|
170
170
|
:param str snapshot_time: Epoch time of snapshot.
|
171
|
-
:param str thread_id: Thread
|
171
|
+
:param str thread_id: Thread ID for which snapshots need to be retrieved. This identifier of a thread is a long positive number generated when a thread is created.
|
172
172
|
:param str trace_key: Unique Application Performance Monitoring trace identifier (traceId).
|
173
173
|
"""
|
174
174
|
__args__ = dict()
|
@@ -221,10 +221,10 @@ def get_trace_snapshot_data_output(apm_domain_id: Optional[pulumi.Input[str]] =
|
|
221
221
|
<!--End PulumiCodeChooser -->
|
222
222
|
|
223
223
|
|
224
|
-
:param str apm_domain_id: The APM Domain ID the
|
225
|
-
:param bool is_summarized: If enabled,
|
224
|
+
:param str apm_domain_id: The APM Domain ID for the intended request.
|
225
|
+
:param bool is_summarized: If enabled, only span level details are sent.
|
226
226
|
:param str snapshot_time: Epoch time of snapshot.
|
227
|
-
:param str thread_id: Thread
|
227
|
+
:param str thread_id: Thread ID for which snapshots need to be retrieved. This identifier of a thread is a long positive number generated when a thread is created.
|
228
228
|
:param str trace_key: Unique Application Performance Monitoring trace identifier (traceId).
|
229
229
|
"""
|
230
230
|
...
|
pulumi_oci/apmtraces/outputs.py
CHANGED
@@ -189,6 +189,7 @@ class GetTraceSpanResult(dict):
|
|
189
189
|
operation_name: str,
|
190
190
|
parent_span_key: str,
|
191
191
|
service_name: str,
|
192
|
+
source_name: str,
|
192
193
|
tags: Sequence['outputs.GetTraceSpanTagResult'],
|
193
194
|
time_ended: str,
|
194
195
|
time_started: str,
|
@@ -202,6 +203,7 @@ class GetTraceSpanResult(dict):
|
|
202
203
|
:param str operation_name: Span name associated with the trace. This is usually the method or URI of the request.
|
203
204
|
:param str parent_span_key: Unique parent identifier for the span if one exists. For root spans this will be null.
|
204
205
|
:param str service_name: Service name associated with the span.
|
206
|
+
:param str source_name: Source of span (spans, syn_spans).
|
205
207
|
:param Sequence['GetTraceSpanTagArgs'] tags: List of tags associated with the span.
|
206
208
|
:param str time_ended: Span end time. Timestamp when the span was completed.
|
207
209
|
:param str time_started: Span start time. Timestamp when the span was started.
|
@@ -215,6 +217,7 @@ class GetTraceSpanResult(dict):
|
|
215
217
|
pulumi.set(__self__, "operation_name", operation_name)
|
216
218
|
pulumi.set(__self__, "parent_span_key", parent_span_key)
|
217
219
|
pulumi.set(__self__, "service_name", service_name)
|
220
|
+
pulumi.set(__self__, "source_name", source_name)
|
218
221
|
pulumi.set(__self__, "tags", tags)
|
219
222
|
pulumi.set(__self__, "time_ended", time_ended)
|
220
223
|
pulumi.set(__self__, "time_started", time_started)
|
@@ -284,6 +287,14 @@ class GetTraceSpanResult(dict):
|
|
284
287
|
"""
|
285
288
|
return pulumi.get(self, "service_name")
|
286
289
|
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="sourceName")
|
292
|
+
def source_name(self) -> str:
|
293
|
+
"""
|
294
|
+
Source of span (spans, syn_spans).
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "source_name")
|
297
|
+
|
287
298
|
@property
|
288
299
|
@pulumi.getter
|
289
300
|
def tags(self) -> Sequence['outputs.GetTraceSpanTagResult']:
|
@@ -320,15 +331,26 @@ class GetTraceSpanResult(dict):
|
|
320
331
|
@pulumi.output_type
|
321
332
|
class GetTraceSpanLogResult(dict):
|
322
333
|
def __init__(__self__, *,
|
334
|
+
event_name: str,
|
323
335
|
span_logs: Sequence['outputs.GetTraceSpanLogSpanLogResult'],
|
324
336
|
time_created: str):
|
325
337
|
"""
|
338
|
+
:param str event_name: Name of the event for which the log is created.
|
326
339
|
:param Sequence['GetTraceSpanLogSpanLogArgs'] span_logs: List of logs associated with the span at the given timestamp.
|
327
340
|
:param str time_created: Timestamp at which the log is created.
|
328
341
|
"""
|
342
|
+
pulumi.set(__self__, "event_name", event_name)
|
329
343
|
pulumi.set(__self__, "span_logs", span_logs)
|
330
344
|
pulumi.set(__self__, "time_created", time_created)
|
331
345
|
|
346
|
+
@property
|
347
|
+
@pulumi.getter(name="eventName")
|
348
|
+
def event_name(self) -> str:
|
349
|
+
"""
|
350
|
+
Name of the event for which the log is created.
|
351
|
+
"""
|
352
|
+
return pulumi.get(self, "event_name")
|
353
|
+
|
332
354
|
@property
|
333
355
|
@pulumi.getter(name="spanLogs")
|
334
356
|
def span_logs(self) -> Sequence['outputs.GetTraceSpanLogSpanLogResult']:
|
pulumi_oci/database/_inputs.py
CHANGED
@@ -1778,9 +1778,9 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
|
|
1778
1778
|
vault_id: Optional[pulumi.Input[str]] = None):
|
1779
1779
|
"""
|
1780
1780
|
:param pulumi.Input[str] id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
1781
|
-
:param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
1781
|
+
:param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
1782
1782
|
:param pulumi.Input[str] time_activated: The date and time the kms key activated.
|
1783
|
-
:param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
1783
|
+
:param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
1784
1784
|
"""
|
1785
1785
|
if id is not None:
|
1786
1786
|
pulumi.set(__self__, "id", id)
|
@@ -1807,7 +1807,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
|
|
1807
1807
|
@pulumi.getter(name="kmsKeyVersionId")
|
1808
1808
|
def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
|
1809
1809
|
"""
|
1810
|
-
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
1810
|
+
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
1811
1811
|
"""
|
1812
1812
|
return pulumi.get(self, "kms_key_version_id")
|
1813
1813
|
|
@@ -1831,7 +1831,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
|
|
1831
1831
|
@pulumi.getter(name="vaultId")
|
1832
1832
|
def vault_id(self) -> Optional[pulumi.Input[str]]:
|
1833
1833
|
"""
|
1834
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
1834
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
1835
1835
|
"""
|
1836
1836
|
return pulumi.get(self, "vault_id")
|
1837
1837
|
|