pulumi-oci 1.20.0a1705991859__py3-none-any.whl → 1.21.0a1706309702__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/core/get_boot_volume_attachments.py +36 -2
- pulumi_oci/database/autonomous_database_wallet.py +18 -0
- pulumi_oci/database/vm_cluster_network.py +20 -7
- 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/loadbalancer/_inputs.py +12 -0
- pulumi_oci/loadbalancer/outputs.py +12 -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.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/METADATA +1 -1
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/RECORD +31 -16
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/top_level.txt +0 -0
@@ -1056,12 +1056,18 @@ class LoadBalancerIpAddressDetailArgs:
|
|
1056
1056
|
class LoadBalancerIpAddressDetailReservedIpArgs:
|
1057
1057
|
def __init__(__self__, *,
|
1058
1058
|
id: Optional[pulumi.Input[str]] = None):
|
1059
|
+
"""
|
1060
|
+
:param pulumi.Input[str] id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1061
|
+
"""
|
1059
1062
|
if id is not None:
|
1060
1063
|
pulumi.set(__self__, "id", id)
|
1061
1064
|
|
1062
1065
|
@property
|
1063
1066
|
@pulumi.getter
|
1064
1067
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1068
|
+
"""
|
1069
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1070
|
+
"""
|
1065
1071
|
return pulumi.get(self, "id")
|
1066
1072
|
|
1067
1073
|
@id.setter
|
@@ -1073,12 +1079,18 @@ class LoadBalancerIpAddressDetailReservedIpArgs:
|
|
1073
1079
|
class LoadBalancerReservedIpArgs:
|
1074
1080
|
def __init__(__self__, *,
|
1075
1081
|
id: Optional[pulumi.Input[str]] = None):
|
1082
|
+
"""
|
1083
|
+
:param pulumi.Input[str] id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1084
|
+
"""
|
1076
1085
|
if id is not None:
|
1077
1086
|
pulumi.set(__self__, "id", id)
|
1078
1087
|
|
1079
1088
|
@property
|
1080
1089
|
@pulumi.getter
|
1081
1090
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1091
|
+
"""
|
1092
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1093
|
+
"""
|
1082
1094
|
return pulumi.get(self, "id")
|
1083
1095
|
|
1084
1096
|
@id.setter
|
@@ -1097,12 +1097,18 @@ class LoadBalancerIpAddressDetail(dict):
|
|
1097
1097
|
class LoadBalancerIpAddressDetailReservedIp(dict):
|
1098
1098
|
def __init__(__self__, *,
|
1099
1099
|
id: Optional[str] = None):
|
1100
|
+
"""
|
1101
|
+
:param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1102
|
+
"""
|
1100
1103
|
if id is not None:
|
1101
1104
|
pulumi.set(__self__, "id", id)
|
1102
1105
|
|
1103
1106
|
@property
|
1104
1107
|
@pulumi.getter
|
1105
1108
|
def id(self) -> Optional[str]:
|
1109
|
+
"""
|
1110
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1111
|
+
"""
|
1106
1112
|
return pulumi.get(self, "id")
|
1107
1113
|
|
1108
1114
|
|
@@ -1110,12 +1116,18 @@ class LoadBalancerIpAddressDetailReservedIp(dict):
|
|
1110
1116
|
class LoadBalancerReservedIp(dict):
|
1111
1117
|
def __init__(__self__, *,
|
1112
1118
|
id: Optional[str] = None):
|
1119
|
+
"""
|
1120
|
+
:param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1121
|
+
"""
|
1113
1122
|
if id is not None:
|
1114
1123
|
pulumi.set(__self__, "id", id)
|
1115
1124
|
|
1116
1125
|
@property
|
1117
1126
|
@pulumi.getter
|
1118
1127
|
def id(self) -> Optional[str]:
|
1128
|
+
"""
|
1129
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1130
|
+
"""
|
1119
1131
|
return pulumi.get(self, "id")
|
1120
1132
|
|
1121
1133
|
|
@@ -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
|
+
|