pulumi-oci 1.19.0a1705698401__py3-none-any.whl → 1.20.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 +35 -0
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.19.0a1705698401.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.19.0a1705698401.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +26 -11
- {pulumi_oci-1.19.0a1705698401.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.19.0a1705698401.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,7 @@ class GetPublicationResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getPublication.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, freeform_tags=None, icons=None, id=None, is_agreement_acknowledged=None, listing_type=None, long_description=None, name=None, package_details=None, package_type=None, publication_id=None, short_description=None, state=None, support_contacts=None, supported_operating_systems=None, time_created=None):
|
25
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, freeform_tags=None, icons=None, id=None, is_agreement_acknowledged=None, listing_type=None, long_description=None, name=None, package_details=None, package_type=None, publication_id=None, short_description=None, state=None, support_contacts=None, supported_operating_systems=None, system_tags=None, time_created=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -71,6 +71,9 @@ class GetPublicationResult:
|
|
71
71
|
if supported_operating_systems and not isinstance(supported_operating_systems, list):
|
72
72
|
raise TypeError("Expected argument 'supported_operating_systems' to be a list")
|
73
73
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
74
|
+
if system_tags and not isinstance(system_tags, dict):
|
75
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
76
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
74
77
|
if time_created and not isinstance(time_created, str):
|
75
78
|
raise TypeError("Expected argument 'time_created' to be a str")
|
76
79
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -194,6 +197,14 @@ class GetPublicationResult:
|
|
194
197
|
"""
|
195
198
|
return pulumi.get(self, "supported_operating_systems")
|
196
199
|
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="systemTags")
|
202
|
+
def system_tags(self) -> Mapping[str, Any]:
|
203
|
+
"""
|
204
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "system_tags")
|
207
|
+
|
197
208
|
@property
|
198
209
|
@pulumi.getter(name="timeCreated")
|
199
210
|
def time_created(self) -> str:
|
@@ -225,6 +236,7 @@ class AwaitableGetPublicationResult(GetPublicationResult):
|
|
225
236
|
state=self.state,
|
226
237
|
support_contacts=self.support_contacts,
|
227
238
|
supported_operating_systems=self.supported_operating_systems,
|
239
|
+
system_tags=self.system_tags,
|
228
240
|
time_created=self.time_created)
|
229
241
|
|
230
242
|
|
@@ -269,6 +281,7 @@ def get_publication(publication_id: Optional[str] = None,
|
|
269
281
|
state=pulumi.get(__ret__, 'state'),
|
270
282
|
support_contacts=pulumi.get(__ret__, 'support_contacts'),
|
271
283
|
supported_operating_systems=pulumi.get(__ret__, 'supported_operating_systems'),
|
284
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
272
285
|
time_created=pulumi.get(__ret__, 'time_created'))
|
273
286
|
|
274
287
|
|
@@ -2904,6 +2904,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2904
2904
|
state: str,
|
2905
2905
|
support_contacts: Sequence['outputs.GetPublicationsPublicationSupportContactResult'],
|
2906
2906
|
supported_operating_systems: Sequence['outputs.GetPublicationsPublicationSupportedOperatingSystemResult'],
|
2907
|
+
system_tags: Mapping[str, Any],
|
2907
2908
|
time_created: str):
|
2908
2909
|
"""
|
2909
2910
|
:param str compartment_id: The unique identifier for the compartment.
|
@@ -2919,6 +2920,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2919
2920
|
:param str state: The lifecycle state of the publication.
|
2920
2921
|
:param Sequence['GetPublicationsPublicationSupportContactArgs'] support_contacts: Contact information for getting support from the publisher for the listing.
|
2921
2922
|
:param Sequence['GetPublicationsPublicationSupportedOperatingSystemArgs'] supported_operating_systems: The list of operating systems supported by the listing.
|
2923
|
+
:param Mapping[str, Any] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
2922
2924
|
:param str time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2923
2925
|
"""
|
2924
2926
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -2936,6 +2938,7 @@ class GetPublicationsPublicationResult(dict):
|
|
2936
2938
|
pulumi.set(__self__, "state", state)
|
2937
2939
|
pulumi.set(__self__, "support_contacts", support_contacts)
|
2938
2940
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
2941
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
2939
2942
|
pulumi.set(__self__, "time_created", time_created)
|
2940
2943
|
|
2941
2944
|
@property
|
@@ -3052,6 +3055,14 @@ class GetPublicationsPublicationResult(dict):
|
|
3052
3055
|
"""
|
3053
3056
|
return pulumi.get(self, "supported_operating_systems")
|
3054
3057
|
|
3058
|
+
@property
|
3059
|
+
@pulumi.getter(name="systemTags")
|
3060
|
+
def system_tags(self) -> Mapping[str, Any]:
|
3061
|
+
"""
|
3062
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
3063
|
+
"""
|
3064
|
+
return pulumi.get(self, "system_tags")
|
3065
|
+
|
3055
3066
|
@property
|
3056
3067
|
@pulumi.getter(name="timeCreated")
|
3057
3068
|
def time_created(self) -> str:
|
@@ -192,6 +192,7 @@ class _PublicationState:
|
|
192
192
|
state: Optional[pulumi.Input[str]] = None,
|
193
193
|
support_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportContactArgs']]]] = None,
|
194
194
|
supported_operating_systems: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]]] = None,
|
195
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
195
196
|
time_created: Optional[pulumi.Input[str]] = None):
|
196
197
|
"""
|
197
198
|
Input properties used for looking up and filtering Publication resources.
|
@@ -209,6 +210,7 @@ class _PublicationState:
|
|
209
210
|
:param pulumi.Input[str] state: The lifecycle state of the publication.
|
210
211
|
:param pulumi.Input[Sequence[pulumi.Input['PublicationSupportContactArgs']]] support_contacts: (Updatable) Contact information for getting support from the publisher for the listing.
|
211
212
|
:param pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]] supported_operating_systems: The list of operating systems supported by the listing.
|
213
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
212
214
|
:param pulumi.Input[str] time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
213
215
|
"""
|
214
216
|
if compartment_id is not None:
|
@@ -239,6 +241,8 @@ class _PublicationState:
|
|
239
241
|
pulumi.set(__self__, "support_contacts", support_contacts)
|
240
242
|
if supported_operating_systems is not None:
|
241
243
|
pulumi.set(__self__, "supported_operating_systems", supported_operating_systems)
|
244
|
+
if system_tags is not None:
|
245
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
242
246
|
if time_created is not None:
|
243
247
|
pulumi.set(__self__, "time_created", time_created)
|
244
248
|
|
@@ -410,6 +414,18 @@ class _PublicationState:
|
|
410
414
|
def supported_operating_systems(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PublicationSupportedOperatingSystemArgs']]]]):
|
411
415
|
pulumi.set(self, "supported_operating_systems", value)
|
412
416
|
|
417
|
+
@property
|
418
|
+
@pulumi.getter(name="systemTags")
|
419
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
420
|
+
"""
|
421
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
422
|
+
"""
|
423
|
+
return pulumi.get(self, "system_tags")
|
424
|
+
|
425
|
+
@system_tags.setter
|
426
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
427
|
+
pulumi.set(self, "system_tags", value)
|
428
|
+
|
413
429
|
@property
|
414
430
|
@pulumi.getter(name="timeCreated")
|
415
431
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -620,6 +636,7 @@ class Publication(pulumi.CustomResource):
|
|
620
636
|
__props__.__dict__["package_type"] = None
|
621
637
|
__props__.__dict__["state"] = None
|
622
638
|
__props__.__dict__["supported_operating_systems"] = None
|
639
|
+
__props__.__dict__["system_tags"] = None
|
623
640
|
__props__.__dict__["time_created"] = None
|
624
641
|
super(Publication, __self__).__init__(
|
625
642
|
'oci:Marketplace/publication:Publication',
|
@@ -645,6 +662,7 @@ class Publication(pulumi.CustomResource):
|
|
645
662
|
state: Optional[pulumi.Input[str]] = None,
|
646
663
|
support_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportContactArgs']]]]] = None,
|
647
664
|
supported_operating_systems: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportedOperatingSystemArgs']]]]] = None,
|
665
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
648
666
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Publication':
|
649
667
|
"""
|
650
668
|
Get an existing Publication resource's state with the given name, id, and optional extra
|
@@ -667,6 +685,7 @@ class Publication(pulumi.CustomResource):
|
|
667
685
|
:param pulumi.Input[str] state: The lifecycle state of the publication.
|
668
686
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportContactArgs']]]] support_contacts: (Updatable) Contact information for getting support from the publisher for the listing.
|
669
687
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PublicationSupportedOperatingSystemArgs']]]] supported_operating_systems: The list of operating systems supported by the listing.
|
688
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
670
689
|
:param pulumi.Input[str] time_created: The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
671
690
|
"""
|
672
691
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -687,6 +706,7 @@ class Publication(pulumi.CustomResource):
|
|
687
706
|
__props__.__dict__["state"] = state
|
688
707
|
__props__.__dict__["support_contacts"] = support_contacts
|
689
708
|
__props__.__dict__["supported_operating_systems"] = supported_operating_systems
|
709
|
+
__props__.__dict__["system_tags"] = system_tags
|
690
710
|
__props__.__dict__["time_created"] = time_created
|
691
711
|
return Publication(resource_name, opts=opts, __props__=__props__)
|
692
712
|
|
@@ -802,6 +822,14 @@ class Publication(pulumi.CustomResource):
|
|
802
822
|
"""
|
803
823
|
return pulumi.get(self, "supported_operating_systems")
|
804
824
|
|
825
|
+
@property
|
826
|
+
@pulumi.getter(name="systemTags")
|
827
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
828
|
+
"""
|
829
|
+
The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
830
|
+
"""
|
831
|
+
return pulumi.get(self, "system_tags")
|
832
|
+
|
805
833
|
@property
|
806
834
|
@pulumi.getter(name="timeCreated")
|
807
835
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -24,6 +24,8 @@ from .get_monitored_resource_tasks import *
|
|
24
24
|
from .get_monitored_resource_type import *
|
25
25
|
from .get_monitored_resource_types import *
|
26
26
|
from .get_monitored_resources import *
|
27
|
+
from .get_process_set import *
|
28
|
+
from .get_process_sets import *
|
27
29
|
from .metric_extension import *
|
28
30
|
from .metric_extension_metric_extension_on_given_resources_management import *
|
29
31
|
from .metric_extensions_test_management import *
|
@@ -34,5 +36,6 @@ from .monitored_resources_associate_monitored_resource import *
|
|
34
36
|
from .monitored_resources_list_member import *
|
35
37
|
from .monitored_resources_search import *
|
36
38
|
from .monitored_resources_search_association import *
|
39
|
+
from .process_set import *
|
37
40
|
from ._inputs import *
|
38
41
|
from . import outputs
|
@@ -44,6 +44,8 @@ __all__ = [
|
|
44
44
|
'MonitoredResourcesSearchAssociationItemSourceResourceDetailArgs',
|
45
45
|
'MonitoredResourcesSearchItemArgs',
|
46
46
|
'MonitoredResourcesSearchItemPropertyArgs',
|
47
|
+
'ProcessSetSpecificationArgs',
|
48
|
+
'ProcessSetSpecificationItemArgs',
|
47
49
|
'GetBaselineableMetricsEvaluateItemArgs',
|
48
50
|
'GetBaselineableMetricsEvaluateItemDataPointArgs',
|
49
51
|
'GetBaselineableMetricsEvaluateItemEvaluationDataPointArgs',
|
@@ -56,6 +58,7 @@ __all__ = [
|
|
56
58
|
'GetMonitoredResourceTasksFilterArgs',
|
57
59
|
'GetMonitoredResourceTypesFilterArgs',
|
58
60
|
'GetMonitoredResourcesFilterArgs',
|
61
|
+
'GetProcessSetsFilterArgs',
|
59
62
|
]
|
60
63
|
|
61
64
|
@pulumi.input_type
|
@@ -2676,6 +2679,107 @@ class MonitoredResourcesSearchItemPropertyArgs:
|
|
2676
2679
|
pulumi.set(self, "value", value)
|
2677
2680
|
|
2678
2681
|
|
2682
|
+
@pulumi.input_type
|
2683
|
+
class ProcessSetSpecificationArgs:
|
2684
|
+
def __init__(__self__, *,
|
2685
|
+
items: pulumi.Input[Sequence[pulumi.Input['ProcessSetSpecificationItemArgs']]]):
|
2686
|
+
"""
|
2687
|
+
:param pulumi.Input[Sequence[pulumi.Input['ProcessSetSpecificationItemArgs']]] items: (Updatable) List of Process Set specification details.
|
2688
|
+
"""
|
2689
|
+
pulumi.set(__self__, "items", items)
|
2690
|
+
|
2691
|
+
@property
|
2692
|
+
@pulumi.getter
|
2693
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ProcessSetSpecificationItemArgs']]]:
|
2694
|
+
"""
|
2695
|
+
(Updatable) List of Process Set specification details.
|
2696
|
+
"""
|
2697
|
+
return pulumi.get(self, "items")
|
2698
|
+
|
2699
|
+
@items.setter
|
2700
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ProcessSetSpecificationItemArgs']]]):
|
2701
|
+
pulumi.set(self, "items", value)
|
2702
|
+
|
2703
|
+
|
2704
|
+
@pulumi.input_type
|
2705
|
+
class ProcessSetSpecificationItemArgs:
|
2706
|
+
def __init__(__self__, *,
|
2707
|
+
label: Optional[pulumi.Input[str]] = None,
|
2708
|
+
process_command: Optional[pulumi.Input[str]] = None,
|
2709
|
+
process_line_regex_pattern: Optional[pulumi.Input[str]] = None,
|
2710
|
+
process_user: Optional[pulumi.Input[str]] = None):
|
2711
|
+
"""
|
2712
|
+
:param pulumi.Input[str] label: (Updatable) Optional label used to identify a single filter.
|
2713
|
+
:param pulumi.Input[str] process_command: (Updatable) String literal used for exact matching on process name.
|
2714
|
+
:param pulumi.Input[str] process_line_regex_pattern: (Updatable) Regex pattern matching on process arguments.
|
2715
|
+
:param pulumi.Input[str] process_user: (Updatable) String literal used for exact matching on process user.
|
2716
|
+
|
2717
|
+
|
2718
|
+
** IMPORTANT **
|
2719
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2720
|
+
"""
|
2721
|
+
if label is not None:
|
2722
|
+
pulumi.set(__self__, "label", label)
|
2723
|
+
if process_command is not None:
|
2724
|
+
pulumi.set(__self__, "process_command", process_command)
|
2725
|
+
if process_line_regex_pattern is not None:
|
2726
|
+
pulumi.set(__self__, "process_line_regex_pattern", process_line_regex_pattern)
|
2727
|
+
if process_user is not None:
|
2728
|
+
pulumi.set(__self__, "process_user", process_user)
|
2729
|
+
|
2730
|
+
@property
|
2731
|
+
@pulumi.getter
|
2732
|
+
def label(self) -> Optional[pulumi.Input[str]]:
|
2733
|
+
"""
|
2734
|
+
(Updatable) Optional label used to identify a single filter.
|
2735
|
+
"""
|
2736
|
+
return pulumi.get(self, "label")
|
2737
|
+
|
2738
|
+
@label.setter
|
2739
|
+
def label(self, value: Optional[pulumi.Input[str]]):
|
2740
|
+
pulumi.set(self, "label", value)
|
2741
|
+
|
2742
|
+
@property
|
2743
|
+
@pulumi.getter(name="processCommand")
|
2744
|
+
def process_command(self) -> Optional[pulumi.Input[str]]:
|
2745
|
+
"""
|
2746
|
+
(Updatable) String literal used for exact matching on process name.
|
2747
|
+
"""
|
2748
|
+
return pulumi.get(self, "process_command")
|
2749
|
+
|
2750
|
+
@process_command.setter
|
2751
|
+
def process_command(self, value: Optional[pulumi.Input[str]]):
|
2752
|
+
pulumi.set(self, "process_command", value)
|
2753
|
+
|
2754
|
+
@property
|
2755
|
+
@pulumi.getter(name="processLineRegexPattern")
|
2756
|
+
def process_line_regex_pattern(self) -> Optional[pulumi.Input[str]]:
|
2757
|
+
"""
|
2758
|
+
(Updatable) Regex pattern matching on process arguments.
|
2759
|
+
"""
|
2760
|
+
return pulumi.get(self, "process_line_regex_pattern")
|
2761
|
+
|
2762
|
+
@process_line_regex_pattern.setter
|
2763
|
+
def process_line_regex_pattern(self, value: Optional[pulumi.Input[str]]):
|
2764
|
+
pulumi.set(self, "process_line_regex_pattern", value)
|
2765
|
+
|
2766
|
+
@property
|
2767
|
+
@pulumi.getter(name="processUser")
|
2768
|
+
def process_user(self) -> Optional[pulumi.Input[str]]:
|
2769
|
+
"""
|
2770
|
+
(Updatable) String literal used for exact matching on process user.
|
2771
|
+
|
2772
|
+
|
2773
|
+
** IMPORTANT **
|
2774
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2775
|
+
"""
|
2776
|
+
return pulumi.get(self, "process_user")
|
2777
|
+
|
2778
|
+
@process_user.setter
|
2779
|
+
def process_user(self, value: Optional[pulumi.Input[str]]):
|
2780
|
+
pulumi.set(self, "process_user", value)
|
2781
|
+
|
2782
|
+
|
2679
2783
|
@pulumi.input_type
|
2680
2784
|
class GetBaselineableMetricsEvaluateItemArgs:
|
2681
2785
|
def __init__(__self__, *,
|
@@ -3247,3 +3351,42 @@ class GetMonitoredResourcesFilterArgs:
|
|
3247
3351
|
pulumi.set(self, "regex", value)
|
3248
3352
|
|
3249
3353
|
|
3354
|
+
@pulumi.input_type
|
3355
|
+
class GetProcessSetsFilterArgs:
|
3356
|
+
def __init__(__self__, *,
|
3357
|
+
name: str,
|
3358
|
+
values: Sequence[str],
|
3359
|
+
regex: Optional[bool] = None):
|
3360
|
+
pulumi.set(__self__, "name", name)
|
3361
|
+
pulumi.set(__self__, "values", values)
|
3362
|
+
if regex is not None:
|
3363
|
+
pulumi.set(__self__, "regex", regex)
|
3364
|
+
|
3365
|
+
@property
|
3366
|
+
@pulumi.getter
|
3367
|
+
def name(self) -> str:
|
3368
|
+
return pulumi.get(self, "name")
|
3369
|
+
|
3370
|
+
@name.setter
|
3371
|
+
def name(self, value: str):
|
3372
|
+
pulumi.set(self, "name", value)
|
3373
|
+
|
3374
|
+
@property
|
3375
|
+
@pulumi.getter
|
3376
|
+
def values(self) -> Sequence[str]:
|
3377
|
+
return pulumi.get(self, "values")
|
3378
|
+
|
3379
|
+
@values.setter
|
3380
|
+
def values(self, value: Sequence[str]):
|
3381
|
+
pulumi.set(self, "values", value)
|
3382
|
+
|
3383
|
+
@property
|
3384
|
+
@pulumi.getter
|
3385
|
+
def regex(self) -> Optional[bool]:
|
3386
|
+
return pulumi.get(self, "regex")
|
3387
|
+
|
3388
|
+
@regex.setter
|
3389
|
+
def regex(self, value: Optional[bool]):
|
3390
|
+
pulumi.set(self, "regex", value)
|
3391
|
+
|
3392
|
+
|
@@ -0,0 +1,236 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
|
13
|
+
__all__ = [
|
14
|
+
'GetProcessSetResult',
|
15
|
+
'AwaitableGetProcessSetResult',
|
16
|
+
'get_process_set',
|
17
|
+
'get_process_set_output',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.output_type
|
21
|
+
class GetProcessSetResult:
|
22
|
+
"""
|
23
|
+
A collection of values returned by getProcessSet.
|
24
|
+
"""
|
25
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, process_set_id=None, revision=None, specifications=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
26
|
+
if compartment_id and not isinstance(compartment_id, str):
|
27
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
29
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
30
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
31
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
32
|
+
if display_name and not isinstance(display_name, str):
|
33
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
34
|
+
pulumi.set(__self__, "display_name", display_name)
|
35
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
36
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
37
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
38
|
+
if id and not isinstance(id, str):
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
40
|
+
pulumi.set(__self__, "id", id)
|
41
|
+
if process_set_id and not isinstance(process_set_id, str):
|
42
|
+
raise TypeError("Expected argument 'process_set_id' to be a str")
|
43
|
+
pulumi.set(__self__, "process_set_id", process_set_id)
|
44
|
+
if revision and not isinstance(revision, str):
|
45
|
+
raise TypeError("Expected argument 'revision' to be a str")
|
46
|
+
pulumi.set(__self__, "revision", revision)
|
47
|
+
if specifications and not isinstance(specifications, list):
|
48
|
+
raise TypeError("Expected argument 'specifications' to be a list")
|
49
|
+
pulumi.set(__self__, "specifications", specifications)
|
50
|
+
if state and not isinstance(state, str):
|
51
|
+
raise TypeError("Expected argument 'state' to be a str")
|
52
|
+
pulumi.set(__self__, "state", state)
|
53
|
+
if system_tags and not isinstance(system_tags, dict):
|
54
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
55
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
56
|
+
if time_created and not isinstance(time_created, str):
|
57
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
58
|
+
pulumi.set(__self__, "time_created", time_created)
|
59
|
+
if time_updated and not isinstance(time_updated, str):
|
60
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
61
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="compartmentId")
|
65
|
+
def compartment_id(self) -> str:
|
66
|
+
"""
|
67
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "compartment_id")
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter(name="definedTags")
|
73
|
+
def defined_tags(self) -> Mapping[str, Any]:
|
74
|
+
"""
|
75
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
76
|
+
"""
|
77
|
+
return pulumi.get(self, "defined_tags")
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="displayName")
|
81
|
+
def display_name(self) -> str:
|
82
|
+
"""
|
83
|
+
Name of the Process Set.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "display_name")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="freeformTags")
|
89
|
+
def freeform_tags(self) -> Mapping[str, Any]:
|
90
|
+
"""
|
91
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "freeform_tags")
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter
|
97
|
+
def id(self) -> str:
|
98
|
+
"""
|
99
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Process Set.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "id")
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="processSetId")
|
105
|
+
def process_set_id(self) -> str:
|
106
|
+
return pulumi.get(self, "process_set_id")
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter
|
110
|
+
def revision(self) -> str:
|
111
|
+
"""
|
112
|
+
The current revision of the Process Set.
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "revision")
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter
|
118
|
+
def specifications(self) -> Sequence['outputs.GetProcessSetSpecificationResult']:
|
119
|
+
"""
|
120
|
+
Collection of regular expression specifications used to identify the processes to be monitored.
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "specifications")
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter
|
126
|
+
def state(self) -> str:
|
127
|
+
"""
|
128
|
+
The current state of the Resource.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "state")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="systemTags")
|
134
|
+
def system_tags(self) -> Mapping[str, Any]:
|
135
|
+
"""
|
136
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "system_tags")
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="timeCreated")
|
142
|
+
def time_created(self) -> str:
|
143
|
+
"""
|
144
|
+
The time the process set was created. An RFC3339 formatted datetime string.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "time_created")
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="timeUpdated")
|
150
|
+
def time_updated(self) -> str:
|
151
|
+
"""
|
152
|
+
The time the process set was last updated. An RFC3339 formatted datetime string.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "time_updated")
|
155
|
+
|
156
|
+
|
157
|
+
class AwaitableGetProcessSetResult(GetProcessSetResult):
|
158
|
+
# pylint: disable=using-constant-test
|
159
|
+
def __await__(self):
|
160
|
+
if False:
|
161
|
+
yield self
|
162
|
+
return GetProcessSetResult(
|
163
|
+
compartment_id=self.compartment_id,
|
164
|
+
defined_tags=self.defined_tags,
|
165
|
+
display_name=self.display_name,
|
166
|
+
freeform_tags=self.freeform_tags,
|
167
|
+
id=self.id,
|
168
|
+
process_set_id=self.process_set_id,
|
169
|
+
revision=self.revision,
|
170
|
+
specifications=self.specifications,
|
171
|
+
state=self.state,
|
172
|
+
system_tags=self.system_tags,
|
173
|
+
time_created=self.time_created,
|
174
|
+
time_updated=self.time_updated)
|
175
|
+
|
176
|
+
|
177
|
+
def get_process_set(process_set_id: Optional[str] = None,
|
178
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProcessSetResult:
|
179
|
+
"""
|
180
|
+
This data source provides details about a specific Process Set resource in Oracle Cloud Infrastructure Stack Monitoring service.
|
181
|
+
|
182
|
+
API to get the details of a Process Set by identifier.
|
183
|
+
|
184
|
+
## Example Usage
|
185
|
+
|
186
|
+
```python
|
187
|
+
import pulumi
|
188
|
+
import pulumi_oci as oci
|
189
|
+
|
190
|
+
test_process_set = oci.StackMonitoring.get_process_set(process_set_id=oci_stack_monitoring_process_set["test_process_set"]["id"])
|
191
|
+
```
|
192
|
+
|
193
|
+
|
194
|
+
:param str process_set_id: The Process Set ID
|
195
|
+
"""
|
196
|
+
__args__ = dict()
|
197
|
+
__args__['processSetId'] = process_set_id
|
198
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
199
|
+
__ret__ = pulumi.runtime.invoke('oci:StackMonitoring/getProcessSet:getProcessSet', __args__, opts=opts, typ=GetProcessSetResult).value
|
200
|
+
|
201
|
+
return AwaitableGetProcessSetResult(
|
202
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
203
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
204
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
205
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
206
|
+
id=pulumi.get(__ret__, 'id'),
|
207
|
+
process_set_id=pulumi.get(__ret__, 'process_set_id'),
|
208
|
+
revision=pulumi.get(__ret__, 'revision'),
|
209
|
+
specifications=pulumi.get(__ret__, 'specifications'),
|
210
|
+
state=pulumi.get(__ret__, 'state'),
|
211
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
212
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
213
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
214
|
+
|
215
|
+
|
216
|
+
@_utilities.lift_output_func(get_process_set)
|
217
|
+
def get_process_set_output(process_set_id: Optional[pulumi.Input[str]] = None,
|
218
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetProcessSetResult]:
|
219
|
+
"""
|
220
|
+
This data source provides details about a specific Process Set resource in Oracle Cloud Infrastructure Stack Monitoring service.
|
221
|
+
|
222
|
+
API to get the details of a Process Set by identifier.
|
223
|
+
|
224
|
+
## Example Usage
|
225
|
+
|
226
|
+
```python
|
227
|
+
import pulumi
|
228
|
+
import pulumi_oci as oci
|
229
|
+
|
230
|
+
test_process_set = oci.StackMonitoring.get_process_set(process_set_id=oci_stack_monitoring_process_set["test_process_set"]["id"])
|
231
|
+
```
|
232
|
+
|
233
|
+
|
234
|
+
:param str process_set_id: The Process Set ID
|
235
|
+
"""
|
236
|
+
...
|