pulumi-oci 2.1.0__py3-none-any.whl → 2.1.0a1719905039__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 +0 -43
- pulumi_oci/database/__init__.py +0 -11
- pulumi_oci/database/_inputs.py +0 -607
- pulumi_oci/database/db_node.py +0 -28
- pulumi_oci/database/get_backups.py +5 -22
- pulumi_oci/database/get_db_node.py +1 -14
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_gi_versions.py +5 -22
- pulumi_oci/database/outputs.py +0 -2050
- pulumi_oci/database/pluggable_database.py +7 -7
- pulumi_oci/databasemigration/__init__.py +0 -6
- pulumi_oci/databasemigration/_inputs.py +0 -1577
- pulumi_oci/databasemigration/get_job_advisor_report.py +10 -2
- pulumi_oci/databasemigration/get_migration_object_types.py +13 -24
- pulumi_oci/databasemigration/job.py +20 -16
- pulumi_oci/databasemigration/outputs.py +72 -4300
- pulumi_oci/filestorage/_inputs.py +18 -10
- pulumi_oci/filestorage/export.py +7 -28
- pulumi_oci/filestorage/file_system.py +35 -159
- pulumi_oci/filestorage/outputs.py +34 -55
- pulumi_oci/generativeai/_inputs.py +2 -50
- pulumi_oci/generativeai/dedicated_ai_cluster.py +2 -30
- pulumi_oci/generativeai/endpoint.py +2 -2
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +47 -2
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +14 -2
- pulumi_oci/generativeai/get_endpoint.py +26 -2
- pulumi_oci/generativeai/get_endpoints.py +8 -2
- pulumi_oci/generativeai/get_model.py +38 -2
- pulumi_oci/generativeai/get_models.py +8 -2
- pulumi_oci/generativeai/model.py +2 -2
- pulumi_oci/generativeai/outputs.py +310 -86
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/METADATA +1 -1
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/RECORD +36 -59
- pulumi_oci/database/exadb_vm_cluster.py +0 -1761
- pulumi_oci/database/exascale_db_storage_vault.py +0 -787
- pulumi_oci/database/get_exadb_vm_cluster.py +0 -614
- pulumi_oci/database/get_exadb_vm_cluster_update.py +0 -226
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +0 -153
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +0 -226
- pulumi_oci/database/get_exadb_vm_cluster_updates.py +0 -173
- pulumi_oci/database/get_exadb_vm_clusters.py +0 -196
- pulumi_oci/database/get_exascale_db_storage_vault.py +0 -301
- pulumi_oci/database/get_exascale_db_storage_vaults.py +0 -176
- pulumi_oci/database/get_gi_version_minor_versions.py +0 -221
- pulumi_oci/databasemigration/connection.py +0 -2019
- pulumi_oci/databasemigration/get_connection.py +0 -616
- pulumi_oci/databasemigration/get_connections.py +0 -225
- pulumi_oci/databasemigration/get_migration.py +0 -427
- pulumi_oci/databasemigration/get_migrations.py +0 -407
- pulumi_oci/databasemigration/migration.py +0 -1471
- pulumi_oci/resourcescheduler/__init__.py +0 -12
- pulumi_oci/resourcescheduler/_inputs.py +0 -224
- pulumi_oci/resourcescheduler/get_schedule.py +0 -340
- pulumi_oci/resourcescheduler/get_schedules.py +0 -193
- pulumi_oci/resourcescheduler/outputs.py +0 -687
- pulumi_oci/resourcescheduler/schedule.py +0 -977
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/top_level.txt +0 -0
@@ -46,6 +46,9 @@ class GetDedicatedAiClustersResult:
|
|
46
46
|
@property
|
47
47
|
@pulumi.getter(name="compartmentId")
|
48
48
|
def compartment_id(self) -> str:
|
49
|
+
"""
|
50
|
+
The compartment OCID to create the dedicated AI cluster in.
|
51
|
+
"""
|
49
52
|
return pulumi.get(self, "compartment_id")
|
50
53
|
|
51
54
|
@property
|
@@ -59,6 +62,9 @@ class GetDedicatedAiClustersResult:
|
|
59
62
|
@property
|
60
63
|
@pulumi.getter(name="displayName")
|
61
64
|
def display_name(self) -> Optional[str]:
|
65
|
+
"""
|
66
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
67
|
+
"""
|
62
68
|
return pulumi.get(self, "display_name")
|
63
69
|
|
64
70
|
@property
|
@@ -69,11 +75,17 @@ class GetDedicatedAiClustersResult:
|
|
69
75
|
@property
|
70
76
|
@pulumi.getter
|
71
77
|
def id(self) -> Optional[str]:
|
78
|
+
"""
|
79
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster.
|
80
|
+
"""
|
72
81
|
return pulumi.get(self, "id")
|
73
82
|
|
74
83
|
@property
|
75
84
|
@pulumi.getter
|
76
85
|
def state(self) -> Optional[str]:
|
86
|
+
"""
|
87
|
+
The current state of the dedicated AI cluster.
|
88
|
+
"""
|
77
89
|
return pulumi.get(self, "state")
|
78
90
|
|
79
91
|
|
@@ -98,7 +110,7 @@ def get_dedicated_ai_clusters(compartment_id: Optional[str] = None,
|
|
98
110
|
state: Optional[str] = None,
|
99
111
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedAiClustersResult:
|
100
112
|
"""
|
101
|
-
This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative
|
113
|
+
This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative Ai service.
|
102
114
|
|
103
115
|
Lists the dedicated AI clusters in a specific compartment.
|
104
116
|
|
@@ -146,7 +158,7 @@ def get_dedicated_ai_clusters_output(compartment_id: Optional[pulumi.Input[str]]
|
|
146
158
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
147
159
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDedicatedAiClustersResult]:
|
148
160
|
"""
|
149
|
-
This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative
|
161
|
+
This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative Ai service.
|
150
162
|
|
151
163
|
Lists the dedicated AI clusters in a specific compartment.
|
152
164
|
|
@@ -72,16 +72,25 @@ class GetEndpointResult:
|
|
72
72
|
@property
|
73
73
|
@pulumi.getter(name="compartmentId")
|
74
74
|
def compartment_id(self) -> str:
|
75
|
+
"""
|
76
|
+
The compartment OCID to create the endpoint in.
|
77
|
+
"""
|
75
78
|
return pulumi.get(self, "compartment_id")
|
76
79
|
|
77
80
|
@property
|
78
81
|
@pulumi.getter(name="contentModerationConfigs")
|
79
82
|
def content_moderation_configs(self) -> Sequence['outputs.GetEndpointContentModerationConfigResult']:
|
83
|
+
"""
|
84
|
+
The configuration details, whether to add the content moderation feature to the model. Content moderation removes toxic and biased content from responses. It's recommended to use content moderation.
|
85
|
+
"""
|
80
86
|
return pulumi.get(self, "content_moderation_configs")
|
81
87
|
|
82
88
|
@property
|
83
89
|
@pulumi.getter(name="dedicatedAiClusterId")
|
84
90
|
def dedicated_ai_cluster_id(self) -> str:
|
91
|
+
"""
|
92
|
+
The OCID of the dedicated AI cluster on which the model will be deployed to.
|
93
|
+
"""
|
85
94
|
return pulumi.get(self, "dedicated_ai_cluster_id")
|
86
95
|
|
87
96
|
@property
|
@@ -95,11 +104,17 @@ class GetEndpointResult:
|
|
95
104
|
@property
|
96
105
|
@pulumi.getter
|
97
106
|
def description(self) -> str:
|
107
|
+
"""
|
108
|
+
An optional description of the endpoint.
|
109
|
+
"""
|
98
110
|
return pulumi.get(self, "description")
|
99
111
|
|
100
112
|
@property
|
101
113
|
@pulumi.getter(name="displayName")
|
102
114
|
def display_name(self) -> str:
|
115
|
+
"""
|
116
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
117
|
+
"""
|
103
118
|
return pulumi.get(self, "display_name")
|
104
119
|
|
105
120
|
@property
|
@@ -110,6 +125,9 @@ class GetEndpointResult:
|
|
110
125
|
@property
|
111
126
|
@pulumi.getter(name="freeformTags")
|
112
127
|
def freeform_tags(self) -> Mapping[str, Any]:
|
128
|
+
"""
|
129
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
130
|
+
"""
|
113
131
|
return pulumi.get(self, "freeform_tags")
|
114
132
|
|
115
133
|
@property
|
@@ -123,6 +141,9 @@ class GetEndpointResult:
|
|
123
141
|
@property
|
124
142
|
@pulumi.getter(name="lifecycleDetails")
|
125
143
|
def lifecycle_details(self) -> str:
|
144
|
+
"""
|
145
|
+
A message describing the current state of the endpoint in more detail that can provide actionable information.
|
146
|
+
"""
|
126
147
|
return pulumi.get(self, "lifecycle_details")
|
127
148
|
|
128
149
|
@property
|
@@ -144,6 +165,9 @@ class GetEndpointResult:
|
|
144
165
|
@property
|
145
166
|
@pulumi.getter(name="systemTags")
|
146
167
|
def system_tags(self) -> Mapping[str, Any]:
|
168
|
+
"""
|
169
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
170
|
+
"""
|
147
171
|
return pulumi.get(self, "system_tags")
|
148
172
|
|
149
173
|
@property
|
@@ -189,7 +213,7 @@ class AwaitableGetEndpointResult(GetEndpointResult):
|
|
189
213
|
def get_endpoint(endpoint_id: Optional[str] = None,
|
190
214
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEndpointResult:
|
191
215
|
"""
|
192
|
-
This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative
|
216
|
+
This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative Ai service.
|
193
217
|
|
194
218
|
Gets information about an endpoint.
|
195
219
|
|
@@ -232,7 +256,7 @@ def get_endpoint(endpoint_id: Optional[str] = None,
|
|
232
256
|
def get_endpoint_output(endpoint_id: Optional[pulumi.Input[str]] = None,
|
233
257
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEndpointResult]:
|
234
258
|
"""
|
235
|
-
This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative
|
259
|
+
This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative Ai service.
|
236
260
|
|
237
261
|
Gets information about an endpoint.
|
238
262
|
|
@@ -46,11 +46,17 @@ class GetEndpointsResult:
|
|
46
46
|
@property
|
47
47
|
@pulumi.getter(name="compartmentId")
|
48
48
|
def compartment_id(self) -> str:
|
49
|
+
"""
|
50
|
+
The compartment OCID to create the endpoint in.
|
51
|
+
"""
|
49
52
|
return pulumi.get(self, "compartment_id")
|
50
53
|
|
51
54
|
@property
|
52
55
|
@pulumi.getter(name="displayName")
|
53
56
|
def display_name(self) -> Optional[str]:
|
57
|
+
"""
|
58
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
59
|
+
"""
|
54
60
|
return pulumi.get(self, "display_name")
|
55
61
|
|
56
62
|
@property
|
@@ -104,7 +110,7 @@ def get_endpoints(compartment_id: Optional[str] = None,
|
|
104
110
|
state: Optional[str] = None,
|
105
111
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEndpointsResult:
|
106
112
|
"""
|
107
|
-
This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative
|
113
|
+
This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative Ai service.
|
108
114
|
|
109
115
|
Lists the endpoints of a specific compartment.
|
110
116
|
|
@@ -152,7 +158,7 @@ def get_endpoints_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
152
158
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
153
159
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEndpointsResult]:
|
154
160
|
"""
|
155
|
-
This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative
|
161
|
+
This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative Ai service.
|
156
162
|
|
157
163
|
Lists the endpoints of a specific compartment.
|
158
164
|
|
@@ -90,6 +90,9 @@ class GetModelResult:
|
|
90
90
|
@property
|
91
91
|
@pulumi.getter(name="baseModelId")
|
92
92
|
def base_model_id(self) -> str:
|
93
|
+
"""
|
94
|
+
The OCID of the base model that's used for fine-tuning. For pretrained models, the value is null.
|
95
|
+
"""
|
93
96
|
return pulumi.get(self, "base_model_id")
|
94
97
|
|
95
98
|
@property
|
@@ -119,21 +122,33 @@ class GetModelResult:
|
|
119
122
|
@property
|
120
123
|
@pulumi.getter
|
121
124
|
def description(self) -> str:
|
125
|
+
"""
|
126
|
+
An optional description of the model.
|
127
|
+
"""
|
122
128
|
return pulumi.get(self, "description")
|
123
129
|
|
124
130
|
@property
|
125
131
|
@pulumi.getter(name="displayName")
|
126
132
|
def display_name(self) -> str:
|
133
|
+
"""
|
134
|
+
A user-friendly name.
|
135
|
+
"""
|
127
136
|
return pulumi.get(self, "display_name")
|
128
137
|
|
129
138
|
@property
|
130
139
|
@pulumi.getter(name="fineTuneDetails")
|
131
140
|
def fine_tune_details(self) -> Sequence['outputs.GetModelFineTuneDetailResult']:
|
141
|
+
"""
|
142
|
+
Details about fine-tuning a custom model.
|
143
|
+
"""
|
132
144
|
return pulumi.get(self, "fine_tune_details")
|
133
145
|
|
134
146
|
@property
|
135
147
|
@pulumi.getter(name="freeformTags")
|
136
148
|
def freeform_tags(self) -> Mapping[str, Any]:
|
149
|
+
"""
|
150
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
151
|
+
"""
|
137
152
|
return pulumi.get(self, "freeform_tags")
|
138
153
|
|
139
154
|
@property
|
@@ -147,11 +162,17 @@ class GetModelResult:
|
|
147
162
|
@property
|
148
163
|
@pulumi.getter(name="isLongTermSupported")
|
149
164
|
def is_long_term_supported(self) -> bool:
|
165
|
+
"""
|
166
|
+
Whether a model is supported long-term. Only applicable to base models.
|
167
|
+
"""
|
150
168
|
return pulumi.get(self, "is_long_term_supported")
|
151
169
|
|
152
170
|
@property
|
153
171
|
@pulumi.getter(name="lifecycleDetails")
|
154
172
|
def lifecycle_details(self) -> str:
|
173
|
+
"""
|
174
|
+
A message describing the current state of the model in more detail that can provide actionable information.
|
175
|
+
"""
|
155
176
|
return pulumi.get(self, "lifecycle_details")
|
156
177
|
|
157
178
|
@property
|
@@ -162,6 +183,9 @@ class GetModelResult:
|
|
162
183
|
@property
|
163
184
|
@pulumi.getter(name="modelMetrics")
|
164
185
|
def model_metrics(self) -> Sequence['outputs.GetModelModelMetricResult']:
|
186
|
+
"""
|
187
|
+
Model metrics during the creation of a new model.
|
188
|
+
"""
|
165
189
|
return pulumi.get(self, "model_metrics")
|
166
190
|
|
167
191
|
@property
|
@@ -175,11 +199,17 @@ class GetModelResult:
|
|
175
199
|
@property
|
176
200
|
@pulumi.getter(name="systemTags")
|
177
201
|
def system_tags(self) -> Mapping[str, Any]:
|
202
|
+
"""
|
203
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
204
|
+
"""
|
178
205
|
return pulumi.get(self, "system_tags")
|
179
206
|
|
180
207
|
@property
|
181
208
|
@pulumi.getter(name="timeCreated")
|
182
209
|
def time_created(self) -> str:
|
210
|
+
"""
|
211
|
+
The date and time that the model was created in the format of an RFC3339 datetime string.
|
212
|
+
"""
|
183
213
|
return pulumi.get(self, "time_created")
|
184
214
|
|
185
215
|
@property
|
@@ -193,6 +223,9 @@ class GetModelResult:
|
|
193
223
|
@property
|
194
224
|
@pulumi.getter(name="timeUpdated")
|
195
225
|
def time_updated(self) -> str:
|
226
|
+
"""
|
227
|
+
The date and time that the model was updated in the format of an RFC3339 datetime string.
|
228
|
+
"""
|
196
229
|
return pulumi.get(self, "time_updated")
|
197
230
|
|
198
231
|
@property
|
@@ -206,6 +239,9 @@ class GetModelResult:
|
|
206
239
|
@property
|
207
240
|
@pulumi.getter
|
208
241
|
def vendor(self) -> str:
|
242
|
+
"""
|
243
|
+
The provider of the base model.
|
244
|
+
"""
|
209
245
|
return pulumi.get(self, "vendor")
|
210
246
|
|
211
247
|
@property
|
@@ -249,7 +285,7 @@ class AwaitableGetModelResult(GetModelResult):
|
|
249
285
|
def get_model(model_id: Optional[str] = None,
|
250
286
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetModelResult:
|
251
287
|
"""
|
252
|
-
This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative
|
288
|
+
This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative Ai service.
|
253
289
|
|
254
290
|
Gets information about a custom model.
|
255
291
|
|
@@ -298,7 +334,7 @@ def get_model(model_id: Optional[str] = None,
|
|
298
334
|
def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
|
299
335
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetModelResult]:
|
300
336
|
"""
|
301
|
-
This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative
|
337
|
+
This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative Ai service.
|
302
338
|
|
303
339
|
Gets information about a custom model.
|
304
340
|
|
@@ -65,6 +65,9 @@ class GetModelsResult:
|
|
65
65
|
@property
|
66
66
|
@pulumi.getter(name="displayName")
|
67
67
|
def display_name(self) -> Optional[str]:
|
68
|
+
"""
|
69
|
+
A user-friendly name.
|
70
|
+
"""
|
68
71
|
return pulumi.get(self, "display_name")
|
69
72
|
|
70
73
|
@property
|
@@ -99,6 +102,9 @@ class GetModelsResult:
|
|
99
102
|
@property
|
100
103
|
@pulumi.getter
|
101
104
|
def vendor(self) -> Optional[str]:
|
105
|
+
"""
|
106
|
+
The provider of the base model.
|
107
|
+
"""
|
102
108
|
return pulumi.get(self, "vendor")
|
103
109
|
|
104
110
|
|
@@ -127,7 +133,7 @@ def get_models(capabilities: Optional[Sequence[str]] = None,
|
|
127
133
|
vendor: Optional[str] = None,
|
128
134
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetModelsResult:
|
129
135
|
"""
|
130
|
-
This data source provides the list of Models in Oracle Cloud Infrastructure Generative
|
136
|
+
This data source provides the list of Models in Oracle Cloud Infrastructure Generative Ai service.
|
131
137
|
|
132
138
|
Lists the models in a specific compartment. Includes pretrained base models and fine-tuned custom models.
|
133
139
|
|
@@ -185,7 +191,7 @@ def get_models_output(capabilities: Optional[pulumi.Input[Optional[Sequence[str]
|
|
185
191
|
vendor: Optional[pulumi.Input[Optional[str]]] = None,
|
186
192
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetModelsResult]:
|
187
193
|
"""
|
188
|
-
This data source provides the list of Models in Oracle Cloud Infrastructure Generative
|
194
|
+
This data source provides the list of Models in Oracle Cloud Infrastructure Generative Ai service.
|
189
195
|
|
190
196
|
Lists the models in a specific compartment. Includes pretrained base models and fine-tuned custom models.
|
191
197
|
|
pulumi_oci/generativeai/model.py
CHANGED
@@ -506,7 +506,7 @@ class Model(pulumi.CustomResource):
|
|
506
506
|
version: Optional[pulumi.Input[str]] = None,
|
507
507
|
__props__=None):
|
508
508
|
"""
|
509
|
-
This resource provides the Model resource in Oracle Cloud Infrastructure Generative
|
509
|
+
This resource provides the Model resource in Oracle Cloud Infrastructure Generative Ai service.
|
510
510
|
|
511
511
|
Creates a custom model by fine-tuning a base model with your own dataset. You can create a new custom models or create a new version of existing custom model..
|
512
512
|
|
@@ -543,7 +543,7 @@ class Model(pulumi.CustomResource):
|
|
543
543
|
args: ModelArgs,
|
544
544
|
opts: Optional[pulumi.ResourceOptions] = None):
|
545
545
|
"""
|
546
|
-
This resource provides the Model resource in Oracle Cloud Infrastructure Generative
|
546
|
+
This resource provides the Model resource in Oracle Cloud Infrastructure Generative Ai service.
|
547
547
|
|
548
548
|
Creates a custom model by fine-tuning a base model with your own dataset. You can create a new custom models or create a new version of existing custom model..
|
549
549
|
|