pulumi-oci 1.23.0a1707980719__py3-none-any.whl → 1.24.0a1708066165__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.
@@ -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: Array of log analytics entity summary.
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
- Array of log analytics entity summary.
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: Array of log analytics entity summary.
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
- Array of log analytics entity summary.
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:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_oci
3
- Version: 1.23.0a1707980719
3
+ Version: 1.24.0a1708066165
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -621,13 +621,13 @@ pulumi_oci/core/volume_group.py,sha256=bBhHcDzcJjVSEpcP5mVGF_f-xIje1147dT6RoJSCw
621
621
  pulumi_oci/core/volume_group_backup.py,sha256=8i6ngsjJFE6RMR-o033H7A9cJUKAo4NNeebq4SkUBqs,44102
622
622
  pulumi_oci/core/vtap.py,sha256=O5lYW2nX68cNRRVfZGX3LfDTrbvRhYortK3m5S59bFk,61637
623
623
  pulumi_oci/database/__init__.py,sha256=ewxEi8ovc0VRo9yzJwFULMbKYCCi_8Kt6cvHQxtNfAs,8552
624
- pulumi_oci/database/_inputs.py,sha256=JVfmzd0uFgsGWUZuTCkgcE2Un21ckkjIeiTZ1Onjs_o,644931
624
+ pulumi_oci/database/_inputs.py,sha256=fIEWuYYpJXuYeEpbpvA9AlOiBhdWcjf64kdEsiez8RQ,648353
625
625
  pulumi_oci/database/application_vip.py,sha256=P9mcqYNk0XpLb0Qx8KhOqTkdR7cCftcUI1MEsXF8B0M,29161
626
626
  pulumi_oci/database/autonomous_container_database.py,sha256=Ux83O3kHRvmcXaS28M2K36vEpMRNHq6Wx1RUAFjhV8Y,143813
627
627
  pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=qTipMMFeR15FBAjnSNTcEo2_6S673vtgLUZlNuArRc4,69847
628
628
  pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=4B_-6MnN2h-N28x1FX8lMlZ-E6Y5egP0x8wn2tztUvA,18091
629
629
  pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=dAjgy90q3k5T6dtvfFzJFXQrKECSyK08MCECei2BJ1k,12249
630
- pulumi_oci/database/autonomous_database.py,sha256=KMyt0kx_KhMwb180Of3PKM_B0yH0VVZAw9-w_VfClhk,405899
630
+ pulumi_oci/database/autonomous_database.py,sha256=zvj0MlNTJ5Temztqb3uMLpPhORA0JDV4tnCZYcjLeAY,409736
631
631
  pulumi_oci/database/autonomous_database_backup.py,sha256=uPNTd62MBVJA7rVm-khKDSe65y8MVPmbdvD3B2bp5UU,42449
632
632
  pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=u4nkO-dH_cL8ovTaMiTBeGAKVZk2mf5xnXRi7Xvqr3s,18661
633
633
  pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=asn2msSPYMDgERjsAUEBCNiuJZgrcOigEehRFXuAhoo,15601
@@ -681,7 +681,7 @@ pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=1
681
681
  pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=JfSDjPGwNFXVo_ucv_zqAuQSsBcB-Mr56tfscl2x9Xk,7098
682
682
  pulumi_oci/database/get_autonomous_container_databases.py,sha256=-roYgKfuCtoXd3-Ua8xU_GLKhAIbxp4vIHLxCtwfvik,17166
683
683
  pulumi_oci/database/get_autonomous_container_patches.py,sha256=caDZJ9xv3rAY-2wjv3YkZvpqx8IjskYncMz65K32Z18,8262
684
- pulumi_oci/database/get_autonomous_database.py,sha256=HkNU1FcNjAVUQUMQEdOHwjKF78dwULuZjKxOzP-IRLc,95171
684
+ pulumi_oci/database/get_autonomous_database.py,sha256=4R7vaJ0TB0G2C_q6t1ALp9lq3MsbGiUoKTF4K0PbRG8,96113
685
685
  pulumi_oci/database/get_autonomous_database_backup.py,sha256=QL031YTpvBfOaypQAHYKsnEwyszqTSg84eOhDpXebJg,17580
686
686
  pulumi_oci/database/get_autonomous_database_backups.py,sha256=U14N91XPWnwPjvRnHkzbXsjKPv0BTuuhQJCgH8n4uPk,10280
687
687
  pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=ln-sF-2dSMeyICofLhlwn7H6NUPW7jixhVrtqTpiiX8,13621
@@ -796,7 +796,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=QTorrG5VCOZqnrtH4PYFls9qzRBJTBl2Fs
796
796
  pulumi_oci/database/key_store.py,sha256=rP758EVbJPpd2s5sP2jl5_llSNpwDWlzAoltyvlkHIk,25558
797
797
  pulumi_oci/database/maintenance_run.py,sha256=EGhqjFcEo1glweVH40NhhVM8FUeY-3s8TelxokOzKz0,58618
798
798
  pulumi_oci/database/oneoff_patch.py,sha256=hA-8mcfhvY2hLQJrZvkLh3wPcevVVpFIhddJ42-FHb4,38498
799
- pulumi_oci/database/outputs.py,sha256=oJmVwjp8_1_oCIzl90UJCflpQfJOIqLHPcmq6mApOkM,2032477
799
+ pulumi_oci/database/outputs.py,sha256=XpbMEfQnLOcuQoJEgT7JY-ylix9pD7E3_7q1NIivXOI,2040354
800
800
  pulumi_oci/database/pluggable_database.py,sha256=Mj7YVE3zQMVzH0Wt607RliehTqqqxVSHywLdMru6TpY,71691
801
801
  pulumi_oci/database/pluggable_database_managements_management.py,sha256=cP5Pr2patKYJJPbkuL8wl2zMTz-3Azk9fRHFPqYCIaw,52501
802
802
  pulumi_oci/database/pluggable_databases_local_clone.py,sha256=uBP5KxZWVevTxD8P3u-EIgw88BWWdh2N2SLTpx7CMzc,50472
@@ -1833,17 +1833,17 @@ pulumi_oci/loadbalancer/path_route_set.py,sha256=zsNFrjy8RpEVcEhR6IN2G4RdtBZp5_X
1833
1833
  pulumi_oci/loadbalancer/rule_set.py,sha256=2OignCA4wrVK4jje3mn3SYe4KGohZm_jqWZU0a2KlmM,18834
1834
1834
  pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=fpMhuJWdtknTC3sDUzdBO0DReWEUa7f6Axyh25BmDnE,16597
1835
1835
  pulumi_oci/loganalytics/__init__.py,sha256=i6Iw8rHB0By3JmTEm29LRUWQWRtyBdcf1PE8aCo6zMo,2184
1836
- pulumi_oci/loganalytics/_inputs.py,sha256=mqAXDCSp2wsBMBY5vZU7f1SPbuWSrNpg3BZbZzYz40s,48063
1836
+ pulumi_oci/loganalytics/_inputs.py,sha256=ErWlUSE7hjz_i3m6BHWjbNmAsaNLykacQ57TlQ98C1Y,50705
1837
1837
  pulumi_oci/loganalytics/get_log_analytics_categories_list.py,sha256=PBwLomCAbbXCBKPH61KMqPIGnuYg3Z3XOA7s9gI_6IU,7993
1838
1838
  pulumi_oci/loganalytics/get_log_analytics_category.py,sha256=GeMJEK1EXDur-2AjJ1vSZWDBiobXkv3NS8m4N51bnWM,6405
1839
- pulumi_oci/loganalytics/get_log_analytics_entities.py,sha256=BxGECkjUp1_RXLFk553yT6JVMA_CwWYM4eC9sdUBq1Q,18610
1839
+ pulumi_oci/loganalytics/get_log_analytics_entities.py,sha256=sE2C8VrvUpf8ViNf-sfq3c1At5Be3R2WJXV7mS4xOd4,20009
1840
1840
  pulumi_oci/loganalytics/get_log_analytics_entities_summary.py,sha256=j0Qu09IN9l73qIk1LgqUMBpztWX5gIUzyBfY5-ApZqk,7232
1841
- pulumi_oci/loganalytics/get_log_analytics_entity.py,sha256=0Exy6Q5UA7hOK9u4mYEt1zFevEXMwyUkM9ph_d2EIIo,16618
1842
- pulumi_oci/loganalytics/get_log_analytics_entity_topology.py,sha256=56rqA0vVu0jaiIhv8Yue5R5MdHkScYt9_83V-cFxC60,6760
1841
+ pulumi_oci/loganalytics/get_log_analytics_entity.py,sha256=e0Y46X5l6oQ2ap5Oibi5slittwMM7GoFCpW1i4zFqjY,17843
1842
+ pulumi_oci/loganalytics/get_log_analytics_entity_topology.py,sha256=dP5-7lCupevdxPl2pQvsrHxJG2Ol9i0x9Mg3LEmOX-s,8181
1843
1843
  pulumi_oci/loganalytics/get_log_analytics_log_group.py,sha256=TGC8rzo-H4tFWG1tjPg5oLNPB3n5afinghB_t2x7npQ,9448
1844
1844
  pulumi_oci/loganalytics/get_log_analytics_log_groups.py,sha256=vyzvnKsxEv8_8vdovOK5ydGxVLZqehFoXCGzbfYcmSw,8148
1845
1845
  pulumi_oci/loganalytics/get_log_analytics_log_groups_summary.py,sha256=l4bCs0KMVx1WniK0nO_yoYMUPjaV7yfLXroC6kfkou0,5303
1846
- pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py,sha256=XN7LgoMkNl8wy8AfVS9MJGR9NVZxsqjaV_l-I3G89vg,21446
1846
+ pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py,sha256=IFjdNobJx1BA1AK5OrTNEbST5WqumCHINEGazPLfX7w,22728
1847
1847
  pulumi_oci/loganalytics/get_log_analytics_object_collection_rules.py,sha256=K-i-qxzWXED4xRyelAGtr1TThaBrA1DFzee9Xu0aUMs,8933
1848
1848
  pulumi_oci/loganalytics/get_log_analytics_preference.py,sha256=HdLV8EVR6gZ3Ev1Agx1_TD_ai-U_Y5v5mzTbIxEmTR4,4195
1849
1849
  pulumi_oci/loganalytics/get_log_analytics_resource_categories_list.py,sha256=F1AxUOjmJp9qRHVpJHTTipQ-3BzYqj4d4C-AqcAPLPI,8856
@@ -1854,19 +1854,19 @@ pulumi_oci/loganalytics/get_namespace_effective_properties.py,sha256=kDzMmGgB-ef
1854
1854
  pulumi_oci/loganalytics/get_namespace_ingest_time_rule.py,sha256=pcuUs77Qmp2uL_c9v4XJwg-AY7UtGeVVUhTKyLvclu0,11350
1855
1855
  pulumi_oci/loganalytics/get_namespace_ingest_time_rules.py,sha256=kCmJ8w5iGEV-sXL-aIN_yB8xl4MJ9MwsFqZc_kW7nfE,12417
1856
1856
  pulumi_oci/loganalytics/get_namespace_properties_metadata.py,sha256=tivvy3eye9AU1QEixb_FGAH0wrf5H7uVX21zFVUc7pY,9525
1857
- pulumi_oci/loganalytics/get_namespace_rules.py,sha256=IcJt5idXwJqNMpoNiQReubsmauqvywfc3jdjwdeUrhI,9173
1857
+ pulumi_oci/loganalytics/get_namespace_rules.py,sha256=iexobW7hQSFwuSU8Jxchr_xNcnBV-u1NM1P7YKFjw-4,10185
1858
1858
  pulumi_oci/loganalytics/get_namespace_rules_summary.py,sha256=ZU8qm2X6OTx7_JG-j9uy7z4Rl3EoNNdmqNiU-APGzqo,6422
1859
1859
  pulumi_oci/loganalytics/get_namespace_scheduled_task.py,sha256=FuMD1P_4gZv0YHNtS5pQCNCsIal6WhZ4KVSEMDV1iGI,13509
1860
- pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py,sha256=EU3T2_aY0PD5t-sHSyh8NhOZDHW3SLnEGtYpOvZV_l0,8478
1860
+ pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py,sha256=oovXJZegjIHD1gIUCvy0Haw9p-LnaIwhxzWai0HxQ54,9478
1861
1861
  pulumi_oci/loganalytics/get_namespace_storage_encryption_key_info.py,sha256=TrLHyRxvwQ2vgHntEsqB7ZK-B0kCIqu-TvvOdXg6u3U,4560
1862
1862
  pulumi_oci/loganalytics/get_namespace_storage_overlapping_recalls.py,sha256=iAMm1Qk5RShL-ZVhBdXrN9JF8Q8j5D824yCmXs9ZpBo,8121
1863
1863
  pulumi_oci/loganalytics/get_namespace_storage_recall_count.py,sha256=EdHKQYHXTeNxPCTzZBwVMGMHYylFkriYJ0-nNLlsZMU,6662
1864
1864
  pulumi_oci/loganalytics/get_namespace_storage_recalled_data_size.py,sha256=X0iMayCNyMpBGWE7jcjL0w6_xyCSEvgAgfWiTgdKsXY,7731
1865
1865
  pulumi_oci/loganalytics/get_namespaces.py,sha256=RFBLhQlSlwLxEClniqJfsUWgIN_-DKAhc3dO6K0_Uqk,5122
1866
- pulumi_oci/loganalytics/log_analytics_entity.py,sha256=jQc2CUxfoQoSvINhFxMffbsAZwJISWpU7_1NfuCgayg,49041
1866
+ pulumi_oci/loganalytics/log_analytics_entity.py,sha256=_Wq0waCJtqNS1O8tPMIm3rgqwRZaAjXjU2cU77FzO-k,54985
1867
1867
  pulumi_oci/loganalytics/log_analytics_import_custom_content.py,sha256=HYQDGPoNfPP8UAAYtFf1IN5Hf5NaG7qzXN6TRjbpzvU,24423
1868
1868
  pulumi_oci/loganalytics/log_analytics_log_group.py,sha256=z-4V5ECF6CftblFGYYAomxf21CwgbPi34bniZIIzr6I,26141
1869
- pulumi_oci/loganalytics/log_analytics_object_collection_rule.py,sha256=clRzt9IX9zMtzQJHG9QpTKEfajK67teCnEL7qRa1meU,79350
1869
+ pulumi_oci/loganalytics/log_analytics_object_collection_rule.py,sha256=1D6JDBfDfMTAy5J10pNexAwZy2L8EsUXp_HQdqE3cTU,84557
1870
1870
  pulumi_oci/loganalytics/log_analytics_preferences_management.py,sha256=eK2_T8VdqnrShHv_gOeCV1xIsPys2ycFqm5EMCvr7Q0,11925
1871
1871
  pulumi_oci/loganalytics/log_analytics_resource_categories_management.py,sha256=b13We1YwBb6sp5maI8_ocra6g842vRdADdIxvjthX-4,16563
1872
1872
  pulumi_oci/loganalytics/log_analytics_unprocessed_data_bucket_management.py,sha256=8HfiNKOzAqIx4yspdoxBwNFu4nP47FMP9tQSHXEAg04,15918
@@ -1874,7 +1874,7 @@ pulumi_oci/loganalytics/namespace.py,sha256=V30_LNXU93ABoFR1qmC4voDB8FOnzDxM60RX
1874
1874
  pulumi_oci/loganalytics/namespace_ingest_time_rule.py,sha256=66fckaLfMizzKuZV6LEWjN3exuMj254aLDytIA3PaGo,36527
1875
1875
  pulumi_oci/loganalytics/namespace_ingest_time_rules_management.py,sha256=uoc0QYbctAKRMoCs2Q58FQJugJOt1NNO1s3fblsP79E,13906
1876
1876
  pulumi_oci/loganalytics/namespace_scheduled_task.py,sha256=tmOzmOOERFRe3Jw56ETgtjoqAIqrYKdVWask2JlXxDE,39301
1877
- pulumi_oci/loganalytics/outputs.py,sha256=5es2tkigtcuW659sAaKKX2DYic7HqL4bVll-vAX34PQ,162451
1877
+ pulumi_oci/loganalytics/outputs.py,sha256=wQd6fRJju0mIlu_GL4V5yhvxaGEY3fUARjC7sfH7LJ4,171459
1878
1878
  pulumi_oci/logging/__init__.py,sha256=Lzrjx_8ufVDmjgbkpTQHnipgODYc4a8FY6KtTXl5qRU,708
1879
1879
  pulumi_oci/logging/_inputs.py,sha256=_4WONulSPrduL-X3AbzYDTY26K9fan-dB52czt3J9Ks,52406
1880
1880
  pulumi_oci/logging/get_log.py,sha256=sbCUpyk1JiyPaeAgPscxtGozo8jC1PWYX_oxl1e2yhw,10893
@@ -2615,7 +2615,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=KJZEdRiQjG67_3x9zDG9u6m7h
2615
2615
  pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=t31n_rsb6FWI8YkhndA1ucpKIbWq9XTogW-6D3Bbfe4,14240
2616
2616
  pulumi_oci/waf/network_address_list.py,sha256=dMGab_fwT5pPiLF9kQ3j-Qd-RkXkDfyz306u2eQh0WQ,32655
2617
2617
  pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
2618
- pulumi_oci-1.23.0a1707980719.dist-info/METADATA,sha256=gCzW2__RYpSJ5_foEkxJFt1S6CkrMDHxR5C0TTNXE-w,3899
2619
- pulumi_oci-1.23.0a1707980719.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
2620
- pulumi_oci-1.23.0a1707980719.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2621
- pulumi_oci-1.23.0a1707980719.dist-info/RECORD,,
2618
+ pulumi_oci-1.24.0a1708066165.dist-info/METADATA,sha256=r1NIOzcKg3Xlk4yIW067ZfuMh9_40owDlLPB285AwAY,3899
2619
+ pulumi_oci-1.24.0a1708066165.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
2620
+ pulumi_oci-1.24.0a1708066165.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2621
+ pulumi_oci-1.24.0a1708066165.dist-info/RECORD,,