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
@@ -1444,7 +1444,7 @@ class ModelCustomMetadataList(dict):
1444
1444
  key: Optional[str] = None,
1445
1445
  value: Optional[str] = None):
1446
1446
  """
1447
- :param 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".
1447
+ :param 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".
1448
1448
  :param str description: (Updatable) Description of model metadata
1449
1449
  :param 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:
1450
1450
  * useCaseType
@@ -1452,7 +1452,7 @@ class ModelCustomMetadataList(dict):
1452
1452
  * libraryVersion
1453
1453
  * estimatorClass
1454
1454
  * hyperParameters
1455
- * testartifactresults
1455
+ * testArtifactresults
1456
1456
  :param 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
1457
1457
 
1458
1458
  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
@@ -1470,7 +1470,7 @@ class ModelCustomMetadataList(dict):
1470
1470
  @pulumi.getter
1471
1471
  def category(self) -> Optional[str]:
1472
1472
  """
1473
- (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".
1473
+ (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".
1474
1474
  """
1475
1475
  return pulumi.get(self, "category")
1476
1476
 
@@ -1492,7 +1492,7 @@ class ModelCustomMetadataList(dict):
1492
1492
  * libraryVersion
1493
1493
  * estimatorClass
1494
1494
  * hyperParameters
1495
- * testartifactresults
1495
+ * testArtifactresults
1496
1496
  """
1497
1497
  return pulumi.get(self, "key")
1498
1498
 
@@ -1515,7 +1515,7 @@ class ModelDefinedMetadataList(dict):
1515
1515
  key: Optional[str] = None,
1516
1516
  value: Optional[str] = None):
1517
1517
  """
1518
- :param 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".
1518
+ :param 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".
1519
1519
  :param str description: (Updatable) Description of model metadata
1520
1520
  :param 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:
1521
1521
  * useCaseType
@@ -1523,7 +1523,7 @@ class ModelDefinedMetadataList(dict):
1523
1523
  * libraryVersion
1524
1524
  * estimatorClass
1525
1525
  * hyperParameters
1526
- * testartifactresults
1526
+ * testArtifactresults
1527
1527
  :param 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
1528
1528
 
1529
1529
  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
@@ -1541,7 +1541,7 @@ class ModelDefinedMetadataList(dict):
1541
1541
  @pulumi.getter
1542
1542
  def category(self) -> Optional[str]:
1543
1543
  """
1544
- (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".
1544
+ (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".
1545
1545
  """
1546
1546
  return pulumi.get(self, "category")
1547
1547
 
@@ -1563,7 +1563,7 @@ class ModelDefinedMetadataList(dict):
1563
1563
  * libraryVersion
1564
1564
  * estimatorClass
1565
1565
  * hyperParameters
1566
- * testartifactresults
1566
+ * testArtifactresults
1567
1567
  """
1568
1568
  return pulumi.get(self, "key")
1569
1569
 
@@ -1993,6 +1993,8 @@ class ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetail
1993
1993
  suggest = "instance_shape_name"
1994
1994
  elif key == "modelDeploymentInstanceShapeConfigDetails":
1995
1995
  suggest = "model_deployment_instance_shape_config_details"
1996
+ elif key == "privateEndpointId":
1997
+ suggest = "private_endpoint_id"
1996
1998
  elif key == "subnetId":
1997
1999
  suggest = "subnet_id"
1998
2000
 
@@ -2010,15 +2012,19 @@ class ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetail
2010
2012
  def __init__(__self__, *,
2011
2013
  instance_shape_name: str,
2012
2014
  model_deployment_instance_shape_config_details: Optional['outputs.ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsInstanceConfigurationModelDeploymentInstanceShapeConfigDetails'] = None,
2015
+ private_endpoint_id: Optional[str] = None,
2013
2016
  subnet_id: Optional[str] = None):
2014
2017
  """
2015
2018
  :param str instance_shape_name: (Updatable) The shape used to launch the model deployment instances.
2016
2019
  :param 'ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsInstanceConfigurationModelDeploymentInstanceShapeConfigDetailsArgs' model_deployment_instance_shape_config_details: (Updatable) Details for the model-deployment instance shape configuration.
2020
+ :param str private_endpoint_id: (Updatable) The OCID of a Data Science private endpoint.
2017
2021
  :param 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.
2018
2022
  """
2019
2023
  pulumi.set(__self__, "instance_shape_name", instance_shape_name)
2020
2024
  if model_deployment_instance_shape_config_details is not None:
2021
2025
  pulumi.set(__self__, "model_deployment_instance_shape_config_details", model_deployment_instance_shape_config_details)
2026
+ if private_endpoint_id is not None:
2027
+ pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
2022
2028
  if subnet_id is not None:
2023
2029
  pulumi.set(__self__, "subnet_id", subnet_id)
2024
2030
 
@@ -2038,6 +2044,14 @@ class ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetail
2038
2044
  """
2039
2045
  return pulumi.get(self, "model_deployment_instance_shape_config_details")
2040
2046
 
2047
+ @property
2048
+ @pulumi.getter(name="privateEndpointId")
2049
+ def private_endpoint_id(self) -> Optional[str]:
2050
+ """
2051
+ (Updatable) The OCID of a Data Science private endpoint.
2052
+ """
2053
+ return pulumi.get(self, "private_endpoint_id")
2054
+
2041
2055
  @property
2042
2056
  @pulumi.getter(name="subnetId")
2043
2057
  def subnet_id(self) -> Optional[str]:
@@ -5648,7 +5662,7 @@ class GetJobRunsJobRunResult(dict):
5648
5662
  :param Sequence['GetJobRunsJobRunJobStorageMountConfigurationDetailsListArgs'] job_storage_mount_configuration_details_lists: Collection of JobStorageMountConfigurationDetails.
5649
5663
  :param str lifecycle_details: Details of the state of the job run.
5650
5664
  :param Sequence['GetJobRunsJobRunLogDetailArgs'] log_details: Customer logging details for job run.
5651
- :param str project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
5665
+ :param 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.
5652
5666
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
5653
5667
  :param str time_accepted: The date and time the job run was accepted in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
5654
5668
  :param str time_finished: The date and time the job run request was finished in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -5802,7 +5816,7 @@ class GetJobRunsJobRunResult(dict):
5802
5816
  @pulumi.getter(name="projectId")
5803
5817
  def project_id(self) -> str:
5804
5818
  """
5805
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job with.
5819
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the job run with.
5806
5820
  """
5807
5821
  return pulumi.get(self, "project_id")
5808
5822
 
@@ -7021,7 +7035,7 @@ class GetModelCustomMetadataListResult(dict):
7021
7035
  key: str,
7022
7036
  value: str):
7023
7037
  """
7024
- :param str category: 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".
7038
+ :param str category: 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".
7025
7039
  :param str description: A short description of the model.
7026
7040
  :param str key: Key of the model Metadata. The key can either be user defined or Oracle Cloud Infrastructure defined. List of Oracle Cloud Infrastructure defined keys:
7027
7041
  * useCaseType
@@ -7029,7 +7043,7 @@ class GetModelCustomMetadataListResult(dict):
7029
7043
  * libraryVersion
7030
7044
  * estimatorClass
7031
7045
  * hyperParameters
7032
- * testartifactresults
7046
+ * testArtifactresults
7033
7047
  :param str value: 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
7034
7048
  """
7035
7049
  pulumi.set(__self__, "category", category)
@@ -7041,7 +7055,7 @@ class GetModelCustomMetadataListResult(dict):
7041
7055
  @pulumi.getter
7042
7056
  def category(self) -> str:
7043
7057
  """
7044
- 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".
7058
+ 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".
7045
7059
  """
7046
7060
  return pulumi.get(self, "category")
7047
7061
 
@@ -7063,7 +7077,7 @@ class GetModelCustomMetadataListResult(dict):
7063
7077
  * libraryVersion
7064
7078
  * estimatorClass
7065
7079
  * hyperParameters
7066
- * testartifactresults
7080
+ * testArtifactresults
7067
7081
  """
7068
7082
  return pulumi.get(self, "key")
7069
7083
 
@@ -7084,7 +7098,7 @@ class GetModelDefinedMetadataListResult(dict):
7084
7098
  key: str,
7085
7099
  value: str):
7086
7100
  """
7087
- :param str category: 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".
7101
+ :param str category: 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".
7088
7102
  :param str description: A short description of the model.
7089
7103
  :param str key: Key of the model Metadata. The key can either be user defined or Oracle Cloud Infrastructure defined. List of Oracle Cloud Infrastructure defined keys:
7090
7104
  * useCaseType
@@ -7092,7 +7106,7 @@ class GetModelDefinedMetadataListResult(dict):
7092
7106
  * libraryVersion
7093
7107
  * estimatorClass
7094
7108
  * hyperParameters
7095
- * testartifactresults
7109
+ * testArtifactresults
7096
7110
  :param str value: 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
7097
7111
  """
7098
7112
  pulumi.set(__self__, "category", category)
@@ -7104,7 +7118,7 @@ class GetModelDefinedMetadataListResult(dict):
7104
7118
  @pulumi.getter
7105
7119
  def category(self) -> str:
7106
7120
  """
7107
- 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".
7121
+ 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".
7108
7122
  """
7109
7123
  return pulumi.get(self, "category")
7110
7124
 
@@ -7126,7 +7140,7 @@ class GetModelDefinedMetadataListResult(dict):
7126
7140
  * libraryVersion
7127
7141
  * estimatorClass
7128
7142
  * hyperParameters
7129
- * testartifactresults
7143
+ * testArtifactresults
7130
7144
  """
7131
7145
  return pulumi.get(self, "key")
7132
7146
 
@@ -7428,14 +7442,17 @@ class GetModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDeta
7428
7442
  def __init__(__self__, *,
7429
7443
  instance_shape_name: str,
7430
7444
  model_deployment_instance_shape_config_details: Sequence['outputs.GetModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailInstanceConfigurationModelDeploymentInstanceShapeConfigDetailResult'],
7445
+ private_endpoint_id: str,
7431
7446
  subnet_id: str):
7432
7447
  """
7433
7448
  :param str instance_shape_name: The shape used to launch the model deployment instances.
7434
7449
  :param Sequence['GetModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailInstanceConfigurationModelDeploymentInstanceShapeConfigDetailArgs'] model_deployment_instance_shape_config_details: Details for the model-deployment instance shape configuration.
7450
+ :param str private_endpoint_id: The OCID of a Data Science private endpoint.
7435
7451
  :param str subnet_id: 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.
7436
7452
  """
7437
7453
  pulumi.set(__self__, "instance_shape_name", instance_shape_name)
7438
7454
  pulumi.set(__self__, "model_deployment_instance_shape_config_details", model_deployment_instance_shape_config_details)
7455
+ pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
7439
7456
  pulumi.set(__self__, "subnet_id", subnet_id)
7440
7457
 
7441
7458
  @property
@@ -7454,6 +7471,14 @@ class GetModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDeta
7454
7471
  """
7455
7472
  return pulumi.get(self, "model_deployment_instance_shape_config_details")
7456
7473
 
7474
+ @property
7475
+ @pulumi.getter(name="privateEndpointId")
7476
+ def private_endpoint_id(self) -> str:
7477
+ """
7478
+ The OCID of a Data Science private endpoint.
7479
+ """
7480
+ return pulumi.get(self, "private_endpoint_id")
7481
+
7457
7482
  @property
7458
7483
  @pulumi.getter(name="subnetId")
7459
7484
  def subnet_id(self) -> str:
@@ -8410,14 +8435,17 @@ class GetModelDeploymentsModelDeploymentModelDeploymentConfigurationDetailModelC
8410
8435
  def __init__(__self__, *,
8411
8436
  instance_shape_name: str,
8412
8437
  model_deployment_instance_shape_config_details: Sequence['outputs.GetModelDeploymentsModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailInstanceConfigurationModelDeploymentInstanceShapeConfigDetailResult'],
8438
+ private_endpoint_id: str,
8413
8439
  subnet_id: str):
8414
8440
  """
8415
8441
  :param str instance_shape_name: The shape used to launch the model deployment instances.
8416
8442
  :param Sequence['GetModelDeploymentsModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailInstanceConfigurationModelDeploymentInstanceShapeConfigDetailArgs'] model_deployment_instance_shape_config_details: Details for the model-deployment instance shape configuration.
8443
+ :param str private_endpoint_id: The OCID of a Data Science private endpoint.
8417
8444
  :param str subnet_id: 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.
8418
8445
  """
8419
8446
  pulumi.set(__self__, "instance_shape_name", instance_shape_name)
8420
8447
  pulumi.set(__self__, "model_deployment_instance_shape_config_details", model_deployment_instance_shape_config_details)
8448
+ pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
8421
8449
  pulumi.set(__self__, "subnet_id", subnet_id)
8422
8450
 
8423
8451
  @property
@@ -8436,6 +8464,14 @@ class GetModelDeploymentsModelDeploymentModelDeploymentConfigurationDetailModelC
8436
8464
  """
8437
8465
  return pulumi.get(self, "model_deployment_instance_shape_config_details")
8438
8466
 
8467
+ @property
8468
+ @pulumi.getter(name="privateEndpointId")
8469
+ def private_endpoint_id(self) -> str:
8470
+ """
8471
+ The OCID of a Data Science private endpoint.
8472
+ """
8473
+ return pulumi.get(self, "private_endpoint_id")
8474
+
8439
8475
  @property
8440
8476
  @pulumi.getter(name="subnetId")
8441
8477
  def subnet_id(self) -> str:
@@ -9500,7 +9536,7 @@ class GetModelsModelCustomMetadataListResult(dict):
9500
9536
  key: str,
9501
9537
  value: str):
9502
9538
  """
9503
- :param str category: 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".
9539
+ :param str category: 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".
9504
9540
  :param str description: A short description of the model.
9505
9541
  :param str key: Key of the model Metadata. The key can either be user defined or Oracle Cloud Infrastructure defined. List of Oracle Cloud Infrastructure defined keys:
9506
9542
  * useCaseType
@@ -9508,7 +9544,7 @@ class GetModelsModelCustomMetadataListResult(dict):
9508
9544
  * libraryVersion
9509
9545
  * estimatorClass
9510
9546
  * hyperParameters
9511
- * testartifactresults
9547
+ * testArtifactresults
9512
9548
  :param str value: 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
9513
9549
  """
9514
9550
  pulumi.set(__self__, "category", category)
@@ -9520,7 +9556,7 @@ class GetModelsModelCustomMetadataListResult(dict):
9520
9556
  @pulumi.getter
9521
9557
  def category(self) -> str:
9522
9558
  """
9523
- 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".
9559
+ 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".
9524
9560
  """
9525
9561
  return pulumi.get(self, "category")
9526
9562
 
@@ -9542,7 +9578,7 @@ class GetModelsModelCustomMetadataListResult(dict):
9542
9578
  * libraryVersion
9543
9579
  * estimatorClass
9544
9580
  * hyperParameters
9545
- * testartifactresults
9581
+ * testArtifactresults
9546
9582
  """
9547
9583
  return pulumi.get(self, "key")
9548
9584
 
@@ -9563,7 +9599,7 @@ class GetModelsModelDefinedMetadataListResult(dict):
9563
9599
  key: str,
9564
9600
  value: str):
9565
9601
  """
9566
- :param str category: 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".
9602
+ :param str category: 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".
9567
9603
  :param str description: A short description of the model.
9568
9604
  :param str key: Key of the model Metadata. The key can either be user defined or Oracle Cloud Infrastructure defined. List of Oracle Cloud Infrastructure defined keys:
9569
9605
  * useCaseType
@@ -9571,7 +9607,7 @@ class GetModelsModelDefinedMetadataListResult(dict):
9571
9607
  * libraryVersion
9572
9608
  * estimatorClass
9573
9609
  * hyperParameters
9574
- * testartifactresults
9610
+ * testArtifactresults
9575
9611
  :param str value: 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
9576
9612
  """
9577
9613
  pulumi.set(__self__, "category", category)
@@ -9583,7 +9619,7 @@ class GetModelsModelDefinedMetadataListResult(dict):
9583
9619
  @pulumi.getter
9584
9620
  def category(self) -> str:
9585
9621
  """
9586
- 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".
9622
+ 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".
9587
9623
  """
9588
9624
  return pulumi.get(self, "category")
9589
9625
 
@@ -9605,7 +9641,7 @@ class GetModelsModelDefinedMetadataListResult(dict):
9605
9641
  * libraryVersion
9606
9642
  * estimatorClass
9607
9643
  * hyperParameters
9608
- * testartifactresults
9644
+ * testArtifactresults
9609
9645
  """
9610
9646
  return pulumi.get(self, "key")
9611
9647
 
@@ -581,7 +581,7 @@ if not MYPY:
581
581
  class DesktopPoolSessionLifecycleActionsArgsDict(TypedDict):
582
582
  disconnect: NotRequired[pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgsDict']]
583
583
  """
584
- (Updatable) Action and grace period for disconnect
584
+ (Updatable) Action and grace period for disconnect. Session disconnect can not be used together with an `availability_policy` schedule.
585
585
  """
586
586
  inactivity: NotRequired[pulumi.Input['DesktopPoolSessionLifecycleActionsInactivityArgsDict']]
587
587
  """
@@ -596,7 +596,7 @@ class DesktopPoolSessionLifecycleActionsArgs:
596
596
  disconnect: Optional[pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs']] = None,
597
597
  inactivity: Optional[pulumi.Input['DesktopPoolSessionLifecycleActionsInactivityArgs']] = None):
598
598
  """
599
- :param pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs'] disconnect: (Updatable) Action and grace period for disconnect
599
+ :param pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs'] disconnect: (Updatable) Action and grace period for disconnect. Session disconnect can not be used together with an `availability_policy` schedule.
600
600
  :param pulumi.Input['DesktopPoolSessionLifecycleActionsInactivityArgs'] inactivity: (Updatable) Action and grace period for inactivity
601
601
  """
602
602
  if disconnect is not None:
@@ -608,7 +608,7 @@ class DesktopPoolSessionLifecycleActionsArgs:
608
608
  @pulumi.getter
609
609
  def disconnect(self) -> Optional[pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs']]:
610
610
  """
611
- (Updatable) Action and grace period for disconnect
611
+ (Updatable) Action and grace period for disconnect. Session disconnect can not be used together with an `availability_policy` schedule.
612
612
  """
613
613
  return pulumi.get(self, "disconnect")
614
614
 
@@ -633,7 +633,7 @@ if not MYPY:
633
633
  class DesktopPoolSessionLifecycleActionsDisconnectArgsDict(TypedDict):
634
634
  action: pulumi.Input[str]
635
635
  """
636
- (Updatable) a disconnect action to be triggered
636
+ (Updatable) a disconnect action to be triggered. Could be set to NONE or STOP
637
637
  """
638
638
  grace_period_in_minutes: NotRequired[pulumi.Input[int]]
639
639
  """
@@ -648,7 +648,7 @@ class DesktopPoolSessionLifecycleActionsDisconnectArgs:
648
648
  action: pulumi.Input[str],
649
649
  grace_period_in_minutes: Optional[pulumi.Input[int]] = None):
650
650
  """
651
- :param pulumi.Input[str] action: (Updatable) a disconnect action to be triggered
651
+ :param pulumi.Input[str] action: (Updatable) a disconnect action to be triggered. Could be set to NONE or STOP
652
652
  :param pulumi.Input[int] grace_period_in_minutes: (Updatable) The period of time (in minutes) after disconnect before any action occurs. If the value is not provided, a default value is used.
653
653
  """
654
654
  pulumi.set(__self__, "action", action)
@@ -659,7 +659,7 @@ class DesktopPoolSessionLifecycleActionsDisconnectArgs:
659
659
  @pulumi.getter
660
660
  def action(self) -> pulumi.Input[str]:
661
661
  """
662
- (Updatable) a disconnect action to be triggered
662
+ (Updatable) a disconnect action to be triggered. Could be set to NONE or STOP
663
663
  """
664
664
  return pulumi.get(self, "action")
665
665
 
@@ -684,7 +684,7 @@ if not MYPY:
684
684
  class DesktopPoolSessionLifecycleActionsInactivityArgsDict(TypedDict):
685
685
  action: pulumi.Input[str]
686
686
  """
687
- (Updatable) an inactivity action to be triggered
687
+ (Updatable) an inactivity action to be triggered. Could be set to NONE or DISCONNECT.
688
688
  """
689
689
  grace_period_in_minutes: NotRequired[pulumi.Input[int]]
690
690
  """
@@ -699,7 +699,7 @@ class DesktopPoolSessionLifecycleActionsInactivityArgs:
699
699
  action: pulumi.Input[str],
700
700
  grace_period_in_minutes: Optional[pulumi.Input[int]] = None):
701
701
  """
702
- :param pulumi.Input[str] action: (Updatable) an inactivity action to be triggered
702
+ :param pulumi.Input[str] action: (Updatable) an inactivity action to be triggered. Could be set to NONE or DISCONNECT.
703
703
  :param pulumi.Input[int] grace_period_in_minutes: (Updatable) The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
704
704
  """
705
705
  pulumi.set(__self__, "action", action)
@@ -710,7 +710,7 @@ class DesktopPoolSessionLifecycleActionsInactivityArgs:
710
710
  @pulumi.getter
711
711
  def action(self) -> pulumi.Input[str]:
712
712
  """
713
- (Updatable) an inactivity action to be triggered
713
+ (Updatable) an inactivity action to be triggered. Could be set to NONE or DISCONNECT.
714
714
  """
715
715
  return pulumi.get(self, "action")
716
716