pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.14.0a1730198001__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.
Files changed (39) hide show
  1. pulumi_oci/core/_inputs.py +74 -0
  2. pulumi_oci/core/get_instance.py +1 -1
  3. pulumi_oci/core/get_virtual_circuit.py +18 -4
  4. pulumi_oci/core/instance.py +7 -7
  5. pulumi_oci/core/outputs.py +165 -7
  6. pulumi_oci/core/virtual_circuit.py +30 -2
  7. pulumi_oci/database/_inputs.py +642 -0
  8. pulumi_oci/database/autonomous_container_database.py +14 -14
  9. pulumi_oci/database/autonomous_database.py +75 -0
  10. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  11. pulumi_oci/database/get_autonomous_database.py +29 -1
  12. pulumi_oci/database/get_autonomous_databases.py +22 -28
  13. pulumi_oci/database/outputs.py +1669 -86
  14. pulumi_oci/datascience/_inputs.py +353 -0
  15. pulumi_oci/datascience/get_model.py +85 -1
  16. pulumi_oci/datascience/get_models.py +5 -0
  17. pulumi_oci/datascience/model.py +206 -66
  18. pulumi_oci/datascience/outputs.py +759 -0
  19. pulumi_oci/filestorage/_inputs.py +651 -0
  20. pulumi_oci/filestorage/export.py +96 -3
  21. pulumi_oci/filestorage/file_system.py +93 -0
  22. pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
  23. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
  24. pulumi_oci/filestorage/get_outbound_connector.py +26 -1
  25. pulumi_oci/filestorage/get_replication.py +27 -1
  26. pulumi_oci/filestorage/get_snapshot.py +27 -1
  27. pulumi_oci/filestorage/mount_target.py +108 -0
  28. pulumi_oci/filestorage/outbound_connector.py +93 -0
  29. pulumi_oci/filestorage/outputs.py +1218 -2
  30. pulumi_oci/filestorage/replication.py +95 -0
  31. pulumi_oci/filestorage/snapshot.py +97 -2
  32. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
  33. pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
  34. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  35. pulumi_oci/pulumi-plugin.json +1 -1
  36. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/METADATA +1 -1
  37. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/RECORD +39 -39
  38. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/WHEEL +1 -1
  39. {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/top_level.txt +0 -0
@@ -41,6 +41,10 @@ __all__ = [
41
41
  'JobRunJobStorageMountConfigurationDetailsListArgsDict',
42
42
  'JobRunLogDetailArgs',
43
43
  'JobRunLogDetailArgsDict',
44
+ 'ModelBackupOperationDetailArgs',
45
+ 'ModelBackupOperationDetailArgsDict',
46
+ 'ModelBackupSettingArgs',
47
+ 'ModelBackupSettingArgsDict',
44
48
  'ModelCustomMetadataListArgs',
45
49
  'ModelCustomMetadataListArgsDict',
46
50
  'ModelDefinedMetadataListArgs',
@@ -73,6 +77,10 @@ __all__ = [
73
77
  'ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsScalingPolicyAutoScalingPolicyRuleScaleOutConfigurationArgsDict',
74
78
  'ModelDeploymentModelDeploymentSystemDataArgs',
75
79
  'ModelDeploymentModelDeploymentSystemDataArgsDict',
80
+ 'ModelRetentionOperationDetailArgs',
81
+ 'ModelRetentionOperationDetailArgsDict',
82
+ 'ModelRetentionSettingArgs',
83
+ 'ModelRetentionSettingArgsDict',
76
84
  'NotebookSessionNotebookSessionConfigDetailsArgs',
77
85
  'NotebookSessionNotebookSessionConfigDetailsArgsDict',
78
86
  'NotebookSessionNotebookSessionConfigDetailsNotebookSessionShapeConfigDetailsArgs',
@@ -1502,6 +1510,148 @@ class JobRunLogDetailArgs:
1502
1510
  pulumi.set(self, "log_id", value)
1503
1511
 
1504
1512
 
1513
+ if not MYPY:
1514
+ class ModelBackupOperationDetailArgsDict(TypedDict):
1515
+ backup_state: NotRequired[pulumi.Input[str]]
1516
+ """
1517
+ The backup status of the model.
1518
+ """
1519
+ backup_state_details: NotRequired[pulumi.Input[str]]
1520
+ """
1521
+ The backup execution status details of the model.
1522
+ """
1523
+ time_last_backup: NotRequired[pulumi.Input[str]]
1524
+ """
1525
+ The last backup execution time of the model.
1526
+ """
1527
+ elif False:
1528
+ ModelBackupOperationDetailArgsDict: TypeAlias = Mapping[str, Any]
1529
+
1530
+ @pulumi.input_type
1531
+ class ModelBackupOperationDetailArgs:
1532
+ def __init__(__self__, *,
1533
+ backup_state: Optional[pulumi.Input[str]] = None,
1534
+ backup_state_details: Optional[pulumi.Input[str]] = None,
1535
+ time_last_backup: Optional[pulumi.Input[str]] = None):
1536
+ """
1537
+ :param pulumi.Input[str] backup_state: The backup status of the model.
1538
+ :param pulumi.Input[str] backup_state_details: The backup execution status details of the model.
1539
+ :param pulumi.Input[str] time_last_backup: The last backup execution time of the model.
1540
+ """
1541
+ if backup_state is not None:
1542
+ pulumi.set(__self__, "backup_state", backup_state)
1543
+ if backup_state_details is not None:
1544
+ pulumi.set(__self__, "backup_state_details", backup_state_details)
1545
+ if time_last_backup is not None:
1546
+ pulumi.set(__self__, "time_last_backup", time_last_backup)
1547
+
1548
+ @property
1549
+ @pulumi.getter(name="backupState")
1550
+ def backup_state(self) -> Optional[pulumi.Input[str]]:
1551
+ """
1552
+ The backup status of the model.
1553
+ """
1554
+ return pulumi.get(self, "backup_state")
1555
+
1556
+ @backup_state.setter
1557
+ def backup_state(self, value: Optional[pulumi.Input[str]]):
1558
+ pulumi.set(self, "backup_state", value)
1559
+
1560
+ @property
1561
+ @pulumi.getter(name="backupStateDetails")
1562
+ def backup_state_details(self) -> Optional[pulumi.Input[str]]:
1563
+ """
1564
+ The backup execution status details of the model.
1565
+ """
1566
+ return pulumi.get(self, "backup_state_details")
1567
+
1568
+ @backup_state_details.setter
1569
+ def backup_state_details(self, value: Optional[pulumi.Input[str]]):
1570
+ pulumi.set(self, "backup_state_details", value)
1571
+
1572
+ @property
1573
+ @pulumi.getter(name="timeLastBackup")
1574
+ def time_last_backup(self) -> Optional[pulumi.Input[str]]:
1575
+ """
1576
+ The last backup execution time of the model.
1577
+ """
1578
+ return pulumi.get(self, "time_last_backup")
1579
+
1580
+ @time_last_backup.setter
1581
+ def time_last_backup(self, value: Optional[pulumi.Input[str]]):
1582
+ pulumi.set(self, "time_last_backup", value)
1583
+
1584
+
1585
+ if not MYPY:
1586
+ class ModelBackupSettingArgsDict(TypedDict):
1587
+ backup_region: pulumi.Input[str]
1588
+ """
1589
+ (Updatable) Oracle Cloud Infrastructure backup region for the model.
1590
+ """
1591
+ is_backup_enabled: pulumi.Input[bool]
1592
+ """
1593
+ (Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
1594
+ """
1595
+ customer_notification_type: NotRequired[pulumi.Input[str]]
1596
+ """
1597
+ (Updatable) Customer notification on backup success/failure events.
1598
+ """
1599
+ elif False:
1600
+ ModelBackupSettingArgsDict: TypeAlias = Mapping[str, Any]
1601
+
1602
+ @pulumi.input_type
1603
+ class ModelBackupSettingArgs:
1604
+ def __init__(__self__, *,
1605
+ backup_region: pulumi.Input[str],
1606
+ is_backup_enabled: pulumi.Input[bool],
1607
+ customer_notification_type: Optional[pulumi.Input[str]] = None):
1608
+ """
1609
+ :param pulumi.Input[str] backup_region: (Updatable) Oracle Cloud Infrastructure backup region for the model.
1610
+ :param pulumi.Input[bool] is_backup_enabled: (Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
1611
+ :param pulumi.Input[str] customer_notification_type: (Updatable) Customer notification on backup success/failure events.
1612
+ """
1613
+ pulumi.set(__self__, "backup_region", backup_region)
1614
+ pulumi.set(__self__, "is_backup_enabled", is_backup_enabled)
1615
+ if customer_notification_type is not None:
1616
+ pulumi.set(__self__, "customer_notification_type", customer_notification_type)
1617
+
1618
+ @property
1619
+ @pulumi.getter(name="backupRegion")
1620
+ def backup_region(self) -> pulumi.Input[str]:
1621
+ """
1622
+ (Updatable) Oracle Cloud Infrastructure backup region for the model.
1623
+ """
1624
+ return pulumi.get(self, "backup_region")
1625
+
1626
+ @backup_region.setter
1627
+ def backup_region(self, value: pulumi.Input[str]):
1628
+ pulumi.set(self, "backup_region", value)
1629
+
1630
+ @property
1631
+ @pulumi.getter(name="isBackupEnabled")
1632
+ def is_backup_enabled(self) -> pulumi.Input[bool]:
1633
+ """
1634
+ (Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
1635
+ """
1636
+ return pulumi.get(self, "is_backup_enabled")
1637
+
1638
+ @is_backup_enabled.setter
1639
+ def is_backup_enabled(self, value: pulumi.Input[bool]):
1640
+ pulumi.set(self, "is_backup_enabled", value)
1641
+
1642
+ @property
1643
+ @pulumi.getter(name="customerNotificationType")
1644
+ def customer_notification_type(self) -> Optional[pulumi.Input[str]]:
1645
+ """
1646
+ (Updatable) Customer notification on backup success/failure events.
1647
+ """
1648
+ return pulumi.get(self, "customer_notification_type")
1649
+
1650
+ @customer_notification_type.setter
1651
+ def customer_notification_type(self, value: Optional[pulumi.Input[str]]):
1652
+ pulumi.set(self, "customer_notification_type", value)
1653
+
1654
+
1505
1655
  if not MYPY:
1506
1656
  class ModelCustomMetadataListArgsDict(TypedDict):
1507
1657
  category: NotRequired[pulumi.Input[str]]
@@ -3035,6 +3185,209 @@ class ModelDeploymentModelDeploymentSystemDataArgs:
3035
3185
  pulumi.set(self, "system_infra_type", value)
3036
3186
 
3037
3187
 
3188
+ if not MYPY:
3189
+ class ModelRetentionOperationDetailArgsDict(TypedDict):
3190
+ archive_state: NotRequired[pulumi.Input[str]]
3191
+ """
3192
+ The archival status of model.
3193
+ """
3194
+ archive_state_details: NotRequired[pulumi.Input[str]]
3195
+ """
3196
+ The archival state details of the model.
3197
+ """
3198
+ delete_state: NotRequired[pulumi.Input[str]]
3199
+ """
3200
+ The deletion status of the archived model.
3201
+ """
3202
+ delete_state_details: NotRequired[pulumi.Input[str]]
3203
+ """
3204
+ The deletion status details of the archived model.
3205
+ """
3206
+ time_archival_scheduled: NotRequired[pulumi.Input[str]]
3207
+ """
3208
+ The estimated archival time of the model based on the provided retention setting.
3209
+ """
3210
+ time_deletion_scheduled: NotRequired[pulumi.Input[str]]
3211
+ """
3212
+ The estimated deletion time of the model based on the provided retention setting.
3213
+ """
3214
+ elif False:
3215
+ ModelRetentionOperationDetailArgsDict: TypeAlias = Mapping[str, Any]
3216
+
3217
+ @pulumi.input_type
3218
+ class ModelRetentionOperationDetailArgs:
3219
+ def __init__(__self__, *,
3220
+ archive_state: Optional[pulumi.Input[str]] = None,
3221
+ archive_state_details: Optional[pulumi.Input[str]] = None,
3222
+ delete_state: Optional[pulumi.Input[str]] = None,
3223
+ delete_state_details: Optional[pulumi.Input[str]] = None,
3224
+ time_archival_scheduled: Optional[pulumi.Input[str]] = None,
3225
+ time_deletion_scheduled: Optional[pulumi.Input[str]] = None):
3226
+ """
3227
+ :param pulumi.Input[str] archive_state: The archival status of model.
3228
+ :param pulumi.Input[str] archive_state_details: The archival state details of the model.
3229
+ :param pulumi.Input[str] delete_state: The deletion status of the archived model.
3230
+ :param pulumi.Input[str] delete_state_details: The deletion status details of the archived model.
3231
+ :param pulumi.Input[str] time_archival_scheduled: The estimated archival time of the model based on the provided retention setting.
3232
+ :param pulumi.Input[str] time_deletion_scheduled: The estimated deletion time of the model based on the provided retention setting.
3233
+ """
3234
+ if archive_state is not None:
3235
+ pulumi.set(__self__, "archive_state", archive_state)
3236
+ if archive_state_details is not None:
3237
+ pulumi.set(__self__, "archive_state_details", archive_state_details)
3238
+ if delete_state is not None:
3239
+ pulumi.set(__self__, "delete_state", delete_state)
3240
+ if delete_state_details is not None:
3241
+ pulumi.set(__self__, "delete_state_details", delete_state_details)
3242
+ if time_archival_scheduled is not None:
3243
+ pulumi.set(__self__, "time_archival_scheduled", time_archival_scheduled)
3244
+ if time_deletion_scheduled is not None:
3245
+ pulumi.set(__self__, "time_deletion_scheduled", time_deletion_scheduled)
3246
+
3247
+ @property
3248
+ @pulumi.getter(name="archiveState")
3249
+ def archive_state(self) -> Optional[pulumi.Input[str]]:
3250
+ """
3251
+ The archival status of model.
3252
+ """
3253
+ return pulumi.get(self, "archive_state")
3254
+
3255
+ @archive_state.setter
3256
+ def archive_state(self, value: Optional[pulumi.Input[str]]):
3257
+ pulumi.set(self, "archive_state", value)
3258
+
3259
+ @property
3260
+ @pulumi.getter(name="archiveStateDetails")
3261
+ def archive_state_details(self) -> Optional[pulumi.Input[str]]:
3262
+ """
3263
+ The archival state details of the model.
3264
+ """
3265
+ return pulumi.get(self, "archive_state_details")
3266
+
3267
+ @archive_state_details.setter
3268
+ def archive_state_details(self, value: Optional[pulumi.Input[str]]):
3269
+ pulumi.set(self, "archive_state_details", value)
3270
+
3271
+ @property
3272
+ @pulumi.getter(name="deleteState")
3273
+ def delete_state(self) -> Optional[pulumi.Input[str]]:
3274
+ """
3275
+ The deletion status of the archived model.
3276
+ """
3277
+ return pulumi.get(self, "delete_state")
3278
+
3279
+ @delete_state.setter
3280
+ def delete_state(self, value: Optional[pulumi.Input[str]]):
3281
+ pulumi.set(self, "delete_state", value)
3282
+
3283
+ @property
3284
+ @pulumi.getter(name="deleteStateDetails")
3285
+ def delete_state_details(self) -> Optional[pulumi.Input[str]]:
3286
+ """
3287
+ The deletion status details of the archived model.
3288
+ """
3289
+ return pulumi.get(self, "delete_state_details")
3290
+
3291
+ @delete_state_details.setter
3292
+ def delete_state_details(self, value: Optional[pulumi.Input[str]]):
3293
+ pulumi.set(self, "delete_state_details", value)
3294
+
3295
+ @property
3296
+ @pulumi.getter(name="timeArchivalScheduled")
3297
+ def time_archival_scheduled(self) -> Optional[pulumi.Input[str]]:
3298
+ """
3299
+ The estimated archival time of the model based on the provided retention setting.
3300
+ """
3301
+ return pulumi.get(self, "time_archival_scheduled")
3302
+
3303
+ @time_archival_scheduled.setter
3304
+ def time_archival_scheduled(self, value: Optional[pulumi.Input[str]]):
3305
+ pulumi.set(self, "time_archival_scheduled", value)
3306
+
3307
+ @property
3308
+ @pulumi.getter(name="timeDeletionScheduled")
3309
+ def time_deletion_scheduled(self) -> Optional[pulumi.Input[str]]:
3310
+ """
3311
+ The estimated deletion time of the model based on the provided retention setting.
3312
+ """
3313
+ return pulumi.get(self, "time_deletion_scheduled")
3314
+
3315
+ @time_deletion_scheduled.setter
3316
+ def time_deletion_scheduled(self, value: Optional[pulumi.Input[str]]):
3317
+ pulumi.set(self, "time_deletion_scheduled", value)
3318
+
3319
+
3320
+ if not MYPY:
3321
+ class ModelRetentionSettingArgsDict(TypedDict):
3322
+ archive_after_days: pulumi.Input[int]
3323
+ """
3324
+ (Updatable) Number of days after which the model will be archived.
3325
+ """
3326
+ customer_notification_type: NotRequired[pulumi.Input[str]]
3327
+ """
3328
+ (Updatable) Customer notification options on success/failure of archival, deletion events.
3329
+ """
3330
+ delete_after_days: NotRequired[pulumi.Input[int]]
3331
+ """
3332
+ (Updatable) Number of days after which the archived model will be deleted.
3333
+ """
3334
+ elif False:
3335
+ ModelRetentionSettingArgsDict: TypeAlias = Mapping[str, Any]
3336
+
3337
+ @pulumi.input_type
3338
+ class ModelRetentionSettingArgs:
3339
+ def __init__(__self__, *,
3340
+ archive_after_days: pulumi.Input[int],
3341
+ customer_notification_type: Optional[pulumi.Input[str]] = None,
3342
+ delete_after_days: Optional[pulumi.Input[int]] = None):
3343
+ """
3344
+ :param pulumi.Input[int] archive_after_days: (Updatable) Number of days after which the model will be archived.
3345
+ :param pulumi.Input[str] customer_notification_type: (Updatable) Customer notification options on success/failure of archival, deletion events.
3346
+ :param pulumi.Input[int] delete_after_days: (Updatable) Number of days after which the archived model will be deleted.
3347
+ """
3348
+ pulumi.set(__self__, "archive_after_days", archive_after_days)
3349
+ if customer_notification_type is not None:
3350
+ pulumi.set(__self__, "customer_notification_type", customer_notification_type)
3351
+ if delete_after_days is not None:
3352
+ pulumi.set(__self__, "delete_after_days", delete_after_days)
3353
+
3354
+ @property
3355
+ @pulumi.getter(name="archiveAfterDays")
3356
+ def archive_after_days(self) -> pulumi.Input[int]:
3357
+ """
3358
+ (Updatable) Number of days after which the model will be archived.
3359
+ """
3360
+ return pulumi.get(self, "archive_after_days")
3361
+
3362
+ @archive_after_days.setter
3363
+ def archive_after_days(self, value: pulumi.Input[int]):
3364
+ pulumi.set(self, "archive_after_days", value)
3365
+
3366
+ @property
3367
+ @pulumi.getter(name="customerNotificationType")
3368
+ def customer_notification_type(self) -> Optional[pulumi.Input[str]]:
3369
+ """
3370
+ (Updatable) Customer notification options on success/failure of archival, deletion events.
3371
+ """
3372
+ return pulumi.get(self, "customer_notification_type")
3373
+
3374
+ @customer_notification_type.setter
3375
+ def customer_notification_type(self, value: Optional[pulumi.Input[str]]):
3376
+ pulumi.set(self, "customer_notification_type", value)
3377
+
3378
+ @property
3379
+ @pulumi.getter(name="deleteAfterDays")
3380
+ def delete_after_days(self) -> Optional[pulumi.Input[int]]:
3381
+ """
3382
+ (Updatable) Number of days after which the archived model will be deleted.
3383
+ """
3384
+ return pulumi.get(self, "delete_after_days")
3385
+
3386
+ @delete_after_days.setter
3387
+ def delete_after_days(self, value: Optional[pulumi.Input[int]]):
3388
+ pulumi.set(self, "delete_after_days", value)
3389
+
3390
+
3038
3391
  if not MYPY:
3039
3392
  class NotebookSessionNotebookSessionConfigDetailsArgsDict(TypedDict):
3040
3393
  shape: pulumi.Input[str]
@@ -27,7 +27,7 @@ class GetModelResult:
27
27
  """
28
28
  A collection of values returned by getModel.
29
29
  """
30
- def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, compartment_id=None, created_by=None, custom_metadata_lists=None, defined_metadata_lists=None, defined_tags=None, description=None, display_name=None, empty_model=None, freeform_tags=None, id=None, input_schema=None, model_artifact=None, model_id=None, output_schema=None, project_id=None, state=None, time_created=None):
30
+ def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, backup_operation_details=None, backup_settings=None, compartment_id=None, created_by=None, custom_metadata_lists=None, defined_metadata_lists=None, defined_tags=None, description=None, display_name=None, empty_model=None, freeform_tags=None, id=None, input_schema=None, lifecycle_details=None, model_artifact=None, model_id=None, model_version_set_name=None, output_schema=None, project_id=None, retention_operation_details=None, retention_settings=None, state=None, time_created=None):
31
31
  if artifact_content_disposition and not isinstance(artifact_content_disposition, str):
32
32
  raise TypeError("Expected argument 'artifact_content_disposition' to be a str")
33
33
  pulumi.set(__self__, "artifact_content_disposition", artifact_content_disposition)
@@ -40,6 +40,12 @@ class GetModelResult:
40
40
  if artifact_last_modified and not isinstance(artifact_last_modified, str):
41
41
  raise TypeError("Expected argument 'artifact_last_modified' to be a str")
42
42
  pulumi.set(__self__, "artifact_last_modified", artifact_last_modified)
43
+ if backup_operation_details and not isinstance(backup_operation_details, list):
44
+ raise TypeError("Expected argument 'backup_operation_details' to be a list")
45
+ pulumi.set(__self__, "backup_operation_details", backup_operation_details)
46
+ if backup_settings and not isinstance(backup_settings, list):
47
+ raise TypeError("Expected argument 'backup_settings' to be a list")
48
+ pulumi.set(__self__, "backup_settings", backup_settings)
43
49
  if compartment_id and not isinstance(compartment_id, str):
44
50
  raise TypeError("Expected argument 'compartment_id' to be a str")
45
51
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -73,18 +79,30 @@ class GetModelResult:
73
79
  if input_schema and not isinstance(input_schema, str):
74
80
  raise TypeError("Expected argument 'input_schema' to be a str")
75
81
  pulumi.set(__self__, "input_schema", input_schema)
82
+ if lifecycle_details and not isinstance(lifecycle_details, str):
83
+ raise TypeError("Expected argument 'lifecycle_details' to be a str")
84
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
76
85
  if model_artifact and not isinstance(model_artifact, str):
77
86
  raise TypeError("Expected argument 'model_artifact' to be a str")
78
87
  pulumi.set(__self__, "model_artifact", model_artifact)
79
88
  if model_id and not isinstance(model_id, str):
80
89
  raise TypeError("Expected argument 'model_id' to be a str")
81
90
  pulumi.set(__self__, "model_id", model_id)
91
+ if model_version_set_name and not isinstance(model_version_set_name, str):
92
+ raise TypeError("Expected argument 'model_version_set_name' to be a str")
93
+ pulumi.set(__self__, "model_version_set_name", model_version_set_name)
82
94
  if output_schema and not isinstance(output_schema, str):
83
95
  raise TypeError("Expected argument 'output_schema' to be a str")
84
96
  pulumi.set(__self__, "output_schema", output_schema)
85
97
  if project_id and not isinstance(project_id, str):
86
98
  raise TypeError("Expected argument 'project_id' to be a str")
87
99
  pulumi.set(__self__, "project_id", project_id)
100
+ if retention_operation_details and not isinstance(retention_operation_details, list):
101
+ raise TypeError("Expected argument 'retention_operation_details' to be a list")
102
+ pulumi.set(__self__, "retention_operation_details", retention_operation_details)
103
+ if retention_settings and not isinstance(retention_settings, list):
104
+ raise TypeError("Expected argument 'retention_settings' to be a list")
105
+ pulumi.set(__self__, "retention_settings", retention_settings)
88
106
  if state and not isinstance(state, str):
89
107
  raise TypeError("Expected argument 'state' to be a str")
90
108
  pulumi.set(__self__, "state", state)
@@ -112,6 +130,22 @@ class GetModelResult:
112
130
  def artifact_last_modified(self) -> str:
113
131
  return pulumi.get(self, "artifact_last_modified")
114
132
 
133
+ @property
134
+ @pulumi.getter(name="backupOperationDetails")
135
+ def backup_operation_details(self) -> Sequence['outputs.GetModelBackupOperationDetailResult']:
136
+ """
137
+ Backup operation details of the model.
138
+ """
139
+ return pulumi.get(self, "backup_operation_details")
140
+
141
+ @property
142
+ @pulumi.getter(name="backupSettings")
143
+ def backup_settings(self) -> Sequence['outputs.GetModelBackupSettingResult']:
144
+ """
145
+ Back up setting details of the model.
146
+ """
147
+ return pulumi.get(self, "backup_settings")
148
+
115
149
  @property
116
150
  @pulumi.getter(name="compartmentId")
117
151
  def compartment_id(self) -> str:
@@ -197,6 +231,14 @@ class GetModelResult:
197
231
  """
198
232
  return pulumi.get(self, "input_schema")
199
233
 
234
+ @property
235
+ @pulumi.getter(name="lifecycleDetails")
236
+ def lifecycle_details(self) -> str:
237
+ """
238
+ Details about the lifecycle state of the model.
239
+ """
240
+ return pulumi.get(self, "lifecycle_details")
241
+
200
242
  @property
201
243
  @pulumi.getter(name="modelArtifact")
202
244
  def model_artifact(self) -> str:
@@ -207,6 +249,14 @@ class GetModelResult:
207
249
  def model_id(self) -> str:
208
250
  return pulumi.get(self, "model_id")
209
251
 
252
+ @property
253
+ @pulumi.getter(name="modelVersionSetName")
254
+ def model_version_set_name(self) -> str:
255
+ """
256
+ The name of the model version set that the model is associated to.
257
+ """
258
+ return pulumi.get(self, "model_version_set_name")
259
+
210
260
  @property
211
261
  @pulumi.getter(name="outputSchema")
212
262
  def output_schema(self) -> str:
@@ -223,6 +273,22 @@ class GetModelResult:
223
273
  """
224
274
  return pulumi.get(self, "project_id")
225
275
 
276
+ @property
277
+ @pulumi.getter(name="retentionOperationDetails")
278
+ def retention_operation_details(self) -> Sequence['outputs.GetModelRetentionOperationDetailResult']:
279
+ """
280
+ Retention operation details for the model.
281
+ """
282
+ return pulumi.get(self, "retention_operation_details")
283
+
284
+ @property
285
+ @pulumi.getter(name="retentionSettings")
286
+ def retention_settings(self) -> Sequence['outputs.GetModelRetentionSettingResult']:
287
+ """
288
+ Retention setting details of the model.
289
+ """
290
+ return pulumi.get(self, "retention_settings")
291
+
226
292
  @property
227
293
  @pulumi.getter
228
294
  def state(self) -> str:
@@ -250,6 +316,8 @@ class AwaitableGetModelResult(GetModelResult):
250
316
  artifact_content_length=self.artifact_content_length,
251
317
  artifact_content_md5=self.artifact_content_md5,
252
318
  artifact_last_modified=self.artifact_last_modified,
319
+ backup_operation_details=self.backup_operation_details,
320
+ backup_settings=self.backup_settings,
253
321
  compartment_id=self.compartment_id,
254
322
  created_by=self.created_by,
255
323
  custom_metadata_lists=self.custom_metadata_lists,
@@ -261,10 +329,14 @@ class AwaitableGetModelResult(GetModelResult):
261
329
  freeform_tags=self.freeform_tags,
262
330
  id=self.id,
263
331
  input_schema=self.input_schema,
332
+ lifecycle_details=self.lifecycle_details,
264
333
  model_artifact=self.model_artifact,
265
334
  model_id=self.model_id,
335
+ model_version_set_name=self.model_version_set_name,
266
336
  output_schema=self.output_schema,
267
337
  project_id=self.project_id,
338
+ retention_operation_details=self.retention_operation_details,
339
+ retention_settings=self.retention_settings,
268
340
  state=self.state,
269
341
  time_created=self.time_created)
270
342
 
@@ -298,6 +370,8 @@ def get_model(model_id: Optional[str] = None,
298
370
  artifact_content_length=pulumi.get(__ret__, 'artifact_content_length'),
299
371
  artifact_content_md5=pulumi.get(__ret__, 'artifact_content_md5'),
300
372
  artifact_last_modified=pulumi.get(__ret__, 'artifact_last_modified'),
373
+ backup_operation_details=pulumi.get(__ret__, 'backup_operation_details'),
374
+ backup_settings=pulumi.get(__ret__, 'backup_settings'),
301
375
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
302
376
  created_by=pulumi.get(__ret__, 'created_by'),
303
377
  custom_metadata_lists=pulumi.get(__ret__, 'custom_metadata_lists'),
@@ -309,10 +383,14 @@ def get_model(model_id: Optional[str] = None,
309
383
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
310
384
  id=pulumi.get(__ret__, 'id'),
311
385
  input_schema=pulumi.get(__ret__, 'input_schema'),
386
+ lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
312
387
  model_artifact=pulumi.get(__ret__, 'model_artifact'),
313
388
  model_id=pulumi.get(__ret__, 'model_id'),
389
+ model_version_set_name=pulumi.get(__ret__, 'model_version_set_name'),
314
390
  output_schema=pulumi.get(__ret__, 'output_schema'),
315
391
  project_id=pulumi.get(__ret__, 'project_id'),
392
+ retention_operation_details=pulumi.get(__ret__, 'retention_operation_details'),
393
+ retention_settings=pulumi.get(__ret__, 'retention_settings'),
316
394
  state=pulumi.get(__ret__, 'state'),
317
395
  time_created=pulumi.get(__ret__, 'time_created'))
318
396
  def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
@@ -343,6 +421,8 @@ def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
343
421
  artifact_content_length=pulumi.get(__response__, 'artifact_content_length'),
344
422
  artifact_content_md5=pulumi.get(__response__, 'artifact_content_md5'),
345
423
  artifact_last_modified=pulumi.get(__response__, 'artifact_last_modified'),
424
+ backup_operation_details=pulumi.get(__response__, 'backup_operation_details'),
425
+ backup_settings=pulumi.get(__response__, 'backup_settings'),
346
426
  compartment_id=pulumi.get(__response__, 'compartment_id'),
347
427
  created_by=pulumi.get(__response__, 'created_by'),
348
428
  custom_metadata_lists=pulumi.get(__response__, 'custom_metadata_lists'),
@@ -354,9 +434,13 @@ def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
354
434
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
355
435
  id=pulumi.get(__response__, 'id'),
356
436
  input_schema=pulumi.get(__response__, 'input_schema'),
437
+ lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
357
438
  model_artifact=pulumi.get(__response__, 'model_artifact'),
358
439
  model_id=pulumi.get(__response__, 'model_id'),
440
+ model_version_set_name=pulumi.get(__response__, 'model_version_set_name'),
359
441
  output_schema=pulumi.get(__response__, 'output_schema'),
360
442
  project_id=pulumi.get(__response__, 'project_id'),
443
+ retention_operation_details=pulumi.get(__response__, 'retention_operation_details'),
444
+ retention_settings=pulumi.get(__response__, 'retention_settings'),
361
445
  state=pulumi.get(__response__, 'state'),
362
446
  time_created=pulumi.get(__response__, 'time_created')))
@@ -100,6 +100,9 @@ class GetModelsResult:
100
100
  @property
101
101
  @pulumi.getter(name="modelVersionSetName")
102
102
  def model_version_set_name(self) -> str:
103
+ """
104
+ The name of the model version set that the model is associated to.
105
+ """
103
106
  return pulumi.get(self, "model_version_set_name")
104
107
 
105
108
  @property
@@ -185,6 +188,7 @@ def get_models(compartment_id: Optional[str] = None,
185
188
  :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.
186
189
  :param str display_name: <b>Filter</b> results by its user-friendly name.
187
190
  :param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
191
+ :param str model_version_set_name: The name of the model version set that the model is associated to.
188
192
  :param str project_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
189
193
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
190
194
  """
@@ -247,6 +251,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
247
251
  :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.
248
252
  :param str display_name: <b>Filter</b> results by its user-friendly name.
249
253
  :param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
254
+ :param str model_version_set_name: The name of the model version set that the model is associated to.
250
255
  :param str project_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
251
256
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
252
257
  """