pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +248 -43
- pulumi_oci/aidocument/__init__.py +1 -0
- pulumi_oci/aidocument/_inputs.py +476 -6
- pulumi_oci/aidocument/get_model.py +63 -2
- pulumi_oci/aidocument/get_model_type.py +179 -0
- pulumi_oci/aidocument/get_models.py +1 -1
- pulumi_oci/aidocument/get_project.py +17 -2
- pulumi_oci/aidocument/get_projects.py +1 -1
- pulumi_oci/aidocument/model.py +188 -0
- pulumi_oci/aidocument/outputs.py +883 -8
- pulumi_oci/aidocument/processor_job.py +22 -4
- pulumi_oci/aidocument/project.py +50 -1
- pulumi_oci/apigateway/_inputs.py +608 -12
- pulumi_oci/apigateway/api.py +127 -38
- pulumi_oci/apigateway/certificate.py +122 -3
- pulumi_oci/apigateway/deployment.py +120 -3
- pulumi_oci/apigateway/gateway.py +124 -7
- pulumi_oci/apigateway/get_api.py +40 -1
- pulumi_oci/apigateway/get_certificate.py +41 -1
- pulumi_oci/apigateway/get_deployment.py +40 -1
- pulumi_oci/apigateway/get_gateway.py +40 -1
- pulumi_oci/apigateway/get_subscriber.py +40 -1
- pulumi_oci/apigateway/get_usage_plan.py +40 -1
- pulumi_oci/apigateway/outputs.py +1413 -39
- pulumi_oci/apigateway/subscriber.py +120 -3
- pulumi_oci/apigateway/usage_plan.py +127 -38
- pulumi_oci/apmconfig/_inputs.py +199 -15
- pulumi_oci/apmconfig/config.py +535 -17
- pulumi_oci/apmconfig/get_config.py +141 -1
- pulumi_oci/apmconfig/get_configs.py +2 -2
- pulumi_oci/apmconfig/outputs.py +509 -13
- pulumi_oci/apmtraces/__init__.py +5 -0
- pulumi_oci/apmtraces/_inputs.py +413 -0
- pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
- pulumi_oci/apmtraces/get_log.py +356 -0
- pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
- pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
- pulumi_oci/apmtraces/get_trace.py +4 -4
- pulumi_oci/apmtraces/outputs.py +971 -0
- pulumi_oci/apmtraces/scheduled_query.py +925 -0
- pulumi_oci/autoscaling/_inputs.py +177 -13
- pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
- pulumi_oci/autoscaling/outputs.py +269 -23
- pulumi_oci/core/_inputs.py +184 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/ipv6.py +49 -0
- pulumi_oci/core/outputs.py +376 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +396 -19
- pulumi_oci/database/autonomous_container_database.py +94 -0
- pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
- pulumi_oci/database/autonomous_database.py +578 -568
- pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +29 -1
- pulumi_oci/database/get_autonomous_database.py +65 -1
- pulumi_oci/database/get_autonomous_databases.py +6 -1
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
- pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
- pulumi_oci/database/outputs.py +1045 -83
- pulumi_oci/database/pluggable_database.py +0 -14
- pulumi_oci/database/pluggable_database_snapshot.py +539 -0
- pulumi_oci/databasemanagement/__init__.py +37 -0
- pulumi_oci/databasemanagement/_inputs.py +9516 -3414
- pulumi_oci/databasemanagement/cloud_asm.py +791 -0
- pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
- pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
- pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
- pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
- pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
- pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
- pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
- pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
- pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
- pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
- pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
- pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
- pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
- pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
- pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
- pulumi_oci/databasemanagement/get_managed_database.py +2 -2
- pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
- pulumi_oci/databasemanagement/outputs.py +18049 -4222
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +75 -8
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +70 -4
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +7975 -1013
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/datascience/__init__.py +10 -0
- pulumi_oci/datascience/_inputs.py +6760 -2206
- pulumi_oci/datascience/get_job.py +15 -1
- pulumi_oci/datascience/get_job_run.py +44 -2
- pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
- pulumi_oci/datascience/get_model_group.py +405 -0
- pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
- pulumi_oci/datascience/get_model_group_models.py +240 -0
- pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
- pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
- pulumi_oci/datascience/get_model_groups.py +265 -0
- pulumi_oci/datascience/get_pipeline_run.py +15 -1
- pulumi_oci/datascience/job.py +81 -154
- pulumi_oci/datascience/job_run.py +250 -4
- pulumi_oci/datascience/model_group.py +1111 -0
- pulumi_oci/datascience/model_group_artifact.py +369 -0
- pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
- pulumi_oci/datascience/notebook_session.py +4 -0
- pulumi_oci/datascience/outputs.py +17168 -8021
- pulumi_oci/datascience/pipeline_run.py +87 -0
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/_inputs.py +3 -3
- pulumi_oci/goldengate/connection.py +175 -56
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_connection.py +20 -4
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +62 -10
- pulumi_oci/managementagent/__init__.py +4 -0
- pulumi_oci/managementagent/_inputs.py +129 -0
- pulumi_oci/managementagent/get_management_agent.py +26 -1
- pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
- pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
- pulumi_oci/managementagent/get_named_credential.py +268 -0
- pulumi_oci/managementagent/get_named_credentials.py +221 -0
- pulumi_oci/managementagent/management_agent.py +48 -0
- pulumi_oci/managementagent/management_agent_install_key.py +84 -0
- pulumi_oci/managementagent/named_credential.py +706 -0
- pulumi_oci/managementagent/outputs.py +515 -0
- pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
- pulumi_oci/oci/__init__.py +12 -0
- pulumi_oci/oci/_inputs.py +566 -0
- pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
- pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
- pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/{aianomalydetection/get_ai_private_endpoint.py → oci/get_managed_kafka_kafka_cluster_config.py} +63 -90
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/{aianomalydetection/ai_private_endpoint.py → oci/managed_kafka_kafka_cluster_config.py} +138 -232
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1540 -164
- pulumi_oci/opsi/_inputs.py +1001 -149
- pulumi_oci/opsi/database_insight.py +22 -3
- pulumi_oci/opsi/exadata_insight.py +86 -6
- pulumi_oci/opsi/outputs.py +1438 -178
- pulumi_oci/psql/configuration.py +109 -19
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/get_configuration.py +30 -2
- pulumi_oci/psql/get_configurations.py +49 -5
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_default_configuration.py +30 -4
- pulumi_oci/psql/get_default_configurations.py +49 -5
- pulumi_oci/psql/outputs.py +47 -14
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +6 -0
- pulumi_oci/redis/_inputs.py +217 -0
- pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
- pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
- pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
- pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
- pulumi_oci/redis/get_redis_cluster.py +15 -1
- pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
- pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
- pulumi_oci/redis/outputs.py +713 -0
- pulumi_oci/redis/redis_cluster.py +49 -0
- pulumi_oci/vault/_inputs.py +198 -0
- pulumi_oci/vault/get_secret.py +43 -1
- pulumi_oci/vault/outputs.py +434 -0
- pulumi_oci/vault/secret.py +103 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +302 -218
- pulumi_oci/aianomalydetection/__init__.py +0 -25
- pulumi_oci/aianomalydetection/_inputs.py +0 -1742
- pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
- pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
- pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
- pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
- pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
- pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
- pulumi_oci/aianomalydetection/outputs.py +0 -3699
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
@@ -13,37 +13,34 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
-
from . import outputs
|
17
|
-
from ._inputs import *
|
18
16
|
|
19
|
-
__all__ = ['
|
17
|
+
__all__ = ['ModelGroupVersionHistoryArgs', 'ModelGroupVersionHistory']
|
20
18
|
|
21
19
|
@pulumi.input_type
|
22
|
-
class
|
20
|
+
class ModelGroupVersionHistoryArgs:
|
23
21
|
def __init__(__self__, *,
|
24
22
|
compartment_id: pulumi.Input[_builtins.str],
|
25
|
-
model_training_details: pulumi.Input['ModelModelTrainingDetailsArgs'],
|
26
23
|
project_id: pulumi.Input[_builtins.str],
|
27
24
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
28
25
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
29
26
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
30
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None
|
27
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
28
|
+
latest_model_group_id: Optional[pulumi.Input[_builtins.str]] = None):
|
31
29
|
"""
|
32
|
-
The set of arguments for constructing a
|
33
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID
|
34
|
-
:param pulumi.Input[
|
35
|
-
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model.
|
30
|
+
The set of arguments for constructing a ModelGroupVersionHistory resource.
|
31
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model group version history in.
|
32
|
+
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model group version history.
|
36
33
|
|
37
34
|
|
38
35
|
** IMPORTANT **
|
39
36
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
40
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
41
|
-
:param pulumi.Input[_builtins.str] description: (Updatable) A short description of the
|
42
|
-
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly
|
43
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable)
|
37
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
38
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) A short description of the model version history.
|
39
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version history`
|
40
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
41
|
+
:param pulumi.Input[_builtins.str] latest_model_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group to be associated.
|
44
42
|
"""
|
45
43
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
46
|
-
pulumi.set(__self__, "model_training_details", model_training_details)
|
47
44
|
pulumi.set(__self__, "project_id", project_id)
|
48
45
|
if defined_tags is not None:
|
49
46
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -53,12 +50,14 @@ class ModelArgs:
|
|
53
50
|
pulumi.set(__self__, "display_name", display_name)
|
54
51
|
if freeform_tags is not None:
|
55
52
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
53
|
+
if latest_model_group_id is not None:
|
54
|
+
pulumi.set(__self__, "latest_model_group_id", latest_model_group_id)
|
56
55
|
|
57
56
|
@_builtins.property
|
58
57
|
@pulumi.getter(name="compartmentId")
|
59
58
|
def compartment_id(self) -> pulumi.Input[_builtins.str]:
|
60
59
|
"""
|
61
|
-
(Updatable) The OCID
|
60
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model group version history in.
|
62
61
|
"""
|
63
62
|
return pulumi.get(self, "compartment_id")
|
64
63
|
|
@@ -66,23 +65,11 @@ class ModelArgs:
|
|
66
65
|
def compartment_id(self, value: pulumi.Input[_builtins.str]):
|
67
66
|
pulumi.set(self, "compartment_id", value)
|
68
67
|
|
69
|
-
@_builtins.property
|
70
|
-
@pulumi.getter(name="modelTrainingDetails")
|
71
|
-
def model_training_details(self) -> pulumi.Input['ModelModelTrainingDetailsArgs']:
|
72
|
-
"""
|
73
|
-
Specifies the details of the MSET model during the create call.
|
74
|
-
"""
|
75
|
-
return pulumi.get(self, "model_training_details")
|
76
|
-
|
77
|
-
@model_training_details.setter
|
78
|
-
def model_training_details(self, value: pulumi.Input['ModelModelTrainingDetailsArgs']):
|
79
|
-
pulumi.set(self, "model_training_details", value)
|
80
|
-
|
81
68
|
@_builtins.property
|
82
69
|
@pulumi.getter(name="projectId")
|
83
70
|
def project_id(self) -> pulumi.Input[_builtins.str]:
|
84
71
|
"""
|
85
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model.
|
72
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model group version history.
|
86
73
|
|
87
74
|
|
88
75
|
** IMPORTANT **
|
@@ -98,7 +85,7 @@ class ModelArgs:
|
|
98
85
|
@pulumi.getter(name="definedTags")
|
99
86
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
100
87
|
"""
|
101
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
88
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
102
89
|
"""
|
103
90
|
return pulumi.get(self, "defined_tags")
|
104
91
|
|
@@ -110,7 +97,7 @@ class ModelArgs:
|
|
110
97
|
@pulumi.getter
|
111
98
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
112
99
|
"""
|
113
|
-
(Updatable) A short description of the
|
100
|
+
(Updatable) A short description of the model version history.
|
114
101
|
"""
|
115
102
|
return pulumi.get(self, "description")
|
116
103
|
|
@@ -122,7 +109,7 @@ class ModelArgs:
|
|
122
109
|
@pulumi.getter(name="displayName")
|
123
110
|
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
124
111
|
"""
|
125
|
-
(Updatable) A user-friendly
|
112
|
+
(Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version history`
|
126
113
|
"""
|
127
114
|
return pulumi.get(self, "display_name")
|
128
115
|
|
@@ -134,7 +121,7 @@ class ModelArgs:
|
|
134
121
|
@pulumi.getter(name="freeformTags")
|
135
122
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
136
123
|
"""
|
137
|
-
(Updatable)
|
124
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
138
125
|
"""
|
139
126
|
return pulumi.get(self, "freeform_tags")
|
140
127
|
|
@@ -142,45 +129,59 @@ class ModelArgs:
|
|
142
129
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
143
130
|
pulumi.set(self, "freeform_tags", value)
|
144
131
|
|
132
|
+
@_builtins.property
|
133
|
+
@pulumi.getter(name="latestModelGroupId")
|
134
|
+
def latest_model_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
135
|
+
"""
|
136
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group to be associated.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "latest_model_group_id")
|
139
|
+
|
140
|
+
@latest_model_group_id.setter
|
141
|
+
def latest_model_group_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
142
|
+
pulumi.set(self, "latest_model_group_id", value)
|
143
|
+
|
145
144
|
|
146
145
|
@pulumi.input_type
|
147
|
-
class
|
146
|
+
class _ModelGroupVersionHistoryState:
|
148
147
|
def __init__(__self__, *,
|
149
148
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
149
|
+
created_by: Optional[pulumi.Input[_builtins.str]] = None,
|
150
150
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
151
151
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
152
152
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
153
153
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
154
|
+
latest_model_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
154
155
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
155
|
-
model_training_details: Optional[pulumi.Input['ModelModelTrainingDetailsArgs']] = None,
|
156
|
-
model_training_results: Optional[pulumi.Input[Sequence[pulumi.Input['ModelModelTrainingResultArgs']]]] = None,
|
157
156
|
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
158
157
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
159
158
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
160
159
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
161
160
|
time_updated: Optional[pulumi.Input[_builtins.str]] = None):
|
162
161
|
"""
|
163
|
-
Input properties used for looking up and filtering
|
164
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID
|
165
|
-
:param pulumi.Input[
|
166
|
-
:param pulumi.Input[_builtins.str]
|
167
|
-
:param pulumi.Input[_builtins.str]
|
168
|
-
:param pulumi.Input[
|
169
|
-
:param pulumi.Input[_builtins.str]
|
170
|
-
:param pulumi.Input[
|
171
|
-
:param pulumi.Input[
|
172
|
-
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model.
|
162
|
+
Input properties used for looking up and filtering ModelGroupVersionHistory resources.
|
163
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model group version history in.
|
164
|
+
:param pulumi.Input[_builtins.str] created_by: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the modelGroupVersionHistory.
|
165
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
166
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) A short description of the model version history.
|
167
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version history`
|
168
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
169
|
+
:param pulumi.Input[_builtins.str] latest_model_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group to be associated.
|
170
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: Details about the lifecycle state of the model group version history.
|
171
|
+
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model group version history.
|
173
172
|
|
174
173
|
|
175
174
|
** IMPORTANT **
|
176
175
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
177
|
-
:param pulumi.Input[_builtins.str] state: The state of the
|
176
|
+
:param pulumi.Input[_builtins.str] state: The state of the modelGroupVersionHistory.
|
178
177
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
179
|
-
:param pulumi.Input[_builtins.str] time_created: The time the
|
180
|
-
:param pulumi.Input[_builtins.str] time_updated: The time the
|
178
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
179
|
+
:param pulumi.Input[_builtins.str] time_updated: The date and time the resource was last updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
181
180
|
"""
|
182
181
|
if compartment_id is not None:
|
183
182
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
183
|
+
if created_by is not None:
|
184
|
+
pulumi.set(__self__, "created_by", created_by)
|
184
185
|
if defined_tags is not None:
|
185
186
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
186
187
|
if description is not None:
|
@@ -189,12 +190,10 @@ class _ModelState:
|
|
189
190
|
pulumi.set(__self__, "display_name", display_name)
|
190
191
|
if freeform_tags is not None:
|
191
192
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
193
|
+
if latest_model_group_id is not None:
|
194
|
+
pulumi.set(__self__, "latest_model_group_id", latest_model_group_id)
|
192
195
|
if lifecycle_details is not None:
|
193
196
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
194
|
-
if model_training_details is not None:
|
195
|
-
pulumi.set(__self__, "model_training_details", model_training_details)
|
196
|
-
if model_training_results is not None:
|
197
|
-
pulumi.set(__self__, "model_training_results", model_training_results)
|
198
197
|
if project_id is not None:
|
199
198
|
pulumi.set(__self__, "project_id", project_id)
|
200
199
|
if state is not None:
|
@@ -210,7 +209,7 @@ class _ModelState:
|
|
210
209
|
@pulumi.getter(name="compartmentId")
|
211
210
|
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
212
211
|
"""
|
213
|
-
(Updatable) The OCID
|
212
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model group version history in.
|
214
213
|
"""
|
215
214
|
return pulumi.get(self, "compartment_id")
|
216
215
|
|
@@ -218,11 +217,23 @@ class _ModelState:
|
|
218
217
|
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
219
218
|
pulumi.set(self, "compartment_id", value)
|
220
219
|
|
220
|
+
@_builtins.property
|
221
|
+
@pulumi.getter(name="createdBy")
|
222
|
+
def created_by(self) -> Optional[pulumi.Input[_builtins.str]]:
|
223
|
+
"""
|
224
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the modelGroupVersionHistory.
|
225
|
+
"""
|
226
|
+
return pulumi.get(self, "created_by")
|
227
|
+
|
228
|
+
@created_by.setter
|
229
|
+
def created_by(self, value: Optional[pulumi.Input[_builtins.str]]):
|
230
|
+
pulumi.set(self, "created_by", value)
|
231
|
+
|
221
232
|
@_builtins.property
|
222
233
|
@pulumi.getter(name="definedTags")
|
223
234
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
224
235
|
"""
|
225
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
236
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
226
237
|
"""
|
227
238
|
return pulumi.get(self, "defined_tags")
|
228
239
|
|
@@ -234,7 +245,7 @@ class _ModelState:
|
|
234
245
|
@pulumi.getter
|
235
246
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
236
247
|
"""
|
237
|
-
(Updatable) A short description of the
|
248
|
+
(Updatable) A short description of the model version history.
|
238
249
|
"""
|
239
250
|
return pulumi.get(self, "description")
|
240
251
|
|
@@ -246,7 +257,7 @@ class _ModelState:
|
|
246
257
|
@pulumi.getter(name="displayName")
|
247
258
|
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
248
259
|
"""
|
249
|
-
(Updatable) A user-friendly
|
260
|
+
(Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version history`
|
250
261
|
"""
|
251
262
|
return pulumi.get(self, "display_name")
|
252
263
|
|
@@ -258,7 +269,7 @@ class _ModelState:
|
|
258
269
|
@pulumi.getter(name="freeformTags")
|
259
270
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
260
271
|
"""
|
261
|
-
(Updatable)
|
272
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
262
273
|
"""
|
263
274
|
return pulumi.get(self, "freeform_tags")
|
264
275
|
|
@@ -266,11 +277,23 @@ class _ModelState:
|
|
266
277
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
267
278
|
pulumi.set(self, "freeform_tags", value)
|
268
279
|
|
280
|
+
@_builtins.property
|
281
|
+
@pulumi.getter(name="latestModelGroupId")
|
282
|
+
def latest_model_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
283
|
+
"""
|
284
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group to be associated.
|
285
|
+
"""
|
286
|
+
return pulumi.get(self, "latest_model_group_id")
|
287
|
+
|
288
|
+
@latest_model_group_id.setter
|
289
|
+
def latest_model_group_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
290
|
+
pulumi.set(self, "latest_model_group_id", value)
|
291
|
+
|
269
292
|
@_builtins.property
|
270
293
|
@pulumi.getter(name="lifecycleDetails")
|
271
294
|
def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
|
272
295
|
"""
|
273
|
-
|
296
|
+
Details about the lifecycle state of the model group version history.
|
274
297
|
"""
|
275
298
|
return pulumi.get(self, "lifecycle_details")
|
276
299
|
|
@@ -278,35 +301,11 @@ class _ModelState:
|
|
278
301
|
def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
|
279
302
|
pulumi.set(self, "lifecycle_details", value)
|
280
303
|
|
281
|
-
@_builtins.property
|
282
|
-
@pulumi.getter(name="modelTrainingDetails")
|
283
|
-
def model_training_details(self) -> Optional[pulumi.Input['ModelModelTrainingDetailsArgs']]:
|
284
|
-
"""
|
285
|
-
Specifies the details of the MSET model during the create call.
|
286
|
-
"""
|
287
|
-
return pulumi.get(self, "model_training_details")
|
288
|
-
|
289
|
-
@model_training_details.setter
|
290
|
-
def model_training_details(self, value: Optional[pulumi.Input['ModelModelTrainingDetailsArgs']]):
|
291
|
-
pulumi.set(self, "model_training_details", value)
|
292
|
-
|
293
|
-
@_builtins.property
|
294
|
-
@pulumi.getter(name="modelTrainingResults")
|
295
|
-
def model_training_results(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ModelModelTrainingResultArgs']]]]:
|
296
|
-
"""
|
297
|
-
Specifies the details for an Anomaly Detection model trained with MSET.
|
298
|
-
"""
|
299
|
-
return pulumi.get(self, "model_training_results")
|
300
|
-
|
301
|
-
@model_training_results.setter
|
302
|
-
def model_training_results(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ModelModelTrainingResultArgs']]]]):
|
303
|
-
pulumi.set(self, "model_training_results", value)
|
304
|
-
|
305
304
|
@_builtins.property
|
306
305
|
@pulumi.getter(name="projectId")
|
307
306
|
def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
308
307
|
"""
|
309
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model.
|
308
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model group version history.
|
310
309
|
|
311
310
|
|
312
311
|
** IMPORTANT **
|
@@ -322,7 +321,7 @@ class _ModelState:
|
|
322
321
|
@pulumi.getter
|
323
322
|
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
324
323
|
"""
|
325
|
-
The state of the
|
324
|
+
The state of the modelGroupVersionHistory.
|
326
325
|
"""
|
327
326
|
return pulumi.get(self, "state")
|
328
327
|
|
@@ -346,7 +345,7 @@ class _ModelState:
|
|
346
345
|
@pulumi.getter(name="timeCreated")
|
347
346
|
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
348
347
|
"""
|
349
|
-
The time the
|
348
|
+
The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
350
349
|
"""
|
351
350
|
return pulumi.get(self, "time_created")
|
352
351
|
|
@@ -358,7 +357,7 @@ class _ModelState:
|
|
358
357
|
@pulumi.getter(name="timeUpdated")
|
359
358
|
def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
360
359
|
"""
|
361
|
-
The time the
|
360
|
+
The date and time the resource was last updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
362
361
|
"""
|
363
362
|
return pulumi.get(self, "time_updated")
|
364
363
|
|
@@ -367,8 +366,8 @@ class _ModelState:
|
|
367
366
|
pulumi.set(self, "time_updated", value)
|
368
367
|
|
369
368
|
|
370
|
-
@pulumi.type_token("oci:
|
371
|
-
class
|
369
|
+
@pulumi.type_token("oci:DataScience/modelGroupVersionHistory:ModelGroupVersionHistory")
|
370
|
+
class ModelGroupVersionHistory(pulumi.CustomResource):
|
372
371
|
@overload
|
373
372
|
def __init__(__self__,
|
374
373
|
resource_name: str,
|
@@ -378,13 +377,13 @@ class Model(pulumi.CustomResource):
|
|
378
377
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
379
378
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
380
379
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
381
|
-
|
380
|
+
latest_model_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
382
381
|
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
383
382
|
__props__=None):
|
384
383
|
"""
|
385
|
-
This resource provides the Model resource in Oracle Cloud Infrastructure
|
384
|
+
This resource provides the Model Group Version History resource in Oracle Cloud Infrastructure Data Science service.
|
386
385
|
|
387
|
-
Creates a new
|
386
|
+
Creates a new modelGroupVersionHistory.
|
388
387
|
|
389
388
|
## Example Usage
|
390
389
|
|
@@ -392,43 +391,37 @@ class Model(pulumi.CustomResource):
|
|
392
391
|
import pulumi
|
393
392
|
import pulumi_oci as oci
|
394
393
|
|
395
|
-
|
394
|
+
test_model_group_version_history = oci.datascience.ModelGroupVersionHistory("test_model_group_version_history",
|
396
395
|
compartment_id=compartment_id,
|
397
|
-
model_training_details={
|
398
|
-
"data_asset_ids": model_model_training_details_data_asset_ids,
|
399
|
-
"algorithm_hint": model_model_training_details_algorithm_hint,
|
400
|
-
"target_fap": model_model_training_details_target_fap,
|
401
|
-
"training_fraction": model_model_training_details_training_fraction,
|
402
|
-
"window_size": model_model_training_details_window_size,
|
403
|
-
},
|
404
396
|
project_id=test_project["id"],
|
405
397
|
defined_tags={
|
406
|
-
"
|
398
|
+
"Operations.CostCenter": "42",
|
407
399
|
},
|
408
|
-
description=
|
409
|
-
display_name=
|
400
|
+
description=model_group_version_history_description,
|
401
|
+
display_name=model_group_version_history_display_name,
|
410
402
|
freeform_tags={
|
411
|
-
"
|
412
|
-
}
|
403
|
+
"Department": "Finance",
|
404
|
+
},
|
405
|
+
latest_model_group_id=test_model_group["id"])
|
413
406
|
```
|
414
407
|
|
415
408
|
## Import
|
416
409
|
|
417
|
-
|
410
|
+
ModelGroupVersionHistories can be imported using the `id`, e.g.
|
418
411
|
|
419
412
|
```sh
|
420
|
-
$ pulumi import oci:
|
413
|
+
$ pulumi import oci:DataScience/modelGroupVersionHistory:ModelGroupVersionHistory test_model_group_version_history "id"
|
421
414
|
```
|
422
415
|
|
423
416
|
:param str resource_name: The name of the resource.
|
424
417
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
425
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID
|
426
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
427
|
-
:param pulumi.Input[_builtins.str] description: (Updatable) A short description of the
|
428
|
-
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly
|
429
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable)
|
430
|
-
:param pulumi.Input[
|
431
|
-
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model.
|
418
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model group version history in.
|
419
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
420
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) A short description of the model version history.
|
421
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version history`
|
422
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
423
|
+
:param pulumi.Input[_builtins.str] latest_model_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group to be associated.
|
424
|
+
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model group version history.
|
432
425
|
|
433
426
|
|
434
427
|
** IMPORTANT **
|
@@ -438,12 +431,12 @@ class Model(pulumi.CustomResource):
|
|
438
431
|
@overload
|
439
432
|
def __init__(__self__,
|
440
433
|
resource_name: str,
|
441
|
-
args:
|
434
|
+
args: ModelGroupVersionHistoryArgs,
|
442
435
|
opts: Optional[pulumi.ResourceOptions] = None):
|
443
436
|
"""
|
444
|
-
This resource provides the Model resource in Oracle Cloud Infrastructure
|
437
|
+
This resource provides the Model Group Version History resource in Oracle Cloud Infrastructure Data Science service.
|
445
438
|
|
446
|
-
Creates a new
|
439
|
+
Creates a new modelGroupVersionHistory.
|
447
440
|
|
448
441
|
## Example Usage
|
449
442
|
|
@@ -451,41 +444,35 @@ class Model(pulumi.CustomResource):
|
|
451
444
|
import pulumi
|
452
445
|
import pulumi_oci as oci
|
453
446
|
|
454
|
-
|
447
|
+
test_model_group_version_history = oci.datascience.ModelGroupVersionHistory("test_model_group_version_history",
|
455
448
|
compartment_id=compartment_id,
|
456
|
-
model_training_details={
|
457
|
-
"data_asset_ids": model_model_training_details_data_asset_ids,
|
458
|
-
"algorithm_hint": model_model_training_details_algorithm_hint,
|
459
|
-
"target_fap": model_model_training_details_target_fap,
|
460
|
-
"training_fraction": model_model_training_details_training_fraction,
|
461
|
-
"window_size": model_model_training_details_window_size,
|
462
|
-
},
|
463
449
|
project_id=test_project["id"],
|
464
450
|
defined_tags={
|
465
|
-
"
|
451
|
+
"Operations.CostCenter": "42",
|
466
452
|
},
|
467
|
-
description=
|
468
|
-
display_name=
|
453
|
+
description=model_group_version_history_description,
|
454
|
+
display_name=model_group_version_history_display_name,
|
469
455
|
freeform_tags={
|
470
|
-
"
|
471
|
-
}
|
456
|
+
"Department": "Finance",
|
457
|
+
},
|
458
|
+
latest_model_group_id=test_model_group["id"])
|
472
459
|
```
|
473
460
|
|
474
461
|
## Import
|
475
462
|
|
476
|
-
|
463
|
+
ModelGroupVersionHistories can be imported using the `id`, e.g.
|
477
464
|
|
478
465
|
```sh
|
479
|
-
$ pulumi import oci:
|
466
|
+
$ pulumi import oci:DataScience/modelGroupVersionHistory:ModelGroupVersionHistory test_model_group_version_history "id"
|
480
467
|
```
|
481
468
|
|
482
469
|
:param str resource_name: The name of the resource.
|
483
|
-
:param
|
470
|
+
:param ModelGroupVersionHistoryArgs args: The arguments to use to populate this resource's properties.
|
484
471
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
485
472
|
"""
|
486
473
|
...
|
487
474
|
def __init__(__self__, resource_name: str, *args, **kwargs):
|
488
|
-
resource_args, opts = _utilities.get_resource_args_opts(
|
475
|
+
resource_args, opts = _utilities.get_resource_args_opts(ModelGroupVersionHistoryArgs, pulumi.ResourceOptions, *args, **kwargs)
|
489
476
|
if resource_args is not None:
|
490
477
|
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
491
478
|
else:
|
@@ -499,7 +486,7 @@ class Model(pulumi.CustomResource):
|
|
499
486
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
500
487
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
501
488
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
502
|
-
|
489
|
+
latest_model_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
503
490
|
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
504
491
|
__props__=None):
|
505
492
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -508,7 +495,7 @@ class Model(pulumi.CustomResource):
|
|
508
495
|
if opts.id is None:
|
509
496
|
if __props__ is not None:
|
510
497
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
511
|
-
__props__ =
|
498
|
+
__props__ = ModelGroupVersionHistoryArgs.__new__(ModelGroupVersionHistoryArgs)
|
512
499
|
|
513
500
|
if compartment_id is None and not opts.urn:
|
514
501
|
raise TypeError("Missing required property 'compartment_id'")
|
@@ -517,20 +504,18 @@ class Model(pulumi.CustomResource):
|
|
517
504
|
__props__.__dict__["description"] = description
|
518
505
|
__props__.__dict__["display_name"] = display_name
|
519
506
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
520
|
-
|
521
|
-
raise TypeError("Missing required property 'model_training_details'")
|
522
|
-
__props__.__dict__["model_training_details"] = model_training_details
|
507
|
+
__props__.__dict__["latest_model_group_id"] = latest_model_group_id
|
523
508
|
if project_id is None and not opts.urn:
|
524
509
|
raise TypeError("Missing required property 'project_id'")
|
525
510
|
__props__.__dict__["project_id"] = project_id
|
511
|
+
__props__.__dict__["created_by"] = None
|
526
512
|
__props__.__dict__["lifecycle_details"] = None
|
527
|
-
__props__.__dict__["model_training_results"] = None
|
528
513
|
__props__.__dict__["state"] = None
|
529
514
|
__props__.__dict__["system_tags"] = None
|
530
515
|
__props__.__dict__["time_created"] = None
|
531
516
|
__props__.__dict__["time_updated"] = None
|
532
|
-
super(
|
533
|
-
'oci:
|
517
|
+
super(ModelGroupVersionHistory, __self__).__init__(
|
518
|
+
'oci:DataScience/modelGroupVersionHistory:ModelGroupVersionHistory',
|
534
519
|
resource_name,
|
535
520
|
__props__,
|
536
521
|
opts)
|
@@ -540,75 +525,83 @@ class Model(pulumi.CustomResource):
|
|
540
525
|
id: pulumi.Input[str],
|
541
526
|
opts: Optional[pulumi.ResourceOptions] = None,
|
542
527
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
528
|
+
created_by: Optional[pulumi.Input[_builtins.str]] = None,
|
543
529
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
544
530
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
545
531
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
546
532
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
533
|
+
latest_model_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
547
534
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
548
|
-
model_training_details: Optional[pulumi.Input[Union['ModelModelTrainingDetailsArgs', 'ModelModelTrainingDetailsArgsDict']]] = None,
|
549
|
-
model_training_results: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ModelModelTrainingResultArgs', 'ModelModelTrainingResultArgsDict']]]]] = None,
|
550
535
|
project_id: Optional[pulumi.Input[_builtins.str]] = None,
|
551
536
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
552
537
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
553
538
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
554
|
-
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> '
|
539
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'ModelGroupVersionHistory':
|
555
540
|
"""
|
556
|
-
Get an existing
|
541
|
+
Get an existing ModelGroupVersionHistory resource's state with the given name, id, and optional extra
|
557
542
|
properties used to qualify the lookup.
|
558
543
|
|
559
544
|
:param str resource_name: The unique name of the resulting resource.
|
560
545
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
561
546
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
562
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID
|
563
|
-
:param pulumi.Input[
|
564
|
-
:param pulumi.Input[_builtins.str]
|
565
|
-
:param pulumi.Input[_builtins.str]
|
566
|
-
:param pulumi.Input[
|
567
|
-
:param pulumi.Input[_builtins.str]
|
568
|
-
:param pulumi.Input[
|
569
|
-
:param pulumi.Input[
|
570
|
-
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model.
|
547
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model group version history in.
|
548
|
+
:param pulumi.Input[_builtins.str] created_by: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the modelGroupVersionHistory.
|
549
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
550
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) A short description of the model version history.
|
551
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version history`
|
552
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
553
|
+
:param pulumi.Input[_builtins.str] latest_model_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group to be associated.
|
554
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: Details about the lifecycle state of the model group version history.
|
555
|
+
:param pulumi.Input[_builtins.str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model group version history.
|
571
556
|
|
572
557
|
|
573
558
|
** IMPORTANT **
|
574
559
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
575
|
-
:param pulumi.Input[_builtins.str] state: The state of the
|
560
|
+
:param pulumi.Input[_builtins.str] state: The state of the modelGroupVersionHistory.
|
576
561
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
577
|
-
:param pulumi.Input[_builtins.str] time_created: The time the
|
578
|
-
:param pulumi.Input[_builtins.str] time_updated: The time the
|
562
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
563
|
+
:param pulumi.Input[_builtins.str] time_updated: The date and time the resource was last updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
579
564
|
"""
|
580
565
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
581
566
|
|
582
|
-
__props__ =
|
567
|
+
__props__ = _ModelGroupVersionHistoryState.__new__(_ModelGroupVersionHistoryState)
|
583
568
|
|
584
569
|
__props__.__dict__["compartment_id"] = compartment_id
|
570
|
+
__props__.__dict__["created_by"] = created_by
|
585
571
|
__props__.__dict__["defined_tags"] = defined_tags
|
586
572
|
__props__.__dict__["description"] = description
|
587
573
|
__props__.__dict__["display_name"] = display_name
|
588
574
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
575
|
+
__props__.__dict__["latest_model_group_id"] = latest_model_group_id
|
589
576
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
590
|
-
__props__.__dict__["model_training_details"] = model_training_details
|
591
|
-
__props__.__dict__["model_training_results"] = model_training_results
|
592
577
|
__props__.__dict__["project_id"] = project_id
|
593
578
|
__props__.__dict__["state"] = state
|
594
579
|
__props__.__dict__["system_tags"] = system_tags
|
595
580
|
__props__.__dict__["time_created"] = time_created
|
596
581
|
__props__.__dict__["time_updated"] = time_updated
|
597
|
-
return
|
582
|
+
return ModelGroupVersionHistory(resource_name, opts=opts, __props__=__props__)
|
598
583
|
|
599
584
|
@_builtins.property
|
600
585
|
@pulumi.getter(name="compartmentId")
|
601
586
|
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
602
587
|
"""
|
603
|
-
(Updatable) The OCID
|
588
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the model group version history in.
|
604
589
|
"""
|
605
590
|
return pulumi.get(self, "compartment_id")
|
606
591
|
|
592
|
+
@_builtins.property
|
593
|
+
@pulumi.getter(name="createdBy")
|
594
|
+
def created_by(self) -> pulumi.Output[_builtins.str]:
|
595
|
+
"""
|
596
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the modelGroupVersionHistory.
|
597
|
+
"""
|
598
|
+
return pulumi.get(self, "created_by")
|
599
|
+
|
607
600
|
@_builtins.property
|
608
601
|
@pulumi.getter(name="definedTags")
|
609
602
|
def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
610
603
|
"""
|
611
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
604
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
612
605
|
"""
|
613
606
|
return pulumi.get(self, "defined_tags")
|
614
607
|
|
@@ -616,7 +609,7 @@ class Model(pulumi.CustomResource):
|
|
616
609
|
@pulumi.getter
|
617
610
|
def description(self) -> pulumi.Output[_builtins.str]:
|
618
611
|
"""
|
619
|
-
(Updatable) A short description of the
|
612
|
+
(Updatable) A short description of the model version history.
|
620
613
|
"""
|
621
614
|
return pulumi.get(self, "description")
|
622
615
|
|
@@ -624,7 +617,7 @@ class Model(pulumi.CustomResource):
|
|
624
617
|
@pulumi.getter(name="displayName")
|
625
618
|
def display_name(self) -> pulumi.Output[_builtins.str]:
|
626
619
|
"""
|
627
|
-
(Updatable) A user-friendly
|
620
|
+
(Updatable) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version history`
|
628
621
|
"""
|
629
622
|
return pulumi.get(self, "display_name")
|
630
623
|
|
@@ -632,39 +625,31 @@ class Model(pulumi.CustomResource):
|
|
632
625
|
@pulumi.getter(name="freeformTags")
|
633
626
|
def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
634
627
|
"""
|
635
|
-
(Updatable)
|
628
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
636
629
|
"""
|
637
630
|
return pulumi.get(self, "freeform_tags")
|
638
631
|
|
639
632
|
@_builtins.property
|
640
|
-
@pulumi.getter(name="
|
641
|
-
def
|
642
|
-
"""
|
643
|
-
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
644
|
-
"""
|
645
|
-
return pulumi.get(self, "lifecycle_details")
|
646
|
-
|
647
|
-
@_builtins.property
|
648
|
-
@pulumi.getter(name="modelTrainingDetails")
|
649
|
-
def model_training_details(self) -> pulumi.Output['outputs.ModelModelTrainingDetails']:
|
633
|
+
@pulumi.getter(name="latestModelGroupId")
|
634
|
+
def latest_model_group_id(self) -> pulumi.Output[_builtins.str]:
|
650
635
|
"""
|
651
|
-
|
636
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest version of the model group to be associated.
|
652
637
|
"""
|
653
|
-
return pulumi.get(self, "
|
638
|
+
return pulumi.get(self, "latest_model_group_id")
|
654
639
|
|
655
640
|
@_builtins.property
|
656
|
-
@pulumi.getter(name="
|
657
|
-
def
|
641
|
+
@pulumi.getter(name="lifecycleDetails")
|
642
|
+
def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
|
658
643
|
"""
|
659
|
-
|
644
|
+
Details about the lifecycle state of the model group version history.
|
660
645
|
"""
|
661
|
-
return pulumi.get(self, "
|
646
|
+
return pulumi.get(self, "lifecycle_details")
|
662
647
|
|
663
648
|
@_builtins.property
|
664
649
|
@pulumi.getter(name="projectId")
|
665
650
|
def project_id(self) -> pulumi.Output[_builtins.str]:
|
666
651
|
"""
|
667
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model.
|
652
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model group version history.
|
668
653
|
|
669
654
|
|
670
655
|
** IMPORTANT **
|
@@ -676,7 +661,7 @@ class Model(pulumi.CustomResource):
|
|
676
661
|
@pulumi.getter
|
677
662
|
def state(self) -> pulumi.Output[_builtins.str]:
|
678
663
|
"""
|
679
|
-
The state of the
|
664
|
+
The state of the modelGroupVersionHistory.
|
680
665
|
"""
|
681
666
|
return pulumi.get(self, "state")
|
682
667
|
|
@@ -692,7 +677,7 @@ class Model(pulumi.CustomResource):
|
|
692
677
|
@pulumi.getter(name="timeCreated")
|
693
678
|
def time_created(self) -> pulumi.Output[_builtins.str]:
|
694
679
|
"""
|
695
|
-
The time the
|
680
|
+
The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
696
681
|
"""
|
697
682
|
return pulumi.get(self, "time_created")
|
698
683
|
|
@@ -700,7 +685,7 @@ class Model(pulumi.CustomResource):
|
|
700
685
|
@pulumi.getter(name="timeUpdated")
|
701
686
|
def time_updated(self) -> pulumi.Output[_builtins.str]:
|
702
687
|
"""
|
703
|
-
The time the
|
688
|
+
The date and time the resource was last updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
|
704
689
|
"""
|
705
690
|
return pulumi.get(self, "time_updated")
|
706
691
|
|