pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.14.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.
Files changed (97) hide show
  1. pulumi_oci/__init__.py +24 -19
  2. pulumi_oci/containerengine/_inputs.py +341 -0
  3. pulumi_oci/containerengine/cluster.py +64 -0
  4. pulumi_oci/containerengine/get_cluster.py +12 -1
  5. pulumi_oci/containerengine/outputs.py +582 -0
  6. pulumi_oci/core/_inputs.py +373 -37
  7. pulumi_oci/core/boot_volume.py +90 -5
  8. pulumi_oci/core/get_block_volume_replica.py +15 -1
  9. pulumi_oci/core/get_boot_volume.py +15 -4
  10. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  11. pulumi_oci/core/get_instance.py +1 -1
  12. pulumi_oci/core/get_virtual_circuit.py +18 -4
  13. pulumi_oci/core/get_volume.py +18 -4
  14. pulumi_oci/core/instance.py +7 -7
  15. pulumi_oci/core/instance_configuration.py +4 -0
  16. pulumi_oci/core/outputs.py +738 -53
  17. pulumi_oci/core/virtual_circuit.py +30 -2
  18. pulumi_oci/core/volume.py +110 -12
  19. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  20. pulumi_oci/core/volume_group.py +56 -5
  21. pulumi_oci/database/_inputs.py +642 -0
  22. pulumi_oci/database/autonomous_container_database.py +14 -14
  23. pulumi_oci/database/autonomous_database.py +75 -0
  24. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  25. pulumi_oci/database/get_autonomous_database.py +29 -1
  26. pulumi_oci/database/get_autonomous_databases.py +22 -28
  27. pulumi_oci/database/outputs.py +1669 -86
  28. pulumi_oci/datasafe/__init__.py +1 -0
  29. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  30. pulumi_oci/datascience/_inputs.py +353 -0
  31. pulumi_oci/datascience/get_model.py +85 -1
  32. pulumi_oci/datascience/get_models.py +5 -0
  33. pulumi_oci/datascience/model.py +206 -66
  34. pulumi_oci/datascience/outputs.py +759 -0
  35. pulumi_oci/desktops/_inputs.py +175 -13
  36. pulumi_oci/desktops/desktop_pool.py +67 -0
  37. pulumi_oci/desktops/get_desktop_pool.py +16 -1
  38. pulumi_oci/desktops/outputs.py +339 -18
  39. pulumi_oci/dns/__init__.py +2 -0
  40. pulumi_oci/dns/_inputs.py +1157 -12
  41. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  42. pulumi_oci/dns/get_records.py +45 -13
  43. pulumi_oci/dns/get_resolver.py +8 -6
  44. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  45. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  46. pulumi_oci/dns/get_resolvers.py +12 -12
  47. pulumi_oci/dns/get_rrset.py +16 -16
  48. pulumi_oci/dns/get_rrsets.py +12 -10
  49. pulumi_oci/dns/get_view.py +8 -4
  50. pulumi_oci/dns/get_views.py +12 -12
  51. pulumi_oci/dns/get_zones.py +33 -13
  52. pulumi_oci/dns/outputs.py +1388 -79
  53. pulumi_oci/dns/record.py +12 -12
  54. pulumi_oci/dns/resolver.py +7 -7
  55. pulumi_oci/dns/resolver_endpoint.py +2 -2
  56. pulumi_oci/dns/rrset.py +50 -41
  57. pulumi_oci/dns/zone.py +176 -17
  58. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  59. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  60. pulumi_oci/filestorage/_inputs.py +651 -0
  61. pulumi_oci/filestorage/export.py +96 -3
  62. pulumi_oci/filestorage/file_system.py +93 -0
  63. pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
  64. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
  65. pulumi_oci/filestorage/get_outbound_connector.py +26 -1
  66. pulumi_oci/filestorage/get_replication.py +27 -1
  67. pulumi_oci/filestorage/get_snapshot.py +27 -1
  68. pulumi_oci/filestorage/mount_target.py +108 -0
  69. pulumi_oci/filestorage/outbound_connector.py +93 -0
  70. pulumi_oci/filestorage/outputs.py +1218 -2
  71. pulumi_oci/filestorage/replication.py +95 -0
  72. pulumi_oci/filestorage/snapshot.py +97 -2
  73. pulumi_oci/goldengate/__init__.py +1 -0
  74. pulumi_oci/goldengate/_inputs.py +165 -0
  75. pulumi_oci/goldengate/connection.py +49 -35
  76. pulumi_oci/goldengate/database_registration.py +7 -7
  77. pulumi_oci/goldengate/deployment.py +79 -4
  78. pulumi_oci/goldengate/get_deployment.py +30 -2
  79. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  80. pulumi_oci/goldengate/outputs.py +409 -2
  81. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
  82. pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
  83. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  84. pulumi_oci/pulumi-plugin.json +1 -1
  85. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
  86. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
  87. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
  88. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  89. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  90. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  91. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  92. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  93. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  94. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  95. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  96. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  97. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.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,18 @@ 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_name: str,
8647
9151
  output_schema: str,
8648
9152
  project_id: str,
9153
+ retention_operation_details: Sequence['outputs.GetModelsModelRetentionOperationDetailResult'],
9154
+ retention_settings: Sequence['outputs.GetModelsModelRetentionSettingResult'],
8649
9155
  state: str,
8650
9156
  time_created: str):
8651
9157
  """
9158
+ :param Sequence['GetModelsModelBackupOperationDetailArgs'] backup_operation_details: Backup operation details of the model.
9159
+ :param Sequence['GetModelsModelBackupSettingArgs'] backup_settings: Back up setting details of the model.
8652
9160
  :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
9161
  :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
9162
  :param Sequence['GetModelsModelCustomMetadataListArgs'] custom_metadata_lists: An array of custom metadata details for the model.
@@ -8659,8 +9167,12 @@ class GetModelsModelResult(dict):
8659
9167
  :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
9168
  :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
9169
  :param str input_schema: Input schema file content in String format
9170
+ :param str lifecycle_details: Details about the lifecycle state of the model.
9171
+ :param str model_version_set_name: The name of the model version set that the model is associated to.
8662
9172
  :param str output_schema: Output schema file content in String format
8663
9173
  :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.
9174
+ :param Sequence['GetModelsModelRetentionOperationDetailArgs'] retention_operation_details: Retention operation details for the model.
9175
+ :param Sequence['GetModelsModelRetentionSettingArgs'] retention_settings: Retention setting details of the model.
8664
9176
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
8665
9177
  :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
9178
  """
@@ -8668,6 +9180,8 @@ class GetModelsModelResult(dict):
8668
9180
  pulumi.set(__self__, "artifact_content_length", artifact_content_length)
8669
9181
  pulumi.set(__self__, "artifact_content_md5", artifact_content_md5)
8670
9182
  pulumi.set(__self__, "artifact_last_modified", artifact_last_modified)
9183
+ pulumi.set(__self__, "backup_operation_details", backup_operation_details)
9184
+ pulumi.set(__self__, "backup_settings", backup_settings)
8671
9185
  pulumi.set(__self__, "compartment_id", compartment_id)
8672
9186
  pulumi.set(__self__, "created_by", created_by)
8673
9187
  pulumi.set(__self__, "custom_metadata_lists", custom_metadata_lists)
@@ -8679,9 +9193,13 @@ class GetModelsModelResult(dict):
8679
9193
  pulumi.set(__self__, "freeform_tags", freeform_tags)
8680
9194
  pulumi.set(__self__, "id", id)
8681
9195
  pulumi.set(__self__, "input_schema", input_schema)
9196
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
8682
9197
  pulumi.set(__self__, "model_artifact", model_artifact)
9198
+ pulumi.set(__self__, "model_version_set_name", model_version_set_name)
8683
9199
  pulumi.set(__self__, "output_schema", output_schema)
8684
9200
  pulumi.set(__self__, "project_id", project_id)
9201
+ pulumi.set(__self__, "retention_operation_details", retention_operation_details)
9202
+ pulumi.set(__self__, "retention_settings", retention_settings)
8685
9203
  pulumi.set(__self__, "state", state)
8686
9204
  pulumi.set(__self__, "time_created", time_created)
8687
9205
 
@@ -8705,6 +9223,22 @@ class GetModelsModelResult(dict):
8705
9223
  def artifact_last_modified(self) -> str:
8706
9224
  return pulumi.get(self, "artifact_last_modified")
8707
9225
 
9226
+ @property
9227
+ @pulumi.getter(name="backupOperationDetails")
9228
+ def backup_operation_details(self) -> Sequence['outputs.GetModelsModelBackupOperationDetailResult']:
9229
+ """
9230
+ Backup operation details of the model.
9231
+ """
9232
+ return pulumi.get(self, "backup_operation_details")
9233
+
9234
+ @property
9235
+ @pulumi.getter(name="backupSettings")
9236
+ def backup_settings(self) -> Sequence['outputs.GetModelsModelBackupSettingResult']:
9237
+ """
9238
+ Back up setting details of the model.
9239
+ """
9240
+ return pulumi.get(self, "backup_settings")
9241
+
8708
9242
  @property
8709
9243
  @pulumi.getter(name="compartmentId")
8710
9244
  def compartment_id(self) -> str:
@@ -8790,11 +9324,27 @@ class GetModelsModelResult(dict):
8790
9324
  """
8791
9325
  return pulumi.get(self, "input_schema")
8792
9326
 
9327
+ @property
9328
+ @pulumi.getter(name="lifecycleDetails")
9329
+ def lifecycle_details(self) -> str:
9330
+ """
9331
+ Details about the lifecycle state of the model.
9332
+ """
9333
+ return pulumi.get(self, "lifecycle_details")
9334
+
8793
9335
  @property
8794
9336
  @pulumi.getter(name="modelArtifact")
8795
9337
  def model_artifact(self) -> str:
8796
9338
  return pulumi.get(self, "model_artifact")
8797
9339
 
9340
+ @property
9341
+ @pulumi.getter(name="modelVersionSetName")
9342
+ def model_version_set_name(self) -> str:
9343
+ """
9344
+ The name of the model version set that the model is associated to.
9345
+ """
9346
+ return pulumi.get(self, "model_version_set_name")
9347
+
8798
9348
  @property
8799
9349
  @pulumi.getter(name="outputSchema")
8800
9350
  def output_schema(self) -> str:
@@ -8811,6 +9361,22 @@ class GetModelsModelResult(dict):
8811
9361
  """
8812
9362
  return pulumi.get(self, "project_id")
8813
9363
 
9364
+ @property
9365
+ @pulumi.getter(name="retentionOperationDetails")
9366
+ def retention_operation_details(self) -> Sequence['outputs.GetModelsModelRetentionOperationDetailResult']:
9367
+ """
9368
+ Retention operation details for the model.
9369
+ """
9370
+ return pulumi.get(self, "retention_operation_details")
9371
+
9372
+ @property
9373
+ @pulumi.getter(name="retentionSettings")
9374
+ def retention_settings(self) -> Sequence['outputs.GetModelsModelRetentionSettingResult']:
9375
+ """
9376
+ Retention setting details of the model.
9377
+ """
9378
+ return pulumi.get(self, "retention_settings")
9379
+
8814
9380
  @property
8815
9381
  @pulumi.getter
8816
9382
  def state(self) -> str:
@@ -8828,6 +9394,86 @@ class GetModelsModelResult(dict):
8828
9394
  return pulumi.get(self, "time_created")
8829
9395
 
8830
9396
 
9397
+ @pulumi.output_type
9398
+ class GetModelsModelBackupOperationDetailResult(dict):
9399
+ def __init__(__self__, *,
9400
+ backup_state: str,
9401
+ backup_state_details: str,
9402
+ time_last_backup: str):
9403
+ """
9404
+ :param str backup_state: The backup status of the model.
9405
+ :param str backup_state_details: The backup execution status details of the model.
9406
+ :param str time_last_backup: The last backup execution time of the model.
9407
+ """
9408
+ pulumi.set(__self__, "backup_state", backup_state)
9409
+ pulumi.set(__self__, "backup_state_details", backup_state_details)
9410
+ pulumi.set(__self__, "time_last_backup", time_last_backup)
9411
+
9412
+ @property
9413
+ @pulumi.getter(name="backupState")
9414
+ def backup_state(self) -> str:
9415
+ """
9416
+ The backup status of the model.
9417
+ """
9418
+ return pulumi.get(self, "backup_state")
9419
+
9420
+ @property
9421
+ @pulumi.getter(name="backupStateDetails")
9422
+ def backup_state_details(self) -> str:
9423
+ """
9424
+ The backup execution status details of the model.
9425
+ """
9426
+ return pulumi.get(self, "backup_state_details")
9427
+
9428
+ @property
9429
+ @pulumi.getter(name="timeLastBackup")
9430
+ def time_last_backup(self) -> str:
9431
+ """
9432
+ The last backup execution time of the model.
9433
+ """
9434
+ return pulumi.get(self, "time_last_backup")
9435
+
9436
+
9437
+ @pulumi.output_type
9438
+ class GetModelsModelBackupSettingResult(dict):
9439
+ def __init__(__self__, *,
9440
+ backup_region: str,
9441
+ customer_notification_type: str,
9442
+ is_backup_enabled: bool):
9443
+ """
9444
+ :param str backup_region: Oracle Cloud Infrastructure backup region for the model.
9445
+ :param str customer_notification_type: Customer notification options on success/failure of archival, deletion events.
9446
+ :param bool is_backup_enabled: Boolean flag representing whether backup needs to be enabled/disabled for the model.
9447
+ """
9448
+ pulumi.set(__self__, "backup_region", backup_region)
9449
+ pulumi.set(__self__, "customer_notification_type", customer_notification_type)
9450
+ pulumi.set(__self__, "is_backup_enabled", is_backup_enabled)
9451
+
9452
+ @property
9453
+ @pulumi.getter(name="backupRegion")
9454
+ def backup_region(self) -> str:
9455
+ """
9456
+ Oracle Cloud Infrastructure backup region for the model.
9457
+ """
9458
+ return pulumi.get(self, "backup_region")
9459
+
9460
+ @property
9461
+ @pulumi.getter(name="customerNotificationType")
9462
+ def customer_notification_type(self) -> str:
9463
+ """
9464
+ Customer notification options on success/failure of archival, deletion events.
9465
+ """
9466
+ return pulumi.get(self, "customer_notification_type")
9467
+
9468
+ @property
9469
+ @pulumi.getter(name="isBackupEnabled")
9470
+ def is_backup_enabled(self) -> bool:
9471
+ """
9472
+ Boolean flag representing whether backup needs to be enabled/disabled for the model.
9473
+ """
9474
+ return pulumi.get(self, "is_backup_enabled")
9475
+
9476
+
8831
9477
  @pulumi.output_type
8832
9478
  class GetModelsModelCustomMetadataListResult(dict):
8833
9479
  def __init__(__self__, *,
@@ -8954,6 +9600,119 @@ class GetModelsModelDefinedMetadataListResult(dict):
8954
9600
  return pulumi.get(self, "value")
8955
9601
 
8956
9602
 
9603
+ @pulumi.output_type
9604
+ class GetModelsModelRetentionOperationDetailResult(dict):
9605
+ def __init__(__self__, *,
9606
+ archive_state: str,
9607
+ archive_state_details: str,
9608
+ delete_state: str,
9609
+ delete_state_details: str,
9610
+ time_archival_scheduled: str,
9611
+ time_deletion_scheduled: str):
9612
+ """
9613
+ :param str archive_state: The archival status of model.
9614
+ :param str archive_state_details: The archival state details of the model.
9615
+ :param str delete_state: The deletion status of the archived model.
9616
+ :param str delete_state_details: The deletion status details of the archived model.
9617
+ :param str time_archival_scheduled: The estimated archival time of the model based on the provided retention setting.
9618
+ :param str time_deletion_scheduled: The estimated deletion time of the model based on the provided retention setting.
9619
+ """
9620
+ pulumi.set(__self__, "archive_state", archive_state)
9621
+ pulumi.set(__self__, "archive_state_details", archive_state_details)
9622
+ pulumi.set(__self__, "delete_state", delete_state)
9623
+ pulumi.set(__self__, "delete_state_details", delete_state_details)
9624
+ pulumi.set(__self__, "time_archival_scheduled", time_archival_scheduled)
9625
+ pulumi.set(__self__, "time_deletion_scheduled", time_deletion_scheduled)
9626
+
9627
+ @property
9628
+ @pulumi.getter(name="archiveState")
9629
+ def archive_state(self) -> str:
9630
+ """
9631
+ The archival status of model.
9632
+ """
9633
+ return pulumi.get(self, "archive_state")
9634
+
9635
+ @property
9636
+ @pulumi.getter(name="archiveStateDetails")
9637
+ def archive_state_details(self) -> str:
9638
+ """
9639
+ The archival state details of the model.
9640
+ """
9641
+ return pulumi.get(self, "archive_state_details")
9642
+
9643
+ @property
9644
+ @pulumi.getter(name="deleteState")
9645
+ def delete_state(self) -> str:
9646
+ """
9647
+ The deletion status of the archived model.
9648
+ """
9649
+ return pulumi.get(self, "delete_state")
9650
+
9651
+ @property
9652
+ @pulumi.getter(name="deleteStateDetails")
9653
+ def delete_state_details(self) -> str:
9654
+ """
9655
+ The deletion status details of the archived model.
9656
+ """
9657
+ return pulumi.get(self, "delete_state_details")
9658
+
9659
+ @property
9660
+ @pulumi.getter(name="timeArchivalScheduled")
9661
+ def time_archival_scheduled(self) -> str:
9662
+ """
9663
+ The estimated archival time of the model based on the provided retention setting.
9664
+ """
9665
+ return pulumi.get(self, "time_archival_scheduled")
9666
+
9667
+ @property
9668
+ @pulumi.getter(name="timeDeletionScheduled")
9669
+ def time_deletion_scheduled(self) -> str:
9670
+ """
9671
+ The estimated deletion time of the model based on the provided retention setting.
9672
+ """
9673
+ return pulumi.get(self, "time_deletion_scheduled")
9674
+
9675
+
9676
+ @pulumi.output_type
9677
+ class GetModelsModelRetentionSettingResult(dict):
9678
+ def __init__(__self__, *,
9679
+ archive_after_days: int,
9680
+ customer_notification_type: str,
9681
+ delete_after_days: int):
9682
+ """
9683
+ :param int archive_after_days: Number of days after which the model will be archived.
9684
+ :param str customer_notification_type: Customer notification options on success/failure of archival, deletion events.
9685
+ :param int delete_after_days: Number of days after which the archived model will be deleted.
9686
+ """
9687
+ pulumi.set(__self__, "archive_after_days", archive_after_days)
9688
+ pulumi.set(__self__, "customer_notification_type", customer_notification_type)
9689
+ pulumi.set(__self__, "delete_after_days", delete_after_days)
9690
+
9691
+ @property
9692
+ @pulumi.getter(name="archiveAfterDays")
9693
+ def archive_after_days(self) -> int:
9694
+ """
9695
+ Number of days after which the model will be archived.
9696
+ """
9697
+ return pulumi.get(self, "archive_after_days")
9698
+
9699
+ @property
9700
+ @pulumi.getter(name="customerNotificationType")
9701
+ def customer_notification_type(self) -> str:
9702
+ """
9703
+ Customer notification options on success/failure of archival, deletion events.
9704
+ """
9705
+ return pulumi.get(self, "customer_notification_type")
9706
+
9707
+ @property
9708
+ @pulumi.getter(name="deleteAfterDays")
9709
+ def delete_after_days(self) -> int:
9710
+ """
9711
+ Number of days after which the archived model will be deleted.
9712
+ """
9713
+ return pulumi.get(self, "delete_after_days")
9714
+
9715
+
8957
9716
  @pulumi.output_type
8958
9717
  class GetNotebookSessionNotebookSessionConfigDetailResult(dict):
8959
9718
  def __init__(__self__, *,