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
@@ -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
|
+
...
|
@@ -0,0 +1,156 @@
|
|
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
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = [
|
15
|
+
'GetProcessSetsResult',
|
16
|
+
'AwaitableGetProcessSetsResult',
|
17
|
+
'get_process_sets',
|
18
|
+
'get_process_sets_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetProcessSetsResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getProcessSets.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, process_set_collections=None):
|
27
|
+
if compartment_id and not isinstance(compartment_id, str):
|
28
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
29
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
30
|
+
if display_name and not isinstance(display_name, str):
|
31
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
32
|
+
pulumi.set(__self__, "display_name", display_name)
|
33
|
+
if filters and not isinstance(filters, list):
|
34
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
35
|
+
pulumi.set(__self__, "filters", filters)
|
36
|
+
if id and not isinstance(id, str):
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
38
|
+
pulumi.set(__self__, "id", id)
|
39
|
+
if process_set_collections and not isinstance(process_set_collections, list):
|
40
|
+
raise TypeError("Expected argument 'process_set_collections' to be a list")
|
41
|
+
pulumi.set(__self__, "process_set_collections", process_set_collections)
|
42
|
+
|
43
|
+
@property
|
44
|
+
@pulumi.getter(name="compartmentId")
|
45
|
+
def compartment_id(self) -> str:
|
46
|
+
"""
|
47
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
48
|
+
"""
|
49
|
+
return pulumi.get(self, "compartment_id")
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="displayName")
|
53
|
+
def display_name(self) -> Optional[str]:
|
54
|
+
"""
|
55
|
+
Name of the Process Set.
|
56
|
+
"""
|
57
|
+
return pulumi.get(self, "display_name")
|
58
|
+
|
59
|
+
@property
|
60
|
+
@pulumi.getter
|
61
|
+
def filters(self) -> Optional[Sequence['outputs.GetProcessSetsFilterResult']]:
|
62
|
+
return pulumi.get(self, "filters")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter
|
66
|
+
def id(self) -> str:
|
67
|
+
"""
|
68
|
+
The provider-assigned unique ID for this managed resource.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "id")
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="processSetCollections")
|
74
|
+
def process_set_collections(self) -> Sequence['outputs.GetProcessSetsProcessSetCollectionResult']:
|
75
|
+
"""
|
76
|
+
The list of process_set_collection.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "process_set_collections")
|
79
|
+
|
80
|
+
|
81
|
+
class AwaitableGetProcessSetsResult(GetProcessSetsResult):
|
82
|
+
# pylint: disable=using-constant-test
|
83
|
+
def __await__(self):
|
84
|
+
if False:
|
85
|
+
yield self
|
86
|
+
return GetProcessSetsResult(
|
87
|
+
compartment_id=self.compartment_id,
|
88
|
+
display_name=self.display_name,
|
89
|
+
filters=self.filters,
|
90
|
+
id=self.id,
|
91
|
+
process_set_collections=self.process_set_collections)
|
92
|
+
|
93
|
+
|
94
|
+
def get_process_sets(compartment_id: Optional[str] = None,
|
95
|
+
display_name: Optional[str] = None,
|
96
|
+
filters: Optional[Sequence[pulumi.InputType['GetProcessSetsFilterArgs']]] = None,
|
97
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProcessSetsResult:
|
98
|
+
"""
|
99
|
+
This data source provides the list of Process Sets in Oracle Cloud Infrastructure Stack Monitoring service.
|
100
|
+
|
101
|
+
API to get the details of all Process Sets.
|
102
|
+
|
103
|
+
## Example Usage
|
104
|
+
|
105
|
+
```python
|
106
|
+
import pulumi
|
107
|
+
import pulumi_oci as oci
|
108
|
+
|
109
|
+
test_process_sets = oci.StackMonitoring.get_process_sets(compartment_id=var["compartment_id"],
|
110
|
+
display_name=var["process_set_display_name"])
|
111
|
+
```
|
112
|
+
|
113
|
+
|
114
|
+
:param str compartment_id: The ID of the compartment in which data is listed.
|
115
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
116
|
+
"""
|
117
|
+
__args__ = dict()
|
118
|
+
__args__['compartmentId'] = compartment_id
|
119
|
+
__args__['displayName'] = display_name
|
120
|
+
__args__['filters'] = filters
|
121
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
122
|
+
__ret__ = pulumi.runtime.invoke('oci:StackMonitoring/getProcessSets:getProcessSets', __args__, opts=opts, typ=GetProcessSetsResult).value
|
123
|
+
|
124
|
+
return AwaitableGetProcessSetsResult(
|
125
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
126
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
127
|
+
filters=pulumi.get(__ret__, 'filters'),
|
128
|
+
id=pulumi.get(__ret__, 'id'),
|
129
|
+
process_set_collections=pulumi.get(__ret__, 'process_set_collections'))
|
130
|
+
|
131
|
+
|
132
|
+
@_utilities.lift_output_func(get_process_sets)
|
133
|
+
def get_process_sets_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
134
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
135
|
+
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetProcessSetsFilterArgs']]]]] = None,
|
136
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetProcessSetsResult]:
|
137
|
+
"""
|
138
|
+
This data source provides the list of Process Sets in Oracle Cloud Infrastructure Stack Monitoring service.
|
139
|
+
|
140
|
+
API to get the details of all Process Sets.
|
141
|
+
|
142
|
+
## Example Usage
|
143
|
+
|
144
|
+
```python
|
145
|
+
import pulumi
|
146
|
+
import pulumi_oci as oci
|
147
|
+
|
148
|
+
test_process_sets = oci.StackMonitoring.get_process_sets(compartment_id=var["compartment_id"],
|
149
|
+
display_name=var["process_set_display_name"])
|
150
|
+
```
|
151
|
+
|
152
|
+
|
153
|
+
:param str compartment_id: The ID of the compartment in which data is listed.
|
154
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
155
|
+
"""
|
156
|
+
...
|