pulumi-oci 1.23.0a1707980719__py3-none-any.whl → 1.24.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 +8 -0
- pulumi_oci/core/_inputs.py +6 -6
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +6 -6
- pulumi_oci/database/_inputs.py +49 -1
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/outputs.py +128 -4
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +749 -0
- pulumi_oci/dataintegration/get_workspace_application_schedule.py +316 -0
- pulumi_oci/dataintegration/get_workspace_application_schedules.py +230 -0
- pulumi_oci/dataintegration/outputs.py +2826 -912
- pulumi_oci/dataintegration/workspace_application_schedule.py +926 -0
- pulumi_oci/datascience/_inputs.py +204 -0
- pulumi_oci/datascience/get_job.py +14 -1
- pulumi_oci/datascience/get_job_run.py +14 -1
- pulumi_oci/datascience/get_model_version_set.py +14 -1
- pulumi_oci/datascience/get_private_endpoint.py +14 -1
- pulumi_oci/datascience/get_project.py +14 -1
- pulumi_oci/datascience/job.py +63 -0
- pulumi_oci/datascience/job_run.py +63 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +549 -0
- pulumi_oci/datascience/private_endpoint.py +28 -0
- pulumi_oci/datascience/project.py +28 -0
- pulumi_oci/loganalytics/_inputs.py +80 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +18 -1
- pulumi_oci/loganalytics/get_log_analytics_entity.py +28 -1
- pulumi_oci/loganalytics/get_log_analytics_entity_topology.py +19 -2
- pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py +27 -1
- pulumi_oci/loganalytics/get_namespace_rules.py +25 -5
- pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py +18 -1
- pulumi_oci/loganalytics/log_analytics_entity.py +112 -0
- pulumi_oci/loganalytics/log_analytics_object_collection_rule.py +98 -0
- pulumi_oci/loganalytics/outputs.py +271 -4
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/RECORD +40 -37
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/top_level.txt +0 -0
@@ -11,6 +11,8 @@ from .. import _utilities
|
|
11
11
|
from . import outputs
|
12
12
|
|
13
13
|
__all__ = [
|
14
|
+
'LogAnalyticsEntityMetadata',
|
15
|
+
'LogAnalyticsEntityMetadataItem',
|
14
16
|
'LogAnalyticsImportCustomContentChangeList',
|
15
17
|
'LogAnalyticsObjectCollectionRuleOverride',
|
16
18
|
'LogAnalyticsPreferencesManagementItem',
|
@@ -25,6 +27,10 @@ __all__ = [
|
|
25
27
|
'GetLogAnalyticsEntitiesFilterResult',
|
26
28
|
'GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionResult',
|
27
29
|
'GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult',
|
30
|
+
'GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataResult',
|
31
|
+
'GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataItemResult',
|
32
|
+
'GetLogAnalyticsEntityMetadataResult',
|
33
|
+
'GetLogAnalyticsEntityMetadataItemResult',
|
28
34
|
'GetLogAnalyticsEntityTopologyItemResult',
|
29
35
|
'GetLogAnalyticsEntityTopologyItemLinkResult',
|
30
36
|
'GetLogAnalyticsEntityTopologyItemLinkItemResult',
|
@@ -78,6 +84,68 @@ __all__ = [
|
|
78
84
|
'GetNamespacesNamespaceCollectionItemResult',
|
79
85
|
]
|
80
86
|
|
87
|
+
@pulumi.output_type
|
88
|
+
class LogAnalyticsEntityMetadata(dict):
|
89
|
+
def __init__(__self__, *,
|
90
|
+
items: Optional[Sequence['outputs.LogAnalyticsEntityMetadataItem']] = None):
|
91
|
+
"""
|
92
|
+
:param Sequence['LogAnalyticsEntityMetadataItemArgs'] items: (Updatable) An array of entity metadata details.
|
93
|
+
"""
|
94
|
+
if items is not None:
|
95
|
+
pulumi.set(__self__, "items", items)
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter
|
99
|
+
def items(self) -> Optional[Sequence['outputs.LogAnalyticsEntityMetadataItem']]:
|
100
|
+
"""
|
101
|
+
(Updatable) An array of entity metadata details.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "items")
|
104
|
+
|
105
|
+
|
106
|
+
@pulumi.output_type
|
107
|
+
class LogAnalyticsEntityMetadataItem(dict):
|
108
|
+
def __init__(__self__, *,
|
109
|
+
name: Optional[str] = None,
|
110
|
+
type: Optional[str] = None,
|
111
|
+
value: Optional[str] = None):
|
112
|
+
"""
|
113
|
+
:param str name: (Updatable) Log analytics entity name.
|
114
|
+
:param str type: (Updatable) The metadata type.
|
115
|
+
:param str value: (Updatable) The metadata value.
|
116
|
+
"""
|
117
|
+
if name is not None:
|
118
|
+
pulumi.set(__self__, "name", name)
|
119
|
+
if type is not None:
|
120
|
+
pulumi.set(__self__, "type", type)
|
121
|
+
if value is not None:
|
122
|
+
pulumi.set(__self__, "value", value)
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter
|
126
|
+
def name(self) -> Optional[str]:
|
127
|
+
"""
|
128
|
+
(Updatable) Log analytics entity name.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "name")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter
|
134
|
+
def type(self) -> Optional[str]:
|
135
|
+
"""
|
136
|
+
(Updatable) The metadata type.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "type")
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter
|
142
|
+
def value(self) -> Optional[str]:
|
143
|
+
"""
|
144
|
+
(Updatable) The metadata value.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "value")
|
147
|
+
|
148
|
+
|
81
149
|
@pulumi.output_type
|
82
150
|
class LogAnalyticsImportCustomContentChangeList(dict):
|
83
151
|
@staticmethod
|
@@ -987,11 +1055,17 @@ class GetLogAnalyticsEntitiesFilterResult(dict):
|
|
987
1055
|
class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionResult(dict):
|
988
1056
|
def __init__(__self__, *,
|
989
1057
|
items: Sequence['outputs.GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult']):
|
1058
|
+
"""
|
1059
|
+
:param Sequence['GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemArgs'] items: An array of entity metadata.
|
1060
|
+
"""
|
990
1061
|
pulumi.set(__self__, "items", items)
|
991
1062
|
|
992
1063
|
@property
|
993
1064
|
@pulumi.getter
|
994
1065
|
def items(self) -> Sequence['outputs.GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult']:
|
1066
|
+
"""
|
1067
|
+
An array of entity metadata.
|
1068
|
+
"""
|
995
1069
|
return pulumi.get(self, "items")
|
996
1070
|
|
997
1071
|
|
@@ -1011,12 +1085,14 @@ class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult(dict):
|
|
1011
1085
|
management_agent_compartment_id: str,
|
1012
1086
|
management_agent_display_name: str,
|
1013
1087
|
management_agent_id: str,
|
1088
|
+
metadatas: Sequence['outputs.GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataResult'],
|
1014
1089
|
name: str,
|
1015
1090
|
namespace: str,
|
1016
1091
|
properties: Mapping[str, Any],
|
1017
1092
|
source_id: str,
|
1018
1093
|
state: str,
|
1019
1094
|
time_created: str,
|
1095
|
+
time_last_discovered: str,
|
1020
1096
|
time_updated: str,
|
1021
1097
|
timezone_region: str):
|
1022
1098
|
"""
|
@@ -1033,12 +1109,14 @@ class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult(dict):
|
|
1033
1109
|
:param str management_agent_compartment_id: Management agent (management-agents resource kind) compartment OCID
|
1034
1110
|
:param str management_agent_display_name: Management agent (management-agents resource kind) display name
|
1035
1111
|
:param str management_agent_id: The OCID of the Management Agent.
|
1112
|
+
:param Sequence['GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataArgs'] metadatas: Details of entity metadata information.
|
1036
1113
|
:param str name: A filter to return only log analytics entities whose name matches the entire name given. The match is case-insensitive.
|
1037
1114
|
:param str namespace: The Logging Analytics namespace used for the request.
|
1038
1115
|
:param Mapping[str, Any] properties: The name/value pairs for parameter values to be used in file patterns specified in log sources.
|
1039
1116
|
:param str source_id: A filter to return only log analytics entities whose sourceId matches the sourceId given.
|
1040
1117
|
:param str state: A filter to return only those log analytics entities with the specified lifecycle state. The state value is case-insensitive.
|
1041
1118
|
:param str time_created: The date and time the resource was created, in the format defined by RFC3339.
|
1119
|
+
:param str time_last_discovered: The date and time the resource was last discovered, in the format defined by RFC3339.
|
1042
1120
|
:param str time_updated: The date and time the resource was last updated, in the format defined by RFC3339.
|
1043
1121
|
:param str timezone_region: The timezone region of the log analytics entity.
|
1044
1122
|
"""
|
@@ -1055,12 +1133,14 @@ class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult(dict):
|
|
1055
1133
|
pulumi.set(__self__, "management_agent_compartment_id", management_agent_compartment_id)
|
1056
1134
|
pulumi.set(__self__, "management_agent_display_name", management_agent_display_name)
|
1057
1135
|
pulumi.set(__self__, "management_agent_id", management_agent_id)
|
1136
|
+
pulumi.set(__self__, "metadatas", metadatas)
|
1058
1137
|
pulumi.set(__self__, "name", name)
|
1059
1138
|
pulumi.set(__self__, "namespace", namespace)
|
1060
1139
|
pulumi.set(__self__, "properties", properties)
|
1061
1140
|
pulumi.set(__self__, "source_id", source_id)
|
1062
1141
|
pulumi.set(__self__, "state", state)
|
1063
1142
|
pulumi.set(__self__, "time_created", time_created)
|
1143
|
+
pulumi.set(__self__, "time_last_discovered", time_last_discovered)
|
1064
1144
|
pulumi.set(__self__, "time_updated", time_updated)
|
1065
1145
|
pulumi.set(__self__, "timezone_region", timezone_region)
|
1066
1146
|
|
@@ -1168,6 +1248,14 @@ class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult(dict):
|
|
1168
1248
|
"""
|
1169
1249
|
return pulumi.get(self, "management_agent_id")
|
1170
1250
|
|
1251
|
+
@property
|
1252
|
+
@pulumi.getter
|
1253
|
+
def metadatas(self) -> Sequence['outputs.GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataResult']:
|
1254
|
+
"""
|
1255
|
+
Details of entity metadata information.
|
1256
|
+
"""
|
1257
|
+
return pulumi.get(self, "metadatas")
|
1258
|
+
|
1171
1259
|
@property
|
1172
1260
|
@pulumi.getter
|
1173
1261
|
def name(self) -> str:
|
@@ -1216,6 +1304,14 @@ class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult(dict):
|
|
1216
1304
|
"""
|
1217
1305
|
return pulumi.get(self, "time_created")
|
1218
1306
|
|
1307
|
+
@property
|
1308
|
+
@pulumi.getter(name="timeLastDiscovered")
|
1309
|
+
def time_last_discovered(self) -> str:
|
1310
|
+
"""
|
1311
|
+
The date and time the resource was last discovered, in the format defined by RFC3339.
|
1312
|
+
"""
|
1313
|
+
return pulumi.get(self, "time_last_discovered")
|
1314
|
+
|
1219
1315
|
@property
|
1220
1316
|
@pulumi.getter(name="timeUpdated")
|
1221
1317
|
def time_updated(self) -> str:
|
@@ -1233,6 +1329,122 @@ class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemResult(dict):
|
|
1233
1329
|
return pulumi.get(self, "timezone_region")
|
1234
1330
|
|
1235
1331
|
|
1332
|
+
@pulumi.output_type
|
1333
|
+
class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataResult(dict):
|
1334
|
+
def __init__(__self__, *,
|
1335
|
+
items: Sequence['outputs.GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataItemResult']):
|
1336
|
+
"""
|
1337
|
+
:param Sequence['GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataItemArgs'] items: An array of entity metadata.
|
1338
|
+
"""
|
1339
|
+
pulumi.set(__self__, "items", items)
|
1340
|
+
|
1341
|
+
@property
|
1342
|
+
@pulumi.getter
|
1343
|
+
def items(self) -> Sequence['outputs.GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataItemResult']:
|
1344
|
+
"""
|
1345
|
+
An array of entity metadata.
|
1346
|
+
"""
|
1347
|
+
return pulumi.get(self, "items")
|
1348
|
+
|
1349
|
+
|
1350
|
+
@pulumi.output_type
|
1351
|
+
class GetLogAnalyticsEntitiesLogAnalyticsEntityCollectionItemMetadataItemResult(dict):
|
1352
|
+
def __init__(__self__, *,
|
1353
|
+
name: str,
|
1354
|
+
type: str,
|
1355
|
+
value: str):
|
1356
|
+
"""
|
1357
|
+
:param str name: A filter to return only log analytics entities whose name matches the entire name given. The match is case-insensitive.
|
1358
|
+
:param str type: The metadata type.
|
1359
|
+
:param str value: The metadata value.
|
1360
|
+
"""
|
1361
|
+
pulumi.set(__self__, "name", name)
|
1362
|
+
pulumi.set(__self__, "type", type)
|
1363
|
+
pulumi.set(__self__, "value", value)
|
1364
|
+
|
1365
|
+
@property
|
1366
|
+
@pulumi.getter
|
1367
|
+
def name(self) -> str:
|
1368
|
+
"""
|
1369
|
+
A filter to return only log analytics entities whose name matches the entire name given. The match is case-insensitive.
|
1370
|
+
"""
|
1371
|
+
return pulumi.get(self, "name")
|
1372
|
+
|
1373
|
+
@property
|
1374
|
+
@pulumi.getter
|
1375
|
+
def type(self) -> str:
|
1376
|
+
"""
|
1377
|
+
The metadata type.
|
1378
|
+
"""
|
1379
|
+
return pulumi.get(self, "type")
|
1380
|
+
|
1381
|
+
@property
|
1382
|
+
@pulumi.getter
|
1383
|
+
def value(self) -> str:
|
1384
|
+
"""
|
1385
|
+
The metadata value.
|
1386
|
+
"""
|
1387
|
+
return pulumi.get(self, "value")
|
1388
|
+
|
1389
|
+
|
1390
|
+
@pulumi.output_type
|
1391
|
+
class GetLogAnalyticsEntityMetadataResult(dict):
|
1392
|
+
def __init__(__self__, *,
|
1393
|
+
items: Sequence['outputs.GetLogAnalyticsEntityMetadataItemResult']):
|
1394
|
+
"""
|
1395
|
+
:param Sequence['GetLogAnalyticsEntityMetadataItemArgs'] items: An array of entity metadata.
|
1396
|
+
"""
|
1397
|
+
pulumi.set(__self__, "items", items)
|
1398
|
+
|
1399
|
+
@property
|
1400
|
+
@pulumi.getter
|
1401
|
+
def items(self) -> Sequence['outputs.GetLogAnalyticsEntityMetadataItemResult']:
|
1402
|
+
"""
|
1403
|
+
An array of entity metadata.
|
1404
|
+
"""
|
1405
|
+
return pulumi.get(self, "items")
|
1406
|
+
|
1407
|
+
|
1408
|
+
@pulumi.output_type
|
1409
|
+
class GetLogAnalyticsEntityMetadataItemResult(dict):
|
1410
|
+
def __init__(__self__, *,
|
1411
|
+
name: str,
|
1412
|
+
type: str,
|
1413
|
+
value: str):
|
1414
|
+
"""
|
1415
|
+
:param str name: Log analytics entity name.
|
1416
|
+
:param str type: The metadata type.
|
1417
|
+
:param str value: The metadata value.
|
1418
|
+
"""
|
1419
|
+
pulumi.set(__self__, "name", name)
|
1420
|
+
pulumi.set(__self__, "type", type)
|
1421
|
+
pulumi.set(__self__, "value", value)
|
1422
|
+
|
1423
|
+
@property
|
1424
|
+
@pulumi.getter
|
1425
|
+
def name(self) -> str:
|
1426
|
+
"""
|
1427
|
+
Log analytics entity name.
|
1428
|
+
"""
|
1429
|
+
return pulumi.get(self, "name")
|
1430
|
+
|
1431
|
+
@property
|
1432
|
+
@pulumi.getter
|
1433
|
+
def type(self) -> str:
|
1434
|
+
"""
|
1435
|
+
The metadata type.
|
1436
|
+
"""
|
1437
|
+
return pulumi.get(self, "type")
|
1438
|
+
|
1439
|
+
@property
|
1440
|
+
@pulumi.getter
|
1441
|
+
def value(self) -> str:
|
1442
|
+
"""
|
1443
|
+
The metadata value.
|
1444
|
+
"""
|
1445
|
+
return pulumi.get(self, "value")
|
1446
|
+
|
1447
|
+
|
1236
1448
|
@pulumi.output_type
|
1237
1449
|
class GetLogAnalyticsEntityTopologyItemResult(dict):
|
1238
1450
|
def __init__(__self__, *,
|
@@ -1267,7 +1479,7 @@ class GetLogAnalyticsEntityTopologyItemLinkResult(dict):
|
|
1267
1479
|
def __init__(__self__, *,
|
1268
1480
|
items: Sequence['outputs.GetLogAnalyticsEntityTopologyItemLinkItemResult']):
|
1269
1481
|
"""
|
1270
|
-
:param Sequence['GetLogAnalyticsEntityTopologyItemLinkItemArgs'] items:
|
1482
|
+
:param Sequence['GetLogAnalyticsEntityTopologyItemLinkItemArgs'] items: An array of entity metadata.
|
1271
1483
|
"""
|
1272
1484
|
pulumi.set(__self__, "items", items)
|
1273
1485
|
|
@@ -1275,7 +1487,7 @@ class GetLogAnalyticsEntityTopologyItemLinkResult(dict):
|
|
1275
1487
|
@pulumi.getter
|
1276
1488
|
def items(self) -> Sequence['outputs.GetLogAnalyticsEntityTopologyItemLinkItemResult']:
|
1277
1489
|
"""
|
1278
|
-
|
1490
|
+
An array of entity metadata.
|
1279
1491
|
"""
|
1280
1492
|
return pulumi.get(self, "items")
|
1281
1493
|
|
@@ -1314,7 +1526,7 @@ class GetLogAnalyticsEntityTopologyItemNodeResult(dict):
|
|
1314
1526
|
def __init__(__self__, *,
|
1315
1527
|
items: Sequence['outputs.GetLogAnalyticsEntityTopologyItemNodeItemResult']):
|
1316
1528
|
"""
|
1317
|
-
:param Sequence['GetLogAnalyticsEntityTopologyItemNodeItemArgs'] items:
|
1529
|
+
:param Sequence['GetLogAnalyticsEntityTopologyItemNodeItemArgs'] items: An array of entity metadata.
|
1318
1530
|
"""
|
1319
1531
|
pulumi.set(__self__, "items", items)
|
1320
1532
|
|
@@ -1322,7 +1534,7 @@ class GetLogAnalyticsEntityTopologyItemNodeResult(dict):
|
|
1322
1534
|
@pulumi.getter
|
1323
1535
|
def items(self) -> Sequence['outputs.GetLogAnalyticsEntityTopologyItemNodeItemResult']:
|
1324
1536
|
"""
|
1325
|
-
|
1537
|
+
An array of entity metadata.
|
1326
1538
|
"""
|
1327
1539
|
return pulumi.get(self, "items")
|
1328
1540
|
|
@@ -1745,12 +1957,14 @@ class GetLogAnalyticsObjectCollectionRulesLogAnalyticsObjectCollectionRuleCollec
|
|
1745
1957
|
freeform_tags: Mapping[str, Any],
|
1746
1958
|
id: str,
|
1747
1959
|
is_enabled: bool,
|
1960
|
+
is_force_historic_collection: bool,
|
1748
1961
|
lifecycle_details: str,
|
1749
1962
|
log_group_id: str,
|
1750
1963
|
log_set: str,
|
1751
1964
|
log_set_ext_regex: str,
|
1752
1965
|
log_set_key: str,
|
1753
1966
|
log_source_name: str,
|
1967
|
+
log_type: str,
|
1754
1968
|
name: str,
|
1755
1969
|
namespace: str,
|
1756
1970
|
object_name_filters: Sequence[str],
|
@@ -1773,12 +1987,14 @@ class GetLogAnalyticsObjectCollectionRulesLogAnalyticsObjectCollectionRuleCollec
|
|
1773
1987
|
: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"}`
|
1774
1988
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this rule.
|
1775
1989
|
:param bool is_enabled: Whether or not this rule is currently enabled.
|
1990
|
+
:param bool is_force_historic_collection: Flag to allow historic collection if poll period overlaps with existing ACTIVE collection rule
|
1776
1991
|
:param str lifecycle_details: A detailed status of the life cycle state.
|
1777
1992
|
:param str log_group_id: Logging Analytics Log group OCID to associate the processed logs with.
|
1778
1993
|
:param str log_set: The logSet to be associated with the processed logs. The logSet feature can be used by customers with high volume of data and this feature has to be enabled for a given tenancy prior to its usage. When logSetExtRegex value is provided, it will take precedence over this logSet value and logSet will be computed dynamically using logSetKey and logSetExtRegex.
|
1779
1994
|
:param str log_set_ext_regex: The regex to be applied against given logSetKey. Regex has to be in string escaped format.
|
1780
1995
|
:param str log_set_key: An optional parameter to indicate from where the logSet to be extracted using logSetExtRegex. Default value is OBJECT_PATH (e.g. /n/<namespace>/b/<bucketname>/o/<objectname>).
|
1781
1996
|
:param str log_source_name: Name of the Logging Analytics Source to use for the processing.
|
1997
|
+
:param str log_type: Type of files/objects in this object collection rule.
|
1782
1998
|
:param str name: A filter to return rules only matching with this name.
|
1783
1999
|
:param str namespace: The Logging Analytics namespace used for the request.
|
1784
2000
|
:param Sequence[str] object_name_filters: When the filters are provided, only the objects matching the filters are picked up for processing. The matchType supported is exact match and accommodates wildcard "*". For more information on filters, see [Event Filters](https://docs.oracle.com/en-us/iaas/Content/Events/Concepts/filterevents.htm).
|
@@ -1801,12 +2017,14 @@ class GetLogAnalyticsObjectCollectionRulesLogAnalyticsObjectCollectionRuleCollec
|
|
1801
2017
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1802
2018
|
pulumi.set(__self__, "id", id)
|
1803
2019
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
2020
|
+
pulumi.set(__self__, "is_force_historic_collection", is_force_historic_collection)
|
1804
2021
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
1805
2022
|
pulumi.set(__self__, "log_group_id", log_group_id)
|
1806
2023
|
pulumi.set(__self__, "log_set", log_set)
|
1807
2024
|
pulumi.set(__self__, "log_set_ext_regex", log_set_ext_regex)
|
1808
2025
|
pulumi.set(__self__, "log_set_key", log_set_key)
|
1809
2026
|
pulumi.set(__self__, "log_source_name", log_source_name)
|
2027
|
+
pulumi.set(__self__, "log_type", log_type)
|
1810
2028
|
pulumi.set(__self__, "name", name)
|
1811
2029
|
pulumi.set(__self__, "namespace", namespace)
|
1812
2030
|
pulumi.set(__self__, "object_name_filters", object_name_filters)
|
@@ -1892,6 +2110,14 @@ class GetLogAnalyticsObjectCollectionRulesLogAnalyticsObjectCollectionRuleCollec
|
|
1892
2110
|
"""
|
1893
2111
|
return pulumi.get(self, "is_enabled")
|
1894
2112
|
|
2113
|
+
@property
|
2114
|
+
@pulumi.getter(name="isForceHistoricCollection")
|
2115
|
+
def is_force_historic_collection(self) -> bool:
|
2116
|
+
"""
|
2117
|
+
Flag to allow historic collection if poll period overlaps with existing ACTIVE collection rule
|
2118
|
+
"""
|
2119
|
+
return pulumi.get(self, "is_force_historic_collection")
|
2120
|
+
|
1895
2121
|
@property
|
1896
2122
|
@pulumi.getter(name="lifecycleDetails")
|
1897
2123
|
def lifecycle_details(self) -> str:
|
@@ -1940,6 +2166,14 @@ class GetLogAnalyticsObjectCollectionRulesLogAnalyticsObjectCollectionRuleCollec
|
|
1940
2166
|
"""
|
1941
2167
|
return pulumi.get(self, "log_source_name")
|
1942
2168
|
|
2169
|
+
@property
|
2170
|
+
@pulumi.getter(name="logType")
|
2171
|
+
def log_type(self) -> str:
|
2172
|
+
"""
|
2173
|
+
Type of files/objects in this object collection rule.
|
2174
|
+
"""
|
2175
|
+
return pulumi.get(self, "log_type")
|
2176
|
+
|
1943
2177
|
@property
|
1944
2178
|
@pulumi.getter
|
1945
2179
|
def name(self) -> str:
|
@@ -2918,6 +3152,7 @@ class GetNamespaceRulesRuleSummaryCollectionItemResult(dict):
|
|
2918
3152
|
kind: str,
|
2919
3153
|
last_execution_status: str,
|
2920
3154
|
state: str,
|
3155
|
+
target_service: str,
|
2921
3156
|
time_created: str,
|
2922
3157
|
time_last_executed: str,
|
2923
3158
|
time_updated: str):
|
@@ -2932,6 +3167,7 @@ class GetNamespaceRulesRuleSummaryCollectionItemResult(dict):
|
|
2932
3167
|
:param str kind: The rule kind used for filtering. Only rules of the specified kind will be returned.
|
2933
3168
|
:param str last_execution_status: The most recent task execution status.
|
2934
3169
|
:param str state: The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
|
3170
|
+
:param str target_service: The target service to use for filtering.
|
2935
3171
|
:param str time_created: The date and time the resource was created, in the format defined by RFC3339.
|
2936
3172
|
:param str time_last_executed: The date and time the scheduled task last executed, in the format defined by RFC3339.
|
2937
3173
|
:param str time_updated: The date and time the resource was last updated, in the format defined by RFC3339.
|
@@ -2946,6 +3182,7 @@ class GetNamespaceRulesRuleSummaryCollectionItemResult(dict):
|
|
2946
3182
|
pulumi.set(__self__, "kind", kind)
|
2947
3183
|
pulumi.set(__self__, "last_execution_status", last_execution_status)
|
2948
3184
|
pulumi.set(__self__, "state", state)
|
3185
|
+
pulumi.set(__self__, "target_service", target_service)
|
2949
3186
|
pulumi.set(__self__, "time_created", time_created)
|
2950
3187
|
pulumi.set(__self__, "time_last_executed", time_last_executed)
|
2951
3188
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -3030,6 +3267,14 @@ class GetNamespaceRulesRuleSummaryCollectionItemResult(dict):
|
|
3030
3267
|
"""
|
3031
3268
|
return pulumi.get(self, "state")
|
3032
3269
|
|
3270
|
+
@property
|
3271
|
+
@pulumi.getter(name="targetService")
|
3272
|
+
def target_service(self) -> str:
|
3273
|
+
"""
|
3274
|
+
The target service to use for filtering.
|
3275
|
+
"""
|
3276
|
+
return pulumi.get(self, "target_service")
|
3277
|
+
|
3033
3278
|
@property
|
3034
3279
|
@pulumi.getter(name="timeCreated")
|
3035
3280
|
def time_created(self) -> str:
|
@@ -3829,33 +4074,47 @@ class GetNamespaceStorageOverlappingRecallsOverlappingRecallCollectionResult(dic
|
|
3829
4074
|
@pulumi.output_type
|
3830
4075
|
class GetNamespaceStorageOverlappingRecallsOverlappingRecallCollectionItemResult(dict):
|
3831
4076
|
def __init__(__self__, *,
|
4077
|
+
collection_id: str,
|
3832
4078
|
created_by: str,
|
3833
4079
|
log_sets: str,
|
3834
4080
|
purpose: str,
|
3835
4081
|
query_string: str,
|
4082
|
+
recall_id: str,
|
3836
4083
|
status: str,
|
3837
4084
|
time_data_ended: str,
|
3838
4085
|
time_data_started: str,
|
3839
4086
|
time_started: str):
|
3840
4087
|
"""
|
4088
|
+
:param str collection_id: This is the id of the associated recalled data collection
|
3841
4089
|
:param str created_by: This is the user who initiated the recall request
|
3842
4090
|
:param str log_sets: This is the list of logsets associated with this recall
|
3843
4091
|
:param str purpose: This is the purpose of the recall
|
3844
4092
|
:param str query_string: This is the query associated with the recall
|
4093
|
+
:param str recall_id: This is the id for the recall request
|
3845
4094
|
:param str status: This is the status of the recall
|
3846
4095
|
:param str time_data_ended: This is the end of the time range for recalled data
|
3847
4096
|
:param str time_data_started: This is the start of the time range for recalled data
|
3848
4097
|
:param str time_started: This is the time when the recall operation was started for this recall request
|
3849
4098
|
"""
|
4099
|
+
pulumi.set(__self__, "collection_id", collection_id)
|
3850
4100
|
pulumi.set(__self__, "created_by", created_by)
|
3851
4101
|
pulumi.set(__self__, "log_sets", log_sets)
|
3852
4102
|
pulumi.set(__self__, "purpose", purpose)
|
3853
4103
|
pulumi.set(__self__, "query_string", query_string)
|
4104
|
+
pulumi.set(__self__, "recall_id", recall_id)
|
3854
4105
|
pulumi.set(__self__, "status", status)
|
3855
4106
|
pulumi.set(__self__, "time_data_ended", time_data_ended)
|
3856
4107
|
pulumi.set(__self__, "time_data_started", time_data_started)
|
3857
4108
|
pulumi.set(__self__, "time_started", time_started)
|
3858
4109
|
|
4110
|
+
@property
|
4111
|
+
@pulumi.getter(name="collectionId")
|
4112
|
+
def collection_id(self) -> str:
|
4113
|
+
"""
|
4114
|
+
This is the id of the associated recalled data collection
|
4115
|
+
"""
|
4116
|
+
return pulumi.get(self, "collection_id")
|
4117
|
+
|
3859
4118
|
@property
|
3860
4119
|
@pulumi.getter(name="createdBy")
|
3861
4120
|
def created_by(self) -> str:
|
@@ -3888,6 +4147,14 @@ class GetNamespaceStorageOverlappingRecallsOverlappingRecallCollectionItemResult
|
|
3888
4147
|
"""
|
3889
4148
|
return pulumi.get(self, "query_string")
|
3890
4149
|
|
4150
|
+
@property
|
4151
|
+
@pulumi.getter(name="recallId")
|
4152
|
+
def recall_id(self) -> str:
|
4153
|
+
"""
|
4154
|
+
This is the id for the recall request
|
4155
|
+
"""
|
4156
|
+
return pulumi.get(self, "recall_id")
|
4157
|
+
|
3891
4158
|
@property
|
3892
4159
|
@pulumi.getter
|
3893
4160
|
def status(self) -> str:
|