pulumi-oci 2.20.0a1734503093__py3-none-any.whl → 2.20.0a1734744214__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 (50) hide show
  1. pulumi_oci/__init__.py +16 -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_database.py +47 -0
  19. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  20. pulumi_oci/database/get_autonomous_database.py +15 -1
  21. pulumi_oci/database/outputs.py +22 -0
  22. pulumi_oci/datascience/_inputs.py +32 -12
  23. pulumi_oci/datascience/get_job_run.py +3 -3
  24. pulumi_oci/datascience/get_job_runs.py +2 -2
  25. pulumi_oci/datascience/job_run.py +7 -7
  26. pulumi_oci/datascience/model_deployment.py +2 -0
  27. pulumi_oci/datascience/outputs.py +62 -26
  28. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  29. pulumi_oci/goldengate/__init__.py +7 -0
  30. pulumi_oci/goldengate/_inputs.py +665 -0
  31. pulumi_oci/goldengate/connection.py +7 -7
  32. pulumi_oci/goldengate/get_pipeline.py +408 -0
  33. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  34. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  35. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  36. pulumi_oci/goldengate/get_pipelines.py +213 -0
  37. pulumi_oci/goldengate/get_recipes.py +188 -0
  38. pulumi_oci/goldengate/get_trail_files.py +4 -2
  39. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  40. pulumi_oci/goldengate/outputs.py +1500 -0
  41. pulumi_oci/goldengate/pipeline.py +928 -0
  42. pulumi_oci/pulumi-plugin.json +1 -1
  43. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  44. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  45. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  46. pulumi_oci/stackmonitoring/outputs.py +166 -24
  47. {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/METADATA +3 -3
  48. {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/RECORD +50 -39
  49. {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/WHEEL +0 -0
  50. {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/top_level.txt +0 -0
@@ -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"],
@@ -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