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
@@ -184,6 +184,7 @@ class _PrivateEndpointState:
|
|
184
184
|
state: Optional[pulumi.Input[str]] = None,
|
185
185
|
sub_domain: Optional[pulumi.Input[str]] = None,
|
186
186
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
187
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
187
188
|
time_created: Optional[pulumi.Input[str]] = None,
|
188
189
|
time_updated: Optional[pulumi.Input[str]] = None):
|
189
190
|
"""
|
@@ -205,6 +206,7 @@ class _PrivateEndpointState:
|
|
205
206
|
|
206
207
|
** IMPORTANT **
|
207
208
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
209
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
208
210
|
:param pulumi.Input[str] time_created: The date and time that the Data Science private endpoint was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
209
211
|
:param pulumi.Input[str] time_updated: The date and time that the Data Science private endpoint was updated expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
210
212
|
"""
|
@@ -234,6 +236,8 @@ class _PrivateEndpointState:
|
|
234
236
|
pulumi.set(__self__, "sub_domain", sub_domain)
|
235
237
|
if subnet_id is not None:
|
236
238
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
239
|
+
if system_tags is not None:
|
240
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
237
241
|
if time_created is not None:
|
238
242
|
pulumi.set(__self__, "time_created", time_created)
|
239
243
|
if time_updated is not None:
|
@@ -399,6 +403,18 @@ class _PrivateEndpointState:
|
|
399
403
|
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
400
404
|
pulumi.set(self, "subnet_id", value)
|
401
405
|
|
406
|
+
@property
|
407
|
+
@pulumi.getter(name="systemTags")
|
408
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
409
|
+
"""
|
410
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
411
|
+
"""
|
412
|
+
return pulumi.get(self, "system_tags")
|
413
|
+
|
414
|
+
@system_tags.setter
|
415
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
416
|
+
pulumi.set(self, "system_tags", value)
|
417
|
+
|
402
418
|
@property
|
403
419
|
@pulumi.getter(name="timeCreated")
|
404
420
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -583,6 +599,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
583
599
|
__props__.__dict__["fqdn"] = None
|
584
600
|
__props__.__dict__["lifecycle_details"] = None
|
585
601
|
__props__.__dict__["state"] = None
|
602
|
+
__props__.__dict__["system_tags"] = None
|
586
603
|
__props__.__dict__["time_created"] = None
|
587
604
|
__props__.__dict__["time_updated"] = None
|
588
605
|
super(PrivateEndpoint, __self__).__init__(
|
@@ -608,6 +625,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
608
625
|
state: Optional[pulumi.Input[str]] = None,
|
609
626
|
sub_domain: Optional[pulumi.Input[str]] = None,
|
610
627
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
628
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
611
629
|
time_created: Optional[pulumi.Input[str]] = None,
|
612
630
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'PrivateEndpoint':
|
613
631
|
"""
|
@@ -634,6 +652,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
634
652
|
|
635
653
|
** IMPORTANT **
|
636
654
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
655
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
637
656
|
:param pulumi.Input[str] time_created: The date and time that the Data Science private endpoint was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
638
657
|
:param pulumi.Input[str] time_updated: The date and time that the Data Science private endpoint was updated expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
639
658
|
"""
|
@@ -654,6 +673,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
654
673
|
__props__.__dict__["state"] = state
|
655
674
|
__props__.__dict__["sub_domain"] = sub_domain
|
656
675
|
__props__.__dict__["subnet_id"] = subnet_id
|
676
|
+
__props__.__dict__["system_tags"] = system_tags
|
657
677
|
__props__.__dict__["time_created"] = time_created
|
658
678
|
__props__.__dict__["time_updated"] = time_updated
|
659
679
|
return PrivateEndpoint(resource_name, opts=opts, __props__=__props__)
|
@@ -766,6 +786,14 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
766
786
|
"""
|
767
787
|
return pulumi.get(self, "subnet_id")
|
768
788
|
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="systemTags")
|
791
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
792
|
+
"""
|
793
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
794
|
+
"""
|
795
|
+
return pulumi.get(self, "system_tags")
|
796
|
+
|
769
797
|
@property
|
770
798
|
@pulumi.getter(name="timeCreated")
|
771
799
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -116,6 +116,7 @@ class _ProjectState:
|
|
116
116
|
display_name: Optional[pulumi.Input[str]] = None,
|
117
117
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
118
118
|
state: Optional[pulumi.Input[str]] = None,
|
119
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
119
120
|
time_created: Optional[pulumi.Input[str]] = None):
|
120
121
|
"""
|
121
122
|
Input properties used for looking up and filtering Project resources.
|
@@ -130,6 +131,7 @@ class _ProjectState:
|
|
130
131
|
** IMPORTANT **
|
131
132
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
132
133
|
:param pulumi.Input[str] state: The state of the project.
|
134
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
133
135
|
:param pulumi.Input[str] time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
134
136
|
"""
|
135
137
|
if compartment_id is not None:
|
@@ -146,6 +148,8 @@ class _ProjectState:
|
|
146
148
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
147
149
|
if state is not None:
|
148
150
|
pulumi.set(__self__, "state", state)
|
151
|
+
if system_tags is not None:
|
152
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
149
153
|
if time_created is not None:
|
150
154
|
pulumi.set(__self__, "time_created", time_created)
|
151
155
|
|
@@ -237,6 +241,18 @@ class _ProjectState:
|
|
237
241
|
def state(self, value: Optional[pulumi.Input[str]]):
|
238
242
|
pulumi.set(self, "state", value)
|
239
243
|
|
244
|
+
@property
|
245
|
+
@pulumi.getter(name="systemTags")
|
246
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
247
|
+
"""
|
248
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "system_tags")
|
251
|
+
|
252
|
+
@system_tags.setter
|
253
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
254
|
+
pulumi.set(self, "system_tags", value)
|
255
|
+
|
240
256
|
@property
|
241
257
|
@pulumi.getter(name="timeCreated")
|
242
258
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -379,6 +395,7 @@ class Project(pulumi.CustomResource):
|
|
379
395
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
380
396
|
__props__.__dict__["created_by"] = None
|
381
397
|
__props__.__dict__["state"] = None
|
398
|
+
__props__.__dict__["system_tags"] = None
|
382
399
|
__props__.__dict__["time_created"] = None
|
383
400
|
super(Project, __self__).__init__(
|
384
401
|
'oci:DataScience/project:Project',
|
@@ -397,6 +414,7 @@ class Project(pulumi.CustomResource):
|
|
397
414
|
display_name: Optional[pulumi.Input[str]] = None,
|
398
415
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
399
416
|
state: Optional[pulumi.Input[str]] = None,
|
417
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
400
418
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Project':
|
401
419
|
"""
|
402
420
|
Get an existing Project resource's state with the given name, id, and optional extra
|
@@ -416,6 +434,7 @@ class Project(pulumi.CustomResource):
|
|
416
434
|
** IMPORTANT **
|
417
435
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
418
436
|
:param pulumi.Input[str] state: The state of the project.
|
437
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
419
438
|
:param pulumi.Input[str] time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
420
439
|
"""
|
421
440
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -429,6 +448,7 @@ class Project(pulumi.CustomResource):
|
|
429
448
|
__props__.__dict__["display_name"] = display_name
|
430
449
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
431
450
|
__props__.__dict__["state"] = state
|
451
|
+
__props__.__dict__["system_tags"] = system_tags
|
432
452
|
__props__.__dict__["time_created"] = time_created
|
433
453
|
return Project(resource_name, opts=opts, __props__=__props__)
|
434
454
|
|
@@ -492,6 +512,14 @@ class Project(pulumi.CustomResource):
|
|
492
512
|
"""
|
493
513
|
return pulumi.get(self, "state")
|
494
514
|
|
515
|
+
@property
|
516
|
+
@pulumi.getter(name="systemTags")
|
517
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
518
|
+
"""
|
519
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
520
|
+
"""
|
521
|
+
return pulumi.get(self, "system_tags")
|
522
|
+
|
495
523
|
@property
|
496
524
|
@pulumi.getter(name="timeCreated")
|
497
525
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -10,6 +10,8 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
13
|
+
'LogAnalyticsEntityMetadataArgs',
|
14
|
+
'LogAnalyticsEntityMetadataItemArgs',
|
13
15
|
'LogAnalyticsImportCustomContentChangeListArgs',
|
14
16
|
'LogAnalyticsObjectCollectionRuleOverrideArgs',
|
15
17
|
'LogAnalyticsPreferencesManagementItemArgs',
|
@@ -32,6 +34,84 @@ __all__ = [
|
|
32
34
|
'GetNamespacesFilterArgs',
|
33
35
|
]
|
34
36
|
|
37
|
+
@pulumi.input_type
|
38
|
+
class LogAnalyticsEntityMetadataArgs:
|
39
|
+
def __init__(__self__, *,
|
40
|
+
items: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]]] = None):
|
41
|
+
"""
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]] items: (Updatable) An array of entity metadata details.
|
43
|
+
"""
|
44
|
+
if items is not None:
|
45
|
+
pulumi.set(__self__, "items", items)
|
46
|
+
|
47
|
+
@property
|
48
|
+
@pulumi.getter
|
49
|
+
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]]]:
|
50
|
+
"""
|
51
|
+
(Updatable) An array of entity metadata details.
|
52
|
+
"""
|
53
|
+
return pulumi.get(self, "items")
|
54
|
+
|
55
|
+
@items.setter
|
56
|
+
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]]]):
|
57
|
+
pulumi.set(self, "items", value)
|
58
|
+
|
59
|
+
|
60
|
+
@pulumi.input_type
|
61
|
+
class LogAnalyticsEntityMetadataItemArgs:
|
62
|
+
def __init__(__self__, *,
|
63
|
+
name: Optional[pulumi.Input[str]] = None,
|
64
|
+
type: Optional[pulumi.Input[str]] = None,
|
65
|
+
value: Optional[pulumi.Input[str]] = None):
|
66
|
+
"""
|
67
|
+
:param pulumi.Input[str] name: (Updatable) Log analytics entity name.
|
68
|
+
:param pulumi.Input[str] type: (Updatable) The metadata type.
|
69
|
+
:param pulumi.Input[str] value: (Updatable) The metadata value.
|
70
|
+
"""
|
71
|
+
if name is not None:
|
72
|
+
pulumi.set(__self__, "name", name)
|
73
|
+
if type is not None:
|
74
|
+
pulumi.set(__self__, "type", type)
|
75
|
+
if value is not None:
|
76
|
+
pulumi.set(__self__, "value", value)
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter
|
80
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
81
|
+
"""
|
82
|
+
(Updatable) Log analytics entity name.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "name")
|
85
|
+
|
86
|
+
@name.setter
|
87
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
88
|
+
pulumi.set(self, "name", value)
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter
|
92
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
93
|
+
"""
|
94
|
+
(Updatable) The metadata type.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "type")
|
97
|
+
|
98
|
+
@type.setter
|
99
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
100
|
+
pulumi.set(self, "type", value)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def value(self) -> Optional[pulumi.Input[str]]:
|
105
|
+
"""
|
106
|
+
(Updatable) The metadata value.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "value")
|
109
|
+
|
110
|
+
@value.setter
|
111
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
112
|
+
pulumi.set(self, "value", value)
|
113
|
+
|
114
|
+
|
35
115
|
@pulumi.input_type
|
36
116
|
class LogAnalyticsImportCustomContentChangeListArgs:
|
37
117
|
def __init__(__self__, *,
|
@@ -23,7 +23,7 @@ class GetLogAnalyticsEntitiesResult:
|
|
23
23
|
"""
|
24
24
|
A collection of values returned by getLogAnalyticsEntities.
|
25
25
|
"""
|
26
|
-
def __init__(__self__, cloud_resource_id=None, compartment_id=None, entity_type_names=None, filters=None, hostname=None, hostname_contains=None, id=None, is_management_agent_id_null=None, lifecycle_details_contains=None, log_analytics_entity_collections=None, name=None, name_contains=None, namespace=None, source_id=None, state=None):
|
26
|
+
def __init__(__self__, cloud_resource_id=None, compartment_id=None, entity_type_names=None, filters=None, hostname=None, hostname_contains=None, id=None, is_management_agent_id_null=None, lifecycle_details_contains=None, log_analytics_entity_collections=None, metadata_equals=None, name=None, name_contains=None, namespace=None, source_id=None, state=None):
|
27
27
|
if cloud_resource_id and not isinstance(cloud_resource_id, str):
|
28
28
|
raise TypeError("Expected argument 'cloud_resource_id' to be a str")
|
29
29
|
pulumi.set(__self__, "cloud_resource_id", cloud_resource_id)
|
@@ -54,6 +54,9 @@ class GetLogAnalyticsEntitiesResult:
|
|
54
54
|
if log_analytics_entity_collections and not isinstance(log_analytics_entity_collections, list):
|
55
55
|
raise TypeError("Expected argument 'log_analytics_entity_collections' to be a list")
|
56
56
|
pulumi.set(__self__, "log_analytics_entity_collections", log_analytics_entity_collections)
|
57
|
+
if metadata_equals and not isinstance(metadata_equals, list):
|
58
|
+
raise TypeError("Expected argument 'metadata_equals' to be a list")
|
59
|
+
pulumi.set(__self__, "metadata_equals", metadata_equals)
|
57
60
|
if name and not isinstance(name, str):
|
58
61
|
raise TypeError("Expected argument 'name' to be a str")
|
59
62
|
pulumi.set(__self__, "name", name)
|
@@ -138,6 +141,11 @@ class GetLogAnalyticsEntitiesResult:
|
|
138
141
|
"""
|
139
142
|
return pulumi.get(self, "log_analytics_entity_collections")
|
140
143
|
|
144
|
+
@property
|
145
|
+
@pulumi.getter(name="metadataEquals")
|
146
|
+
def metadata_equals(self) -> Optional[Sequence[str]]:
|
147
|
+
return pulumi.get(self, "metadata_equals")
|
148
|
+
|
141
149
|
@property
|
142
150
|
@pulumi.getter
|
143
151
|
def name(self) -> Optional[str]:
|
@@ -189,6 +197,7 @@ class AwaitableGetLogAnalyticsEntitiesResult(GetLogAnalyticsEntitiesResult):
|
|
189
197
|
is_management_agent_id_null=self.is_management_agent_id_null,
|
190
198
|
lifecycle_details_contains=self.lifecycle_details_contains,
|
191
199
|
log_analytics_entity_collections=self.log_analytics_entity_collections,
|
200
|
+
metadata_equals=self.metadata_equals,
|
192
201
|
name=self.name,
|
193
202
|
name_contains=self.name_contains,
|
194
203
|
namespace=self.namespace,
|
@@ -204,6 +213,7 @@ def get_log_analytics_entities(cloud_resource_id: Optional[str] = None,
|
|
204
213
|
hostname_contains: Optional[str] = None,
|
205
214
|
is_management_agent_id_null: Optional[str] = None,
|
206
215
|
lifecycle_details_contains: Optional[str] = None,
|
216
|
+
metadata_equals: Optional[Sequence[str]] = None,
|
207
217
|
name: Optional[str] = None,
|
208
218
|
name_contains: Optional[str] = None,
|
209
219
|
namespace: Optional[str] = None,
|
@@ -229,6 +239,7 @@ def get_log_analytics_entities(cloud_resource_id: Optional[str] = None,
|
|
229
239
|
hostname_contains=var["log_analytics_entity_hostname_contains"],
|
230
240
|
is_management_agent_id_null=var["log_analytics_entity_is_management_agent_id_null"],
|
231
241
|
lifecycle_details_contains=var["log_analytics_entity_lifecycle_details_contains"],
|
242
|
+
metadata_equals=var["log_analytics_entity_metadata_equals"],
|
232
243
|
name=var["log_analytics_entity_name"],
|
233
244
|
name_contains=var["log_analytics_entity_name_contains"],
|
234
245
|
source_id=oci_log_analytics_source["test_source"]["id"],
|
@@ -243,6 +254,7 @@ def get_log_analytics_entities(cloud_resource_id: Optional[str] = None,
|
|
243
254
|
:param str hostname_contains: A filter to return only log analytics entities whose hostname contains the substring given. The match is case-insensitive.
|
244
255
|
:param str is_management_agent_id_null: A filter to return only those log analytics entities whose managementAgentId is null or is not null.
|
245
256
|
:param str lifecycle_details_contains: A filter to return only log analytics entities whose lifecycleDetails contains the specified string.
|
257
|
+
:param Sequence[str] metadata_equals: A filter to return only log analytics entities whose metadata name, value and type matches the specified string. Each item in the array has the format "{name}:{value}:{type}". All inputs are case-insensitive.
|
246
258
|
:param str name: A filter to return only log analytics entities whose name matches the entire name given. The match is case-insensitive.
|
247
259
|
:param str name_contains: A filter to return only log analytics entities whose name contains the name given. The match is case-insensitive.
|
248
260
|
:param str namespace: The Logging Analytics namespace used for the request.
|
@@ -258,6 +270,7 @@ def get_log_analytics_entities(cloud_resource_id: Optional[str] = None,
|
|
258
270
|
__args__['hostnameContains'] = hostname_contains
|
259
271
|
__args__['isManagementAgentIdNull'] = is_management_agent_id_null
|
260
272
|
__args__['lifecycleDetailsContains'] = lifecycle_details_contains
|
273
|
+
__args__['metadataEquals'] = metadata_equals
|
261
274
|
__args__['name'] = name
|
262
275
|
__args__['nameContains'] = name_contains
|
263
276
|
__args__['namespace'] = namespace
|
@@ -277,6 +290,7 @@ def get_log_analytics_entities(cloud_resource_id: Optional[str] = None,
|
|
277
290
|
is_management_agent_id_null=pulumi.get(__ret__, 'is_management_agent_id_null'),
|
278
291
|
lifecycle_details_contains=pulumi.get(__ret__, 'lifecycle_details_contains'),
|
279
292
|
log_analytics_entity_collections=pulumi.get(__ret__, 'log_analytics_entity_collections'),
|
293
|
+
metadata_equals=pulumi.get(__ret__, 'metadata_equals'),
|
280
294
|
name=pulumi.get(__ret__, 'name'),
|
281
295
|
name_contains=pulumi.get(__ret__, 'name_contains'),
|
282
296
|
namespace=pulumi.get(__ret__, 'namespace'),
|
@@ -293,6 +307,7 @@ def get_log_analytics_entities_output(cloud_resource_id: Optional[pulumi.Input[O
|
|
293
307
|
hostname_contains: Optional[pulumi.Input[Optional[str]]] = None,
|
294
308
|
is_management_agent_id_null: Optional[pulumi.Input[Optional[str]]] = None,
|
295
309
|
lifecycle_details_contains: Optional[pulumi.Input[Optional[str]]] = None,
|
310
|
+
metadata_equals: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
296
311
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
297
312
|
name_contains: Optional[pulumi.Input[Optional[str]]] = None,
|
298
313
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -318,6 +333,7 @@ def get_log_analytics_entities_output(cloud_resource_id: Optional[pulumi.Input[O
|
|
318
333
|
hostname_contains=var["log_analytics_entity_hostname_contains"],
|
319
334
|
is_management_agent_id_null=var["log_analytics_entity_is_management_agent_id_null"],
|
320
335
|
lifecycle_details_contains=var["log_analytics_entity_lifecycle_details_contains"],
|
336
|
+
metadata_equals=var["log_analytics_entity_metadata_equals"],
|
321
337
|
name=var["log_analytics_entity_name"],
|
322
338
|
name_contains=var["log_analytics_entity_name_contains"],
|
323
339
|
source_id=oci_log_analytics_source["test_source"]["id"],
|
@@ -332,6 +348,7 @@ def get_log_analytics_entities_output(cloud_resource_id: Optional[pulumi.Input[O
|
|
332
348
|
:param str hostname_contains: A filter to return only log analytics entities whose hostname contains the substring given. The match is case-insensitive.
|
333
349
|
:param str is_management_agent_id_null: A filter to return only those log analytics entities whose managementAgentId is null or is not null.
|
334
350
|
:param str lifecycle_details_contains: A filter to return only log analytics entities whose lifecycleDetails contains the specified string.
|
351
|
+
:param Sequence[str] metadata_equals: A filter to return only log analytics entities whose metadata name, value and type matches the specified string. Each item in the array has the format "{name}:{value}:{type}". All inputs are case-insensitive.
|
335
352
|
:param str name: A filter to return only log analytics entities whose name matches the entire name given. The match is case-insensitive.
|
336
353
|
:param str name_contains: A filter to return only log analytics entities whose name contains the name given. The match is case-insensitive.
|
337
354
|
:param str namespace: The Logging Analytics namespace used for the request.
|
@@ -8,6 +8,7 @@ import pulumi
|
|
8
8
|
import pulumi.runtime
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from .. import _utilities
|
11
|
+
from . import outputs
|
11
12
|
|
12
13
|
__all__ = [
|
13
14
|
'GetLogAnalyticsEntityResult',
|
@@ -21,7 +22,7 @@ class GetLogAnalyticsEntityResult:
|
|
21
22
|
"""
|
22
23
|
A collection of values returned by getLogAnalyticsEntity.
|
23
24
|
"""
|
24
|
-
def __init__(__self__, are_logs_collected=None, cloud_resource_id=None, compartment_id=None, defined_tags=None, entity_type_internal_name=None, entity_type_name=None, freeform_tags=None, hostname=None, id=None, lifecycle_details=None, log_analytics_entity_id=None, management_agent_compartment_id=None, management_agent_display_name=None, management_agent_id=None, name=None, namespace=None, properties=None, source_id=None, state=None, time_created=None, time_updated=None, timezone_region=None):
|
25
|
+
def __init__(__self__, are_logs_collected=None, cloud_resource_id=None, compartment_id=None, defined_tags=None, entity_type_internal_name=None, entity_type_name=None, freeform_tags=None, hostname=None, id=None, lifecycle_details=None, log_analytics_entity_id=None, management_agent_compartment_id=None, management_agent_display_name=None, management_agent_id=None, metadatas=None, name=None, namespace=None, properties=None, source_id=None, state=None, time_created=None, time_last_discovered=None, time_updated=None, timezone_region=None):
|
25
26
|
if are_logs_collected and not isinstance(are_logs_collected, bool):
|
26
27
|
raise TypeError("Expected argument 'are_logs_collected' to be a bool")
|
27
28
|
pulumi.set(__self__, "are_logs_collected", are_logs_collected)
|
@@ -64,6 +65,9 @@ class GetLogAnalyticsEntityResult:
|
|
64
65
|
if management_agent_id and not isinstance(management_agent_id, str):
|
65
66
|
raise TypeError("Expected argument 'management_agent_id' to be a str")
|
66
67
|
pulumi.set(__self__, "management_agent_id", management_agent_id)
|
68
|
+
if metadatas and not isinstance(metadatas, list):
|
69
|
+
raise TypeError("Expected argument 'metadatas' to be a list")
|
70
|
+
pulumi.set(__self__, "metadatas", metadatas)
|
67
71
|
if name and not isinstance(name, str):
|
68
72
|
raise TypeError("Expected argument 'name' to be a str")
|
69
73
|
pulumi.set(__self__, "name", name)
|
@@ -82,6 +86,9 @@ class GetLogAnalyticsEntityResult:
|
|
82
86
|
if time_created and not isinstance(time_created, str):
|
83
87
|
raise TypeError("Expected argument 'time_created' to be a str")
|
84
88
|
pulumi.set(__self__, "time_created", time_created)
|
89
|
+
if time_last_discovered and not isinstance(time_last_discovered, str):
|
90
|
+
raise TypeError("Expected argument 'time_last_discovered' to be a str")
|
91
|
+
pulumi.set(__self__, "time_last_discovered", time_last_discovered)
|
85
92
|
if time_updated and not isinstance(time_updated, str):
|
86
93
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
87
94
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -198,6 +205,14 @@ class GetLogAnalyticsEntityResult:
|
|
198
205
|
"""
|
199
206
|
return pulumi.get(self, "management_agent_id")
|
200
207
|
|
208
|
+
@property
|
209
|
+
@pulumi.getter
|
210
|
+
def metadatas(self) -> Sequence['outputs.GetLogAnalyticsEntityMetadataResult']:
|
211
|
+
"""
|
212
|
+
Details of entity metadata information.
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "metadatas")
|
215
|
+
|
201
216
|
@property
|
202
217
|
@pulumi.getter
|
203
218
|
def name(self) -> str:
|
@@ -243,6 +258,14 @@ class GetLogAnalyticsEntityResult:
|
|
243
258
|
"""
|
244
259
|
return pulumi.get(self, "time_created")
|
245
260
|
|
261
|
+
@property
|
262
|
+
@pulumi.getter(name="timeLastDiscovered")
|
263
|
+
def time_last_discovered(self) -> str:
|
264
|
+
"""
|
265
|
+
The date and time the resource was last discovered, in the format defined by RFC3339.
|
266
|
+
"""
|
267
|
+
return pulumi.get(self, "time_last_discovered")
|
268
|
+
|
246
269
|
@property
|
247
270
|
@pulumi.getter(name="timeUpdated")
|
248
271
|
def time_updated(self) -> str:
|
@@ -280,12 +303,14 @@ class AwaitableGetLogAnalyticsEntityResult(GetLogAnalyticsEntityResult):
|
|
280
303
|
management_agent_compartment_id=self.management_agent_compartment_id,
|
281
304
|
management_agent_display_name=self.management_agent_display_name,
|
282
305
|
management_agent_id=self.management_agent_id,
|
306
|
+
metadatas=self.metadatas,
|
283
307
|
name=self.name,
|
284
308
|
namespace=self.namespace,
|
285
309
|
properties=self.properties,
|
286
310
|
source_id=self.source_id,
|
287
311
|
state=self.state,
|
288
312
|
time_created=self.time_created,
|
313
|
+
time_last_discovered=self.time_last_discovered,
|
289
314
|
time_updated=self.time_updated,
|
290
315
|
timezone_region=self.timezone_region)
|
291
316
|
|
@@ -333,12 +358,14 @@ def get_log_analytics_entity(log_analytics_entity_id: Optional[str] = None,
|
|
333
358
|
management_agent_compartment_id=pulumi.get(__ret__, 'management_agent_compartment_id'),
|
334
359
|
management_agent_display_name=pulumi.get(__ret__, 'management_agent_display_name'),
|
335
360
|
management_agent_id=pulumi.get(__ret__, 'management_agent_id'),
|
361
|
+
metadatas=pulumi.get(__ret__, 'metadatas'),
|
336
362
|
name=pulumi.get(__ret__, 'name'),
|
337
363
|
namespace=pulumi.get(__ret__, 'namespace'),
|
338
364
|
properties=pulumi.get(__ret__, 'properties'),
|
339
365
|
source_id=pulumi.get(__ret__, 'source_id'),
|
340
366
|
state=pulumi.get(__ret__, 'state'),
|
341
367
|
time_created=pulumi.get(__ret__, 'time_created'),
|
368
|
+
time_last_discovered=pulumi.get(__ret__, 'time_last_discovered'),
|
342
369
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
343
370
|
timezone_region=pulumi.get(__ret__, 'timezone_region'))
|
344
371
|
|
@@ -22,7 +22,7 @@ class GetLogAnalyticsEntityTopologyResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getLogAnalyticsEntityTopology.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, id=None, items=None, log_analytics_entity_id=None, namespace=None, state=None):
|
25
|
+
def __init__(__self__, id=None, items=None, log_analytics_entity_id=None, metadata_equals=None, namespace=None, state=None):
|
26
26
|
if id and not isinstance(id, str):
|
27
27
|
raise TypeError("Expected argument 'id' to be a str")
|
28
28
|
pulumi.set(__self__, "id", id)
|
@@ -32,6 +32,9 @@ class GetLogAnalyticsEntityTopologyResult:
|
|
32
32
|
if log_analytics_entity_id and not isinstance(log_analytics_entity_id, str):
|
33
33
|
raise TypeError("Expected argument 'log_analytics_entity_id' to be a str")
|
34
34
|
pulumi.set(__self__, "log_analytics_entity_id", log_analytics_entity_id)
|
35
|
+
if metadata_equals and not isinstance(metadata_equals, list):
|
36
|
+
raise TypeError("Expected argument 'metadata_equals' to be a list")
|
37
|
+
pulumi.set(__self__, "metadata_equals", metadata_equals)
|
35
38
|
if namespace and not isinstance(namespace, str):
|
36
39
|
raise TypeError("Expected argument 'namespace' to be a str")
|
37
40
|
pulumi.set(__self__, "namespace", namespace)
|
@@ -51,7 +54,7 @@ class GetLogAnalyticsEntityTopologyResult:
|
|
51
54
|
@pulumi.getter
|
52
55
|
def items(self) -> Sequence['outputs.GetLogAnalyticsEntityTopologyItemResult']:
|
53
56
|
"""
|
54
|
-
|
57
|
+
An array of entity metadata.
|
55
58
|
"""
|
56
59
|
return pulumi.get(self, "items")
|
57
60
|
|
@@ -60,6 +63,11 @@ class GetLogAnalyticsEntityTopologyResult:
|
|
60
63
|
def log_analytics_entity_id(self) -> str:
|
61
64
|
return pulumi.get(self, "log_analytics_entity_id")
|
62
65
|
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="metadataEquals")
|
68
|
+
def metadata_equals(self) -> Optional[Sequence[str]]:
|
69
|
+
return pulumi.get(self, "metadata_equals")
|
70
|
+
|
63
71
|
@property
|
64
72
|
@pulumi.getter
|
65
73
|
def namespace(self) -> str:
|
@@ -83,11 +91,13 @@ class AwaitableGetLogAnalyticsEntityTopologyResult(GetLogAnalyticsEntityTopology
|
|
83
91
|
id=self.id,
|
84
92
|
items=self.items,
|
85
93
|
log_analytics_entity_id=self.log_analytics_entity_id,
|
94
|
+
metadata_equals=self.metadata_equals,
|
86
95
|
namespace=self.namespace,
|
87
96
|
state=self.state)
|
88
97
|
|
89
98
|
|
90
99
|
def get_log_analytics_entity_topology(log_analytics_entity_id: Optional[str] = None,
|
100
|
+
metadata_equals: Optional[Sequence[str]] = None,
|
91
101
|
namespace: Optional[str] = None,
|
92
102
|
state: Optional[str] = None,
|
93
103
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLogAnalyticsEntityTopologyResult:
|
@@ -104,16 +114,19 @@ def get_log_analytics_entity_topology(log_analytics_entity_id: Optional[str] = N
|
|
104
114
|
|
105
115
|
test_log_analytics_entity_topology = oci.LogAnalytics.get_log_analytics_entity_topology(log_analytics_entity_id=oci_log_analytics_log_analytics_entity["test_log_analytics_entity"]["id"],
|
106
116
|
namespace=var["log_analytics_entity_topology_namespace"],
|
117
|
+
metadata_equals=var["log_analytics_entity_topology_metadata_equals"],
|
107
118
|
state=var["log_analytics_entity_topology_state"])
|
108
119
|
```
|
109
120
|
|
110
121
|
|
111
122
|
:param str log_analytics_entity_id: The log analytics entity OCID.
|
123
|
+
:param Sequence[str] metadata_equals: A filter to return only log analytics entities whose metadata name, value and type matches the specified string. Each item in the array has the format "{name}:{value}:{type}". All inputs are case-insensitive.
|
112
124
|
:param str namespace: The Logging Analytics namespace used for the request.
|
113
125
|
:param str state: A filter to return only those log analytics entities with the specified lifecycle state. The state value is case-insensitive.
|
114
126
|
"""
|
115
127
|
__args__ = dict()
|
116
128
|
__args__['logAnalyticsEntityId'] = log_analytics_entity_id
|
129
|
+
__args__['metadataEquals'] = metadata_equals
|
117
130
|
__args__['namespace'] = namespace
|
118
131
|
__args__['state'] = state
|
119
132
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -123,12 +136,14 @@ def get_log_analytics_entity_topology(log_analytics_entity_id: Optional[str] = N
|
|
123
136
|
id=pulumi.get(__ret__, 'id'),
|
124
137
|
items=pulumi.get(__ret__, 'items'),
|
125
138
|
log_analytics_entity_id=pulumi.get(__ret__, 'log_analytics_entity_id'),
|
139
|
+
metadata_equals=pulumi.get(__ret__, 'metadata_equals'),
|
126
140
|
namespace=pulumi.get(__ret__, 'namespace'),
|
127
141
|
state=pulumi.get(__ret__, 'state'))
|
128
142
|
|
129
143
|
|
130
144
|
@_utilities.lift_output_func(get_log_analytics_entity_topology)
|
131
145
|
def get_log_analytics_entity_topology_output(log_analytics_entity_id: Optional[pulumi.Input[str]] = None,
|
146
|
+
metadata_equals: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
132
147
|
namespace: Optional[pulumi.Input[str]] = None,
|
133
148
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
134
149
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLogAnalyticsEntityTopologyResult]:
|
@@ -145,11 +160,13 @@ def get_log_analytics_entity_topology_output(log_analytics_entity_id: Optional[p
|
|
145
160
|
|
146
161
|
test_log_analytics_entity_topology = oci.LogAnalytics.get_log_analytics_entity_topology(log_analytics_entity_id=oci_log_analytics_log_analytics_entity["test_log_analytics_entity"]["id"],
|
147
162
|
namespace=var["log_analytics_entity_topology_namespace"],
|
163
|
+
metadata_equals=var["log_analytics_entity_topology_metadata_equals"],
|
148
164
|
state=var["log_analytics_entity_topology_state"])
|
149
165
|
```
|
150
166
|
|
151
167
|
|
152
168
|
:param str log_analytics_entity_id: The log analytics entity OCID.
|
169
|
+
:param Sequence[str] metadata_equals: A filter to return only log analytics entities whose metadata name, value and type matches the specified string. Each item in the array has the format "{name}:{value}:{type}". All inputs are case-insensitive.
|
153
170
|
:param str namespace: The Logging Analytics namespace used for the request.
|
154
171
|
:param str state: A filter to return only those log analytics entities with the specified lifecycle state. The state value is case-insensitive.
|
155
172
|
"""
|