pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.15.0__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/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/_inputs.py +74 -0
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +165 -7
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +113 -4
- pulumi_oci/datascience/get_models.py +30 -5
- pulumi_oci/datascience/model.py +346 -5
- pulumi_oci/datascience/outputs.py +778 -1
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +24 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +65 -63
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,8 @@ __all__ = [
|
|
29
29
|
'JobRunJobLogConfigurationOverrideDetails',
|
30
30
|
'JobRunJobStorageMountConfigurationDetailsList',
|
31
31
|
'JobRunLogDetail',
|
32
|
+
'ModelBackupOperationDetail',
|
33
|
+
'ModelBackupSetting',
|
32
34
|
'ModelCustomMetadataList',
|
33
35
|
'ModelDefinedMetadataList',
|
34
36
|
'ModelDeploymentCategoryLogDetails',
|
@@ -45,6 +47,8 @@ __all__ = [
|
|
45
47
|
'ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsScalingPolicyAutoScalingPolicyRuleScaleInConfiguration',
|
46
48
|
'ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsScalingPolicyAutoScalingPolicyRuleScaleOutConfiguration',
|
47
49
|
'ModelDeploymentModelDeploymentSystemData',
|
50
|
+
'ModelRetentionOperationDetail',
|
51
|
+
'ModelRetentionSetting',
|
48
52
|
'NotebookSessionNotebookSessionConfigDetails',
|
49
53
|
'NotebookSessionNotebookSessionConfigDetailsNotebookSessionShapeConfigDetails',
|
50
54
|
'NotebookSessionNotebookSessionConfigurationDetails',
|
@@ -105,6 +109,8 @@ __all__ = [
|
|
105
109
|
'GetJobsJobJobInfrastructureConfigurationDetailJobShapeConfigDetailResult',
|
106
110
|
'GetJobsJobJobLogConfigurationDetailResult',
|
107
111
|
'GetJobsJobJobStorageMountConfigurationDetailsListResult',
|
112
|
+
'GetModelBackupOperationDetailResult',
|
113
|
+
'GetModelBackupSettingResult',
|
108
114
|
'GetModelCustomMetadataListResult',
|
109
115
|
'GetModelDefinedMetadataListResult',
|
110
116
|
'GetModelDeploymentCategoryLogDetailResult',
|
@@ -139,12 +145,18 @@ __all__ = [
|
|
139
145
|
'GetModelDeploymentsModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailScalingPolicyAutoScalingPolicyRuleScaleInConfigurationResult',
|
140
146
|
'GetModelDeploymentsModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailScalingPolicyAutoScalingPolicyRuleScaleOutConfigurationResult',
|
141
147
|
'GetModelDeploymentsModelDeploymentModelDeploymentSystemDataResult',
|
148
|
+
'GetModelRetentionOperationDetailResult',
|
149
|
+
'GetModelRetentionSettingResult',
|
142
150
|
'GetModelVersionSetsFilterResult',
|
143
151
|
'GetModelVersionSetsModelVersionSetResult',
|
144
152
|
'GetModelsFilterResult',
|
145
153
|
'GetModelsModelResult',
|
154
|
+
'GetModelsModelBackupOperationDetailResult',
|
155
|
+
'GetModelsModelBackupSettingResult',
|
146
156
|
'GetModelsModelCustomMetadataListResult',
|
147
157
|
'GetModelsModelDefinedMetadataListResult',
|
158
|
+
'GetModelsModelRetentionOperationDetailResult',
|
159
|
+
'GetModelsModelRetentionSettingResult',
|
148
160
|
'GetNotebookSessionNotebookSessionConfigDetailResult',
|
149
161
|
'GetNotebookSessionNotebookSessionConfigDetailNotebookSessionShapeConfigDetailResult',
|
150
162
|
'GetNotebookSessionNotebookSessionConfigurationDetailResult',
|
@@ -1298,6 +1310,132 @@ class JobRunLogDetail(dict):
|
|
1298
1310
|
return pulumi.get(self, "log_id")
|
1299
1311
|
|
1300
1312
|
|
1313
|
+
@pulumi.output_type
|
1314
|
+
class ModelBackupOperationDetail(dict):
|
1315
|
+
@staticmethod
|
1316
|
+
def __key_warning(key: str):
|
1317
|
+
suggest = None
|
1318
|
+
if key == "backupState":
|
1319
|
+
suggest = "backup_state"
|
1320
|
+
elif key == "backupStateDetails":
|
1321
|
+
suggest = "backup_state_details"
|
1322
|
+
elif key == "timeLastBackup":
|
1323
|
+
suggest = "time_last_backup"
|
1324
|
+
|
1325
|
+
if suggest:
|
1326
|
+
pulumi.log.warn(f"Key '{key}' not found in ModelBackupOperationDetail. Access the value via the '{suggest}' property getter instead.")
|
1327
|
+
|
1328
|
+
def __getitem__(self, key: str) -> Any:
|
1329
|
+
ModelBackupOperationDetail.__key_warning(key)
|
1330
|
+
return super().__getitem__(key)
|
1331
|
+
|
1332
|
+
def get(self, key: str, default = None) -> Any:
|
1333
|
+
ModelBackupOperationDetail.__key_warning(key)
|
1334
|
+
return super().get(key, default)
|
1335
|
+
|
1336
|
+
def __init__(__self__, *,
|
1337
|
+
backup_state: Optional[str] = None,
|
1338
|
+
backup_state_details: Optional[str] = None,
|
1339
|
+
time_last_backup: Optional[str] = None):
|
1340
|
+
"""
|
1341
|
+
:param str backup_state: The backup status of the model.
|
1342
|
+
:param str backup_state_details: The backup execution status details of the model.
|
1343
|
+
:param str time_last_backup: The last backup execution time of the model.
|
1344
|
+
"""
|
1345
|
+
if backup_state is not None:
|
1346
|
+
pulumi.set(__self__, "backup_state", backup_state)
|
1347
|
+
if backup_state_details is not None:
|
1348
|
+
pulumi.set(__self__, "backup_state_details", backup_state_details)
|
1349
|
+
if time_last_backup is not None:
|
1350
|
+
pulumi.set(__self__, "time_last_backup", time_last_backup)
|
1351
|
+
|
1352
|
+
@property
|
1353
|
+
@pulumi.getter(name="backupState")
|
1354
|
+
def backup_state(self) -> Optional[str]:
|
1355
|
+
"""
|
1356
|
+
The backup status of the model.
|
1357
|
+
"""
|
1358
|
+
return pulumi.get(self, "backup_state")
|
1359
|
+
|
1360
|
+
@property
|
1361
|
+
@pulumi.getter(name="backupStateDetails")
|
1362
|
+
def backup_state_details(self) -> Optional[str]:
|
1363
|
+
"""
|
1364
|
+
The backup execution status details of the model.
|
1365
|
+
"""
|
1366
|
+
return pulumi.get(self, "backup_state_details")
|
1367
|
+
|
1368
|
+
@property
|
1369
|
+
@pulumi.getter(name="timeLastBackup")
|
1370
|
+
def time_last_backup(self) -> Optional[str]:
|
1371
|
+
"""
|
1372
|
+
The last backup execution time of the model.
|
1373
|
+
"""
|
1374
|
+
return pulumi.get(self, "time_last_backup")
|
1375
|
+
|
1376
|
+
|
1377
|
+
@pulumi.output_type
|
1378
|
+
class ModelBackupSetting(dict):
|
1379
|
+
@staticmethod
|
1380
|
+
def __key_warning(key: str):
|
1381
|
+
suggest = None
|
1382
|
+
if key == "backupRegion":
|
1383
|
+
suggest = "backup_region"
|
1384
|
+
elif key == "isBackupEnabled":
|
1385
|
+
suggest = "is_backup_enabled"
|
1386
|
+
elif key == "customerNotificationType":
|
1387
|
+
suggest = "customer_notification_type"
|
1388
|
+
|
1389
|
+
if suggest:
|
1390
|
+
pulumi.log.warn(f"Key '{key}' not found in ModelBackupSetting. Access the value via the '{suggest}' property getter instead.")
|
1391
|
+
|
1392
|
+
def __getitem__(self, key: str) -> Any:
|
1393
|
+
ModelBackupSetting.__key_warning(key)
|
1394
|
+
return super().__getitem__(key)
|
1395
|
+
|
1396
|
+
def get(self, key: str, default = None) -> Any:
|
1397
|
+
ModelBackupSetting.__key_warning(key)
|
1398
|
+
return super().get(key, default)
|
1399
|
+
|
1400
|
+
def __init__(__self__, *,
|
1401
|
+
backup_region: str,
|
1402
|
+
is_backup_enabled: bool,
|
1403
|
+
customer_notification_type: Optional[str] = None):
|
1404
|
+
"""
|
1405
|
+
:param str backup_region: (Updatable) Oracle Cloud Infrastructure backup region for the model.
|
1406
|
+
:param bool is_backup_enabled: (Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
|
1407
|
+
:param str customer_notification_type: (Updatable) Customer notification on backup success/failure events.
|
1408
|
+
"""
|
1409
|
+
pulumi.set(__self__, "backup_region", backup_region)
|
1410
|
+
pulumi.set(__self__, "is_backup_enabled", is_backup_enabled)
|
1411
|
+
if customer_notification_type is not None:
|
1412
|
+
pulumi.set(__self__, "customer_notification_type", customer_notification_type)
|
1413
|
+
|
1414
|
+
@property
|
1415
|
+
@pulumi.getter(name="backupRegion")
|
1416
|
+
def backup_region(self) -> str:
|
1417
|
+
"""
|
1418
|
+
(Updatable) Oracle Cloud Infrastructure backup region for the model.
|
1419
|
+
"""
|
1420
|
+
return pulumi.get(self, "backup_region")
|
1421
|
+
|
1422
|
+
@property
|
1423
|
+
@pulumi.getter(name="isBackupEnabled")
|
1424
|
+
def is_backup_enabled(self) -> bool:
|
1425
|
+
"""
|
1426
|
+
(Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
|
1427
|
+
"""
|
1428
|
+
return pulumi.get(self, "is_backup_enabled")
|
1429
|
+
|
1430
|
+
@property
|
1431
|
+
@pulumi.getter(name="customerNotificationType")
|
1432
|
+
def customer_notification_type(self) -> Optional[str]:
|
1433
|
+
"""
|
1434
|
+
(Updatable) Customer notification on backup success/failure events.
|
1435
|
+
"""
|
1436
|
+
return pulumi.get(self, "customer_notification_type")
|
1437
|
+
|
1438
|
+
|
1301
1439
|
@pulumi.output_type
|
1302
1440
|
class ModelCustomMetadataList(dict):
|
1303
1441
|
def __init__(__self__, *,
|
@@ -2496,6 +2634,175 @@ class ModelDeploymentModelDeploymentSystemData(dict):
|
|
2496
2634
|
return pulumi.get(self, "system_infra_type")
|
2497
2635
|
|
2498
2636
|
|
2637
|
+
@pulumi.output_type
|
2638
|
+
class ModelRetentionOperationDetail(dict):
|
2639
|
+
@staticmethod
|
2640
|
+
def __key_warning(key: str):
|
2641
|
+
suggest = None
|
2642
|
+
if key == "archiveState":
|
2643
|
+
suggest = "archive_state"
|
2644
|
+
elif key == "archiveStateDetails":
|
2645
|
+
suggest = "archive_state_details"
|
2646
|
+
elif key == "deleteState":
|
2647
|
+
suggest = "delete_state"
|
2648
|
+
elif key == "deleteStateDetails":
|
2649
|
+
suggest = "delete_state_details"
|
2650
|
+
elif key == "timeArchivalScheduled":
|
2651
|
+
suggest = "time_archival_scheduled"
|
2652
|
+
elif key == "timeDeletionScheduled":
|
2653
|
+
suggest = "time_deletion_scheduled"
|
2654
|
+
|
2655
|
+
if suggest:
|
2656
|
+
pulumi.log.warn(f"Key '{key}' not found in ModelRetentionOperationDetail. Access the value via the '{suggest}' property getter instead.")
|
2657
|
+
|
2658
|
+
def __getitem__(self, key: str) -> Any:
|
2659
|
+
ModelRetentionOperationDetail.__key_warning(key)
|
2660
|
+
return super().__getitem__(key)
|
2661
|
+
|
2662
|
+
def get(self, key: str, default = None) -> Any:
|
2663
|
+
ModelRetentionOperationDetail.__key_warning(key)
|
2664
|
+
return super().get(key, default)
|
2665
|
+
|
2666
|
+
def __init__(__self__, *,
|
2667
|
+
archive_state: Optional[str] = None,
|
2668
|
+
archive_state_details: Optional[str] = None,
|
2669
|
+
delete_state: Optional[str] = None,
|
2670
|
+
delete_state_details: Optional[str] = None,
|
2671
|
+
time_archival_scheduled: Optional[str] = None,
|
2672
|
+
time_deletion_scheduled: Optional[str] = None):
|
2673
|
+
"""
|
2674
|
+
:param str archive_state: The archival status of model.
|
2675
|
+
:param str archive_state_details: The archival state details of the model.
|
2676
|
+
:param str delete_state: The deletion status of the archived model.
|
2677
|
+
:param str delete_state_details: The deletion status details of the archived model.
|
2678
|
+
:param str time_archival_scheduled: The estimated archival time of the model based on the provided retention setting.
|
2679
|
+
:param str time_deletion_scheduled: The estimated deletion time of the model based on the provided retention setting.
|
2680
|
+
"""
|
2681
|
+
if archive_state is not None:
|
2682
|
+
pulumi.set(__self__, "archive_state", archive_state)
|
2683
|
+
if archive_state_details is not None:
|
2684
|
+
pulumi.set(__self__, "archive_state_details", archive_state_details)
|
2685
|
+
if delete_state is not None:
|
2686
|
+
pulumi.set(__self__, "delete_state", delete_state)
|
2687
|
+
if delete_state_details is not None:
|
2688
|
+
pulumi.set(__self__, "delete_state_details", delete_state_details)
|
2689
|
+
if time_archival_scheduled is not None:
|
2690
|
+
pulumi.set(__self__, "time_archival_scheduled", time_archival_scheduled)
|
2691
|
+
if time_deletion_scheduled is not None:
|
2692
|
+
pulumi.set(__self__, "time_deletion_scheduled", time_deletion_scheduled)
|
2693
|
+
|
2694
|
+
@property
|
2695
|
+
@pulumi.getter(name="archiveState")
|
2696
|
+
def archive_state(self) -> Optional[str]:
|
2697
|
+
"""
|
2698
|
+
The archival status of model.
|
2699
|
+
"""
|
2700
|
+
return pulumi.get(self, "archive_state")
|
2701
|
+
|
2702
|
+
@property
|
2703
|
+
@pulumi.getter(name="archiveStateDetails")
|
2704
|
+
def archive_state_details(self) -> Optional[str]:
|
2705
|
+
"""
|
2706
|
+
The archival state details of the model.
|
2707
|
+
"""
|
2708
|
+
return pulumi.get(self, "archive_state_details")
|
2709
|
+
|
2710
|
+
@property
|
2711
|
+
@pulumi.getter(name="deleteState")
|
2712
|
+
def delete_state(self) -> Optional[str]:
|
2713
|
+
"""
|
2714
|
+
The deletion status of the archived model.
|
2715
|
+
"""
|
2716
|
+
return pulumi.get(self, "delete_state")
|
2717
|
+
|
2718
|
+
@property
|
2719
|
+
@pulumi.getter(name="deleteStateDetails")
|
2720
|
+
def delete_state_details(self) -> Optional[str]:
|
2721
|
+
"""
|
2722
|
+
The deletion status details of the archived model.
|
2723
|
+
"""
|
2724
|
+
return pulumi.get(self, "delete_state_details")
|
2725
|
+
|
2726
|
+
@property
|
2727
|
+
@pulumi.getter(name="timeArchivalScheduled")
|
2728
|
+
def time_archival_scheduled(self) -> Optional[str]:
|
2729
|
+
"""
|
2730
|
+
The estimated archival time of the model based on the provided retention setting.
|
2731
|
+
"""
|
2732
|
+
return pulumi.get(self, "time_archival_scheduled")
|
2733
|
+
|
2734
|
+
@property
|
2735
|
+
@pulumi.getter(name="timeDeletionScheduled")
|
2736
|
+
def time_deletion_scheduled(self) -> Optional[str]:
|
2737
|
+
"""
|
2738
|
+
The estimated deletion time of the model based on the provided retention setting.
|
2739
|
+
"""
|
2740
|
+
return pulumi.get(self, "time_deletion_scheduled")
|
2741
|
+
|
2742
|
+
|
2743
|
+
@pulumi.output_type
|
2744
|
+
class ModelRetentionSetting(dict):
|
2745
|
+
@staticmethod
|
2746
|
+
def __key_warning(key: str):
|
2747
|
+
suggest = None
|
2748
|
+
if key == "archiveAfterDays":
|
2749
|
+
suggest = "archive_after_days"
|
2750
|
+
elif key == "customerNotificationType":
|
2751
|
+
suggest = "customer_notification_type"
|
2752
|
+
elif key == "deleteAfterDays":
|
2753
|
+
suggest = "delete_after_days"
|
2754
|
+
|
2755
|
+
if suggest:
|
2756
|
+
pulumi.log.warn(f"Key '{key}' not found in ModelRetentionSetting. Access the value via the '{suggest}' property getter instead.")
|
2757
|
+
|
2758
|
+
def __getitem__(self, key: str) -> Any:
|
2759
|
+
ModelRetentionSetting.__key_warning(key)
|
2760
|
+
return super().__getitem__(key)
|
2761
|
+
|
2762
|
+
def get(self, key: str, default = None) -> Any:
|
2763
|
+
ModelRetentionSetting.__key_warning(key)
|
2764
|
+
return super().get(key, default)
|
2765
|
+
|
2766
|
+
def __init__(__self__, *,
|
2767
|
+
archive_after_days: int,
|
2768
|
+
customer_notification_type: Optional[str] = None,
|
2769
|
+
delete_after_days: Optional[int] = None):
|
2770
|
+
"""
|
2771
|
+
:param int archive_after_days: (Updatable) Number of days after which the model will be archived.
|
2772
|
+
:param str customer_notification_type: (Updatable) Customer notification options on success/failure of archival, deletion events.
|
2773
|
+
:param int delete_after_days: (Updatable) Number of days after which the archived model will be deleted.
|
2774
|
+
"""
|
2775
|
+
pulumi.set(__self__, "archive_after_days", archive_after_days)
|
2776
|
+
if customer_notification_type is not None:
|
2777
|
+
pulumi.set(__self__, "customer_notification_type", customer_notification_type)
|
2778
|
+
if delete_after_days is not None:
|
2779
|
+
pulumi.set(__self__, "delete_after_days", delete_after_days)
|
2780
|
+
|
2781
|
+
@property
|
2782
|
+
@pulumi.getter(name="archiveAfterDays")
|
2783
|
+
def archive_after_days(self) -> int:
|
2784
|
+
"""
|
2785
|
+
(Updatable) Number of days after which the model will be archived.
|
2786
|
+
"""
|
2787
|
+
return pulumi.get(self, "archive_after_days")
|
2788
|
+
|
2789
|
+
@property
|
2790
|
+
@pulumi.getter(name="customerNotificationType")
|
2791
|
+
def customer_notification_type(self) -> Optional[str]:
|
2792
|
+
"""
|
2793
|
+
(Updatable) Customer notification options on success/failure of archival, deletion events.
|
2794
|
+
"""
|
2795
|
+
return pulumi.get(self, "customer_notification_type")
|
2796
|
+
|
2797
|
+
@property
|
2798
|
+
@pulumi.getter(name="deleteAfterDays")
|
2799
|
+
def delete_after_days(self) -> Optional[int]:
|
2800
|
+
"""
|
2801
|
+
(Updatable) Number of days after which the archived model will be deleted.
|
2802
|
+
"""
|
2803
|
+
return pulumi.get(self, "delete_after_days")
|
2804
|
+
|
2805
|
+
|
2499
2806
|
@pulumi.output_type
|
2500
2807
|
class NotebookSessionNotebookSessionConfigDetails(dict):
|
2501
2808
|
@staticmethod
|
@@ -6626,6 +6933,86 @@ class GetJobsJobJobStorageMountConfigurationDetailsListResult(dict):
|
|
6626
6933
|
return pulumi.get(self, "storage_type")
|
6627
6934
|
|
6628
6935
|
|
6936
|
+
@pulumi.output_type
|
6937
|
+
class GetModelBackupOperationDetailResult(dict):
|
6938
|
+
def __init__(__self__, *,
|
6939
|
+
backup_state: str,
|
6940
|
+
backup_state_details: str,
|
6941
|
+
time_last_backup: str):
|
6942
|
+
"""
|
6943
|
+
:param str backup_state: The backup status of the model.
|
6944
|
+
:param str backup_state_details: The backup execution status details of the model.
|
6945
|
+
:param str time_last_backup: The last backup execution time of the model.
|
6946
|
+
"""
|
6947
|
+
pulumi.set(__self__, "backup_state", backup_state)
|
6948
|
+
pulumi.set(__self__, "backup_state_details", backup_state_details)
|
6949
|
+
pulumi.set(__self__, "time_last_backup", time_last_backup)
|
6950
|
+
|
6951
|
+
@property
|
6952
|
+
@pulumi.getter(name="backupState")
|
6953
|
+
def backup_state(self) -> str:
|
6954
|
+
"""
|
6955
|
+
The backup status of the model.
|
6956
|
+
"""
|
6957
|
+
return pulumi.get(self, "backup_state")
|
6958
|
+
|
6959
|
+
@property
|
6960
|
+
@pulumi.getter(name="backupStateDetails")
|
6961
|
+
def backup_state_details(self) -> str:
|
6962
|
+
"""
|
6963
|
+
The backup execution status details of the model.
|
6964
|
+
"""
|
6965
|
+
return pulumi.get(self, "backup_state_details")
|
6966
|
+
|
6967
|
+
@property
|
6968
|
+
@pulumi.getter(name="timeLastBackup")
|
6969
|
+
def time_last_backup(self) -> str:
|
6970
|
+
"""
|
6971
|
+
The last backup execution time of the model.
|
6972
|
+
"""
|
6973
|
+
return pulumi.get(self, "time_last_backup")
|
6974
|
+
|
6975
|
+
|
6976
|
+
@pulumi.output_type
|
6977
|
+
class GetModelBackupSettingResult(dict):
|
6978
|
+
def __init__(__self__, *,
|
6979
|
+
backup_region: str,
|
6980
|
+
customer_notification_type: str,
|
6981
|
+
is_backup_enabled: bool):
|
6982
|
+
"""
|
6983
|
+
:param str backup_region: Oracle Cloud Infrastructure backup region for the model.
|
6984
|
+
:param str customer_notification_type: Customer notification options on success/failure of archival, deletion events.
|
6985
|
+
:param bool is_backup_enabled: Boolean flag representing whether backup needs to be enabled/disabled for the model.
|
6986
|
+
"""
|
6987
|
+
pulumi.set(__self__, "backup_region", backup_region)
|
6988
|
+
pulumi.set(__self__, "customer_notification_type", customer_notification_type)
|
6989
|
+
pulumi.set(__self__, "is_backup_enabled", is_backup_enabled)
|
6990
|
+
|
6991
|
+
@property
|
6992
|
+
@pulumi.getter(name="backupRegion")
|
6993
|
+
def backup_region(self) -> str:
|
6994
|
+
"""
|
6995
|
+
Oracle Cloud Infrastructure backup region for the model.
|
6996
|
+
"""
|
6997
|
+
return pulumi.get(self, "backup_region")
|
6998
|
+
|
6999
|
+
@property
|
7000
|
+
@pulumi.getter(name="customerNotificationType")
|
7001
|
+
def customer_notification_type(self) -> str:
|
7002
|
+
"""
|
7003
|
+
Customer notification options on success/failure of archival, deletion events.
|
7004
|
+
"""
|
7005
|
+
return pulumi.get(self, "customer_notification_type")
|
7006
|
+
|
7007
|
+
@property
|
7008
|
+
@pulumi.getter(name="isBackupEnabled")
|
7009
|
+
def is_backup_enabled(self) -> bool:
|
7010
|
+
"""
|
7011
|
+
Boolean flag representing whether backup needs to be enabled/disabled for the model.
|
7012
|
+
"""
|
7013
|
+
return pulumi.get(self, "is_backup_enabled")
|
7014
|
+
|
7015
|
+
|
6629
7016
|
@pulumi.output_type
|
6630
7017
|
class GetModelCustomMetadataListResult(dict):
|
6631
7018
|
def __init__(__self__, *,
|
@@ -8426,6 +8813,119 @@ class GetModelDeploymentsModelDeploymentModelDeploymentSystemDataResult(dict):
|
|
8426
8813
|
return pulumi.get(self, "system_infra_type")
|
8427
8814
|
|
8428
8815
|
|
8816
|
+
@pulumi.output_type
|
8817
|
+
class GetModelRetentionOperationDetailResult(dict):
|
8818
|
+
def __init__(__self__, *,
|
8819
|
+
archive_state: str,
|
8820
|
+
archive_state_details: str,
|
8821
|
+
delete_state: str,
|
8822
|
+
delete_state_details: str,
|
8823
|
+
time_archival_scheduled: str,
|
8824
|
+
time_deletion_scheduled: str):
|
8825
|
+
"""
|
8826
|
+
:param str archive_state: The archival status of model.
|
8827
|
+
:param str archive_state_details: The archival state details of the model.
|
8828
|
+
:param str delete_state: The deletion status of the archived model.
|
8829
|
+
:param str delete_state_details: The deletion status details of the archived model.
|
8830
|
+
:param str time_archival_scheduled: The estimated archival time of the model based on the provided retention setting.
|
8831
|
+
:param str time_deletion_scheduled: The estimated deletion time of the model based on the provided retention setting.
|
8832
|
+
"""
|
8833
|
+
pulumi.set(__self__, "archive_state", archive_state)
|
8834
|
+
pulumi.set(__self__, "archive_state_details", archive_state_details)
|
8835
|
+
pulumi.set(__self__, "delete_state", delete_state)
|
8836
|
+
pulumi.set(__self__, "delete_state_details", delete_state_details)
|
8837
|
+
pulumi.set(__self__, "time_archival_scheduled", time_archival_scheduled)
|
8838
|
+
pulumi.set(__self__, "time_deletion_scheduled", time_deletion_scheduled)
|
8839
|
+
|
8840
|
+
@property
|
8841
|
+
@pulumi.getter(name="archiveState")
|
8842
|
+
def archive_state(self) -> str:
|
8843
|
+
"""
|
8844
|
+
The archival status of model.
|
8845
|
+
"""
|
8846
|
+
return pulumi.get(self, "archive_state")
|
8847
|
+
|
8848
|
+
@property
|
8849
|
+
@pulumi.getter(name="archiveStateDetails")
|
8850
|
+
def archive_state_details(self) -> str:
|
8851
|
+
"""
|
8852
|
+
The archival state details of the model.
|
8853
|
+
"""
|
8854
|
+
return pulumi.get(self, "archive_state_details")
|
8855
|
+
|
8856
|
+
@property
|
8857
|
+
@pulumi.getter(name="deleteState")
|
8858
|
+
def delete_state(self) -> str:
|
8859
|
+
"""
|
8860
|
+
The deletion status of the archived model.
|
8861
|
+
"""
|
8862
|
+
return pulumi.get(self, "delete_state")
|
8863
|
+
|
8864
|
+
@property
|
8865
|
+
@pulumi.getter(name="deleteStateDetails")
|
8866
|
+
def delete_state_details(self) -> str:
|
8867
|
+
"""
|
8868
|
+
The deletion status details of the archived model.
|
8869
|
+
"""
|
8870
|
+
return pulumi.get(self, "delete_state_details")
|
8871
|
+
|
8872
|
+
@property
|
8873
|
+
@pulumi.getter(name="timeArchivalScheduled")
|
8874
|
+
def time_archival_scheduled(self) -> str:
|
8875
|
+
"""
|
8876
|
+
The estimated archival time of the model based on the provided retention setting.
|
8877
|
+
"""
|
8878
|
+
return pulumi.get(self, "time_archival_scheduled")
|
8879
|
+
|
8880
|
+
@property
|
8881
|
+
@pulumi.getter(name="timeDeletionScheduled")
|
8882
|
+
def time_deletion_scheduled(self) -> str:
|
8883
|
+
"""
|
8884
|
+
The estimated deletion time of the model based on the provided retention setting.
|
8885
|
+
"""
|
8886
|
+
return pulumi.get(self, "time_deletion_scheduled")
|
8887
|
+
|
8888
|
+
|
8889
|
+
@pulumi.output_type
|
8890
|
+
class GetModelRetentionSettingResult(dict):
|
8891
|
+
def __init__(__self__, *,
|
8892
|
+
archive_after_days: int,
|
8893
|
+
customer_notification_type: str,
|
8894
|
+
delete_after_days: int):
|
8895
|
+
"""
|
8896
|
+
:param int archive_after_days: Number of days after which the model will be archived.
|
8897
|
+
:param str customer_notification_type: Customer notification options on success/failure of archival, deletion events.
|
8898
|
+
:param int delete_after_days: Number of days after which the archived model will be deleted.
|
8899
|
+
"""
|
8900
|
+
pulumi.set(__self__, "archive_after_days", archive_after_days)
|
8901
|
+
pulumi.set(__self__, "customer_notification_type", customer_notification_type)
|
8902
|
+
pulumi.set(__self__, "delete_after_days", delete_after_days)
|
8903
|
+
|
8904
|
+
@property
|
8905
|
+
@pulumi.getter(name="archiveAfterDays")
|
8906
|
+
def archive_after_days(self) -> int:
|
8907
|
+
"""
|
8908
|
+
Number of days after which the model will be archived.
|
8909
|
+
"""
|
8910
|
+
return pulumi.get(self, "archive_after_days")
|
8911
|
+
|
8912
|
+
@property
|
8913
|
+
@pulumi.getter(name="customerNotificationType")
|
8914
|
+
def customer_notification_type(self) -> str:
|
8915
|
+
"""
|
8916
|
+
Customer notification options on success/failure of archival, deletion events.
|
8917
|
+
"""
|
8918
|
+
return pulumi.get(self, "customer_notification_type")
|
8919
|
+
|
8920
|
+
@property
|
8921
|
+
@pulumi.getter(name="deleteAfterDays")
|
8922
|
+
def delete_after_days(self) -> int:
|
8923
|
+
"""
|
8924
|
+
Number of days after which the archived model will be deleted.
|
8925
|
+
"""
|
8926
|
+
return pulumi.get(self, "delete_after_days")
|
8927
|
+
|
8928
|
+
|
8429
8929
|
@pulumi.output_type
|
8430
8930
|
class GetModelVersionSetsFilterResult(dict):
|
8431
8931
|
def __init__(__self__, *,
|
@@ -8632,6 +9132,8 @@ class GetModelsModelResult(dict):
|
|
8632
9132
|
artifact_content_length: str,
|
8633
9133
|
artifact_content_md5: str,
|
8634
9134
|
artifact_last_modified: str,
|
9135
|
+
backup_operation_details: Sequence['outputs.GetModelsModelBackupOperationDetailResult'],
|
9136
|
+
backup_settings: Sequence['outputs.GetModelsModelBackupSettingResult'],
|
8635
9137
|
compartment_id: str,
|
8636
9138
|
created_by: str,
|
8637
9139
|
custom_metadata_lists: Sequence['outputs.GetModelsModelCustomMetadataListResult'],
|
@@ -8643,12 +9145,20 @@ class GetModelsModelResult(dict):
|
|
8643
9145
|
freeform_tags: Mapping[str, str],
|
8644
9146
|
id: str,
|
8645
9147
|
input_schema: str,
|
9148
|
+
lifecycle_details: str,
|
8646
9149
|
model_artifact: str,
|
9150
|
+
model_version_set_id: str,
|
9151
|
+
model_version_set_name: str,
|
8647
9152
|
output_schema: str,
|
8648
9153
|
project_id: str,
|
9154
|
+
retention_operation_details: Sequence['outputs.GetModelsModelRetentionOperationDetailResult'],
|
9155
|
+
retention_settings: Sequence['outputs.GetModelsModelRetentionSettingResult'],
|
8649
9156
|
state: str,
|
8650
|
-
time_created: str
|
9157
|
+
time_created: str,
|
9158
|
+
version_label: str):
|
8651
9159
|
"""
|
9160
|
+
:param Sequence['GetModelsModelBackupOperationDetailArgs'] backup_operation_details: Backup operation details of the model.
|
9161
|
+
:param Sequence['GetModelsModelBackupSettingArgs'] backup_settings: Back up setting details of the model.
|
8652
9162
|
: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.
|
8653
9163
|
: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.
|
8654
9164
|
:param Sequence['GetModelsModelCustomMetadataListArgs'] custom_metadata_lists: An array of custom metadata details for the model.
|
@@ -8659,8 +9169,13 @@ class GetModelsModelResult(dict):
|
|
8659
9169
|
:param Mapping[str, str] freeform_tags: 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"}`
|
8660
9170
|
: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.
|
8661
9171
|
:param str input_schema: Input schema file content in String format
|
9172
|
+
:param str lifecycle_details: Details about the lifecycle state of the model.
|
9173
|
+
:param str model_version_set_id: The OCID of the model version set that the model is associated to.
|
9174
|
+
:param str model_version_set_name: The name of the model version set that the model is associated to.
|
8662
9175
|
:param str output_schema: Output schema file content in String format
|
8663
9176
|
: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.
|
9177
|
+
:param Sequence['GetModelsModelRetentionOperationDetailArgs'] retention_operation_details: Retention operation details for the model.
|
9178
|
+
:param Sequence['GetModelsModelRetentionSettingArgs'] retention_settings: Retention setting details of the model.
|
8664
9179
|
:param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
|
8665
9180
|
:param str time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
8666
9181
|
"""
|
@@ -8668,6 +9183,8 @@ class GetModelsModelResult(dict):
|
|
8668
9183
|
pulumi.set(__self__, "artifact_content_length", artifact_content_length)
|
8669
9184
|
pulumi.set(__self__, "artifact_content_md5", artifact_content_md5)
|
8670
9185
|
pulumi.set(__self__, "artifact_last_modified", artifact_last_modified)
|
9186
|
+
pulumi.set(__self__, "backup_operation_details", backup_operation_details)
|
9187
|
+
pulumi.set(__self__, "backup_settings", backup_settings)
|
8671
9188
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
8672
9189
|
pulumi.set(__self__, "created_by", created_by)
|
8673
9190
|
pulumi.set(__self__, "custom_metadata_lists", custom_metadata_lists)
|
@@ -8679,11 +9196,17 @@ class GetModelsModelResult(dict):
|
|
8679
9196
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
8680
9197
|
pulumi.set(__self__, "id", id)
|
8681
9198
|
pulumi.set(__self__, "input_schema", input_schema)
|
9199
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
8682
9200
|
pulumi.set(__self__, "model_artifact", model_artifact)
|
9201
|
+
pulumi.set(__self__, "model_version_set_id", model_version_set_id)
|
9202
|
+
pulumi.set(__self__, "model_version_set_name", model_version_set_name)
|
8683
9203
|
pulumi.set(__self__, "output_schema", output_schema)
|
8684
9204
|
pulumi.set(__self__, "project_id", project_id)
|
9205
|
+
pulumi.set(__self__, "retention_operation_details", retention_operation_details)
|
9206
|
+
pulumi.set(__self__, "retention_settings", retention_settings)
|
8685
9207
|
pulumi.set(__self__, "state", state)
|
8686
9208
|
pulumi.set(__self__, "time_created", time_created)
|
9209
|
+
pulumi.set(__self__, "version_label", version_label)
|
8687
9210
|
|
8688
9211
|
@property
|
8689
9212
|
@pulumi.getter(name="artifactContentDisposition")
|
@@ -8705,6 +9228,22 @@ class GetModelsModelResult(dict):
|
|
8705
9228
|
def artifact_last_modified(self) -> str:
|
8706
9229
|
return pulumi.get(self, "artifact_last_modified")
|
8707
9230
|
|
9231
|
+
@property
|
9232
|
+
@pulumi.getter(name="backupOperationDetails")
|
9233
|
+
def backup_operation_details(self) -> Sequence['outputs.GetModelsModelBackupOperationDetailResult']:
|
9234
|
+
"""
|
9235
|
+
Backup operation details of the model.
|
9236
|
+
"""
|
9237
|
+
return pulumi.get(self, "backup_operation_details")
|
9238
|
+
|
9239
|
+
@property
|
9240
|
+
@pulumi.getter(name="backupSettings")
|
9241
|
+
def backup_settings(self) -> Sequence['outputs.GetModelsModelBackupSettingResult']:
|
9242
|
+
"""
|
9243
|
+
Back up setting details of the model.
|
9244
|
+
"""
|
9245
|
+
return pulumi.get(self, "backup_settings")
|
9246
|
+
|
8708
9247
|
@property
|
8709
9248
|
@pulumi.getter(name="compartmentId")
|
8710
9249
|
def compartment_id(self) -> str:
|
@@ -8790,11 +9329,35 @@ class GetModelsModelResult(dict):
|
|
8790
9329
|
"""
|
8791
9330
|
return pulumi.get(self, "input_schema")
|
8792
9331
|
|
9332
|
+
@property
|
9333
|
+
@pulumi.getter(name="lifecycleDetails")
|
9334
|
+
def lifecycle_details(self) -> str:
|
9335
|
+
"""
|
9336
|
+
Details about the lifecycle state of the model.
|
9337
|
+
"""
|
9338
|
+
return pulumi.get(self, "lifecycle_details")
|
9339
|
+
|
8793
9340
|
@property
|
8794
9341
|
@pulumi.getter(name="modelArtifact")
|
8795
9342
|
def model_artifact(self) -> str:
|
8796
9343
|
return pulumi.get(self, "model_artifact")
|
8797
9344
|
|
9345
|
+
@property
|
9346
|
+
@pulumi.getter(name="modelVersionSetId")
|
9347
|
+
def model_version_set_id(self) -> str:
|
9348
|
+
"""
|
9349
|
+
The OCID of the model version set that the model is associated to.
|
9350
|
+
"""
|
9351
|
+
return pulumi.get(self, "model_version_set_id")
|
9352
|
+
|
9353
|
+
@property
|
9354
|
+
@pulumi.getter(name="modelVersionSetName")
|
9355
|
+
def model_version_set_name(self) -> str:
|
9356
|
+
"""
|
9357
|
+
The name of the model version set that the model is associated to.
|
9358
|
+
"""
|
9359
|
+
return pulumi.get(self, "model_version_set_name")
|
9360
|
+
|
8798
9361
|
@property
|
8799
9362
|
@pulumi.getter(name="outputSchema")
|
8800
9363
|
def output_schema(self) -> str:
|
@@ -8811,6 +9374,22 @@ class GetModelsModelResult(dict):
|
|
8811
9374
|
"""
|
8812
9375
|
return pulumi.get(self, "project_id")
|
8813
9376
|
|
9377
|
+
@property
|
9378
|
+
@pulumi.getter(name="retentionOperationDetails")
|
9379
|
+
def retention_operation_details(self) -> Sequence['outputs.GetModelsModelRetentionOperationDetailResult']:
|
9380
|
+
"""
|
9381
|
+
Retention operation details for the model.
|
9382
|
+
"""
|
9383
|
+
return pulumi.get(self, "retention_operation_details")
|
9384
|
+
|
9385
|
+
@property
|
9386
|
+
@pulumi.getter(name="retentionSettings")
|
9387
|
+
def retention_settings(self) -> Sequence['outputs.GetModelsModelRetentionSettingResult']:
|
9388
|
+
"""
|
9389
|
+
Retention setting details of the model.
|
9390
|
+
"""
|
9391
|
+
return pulumi.get(self, "retention_settings")
|
9392
|
+
|
8814
9393
|
@property
|
8815
9394
|
@pulumi.getter
|
8816
9395
|
def state(self) -> str:
|
@@ -8827,6 +9406,91 @@ class GetModelsModelResult(dict):
|
|
8827
9406
|
"""
|
8828
9407
|
return pulumi.get(self, "time_created")
|
8829
9408
|
|
9409
|
+
@property
|
9410
|
+
@pulumi.getter(name="versionLabel")
|
9411
|
+
def version_label(self) -> str:
|
9412
|
+
return pulumi.get(self, "version_label")
|
9413
|
+
|
9414
|
+
|
9415
|
+
@pulumi.output_type
|
9416
|
+
class GetModelsModelBackupOperationDetailResult(dict):
|
9417
|
+
def __init__(__self__, *,
|
9418
|
+
backup_state: str,
|
9419
|
+
backup_state_details: str,
|
9420
|
+
time_last_backup: str):
|
9421
|
+
"""
|
9422
|
+
:param str backup_state: The backup status of the model.
|
9423
|
+
:param str backup_state_details: The backup execution status details of the model.
|
9424
|
+
:param str time_last_backup: The last backup execution time of the model.
|
9425
|
+
"""
|
9426
|
+
pulumi.set(__self__, "backup_state", backup_state)
|
9427
|
+
pulumi.set(__self__, "backup_state_details", backup_state_details)
|
9428
|
+
pulumi.set(__self__, "time_last_backup", time_last_backup)
|
9429
|
+
|
9430
|
+
@property
|
9431
|
+
@pulumi.getter(name="backupState")
|
9432
|
+
def backup_state(self) -> str:
|
9433
|
+
"""
|
9434
|
+
The backup status of the model.
|
9435
|
+
"""
|
9436
|
+
return pulumi.get(self, "backup_state")
|
9437
|
+
|
9438
|
+
@property
|
9439
|
+
@pulumi.getter(name="backupStateDetails")
|
9440
|
+
def backup_state_details(self) -> str:
|
9441
|
+
"""
|
9442
|
+
The backup execution status details of the model.
|
9443
|
+
"""
|
9444
|
+
return pulumi.get(self, "backup_state_details")
|
9445
|
+
|
9446
|
+
@property
|
9447
|
+
@pulumi.getter(name="timeLastBackup")
|
9448
|
+
def time_last_backup(self) -> str:
|
9449
|
+
"""
|
9450
|
+
The last backup execution time of the model.
|
9451
|
+
"""
|
9452
|
+
return pulumi.get(self, "time_last_backup")
|
9453
|
+
|
9454
|
+
|
9455
|
+
@pulumi.output_type
|
9456
|
+
class GetModelsModelBackupSettingResult(dict):
|
9457
|
+
def __init__(__self__, *,
|
9458
|
+
backup_region: str,
|
9459
|
+
customer_notification_type: str,
|
9460
|
+
is_backup_enabled: bool):
|
9461
|
+
"""
|
9462
|
+
:param str backup_region: Oracle Cloud Infrastructure backup region for the model.
|
9463
|
+
:param str customer_notification_type: Customer notification options on success/failure of archival, deletion events.
|
9464
|
+
:param bool is_backup_enabled: Boolean flag representing whether backup needs to be enabled/disabled for the model.
|
9465
|
+
"""
|
9466
|
+
pulumi.set(__self__, "backup_region", backup_region)
|
9467
|
+
pulumi.set(__self__, "customer_notification_type", customer_notification_type)
|
9468
|
+
pulumi.set(__self__, "is_backup_enabled", is_backup_enabled)
|
9469
|
+
|
9470
|
+
@property
|
9471
|
+
@pulumi.getter(name="backupRegion")
|
9472
|
+
def backup_region(self) -> str:
|
9473
|
+
"""
|
9474
|
+
Oracle Cloud Infrastructure backup region for the model.
|
9475
|
+
"""
|
9476
|
+
return pulumi.get(self, "backup_region")
|
9477
|
+
|
9478
|
+
@property
|
9479
|
+
@pulumi.getter(name="customerNotificationType")
|
9480
|
+
def customer_notification_type(self) -> str:
|
9481
|
+
"""
|
9482
|
+
Customer notification options on success/failure of archival, deletion events.
|
9483
|
+
"""
|
9484
|
+
return pulumi.get(self, "customer_notification_type")
|
9485
|
+
|
9486
|
+
@property
|
9487
|
+
@pulumi.getter(name="isBackupEnabled")
|
9488
|
+
def is_backup_enabled(self) -> bool:
|
9489
|
+
"""
|
9490
|
+
Boolean flag representing whether backup needs to be enabled/disabled for the model.
|
9491
|
+
"""
|
9492
|
+
return pulumi.get(self, "is_backup_enabled")
|
9493
|
+
|
8830
9494
|
|
8831
9495
|
@pulumi.output_type
|
8832
9496
|
class GetModelsModelCustomMetadataListResult(dict):
|
@@ -8954,6 +9618,119 @@ class GetModelsModelDefinedMetadataListResult(dict):
|
|
8954
9618
|
return pulumi.get(self, "value")
|
8955
9619
|
|
8956
9620
|
|
9621
|
+
@pulumi.output_type
|
9622
|
+
class GetModelsModelRetentionOperationDetailResult(dict):
|
9623
|
+
def __init__(__self__, *,
|
9624
|
+
archive_state: str,
|
9625
|
+
archive_state_details: str,
|
9626
|
+
delete_state: str,
|
9627
|
+
delete_state_details: str,
|
9628
|
+
time_archival_scheduled: str,
|
9629
|
+
time_deletion_scheduled: str):
|
9630
|
+
"""
|
9631
|
+
:param str archive_state: The archival status of model.
|
9632
|
+
:param str archive_state_details: The archival state details of the model.
|
9633
|
+
:param str delete_state: The deletion status of the archived model.
|
9634
|
+
:param str delete_state_details: The deletion status details of the archived model.
|
9635
|
+
:param str time_archival_scheduled: The estimated archival time of the model based on the provided retention setting.
|
9636
|
+
:param str time_deletion_scheduled: The estimated deletion time of the model based on the provided retention setting.
|
9637
|
+
"""
|
9638
|
+
pulumi.set(__self__, "archive_state", archive_state)
|
9639
|
+
pulumi.set(__self__, "archive_state_details", archive_state_details)
|
9640
|
+
pulumi.set(__self__, "delete_state", delete_state)
|
9641
|
+
pulumi.set(__self__, "delete_state_details", delete_state_details)
|
9642
|
+
pulumi.set(__self__, "time_archival_scheduled", time_archival_scheduled)
|
9643
|
+
pulumi.set(__self__, "time_deletion_scheduled", time_deletion_scheduled)
|
9644
|
+
|
9645
|
+
@property
|
9646
|
+
@pulumi.getter(name="archiveState")
|
9647
|
+
def archive_state(self) -> str:
|
9648
|
+
"""
|
9649
|
+
The archival status of model.
|
9650
|
+
"""
|
9651
|
+
return pulumi.get(self, "archive_state")
|
9652
|
+
|
9653
|
+
@property
|
9654
|
+
@pulumi.getter(name="archiveStateDetails")
|
9655
|
+
def archive_state_details(self) -> str:
|
9656
|
+
"""
|
9657
|
+
The archival state details of the model.
|
9658
|
+
"""
|
9659
|
+
return pulumi.get(self, "archive_state_details")
|
9660
|
+
|
9661
|
+
@property
|
9662
|
+
@pulumi.getter(name="deleteState")
|
9663
|
+
def delete_state(self) -> str:
|
9664
|
+
"""
|
9665
|
+
The deletion status of the archived model.
|
9666
|
+
"""
|
9667
|
+
return pulumi.get(self, "delete_state")
|
9668
|
+
|
9669
|
+
@property
|
9670
|
+
@pulumi.getter(name="deleteStateDetails")
|
9671
|
+
def delete_state_details(self) -> str:
|
9672
|
+
"""
|
9673
|
+
The deletion status details of the archived model.
|
9674
|
+
"""
|
9675
|
+
return pulumi.get(self, "delete_state_details")
|
9676
|
+
|
9677
|
+
@property
|
9678
|
+
@pulumi.getter(name="timeArchivalScheduled")
|
9679
|
+
def time_archival_scheduled(self) -> str:
|
9680
|
+
"""
|
9681
|
+
The estimated archival time of the model based on the provided retention setting.
|
9682
|
+
"""
|
9683
|
+
return pulumi.get(self, "time_archival_scheduled")
|
9684
|
+
|
9685
|
+
@property
|
9686
|
+
@pulumi.getter(name="timeDeletionScheduled")
|
9687
|
+
def time_deletion_scheduled(self) -> str:
|
9688
|
+
"""
|
9689
|
+
The estimated deletion time of the model based on the provided retention setting.
|
9690
|
+
"""
|
9691
|
+
return pulumi.get(self, "time_deletion_scheduled")
|
9692
|
+
|
9693
|
+
|
9694
|
+
@pulumi.output_type
|
9695
|
+
class GetModelsModelRetentionSettingResult(dict):
|
9696
|
+
def __init__(__self__, *,
|
9697
|
+
archive_after_days: int,
|
9698
|
+
customer_notification_type: str,
|
9699
|
+
delete_after_days: int):
|
9700
|
+
"""
|
9701
|
+
:param int archive_after_days: Number of days after which the model will be archived.
|
9702
|
+
:param str customer_notification_type: Customer notification options on success/failure of archival, deletion events.
|
9703
|
+
:param int delete_after_days: Number of days after which the archived model will be deleted.
|
9704
|
+
"""
|
9705
|
+
pulumi.set(__self__, "archive_after_days", archive_after_days)
|
9706
|
+
pulumi.set(__self__, "customer_notification_type", customer_notification_type)
|
9707
|
+
pulumi.set(__self__, "delete_after_days", delete_after_days)
|
9708
|
+
|
9709
|
+
@property
|
9710
|
+
@pulumi.getter(name="archiveAfterDays")
|
9711
|
+
def archive_after_days(self) -> int:
|
9712
|
+
"""
|
9713
|
+
Number of days after which the model will be archived.
|
9714
|
+
"""
|
9715
|
+
return pulumi.get(self, "archive_after_days")
|
9716
|
+
|
9717
|
+
@property
|
9718
|
+
@pulumi.getter(name="customerNotificationType")
|
9719
|
+
def customer_notification_type(self) -> str:
|
9720
|
+
"""
|
9721
|
+
Customer notification options on success/failure of archival, deletion events.
|
9722
|
+
"""
|
9723
|
+
return pulumi.get(self, "customer_notification_type")
|
9724
|
+
|
9725
|
+
@property
|
9726
|
+
@pulumi.getter(name="deleteAfterDays")
|
9727
|
+
def delete_after_days(self) -> int:
|
9728
|
+
"""
|
9729
|
+
Number of days after which the archived model will be deleted.
|
9730
|
+
"""
|
9731
|
+
return pulumi.get(self, "delete_after_days")
|
9732
|
+
|
9733
|
+
|
8957
9734
|
@pulumi.output_type
|
8958
9735
|
class GetNotebookSessionNotebookSessionConfigDetailResult(dict):
|
8959
9736
|
def __init__(__self__, *,
|