pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0a1742000109__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 +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,10 @@ class GetModelsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getModels.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, created_by=None, display_name=None, filters=None, id=None, model_version_set_id=None, model_version_set_name=None, models=None, project_id=None, state=None, version_label=None):
|
31
|
+
def __init__(__self__, category=None, compartment_id=None, created_by=None, display_name=None, filters=None, id=None, model_version_set_id=None, model_version_set_name=None, models=None, project_id=None, state=None, version_label=None):
|
32
|
+
if category and not isinstance(category, str):
|
33
|
+
raise TypeError("Expected argument 'category' to be a str")
|
34
|
+
pulumi.set(__self__, "category", category)
|
32
35
|
if compartment_id and not isinstance(compartment_id, str):
|
33
36
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
37
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -63,6 +66,14 @@ class GetModelsResult:
|
|
63
66
|
raise TypeError("Expected argument 'version_label' to be a str")
|
64
67
|
pulumi.set(__self__, "version_label", version_label)
|
65
68
|
|
69
|
+
@property
|
70
|
+
@pulumi.getter
|
71
|
+
def category(self) -> Optional[str]:
|
72
|
+
"""
|
73
|
+
Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "category")
|
76
|
+
|
66
77
|
@property
|
67
78
|
@pulumi.getter(name="compartmentId")
|
68
79
|
def compartment_id(self) -> str:
|
@@ -152,6 +163,7 @@ class AwaitableGetModelsResult(GetModelsResult):
|
|
152
163
|
if False:
|
153
164
|
yield self
|
154
165
|
return GetModelsResult(
|
166
|
+
category=self.category,
|
155
167
|
compartment_id=self.compartment_id,
|
156
168
|
created_by=self.created_by,
|
157
169
|
display_name=self.display_name,
|
@@ -165,7 +177,8 @@ class AwaitableGetModelsResult(GetModelsResult):
|
|
165
177
|
version_label=self.version_label)
|
166
178
|
|
167
179
|
|
168
|
-
def get_models(
|
180
|
+
def get_models(category: Optional[str] = None,
|
181
|
+
compartment_id: Optional[str] = None,
|
169
182
|
created_by: Optional[str] = None,
|
170
183
|
display_name: Optional[str] = None,
|
171
184
|
filters: Optional[Sequence[Union['GetModelsFilterArgs', 'GetModelsFilterArgsDict']]] = None,
|
@@ -188,6 +201,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
188
201
|
import pulumi_oci as oci
|
189
202
|
|
190
203
|
test_models = oci.DataScience.get_models(compartment_id=compartment_id,
|
204
|
+
category=model_category,
|
191
205
|
created_by=model_created_by,
|
192
206
|
display_name=model_display_name,
|
193
207
|
id=model_id,
|
@@ -197,6 +211,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
197
211
|
```
|
198
212
|
|
199
213
|
|
214
|
+
:param str category: Specifies the type of models to list. By default, user models are listed.
|
200
215
|
:param str compartment_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
201
216
|
:param str created_by: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
|
202
217
|
:param str display_name: <b>Filter</b> results by its user-friendly name.
|
@@ -207,6 +222,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
207
222
|
:param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
|
208
223
|
"""
|
209
224
|
__args__ = dict()
|
225
|
+
__args__['category'] = category
|
210
226
|
__args__['compartmentId'] = compartment_id
|
211
227
|
__args__['createdBy'] = created_by
|
212
228
|
__args__['displayName'] = display_name
|
@@ -221,6 +237,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
221
237
|
__ret__ = pulumi.runtime.invoke('oci:DataScience/getModels:getModels', __args__, opts=opts, typ=GetModelsResult).value
|
222
238
|
|
223
239
|
return AwaitableGetModelsResult(
|
240
|
+
category=pulumi.get(__ret__, 'category'),
|
224
241
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
225
242
|
created_by=pulumi.get(__ret__, 'created_by'),
|
226
243
|
display_name=pulumi.get(__ret__, 'display_name'),
|
@@ -232,7 +249,8 @@ def get_models(compartment_id: Optional[str] = None,
|
|
232
249
|
project_id=pulumi.get(__ret__, 'project_id'),
|
233
250
|
state=pulumi.get(__ret__, 'state'),
|
234
251
|
version_label=pulumi.get(__ret__, 'version_label'))
|
235
|
-
def get_models_output(
|
252
|
+
def get_models_output(category: Optional[pulumi.Input[Optional[str]]] = None,
|
253
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
236
254
|
created_by: Optional[pulumi.Input[Optional[str]]] = None,
|
237
255
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
238
256
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetModelsFilterArgs', 'GetModelsFilterArgsDict']]]]] = None,
|
@@ -255,6 +273,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
255
273
|
import pulumi_oci as oci
|
256
274
|
|
257
275
|
test_models = oci.DataScience.get_models(compartment_id=compartment_id,
|
276
|
+
category=model_category,
|
258
277
|
created_by=model_created_by,
|
259
278
|
display_name=model_display_name,
|
260
279
|
id=model_id,
|
@@ -264,6 +283,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
264
283
|
```
|
265
284
|
|
266
285
|
|
286
|
+
:param str category: Specifies the type of models to list. By default, user models are listed.
|
267
287
|
:param str compartment_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
268
288
|
:param str created_by: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
|
269
289
|
:param str display_name: <b>Filter</b> results by its user-friendly name.
|
@@ -274,6 +294,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
274
294
|
:param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
|
275
295
|
"""
|
276
296
|
__args__ = dict()
|
297
|
+
__args__['category'] = category
|
277
298
|
__args__['compartmentId'] = compartment_id
|
278
299
|
__args__['createdBy'] = created_by
|
279
300
|
__args__['displayName'] = display_name
|
@@ -287,6 +308,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
287
308
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
288
309
|
__ret__ = pulumi.runtime.invoke_output('oci:DataScience/getModels:getModels', __args__, opts=opts, typ=GetModelsResult)
|
289
310
|
return __ret__.apply(lambda __response__: GetModelsResult(
|
311
|
+
category=pulumi.get(__response__, 'category'),
|
290
312
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
291
313
|
created_by=pulumi.get(__response__, 'created_by'),
|
292
314
|
display_name=pulumi.get(__response__, 'display_name'),
|
@@ -27,7 +27,7 @@ class GetPipelineResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getPipeline.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, configuration_details=None, created_by=None, defined_tags=None, delete_related_pipeline_runs=None, description=None, display_name=None, freeform_tags=None, id=None, infrastructure_configuration_details=None, lifecycle_details=None, log_configuration_details=None, pipeline_id=None, project_id=None, state=None, step_artifacts=None, step_details=None, system_tags=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, compartment_id=None, configuration_details=None, created_by=None, defined_tags=None, delete_related_pipeline_runs=None, description=None, display_name=None, freeform_tags=None, id=None, infrastructure_configuration_details=None, lifecycle_details=None, log_configuration_details=None, pipeline_id=None, project_id=None, state=None, step_artifacts=None, step_details=None, storage_mount_configuration_details_lists=None, system_tags=None, time_created=None, time_updated=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -79,6 +79,9 @@ class GetPipelineResult:
|
|
79
79
|
if step_details and not isinstance(step_details, list):
|
80
80
|
raise TypeError("Expected argument 'step_details' to be a list")
|
81
81
|
pulumi.set(__self__, "step_details", step_details)
|
82
|
+
if storage_mount_configuration_details_lists and not isinstance(storage_mount_configuration_details_lists, list):
|
83
|
+
raise TypeError("Expected argument 'storage_mount_configuration_details_lists' to be a list")
|
84
|
+
pulumi.set(__self__, "storage_mount_configuration_details_lists", storage_mount_configuration_details_lists)
|
82
85
|
if system_tags and not isinstance(system_tags, dict):
|
83
86
|
raise TypeError("Expected argument 'system_tags' to be a dict")
|
84
87
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -219,6 +222,14 @@ class GetPipelineResult:
|
|
219
222
|
"""
|
220
223
|
return pulumi.get(self, "step_details")
|
221
224
|
|
225
|
+
@property
|
226
|
+
@pulumi.getter(name="storageMountConfigurationDetailsLists")
|
227
|
+
def storage_mount_configuration_details_lists(self) -> Sequence['outputs.GetPipelineStorageMountConfigurationDetailsListResult']:
|
228
|
+
"""
|
229
|
+
The storage mount details to mount to the instance running the pipeline step.
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "storage_mount_configuration_details_lists")
|
232
|
+
|
222
233
|
@property
|
223
234
|
@pulumi.getter(name="systemTags")
|
224
235
|
def system_tags(self) -> Mapping[str, str]:
|
@@ -267,6 +278,7 @@ class AwaitableGetPipelineResult(GetPipelineResult):
|
|
267
278
|
state=self.state,
|
268
279
|
step_artifacts=self.step_artifacts,
|
269
280
|
step_details=self.step_details,
|
281
|
+
storage_mount_configuration_details_lists=self.storage_mount_configuration_details_lists,
|
270
282
|
system_tags=self.system_tags,
|
271
283
|
time_created=self.time_created,
|
272
284
|
time_updated=self.time_updated)
|
@@ -314,6 +326,7 @@ def get_pipeline(pipeline_id: Optional[str] = None,
|
|
314
326
|
state=pulumi.get(__ret__, 'state'),
|
315
327
|
step_artifacts=pulumi.get(__ret__, 'step_artifacts'),
|
316
328
|
step_details=pulumi.get(__ret__, 'step_details'),
|
329
|
+
storage_mount_configuration_details_lists=pulumi.get(__ret__, 'storage_mount_configuration_details_lists'),
|
317
330
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
318
331
|
time_created=pulumi.get(__ret__, 'time_created'),
|
319
332
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
@@ -358,6 +371,7 @@ def get_pipeline_output(pipeline_id: Optional[pulumi.Input[str]] = None,
|
|
358
371
|
state=pulumi.get(__response__, 'state'),
|
359
372
|
step_artifacts=pulumi.get(__response__, 'step_artifacts'),
|
360
373
|
step_details=pulumi.get(__response__, 'step_details'),
|
374
|
+
storage_mount_configuration_details_lists=pulumi.get(__response__, 'storage_mount_configuration_details_lists'),
|
361
375
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
362
376
|
time_created=pulumi.get(__response__, 'time_created'),
|
363
377
|
time_updated=pulumi.get(__response__, 'time_updated')))
|
pulumi_oci/datascience/model.py
CHANGED
@@ -341,6 +341,7 @@ class _ModelState:
|
|
341
341
|
artifact_last_modified: Optional[pulumi.Input[str]] = None,
|
342
342
|
backup_operation_details: Optional[pulumi.Input[Sequence[pulumi.Input['ModelBackupOperationDetailArgs']]]] = None,
|
343
343
|
backup_setting: Optional[pulumi.Input['ModelBackupSettingArgs']] = None,
|
344
|
+
category: Optional[pulumi.Input[str]] = None,
|
344
345
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
345
346
|
created_by: Optional[pulumi.Input[str]] = None,
|
346
347
|
custom_metadata_lists: Optional[pulumi.Input[Sequence[pulumi.Input['ModelCustomMetadataListArgs']]]] = None,
|
@@ -351,6 +352,7 @@ class _ModelState:
|
|
351
352
|
empty_model: Optional[pulumi.Input[bool]] = None,
|
352
353
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
353
354
|
input_schema: Optional[pulumi.Input[str]] = None,
|
355
|
+
is_model_by_reference: Optional[pulumi.Input[bool]] = None,
|
354
356
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
355
357
|
model_artifact: Optional[pulumi.Input[str]] = None,
|
356
358
|
model_version_set_id: Optional[pulumi.Input[str]] = None,
|
@@ -371,6 +373,7 @@ class _ModelState:
|
|
371
373
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
372
374
|
:param pulumi.Input[Sequence[pulumi.Input['ModelBackupOperationDetailArgs']]] backup_operation_details: Backup operation details of the model.
|
373
375
|
:param pulumi.Input['ModelBackupSettingArgs'] backup_setting: (Updatable) Back up setting details of the model.
|
376
|
+
:param pulumi.Input[str] category: Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
|
374
377
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model in.
|
375
378
|
:param pulumi.Input[str] created_by: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the model.
|
376
379
|
:param pulumi.Input[Sequence[pulumi.Input['ModelCustomMetadataListArgs']]] custom_metadata_lists: (Updatable) An array of custom metadata details for the model.
|
@@ -380,6 +383,7 @@ class _ModelState:
|
|
380
383
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My Model`
|
381
384
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
382
385
|
:param pulumi.Input[str] input_schema: Input schema file content in String format
|
386
|
+
:param pulumi.Input[bool] is_model_by_reference: Identifier to indicate whether a model artifact resides in the Service Tenancy or Customer Tenancy.
|
383
387
|
:param pulumi.Input[str] lifecycle_details: Details about the lifecycle state of the model.
|
384
388
|
:param pulumi.Input[str] model_artifact: The model artifact to upload. It is a ZIP archive of the files necessary to run the model. This can be done in a separate step or using cli/sdk. The Model will remain in "Creating" state until its artifact is uploaded.
|
385
389
|
:param pulumi.Input[str] model_version_set_id: The OCID of the model version set that the model is associated to.
|
@@ -404,6 +408,8 @@ class _ModelState:
|
|
404
408
|
pulumi.set(__self__, "backup_operation_details", backup_operation_details)
|
405
409
|
if backup_setting is not None:
|
406
410
|
pulumi.set(__self__, "backup_setting", backup_setting)
|
411
|
+
if category is not None:
|
412
|
+
pulumi.set(__self__, "category", category)
|
407
413
|
if compartment_id is not None:
|
408
414
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
409
415
|
if created_by is not None:
|
@@ -424,6 +430,8 @@ class _ModelState:
|
|
424
430
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
425
431
|
if input_schema is not None:
|
426
432
|
pulumi.set(__self__, "input_schema", input_schema)
|
433
|
+
if is_model_by_reference is not None:
|
434
|
+
pulumi.set(__self__, "is_model_by_reference", is_model_by_reference)
|
427
435
|
if lifecycle_details is not None:
|
428
436
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
429
437
|
if model_artifact is not None:
|
@@ -516,6 +524,18 @@ class _ModelState:
|
|
516
524
|
def backup_setting(self, value: Optional[pulumi.Input['ModelBackupSettingArgs']]):
|
517
525
|
pulumi.set(self, "backup_setting", value)
|
518
526
|
|
527
|
+
@property
|
528
|
+
@pulumi.getter
|
529
|
+
def category(self) -> Optional[pulumi.Input[str]]:
|
530
|
+
"""
|
531
|
+
Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
|
532
|
+
"""
|
533
|
+
return pulumi.get(self, "category")
|
534
|
+
|
535
|
+
@category.setter
|
536
|
+
def category(self, value: Optional[pulumi.Input[str]]):
|
537
|
+
pulumi.set(self, "category", value)
|
538
|
+
|
519
539
|
@property
|
520
540
|
@pulumi.getter(name="compartmentId")
|
521
541
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -633,6 +653,18 @@ class _ModelState:
|
|
633
653
|
def input_schema(self, value: Optional[pulumi.Input[str]]):
|
634
654
|
pulumi.set(self, "input_schema", value)
|
635
655
|
|
656
|
+
@property
|
657
|
+
@pulumi.getter(name="isModelByReference")
|
658
|
+
def is_model_by_reference(self) -> Optional[pulumi.Input[bool]]:
|
659
|
+
"""
|
660
|
+
Identifier to indicate whether a model artifact resides in the Service Tenancy or Customer Tenancy.
|
661
|
+
"""
|
662
|
+
return pulumi.get(self, "is_model_by_reference")
|
663
|
+
|
664
|
+
@is_model_by_reference.setter
|
665
|
+
def is_model_by_reference(self, value: Optional[pulumi.Input[bool]]):
|
666
|
+
pulumi.set(self, "is_model_by_reference", value)
|
667
|
+
|
636
668
|
@property
|
637
669
|
@pulumi.getter(name="lifecycleDetails")
|
638
670
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -813,13 +845,17 @@ class Model(pulumi.CustomResource):
|
|
813
845
|
custom_metadata_lists=[{
|
814
846
|
"category": model_custom_metadata_list_category,
|
815
847
|
"description": model_custom_metadata_list_description,
|
848
|
+
"has_artifact": model_custom_metadata_list_has_artifact,
|
816
849
|
"key": model_custom_metadata_list_key,
|
850
|
+
"keywords": model_custom_metadata_list_keywords,
|
817
851
|
"value": model_custom_metadata_list_value,
|
818
852
|
}],
|
819
853
|
defined_metadata_lists=[{
|
820
854
|
"category": model_defined_metadata_list_category,
|
821
855
|
"description": model_defined_metadata_list_description,
|
856
|
+
"has_artifact": model_defined_metadata_list_has_artifact,
|
822
857
|
"key": model_defined_metadata_list_key,
|
858
|
+
"keywords": model_defined_metadata_list_keywords,
|
823
859
|
"value": model_defined_metadata_list_value,
|
824
860
|
}],
|
825
861
|
defined_tags={
|
@@ -901,13 +937,17 @@ class Model(pulumi.CustomResource):
|
|
901
937
|
custom_metadata_lists=[{
|
902
938
|
"category": model_custom_metadata_list_category,
|
903
939
|
"description": model_custom_metadata_list_description,
|
940
|
+
"has_artifact": model_custom_metadata_list_has_artifact,
|
904
941
|
"key": model_custom_metadata_list_key,
|
942
|
+
"keywords": model_custom_metadata_list_keywords,
|
905
943
|
"value": model_custom_metadata_list_value,
|
906
944
|
}],
|
907
945
|
defined_metadata_lists=[{
|
908
946
|
"category": model_defined_metadata_list_category,
|
909
947
|
"description": model_defined_metadata_list_description,
|
948
|
+
"has_artifact": model_defined_metadata_list_has_artifact,
|
910
949
|
"key": model_defined_metadata_list_key,
|
950
|
+
"keywords": model_defined_metadata_list_keywords,
|
911
951
|
"value": model_defined_metadata_list_value,
|
912
952
|
}],
|
913
953
|
defined_tags={
|
@@ -1009,8 +1049,10 @@ class Model(pulumi.CustomResource):
|
|
1009
1049
|
__props__.__dict__["artifact_content_md5"] = None
|
1010
1050
|
__props__.__dict__["artifact_last_modified"] = None
|
1011
1051
|
__props__.__dict__["backup_operation_details"] = None
|
1052
|
+
__props__.__dict__["category"] = None
|
1012
1053
|
__props__.__dict__["created_by"] = None
|
1013
1054
|
__props__.__dict__["empty_model"] = None
|
1055
|
+
__props__.__dict__["is_model_by_reference"] = None
|
1014
1056
|
__props__.__dict__["lifecycle_details"] = None
|
1015
1057
|
__props__.__dict__["retention_operation_details"] = None
|
1016
1058
|
__props__.__dict__["time_created"] = None
|
@@ -1030,6 +1072,7 @@ class Model(pulumi.CustomResource):
|
|
1030
1072
|
artifact_last_modified: Optional[pulumi.Input[str]] = None,
|
1031
1073
|
backup_operation_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ModelBackupOperationDetailArgs', 'ModelBackupOperationDetailArgsDict']]]]] = None,
|
1032
1074
|
backup_setting: Optional[pulumi.Input[Union['ModelBackupSettingArgs', 'ModelBackupSettingArgsDict']]] = None,
|
1075
|
+
category: Optional[pulumi.Input[str]] = None,
|
1033
1076
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1034
1077
|
created_by: Optional[pulumi.Input[str]] = None,
|
1035
1078
|
custom_metadata_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ModelCustomMetadataListArgs', 'ModelCustomMetadataListArgsDict']]]]] = None,
|
@@ -1040,6 +1083,7 @@ class Model(pulumi.CustomResource):
|
|
1040
1083
|
empty_model: Optional[pulumi.Input[bool]] = None,
|
1041
1084
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1042
1085
|
input_schema: Optional[pulumi.Input[str]] = None,
|
1086
|
+
is_model_by_reference: Optional[pulumi.Input[bool]] = None,
|
1043
1087
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
1044
1088
|
model_artifact: Optional[pulumi.Input[str]] = None,
|
1045
1089
|
model_version_set_id: Optional[pulumi.Input[str]] = None,
|
@@ -1065,6 +1109,7 @@ class Model(pulumi.CustomResource):
|
|
1065
1109
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1066
1110
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ModelBackupOperationDetailArgs', 'ModelBackupOperationDetailArgsDict']]]] backup_operation_details: Backup operation details of the model.
|
1067
1111
|
:param pulumi.Input[Union['ModelBackupSettingArgs', 'ModelBackupSettingArgsDict']] backup_setting: (Updatable) Back up setting details of the model.
|
1112
|
+
:param pulumi.Input[str] category: Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
|
1068
1113
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model in.
|
1069
1114
|
:param pulumi.Input[str] created_by: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the model.
|
1070
1115
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ModelCustomMetadataListArgs', 'ModelCustomMetadataListArgsDict']]]] custom_metadata_lists: (Updatable) An array of custom metadata details for the model.
|
@@ -1074,6 +1119,7 @@ class Model(pulumi.CustomResource):
|
|
1074
1119
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My Model`
|
1075
1120
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1076
1121
|
:param pulumi.Input[str] input_schema: Input schema file content in String format
|
1122
|
+
:param pulumi.Input[bool] is_model_by_reference: Identifier to indicate whether a model artifact resides in the Service Tenancy or Customer Tenancy.
|
1077
1123
|
:param pulumi.Input[str] lifecycle_details: Details about the lifecycle state of the model.
|
1078
1124
|
:param pulumi.Input[str] model_artifact: The model artifact to upload. It is a ZIP archive of the files necessary to run the model. This can be done in a separate step or using cli/sdk. The Model will remain in "Creating" state until its artifact is uploaded.
|
1079
1125
|
:param pulumi.Input[str] model_version_set_id: The OCID of the model version set that the model is associated to.
|
@@ -1096,6 +1142,7 @@ class Model(pulumi.CustomResource):
|
|
1096
1142
|
__props__.__dict__["artifact_last_modified"] = artifact_last_modified
|
1097
1143
|
__props__.__dict__["backup_operation_details"] = backup_operation_details
|
1098
1144
|
__props__.__dict__["backup_setting"] = backup_setting
|
1145
|
+
__props__.__dict__["category"] = category
|
1099
1146
|
__props__.__dict__["compartment_id"] = compartment_id
|
1100
1147
|
__props__.__dict__["created_by"] = created_by
|
1101
1148
|
__props__.__dict__["custom_metadata_lists"] = custom_metadata_lists
|
@@ -1106,6 +1153,7 @@ class Model(pulumi.CustomResource):
|
|
1106
1153
|
__props__.__dict__["empty_model"] = empty_model
|
1107
1154
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1108
1155
|
__props__.__dict__["input_schema"] = input_schema
|
1156
|
+
__props__.__dict__["is_model_by_reference"] = is_model_by_reference
|
1109
1157
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
1110
1158
|
__props__.__dict__["model_artifact"] = model_artifact
|
1111
1159
|
__props__.__dict__["model_version_set_id"] = model_version_set_id
|
@@ -1164,6 +1212,14 @@ class Model(pulumi.CustomResource):
|
|
1164
1212
|
"""
|
1165
1213
|
return pulumi.get(self, "backup_setting")
|
1166
1214
|
|
1215
|
+
@property
|
1216
|
+
@pulumi.getter
|
1217
|
+
def category(self) -> pulumi.Output[str]:
|
1218
|
+
"""
|
1219
|
+
Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
|
1220
|
+
"""
|
1221
|
+
return pulumi.get(self, "category")
|
1222
|
+
|
1167
1223
|
@property
|
1168
1224
|
@pulumi.getter(name="compartmentId")
|
1169
1225
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -1241,6 +1297,14 @@ class Model(pulumi.CustomResource):
|
|
1241
1297
|
"""
|
1242
1298
|
return pulumi.get(self, "input_schema")
|
1243
1299
|
|
1300
|
+
@property
|
1301
|
+
@pulumi.getter(name="isModelByReference")
|
1302
|
+
def is_model_by_reference(self) -> pulumi.Output[bool]:
|
1303
|
+
"""
|
1304
|
+
Identifier to indicate whether a model artifact resides in the Service Tenancy or Customer Tenancy.
|
1305
|
+
"""
|
1306
|
+
return pulumi.get(self, "is_model_by_reference")
|
1307
|
+
|
1244
1308
|
@property
|
1245
1309
|
@pulumi.getter(name="lifecycleDetails")
|
1246
1310
|
def lifecycle_details(self) -> pulumi.Output[str]:
|