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