pulumi-oci 2.0.0a1719867547__py3-none-any.whl → 2.1.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/__init__.py +43 -0
- pulumi_oci/database/__init__.py +11 -0
- pulumi_oci/database/_inputs.py +607 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/exadb_vm_cluster.py +1761 -0
- pulumi_oci/database/exascale_db_storage_vault.py +787 -0
- pulumi_oci/database/get_backups.py +22 -5
- pulumi_oci/database/get_db_node.py +14 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_exadb_vm_cluster.py +614 -0
- pulumi_oci/database/get_exadb_vm_cluster_update.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +153 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_updates.py +173 -0
- pulumi_oci/database/get_exadb_vm_clusters.py +196 -0
- pulumi_oci/database/get_exascale_db_storage_vault.py +301 -0
- pulumi_oci/database/get_exascale_db_storage_vaults.py +176 -0
- pulumi_oci/database/get_gi_version_minor_versions.py +221 -0
- pulumi_oci/database/get_gi_versions.py +22 -5
- pulumi_oci/database/outputs.py +2050 -0
- pulumi_oci/database/pluggable_database.py +7 -7
- pulumi_oci/databasemigration/__init__.py +6 -0
- pulumi_oci/databasemigration/_inputs.py +1577 -0
- pulumi_oci/databasemigration/connection.py +2019 -0
- pulumi_oci/databasemigration/get_connection.py +616 -0
- pulumi_oci/databasemigration/get_connections.py +225 -0
- pulumi_oci/databasemigration/get_job_advisor_report.py +2 -10
- pulumi_oci/databasemigration/get_migration.py +427 -0
- pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
- pulumi_oci/databasemigration/get_migrations.py +407 -0
- pulumi_oci/databasemigration/job.py +16 -20
- pulumi_oci/databasemigration/migration.py +1471 -0
- pulumi_oci/databasemigration/outputs.py +4301 -73
- pulumi_oci/filestorage/_inputs.py +10 -18
- pulumi_oci/filestorage/export.py +28 -7
- pulumi_oci/filestorage/file_system.py +159 -35
- pulumi_oci/filestorage/outputs.py +55 -34
- pulumi_oci/generativeai/_inputs.py +50 -2
- pulumi_oci/generativeai/dedicated_ai_cluster.py +30 -2
- pulumi_oci/generativeai/endpoint.py +2 -2
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +2 -47
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +2 -14
- pulumi_oci/generativeai/get_endpoint.py +2 -26
- pulumi_oci/generativeai/get_endpoints.py +2 -8
- pulumi_oci/generativeai/get_model.py +2 -38
- pulumi_oci/generativeai/get_models.py +2 -8
- pulumi_oci/generativeai/model.py +2 -2
- pulumi_oci/generativeai/outputs.py +86 -310
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/__init__.py +12 -0
- pulumi_oci/resourcescheduler/_inputs.py +224 -0
- pulumi_oci/resourcescheduler/get_schedule.py +340 -0
- pulumi_oci/resourcescheduler/get_schedules.py +193 -0
- pulumi_oci/resourcescheduler/outputs.py +687 -0
- pulumi_oci/resourcescheduler/schedule.py +977 -0
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/RECORD +59 -36
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/top_level.txt +0 -0
@@ -204,11 +204,7 @@ class FileSystemSourceDetail(dict):
|
|
204
204
|
source_snapshot_id: Optional[str] = None):
|
205
205
|
"""
|
206
206
|
:param str parent_file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system that contains the source snapshot of a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
207
|
-
:param str source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
208
|
-
|
209
|
-
|
210
|
-
** IMPORTANT **
|
211
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
207
|
+
:param str source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
212
208
|
"""
|
213
209
|
if parent_file_system_id is not None:
|
214
210
|
pulumi.set(__self__, "parent_file_system_id", parent_file_system_id)
|
@@ -227,11 +223,7 @@ class FileSystemSourceDetail(dict):
|
|
227
223
|
@pulumi.getter(name="sourceSnapshotId")
|
228
224
|
def source_snapshot_id(self) -> Optional[str]:
|
229
225
|
"""
|
230
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
231
|
-
|
232
|
-
|
233
|
-
** IMPORTANT **
|
234
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
226
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
235
227
|
"""
|
236
228
|
return pulumi.get(self, "source_snapshot_id")
|
237
229
|
|
@@ -280,10 +272,10 @@ class FilesystemSnapshotPolicySchedule(dict):
|
|
280
272
|
"""
|
281
273
|
:param str period: (Updatable) The frequency of scheduled snapshots.
|
282
274
|
:param str time_zone: (Updatable) Time zone used for scheduling the snapshot.
|
283
|
-
:param int day_of_month: (Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
284
|
-
:param str day_of_week: (Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
285
|
-
:param int hour_of_day: (Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
286
|
-
:param str month: (Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
275
|
+
:param int day_of_month: (Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
276
|
+
:param str day_of_week: (Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
277
|
+
:param int hour_of_day: (Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
278
|
+
:param str month: (Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
287
279
|
:param str retention_duration_in_seconds: (Updatable) The number of seconds to retain snapshots created with this schedule. Snapshot expiration time will not be set if this value is empty.
|
288
280
|
:param str schedule_prefix: (Updatable) A name prefix to be applied to snapshots created by this schedule. Example: `compliance1`
|
289
281
|
:param str time_schedule_start: (Updatable) The starting point used to begin the scheduling of the snapshots based upon recurrence string in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. If no `timeScheduleStart` is provided, the value will be set to the time when the schedule was created.
|
@@ -325,7 +317,7 @@ class FilesystemSnapshotPolicySchedule(dict):
|
|
325
317
|
@pulumi.getter(name="dayOfMonth")
|
326
318
|
def day_of_month(self) -> Optional[int]:
|
327
319
|
"""
|
328
|
-
(Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
320
|
+
(Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
329
321
|
"""
|
330
322
|
return pulumi.get(self, "day_of_month")
|
331
323
|
|
@@ -333,7 +325,7 @@ class FilesystemSnapshotPolicySchedule(dict):
|
|
333
325
|
@pulumi.getter(name="dayOfWeek")
|
334
326
|
def day_of_week(self) -> Optional[str]:
|
335
327
|
"""
|
336
|
-
(Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
328
|
+
(Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
337
329
|
"""
|
338
330
|
return pulumi.get(self, "day_of_week")
|
339
331
|
|
@@ -341,7 +333,7 @@ class FilesystemSnapshotPolicySchedule(dict):
|
|
341
333
|
@pulumi.getter(name="hourOfDay")
|
342
334
|
def hour_of_day(self) -> Optional[int]:
|
343
335
|
"""
|
344
|
-
(Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
336
|
+
(Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
345
337
|
"""
|
346
338
|
return pulumi.get(self, "hour_of_day")
|
347
339
|
|
@@ -349,7 +341,7 @@ class FilesystemSnapshotPolicySchedule(dict):
|
|
349
341
|
@pulumi.getter
|
350
342
|
def month(self) -> Optional[str]:
|
351
343
|
"""
|
352
|
-
(Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
344
|
+
(Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
353
345
|
"""
|
354
346
|
return pulumi.get(self, "month")
|
355
347
|
|
@@ -993,8 +985,11 @@ class GetExportsFilterResult(dict):
|
|
993
985
|
class GetFileSystemsFileSystemResult(dict):
|
994
986
|
def __init__(__self__, *,
|
995
987
|
availability_domain: str,
|
988
|
+
clone_attach_status: str,
|
989
|
+
clone_count: int,
|
996
990
|
compartment_id: str,
|
997
991
|
defined_tags: Mapping[str, Any],
|
992
|
+
detach_clone_trigger: int,
|
998
993
|
display_name: str,
|
999
994
|
filesystem_snapshot_policy_id: str,
|
1000
995
|
freeform_tags: Mapping[str, Any],
|
@@ -1012,6 +1007,8 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1012
1007
|
time_created: str):
|
1013
1008
|
"""
|
1014
1009
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
1010
|
+
:param str clone_attach_status: Specifies whether the file system is attached to its parent file system.
|
1011
|
+
:param int clone_count: Specifies the total number of children of a file system.
|
1015
1012
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1016
1013
|
:param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
1017
1014
|
:param str display_name: A user-friendly name. It does not have to be unique, and it is changeable. Example: `My resource`
|
@@ -1031,8 +1028,11 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1031
1028
|
:param str time_created: The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1032
1029
|
"""
|
1033
1030
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
1031
|
+
pulumi.set(__self__, "clone_attach_status", clone_attach_status)
|
1032
|
+
pulumi.set(__self__, "clone_count", clone_count)
|
1034
1033
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
1035
1034
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
1035
|
+
pulumi.set(__self__, "detach_clone_trigger", detach_clone_trigger)
|
1036
1036
|
pulumi.set(__self__, "display_name", display_name)
|
1037
1037
|
pulumi.set(__self__, "filesystem_snapshot_policy_id", filesystem_snapshot_policy_id)
|
1038
1038
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -1057,6 +1057,22 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1057
1057
|
"""
|
1058
1058
|
return pulumi.get(self, "availability_domain")
|
1059
1059
|
|
1060
|
+
@property
|
1061
|
+
@pulumi.getter(name="cloneAttachStatus")
|
1062
|
+
def clone_attach_status(self) -> str:
|
1063
|
+
"""
|
1064
|
+
Specifies whether the file system is attached to its parent file system.
|
1065
|
+
"""
|
1066
|
+
return pulumi.get(self, "clone_attach_status")
|
1067
|
+
|
1068
|
+
@property
|
1069
|
+
@pulumi.getter(name="cloneCount")
|
1070
|
+
def clone_count(self) -> int:
|
1071
|
+
"""
|
1072
|
+
Specifies the total number of children of a file system.
|
1073
|
+
"""
|
1074
|
+
return pulumi.get(self, "clone_count")
|
1075
|
+
|
1060
1076
|
@property
|
1061
1077
|
@pulumi.getter(name="compartmentId")
|
1062
1078
|
def compartment_id(self) -> str:
|
@@ -1073,6 +1089,11 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1073
1089
|
"""
|
1074
1090
|
return pulumi.get(self, "defined_tags")
|
1075
1091
|
|
1092
|
+
@property
|
1093
|
+
@pulumi.getter(name="detachCloneTrigger")
|
1094
|
+
def detach_clone_trigger(self) -> int:
|
1095
|
+
return pulumi.get(self, "detach_clone_trigger")
|
1096
|
+
|
1076
1097
|
@property
|
1077
1098
|
@pulumi.getter(name="displayName")
|
1078
1099
|
def display_name(self) -> str:
|
@@ -1380,10 +1401,10 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1380
1401
|
time_schedule_start: str,
|
1381
1402
|
time_zone: str):
|
1382
1403
|
"""
|
1383
|
-
:param int day_of_month: The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
1384
|
-
:param str day_of_week: The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
1385
|
-
:param int hour_of_day: The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
1386
|
-
:param str month: The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
1404
|
+
:param int day_of_month: The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1405
|
+
:param str day_of_week: The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1406
|
+
:param int hour_of_day: The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
1407
|
+
:param str month: The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1387
1408
|
:param str period: The frequency of scheduled snapshots.
|
1388
1409
|
:param str retention_duration_in_seconds: The number of seconds to retain snapshots created with this schedule. Snapshot expiration time will not be set if this value is empty.
|
1389
1410
|
:param str schedule_prefix: A name prefix to be applied to snapshots created by this schedule. Example: `compliance1`
|
@@ -1404,7 +1425,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1404
1425
|
@pulumi.getter(name="dayOfMonth")
|
1405
1426
|
def day_of_month(self) -> int:
|
1406
1427
|
"""
|
1407
|
-
The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
1428
|
+
The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1408
1429
|
"""
|
1409
1430
|
return pulumi.get(self, "day_of_month")
|
1410
1431
|
|
@@ -1412,7 +1433,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1412
1433
|
@pulumi.getter(name="dayOfWeek")
|
1413
1434
|
def day_of_week(self) -> str:
|
1414
1435
|
"""
|
1415
|
-
The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
1436
|
+
The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1416
1437
|
"""
|
1417
1438
|
return pulumi.get(self, "day_of_week")
|
1418
1439
|
|
@@ -1420,7 +1441,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1420
1441
|
@pulumi.getter(name="hourOfDay")
|
1421
1442
|
def hour_of_day(self) -> int:
|
1422
1443
|
"""
|
1423
|
-
The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
1444
|
+
The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
1424
1445
|
"""
|
1425
1446
|
return pulumi.get(self, "hour_of_day")
|
1426
1447
|
|
@@ -1428,7 +1449,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1428
1449
|
@pulumi.getter
|
1429
1450
|
def month(self) -> str:
|
1430
1451
|
"""
|
1431
|
-
The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
1452
|
+
The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1432
1453
|
"""
|
1433
1454
|
return pulumi.get(self, "month")
|
1434
1455
|
|
@@ -1513,10 +1534,10 @@ class GetFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1513
1534
|
time_schedule_start: str,
|
1514
1535
|
time_zone: str):
|
1515
1536
|
"""
|
1516
|
-
:param int day_of_month: The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
1517
|
-
:param str day_of_week: The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
1518
|
-
:param int hour_of_day: The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
1519
|
-
:param str month: The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
1537
|
+
:param int day_of_month: The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1538
|
+
:param str day_of_week: The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1539
|
+
:param int hour_of_day: The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
1540
|
+
:param str month: The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1520
1541
|
:param str period: The frequency of scheduled snapshots.
|
1521
1542
|
:param str retention_duration_in_seconds: The number of seconds to retain snapshots created with this schedule. Snapshot expiration time will not be set if this value is empty.
|
1522
1543
|
:param str schedule_prefix: A name prefix to be applied to snapshots created by this schedule. Example: `compliance1`
|
@@ -1537,7 +1558,7 @@ class GetFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1537
1558
|
@pulumi.getter(name="dayOfMonth")
|
1538
1559
|
def day_of_month(self) -> int:
|
1539
1560
|
"""
|
1540
|
-
The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
1561
|
+
The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1541
1562
|
"""
|
1542
1563
|
return pulumi.get(self, "day_of_month")
|
1543
1564
|
|
@@ -1545,7 +1566,7 @@ class GetFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1545
1566
|
@pulumi.getter(name="dayOfWeek")
|
1546
1567
|
def day_of_week(self) -> str:
|
1547
1568
|
"""
|
1548
|
-
The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
1569
|
+
The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1549
1570
|
"""
|
1550
1571
|
return pulumi.get(self, "day_of_week")
|
1551
1572
|
|
@@ -1553,7 +1574,7 @@ class GetFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1553
1574
|
@pulumi.getter(name="hourOfDay")
|
1554
1575
|
def hour_of_day(self) -> int:
|
1555
1576
|
"""
|
1556
|
-
The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
1577
|
+
The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
1557
1578
|
"""
|
1558
1579
|
return pulumi.get(self, "hour_of_day")
|
1559
1580
|
|
@@ -1561,7 +1582,7 @@ class GetFilesystemSnapshotPolicyScheduleResult(dict):
|
|
1561
1582
|
@pulumi.getter
|
1562
1583
|
def month(self) -> str:
|
1563
1584
|
"""
|
1564
|
-
The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
1585
|
+
The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
1565
1586
|
"""
|
1566
1587
|
return pulumi.get(self, "month")
|
1567
1588
|
|
@@ -108,7 +108,7 @@ class ModelFineTuneDetailsArgs:
|
|
108
108
|
:param pulumi.Input[str] dedicated_ai_cluster_id: The OCID of the dedicated AI cluster this fine-tuning runs on.
|
109
109
|
:param pulumi.Input['ModelFineTuneDetailsTrainingDatasetArgs'] training_dataset: The dataset used to fine-tune the model.
|
110
110
|
|
111
|
-
Only one dataset is allowed per custom model, which is split
|
111
|
+
Only one dataset is allowed per custom model, which is split 80-20 for training and validating. You must provide the dataset in a JSON Lines (JSONL) file. Each line in the JSONL file must have the format: `{"prompt": "<first prompt>", "completion": "<expected completion given first prompt>"}`
|
112
112
|
:param pulumi.Input['ModelFineTuneDetailsTrainingConfigArgs'] training_config: The fine-tuning method and hyperparameters used for fine-tuning a custom model.
|
113
113
|
"""
|
114
114
|
pulumi.set(__self__, "dedicated_ai_cluster_id", dedicated_ai_cluster_id)
|
@@ -134,7 +134,7 @@ class ModelFineTuneDetailsArgs:
|
|
134
134
|
"""
|
135
135
|
The dataset used to fine-tune the model.
|
136
136
|
|
137
|
-
Only one dataset is allowed per custom model, which is split
|
137
|
+
Only one dataset is allowed per custom model, which is split 80-20 for training and validating. You must provide the dataset in a JSON Lines (JSONL) file. Each line in the JSONL file must have the format: `{"prompt": "<first prompt>", "completion": "<expected completion given first prompt>"}`
|
138
138
|
"""
|
139
139
|
return pulumi.get(self, "training_dataset")
|
140
140
|
|
@@ -163,6 +163,9 @@ class ModelFineTuneDetailsTrainingConfigArgs:
|
|
163
163
|
early_stopping_threshold: Optional[pulumi.Input[float]] = None,
|
164
164
|
learning_rate: Optional[pulumi.Input[float]] = None,
|
165
165
|
log_model_metrics_interval_in_steps: Optional[pulumi.Input[int]] = None,
|
166
|
+
lora_alpha: Optional[pulumi.Input[int]] = None,
|
167
|
+
lora_dropout: Optional[pulumi.Input[float]] = None,
|
168
|
+
lora_r: Optional[pulumi.Input[int]] = None,
|
166
169
|
num_of_last_layers: Optional[pulumi.Input[int]] = None,
|
167
170
|
total_training_epochs: Optional[pulumi.Input[int]] = None,
|
168
171
|
training_batch_size: Optional[pulumi.Input[int]] = None):
|
@@ -174,6 +177,9 @@ class ModelFineTuneDetailsTrainingConfigArgs:
|
|
174
177
|
:param pulumi.Input[int] log_model_metrics_interval_in_steps: Determines how frequently to log model metrics.
|
175
178
|
|
176
179
|
Every step is logged for the first 20 steps and then follows this parameter for log frequency. Set to 0 to disable logging the model metrics.
|
180
|
+
:param pulumi.Input[int] lora_alpha: This parameter represents the scaling factor for the weight matrices in LoRA.
|
181
|
+
:param pulumi.Input[float] lora_dropout: This parameter indicates the dropout probability for LoRA layers.
|
182
|
+
:param pulumi.Input[int] lora_r: This parameter represents the LoRA rank of the update matrices.
|
177
183
|
:param pulumi.Input[int] num_of_last_layers: The number of last layers to be fine-tuned.
|
178
184
|
:param pulumi.Input[int] total_training_epochs: The maximum number of training epochs to run for.
|
179
185
|
:param pulumi.Input[int] training_batch_size: The batch size used during training.
|
@@ -187,6 +193,12 @@ class ModelFineTuneDetailsTrainingConfigArgs:
|
|
187
193
|
pulumi.set(__self__, "learning_rate", learning_rate)
|
188
194
|
if log_model_metrics_interval_in_steps is not None:
|
189
195
|
pulumi.set(__self__, "log_model_metrics_interval_in_steps", log_model_metrics_interval_in_steps)
|
196
|
+
if lora_alpha is not None:
|
197
|
+
pulumi.set(__self__, "lora_alpha", lora_alpha)
|
198
|
+
if lora_dropout is not None:
|
199
|
+
pulumi.set(__self__, "lora_dropout", lora_dropout)
|
200
|
+
if lora_r is not None:
|
201
|
+
pulumi.set(__self__, "lora_r", lora_r)
|
190
202
|
if num_of_last_layers is not None:
|
191
203
|
pulumi.set(__self__, "num_of_last_layers", num_of_last_layers)
|
192
204
|
if total_training_epochs is not None:
|
@@ -256,6 +268,42 @@ class ModelFineTuneDetailsTrainingConfigArgs:
|
|
256
268
|
def log_model_metrics_interval_in_steps(self, value: Optional[pulumi.Input[int]]):
|
257
269
|
pulumi.set(self, "log_model_metrics_interval_in_steps", value)
|
258
270
|
|
271
|
+
@property
|
272
|
+
@pulumi.getter(name="loraAlpha")
|
273
|
+
def lora_alpha(self) -> Optional[pulumi.Input[int]]:
|
274
|
+
"""
|
275
|
+
This parameter represents the scaling factor for the weight matrices in LoRA.
|
276
|
+
"""
|
277
|
+
return pulumi.get(self, "lora_alpha")
|
278
|
+
|
279
|
+
@lora_alpha.setter
|
280
|
+
def lora_alpha(self, value: Optional[pulumi.Input[int]]):
|
281
|
+
pulumi.set(self, "lora_alpha", value)
|
282
|
+
|
283
|
+
@property
|
284
|
+
@pulumi.getter(name="loraDropout")
|
285
|
+
def lora_dropout(self) -> Optional[pulumi.Input[float]]:
|
286
|
+
"""
|
287
|
+
This parameter indicates the dropout probability for LoRA layers.
|
288
|
+
"""
|
289
|
+
return pulumi.get(self, "lora_dropout")
|
290
|
+
|
291
|
+
@lora_dropout.setter
|
292
|
+
def lora_dropout(self, value: Optional[pulumi.Input[float]]):
|
293
|
+
pulumi.set(self, "lora_dropout", value)
|
294
|
+
|
295
|
+
@property
|
296
|
+
@pulumi.getter(name="loraR")
|
297
|
+
def lora_r(self) -> Optional[pulumi.Input[int]]:
|
298
|
+
"""
|
299
|
+
This parameter represents the LoRA rank of the update matrices.
|
300
|
+
"""
|
301
|
+
return pulumi.get(self, "lora_r")
|
302
|
+
|
303
|
+
@lora_r.setter
|
304
|
+
def lora_r(self, value: Optional[pulumi.Input[int]]):
|
305
|
+
pulumi.set(self, "lora_r", value)
|
306
|
+
|
259
307
|
@property
|
260
308
|
@pulumi.getter(name="numOfLastLayers")
|
261
309
|
def num_of_last_layers(self) -> Optional[pulumi.Input[int]]:
|
@@ -37,9 +37,13 @@ class DedicatedAiClusterArgs:
|
|
37
37
|
|
38
38
|
Allowed values are:
|
39
39
|
* LARGE_COHERE
|
40
|
+
* LARGE_COHERE_V2
|
40
41
|
* SMALL_COHERE
|
42
|
+
* SMALL_COHERE_V2
|
41
43
|
* EMBED_COHERE
|
42
44
|
* LLAMA2_70
|
45
|
+
* LARGE_GENERIC
|
46
|
+
* LARGE_COHERE_V2_2
|
43
47
|
|
44
48
|
|
45
49
|
** IMPORTANT **
|
@@ -110,9 +114,13 @@ class DedicatedAiClusterArgs:
|
|
110
114
|
|
111
115
|
Allowed values are:
|
112
116
|
* LARGE_COHERE
|
117
|
+
* LARGE_COHERE_V2
|
113
118
|
* SMALL_COHERE
|
119
|
+
* SMALL_COHERE_V2
|
114
120
|
* EMBED_COHERE
|
115
121
|
* LLAMA2_70
|
122
|
+
* LARGE_GENERIC
|
123
|
+
* LARGE_COHERE_V2_2
|
116
124
|
|
117
125
|
|
118
126
|
** IMPORTANT **
|
@@ -213,9 +221,13 @@ class _DedicatedAiClusterState:
|
|
213
221
|
|
214
222
|
Allowed values are:
|
215
223
|
* LARGE_COHERE
|
224
|
+
* LARGE_COHERE_V2
|
216
225
|
* SMALL_COHERE
|
226
|
+
* SMALL_COHERE_V2
|
217
227
|
* EMBED_COHERE
|
218
228
|
* LLAMA2_70
|
229
|
+
* LARGE_GENERIC
|
230
|
+
* LARGE_COHERE_V2_2
|
219
231
|
|
220
232
|
|
221
233
|
** IMPORTANT **
|
@@ -418,9 +430,13 @@ class _DedicatedAiClusterState:
|
|
418
430
|
|
419
431
|
Allowed values are:
|
420
432
|
* LARGE_COHERE
|
433
|
+
* LARGE_COHERE_V2
|
421
434
|
* SMALL_COHERE
|
435
|
+
* SMALL_COHERE_V2
|
422
436
|
* EMBED_COHERE
|
423
437
|
* LLAMA2_70
|
438
|
+
* LARGE_GENERIC
|
439
|
+
* LARGE_COHERE_V2_2
|
424
440
|
|
425
441
|
|
426
442
|
** IMPORTANT **
|
@@ -448,7 +464,7 @@ class DedicatedAiCluster(pulumi.CustomResource):
|
|
448
464
|
unit_shape: Optional[pulumi.Input[str]] = None,
|
449
465
|
__props__=None):
|
450
466
|
"""
|
451
|
-
This resource provides the Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative
|
467
|
+
This resource provides the Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative AI service.
|
452
468
|
|
453
469
|
Creates a dedicated AI cluster.
|
454
470
|
|
@@ -498,9 +514,13 @@ class DedicatedAiCluster(pulumi.CustomResource):
|
|
498
514
|
|
499
515
|
Allowed values are:
|
500
516
|
* LARGE_COHERE
|
517
|
+
* LARGE_COHERE_V2
|
501
518
|
* SMALL_COHERE
|
519
|
+
* SMALL_COHERE_V2
|
502
520
|
* EMBED_COHERE
|
503
521
|
* LLAMA2_70
|
522
|
+
* LARGE_GENERIC
|
523
|
+
* LARGE_COHERE_V2_2
|
504
524
|
|
505
525
|
|
506
526
|
** IMPORTANT **
|
@@ -513,7 +533,7 @@ class DedicatedAiCluster(pulumi.CustomResource):
|
|
513
533
|
args: DedicatedAiClusterArgs,
|
514
534
|
opts: Optional[pulumi.ResourceOptions] = None):
|
515
535
|
"""
|
516
|
-
This resource provides the Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative
|
536
|
+
This resource provides the Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative AI service.
|
517
537
|
|
518
538
|
Creates a dedicated AI cluster.
|
519
539
|
|
@@ -652,9 +672,13 @@ class DedicatedAiCluster(pulumi.CustomResource):
|
|
652
672
|
|
653
673
|
Allowed values are:
|
654
674
|
* LARGE_COHERE
|
675
|
+
* LARGE_COHERE_V2
|
655
676
|
* SMALL_COHERE
|
677
|
+
* SMALL_COHERE_V2
|
656
678
|
* EMBED_COHERE
|
657
679
|
* LLAMA2_70
|
680
|
+
* LARGE_GENERIC
|
681
|
+
* LARGE_COHERE_V2_2
|
658
682
|
|
659
683
|
|
660
684
|
** IMPORTANT **
|
@@ -796,9 +820,13 @@ class DedicatedAiCluster(pulumi.CustomResource):
|
|
796
820
|
|
797
821
|
Allowed values are:
|
798
822
|
* LARGE_COHERE
|
823
|
+
* LARGE_COHERE_V2
|
799
824
|
* SMALL_COHERE
|
825
|
+
* SMALL_COHERE_V2
|
800
826
|
* EMBED_COHERE
|
801
827
|
* LLAMA2_70
|
828
|
+
* LARGE_GENERIC
|
829
|
+
* LARGE_COHERE_V2_2
|
802
830
|
|
803
831
|
|
804
832
|
** IMPORTANT **
|
@@ -393,7 +393,7 @@ class Endpoint(pulumi.CustomResource):
|
|
393
393
|
model_id: Optional[pulumi.Input[str]] = None,
|
394
394
|
__props__=None):
|
395
395
|
"""
|
396
|
-
This resource provides the Endpoint resource in Oracle Cloud Infrastructure Generative
|
396
|
+
This resource provides the Endpoint resource in Oracle Cloud Infrastructure Generative AI service.
|
397
397
|
|
398
398
|
Creates an endpoint.
|
399
399
|
|
@@ -452,7 +452,7 @@ class Endpoint(pulumi.CustomResource):
|
|
452
452
|
args: EndpointArgs,
|
453
453
|
opts: Optional[pulumi.ResourceOptions] = None):
|
454
454
|
"""
|
455
|
-
This resource provides the Endpoint resource in Oracle Cloud Infrastructure Generative
|
455
|
+
This resource provides the Endpoint resource in Oracle Cloud Infrastructure Generative AI service.
|
456
456
|
|
457
457
|
Creates an endpoint.
|
458
458
|
|
@@ -75,17 +75,11 @@ class GetDedicatedAiClusterResult:
|
|
75
75
|
@property
|
76
76
|
@pulumi.getter
|
77
77
|
def capacities(self) -> Sequence['outputs.GetDedicatedAiClusterCapacityResult']:
|
78
|
-
"""
|
79
|
-
The total capacity for a dedicated AI cluster.
|
80
|
-
"""
|
81
78
|
return pulumi.get(self, "capacities")
|
82
79
|
|
83
80
|
@property
|
84
81
|
@pulumi.getter(name="compartmentId")
|
85
82
|
def compartment_id(self) -> str:
|
86
|
-
"""
|
87
|
-
The compartment OCID to create the dedicated AI cluster in.
|
88
|
-
"""
|
89
83
|
return pulumi.get(self, "compartment_id")
|
90
84
|
|
91
85
|
@property
|
@@ -96,105 +90,66 @@ class GetDedicatedAiClusterResult:
|
|
96
90
|
@property
|
97
91
|
@pulumi.getter(name="definedTags")
|
98
92
|
def defined_tags(self) -> Mapping[str, Any]:
|
99
|
-
"""
|
100
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
101
|
-
"""
|
102
93
|
return pulumi.get(self, "defined_tags")
|
103
94
|
|
104
95
|
@property
|
105
96
|
@pulumi.getter
|
106
97
|
def description(self) -> str:
|
107
|
-
"""
|
108
|
-
An optional description of the dedicated AI cluster.
|
109
|
-
"""
|
110
98
|
return pulumi.get(self, "description")
|
111
99
|
|
112
100
|
@property
|
113
101
|
@pulumi.getter(name="displayName")
|
114
102
|
def display_name(self) -> str:
|
115
|
-
"""
|
116
|
-
A user-friendly name. Does not have to be unique, and it's changeable.
|
117
|
-
"""
|
118
103
|
return pulumi.get(self, "display_name")
|
119
104
|
|
120
105
|
@property
|
121
106
|
@pulumi.getter(name="freeformTags")
|
122
107
|
def freeform_tags(self) -> Mapping[str, Any]:
|
123
|
-
"""
|
124
|
-
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
125
|
-
"""
|
126
108
|
return pulumi.get(self, "freeform_tags")
|
127
109
|
|
128
110
|
@property
|
129
111
|
@pulumi.getter
|
130
112
|
def id(self) -> str:
|
131
|
-
"""
|
132
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster.
|
133
|
-
"""
|
134
113
|
return pulumi.get(self, "id")
|
135
114
|
|
136
115
|
@property
|
137
116
|
@pulumi.getter(name="lifecycleDetails")
|
138
117
|
def lifecycle_details(self) -> str:
|
139
|
-
"""
|
140
|
-
A message describing the current state with detail that can provide actionable information.
|
141
|
-
"""
|
142
118
|
return pulumi.get(self, "lifecycle_details")
|
143
119
|
|
144
120
|
@property
|
145
121
|
@pulumi.getter
|
146
122
|
def state(self) -> str:
|
147
|
-
"""
|
148
|
-
The current state of the dedicated AI cluster.
|
149
|
-
"""
|
150
123
|
return pulumi.get(self, "state")
|
151
124
|
|
152
125
|
@property
|
153
126
|
@pulumi.getter(name="systemTags")
|
154
127
|
def system_tags(self) -> Mapping[str, Any]:
|
155
|
-
"""
|
156
|
-
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
157
|
-
"""
|
158
128
|
return pulumi.get(self, "system_tags")
|
159
129
|
|
160
130
|
@property
|
161
131
|
@pulumi.getter(name="timeCreated")
|
162
132
|
def time_created(self) -> str:
|
163
|
-
"""
|
164
|
-
The date and time the dedicated AI cluster was created, in the format defined by RFC 3339
|
165
|
-
"""
|
166
133
|
return pulumi.get(self, "time_created")
|
167
134
|
|
168
135
|
@property
|
169
136
|
@pulumi.getter(name="timeUpdated")
|
170
137
|
def time_updated(self) -> str:
|
171
|
-
"""
|
172
|
-
The date and time the dedicated AI cluster was updated, in the format defined by RFC 3339
|
173
|
-
"""
|
174
138
|
return pulumi.get(self, "time_updated")
|
175
139
|
|
176
140
|
@property
|
177
141
|
@pulumi.getter
|
178
142
|
def type(self) -> str:
|
179
|
-
"""
|
180
|
-
The dedicated AI cluster type indicating whether this is a fine-tuning/training processor or hosting/inference processor.
|
181
|
-
"""
|
182
143
|
return pulumi.get(self, "type")
|
183
144
|
|
184
145
|
@property
|
185
146
|
@pulumi.getter(name="unitCount")
|
186
147
|
def unit_count(self) -> int:
|
187
|
-
"""
|
188
|
-
The number of dedicated units in this AI cluster.
|
189
|
-
"""
|
190
148
|
return pulumi.get(self, "unit_count")
|
191
149
|
|
192
150
|
@property
|
193
151
|
@pulumi.getter(name="unitShape")
|
194
152
|
def unit_shape(self) -> str:
|
195
|
-
"""
|
196
|
-
The shape of dedicated unit in this AI cluster. The underlying hardware configuration is hidden from customers.
|
197
|
-
"""
|
198
153
|
return pulumi.get(self, "unit_shape")
|
199
154
|
|
200
155
|
|
@@ -225,7 +180,7 @@ class AwaitableGetDedicatedAiClusterResult(GetDedicatedAiClusterResult):
|
|
225
180
|
def get_dedicated_ai_cluster(dedicated_ai_cluster_id: Optional[str] = None,
|
226
181
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedAiClusterResult:
|
227
182
|
"""
|
228
|
-
This data source provides details about a specific Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative
|
183
|
+
This data source provides details about a specific Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative AI service.
|
229
184
|
|
230
185
|
Gets information about a dedicated AI cluster.
|
231
186
|
|
@@ -269,7 +224,7 @@ def get_dedicated_ai_cluster(dedicated_ai_cluster_id: Optional[str] = None,
|
|
269
224
|
def get_dedicated_ai_cluster_output(dedicated_ai_cluster_id: Optional[pulumi.Input[str]] = None,
|
270
225
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDedicatedAiClusterResult]:
|
271
226
|
"""
|
272
|
-
This data source provides details about a specific Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative
|
227
|
+
This data source provides details about a specific Dedicated Ai Cluster resource in Oracle Cloud Infrastructure Generative AI service.
|
273
228
|
|
274
229
|
Gets information about a dedicated AI cluster.
|
275
230
|
|