pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.20.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 (128) hide show
  1. pulumi_oci/__init__.py +56 -0
  2. pulumi_oci/bigdataservice/__init__.py +4 -0
  3. pulumi_oci/bigdataservice/_inputs.py +672 -6
  4. pulumi_oci/bigdataservice/bds_instance.py +169 -7
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
  6. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
  7. pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
  8. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
  9. pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
  10. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
  11. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
  14. pulumi_oci/bigdataservice/outputs.py +1466 -98
  15. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  16. pulumi_oci/blockchain/outputs.py +2 -2
  17. pulumi_oci/core/outputs.py +4 -0
  18. pulumi_oci/database/autonomous_container_database.py +47 -0
  19. pulumi_oci/database/autonomous_database.py +94 -0
  20. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  21. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  22. pulumi_oci/database/get_autonomous_database.py +29 -1
  23. pulumi_oci/database/outputs.py +36 -0
  24. pulumi_oci/dataflow/application.py +75 -33
  25. pulumi_oci/dataflow/get_application.py +15 -1
  26. pulumi_oci/dataflow/outputs.py +7 -0
  27. pulumi_oci/datascience/_inputs.py +32 -12
  28. pulumi_oci/datascience/get_job_run.py +3 -3
  29. pulumi_oci/datascience/get_job_runs.py +2 -2
  30. pulumi_oci/datascience/job_run.py +7 -7
  31. pulumi_oci/datascience/model_deployment.py +2 -0
  32. pulumi_oci/datascience/outputs.py +62 -26
  33. pulumi_oci/desktops/_inputs.py +9 -9
  34. pulumi_oci/desktops/desktop_pool.py +84 -35
  35. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  36. pulumi_oci/desktops/outputs.py +13 -6
  37. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  38. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  39. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  40. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  41. pulumi_oci/disasterrecovery/outputs.py +113 -21
  42. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  43. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  44. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  45. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  46. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  47. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  48. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  49. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  50. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  51. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  52. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  53. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  54. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  55. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  56. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  57. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  58. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  59. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  60. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  61. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  62. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  63. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  64. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  65. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  66. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  67. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  68. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  69. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  70. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  71. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  72. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  73. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  74. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  75. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  76. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  77. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  78. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  79. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  80. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  81. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  82. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  83. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  84. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  85. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  86. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  87. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  88. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  89. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  90. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  91. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  92. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  93. pulumi_oci/fleetappsmanagement/property.py +27 -27
  94. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  95. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  96. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  97. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  98. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  99. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  100. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  101. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  102. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  103. pulumi_oci/goldengate/__init__.py +7 -0
  104. pulumi_oci/goldengate/_inputs.py +665 -0
  105. pulumi_oci/goldengate/connection.py +7 -7
  106. pulumi_oci/goldengate/get_pipeline.py +408 -0
  107. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  108. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  109. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  110. pulumi_oci/goldengate/get_pipelines.py +213 -0
  111. pulumi_oci/goldengate/get_recipes.py +188 -0
  112. pulumi_oci/goldengate/get_trail_files.py +4 -2
  113. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  114. pulumi_oci/goldengate/outputs.py +1500 -0
  115. pulumi_oci/goldengate/pipeline.py +928 -0
  116. pulumi_oci/pulumi-plugin.json +1 -1
  117. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  118. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  119. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  120. pulumi_oci/stackmonitoring/outputs.py +166 -24
  121. pulumi_oci/visualbuilder/_inputs.py +57 -202
  122. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  123. pulumi_oci/visualbuilder/outputs.py +114 -400
  124. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  125. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
  126. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +128 -98
  127. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
  128. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -47,6 +47,7 @@ class ApplicationArgs:
47
47
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationParameterArgs']]]] = None,
48
48
  pool_id: Optional[pulumi.Input[str]] = None,
49
49
  private_endpoint_id: Optional[pulumi.Input[str]] = None,
50
+ terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
50
51
  type: Optional[pulumi.Input[str]] = None,
51
52
  warehouse_bucket_uri: Optional[pulumi.Input[str]] = None):
52
53
  """
@@ -77,12 +78,12 @@ class ApplicationArgs:
77
78
  :param pulumi.Input[Sequence[pulumi.Input['ApplicationParameterArgs']]] parameters: (Updatable) An array of name/value pairs used to fill placeholders found in properties like `Application.arguments`. The name must be a string of one or more word characters (a-z, A-Z, 0-9, _). The value can be a string of 0 or more characters of any kind. Example: [ { name: "iterations", value: "10"}, { name: "input_file", value: "mydata.xml" }, { name: "variable_x", value: "${x}"} ]
78
79
  :param pulumi.Input[str] pool_id: (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
79
80
  :param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
80
- :param pulumi.Input[str] type: The Spark application processing type.
81
- :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
82
-
81
+ :param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
83
82
 
84
83
  ** IMPORTANT **
85
84
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
85
+ :param pulumi.Input[str] type: The Spark application processing type.
86
+ :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
86
87
  """
87
88
  pulumi.set(__self__, "compartment_id", compartment_id)
88
89
  pulumi.set(__self__, "display_name", display_name)
@@ -129,6 +130,8 @@ class ApplicationArgs:
129
130
  pulumi.set(__self__, "pool_id", pool_id)
130
131
  if private_endpoint_id is not None:
131
132
  pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
133
+ if terminate_runs_on_deletion is not None:
134
+ pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
132
135
  if type is not None:
133
136
  pulumi.set(__self__, "type", type)
134
137
  if warehouse_bucket_uri is not None:
@@ -446,6 +449,21 @@ class ApplicationArgs:
446
449
  def private_endpoint_id(self, value: Optional[pulumi.Input[str]]):
447
450
  pulumi.set(self, "private_endpoint_id", value)
448
451
 
452
+ @property
453
+ @pulumi.getter(name="terminateRunsOnDeletion")
454
+ def terminate_runs_on_deletion(self) -> Optional[pulumi.Input[bool]]:
455
+ """
456
+ A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
457
+
458
+ ** IMPORTANT **
459
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
460
+ """
461
+ return pulumi.get(self, "terminate_runs_on_deletion")
462
+
463
+ @terminate_runs_on_deletion.setter
464
+ def terminate_runs_on_deletion(self, value: Optional[pulumi.Input[bool]]):
465
+ pulumi.set(self, "terminate_runs_on_deletion", value)
466
+
449
467
  @property
450
468
  @pulumi.getter
451
469
  def type(self) -> Optional[pulumi.Input[str]]:
@@ -462,11 +480,7 @@ class ApplicationArgs:
462
480
  @pulumi.getter(name="warehouseBucketUri")
463
481
  def warehouse_bucket_uri(self) -> Optional[pulumi.Input[str]]:
464
482
  """
465
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
466
-
467
-
468
- ** IMPORTANT **
469
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
483
+ (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
470
484
  """
471
485
  return pulumi.get(self, "warehouse_bucket_uri")
472
486
 
@@ -507,6 +521,7 @@ class _ApplicationState:
507
521
  private_endpoint_id: Optional[pulumi.Input[str]] = None,
508
522
  spark_version: Optional[pulumi.Input[str]] = None,
509
523
  state: Optional[pulumi.Input[str]] = None,
524
+ terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
510
525
  time_created: Optional[pulumi.Input[str]] = None,
511
526
  time_updated: Optional[pulumi.Input[str]] = None,
512
527
  type: Optional[pulumi.Input[str]] = None,
@@ -542,14 +557,14 @@ class _ApplicationState:
542
557
  :param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
543
558
  :param pulumi.Input[str] spark_version: (Updatable) The Spark version utilized to run the application.
544
559
  :param pulumi.Input[str] state: The current state of this application.
545
- :param pulumi.Input[str] time_created: The date and time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
546
- :param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
547
- :param pulumi.Input[str] type: The Spark application processing type.
548
- :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
549
-
560
+ :param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
550
561
 
551
562
  ** IMPORTANT **
552
563
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
564
+ :param pulumi.Input[str] time_created: The date and time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
565
+ :param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
566
+ :param pulumi.Input[str] type: The Spark application processing type.
567
+ :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
553
568
  """
554
569
  if application_log_config is not None:
555
570
  pulumi.set(__self__, "application_log_config", application_log_config)
@@ -609,6 +624,8 @@ class _ApplicationState:
609
624
  pulumi.set(__self__, "spark_version", spark_version)
610
625
  if state is not None:
611
626
  pulumi.set(__self__, "state", state)
627
+ if terminate_runs_on_deletion is not None:
628
+ pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
612
629
  if time_created is not None:
613
630
  pulumi.set(__self__, "time_created", time_created)
614
631
  if time_updated is not None:
@@ -966,6 +983,21 @@ class _ApplicationState:
966
983
  def state(self, value: Optional[pulumi.Input[str]]):
967
984
  pulumi.set(self, "state", value)
968
985
 
986
+ @property
987
+ @pulumi.getter(name="terminateRunsOnDeletion")
988
+ def terminate_runs_on_deletion(self) -> Optional[pulumi.Input[bool]]:
989
+ """
990
+ A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
991
+
992
+ ** IMPORTANT **
993
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
994
+ """
995
+ return pulumi.get(self, "terminate_runs_on_deletion")
996
+
997
+ @terminate_runs_on_deletion.setter
998
+ def terminate_runs_on_deletion(self, value: Optional[pulumi.Input[bool]]):
999
+ pulumi.set(self, "terminate_runs_on_deletion", value)
1000
+
969
1001
  @property
970
1002
  @pulumi.getter(name="timeCreated")
971
1003
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -1006,11 +1038,7 @@ class _ApplicationState:
1006
1038
  @pulumi.getter(name="warehouseBucketUri")
1007
1039
  def warehouse_bucket_uri(self) -> Optional[pulumi.Input[str]]:
1008
1040
  """
1009
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1010
-
1011
-
1012
- ** IMPORTANT **
1013
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1041
+ (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1014
1042
  """
1015
1043
  return pulumi.get(self, "warehouse_bucket_uri")
1016
1044
 
@@ -1050,6 +1078,7 @@ class Application(pulumi.CustomResource):
1050
1078
  pool_id: Optional[pulumi.Input[str]] = None,
1051
1079
  private_endpoint_id: Optional[pulumi.Input[str]] = None,
1052
1080
  spark_version: Optional[pulumi.Input[str]] = None,
1081
+ terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
1053
1082
  type: Optional[pulumi.Input[str]] = None,
1054
1083
  warehouse_bucket_uri: Optional[pulumi.Input[str]] = None,
1055
1084
  __props__=None):
@@ -1108,7 +1137,8 @@ class Application(pulumi.CustomResource):
1108
1137
  pool_id=test_pool["id"],
1109
1138
  private_endpoint_id=test_private_endpoint["id"],
1110
1139
  type=application_type,
1111
- warehouse_bucket_uri=application_warehouse_bucket_uri)
1140
+ warehouse_bucket_uri=application_warehouse_bucket_uri,
1141
+ terminate_runs_on_deletion=True)
1112
1142
  ```
1113
1143
 
1114
1144
  ## Import
@@ -1147,12 +1177,12 @@ class Application(pulumi.CustomResource):
1147
1177
  :param pulumi.Input[str] pool_id: (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
1148
1178
  :param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
1149
1179
  :param pulumi.Input[str] spark_version: (Updatable) The Spark version utilized to run the application.
1150
- :param pulumi.Input[str] type: The Spark application processing type.
1151
- :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1152
-
1180
+ :param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
1153
1181
 
1154
1182
  ** IMPORTANT **
1155
1183
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1184
+ :param pulumi.Input[str] type: The Spark application processing type.
1185
+ :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1156
1186
  """
1157
1187
  ...
1158
1188
  @overload
@@ -1215,7 +1245,8 @@ class Application(pulumi.CustomResource):
1215
1245
  pool_id=test_pool["id"],
1216
1246
  private_endpoint_id=test_private_endpoint["id"],
1217
1247
  type=application_type,
1218
- warehouse_bucket_uri=application_warehouse_bucket_uri)
1248
+ warehouse_bucket_uri=application_warehouse_bucket_uri,
1249
+ terminate_runs_on_deletion=True)
1219
1250
  ```
1220
1251
 
1221
1252
  ## Import
@@ -1267,6 +1298,7 @@ class Application(pulumi.CustomResource):
1267
1298
  pool_id: Optional[pulumi.Input[str]] = None,
1268
1299
  private_endpoint_id: Optional[pulumi.Input[str]] = None,
1269
1300
  spark_version: Optional[pulumi.Input[str]] = None,
1301
+ terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
1270
1302
  type: Optional[pulumi.Input[str]] = None,
1271
1303
  warehouse_bucket_uri: Optional[pulumi.Input[str]] = None,
1272
1304
  __props__=None):
@@ -1318,6 +1350,7 @@ class Application(pulumi.CustomResource):
1318
1350
  if spark_version is None and not opts.urn:
1319
1351
  raise TypeError("Missing required property 'spark_version'")
1320
1352
  __props__.__dict__["spark_version"] = spark_version
1353
+ __props__.__dict__["terminate_runs_on_deletion"] = terminate_runs_on_deletion
1321
1354
  __props__.__dict__["type"] = type
1322
1355
  __props__.__dict__["warehouse_bucket_uri"] = warehouse_bucket_uri
1323
1356
  __props__.__dict__["owner_principal_id"] = None
@@ -1364,6 +1397,7 @@ class Application(pulumi.CustomResource):
1364
1397
  private_endpoint_id: Optional[pulumi.Input[str]] = None,
1365
1398
  spark_version: Optional[pulumi.Input[str]] = None,
1366
1399
  state: Optional[pulumi.Input[str]] = None,
1400
+ terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
1367
1401
  time_created: Optional[pulumi.Input[str]] = None,
1368
1402
  time_updated: Optional[pulumi.Input[str]] = None,
1369
1403
  type: Optional[pulumi.Input[str]] = None,
@@ -1404,14 +1438,14 @@ class Application(pulumi.CustomResource):
1404
1438
  :param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
1405
1439
  :param pulumi.Input[str] spark_version: (Updatable) The Spark version utilized to run the application.
1406
1440
  :param pulumi.Input[str] state: The current state of this application.
1407
- :param pulumi.Input[str] time_created: The date and time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
1408
- :param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
1409
- :param pulumi.Input[str] type: The Spark application processing type.
1410
- :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1411
-
1441
+ :param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
1412
1442
 
1413
1443
  ** IMPORTANT **
1414
1444
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1445
+ :param pulumi.Input[str] time_created: The date and time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
1446
+ :param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
1447
+ :param pulumi.Input[str] type: The Spark application processing type.
1448
+ :param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1415
1449
  """
1416
1450
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1417
1451
 
@@ -1446,6 +1480,7 @@ class Application(pulumi.CustomResource):
1446
1480
  __props__.__dict__["private_endpoint_id"] = private_endpoint_id
1447
1481
  __props__.__dict__["spark_version"] = spark_version
1448
1482
  __props__.__dict__["state"] = state
1483
+ __props__.__dict__["terminate_runs_on_deletion"] = terminate_runs_on_deletion
1449
1484
  __props__.__dict__["time_created"] = time_created
1450
1485
  __props__.__dict__["time_updated"] = time_updated
1451
1486
  __props__.__dict__["type"] = type
@@ -1684,6 +1719,17 @@ class Application(pulumi.CustomResource):
1684
1719
  """
1685
1720
  return pulumi.get(self, "state")
1686
1721
 
1722
+ @property
1723
+ @pulumi.getter(name="terminateRunsOnDeletion")
1724
+ def terminate_runs_on_deletion(self) -> pulumi.Output[Optional[bool]]:
1725
+ """
1726
+ A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
1727
+
1728
+ ** IMPORTANT **
1729
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1730
+ """
1731
+ return pulumi.get(self, "terminate_runs_on_deletion")
1732
+
1687
1733
  @property
1688
1734
  @pulumi.getter(name="timeCreated")
1689
1735
  def time_created(self) -> pulumi.Output[str]:
@@ -1712,11 +1758,7 @@ class Application(pulumi.CustomResource):
1712
1758
  @pulumi.getter(name="warehouseBucketUri")
1713
1759
  def warehouse_bucket_uri(self) -> pulumi.Output[str]:
1714
1760
  """
1715
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1716
-
1717
-
1718
- ** IMPORTANT **
1719
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1761
+ (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
1720
1762
  """
1721
1763
  return pulumi.get(self, "warehouse_bucket_uri")
1722
1764
 
@@ -27,7 +27,7 @@ class GetApplicationResult:
27
27
  """
28
28
  A collection of values returned by getApplication.
29
29
  """
30
- def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, class_name=None, compartment_id=None, configuration=None, defined_tags=None, description=None, display_name=None, driver_shape=None, driver_shape_configs=None, execute=None, executor_shape=None, executor_shape_configs=None, file_uri=None, freeform_tags=None, id=None, idle_timeout_in_minutes=None, language=None, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_id=None, spark_version=None, state=None, time_created=None, time_updated=None, type=None, warehouse_bucket_uri=None):
30
+ def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, class_name=None, compartment_id=None, configuration=None, defined_tags=None, description=None, display_name=None, driver_shape=None, driver_shape_configs=None, execute=None, executor_shape=None, executor_shape_configs=None, file_uri=None, freeform_tags=None, id=None, idle_timeout_in_minutes=None, language=None, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_id=None, spark_version=None, state=None, terminate_runs_on_deletion=None, time_created=None, time_updated=None, type=None, warehouse_bucket_uri=None):
31
31
  if application_id and not isinstance(application_id, str):
32
32
  raise TypeError("Expected argument 'application_id' to be a str")
33
33
  pulumi.set(__self__, "application_id", application_id)
@@ -121,6 +121,9 @@ class GetApplicationResult:
121
121
  if state and not isinstance(state, str):
122
122
  raise TypeError("Expected argument 'state' to be a str")
123
123
  pulumi.set(__self__, "state", state)
124
+ if terminate_runs_on_deletion and not isinstance(terminate_runs_on_deletion, bool):
125
+ raise TypeError("Expected argument 'terminate_runs_on_deletion' to be a bool")
126
+ pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
124
127
  if time_created and not isinstance(time_created, str):
125
128
  raise TypeError("Expected argument 'time_created' to be a str")
126
129
  pulumi.set(__self__, "time_created", time_created)
@@ -379,6 +382,14 @@ class GetApplicationResult:
379
382
  """
380
383
  return pulumi.get(self, "state")
381
384
 
385
+ @property
386
+ @pulumi.getter(name="terminateRunsOnDeletion")
387
+ def terminate_runs_on_deletion(self) -> bool:
388
+ """
389
+ A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
390
+ """
391
+ return pulumi.get(self, "terminate_runs_on_deletion")
392
+
382
393
  @property
383
394
  @pulumi.getter(name="timeCreated")
384
395
  def time_created(self) -> str:
@@ -449,6 +460,7 @@ class AwaitableGetApplicationResult(GetApplicationResult):
449
460
  private_endpoint_id=self.private_endpoint_id,
450
461
  spark_version=self.spark_version,
451
462
  state=self.state,
463
+ terminate_runs_on_deletion=self.terminate_runs_on_deletion,
452
464
  time_created=self.time_created,
453
465
  time_updated=self.time_updated,
454
466
  type=self.type,
@@ -511,6 +523,7 @@ def get_application(application_id: Optional[str] = None,
511
523
  private_endpoint_id=pulumi.get(__ret__, 'private_endpoint_id'),
512
524
  spark_version=pulumi.get(__ret__, 'spark_version'),
513
525
  state=pulumi.get(__ret__, 'state'),
526
+ terminate_runs_on_deletion=pulumi.get(__ret__, 'terminate_runs_on_deletion'),
514
527
  time_created=pulumi.get(__ret__, 'time_created'),
515
528
  time_updated=pulumi.get(__ret__, 'time_updated'),
516
529
  type=pulumi.get(__ret__, 'type'),
@@ -570,6 +583,7 @@ def get_application_output(application_id: Optional[pulumi.Input[str]] = None,
570
583
  private_endpoint_id=pulumi.get(__response__, 'private_endpoint_id'),
571
584
  spark_version=pulumi.get(__response__, 'spark_version'),
572
585
  state=pulumi.get(__response__, 'state'),
586
+ terminate_runs_on_deletion=pulumi.get(__response__, 'terminate_runs_on_deletion'),
573
587
  time_created=pulumi.get(__response__, 'time_created'),
574
588
  time_updated=pulumi.get(__response__, 'time_updated'),
575
589
  type=pulumi.get(__response__, 'type'),
@@ -1356,6 +1356,7 @@ class GetApplicationsApplicationResult(dict):
1356
1356
  private_endpoint_id: str,
1357
1357
  spark_version: str,
1358
1358
  state: str,
1359
+ terminate_runs_on_deletion: bool,
1359
1360
  time_created: str,
1360
1361
  time_updated: str,
1361
1362
  type: str,
@@ -1426,6 +1427,7 @@ class GetApplicationsApplicationResult(dict):
1426
1427
  pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
1427
1428
  pulumi.set(__self__, "spark_version", spark_version)
1428
1429
  pulumi.set(__self__, "state", state)
1430
+ pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
1429
1431
  pulumi.set(__self__, "time_created", time_created)
1430
1432
  pulumi.set(__self__, "time_updated", time_updated)
1431
1433
  pulumi.set(__self__, "type", type)
@@ -1671,6 +1673,11 @@ class GetApplicationsApplicationResult(dict):
1671
1673
  """
1672
1674
  return pulumi.get(self, "state")
1673
1675
 
1676
+ @property
1677
+ @pulumi.getter(name="terminateRunsOnDeletion")
1678
+ def terminate_runs_on_deletion(self) -> bool:
1679
+ return pulumi.get(self, "terminate_runs_on_deletion")
1680
+
1674
1681
  @property
1675
1682
  @pulumi.getter(name="timeCreated")
1676
1683
  def time_created(self) -> str:
@@ -1656,7 +1656,7 @@ if not MYPY:
1656
1656
  class ModelCustomMetadataListArgsDict(TypedDict):
1657
1657
  category: NotRequired[pulumi.Input[str]]
1658
1658
  """
1659
- (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,other".
1659
+ (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
1660
1660
  """
1661
1661
  description: NotRequired[pulumi.Input[str]]
1662
1662
  """
@@ -1670,7 +1670,7 @@ if not MYPY:
1670
1670
  * libraryVersion
1671
1671
  * estimatorClass
1672
1672
  * hyperParameters
1673
- * testartifactresults
1673
+ * testArtifactresults
1674
1674
  """
1675
1675
  value: NotRequired[pulumi.Input[str]]
1676
1676
  """
@@ -1689,7 +1689,7 @@ class ModelCustomMetadataListArgs:
1689
1689
  key: Optional[pulumi.Input[str]] = None,
1690
1690
  value: Optional[pulumi.Input[str]] = None):
1691
1691
  """
1692
- :param pulumi.Input[str] category: (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,other".
1692
+ :param pulumi.Input[str] category: (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
1693
1693
  :param pulumi.Input[str] description: (Updatable) Description of model metadata
1694
1694
  :param pulumi.Input[str] key: (Updatable) Key of the model Metadata. The key can either be user defined or Oracle Cloud Infrastructure defined. List of Oracle Cloud Infrastructure defined keys:
1695
1695
  * useCaseType
@@ -1697,7 +1697,7 @@ class ModelCustomMetadataListArgs:
1697
1697
  * libraryVersion
1698
1698
  * estimatorClass
1699
1699
  * hyperParameters
1700
- * testartifactresults
1700
+ * testArtifactresults
1701
1701
  :param pulumi.Input[str] value: (Updatable) Allowed values for useCaseType: binary_classification, regression, multinomial_classification, clustering, recommender, dimensionality_reduction/representation, time_series_forecasting, anomaly_detection, topic_modeling, ner, sentiment_analysis, image_classification, object_localization, other
1702
1702
 
1703
1703
  Allowed values for libraryName: scikit-learn, xgboost, tensorflow, pytorch, mxnet, keras, lightGBM, pymc3, pyOD, spacy, prophet, sktime, statsmodels, cuml, oracle_automl, h2o, transformers, nltk, emcee, pystan, bert, gensim, flair, word2vec, ensemble, other
@@ -1715,7 +1715,7 @@ class ModelCustomMetadataListArgs:
1715
1715
  @pulumi.getter
1716
1716
  def category(self) -> Optional[pulumi.Input[str]]:
1717
1717
  """
1718
- (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,other".
1718
+ (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
1719
1719
  """
1720
1720
  return pulumi.get(self, "category")
1721
1721
 
@@ -1745,7 +1745,7 @@ class ModelCustomMetadataListArgs:
1745
1745
  * libraryVersion
1746
1746
  * estimatorClass
1747
1747
  * hyperParameters
1748
- * testartifactresults
1748
+ * testArtifactresults
1749
1749
  """
1750
1750
  return pulumi.get(self, "key")
1751
1751
 
@@ -1772,7 +1772,7 @@ if not MYPY:
1772
1772
  class ModelDefinedMetadataListArgsDict(TypedDict):
1773
1773
  category: NotRequired[pulumi.Input[str]]
1774
1774
  """
1775
- (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,other".
1775
+ (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
1776
1776
  """
1777
1777
  description: NotRequired[pulumi.Input[str]]
1778
1778
  """
@@ -1786,7 +1786,7 @@ if not MYPY:
1786
1786
  * libraryVersion
1787
1787
  * estimatorClass
1788
1788
  * hyperParameters
1789
- * testartifactresults
1789
+ * testArtifactresults
1790
1790
  """
1791
1791
  value: NotRequired[pulumi.Input[str]]
1792
1792
  """
@@ -1805,7 +1805,7 @@ class ModelDefinedMetadataListArgs:
1805
1805
  key: Optional[pulumi.Input[str]] = None,
1806
1806
  value: Optional[pulumi.Input[str]] = None):
1807
1807
  """
1808
- :param pulumi.Input[str] category: (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,other".
1808
+ :param pulumi.Input[str] category: (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
1809
1809
  :param pulumi.Input[str] description: (Updatable) Description of model metadata
1810
1810
  :param pulumi.Input[str] key: (Updatable) Key of the model Metadata. The key can either be user defined or Oracle Cloud Infrastructure defined. List of Oracle Cloud Infrastructure defined keys:
1811
1811
  * useCaseType
@@ -1813,7 +1813,7 @@ class ModelDefinedMetadataListArgs:
1813
1813
  * libraryVersion
1814
1814
  * estimatorClass
1815
1815
  * hyperParameters
1816
- * testartifactresults
1816
+ * testArtifactresults
1817
1817
  :param pulumi.Input[str] value: (Updatable) Allowed values for useCaseType: binary_classification, regression, multinomial_classification, clustering, recommender, dimensionality_reduction/representation, time_series_forecasting, anomaly_detection, topic_modeling, ner, sentiment_analysis, image_classification, object_localization, other
1818
1818
 
1819
1819
  Allowed values for libraryName: scikit-learn, xgboost, tensorflow, pytorch, mxnet, keras, lightGBM, pymc3, pyOD, spacy, prophet, sktime, statsmodels, cuml, oracle_automl, h2o, transformers, nltk, emcee, pystan, bert, gensim, flair, word2vec, ensemble, other
@@ -1831,7 +1831,7 @@ class ModelDefinedMetadataListArgs:
1831
1831
  @pulumi.getter
1832
1832
  def category(self) -> Optional[pulumi.Input[str]]:
1833
1833
  """
1834
- (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,other".
1834
+ (Updatable) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values "Performance,Training Profile,Training and Validation Datasets,Training Environment,Reports,Readme,other".
1835
1835
  """
1836
1836
  return pulumi.get(self, "category")
1837
1837
 
@@ -1861,7 +1861,7 @@ class ModelDefinedMetadataListArgs:
1861
1861
  * libraryVersion
1862
1862
  * estimatorClass
1863
1863
  * hyperParameters
1864
- * testartifactresults
1864
+ * testArtifactresults
1865
1865
  """
1866
1866
  return pulumi.get(self, "key")
1867
1867
 
@@ -2397,6 +2397,10 @@ if not MYPY:
2397
2397
  """
2398
2398
  (Updatable) Details for the model-deployment instance shape configuration.
2399
2399
  """
2400
+ private_endpoint_id: NotRequired[pulumi.Input[str]]
2401
+ """
2402
+ (Updatable) The OCID of a Data Science private endpoint.
2403
+ """
2400
2404
  subnet_id: NotRequired[pulumi.Input[str]]
2401
2405
  """
2402
2406
  (Updatable) A model deployment instance is provided with a VNIC for network access. This specifies the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet to create a VNIC in. The subnet should be in a VCN with a NAT/SGW gateway for egress.
@@ -2409,15 +2413,19 @@ class ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetail
2409
2413
  def __init__(__self__, *,
2410
2414
  instance_shape_name: pulumi.Input[str],
2411
2415
  model_deployment_instance_shape_config_details: Optional[pulumi.Input['ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsInstanceConfigurationModelDeploymentInstanceShapeConfigDetailsArgs']] = None,
2416
+ private_endpoint_id: Optional[pulumi.Input[str]] = None,
2412
2417
  subnet_id: Optional[pulumi.Input[str]] = None):
2413
2418
  """
2414
2419
  :param pulumi.Input[str] instance_shape_name: (Updatable) The shape used to launch the model deployment instances.
2415
2420
  :param pulumi.Input['ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsInstanceConfigurationModelDeploymentInstanceShapeConfigDetailsArgs'] model_deployment_instance_shape_config_details: (Updatable) Details for the model-deployment instance shape configuration.
2421
+ :param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a Data Science private endpoint.
2416
2422
  :param pulumi.Input[str] subnet_id: (Updatable) A model deployment instance is provided with a VNIC for network access. This specifies the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet to create a VNIC in. The subnet should be in a VCN with a NAT/SGW gateway for egress.
2417
2423
  """
2418
2424
  pulumi.set(__self__, "instance_shape_name", instance_shape_name)
2419
2425
  if model_deployment_instance_shape_config_details is not None:
2420
2426
  pulumi.set(__self__, "model_deployment_instance_shape_config_details", model_deployment_instance_shape_config_details)
2427
+ if private_endpoint_id is not None:
2428
+ pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
2421
2429
  if subnet_id is not None:
2422
2430
  pulumi.set(__self__, "subnet_id", subnet_id)
2423
2431
 
@@ -2445,6 +2453,18 @@ class ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetail
2445
2453
  def model_deployment_instance_shape_config_details(self, value: Optional[pulumi.Input['ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsInstanceConfigurationModelDeploymentInstanceShapeConfigDetailsArgs']]):
2446
2454
  pulumi.set(self, "model_deployment_instance_shape_config_details", value)
2447
2455
 
2456
+ @property
2457
+ @pulumi.getter(name="privateEndpointId")
2458
+ def private_endpoint_id(self) -> Optional[pulumi.Input[str]]:
2459
+ """
2460
+ (Updatable) The OCID of a Data Science private endpoint.
2461
+ """
2462
+ return pulumi.get(self, "private_endpoint_id")
2463
+
2464
+ @private_endpoint_id.setter
2465
+ def private_endpoint_id(self, value: Optional[pulumi.Input[str]]):
2466
+ pulumi.set(self, "private_endpoint_id", value)
2467
+
2448
2468
  @property
2449
2469
  @pulumi.getter(name="subnetId")
2450
2470
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
@@ -104,7 +104,7 @@ class GetJobRunResult:
104
104
  @pulumi.getter(name="compartmentId")
105
105
  def compartment_id(self) -> str:
106
106
  """
107
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the job.
107
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the job run.
108
108
  """
109
109
  return pulumi.get(self, "compartment_id")
110
110
 
@@ -168,7 +168,7 @@ class GetJobRunResult:
168
168
  @pulumi.getter(name="jobId")
169
169
  def job_id(self) -> str:
170
170
  """
171
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job run.
171
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job.
172
172
  """
173
173
  return pulumi.get(self, "job_id")
174
174
 
@@ -226,7 +226,7 @@ class GetJobRunResult:
226
226
  @pulumi.getter(name="projectId")
227
227
  def project_id(self) -> str:
228
228
  """
229
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
229
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
230
230
  """
231
231
  return pulumi.get(self, "project_id")
232
232
 
@@ -58,7 +58,7 @@ class GetJobRunsResult:
58
58
  @pulumi.getter(name="compartmentId")
59
59
  def compartment_id(self) -> str:
60
60
  """
61
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the job.
61
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the job run.
62
62
  """
63
63
  return pulumi.get(self, "compartment_id")
64
64
 
@@ -95,7 +95,7 @@ class GetJobRunsResult:
95
95
  @pulumi.getter(name="jobId")
96
96
  def job_id(self) -> Optional[str]:
97
97
  """
98
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job run.
98
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job.
99
99
  """
100
100
  return pulumi.get(self, "job_id")
101
101
 
@@ -36,7 +36,7 @@ class JobRunArgs:
36
36
  The set of arguments for constructing a JobRun resource.
37
37
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the job.
38
38
  :param pulumi.Input[str] job_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job to create a run for.
39
- :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
39
+ :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
40
40
 
41
41
 
42
42
  ** IMPORTANT **
@@ -98,7 +98,7 @@ class JobRunArgs:
98
98
  @pulumi.getter(name="projectId")
99
99
  def project_id(self) -> pulumi.Input[str]:
100
100
  """
101
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
101
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
102
102
 
103
103
 
104
104
  ** IMPORTANT **
@@ -247,7 +247,7 @@ class _JobRunState:
247
247
  :param pulumi.Input[str] lifecycle_details: Details of the state of the job run.
248
248
  :param pulumi.Input[Sequence[pulumi.Input['JobRunLogDetailArgs']]] log_details: Customer logging details for job run.
249
249
  :param pulumi.Input[str] opc_parent_rpt_url: URL to fetch the Resource Principal Token from the parent resource.
250
- :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
250
+ :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
251
251
 
252
252
 
253
253
  ** IMPORTANT **
@@ -482,7 +482,7 @@ class _JobRunState:
482
482
  @pulumi.getter(name="projectId")
483
483
  def project_id(self) -> Optional[pulumi.Input[str]]:
484
484
  """
485
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
485
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
486
486
 
487
487
 
488
488
  ** IMPORTANT **
@@ -626,7 +626,7 @@ class JobRun(pulumi.CustomResource):
626
626
  :param pulumi.Input[str] job_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job to create a run for.
627
627
  :param pulumi.Input[Union['JobRunJobLogConfigurationOverrideDetailsArgs', 'JobRunJobLogConfigurationOverrideDetailsArgsDict']] job_log_configuration_override_details: Logging configuration for resource.
628
628
  :param pulumi.Input[str] opc_parent_rpt_url: URL to fetch the Resource Principal Token from the parent resource.
629
- :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
629
+ :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
630
630
 
631
631
 
632
632
  ** IMPORTANT **
@@ -805,7 +805,7 @@ class JobRun(pulumi.CustomResource):
805
805
  :param pulumi.Input[str] lifecycle_details: Details of the state of the job run.
806
806
  :param pulumi.Input[Sequence[pulumi.Input[Union['JobRunLogDetailArgs', 'JobRunLogDetailArgsDict']]]] log_details: Customer logging details for job run.
807
807
  :param pulumi.Input[str] opc_parent_rpt_url: URL to fetch the Resource Principal Token from the parent resource.
808
- :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
808
+ :param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
809
809
 
810
810
 
811
811
  ** IMPORTANT **
@@ -965,7 +965,7 @@ class JobRun(pulumi.CustomResource):
965
965
  @pulumi.getter(name="projectId")
966
966
  def project_id(self) -> pulumi.Output[str]:
967
967
  """
968
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
968
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
969
969
 
970
970
 
971
971
  ** IMPORTANT **
@@ -486,6 +486,7 @@ class ModelDeployment(pulumi.CustomResource):
486
486
  "memory_in_gbs": model_deployment_model_deployment_configuration_details_model_configuration_details_instance_configuration_model_deployment_instance_shape_config_details_memory_in_gbs,
487
487
  "ocpus": model_deployment_model_deployment_configuration_details_model_configuration_details_instance_configuration_model_deployment_instance_shape_config_details_ocpus,
488
488
  },
489
+ "private_endpoint_id": test_private_endpoint["id"],
489
490
  "subnet_id": test_subnet["id"],
490
491
  },
491
492
  "model_id": test_model["id"],
@@ -609,6 +610,7 @@ class ModelDeployment(pulumi.CustomResource):
609
610
  "memory_in_gbs": model_deployment_model_deployment_configuration_details_model_configuration_details_instance_configuration_model_deployment_instance_shape_config_details_memory_in_gbs,
610
611
  "ocpus": model_deployment_model_deployment_configuration_details_model_configuration_details_instance_configuration_model_deployment_instance_shape_config_details_ocpus,
611
612
  },
613
+ "private_endpoint_id": test_private_endpoint["id"],
612
614
  "subnet_id": test_subnet["id"],
613
615
  },
614
616
  "model_id": test_model["id"],