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
pulumi_oci/aidocument/outputs.py
CHANGED
@@ -17,12 +17,14 @@ from . import outputs
|
|
17
17
|
|
18
18
|
__all__ = [
|
19
19
|
'ModelComponentModel',
|
20
|
+
'ModelLock',
|
20
21
|
'ModelMetric',
|
21
22
|
'ModelMetricDatasetSummary',
|
22
23
|
'ModelMetricLabelMetricsReport',
|
23
24
|
'ModelMetricLabelMetricsReportConfidenceEntry',
|
24
25
|
'ModelMetricOverallMetricsReport',
|
25
26
|
'ModelMetricOverallMetricsReportConfidenceEntry',
|
27
|
+
'ModelModelSubType',
|
26
28
|
'ModelTestingDataset',
|
27
29
|
'ModelTrainingDataset',
|
28
30
|
'ModelValidationDataset',
|
@@ -31,13 +33,18 @@ __all__ = [
|
|
31
33
|
'ProcessorJobOutputLocation',
|
32
34
|
'ProcessorJobProcessorConfig',
|
33
35
|
'ProcessorJobProcessorConfigFeature',
|
36
|
+
'ProcessorJobProcessorConfigNormalizationField',
|
37
|
+
'ProcessorJobProcessorConfigNormalizationFieldMap',
|
38
|
+
'ProjectLock',
|
34
39
|
'GetModelComponentModelResult',
|
40
|
+
'GetModelLockResult',
|
35
41
|
'GetModelMetricResult',
|
36
42
|
'GetModelMetricDatasetSummaryResult',
|
37
43
|
'GetModelMetricLabelMetricsReportResult',
|
38
44
|
'GetModelMetricLabelMetricsReportConfidenceEntryResult',
|
39
45
|
'GetModelMetricOverallMetricsReportResult',
|
40
46
|
'GetModelMetricOverallMetricsReportConfidenceEntryResult',
|
47
|
+
'GetModelModelSubTypeResult',
|
41
48
|
'GetModelTestingDatasetResult',
|
42
49
|
'GetModelTrainingDatasetResult',
|
43
50
|
'GetModelValidationDatasetResult',
|
@@ -45,12 +52,14 @@ __all__ = [
|
|
45
52
|
'GetModelsModelCollectionResult',
|
46
53
|
'GetModelsModelCollectionItemResult',
|
47
54
|
'GetModelsModelCollectionItemComponentModelResult',
|
55
|
+
'GetModelsModelCollectionItemLockResult',
|
48
56
|
'GetModelsModelCollectionItemMetricResult',
|
49
57
|
'GetModelsModelCollectionItemMetricDatasetSummaryResult',
|
50
58
|
'GetModelsModelCollectionItemMetricLabelMetricsReportResult',
|
51
59
|
'GetModelsModelCollectionItemMetricLabelMetricsReportConfidenceEntryResult',
|
52
60
|
'GetModelsModelCollectionItemMetricOverallMetricsReportResult',
|
53
61
|
'GetModelsModelCollectionItemMetricOverallMetricsReportConfidenceEntryResult',
|
62
|
+
'GetModelsModelCollectionItemModelSubTypeResult',
|
54
63
|
'GetModelsModelCollectionItemTestingDatasetResult',
|
55
64
|
'GetModelsModelCollectionItemTrainingDatasetResult',
|
56
65
|
'GetModelsModelCollectionItemValidationDatasetResult',
|
@@ -59,9 +68,13 @@ __all__ = [
|
|
59
68
|
'GetProcessorJobOutputLocationResult',
|
60
69
|
'GetProcessorJobProcessorConfigResult',
|
61
70
|
'GetProcessorJobProcessorConfigFeatureResult',
|
71
|
+
'GetProcessorJobProcessorConfigNormalizationFieldResult',
|
72
|
+
'GetProcessorJobProcessorConfigNormalizationFieldMapResult',
|
73
|
+
'GetProjectLockResult',
|
62
74
|
'GetProjectsFilterResult',
|
63
75
|
'GetProjectsProjectCollectionResult',
|
64
76
|
'GetProjectsProjectCollectionItemResult',
|
77
|
+
'GetProjectsProjectCollectionItemLockResult',
|
65
78
|
]
|
66
79
|
|
67
80
|
@pulumi.output_type
|
@@ -100,6 +113,93 @@ class ModelComponentModel(dict):
|
|
100
113
|
return pulumi.get(self, "model_id")
|
101
114
|
|
102
115
|
|
116
|
+
@pulumi.output_type
|
117
|
+
class ModelLock(dict):
|
118
|
+
@staticmethod
|
119
|
+
def __key_warning(key: str):
|
120
|
+
suggest = None
|
121
|
+
if key == "compartmentId":
|
122
|
+
suggest = "compartment_id"
|
123
|
+
elif key == "relatedResourceId":
|
124
|
+
suggest = "related_resource_id"
|
125
|
+
elif key == "timeCreated":
|
126
|
+
suggest = "time_created"
|
127
|
+
|
128
|
+
if suggest:
|
129
|
+
pulumi.log.warn(f"Key '{key}' not found in ModelLock. Access the value via the '{suggest}' property getter instead.")
|
130
|
+
|
131
|
+
def __getitem__(self, key: str) -> Any:
|
132
|
+
ModelLock.__key_warning(key)
|
133
|
+
return super().__getitem__(key)
|
134
|
+
|
135
|
+
def get(self, key: str, default = None) -> Any:
|
136
|
+
ModelLock.__key_warning(key)
|
137
|
+
return super().get(key, default)
|
138
|
+
|
139
|
+
def __init__(__self__, *,
|
140
|
+
type: _builtins.str,
|
141
|
+
compartment_id: Optional[_builtins.str] = None,
|
142
|
+
message: Optional[_builtins.str] = None,
|
143
|
+
related_resource_id: Optional[_builtins.str] = None,
|
144
|
+
time_created: Optional[_builtins.str] = None):
|
145
|
+
"""
|
146
|
+
:param _builtins.str type: Lock type.
|
147
|
+
:param _builtins.str compartment_id: (Updatable) The compartment identifier.
|
148
|
+
:param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
149
|
+
:param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
150
|
+
:param _builtins.str time_created: When the model was created, as an RFC3339 datetime string.
|
151
|
+
"""
|
152
|
+
pulumi.set(__self__, "type", type)
|
153
|
+
if compartment_id is not None:
|
154
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
155
|
+
if message is not None:
|
156
|
+
pulumi.set(__self__, "message", message)
|
157
|
+
if related_resource_id is not None:
|
158
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
159
|
+
if time_created is not None:
|
160
|
+
pulumi.set(__self__, "time_created", time_created)
|
161
|
+
|
162
|
+
@_builtins.property
|
163
|
+
@pulumi.getter
|
164
|
+
def type(self) -> _builtins.str:
|
165
|
+
"""
|
166
|
+
Lock type.
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "type")
|
169
|
+
|
170
|
+
@_builtins.property
|
171
|
+
@pulumi.getter(name="compartmentId")
|
172
|
+
def compartment_id(self) -> Optional[_builtins.str]:
|
173
|
+
"""
|
174
|
+
(Updatable) The compartment identifier.
|
175
|
+
"""
|
176
|
+
return pulumi.get(self, "compartment_id")
|
177
|
+
|
178
|
+
@_builtins.property
|
179
|
+
@pulumi.getter
|
180
|
+
def message(self) -> Optional[_builtins.str]:
|
181
|
+
"""
|
182
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
183
|
+
"""
|
184
|
+
return pulumi.get(self, "message")
|
185
|
+
|
186
|
+
@_builtins.property
|
187
|
+
@pulumi.getter(name="relatedResourceId")
|
188
|
+
def related_resource_id(self) -> Optional[_builtins.str]:
|
189
|
+
"""
|
190
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "related_resource_id")
|
193
|
+
|
194
|
+
@_builtins.property
|
195
|
+
@pulumi.getter(name="timeCreated")
|
196
|
+
def time_created(self) -> Optional[_builtins.str]:
|
197
|
+
"""
|
198
|
+
When the model was created, as an RFC3339 datetime string.
|
199
|
+
"""
|
200
|
+
return pulumi.get(self, "time_created")
|
201
|
+
|
202
|
+
|
103
203
|
@pulumi.output_type
|
104
204
|
class ModelMetric(dict):
|
105
205
|
@staticmethod
|
@@ -516,6 +616,68 @@ class ModelMetricOverallMetricsReportConfidenceEntry(dict):
|
|
516
616
|
return pulumi.get(self, "threshold")
|
517
617
|
|
518
618
|
|
619
|
+
@pulumi.output_type
|
620
|
+
class ModelModelSubType(dict):
|
621
|
+
@staticmethod
|
622
|
+
def __key_warning(key: str):
|
623
|
+
suggest = None
|
624
|
+
if key == "modelSubType":
|
625
|
+
suggest = "model_sub_type"
|
626
|
+
elif key == "modelType":
|
627
|
+
suggest = "model_type"
|
628
|
+
|
629
|
+
if suggest:
|
630
|
+
pulumi.log.warn(f"Key '{key}' not found in ModelModelSubType. Access the value via the '{suggest}' property getter instead.")
|
631
|
+
|
632
|
+
def __getitem__(self, key: str) -> Any:
|
633
|
+
ModelModelSubType.__key_warning(key)
|
634
|
+
return super().__getitem__(key)
|
635
|
+
|
636
|
+
def get(self, key: str, default = None) -> Any:
|
637
|
+
ModelModelSubType.__key_warning(key)
|
638
|
+
return super().get(key, default)
|
639
|
+
|
640
|
+
def __init__(__self__, *,
|
641
|
+
model_sub_type: _builtins.str,
|
642
|
+
model_type: _builtins.str):
|
643
|
+
"""
|
644
|
+
:param _builtins.str model_sub_type: The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
645
|
+
* `RECEIPT`
|
646
|
+
* `INVOICE`
|
647
|
+
* `PASSPORT`
|
648
|
+
* `DRIVER_LICENSE`
|
649
|
+
* `HEALTH_INSURANCE_ID`
|
650
|
+
:param _builtins.str model_type: Sub type model based on the model type. The allowed values are:
|
651
|
+
* `PRE_TRAINED_KEY_VALUE_EXTRACTION`
|
652
|
+
* `PRE_TRAINED_DOCUMENT_ELEMENTS_EXTRACTION`
|
653
|
+
"""
|
654
|
+
pulumi.set(__self__, "model_sub_type", model_sub_type)
|
655
|
+
pulumi.set(__self__, "model_type", model_type)
|
656
|
+
|
657
|
+
@_builtins.property
|
658
|
+
@pulumi.getter(name="modelSubType")
|
659
|
+
def model_sub_type(self) -> _builtins.str:
|
660
|
+
"""
|
661
|
+
The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
662
|
+
* `RECEIPT`
|
663
|
+
* `INVOICE`
|
664
|
+
* `PASSPORT`
|
665
|
+
* `DRIVER_LICENSE`
|
666
|
+
* `HEALTH_INSURANCE_ID`
|
667
|
+
"""
|
668
|
+
return pulumi.get(self, "model_sub_type")
|
669
|
+
|
670
|
+
@_builtins.property
|
671
|
+
@pulumi.getter(name="modelType")
|
672
|
+
def model_type(self) -> _builtins.str:
|
673
|
+
"""
|
674
|
+
Sub type model based on the model type. The allowed values are:
|
675
|
+
* `PRE_TRAINED_KEY_VALUE_EXTRACTION`
|
676
|
+
* `PRE_TRAINED_DOCUMENT_ELEMENTS_EXTRACTION`
|
677
|
+
"""
|
678
|
+
return pulumi.get(self, "model_type")
|
679
|
+
|
680
|
+
|
519
681
|
@pulumi.output_type
|
520
682
|
class ModelTestingDataset(dict):
|
521
683
|
@staticmethod
|
@@ -788,6 +950,8 @@ class ProcessorJobInputLocation(dict):
|
|
788
950
|
suggest = "source_type"
|
789
951
|
elif key == "objectLocations":
|
790
952
|
suggest = "object_locations"
|
953
|
+
elif key == "pageRanges":
|
954
|
+
suggest = "page_ranges"
|
791
955
|
|
792
956
|
if suggest:
|
793
957
|
pulumi.log.warn(f"Key '{key}' not found in ProcessorJobInputLocation. Access the value via the '{suggest}' property getter instead.")
|
@@ -803,19 +967,23 @@ class ProcessorJobInputLocation(dict):
|
|
803
967
|
def __init__(__self__, *,
|
804
968
|
source_type: _builtins.str,
|
805
969
|
data: Optional[_builtins.str] = None,
|
806
|
-
object_locations: Optional[Sequence['outputs.ProcessorJobInputLocationObjectLocation']] = None
|
970
|
+
object_locations: Optional[Sequence['outputs.ProcessorJobInputLocationObjectLocation']] = None,
|
971
|
+
page_ranges: Optional[Sequence[_builtins.str]] = None):
|
807
972
|
"""
|
808
973
|
:param _builtins.str source_type: The type of input location. The allowed values are:
|
809
974
|
* `OBJECT_STORAGE_LOCATIONS`: A list of object locations in Object Storage.
|
810
975
|
* `INLINE_DOCUMENT_CONTENT`: The content of an inline document.
|
811
976
|
:param _builtins.str data: Raw document data with Base64 encoding.
|
812
977
|
:param Sequence['ProcessorJobInputLocationObjectLocationArgs'] object_locations: The list of ObjectLocations.
|
978
|
+
:param Sequence[_builtins.str] page_ranges: The page ranges to be analysed.
|
813
979
|
"""
|
814
980
|
pulumi.set(__self__, "source_type", source_type)
|
815
981
|
if data is not None:
|
816
982
|
pulumi.set(__self__, "data", data)
|
817
983
|
if object_locations is not None:
|
818
984
|
pulumi.set(__self__, "object_locations", object_locations)
|
985
|
+
if page_ranges is not None:
|
986
|
+
pulumi.set(__self__, "page_ranges", page_ranges)
|
819
987
|
|
820
988
|
@_builtins.property
|
821
989
|
@pulumi.getter(name="sourceType")
|
@@ -843,17 +1011,44 @@ class ProcessorJobInputLocation(dict):
|
|
843
1011
|
"""
|
844
1012
|
return pulumi.get(self, "object_locations")
|
845
1013
|
|
1014
|
+
@_builtins.property
|
1015
|
+
@pulumi.getter(name="pageRanges")
|
1016
|
+
def page_ranges(self) -> Optional[Sequence[_builtins.str]]:
|
1017
|
+
"""
|
1018
|
+
The page ranges to be analysed.
|
1019
|
+
"""
|
1020
|
+
return pulumi.get(self, "page_ranges")
|
1021
|
+
|
846
1022
|
|
847
1023
|
@pulumi.output_type
|
848
1024
|
class ProcessorJobInputLocationObjectLocation(dict):
|
1025
|
+
@staticmethod
|
1026
|
+
def __key_warning(key: str):
|
1027
|
+
suggest = None
|
1028
|
+
if key == "pageRanges":
|
1029
|
+
suggest = "page_ranges"
|
1030
|
+
|
1031
|
+
if suggest:
|
1032
|
+
pulumi.log.warn(f"Key '{key}' not found in ProcessorJobInputLocationObjectLocation. Access the value via the '{suggest}' property getter instead.")
|
1033
|
+
|
1034
|
+
def __getitem__(self, key: str) -> Any:
|
1035
|
+
ProcessorJobInputLocationObjectLocation.__key_warning(key)
|
1036
|
+
return super().__getitem__(key)
|
1037
|
+
|
1038
|
+
def get(self, key: str, default = None) -> Any:
|
1039
|
+
ProcessorJobInputLocationObjectLocation.__key_warning(key)
|
1040
|
+
return super().get(key, default)
|
1041
|
+
|
849
1042
|
def __init__(__self__, *,
|
850
1043
|
bucket: Optional[_builtins.str] = None,
|
851
1044
|
namespace: Optional[_builtins.str] = None,
|
852
|
-
object: Optional[_builtins.str] = None
|
1045
|
+
object: Optional[_builtins.str] = None,
|
1046
|
+
page_ranges: Optional[Sequence[_builtins.str]] = None):
|
853
1047
|
"""
|
854
1048
|
:param _builtins.str bucket: The Object Storage bucket name.
|
855
1049
|
:param _builtins.str namespace: The Object Storage namespace name.
|
856
1050
|
:param _builtins.str object: The Object Storage object name.
|
1051
|
+
:param Sequence[_builtins.str] page_ranges: The page ranges to be analysed.
|
857
1052
|
"""
|
858
1053
|
if bucket is not None:
|
859
1054
|
pulumi.set(__self__, "bucket", bucket)
|
@@ -861,6 +1056,8 @@ class ProcessorJobInputLocationObjectLocation(dict):
|
|
861
1056
|
pulumi.set(__self__, "namespace", namespace)
|
862
1057
|
if object is not None:
|
863
1058
|
pulumi.set(__self__, "object", object)
|
1059
|
+
if page_ranges is not None:
|
1060
|
+
pulumi.set(__self__, "page_ranges", page_ranges)
|
864
1061
|
|
865
1062
|
@_builtins.property
|
866
1063
|
@pulumi.getter
|
@@ -886,6 +1083,14 @@ class ProcessorJobInputLocationObjectLocation(dict):
|
|
886
1083
|
"""
|
887
1084
|
return pulumi.get(self, "object")
|
888
1085
|
|
1086
|
+
@_builtins.property
|
1087
|
+
@pulumi.getter(name="pageRanges")
|
1088
|
+
def page_ranges(self) -> Optional[Sequence[_builtins.str]]:
|
1089
|
+
"""
|
1090
|
+
The page ranges to be analysed.
|
1091
|
+
"""
|
1092
|
+
return pulumi.get(self, "page_ranges")
|
1093
|
+
|
889
1094
|
|
890
1095
|
@pulumi.output_type
|
891
1096
|
class ProcessorJobOutputLocation(dict):
|
@@ -938,6 +1143,10 @@ class ProcessorJobProcessorConfig(dict):
|
|
938
1143
|
suggest = "document_type"
|
939
1144
|
elif key == "isZipOutputEnabled":
|
940
1145
|
suggest = "is_zip_output_enabled"
|
1146
|
+
elif key == "modelId":
|
1147
|
+
suggest = "model_id"
|
1148
|
+
elif key == "normalizationFields":
|
1149
|
+
suggest = "normalization_fields"
|
941
1150
|
|
942
1151
|
if suggest:
|
943
1152
|
pulumi.log.warn(f"Key '{key}' not found in ProcessorJobProcessorConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -955,7 +1164,9 @@ class ProcessorJobProcessorConfig(dict):
|
|
955
1164
|
processor_type: _builtins.str,
|
956
1165
|
document_type: Optional[_builtins.str] = None,
|
957
1166
|
is_zip_output_enabled: Optional[_builtins.bool] = None,
|
958
|
-
language: Optional[_builtins.str] = None
|
1167
|
+
language: Optional[_builtins.str] = None,
|
1168
|
+
model_id: Optional[_builtins.str] = None,
|
1169
|
+
normalization_fields: Optional[Sequence['outputs.ProcessorJobProcessorConfigNormalizationField']] = None):
|
959
1170
|
"""
|
960
1171
|
:param Sequence['ProcessorJobProcessorConfigFeatureArgs'] features: The types of document analysis requested.
|
961
1172
|
:param _builtins.str processor_type: The type of the processor.
|
@@ -966,6 +1177,8 @@ class ProcessorJobProcessorConfig(dict):
|
|
966
1177
|
:param _builtins.str document_type: The document type.
|
967
1178
|
:param _builtins.bool is_zip_output_enabled: Whether or not to generate a ZIP file containing the results.
|
968
1179
|
:param _builtins.str language: The document language, abbreviated according to the BCP 47 Language-Tag syntax.
|
1180
|
+
:param _builtins.str model_id: Unique identifier custom model OCID that should be used for inference.
|
1181
|
+
:param Sequence['ProcessorJobProcessorConfigNormalizationFieldArgs'] normalization_fields: A string-to-object map where the key is the normalization field and the object contains information about the field.
|
969
1182
|
"""
|
970
1183
|
pulumi.set(__self__, "features", features)
|
971
1184
|
pulumi.set(__self__, "processor_type", processor_type)
|
@@ -975,6 +1188,10 @@ class ProcessorJobProcessorConfig(dict):
|
|
975
1188
|
pulumi.set(__self__, "is_zip_output_enabled", is_zip_output_enabled)
|
976
1189
|
if language is not None:
|
977
1190
|
pulumi.set(__self__, "language", language)
|
1191
|
+
if model_id is not None:
|
1192
|
+
pulumi.set(__self__, "model_id", model_id)
|
1193
|
+
if normalization_fields is not None:
|
1194
|
+
pulumi.set(__self__, "normalization_fields", normalization_fields)
|
978
1195
|
|
979
1196
|
@_builtins.property
|
980
1197
|
@pulumi.getter
|
@@ -1020,6 +1237,22 @@ class ProcessorJobProcessorConfig(dict):
|
|
1020
1237
|
"""
|
1021
1238
|
return pulumi.get(self, "language")
|
1022
1239
|
|
1240
|
+
@_builtins.property
|
1241
|
+
@pulumi.getter(name="modelId")
|
1242
|
+
def model_id(self) -> Optional[_builtins.str]:
|
1243
|
+
"""
|
1244
|
+
Unique identifier custom model OCID that should be used for inference.
|
1245
|
+
"""
|
1246
|
+
return pulumi.get(self, "model_id")
|
1247
|
+
|
1248
|
+
@_builtins.property
|
1249
|
+
@pulumi.getter(name="normalizationFields")
|
1250
|
+
def normalization_fields(self) -> Optional[Sequence['outputs.ProcessorJobProcessorConfigNormalizationField']]:
|
1251
|
+
"""
|
1252
|
+
A string-to-object map where the key is the normalization field and the object contains information about the field.
|
1253
|
+
"""
|
1254
|
+
return pulumi.get(self, "normalization_fields")
|
1255
|
+
|
1023
1256
|
|
1024
1257
|
@pulumi.output_type
|
1025
1258
|
class ProcessorJobProcessorConfigFeature(dict):
|
@@ -1034,6 +1267,8 @@ class ProcessorJobProcessorConfigFeature(dict):
|
|
1034
1267
|
suggest = "max_results"
|
1035
1268
|
elif key == "modelId":
|
1036
1269
|
suggest = "model_id"
|
1270
|
+
elif key == "selectionMarkDetection":
|
1271
|
+
suggest = "selection_mark_detection"
|
1037
1272
|
elif key == "tenancyId":
|
1038
1273
|
suggest = "tenancy_id"
|
1039
1274
|
|
@@ -1053,6 +1288,7 @@ class ProcessorJobProcessorConfigFeature(dict):
|
|
1053
1288
|
generate_searchable_pdf: Optional[_builtins.bool] = None,
|
1054
1289
|
max_results: Optional[_builtins.int] = None,
|
1055
1290
|
model_id: Optional[_builtins.str] = None,
|
1291
|
+
selection_mark_detection: Optional[_builtins.bool] = None,
|
1056
1292
|
tenancy_id: Optional[_builtins.str] = None):
|
1057
1293
|
"""
|
1058
1294
|
:param _builtins.str feature_type: The type of document analysis requested. The allowed values are:
|
@@ -1061,9 +1297,11 @@ class ProcessorJobProcessorConfigFeature(dict):
|
|
1061
1297
|
* `TABLE_EXTRACTION`: Detect and extract data in tables.
|
1062
1298
|
* `KEY_VALUE_EXTRACTION`: Extract form fields.
|
1063
1299
|
* `DOCUMENT_CLASSIFICATION`: Identify the type of document.
|
1300
|
+
* `DOCUMENT_ELEMENTS_EXTRACTION`: Extract information from bar code
|
1064
1301
|
:param _builtins.bool generate_searchable_pdf: Whether or not to generate a searchable PDF file.
|
1065
1302
|
:param _builtins.int max_results: The maximum number of results to return.
|
1066
|
-
:param _builtins.str model_id:
|
1303
|
+
:param _builtins.str model_id: Unique identifier custom model OCID that should be used for inference.
|
1304
|
+
:param _builtins.bool selection_mark_detection: Whether checkbox detection feature is enabled or disabled.
|
1067
1305
|
:param _builtins.str tenancy_id: The custom model tenancy ID when modelId represents aliasName.
|
1068
1306
|
"""
|
1069
1307
|
pulumi.set(__self__, "feature_type", feature_type)
|
@@ -1073,6 +1311,8 @@ class ProcessorJobProcessorConfigFeature(dict):
|
|
1073
1311
|
pulumi.set(__self__, "max_results", max_results)
|
1074
1312
|
if model_id is not None:
|
1075
1313
|
pulumi.set(__self__, "model_id", model_id)
|
1314
|
+
if selection_mark_detection is not None:
|
1315
|
+
pulumi.set(__self__, "selection_mark_detection", selection_mark_detection)
|
1076
1316
|
if tenancy_id is not None:
|
1077
1317
|
pulumi.set(__self__, "tenancy_id", tenancy_id)
|
1078
1318
|
|
@@ -1086,6 +1326,7 @@ class ProcessorJobProcessorConfigFeature(dict):
|
|
1086
1326
|
* `TABLE_EXTRACTION`: Detect and extract data in tables.
|
1087
1327
|
* `KEY_VALUE_EXTRACTION`: Extract form fields.
|
1088
1328
|
* `DOCUMENT_CLASSIFICATION`: Identify the type of document.
|
1329
|
+
* `DOCUMENT_ELEMENTS_EXTRACTION`: Extract information from bar code
|
1089
1330
|
"""
|
1090
1331
|
return pulumi.get(self, "feature_type")
|
1091
1332
|
|
@@ -1109,10 +1350,18 @@ class ProcessorJobProcessorConfigFeature(dict):
|
|
1109
1350
|
@pulumi.getter(name="modelId")
|
1110
1351
|
def model_id(self) -> Optional[_builtins.str]:
|
1111
1352
|
"""
|
1112
|
-
|
1353
|
+
Unique identifier custom model OCID that should be used for inference.
|
1113
1354
|
"""
|
1114
1355
|
return pulumi.get(self, "model_id")
|
1115
1356
|
|
1357
|
+
@_builtins.property
|
1358
|
+
@pulumi.getter(name="selectionMarkDetection")
|
1359
|
+
def selection_mark_detection(self) -> Optional[_builtins.bool]:
|
1360
|
+
"""
|
1361
|
+
Whether checkbox detection feature is enabled or disabled.
|
1362
|
+
"""
|
1363
|
+
return pulumi.get(self, "selection_mark_detection")
|
1364
|
+
|
1116
1365
|
@_builtins.property
|
1117
1366
|
@pulumi.getter(name="tenancyId")
|
1118
1367
|
def tenancy_id(self) -> Optional[_builtins.str]:
|
@@ -1122,6 +1371,148 @@ class ProcessorJobProcessorConfigFeature(dict):
|
|
1122
1371
|
return pulumi.get(self, "tenancy_id")
|
1123
1372
|
|
1124
1373
|
|
1374
|
+
@pulumi.output_type
|
1375
|
+
class ProcessorJobProcessorConfigNormalizationField(dict):
|
1376
|
+
def __init__(__self__, *,
|
1377
|
+
maps: Optional[Sequence['outputs.ProcessorJobProcessorConfigNormalizationFieldMap']] = None):
|
1378
|
+
"""
|
1379
|
+
:param Sequence['ProcessorJobProcessorConfigNormalizationFieldMapArgs'] maps: A wrapped map.
|
1380
|
+
"""
|
1381
|
+
if maps is not None:
|
1382
|
+
pulumi.set(__self__, "maps", maps)
|
1383
|
+
|
1384
|
+
@_builtins.property
|
1385
|
+
@pulumi.getter
|
1386
|
+
def maps(self) -> Optional[Sequence['outputs.ProcessorJobProcessorConfigNormalizationFieldMap']]:
|
1387
|
+
"""
|
1388
|
+
A wrapped map.
|
1389
|
+
"""
|
1390
|
+
return pulumi.get(self, "maps")
|
1391
|
+
|
1392
|
+
|
1393
|
+
@pulumi.output_type
|
1394
|
+
class ProcessorJobProcessorConfigNormalizationFieldMap(dict):
|
1395
|
+
@staticmethod
|
1396
|
+
def __key_warning(key: str):
|
1397
|
+
suggest = None
|
1398
|
+
if key == "normalizationType":
|
1399
|
+
suggest = "normalization_type"
|
1400
|
+
|
1401
|
+
if suggest:
|
1402
|
+
pulumi.log.warn(f"Key '{key}' not found in ProcessorJobProcessorConfigNormalizationFieldMap. Access the value via the '{suggest}' property getter instead.")
|
1403
|
+
|
1404
|
+
def __getitem__(self, key: str) -> Any:
|
1405
|
+
ProcessorJobProcessorConfigNormalizationFieldMap.__key_warning(key)
|
1406
|
+
return super().__getitem__(key)
|
1407
|
+
|
1408
|
+
def get(self, key: str, default = None) -> Any:
|
1409
|
+
ProcessorJobProcessorConfigNormalizationFieldMap.__key_warning(key)
|
1410
|
+
return super().get(key, default)
|
1411
|
+
|
1412
|
+
def __init__(__self__, *,
|
1413
|
+
normalization_type: Optional[_builtins.str] = None):
|
1414
|
+
"""
|
1415
|
+
:param _builtins.str normalization_type: A string mapping to the normalization type.
|
1416
|
+
"""
|
1417
|
+
if normalization_type is not None:
|
1418
|
+
pulumi.set(__self__, "normalization_type", normalization_type)
|
1419
|
+
|
1420
|
+
@_builtins.property
|
1421
|
+
@pulumi.getter(name="normalizationType")
|
1422
|
+
def normalization_type(self) -> Optional[_builtins.str]:
|
1423
|
+
"""
|
1424
|
+
A string mapping to the normalization type.
|
1425
|
+
"""
|
1426
|
+
return pulumi.get(self, "normalization_type")
|
1427
|
+
|
1428
|
+
|
1429
|
+
@pulumi.output_type
|
1430
|
+
class ProjectLock(dict):
|
1431
|
+
@staticmethod
|
1432
|
+
def __key_warning(key: str):
|
1433
|
+
suggest = None
|
1434
|
+
if key == "compartmentId":
|
1435
|
+
suggest = "compartment_id"
|
1436
|
+
elif key == "relatedResourceId":
|
1437
|
+
suggest = "related_resource_id"
|
1438
|
+
elif key == "timeCreated":
|
1439
|
+
suggest = "time_created"
|
1440
|
+
|
1441
|
+
if suggest:
|
1442
|
+
pulumi.log.warn(f"Key '{key}' not found in ProjectLock. Access the value via the '{suggest}' property getter instead.")
|
1443
|
+
|
1444
|
+
def __getitem__(self, key: str) -> Any:
|
1445
|
+
ProjectLock.__key_warning(key)
|
1446
|
+
return super().__getitem__(key)
|
1447
|
+
|
1448
|
+
def get(self, key: str, default = None) -> Any:
|
1449
|
+
ProjectLock.__key_warning(key)
|
1450
|
+
return super().get(key, default)
|
1451
|
+
|
1452
|
+
def __init__(__self__, *,
|
1453
|
+
type: _builtins.str,
|
1454
|
+
compartment_id: Optional[_builtins.str] = None,
|
1455
|
+
message: Optional[_builtins.str] = None,
|
1456
|
+
related_resource_id: Optional[_builtins.str] = None,
|
1457
|
+
time_created: Optional[_builtins.str] = None):
|
1458
|
+
"""
|
1459
|
+
:param _builtins.str type: Lock type.
|
1460
|
+
:param _builtins.str compartment_id: (Updatable) The compartment identifier.
|
1461
|
+
:param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
1462
|
+
:param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
1463
|
+
:param _builtins.str time_created: When the project was created, as an RFC3339 datetime string.
|
1464
|
+
"""
|
1465
|
+
pulumi.set(__self__, "type", type)
|
1466
|
+
if compartment_id is not None:
|
1467
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
1468
|
+
if message is not None:
|
1469
|
+
pulumi.set(__self__, "message", message)
|
1470
|
+
if related_resource_id is not None:
|
1471
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
1472
|
+
if time_created is not None:
|
1473
|
+
pulumi.set(__self__, "time_created", time_created)
|
1474
|
+
|
1475
|
+
@_builtins.property
|
1476
|
+
@pulumi.getter
|
1477
|
+
def type(self) -> _builtins.str:
|
1478
|
+
"""
|
1479
|
+
Lock type.
|
1480
|
+
"""
|
1481
|
+
return pulumi.get(self, "type")
|
1482
|
+
|
1483
|
+
@_builtins.property
|
1484
|
+
@pulumi.getter(name="compartmentId")
|
1485
|
+
def compartment_id(self) -> Optional[_builtins.str]:
|
1486
|
+
"""
|
1487
|
+
(Updatable) The compartment identifier.
|
1488
|
+
"""
|
1489
|
+
return pulumi.get(self, "compartment_id")
|
1490
|
+
|
1491
|
+
@_builtins.property
|
1492
|
+
@pulumi.getter
|
1493
|
+
def message(self) -> Optional[_builtins.str]:
|
1494
|
+
"""
|
1495
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
1496
|
+
"""
|
1497
|
+
return pulumi.get(self, "message")
|
1498
|
+
|
1499
|
+
@_builtins.property
|
1500
|
+
@pulumi.getter(name="relatedResourceId")
|
1501
|
+
def related_resource_id(self) -> Optional[_builtins.str]:
|
1502
|
+
"""
|
1503
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
1504
|
+
"""
|
1505
|
+
return pulumi.get(self, "related_resource_id")
|
1506
|
+
|
1507
|
+
@_builtins.property
|
1508
|
+
@pulumi.getter(name="timeCreated")
|
1509
|
+
def time_created(self) -> Optional[_builtins.str]:
|
1510
|
+
"""
|
1511
|
+
When the project was created, as an RFC3339 datetime string.
|
1512
|
+
"""
|
1513
|
+
return pulumi.get(self, "time_created")
|
1514
|
+
|
1515
|
+
|
1125
1516
|
@pulumi.output_type
|
1126
1517
|
class GetModelComponentModelResult(dict):
|
1127
1518
|
def __init__(__self__, *,
|
@@ -1140,6 +1531,68 @@ class GetModelComponentModelResult(dict):
|
|
1140
1531
|
return pulumi.get(self, "model_id")
|
1141
1532
|
|
1142
1533
|
|
1534
|
+
@pulumi.output_type
|
1535
|
+
class GetModelLockResult(dict):
|
1536
|
+
def __init__(__self__, *,
|
1537
|
+
compartment_id: _builtins.str,
|
1538
|
+
message: _builtins.str,
|
1539
|
+
related_resource_id: _builtins.str,
|
1540
|
+
time_created: _builtins.str,
|
1541
|
+
type: _builtins.str):
|
1542
|
+
"""
|
1543
|
+
:param _builtins.str compartment_id: The lock compartment ID.
|
1544
|
+
:param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
1545
|
+
:param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
1546
|
+
:param _builtins.str time_created: When the model was created, as an RFC3339 datetime string.
|
1547
|
+
:param _builtins.str type: Lock type.
|
1548
|
+
"""
|
1549
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
1550
|
+
pulumi.set(__self__, "message", message)
|
1551
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
1552
|
+
pulumi.set(__self__, "time_created", time_created)
|
1553
|
+
pulumi.set(__self__, "type", type)
|
1554
|
+
|
1555
|
+
@_builtins.property
|
1556
|
+
@pulumi.getter(name="compartmentId")
|
1557
|
+
def compartment_id(self) -> _builtins.str:
|
1558
|
+
"""
|
1559
|
+
The lock compartment ID.
|
1560
|
+
"""
|
1561
|
+
return pulumi.get(self, "compartment_id")
|
1562
|
+
|
1563
|
+
@_builtins.property
|
1564
|
+
@pulumi.getter
|
1565
|
+
def message(self) -> _builtins.str:
|
1566
|
+
"""
|
1567
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
1568
|
+
"""
|
1569
|
+
return pulumi.get(self, "message")
|
1570
|
+
|
1571
|
+
@_builtins.property
|
1572
|
+
@pulumi.getter(name="relatedResourceId")
|
1573
|
+
def related_resource_id(self) -> _builtins.str:
|
1574
|
+
"""
|
1575
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
1576
|
+
"""
|
1577
|
+
return pulumi.get(self, "related_resource_id")
|
1578
|
+
|
1579
|
+
@_builtins.property
|
1580
|
+
@pulumi.getter(name="timeCreated")
|
1581
|
+
def time_created(self) -> _builtins.str:
|
1582
|
+
"""
|
1583
|
+
When the model was created, as an RFC3339 datetime string.
|
1584
|
+
"""
|
1585
|
+
return pulumi.get(self, "time_created")
|
1586
|
+
|
1587
|
+
@_builtins.property
|
1588
|
+
@pulumi.getter
|
1589
|
+
def type(self) -> _builtins.str:
|
1590
|
+
"""
|
1591
|
+
Lock type.
|
1592
|
+
"""
|
1593
|
+
return pulumi.get(self, "type")
|
1594
|
+
|
1595
|
+
|
1143
1596
|
@pulumi.output_type
|
1144
1597
|
class GetModelMetricResult(dict):
|
1145
1598
|
def __init__(__self__, *,
|
@@ -1446,6 +1899,45 @@ class GetModelMetricOverallMetricsReportConfidenceEntryResult(dict):
|
|
1446
1899
|
return pulumi.get(self, "threshold")
|
1447
1900
|
|
1448
1901
|
|
1902
|
+
@pulumi.output_type
|
1903
|
+
class GetModelModelSubTypeResult(dict):
|
1904
|
+
def __init__(__self__, *,
|
1905
|
+
model_sub_type: _builtins.str,
|
1906
|
+
model_type: _builtins.str):
|
1907
|
+
"""
|
1908
|
+
:param _builtins.str model_sub_type: The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
1909
|
+
* `RECEIPT`
|
1910
|
+
* `INVOICE`
|
1911
|
+
* `PASSPORT`
|
1912
|
+
* `DRIVER_LICENSE`
|
1913
|
+
* `HEALTH_INSURANCE_ID`
|
1914
|
+
:param _builtins.str model_type: The type of the Document model.
|
1915
|
+
"""
|
1916
|
+
pulumi.set(__self__, "model_sub_type", model_sub_type)
|
1917
|
+
pulumi.set(__self__, "model_type", model_type)
|
1918
|
+
|
1919
|
+
@_builtins.property
|
1920
|
+
@pulumi.getter(name="modelSubType")
|
1921
|
+
def model_sub_type(self) -> _builtins.str:
|
1922
|
+
"""
|
1923
|
+
The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
1924
|
+
* `RECEIPT`
|
1925
|
+
* `INVOICE`
|
1926
|
+
* `PASSPORT`
|
1927
|
+
* `DRIVER_LICENSE`
|
1928
|
+
* `HEALTH_INSURANCE_ID`
|
1929
|
+
"""
|
1930
|
+
return pulumi.get(self, "model_sub_type")
|
1931
|
+
|
1932
|
+
@_builtins.property
|
1933
|
+
@pulumi.getter(name="modelType")
|
1934
|
+
def model_type(self) -> _builtins.str:
|
1935
|
+
"""
|
1936
|
+
The type of the Document model.
|
1937
|
+
"""
|
1938
|
+
return pulumi.get(self, "model_type")
|
1939
|
+
|
1940
|
+
|
1449
1941
|
@pulumi.output_type
|
1450
1942
|
class GetModelTestingDatasetResult(dict):
|
1451
1943
|
def __init__(__self__, *,
|
@@ -1681,13 +2173,17 @@ class GetModelsModelCollectionItemResult(dict):
|
|
1681
2173
|
display_name: _builtins.str,
|
1682
2174
|
freeform_tags: Mapping[str, _builtins.str],
|
1683
2175
|
id: _builtins.str,
|
2176
|
+
inference_units: _builtins.int,
|
1684
2177
|
is_composed_model: _builtins.bool,
|
1685
2178
|
is_quick_mode: _builtins.bool,
|
1686
2179
|
labels: Sequence[_builtins.str],
|
2180
|
+
language: _builtins.str,
|
1687
2181
|
lifecycle_details: _builtins.str,
|
2182
|
+
locks: Sequence['outputs.GetModelsModelCollectionItemLockResult'],
|
1688
2183
|
max_training_time_in_hours: _builtins.float,
|
1689
2184
|
metrics: Sequence['outputs.GetModelsModelCollectionItemMetricResult'],
|
1690
2185
|
model_id: _builtins.str,
|
2186
|
+
model_sub_types: Sequence['outputs.GetModelsModelCollectionItemModelSubTypeResult'],
|
1691
2187
|
model_type: _builtins.str,
|
1692
2188
|
model_version: _builtins.str,
|
1693
2189
|
project_id: _builtins.str,
|
@@ -1708,13 +2204,22 @@ class GetModelsModelCollectionItemResult(dict):
|
|
1708
2204
|
:param _builtins.str display_name: A filter to return only resources that match the entire display name given.
|
1709
2205
|
:param Mapping[str, _builtins.str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{"bar-key": "value"}`
|
1710
2206
|
:param _builtins.str id: The filter to find the model with the given identifier.
|
2207
|
+
:param _builtins.int inference_units: Number of replicas required for this model.
|
1711
2208
|
:param _builtins.bool is_composed_model: Set to true when the model is created by using multiple key value extraction models.
|
1712
2209
|
:param _builtins.bool is_quick_mode: Set to true when experimenting with a new model type or dataset, so model training is quick, with a predefined low number of passes through the training data.
|
1713
2210
|
:param Sequence[_builtins.str] labels: The collection of labels used to train the custom model.
|
2211
|
+
:param _builtins.str language: The document language for model training, abbreviated according to the BCP 47 syntax.
|
1714
2212
|
:param _builtins.str lifecycle_details: A message describing the current state in more detail, that can provide actionable information if training failed.
|
2213
|
+
:param Sequence['GetModelsModelCollectionItemLockArgs'] locks: Locks associated with this resource.
|
1715
2214
|
:param _builtins.float max_training_time_in_hours: The maximum model training time in hours, expressed as a decimal fraction.
|
1716
2215
|
:param Sequence['GetModelsModelCollectionItemMetricArgs'] metrics: Trained Model Metrics.
|
1717
2216
|
:param _builtins.str model_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of active custom Key Value model that need to be composed.
|
2217
|
+
:param Sequence['GetModelsModelCollectionItemModelSubTypeArgs'] model_sub_types: The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
2218
|
+
* `RECEIPT`
|
2219
|
+
* `INVOICE`
|
2220
|
+
* `PASSPORT`
|
2221
|
+
* `DRIVER_LICENSE`
|
2222
|
+
* `HEALTH_INSURANCE_ID`
|
1718
2223
|
:param _builtins.str model_type: The type of the Document model.
|
1719
2224
|
:param _builtins.str model_version: The version of the model.
|
1720
2225
|
:param _builtins.str project_id: The ID of the project for which to list the objects.
|
@@ -1735,13 +2240,17 @@ class GetModelsModelCollectionItemResult(dict):
|
|
1735
2240
|
pulumi.set(__self__, "display_name", display_name)
|
1736
2241
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1737
2242
|
pulumi.set(__self__, "id", id)
|
2243
|
+
pulumi.set(__self__, "inference_units", inference_units)
|
1738
2244
|
pulumi.set(__self__, "is_composed_model", is_composed_model)
|
1739
2245
|
pulumi.set(__self__, "is_quick_mode", is_quick_mode)
|
1740
2246
|
pulumi.set(__self__, "labels", labels)
|
2247
|
+
pulumi.set(__self__, "language", language)
|
1741
2248
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
2249
|
+
pulumi.set(__self__, "locks", locks)
|
1742
2250
|
pulumi.set(__self__, "max_training_time_in_hours", max_training_time_in_hours)
|
1743
2251
|
pulumi.set(__self__, "metrics", metrics)
|
1744
2252
|
pulumi.set(__self__, "model_id", model_id)
|
2253
|
+
pulumi.set(__self__, "model_sub_types", model_sub_types)
|
1745
2254
|
pulumi.set(__self__, "model_type", model_type)
|
1746
2255
|
pulumi.set(__self__, "model_version", model_version)
|
1747
2256
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -1811,6 +2320,14 @@ class GetModelsModelCollectionItemResult(dict):
|
|
1811
2320
|
"""
|
1812
2321
|
return pulumi.get(self, "id")
|
1813
2322
|
|
2323
|
+
@_builtins.property
|
2324
|
+
@pulumi.getter(name="inferenceUnits")
|
2325
|
+
def inference_units(self) -> _builtins.int:
|
2326
|
+
"""
|
2327
|
+
Number of replicas required for this model.
|
2328
|
+
"""
|
2329
|
+
return pulumi.get(self, "inference_units")
|
2330
|
+
|
1814
2331
|
@_builtins.property
|
1815
2332
|
@pulumi.getter(name="isComposedModel")
|
1816
2333
|
def is_composed_model(self) -> _builtins.bool:
|
@@ -1835,6 +2352,14 @@ class GetModelsModelCollectionItemResult(dict):
|
|
1835
2352
|
"""
|
1836
2353
|
return pulumi.get(self, "labels")
|
1837
2354
|
|
2355
|
+
@_builtins.property
|
2356
|
+
@pulumi.getter
|
2357
|
+
def language(self) -> _builtins.str:
|
2358
|
+
"""
|
2359
|
+
The document language for model training, abbreviated according to the BCP 47 syntax.
|
2360
|
+
"""
|
2361
|
+
return pulumi.get(self, "language")
|
2362
|
+
|
1838
2363
|
@_builtins.property
|
1839
2364
|
@pulumi.getter(name="lifecycleDetails")
|
1840
2365
|
def lifecycle_details(self) -> _builtins.str:
|
@@ -1843,6 +2368,14 @@ class GetModelsModelCollectionItemResult(dict):
|
|
1843
2368
|
"""
|
1844
2369
|
return pulumi.get(self, "lifecycle_details")
|
1845
2370
|
|
2371
|
+
@_builtins.property
|
2372
|
+
@pulumi.getter
|
2373
|
+
def locks(self) -> Sequence['outputs.GetModelsModelCollectionItemLockResult']:
|
2374
|
+
"""
|
2375
|
+
Locks associated with this resource.
|
2376
|
+
"""
|
2377
|
+
return pulumi.get(self, "locks")
|
2378
|
+
|
1846
2379
|
@_builtins.property
|
1847
2380
|
@pulumi.getter(name="maxTrainingTimeInHours")
|
1848
2381
|
def max_training_time_in_hours(self) -> _builtins.float:
|
@@ -1867,6 +2400,19 @@ class GetModelsModelCollectionItemResult(dict):
|
|
1867
2400
|
"""
|
1868
2401
|
return pulumi.get(self, "model_id")
|
1869
2402
|
|
2403
|
+
@_builtins.property
|
2404
|
+
@pulumi.getter(name="modelSubTypes")
|
2405
|
+
def model_sub_types(self) -> Sequence['outputs.GetModelsModelCollectionItemModelSubTypeResult']:
|
2406
|
+
"""
|
2407
|
+
The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
2408
|
+
* `RECEIPT`
|
2409
|
+
* `INVOICE`
|
2410
|
+
* `PASSPORT`
|
2411
|
+
* `DRIVER_LICENSE`
|
2412
|
+
* `HEALTH_INSURANCE_ID`
|
2413
|
+
"""
|
2414
|
+
return pulumi.get(self, "model_sub_types")
|
2415
|
+
|
1870
2416
|
@_builtins.property
|
1871
2417
|
@pulumi.getter(name="modelType")
|
1872
2418
|
def model_type(self) -> _builtins.str:
|
@@ -1982,6 +2528,68 @@ class GetModelsModelCollectionItemComponentModelResult(dict):
|
|
1982
2528
|
return pulumi.get(self, "model_id")
|
1983
2529
|
|
1984
2530
|
|
2531
|
+
@pulumi.output_type
|
2532
|
+
class GetModelsModelCollectionItemLockResult(dict):
|
2533
|
+
def __init__(__self__, *,
|
2534
|
+
compartment_id: _builtins.str,
|
2535
|
+
message: _builtins.str,
|
2536
|
+
related_resource_id: _builtins.str,
|
2537
|
+
time_created: _builtins.str,
|
2538
|
+
type: _builtins.str):
|
2539
|
+
"""
|
2540
|
+
:param _builtins.str compartment_id: The ID of the compartment in which to list resources.
|
2541
|
+
:param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
2542
|
+
:param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
2543
|
+
:param _builtins.str time_created: When the model was created, as an RFC3339 datetime string.
|
2544
|
+
:param _builtins.str type: Lock type.
|
2545
|
+
"""
|
2546
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
2547
|
+
pulumi.set(__self__, "message", message)
|
2548
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
2549
|
+
pulumi.set(__self__, "time_created", time_created)
|
2550
|
+
pulumi.set(__self__, "type", type)
|
2551
|
+
|
2552
|
+
@_builtins.property
|
2553
|
+
@pulumi.getter(name="compartmentId")
|
2554
|
+
def compartment_id(self) -> _builtins.str:
|
2555
|
+
"""
|
2556
|
+
The ID of the compartment in which to list resources.
|
2557
|
+
"""
|
2558
|
+
return pulumi.get(self, "compartment_id")
|
2559
|
+
|
2560
|
+
@_builtins.property
|
2561
|
+
@pulumi.getter
|
2562
|
+
def message(self) -> _builtins.str:
|
2563
|
+
"""
|
2564
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
2565
|
+
"""
|
2566
|
+
return pulumi.get(self, "message")
|
2567
|
+
|
2568
|
+
@_builtins.property
|
2569
|
+
@pulumi.getter(name="relatedResourceId")
|
2570
|
+
def related_resource_id(self) -> _builtins.str:
|
2571
|
+
"""
|
2572
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
2573
|
+
"""
|
2574
|
+
return pulumi.get(self, "related_resource_id")
|
2575
|
+
|
2576
|
+
@_builtins.property
|
2577
|
+
@pulumi.getter(name="timeCreated")
|
2578
|
+
def time_created(self) -> _builtins.str:
|
2579
|
+
"""
|
2580
|
+
When the model was created, as an RFC3339 datetime string.
|
2581
|
+
"""
|
2582
|
+
return pulumi.get(self, "time_created")
|
2583
|
+
|
2584
|
+
@_builtins.property
|
2585
|
+
@pulumi.getter
|
2586
|
+
def type(self) -> _builtins.str:
|
2587
|
+
"""
|
2588
|
+
Lock type.
|
2589
|
+
"""
|
2590
|
+
return pulumi.get(self, "type")
|
2591
|
+
|
2592
|
+
|
1985
2593
|
@pulumi.output_type
|
1986
2594
|
class GetModelsModelCollectionItemMetricResult(dict):
|
1987
2595
|
def __init__(__self__, *,
|
@@ -2288,6 +2896,45 @@ class GetModelsModelCollectionItemMetricOverallMetricsReportConfidenceEntryResul
|
|
2288
2896
|
return pulumi.get(self, "threshold")
|
2289
2897
|
|
2290
2898
|
|
2899
|
+
@pulumi.output_type
|
2900
|
+
class GetModelsModelCollectionItemModelSubTypeResult(dict):
|
2901
|
+
def __init__(__self__, *,
|
2902
|
+
model_sub_type: _builtins.str,
|
2903
|
+
model_type: _builtins.str):
|
2904
|
+
"""
|
2905
|
+
:param _builtins.str model_sub_type: The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
2906
|
+
* `RECEIPT`
|
2907
|
+
* `INVOICE`
|
2908
|
+
* `PASSPORT`
|
2909
|
+
* `DRIVER_LICENSE`
|
2910
|
+
* `HEALTH_INSURANCE_ID`
|
2911
|
+
:param _builtins.str model_type: The type of the Document model.
|
2912
|
+
"""
|
2913
|
+
pulumi.set(__self__, "model_sub_type", model_sub_type)
|
2914
|
+
pulumi.set(__self__, "model_type", model_type)
|
2915
|
+
|
2916
|
+
@_builtins.property
|
2917
|
+
@pulumi.getter(name="modelSubType")
|
2918
|
+
def model_sub_type(self) -> _builtins.str:
|
2919
|
+
"""
|
2920
|
+
The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
|
2921
|
+
* `RECEIPT`
|
2922
|
+
* `INVOICE`
|
2923
|
+
* `PASSPORT`
|
2924
|
+
* `DRIVER_LICENSE`
|
2925
|
+
* `HEALTH_INSURANCE_ID`
|
2926
|
+
"""
|
2927
|
+
return pulumi.get(self, "model_sub_type")
|
2928
|
+
|
2929
|
+
@_builtins.property
|
2930
|
+
@pulumi.getter(name="modelType")
|
2931
|
+
def model_type(self) -> _builtins.str:
|
2932
|
+
"""
|
2933
|
+
The type of the Document model.
|
2934
|
+
"""
|
2935
|
+
return pulumi.get(self, "model_type")
|
2936
|
+
|
2937
|
+
|
2291
2938
|
@pulumi.output_type
|
2292
2939
|
class GetModelsModelCollectionItemTestingDatasetResult(dict):
|
2293
2940
|
def __init__(__self__, *,
|
@@ -2479,16 +3126,19 @@ class GetProcessorJobInputLocationResult(dict):
|
|
2479
3126
|
def __init__(__self__, *,
|
2480
3127
|
data: _builtins.str,
|
2481
3128
|
object_locations: Sequence['outputs.GetProcessorJobInputLocationObjectLocationResult'],
|
3129
|
+
page_ranges: Sequence[_builtins.str],
|
2482
3130
|
source_type: _builtins.str):
|
2483
3131
|
"""
|
2484
3132
|
:param _builtins.str data: Raw document data with Base64 encoding.
|
2485
3133
|
:param Sequence['GetProcessorJobInputLocationObjectLocationArgs'] object_locations: The list of ObjectLocations.
|
3134
|
+
:param Sequence[_builtins.str] page_ranges: The page ranges to be analysed.
|
2486
3135
|
:param _builtins.str source_type: The type of input location. The allowed values are:
|
2487
3136
|
* `OBJECT_STORAGE_LOCATIONS`: A list of object locations in Object Storage.
|
2488
3137
|
* `INLINE_DOCUMENT_CONTENT`: The content of an inline document.
|
2489
3138
|
"""
|
2490
3139
|
pulumi.set(__self__, "data", data)
|
2491
3140
|
pulumi.set(__self__, "object_locations", object_locations)
|
3141
|
+
pulumi.set(__self__, "page_ranges", page_ranges)
|
2492
3142
|
pulumi.set(__self__, "source_type", source_type)
|
2493
3143
|
|
2494
3144
|
@_builtins.property
|
@@ -2507,6 +3157,14 @@ class GetProcessorJobInputLocationResult(dict):
|
|
2507
3157
|
"""
|
2508
3158
|
return pulumi.get(self, "object_locations")
|
2509
3159
|
|
3160
|
+
@_builtins.property
|
3161
|
+
@pulumi.getter(name="pageRanges")
|
3162
|
+
def page_ranges(self) -> Sequence[_builtins.str]:
|
3163
|
+
"""
|
3164
|
+
The page ranges to be analysed.
|
3165
|
+
"""
|
3166
|
+
return pulumi.get(self, "page_ranges")
|
3167
|
+
|
2510
3168
|
@_builtins.property
|
2511
3169
|
@pulumi.getter(name="sourceType")
|
2512
3170
|
def source_type(self) -> _builtins.str:
|
@@ -2523,15 +3181,18 @@ class GetProcessorJobInputLocationObjectLocationResult(dict):
|
|
2523
3181
|
def __init__(__self__, *,
|
2524
3182
|
bucket: _builtins.str,
|
2525
3183
|
namespace: _builtins.str,
|
2526
|
-
object: _builtins.str
|
3184
|
+
object: _builtins.str,
|
3185
|
+
page_ranges: Sequence[_builtins.str]):
|
2527
3186
|
"""
|
2528
3187
|
:param _builtins.str bucket: The Object Storage bucket name.
|
2529
3188
|
:param _builtins.str namespace: The Object Storage namespace.
|
2530
3189
|
:param _builtins.str object: The Object Storage object name.
|
3190
|
+
:param Sequence[_builtins.str] page_ranges: The page ranges to be analysed.
|
2531
3191
|
"""
|
2532
3192
|
pulumi.set(__self__, "bucket", bucket)
|
2533
3193
|
pulumi.set(__self__, "namespace", namespace)
|
2534
3194
|
pulumi.set(__self__, "object", object)
|
3195
|
+
pulumi.set(__self__, "page_ranges", page_ranges)
|
2535
3196
|
|
2536
3197
|
@_builtins.property
|
2537
3198
|
@pulumi.getter
|
@@ -2557,6 +3218,14 @@ class GetProcessorJobInputLocationObjectLocationResult(dict):
|
|
2557
3218
|
"""
|
2558
3219
|
return pulumi.get(self, "object")
|
2559
3220
|
|
3221
|
+
@_builtins.property
|
3222
|
+
@pulumi.getter(name="pageRanges")
|
3223
|
+
def page_ranges(self) -> Sequence[_builtins.str]:
|
3224
|
+
"""
|
3225
|
+
The page ranges to be analysed.
|
3226
|
+
"""
|
3227
|
+
return pulumi.get(self, "page_ranges")
|
3228
|
+
|
2560
3229
|
|
2561
3230
|
@pulumi.output_type
|
2562
3231
|
class GetProcessorJobOutputLocationResult(dict):
|
@@ -2605,18 +3274,24 @@ class GetProcessorJobProcessorConfigResult(dict):
|
|
2605
3274
|
features: Sequence['outputs.GetProcessorJobProcessorConfigFeatureResult'],
|
2606
3275
|
is_zip_output_enabled: _builtins.bool,
|
2607
3276
|
language: _builtins.str,
|
3277
|
+
model_id: _builtins.str,
|
3278
|
+
normalization_fields: Sequence['outputs.GetProcessorJobProcessorConfigNormalizationFieldResult'],
|
2608
3279
|
processor_type: _builtins.str):
|
2609
3280
|
"""
|
2610
3281
|
:param _builtins.str document_type: The document type.
|
2611
3282
|
:param Sequence['GetProcessorJobProcessorConfigFeatureArgs'] features: The types of document analysis requested.
|
2612
3283
|
:param _builtins.bool is_zip_output_enabled: Whether or not to generate a ZIP file containing the results.
|
2613
3284
|
:param _builtins.str language: The document language, abbreviated according to the BCP 47 Language-Tag syntax.
|
3285
|
+
:param _builtins.str model_id: Unique identifier custom model OCID that should be used for inference.
|
3286
|
+
:param Sequence['GetProcessorJobProcessorConfigNormalizationFieldArgs'] normalization_fields: A string-to-object map where the key is the normalization field and the object contains information about the field.
|
2614
3287
|
:param _builtins.str processor_type: The type of the processor.
|
2615
3288
|
"""
|
2616
3289
|
pulumi.set(__self__, "document_type", document_type)
|
2617
3290
|
pulumi.set(__self__, "features", features)
|
2618
3291
|
pulumi.set(__self__, "is_zip_output_enabled", is_zip_output_enabled)
|
2619
3292
|
pulumi.set(__self__, "language", language)
|
3293
|
+
pulumi.set(__self__, "model_id", model_id)
|
3294
|
+
pulumi.set(__self__, "normalization_fields", normalization_fields)
|
2620
3295
|
pulumi.set(__self__, "processor_type", processor_type)
|
2621
3296
|
|
2622
3297
|
@_builtins.property
|
@@ -2651,6 +3326,22 @@ class GetProcessorJobProcessorConfigResult(dict):
|
|
2651
3326
|
"""
|
2652
3327
|
return pulumi.get(self, "language")
|
2653
3328
|
|
3329
|
+
@_builtins.property
|
3330
|
+
@pulumi.getter(name="modelId")
|
3331
|
+
def model_id(self) -> _builtins.str:
|
3332
|
+
"""
|
3333
|
+
Unique identifier custom model OCID that should be used for inference.
|
3334
|
+
"""
|
3335
|
+
return pulumi.get(self, "model_id")
|
3336
|
+
|
3337
|
+
@_builtins.property
|
3338
|
+
@pulumi.getter(name="normalizationFields")
|
3339
|
+
def normalization_fields(self) -> Sequence['outputs.GetProcessorJobProcessorConfigNormalizationFieldResult']:
|
3340
|
+
"""
|
3341
|
+
A string-to-object map where the key is the normalization field and the object contains information about the field.
|
3342
|
+
"""
|
3343
|
+
return pulumi.get(self, "normalization_fields")
|
3344
|
+
|
2654
3345
|
@_builtins.property
|
2655
3346
|
@pulumi.getter(name="processorType")
|
2656
3347
|
def processor_type(self) -> _builtins.str:
|
@@ -2667,6 +3358,7 @@ class GetProcessorJobProcessorConfigFeatureResult(dict):
|
|
2667
3358
|
generate_searchable_pdf: _builtins.bool,
|
2668
3359
|
max_results: _builtins.int,
|
2669
3360
|
model_id: _builtins.str,
|
3361
|
+
selection_mark_detection: _builtins.bool,
|
2670
3362
|
tenancy_id: _builtins.str):
|
2671
3363
|
"""
|
2672
3364
|
:param _builtins.str feature_type: The type of document analysis requested. The allowed values are:
|
@@ -2675,15 +3367,18 @@ class GetProcessorJobProcessorConfigFeatureResult(dict):
|
|
2675
3367
|
* `TABLE_EXTRACTION`: Detect and extract data in tables.
|
2676
3368
|
* `KEY_VALUE_EXTRACTION`: Extract form fields.
|
2677
3369
|
* `DOCUMENT_CLASSIFICATION`: Identify the type of document.
|
3370
|
+
* `DOCUMENT_ELEMENTS_EXTRACTION`: Extract information from bar code
|
2678
3371
|
:param _builtins.bool generate_searchable_pdf: Whether or not to generate a searchable PDF file.
|
2679
3372
|
:param _builtins.int max_results: The maximum number of results to return.
|
2680
|
-
:param _builtins.str model_id:
|
3373
|
+
:param _builtins.str model_id: Unique identifier custom model OCID that should be used for inference.
|
3374
|
+
:param _builtins.bool selection_mark_detection: Whether checkbox detection feature is enabled or disabled.
|
2681
3375
|
:param _builtins.str tenancy_id: The custom model tenancy ID when modelId represents aliasName.
|
2682
3376
|
"""
|
2683
3377
|
pulumi.set(__self__, "feature_type", feature_type)
|
2684
3378
|
pulumi.set(__self__, "generate_searchable_pdf", generate_searchable_pdf)
|
2685
3379
|
pulumi.set(__self__, "max_results", max_results)
|
2686
3380
|
pulumi.set(__self__, "model_id", model_id)
|
3381
|
+
pulumi.set(__self__, "selection_mark_detection", selection_mark_detection)
|
2687
3382
|
pulumi.set(__self__, "tenancy_id", tenancy_id)
|
2688
3383
|
|
2689
3384
|
@_builtins.property
|
@@ -2696,6 +3391,7 @@ class GetProcessorJobProcessorConfigFeatureResult(dict):
|
|
2696
3391
|
* `TABLE_EXTRACTION`: Detect and extract data in tables.
|
2697
3392
|
* `KEY_VALUE_EXTRACTION`: Extract form fields.
|
2698
3393
|
* `DOCUMENT_CLASSIFICATION`: Identify the type of document.
|
3394
|
+
* `DOCUMENT_ELEMENTS_EXTRACTION`: Extract information from bar code
|
2699
3395
|
"""
|
2700
3396
|
return pulumi.get(self, "feature_type")
|
2701
3397
|
|
@@ -2719,10 +3415,18 @@ class GetProcessorJobProcessorConfigFeatureResult(dict):
|
|
2719
3415
|
@pulumi.getter(name="modelId")
|
2720
3416
|
def model_id(self) -> _builtins.str:
|
2721
3417
|
"""
|
2722
|
-
|
3418
|
+
Unique identifier custom model OCID that should be used for inference.
|
2723
3419
|
"""
|
2724
3420
|
return pulumi.get(self, "model_id")
|
2725
3421
|
|
3422
|
+
@_builtins.property
|
3423
|
+
@pulumi.getter(name="selectionMarkDetection")
|
3424
|
+
def selection_mark_detection(self) -> _builtins.bool:
|
3425
|
+
"""
|
3426
|
+
Whether checkbox detection feature is enabled or disabled.
|
3427
|
+
"""
|
3428
|
+
return pulumi.get(self, "selection_mark_detection")
|
3429
|
+
|
2726
3430
|
@_builtins.property
|
2727
3431
|
@pulumi.getter(name="tenancyId")
|
2728
3432
|
def tenancy_id(self) -> _builtins.str:
|
@@ -2732,6 +3436,104 @@ class GetProcessorJobProcessorConfigFeatureResult(dict):
|
|
2732
3436
|
return pulumi.get(self, "tenancy_id")
|
2733
3437
|
|
2734
3438
|
|
3439
|
+
@pulumi.output_type
|
3440
|
+
class GetProcessorJobProcessorConfigNormalizationFieldResult(dict):
|
3441
|
+
def __init__(__self__, *,
|
3442
|
+
maps: Sequence['outputs.GetProcessorJobProcessorConfigNormalizationFieldMapResult']):
|
3443
|
+
"""
|
3444
|
+
:param Sequence['GetProcessorJobProcessorConfigNormalizationFieldMapArgs'] maps: A wrapped map.
|
3445
|
+
"""
|
3446
|
+
pulumi.set(__self__, "maps", maps)
|
3447
|
+
|
3448
|
+
@_builtins.property
|
3449
|
+
@pulumi.getter
|
3450
|
+
def maps(self) -> Sequence['outputs.GetProcessorJobProcessorConfigNormalizationFieldMapResult']:
|
3451
|
+
"""
|
3452
|
+
A wrapped map.
|
3453
|
+
"""
|
3454
|
+
return pulumi.get(self, "maps")
|
3455
|
+
|
3456
|
+
|
3457
|
+
@pulumi.output_type
|
3458
|
+
class GetProcessorJobProcessorConfigNormalizationFieldMapResult(dict):
|
3459
|
+
def __init__(__self__, *,
|
3460
|
+
normalization_type: _builtins.str):
|
3461
|
+
"""
|
3462
|
+
:param _builtins.str normalization_type: A string mapping to the normalization type.
|
3463
|
+
"""
|
3464
|
+
pulumi.set(__self__, "normalization_type", normalization_type)
|
3465
|
+
|
3466
|
+
@_builtins.property
|
3467
|
+
@pulumi.getter(name="normalizationType")
|
3468
|
+
def normalization_type(self) -> _builtins.str:
|
3469
|
+
"""
|
3470
|
+
A string mapping to the normalization type.
|
3471
|
+
"""
|
3472
|
+
return pulumi.get(self, "normalization_type")
|
3473
|
+
|
3474
|
+
|
3475
|
+
@pulumi.output_type
|
3476
|
+
class GetProjectLockResult(dict):
|
3477
|
+
def __init__(__self__, *,
|
3478
|
+
compartment_id: _builtins.str,
|
3479
|
+
message: _builtins.str,
|
3480
|
+
related_resource_id: _builtins.str,
|
3481
|
+
time_created: _builtins.str,
|
3482
|
+
type: _builtins.str):
|
3483
|
+
"""
|
3484
|
+
:param _builtins.str compartment_id: The lock compartment ID.
|
3485
|
+
:param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
3486
|
+
:param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
3487
|
+
:param _builtins.str time_created: When the project was created, as an RFC3339 datetime string.
|
3488
|
+
:param _builtins.str type: Lock type.
|
3489
|
+
"""
|
3490
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
3491
|
+
pulumi.set(__self__, "message", message)
|
3492
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
3493
|
+
pulumi.set(__self__, "time_created", time_created)
|
3494
|
+
pulumi.set(__self__, "type", type)
|
3495
|
+
|
3496
|
+
@_builtins.property
|
3497
|
+
@pulumi.getter(name="compartmentId")
|
3498
|
+
def compartment_id(self) -> _builtins.str:
|
3499
|
+
"""
|
3500
|
+
The lock compartment ID.
|
3501
|
+
"""
|
3502
|
+
return pulumi.get(self, "compartment_id")
|
3503
|
+
|
3504
|
+
@_builtins.property
|
3505
|
+
@pulumi.getter
|
3506
|
+
def message(self) -> _builtins.str:
|
3507
|
+
"""
|
3508
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
3509
|
+
"""
|
3510
|
+
return pulumi.get(self, "message")
|
3511
|
+
|
3512
|
+
@_builtins.property
|
3513
|
+
@pulumi.getter(name="relatedResourceId")
|
3514
|
+
def related_resource_id(self) -> _builtins.str:
|
3515
|
+
"""
|
3516
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
3517
|
+
"""
|
3518
|
+
return pulumi.get(self, "related_resource_id")
|
3519
|
+
|
3520
|
+
@_builtins.property
|
3521
|
+
@pulumi.getter(name="timeCreated")
|
3522
|
+
def time_created(self) -> _builtins.str:
|
3523
|
+
"""
|
3524
|
+
When the project was created, as an RFC3339 datetime string.
|
3525
|
+
"""
|
3526
|
+
return pulumi.get(self, "time_created")
|
3527
|
+
|
3528
|
+
@_builtins.property
|
3529
|
+
@pulumi.getter
|
3530
|
+
def type(self) -> _builtins.str:
|
3531
|
+
"""
|
3532
|
+
Lock type.
|
3533
|
+
"""
|
3534
|
+
return pulumi.get(self, "type")
|
3535
|
+
|
3536
|
+
|
2735
3537
|
@pulumi.output_type
|
2736
3538
|
class GetProjectsFilterResult(dict):
|
2737
3539
|
def __init__(__self__, *,
|
@@ -2781,6 +3583,7 @@ class GetProjectsProjectCollectionItemResult(dict):
|
|
2781
3583
|
freeform_tags: Mapping[str, _builtins.str],
|
2782
3584
|
id: _builtins.str,
|
2783
3585
|
lifecycle_details: _builtins.str,
|
3586
|
+
locks: Sequence['outputs.GetProjectsProjectCollectionItemLockResult'],
|
2784
3587
|
state: _builtins.str,
|
2785
3588
|
system_tags: Mapping[str, _builtins.str],
|
2786
3589
|
time_created: _builtins.str,
|
@@ -2793,6 +3596,7 @@ class GetProjectsProjectCollectionItemResult(dict):
|
|
2793
3596
|
:param Mapping[str, _builtins.str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{"bar-key": "value"}`
|
2794
3597
|
:param _builtins.str id: The filter to find the project with the given identifier.
|
2795
3598
|
:param _builtins.str lifecycle_details: A message describing the current state in more detail, that can provide actionable information if creation failed.
|
3599
|
+
:param Sequence['GetProjectsProjectCollectionItemLockArgs'] locks: Locks associated with this resource.
|
2796
3600
|
:param _builtins.str state: The filter to match projects with the given lifecycleState.
|
2797
3601
|
:param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. For example: `{"orcl-cloud": {"free-tier-retained": "true"}}`
|
2798
3602
|
:param _builtins.str time_created: When the project was created, as an RFC3339 datetime string.
|
@@ -2805,6 +3609,7 @@ class GetProjectsProjectCollectionItemResult(dict):
|
|
2805
3609
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
2806
3610
|
pulumi.set(__self__, "id", id)
|
2807
3611
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
3612
|
+
pulumi.set(__self__, "locks", locks)
|
2808
3613
|
pulumi.set(__self__, "state", state)
|
2809
3614
|
pulumi.set(__self__, "system_tags", system_tags)
|
2810
3615
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -2866,6 +3671,14 @@ class GetProjectsProjectCollectionItemResult(dict):
|
|
2866
3671
|
"""
|
2867
3672
|
return pulumi.get(self, "lifecycle_details")
|
2868
3673
|
|
3674
|
+
@_builtins.property
|
3675
|
+
@pulumi.getter
|
3676
|
+
def locks(self) -> Sequence['outputs.GetProjectsProjectCollectionItemLockResult']:
|
3677
|
+
"""
|
3678
|
+
Locks associated with this resource.
|
3679
|
+
"""
|
3680
|
+
return pulumi.get(self, "locks")
|
3681
|
+
|
2869
3682
|
@_builtins.property
|
2870
3683
|
@pulumi.getter
|
2871
3684
|
def state(self) -> _builtins.str:
|
@@ -2899,3 +3712,65 @@ class GetProjectsProjectCollectionItemResult(dict):
|
|
2899
3712
|
return pulumi.get(self, "time_updated")
|
2900
3713
|
|
2901
3714
|
|
3715
|
+
@pulumi.output_type
|
3716
|
+
class GetProjectsProjectCollectionItemLockResult(dict):
|
3717
|
+
def __init__(__self__, *,
|
3718
|
+
compartment_id: _builtins.str,
|
3719
|
+
message: _builtins.str,
|
3720
|
+
related_resource_id: _builtins.str,
|
3721
|
+
time_created: _builtins.str,
|
3722
|
+
type: _builtins.str):
|
3723
|
+
"""
|
3724
|
+
:param _builtins.str compartment_id: The ID of the compartment in which to list resources.
|
3725
|
+
:param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
3726
|
+
:param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
3727
|
+
:param _builtins.str time_created: When the project was created, as an RFC3339 datetime string.
|
3728
|
+
:param _builtins.str type: Lock type.
|
3729
|
+
"""
|
3730
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
3731
|
+
pulumi.set(__self__, "message", message)
|
3732
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
3733
|
+
pulumi.set(__self__, "time_created", time_created)
|
3734
|
+
pulumi.set(__self__, "type", type)
|
3735
|
+
|
3736
|
+
@_builtins.property
|
3737
|
+
@pulumi.getter(name="compartmentId")
|
3738
|
+
def compartment_id(self) -> _builtins.str:
|
3739
|
+
"""
|
3740
|
+
The ID of the compartment in which to list resources.
|
3741
|
+
"""
|
3742
|
+
return pulumi.get(self, "compartment_id")
|
3743
|
+
|
3744
|
+
@_builtins.property
|
3745
|
+
@pulumi.getter
|
3746
|
+
def message(self) -> _builtins.str:
|
3747
|
+
"""
|
3748
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
3749
|
+
"""
|
3750
|
+
return pulumi.get(self, "message")
|
3751
|
+
|
3752
|
+
@_builtins.property
|
3753
|
+
@pulumi.getter(name="relatedResourceId")
|
3754
|
+
def related_resource_id(self) -> _builtins.str:
|
3755
|
+
"""
|
3756
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
3757
|
+
"""
|
3758
|
+
return pulumi.get(self, "related_resource_id")
|
3759
|
+
|
3760
|
+
@_builtins.property
|
3761
|
+
@pulumi.getter(name="timeCreated")
|
3762
|
+
def time_created(self) -> _builtins.str:
|
3763
|
+
"""
|
3764
|
+
When the project was created, as an RFC3339 datetime string.
|
3765
|
+
"""
|
3766
|
+
return pulumi.get(self, "time_created")
|
3767
|
+
|
3768
|
+
@_builtins.property
|
3769
|
+
@pulumi.getter
|
3770
|
+
def type(self) -> _builtins.str:
|
3771
|
+
"""
|
3772
|
+
Lock type.
|
3773
|
+
"""
|
3774
|
+
return pulumi.get(self, "type")
|
3775
|
+
|
3776
|
+
|