pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.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 +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/kms/vault_verification.py +62 -2
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -29,8 +29,13 @@ class AgentAgentEndpointArgs:
|
|
29
29
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
30
30
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
31
31
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
32
|
+
guardrail_config: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigArgs']] = None,
|
33
|
+
human_input_config: Optional[pulumi.Input['AgentAgentEndpointHumanInputConfigArgs']] = None,
|
34
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
35
|
+
output_config: Optional[pulumi.Input['AgentAgentEndpointOutputConfigArgs']] = None,
|
32
36
|
session_config: Optional[pulumi.Input['AgentAgentEndpointSessionConfigArgs']] = None,
|
33
37
|
should_enable_citation: Optional[pulumi.Input[builtins.bool]] = None,
|
38
|
+
should_enable_multi_language: Optional[pulumi.Input[builtins.bool]] = None,
|
34
39
|
should_enable_session: Optional[pulumi.Input[builtins.bool]] = None,
|
35
40
|
should_enable_trace: Optional[pulumi.Input[builtins.bool]] = None):
|
36
41
|
"""
|
@@ -42,10 +47,13 @@ class AgentAgentEndpointArgs:
|
|
42
47
|
:param pulumi.Input[builtins.str] description: (Updatable) An optional description of the endpoint.
|
43
48
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
44
49
|
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
45
|
-
:param pulumi.Input['
|
46
|
-
|
47
|
-
|
50
|
+
:param pulumi.Input['AgentAgentEndpointGuardrailConfigArgs'] guardrail_config: (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
|
51
|
+
:param pulumi.Input['AgentAgentEndpointHumanInputConfigArgs'] human_input_config: (Updatable) Human Input Configuration for an AgentEndpoint.
|
52
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
53
|
+
:param pulumi.Input['AgentAgentEndpointOutputConfigArgs'] output_config: (Updatable) Configuration to store results generated by agent.
|
54
|
+
:param pulumi.Input['AgentAgentEndpointSessionConfigArgs'] session_config: (Updatable) Session Configuration on AgentEndpoint.
|
48
55
|
:param pulumi.Input[builtins.bool] should_enable_citation: (Updatable) Whether to show citations in the chat result.
|
56
|
+
:param pulumi.Input[builtins.bool] should_enable_multi_language: (Updatable) Whether to enable multi-language for chat.
|
49
57
|
:param pulumi.Input[builtins.bool] should_enable_session: Whether or not to enable Session-based chat.
|
50
58
|
:param pulumi.Input[builtins.bool] should_enable_trace: (Updatable) Whether to show traces in the chat result.
|
51
59
|
|
@@ -65,10 +73,20 @@ class AgentAgentEndpointArgs:
|
|
65
73
|
pulumi.set(__self__, "display_name", display_name)
|
66
74
|
if freeform_tags is not None:
|
67
75
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
76
|
+
if guardrail_config is not None:
|
77
|
+
pulumi.set(__self__, "guardrail_config", guardrail_config)
|
78
|
+
if human_input_config is not None:
|
79
|
+
pulumi.set(__self__, "human_input_config", human_input_config)
|
80
|
+
if metadata is not None:
|
81
|
+
pulumi.set(__self__, "metadata", metadata)
|
82
|
+
if output_config is not None:
|
83
|
+
pulumi.set(__self__, "output_config", output_config)
|
68
84
|
if session_config is not None:
|
69
85
|
pulumi.set(__self__, "session_config", session_config)
|
70
86
|
if should_enable_citation is not None:
|
71
87
|
pulumi.set(__self__, "should_enable_citation", should_enable_citation)
|
88
|
+
if should_enable_multi_language is not None:
|
89
|
+
pulumi.set(__self__, "should_enable_multi_language", should_enable_multi_language)
|
72
90
|
if should_enable_session is not None:
|
73
91
|
pulumi.set(__self__, "should_enable_session", should_enable_session)
|
74
92
|
if should_enable_trace is not None:
|
@@ -158,13 +176,59 @@ class AgentAgentEndpointArgs:
|
|
158
176
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
159
177
|
pulumi.set(self, "freeform_tags", value)
|
160
178
|
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="guardrailConfig")
|
181
|
+
def guardrail_config(self) -> Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigArgs']]:
|
182
|
+
"""
|
183
|
+
(Updatable) The configuration details about whether to apply the guardrail checks to input and output.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "guardrail_config")
|
186
|
+
|
187
|
+
@guardrail_config.setter
|
188
|
+
def guardrail_config(self, value: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigArgs']]):
|
189
|
+
pulumi.set(self, "guardrail_config", value)
|
190
|
+
|
191
|
+
@property
|
192
|
+
@pulumi.getter(name="humanInputConfig")
|
193
|
+
def human_input_config(self) -> Optional[pulumi.Input['AgentAgentEndpointHumanInputConfigArgs']]:
|
194
|
+
"""
|
195
|
+
(Updatable) Human Input Configuration for an AgentEndpoint.
|
196
|
+
"""
|
197
|
+
return pulumi.get(self, "human_input_config")
|
198
|
+
|
199
|
+
@human_input_config.setter
|
200
|
+
def human_input_config(self, value: Optional[pulumi.Input['AgentAgentEndpointHumanInputConfigArgs']]):
|
201
|
+
pulumi.set(self, "human_input_config", value)
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter
|
205
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
206
|
+
"""
|
207
|
+
(Updatable) Key-value pairs to allow additional configurations.
|
208
|
+
"""
|
209
|
+
return pulumi.get(self, "metadata")
|
210
|
+
|
211
|
+
@metadata.setter
|
212
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
213
|
+
pulumi.set(self, "metadata", value)
|
214
|
+
|
215
|
+
@property
|
216
|
+
@pulumi.getter(name="outputConfig")
|
217
|
+
def output_config(self) -> Optional[pulumi.Input['AgentAgentEndpointOutputConfigArgs']]:
|
218
|
+
"""
|
219
|
+
(Updatable) Configuration to store results generated by agent.
|
220
|
+
"""
|
221
|
+
return pulumi.get(self, "output_config")
|
222
|
+
|
223
|
+
@output_config.setter
|
224
|
+
def output_config(self, value: Optional[pulumi.Input['AgentAgentEndpointOutputConfigArgs']]):
|
225
|
+
pulumi.set(self, "output_config", value)
|
226
|
+
|
161
227
|
@property
|
162
228
|
@pulumi.getter(name="sessionConfig")
|
163
229
|
def session_config(self) -> Optional[pulumi.Input['AgentAgentEndpointSessionConfigArgs']]:
|
164
230
|
"""
|
165
|
-
(Updatable)
|
166
|
-
|
167
|
-
Session Configuration on AgentEndpoint.
|
231
|
+
(Updatable) Session Configuration on AgentEndpoint.
|
168
232
|
"""
|
169
233
|
return pulumi.get(self, "session_config")
|
170
234
|
|
@@ -184,6 +248,18 @@ class AgentAgentEndpointArgs:
|
|
184
248
|
def should_enable_citation(self, value: Optional[pulumi.Input[builtins.bool]]):
|
185
249
|
pulumi.set(self, "should_enable_citation", value)
|
186
250
|
|
251
|
+
@property
|
252
|
+
@pulumi.getter(name="shouldEnableMultiLanguage")
|
253
|
+
def should_enable_multi_language(self) -> Optional[pulumi.Input[builtins.bool]]:
|
254
|
+
"""
|
255
|
+
(Updatable) Whether to enable multi-language for chat.
|
256
|
+
"""
|
257
|
+
return pulumi.get(self, "should_enable_multi_language")
|
258
|
+
|
259
|
+
@should_enable_multi_language.setter
|
260
|
+
def should_enable_multi_language(self, value: Optional[pulumi.Input[builtins.bool]]):
|
261
|
+
pulumi.set(self, "should_enable_multi_language", value)
|
262
|
+
|
187
263
|
@property
|
188
264
|
@pulumi.getter(name="shouldEnableSession")
|
189
265
|
def should_enable_session(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -223,9 +299,14 @@ class _AgentAgentEndpointState:
|
|
223
299
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
224
300
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
225
301
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
302
|
+
guardrail_config: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigArgs']] = None,
|
303
|
+
human_input_config: Optional[pulumi.Input['AgentAgentEndpointHumanInputConfigArgs']] = None,
|
226
304
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
305
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
306
|
+
output_config: Optional[pulumi.Input['AgentAgentEndpointOutputConfigArgs']] = None,
|
227
307
|
session_config: Optional[pulumi.Input['AgentAgentEndpointSessionConfigArgs']] = None,
|
228
308
|
should_enable_citation: Optional[pulumi.Input[builtins.bool]] = None,
|
309
|
+
should_enable_multi_language: Optional[pulumi.Input[builtins.bool]] = None,
|
229
310
|
should_enable_session: Optional[pulumi.Input[builtins.bool]] = None,
|
230
311
|
should_enable_trace: Optional[pulumi.Input[builtins.bool]] = None,
|
231
312
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -241,11 +322,14 @@ class _AgentAgentEndpointState:
|
|
241
322
|
:param pulumi.Input[builtins.str] description: (Updatable) An optional description of the endpoint.
|
242
323
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
243
324
|
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
325
|
+
:param pulumi.Input['AgentAgentEndpointGuardrailConfigArgs'] guardrail_config: (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
|
326
|
+
:param pulumi.Input['AgentAgentEndpointHumanInputConfigArgs'] human_input_config: (Updatable) Human Input Configuration for an AgentEndpoint.
|
244
327
|
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
245
|
-
:param pulumi.Input[
|
246
|
-
|
247
|
-
|
328
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
329
|
+
:param pulumi.Input['AgentAgentEndpointOutputConfigArgs'] output_config: (Updatable) Configuration to store results generated by agent.
|
330
|
+
:param pulumi.Input['AgentAgentEndpointSessionConfigArgs'] session_config: (Updatable) Session Configuration on AgentEndpoint.
|
248
331
|
:param pulumi.Input[builtins.bool] should_enable_citation: (Updatable) Whether to show citations in the chat result.
|
332
|
+
:param pulumi.Input[builtins.bool] should_enable_multi_language: (Updatable) Whether to enable multi-language for chat.
|
249
333
|
:param pulumi.Input[builtins.bool] should_enable_session: Whether or not to enable Session-based chat.
|
250
334
|
:param pulumi.Input[builtins.bool] should_enable_trace: (Updatable) Whether to show traces in the chat result.
|
251
335
|
|
@@ -271,12 +355,22 @@ class _AgentAgentEndpointState:
|
|
271
355
|
pulumi.set(__self__, "display_name", display_name)
|
272
356
|
if freeform_tags is not None:
|
273
357
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
358
|
+
if guardrail_config is not None:
|
359
|
+
pulumi.set(__self__, "guardrail_config", guardrail_config)
|
360
|
+
if human_input_config is not None:
|
361
|
+
pulumi.set(__self__, "human_input_config", human_input_config)
|
274
362
|
if lifecycle_details is not None:
|
275
363
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
364
|
+
if metadata is not None:
|
365
|
+
pulumi.set(__self__, "metadata", metadata)
|
366
|
+
if output_config is not None:
|
367
|
+
pulumi.set(__self__, "output_config", output_config)
|
276
368
|
if session_config is not None:
|
277
369
|
pulumi.set(__self__, "session_config", session_config)
|
278
370
|
if should_enable_citation is not None:
|
279
371
|
pulumi.set(__self__, "should_enable_citation", should_enable_citation)
|
372
|
+
if should_enable_multi_language is not None:
|
373
|
+
pulumi.set(__self__, "should_enable_multi_language", should_enable_multi_language)
|
280
374
|
if should_enable_session is not None:
|
281
375
|
pulumi.set(__self__, "should_enable_session", should_enable_session)
|
282
376
|
if should_enable_trace is not None:
|
@@ -374,6 +468,30 @@ class _AgentAgentEndpointState:
|
|
374
468
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
375
469
|
pulumi.set(self, "freeform_tags", value)
|
376
470
|
|
471
|
+
@property
|
472
|
+
@pulumi.getter(name="guardrailConfig")
|
473
|
+
def guardrail_config(self) -> Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigArgs']]:
|
474
|
+
"""
|
475
|
+
(Updatable) The configuration details about whether to apply the guardrail checks to input and output.
|
476
|
+
"""
|
477
|
+
return pulumi.get(self, "guardrail_config")
|
478
|
+
|
479
|
+
@guardrail_config.setter
|
480
|
+
def guardrail_config(self, value: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigArgs']]):
|
481
|
+
pulumi.set(self, "guardrail_config", value)
|
482
|
+
|
483
|
+
@property
|
484
|
+
@pulumi.getter(name="humanInputConfig")
|
485
|
+
def human_input_config(self) -> Optional[pulumi.Input['AgentAgentEndpointHumanInputConfigArgs']]:
|
486
|
+
"""
|
487
|
+
(Updatable) Human Input Configuration for an AgentEndpoint.
|
488
|
+
"""
|
489
|
+
return pulumi.get(self, "human_input_config")
|
490
|
+
|
491
|
+
@human_input_config.setter
|
492
|
+
def human_input_config(self, value: Optional[pulumi.Input['AgentAgentEndpointHumanInputConfigArgs']]):
|
493
|
+
pulumi.set(self, "human_input_config", value)
|
494
|
+
|
377
495
|
@property
|
378
496
|
@pulumi.getter(name="lifecycleDetails")
|
379
497
|
def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -386,13 +504,35 @@ class _AgentAgentEndpointState:
|
|
386
504
|
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
387
505
|
pulumi.set(self, "lifecycle_details", value)
|
388
506
|
|
507
|
+
@property
|
508
|
+
@pulumi.getter
|
509
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
510
|
+
"""
|
511
|
+
(Updatable) Key-value pairs to allow additional configurations.
|
512
|
+
"""
|
513
|
+
return pulumi.get(self, "metadata")
|
514
|
+
|
515
|
+
@metadata.setter
|
516
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
517
|
+
pulumi.set(self, "metadata", value)
|
518
|
+
|
519
|
+
@property
|
520
|
+
@pulumi.getter(name="outputConfig")
|
521
|
+
def output_config(self) -> Optional[pulumi.Input['AgentAgentEndpointOutputConfigArgs']]:
|
522
|
+
"""
|
523
|
+
(Updatable) Configuration to store results generated by agent.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "output_config")
|
526
|
+
|
527
|
+
@output_config.setter
|
528
|
+
def output_config(self, value: Optional[pulumi.Input['AgentAgentEndpointOutputConfigArgs']]):
|
529
|
+
pulumi.set(self, "output_config", value)
|
530
|
+
|
389
531
|
@property
|
390
532
|
@pulumi.getter(name="sessionConfig")
|
391
533
|
def session_config(self) -> Optional[pulumi.Input['AgentAgentEndpointSessionConfigArgs']]:
|
392
534
|
"""
|
393
|
-
(Updatable)
|
394
|
-
|
395
|
-
Session Configuration on AgentEndpoint.
|
535
|
+
(Updatable) Session Configuration on AgentEndpoint.
|
396
536
|
"""
|
397
537
|
return pulumi.get(self, "session_config")
|
398
538
|
|
@@ -412,6 +552,18 @@ class _AgentAgentEndpointState:
|
|
412
552
|
def should_enable_citation(self, value: Optional[pulumi.Input[builtins.bool]]):
|
413
553
|
pulumi.set(self, "should_enable_citation", value)
|
414
554
|
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="shouldEnableMultiLanguage")
|
557
|
+
def should_enable_multi_language(self) -> Optional[pulumi.Input[builtins.bool]]:
|
558
|
+
"""
|
559
|
+
(Updatable) Whether to enable multi-language for chat.
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "should_enable_multi_language")
|
562
|
+
|
563
|
+
@should_enable_multi_language.setter
|
564
|
+
def should_enable_multi_language(self, value: Optional[pulumi.Input[builtins.bool]]):
|
565
|
+
pulumi.set(self, "should_enable_multi_language", value)
|
566
|
+
|
415
567
|
@property
|
416
568
|
@pulumi.getter(name="shouldEnableSession")
|
417
569
|
def should_enable_session(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -502,16 +654,19 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
502
654
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
503
655
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
504
656
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
657
|
+
guardrail_config: Optional[pulumi.Input[Union['AgentAgentEndpointGuardrailConfigArgs', 'AgentAgentEndpointGuardrailConfigArgsDict']]] = None,
|
658
|
+
human_input_config: Optional[pulumi.Input[Union['AgentAgentEndpointHumanInputConfigArgs', 'AgentAgentEndpointHumanInputConfigArgsDict']]] = None,
|
659
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
660
|
+
output_config: Optional[pulumi.Input[Union['AgentAgentEndpointOutputConfigArgs', 'AgentAgentEndpointOutputConfigArgsDict']]] = None,
|
505
661
|
session_config: Optional[pulumi.Input[Union['AgentAgentEndpointSessionConfigArgs', 'AgentAgentEndpointSessionConfigArgsDict']]] = None,
|
506
662
|
should_enable_citation: Optional[pulumi.Input[builtins.bool]] = None,
|
663
|
+
should_enable_multi_language: Optional[pulumi.Input[builtins.bool]] = None,
|
507
664
|
should_enable_session: Optional[pulumi.Input[builtins.bool]] = None,
|
508
665
|
should_enable_trace: Optional[pulumi.Input[builtins.bool]] = None,
|
509
666
|
__props__=None):
|
510
667
|
"""
|
511
668
|
This resource provides the Agent Endpoint resource in Oracle Cloud Infrastructure Generative Ai Agent service.
|
512
669
|
|
513
|
-
**CreateAgentEndpoint**
|
514
|
-
|
515
670
|
Creates an endpoint.
|
516
671
|
|
517
672
|
## Example Usage
|
@@ -535,10 +690,37 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
535
690
|
freeform_tags={
|
536
691
|
"Department": "Finance",
|
537
692
|
},
|
693
|
+
guardrail_config={
|
694
|
+
"content_moderation_config": {
|
695
|
+
"input_guardrail_mode": agent_endpoint_guardrail_config_content_moderation_config_input_guardrail_mode,
|
696
|
+
"output_guardrail_mode": agent_endpoint_guardrail_config_content_moderation_config_output_guardrail_mode,
|
697
|
+
},
|
698
|
+
"personally_identifiable_information_config": {
|
699
|
+
"input_guardrail_mode": agent_endpoint_guardrail_config_personally_identifiable_information_config_input_guardrail_mode,
|
700
|
+
"output_guardrail_mode": agent_endpoint_guardrail_config_personally_identifiable_information_config_output_guardrail_mode,
|
701
|
+
},
|
702
|
+
"prompt_injection_config": {
|
703
|
+
"input_guardrail_mode": agent_endpoint_guardrail_config_prompt_injection_config_input_guardrail_mode,
|
704
|
+
},
|
705
|
+
},
|
706
|
+
human_input_config={
|
707
|
+
"should_enable_human_input": agent_endpoint_human_input_config_should_enable_human_input,
|
708
|
+
},
|
709
|
+
metadata=agent_endpoint_metadata,
|
710
|
+
output_config={
|
711
|
+
"output_location": {
|
712
|
+
"bucket": agent_endpoint_output_config_output_location_bucket,
|
713
|
+
"namespace": agent_endpoint_output_config_output_location_namespace,
|
714
|
+
"output_location_type": agent_endpoint_output_config_output_location_output_location_type,
|
715
|
+
"prefix": agent_endpoint_output_config_output_location_prefix,
|
716
|
+
},
|
717
|
+
"retention_period_in_minutes": agent_endpoint_output_config_retention_period_in_minutes,
|
718
|
+
},
|
538
719
|
session_config={
|
539
720
|
"idle_timeout_in_seconds": agent_endpoint_session_config_idle_timeout_in_seconds,
|
540
721
|
},
|
541
722
|
should_enable_citation=agent_endpoint_should_enable_citation,
|
723
|
+
should_enable_multi_language=agent_endpoint_should_enable_multi_language,
|
542
724
|
should_enable_session=agent_endpoint_should_enable_session,
|
543
725
|
should_enable_trace=agent_endpoint_should_enable_trace)
|
544
726
|
```
|
@@ -560,10 +742,13 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
560
742
|
:param pulumi.Input[builtins.str] description: (Updatable) An optional description of the endpoint.
|
561
743
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
562
744
|
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
563
|
-
:param pulumi.Input[Union['
|
564
|
-
|
565
|
-
|
745
|
+
:param pulumi.Input[Union['AgentAgentEndpointGuardrailConfigArgs', 'AgentAgentEndpointGuardrailConfigArgsDict']] guardrail_config: (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
|
746
|
+
:param pulumi.Input[Union['AgentAgentEndpointHumanInputConfigArgs', 'AgentAgentEndpointHumanInputConfigArgsDict']] human_input_config: (Updatable) Human Input Configuration for an AgentEndpoint.
|
747
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
748
|
+
:param pulumi.Input[Union['AgentAgentEndpointOutputConfigArgs', 'AgentAgentEndpointOutputConfigArgsDict']] output_config: (Updatable) Configuration to store results generated by agent.
|
749
|
+
:param pulumi.Input[Union['AgentAgentEndpointSessionConfigArgs', 'AgentAgentEndpointSessionConfigArgsDict']] session_config: (Updatable) Session Configuration on AgentEndpoint.
|
566
750
|
:param pulumi.Input[builtins.bool] should_enable_citation: (Updatable) Whether to show citations in the chat result.
|
751
|
+
:param pulumi.Input[builtins.bool] should_enable_multi_language: (Updatable) Whether to enable multi-language for chat.
|
567
752
|
:param pulumi.Input[builtins.bool] should_enable_session: Whether or not to enable Session-based chat.
|
568
753
|
:param pulumi.Input[builtins.bool] should_enable_trace: (Updatable) Whether to show traces in the chat result.
|
569
754
|
|
@@ -580,8 +765,6 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
580
765
|
"""
|
581
766
|
This resource provides the Agent Endpoint resource in Oracle Cloud Infrastructure Generative Ai Agent service.
|
582
767
|
|
583
|
-
**CreateAgentEndpoint**
|
584
|
-
|
585
768
|
Creates an endpoint.
|
586
769
|
|
587
770
|
## Example Usage
|
@@ -605,10 +788,37 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
605
788
|
freeform_tags={
|
606
789
|
"Department": "Finance",
|
607
790
|
},
|
791
|
+
guardrail_config={
|
792
|
+
"content_moderation_config": {
|
793
|
+
"input_guardrail_mode": agent_endpoint_guardrail_config_content_moderation_config_input_guardrail_mode,
|
794
|
+
"output_guardrail_mode": agent_endpoint_guardrail_config_content_moderation_config_output_guardrail_mode,
|
795
|
+
},
|
796
|
+
"personally_identifiable_information_config": {
|
797
|
+
"input_guardrail_mode": agent_endpoint_guardrail_config_personally_identifiable_information_config_input_guardrail_mode,
|
798
|
+
"output_guardrail_mode": agent_endpoint_guardrail_config_personally_identifiable_information_config_output_guardrail_mode,
|
799
|
+
},
|
800
|
+
"prompt_injection_config": {
|
801
|
+
"input_guardrail_mode": agent_endpoint_guardrail_config_prompt_injection_config_input_guardrail_mode,
|
802
|
+
},
|
803
|
+
},
|
804
|
+
human_input_config={
|
805
|
+
"should_enable_human_input": agent_endpoint_human_input_config_should_enable_human_input,
|
806
|
+
},
|
807
|
+
metadata=agent_endpoint_metadata,
|
808
|
+
output_config={
|
809
|
+
"output_location": {
|
810
|
+
"bucket": agent_endpoint_output_config_output_location_bucket,
|
811
|
+
"namespace": agent_endpoint_output_config_output_location_namespace,
|
812
|
+
"output_location_type": agent_endpoint_output_config_output_location_output_location_type,
|
813
|
+
"prefix": agent_endpoint_output_config_output_location_prefix,
|
814
|
+
},
|
815
|
+
"retention_period_in_minutes": agent_endpoint_output_config_retention_period_in_minutes,
|
816
|
+
},
|
608
817
|
session_config={
|
609
818
|
"idle_timeout_in_seconds": agent_endpoint_session_config_idle_timeout_in_seconds,
|
610
819
|
},
|
611
820
|
should_enable_citation=agent_endpoint_should_enable_citation,
|
821
|
+
should_enable_multi_language=agent_endpoint_should_enable_multi_language,
|
612
822
|
should_enable_session=agent_endpoint_should_enable_session,
|
613
823
|
should_enable_trace=agent_endpoint_should_enable_trace)
|
614
824
|
```
|
@@ -643,8 +853,13 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
643
853
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
644
854
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
645
855
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
856
|
+
guardrail_config: Optional[pulumi.Input[Union['AgentAgentEndpointGuardrailConfigArgs', 'AgentAgentEndpointGuardrailConfigArgsDict']]] = None,
|
857
|
+
human_input_config: Optional[pulumi.Input[Union['AgentAgentEndpointHumanInputConfigArgs', 'AgentAgentEndpointHumanInputConfigArgsDict']]] = None,
|
858
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
859
|
+
output_config: Optional[pulumi.Input[Union['AgentAgentEndpointOutputConfigArgs', 'AgentAgentEndpointOutputConfigArgsDict']]] = None,
|
646
860
|
session_config: Optional[pulumi.Input[Union['AgentAgentEndpointSessionConfigArgs', 'AgentAgentEndpointSessionConfigArgsDict']]] = None,
|
647
861
|
should_enable_citation: Optional[pulumi.Input[builtins.bool]] = None,
|
862
|
+
should_enable_multi_language: Optional[pulumi.Input[builtins.bool]] = None,
|
648
863
|
should_enable_session: Optional[pulumi.Input[builtins.bool]] = None,
|
649
864
|
should_enable_trace: Optional[pulumi.Input[builtins.bool]] = None,
|
650
865
|
__props__=None):
|
@@ -667,8 +882,13 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
667
882
|
__props__.__dict__["description"] = description
|
668
883
|
__props__.__dict__["display_name"] = display_name
|
669
884
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
885
|
+
__props__.__dict__["guardrail_config"] = guardrail_config
|
886
|
+
__props__.__dict__["human_input_config"] = human_input_config
|
887
|
+
__props__.__dict__["metadata"] = metadata
|
888
|
+
__props__.__dict__["output_config"] = output_config
|
670
889
|
__props__.__dict__["session_config"] = session_config
|
671
890
|
__props__.__dict__["should_enable_citation"] = should_enable_citation
|
891
|
+
__props__.__dict__["should_enable_multi_language"] = should_enable_multi_language
|
672
892
|
__props__.__dict__["should_enable_session"] = should_enable_session
|
673
893
|
__props__.__dict__["should_enable_trace"] = should_enable_trace
|
674
894
|
__props__.__dict__["lifecycle_details"] = None
|
@@ -693,9 +913,14 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
693
913
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
694
914
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
695
915
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
916
|
+
guardrail_config: Optional[pulumi.Input[Union['AgentAgentEndpointGuardrailConfigArgs', 'AgentAgentEndpointGuardrailConfigArgsDict']]] = None,
|
917
|
+
human_input_config: Optional[pulumi.Input[Union['AgentAgentEndpointHumanInputConfigArgs', 'AgentAgentEndpointHumanInputConfigArgsDict']]] = None,
|
696
918
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
919
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
920
|
+
output_config: Optional[pulumi.Input[Union['AgentAgentEndpointOutputConfigArgs', 'AgentAgentEndpointOutputConfigArgsDict']]] = None,
|
697
921
|
session_config: Optional[pulumi.Input[Union['AgentAgentEndpointSessionConfigArgs', 'AgentAgentEndpointSessionConfigArgsDict']]] = None,
|
698
922
|
should_enable_citation: Optional[pulumi.Input[builtins.bool]] = None,
|
923
|
+
should_enable_multi_language: Optional[pulumi.Input[builtins.bool]] = None,
|
699
924
|
should_enable_session: Optional[pulumi.Input[builtins.bool]] = None,
|
700
925
|
should_enable_trace: Optional[pulumi.Input[builtins.bool]] = None,
|
701
926
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -716,11 +941,14 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
716
941
|
:param pulumi.Input[builtins.str] description: (Updatable) An optional description of the endpoint.
|
717
942
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
718
943
|
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
944
|
+
:param pulumi.Input[Union['AgentAgentEndpointGuardrailConfigArgs', 'AgentAgentEndpointGuardrailConfigArgsDict']] guardrail_config: (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
|
945
|
+
:param pulumi.Input[Union['AgentAgentEndpointHumanInputConfigArgs', 'AgentAgentEndpointHumanInputConfigArgsDict']] human_input_config: (Updatable) Human Input Configuration for an AgentEndpoint.
|
719
946
|
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
720
|
-
:param pulumi.Input[
|
721
|
-
|
722
|
-
|
947
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
948
|
+
:param pulumi.Input[Union['AgentAgentEndpointOutputConfigArgs', 'AgentAgentEndpointOutputConfigArgsDict']] output_config: (Updatable) Configuration to store results generated by agent.
|
949
|
+
:param pulumi.Input[Union['AgentAgentEndpointSessionConfigArgs', 'AgentAgentEndpointSessionConfigArgsDict']] session_config: (Updatable) Session Configuration on AgentEndpoint.
|
723
950
|
:param pulumi.Input[builtins.bool] should_enable_citation: (Updatable) Whether to show citations in the chat result.
|
951
|
+
:param pulumi.Input[builtins.bool] should_enable_multi_language: (Updatable) Whether to enable multi-language for chat.
|
724
952
|
:param pulumi.Input[builtins.bool] should_enable_session: Whether or not to enable Session-based chat.
|
725
953
|
:param pulumi.Input[builtins.bool] should_enable_trace: (Updatable) Whether to show traces in the chat result.
|
726
954
|
|
@@ -743,9 +971,14 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
743
971
|
__props__.__dict__["description"] = description
|
744
972
|
__props__.__dict__["display_name"] = display_name
|
745
973
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
974
|
+
__props__.__dict__["guardrail_config"] = guardrail_config
|
975
|
+
__props__.__dict__["human_input_config"] = human_input_config
|
746
976
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
977
|
+
__props__.__dict__["metadata"] = metadata
|
978
|
+
__props__.__dict__["output_config"] = output_config
|
747
979
|
__props__.__dict__["session_config"] = session_config
|
748
980
|
__props__.__dict__["should_enable_citation"] = should_enable_citation
|
981
|
+
__props__.__dict__["should_enable_multi_language"] = should_enable_multi_language
|
749
982
|
__props__.__dict__["should_enable_session"] = should_enable_session
|
750
983
|
__props__.__dict__["should_enable_trace"] = should_enable_trace
|
751
984
|
__props__.__dict__["state"] = state
|
@@ -810,6 +1043,22 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
810
1043
|
"""
|
811
1044
|
return pulumi.get(self, "freeform_tags")
|
812
1045
|
|
1046
|
+
@property
|
1047
|
+
@pulumi.getter(name="guardrailConfig")
|
1048
|
+
def guardrail_config(self) -> pulumi.Output['outputs.AgentAgentEndpointGuardrailConfig']:
|
1049
|
+
"""
|
1050
|
+
(Updatable) The configuration details about whether to apply the guardrail checks to input and output.
|
1051
|
+
"""
|
1052
|
+
return pulumi.get(self, "guardrail_config")
|
1053
|
+
|
1054
|
+
@property
|
1055
|
+
@pulumi.getter(name="humanInputConfig")
|
1056
|
+
def human_input_config(self) -> pulumi.Output['outputs.AgentAgentEndpointHumanInputConfig']:
|
1057
|
+
"""
|
1058
|
+
(Updatable) Human Input Configuration for an AgentEndpoint.
|
1059
|
+
"""
|
1060
|
+
return pulumi.get(self, "human_input_config")
|
1061
|
+
|
813
1062
|
@property
|
814
1063
|
@pulumi.getter(name="lifecycleDetails")
|
815
1064
|
def lifecycle_details(self) -> pulumi.Output[builtins.str]:
|
@@ -818,13 +1067,27 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
818
1067
|
"""
|
819
1068
|
return pulumi.get(self, "lifecycle_details")
|
820
1069
|
|
1070
|
+
@property
|
1071
|
+
@pulumi.getter
|
1072
|
+
def metadata(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1073
|
+
"""
|
1074
|
+
(Updatable) Key-value pairs to allow additional configurations.
|
1075
|
+
"""
|
1076
|
+
return pulumi.get(self, "metadata")
|
1077
|
+
|
1078
|
+
@property
|
1079
|
+
@pulumi.getter(name="outputConfig")
|
1080
|
+
def output_config(self) -> pulumi.Output['outputs.AgentAgentEndpointOutputConfig']:
|
1081
|
+
"""
|
1082
|
+
(Updatable) Configuration to store results generated by agent.
|
1083
|
+
"""
|
1084
|
+
return pulumi.get(self, "output_config")
|
1085
|
+
|
821
1086
|
@property
|
822
1087
|
@pulumi.getter(name="sessionConfig")
|
823
1088
|
def session_config(self) -> pulumi.Output['outputs.AgentAgentEndpointSessionConfig']:
|
824
1089
|
"""
|
825
|
-
(Updatable)
|
826
|
-
|
827
|
-
Session Configuration on AgentEndpoint.
|
1090
|
+
(Updatable) Session Configuration on AgentEndpoint.
|
828
1091
|
"""
|
829
1092
|
return pulumi.get(self, "session_config")
|
830
1093
|
|
@@ -836,6 +1099,14 @@ class AgentAgentEndpoint(pulumi.CustomResource):
|
|
836
1099
|
"""
|
837
1100
|
return pulumi.get(self, "should_enable_citation")
|
838
1101
|
|
1102
|
+
@property
|
1103
|
+
@pulumi.getter(name="shouldEnableMultiLanguage")
|
1104
|
+
def should_enable_multi_language(self) -> pulumi.Output[builtins.bool]:
|
1105
|
+
"""
|
1106
|
+
(Updatable) Whether to enable multi-language for chat.
|
1107
|
+
"""
|
1108
|
+
return pulumi.get(self, "should_enable_multi_language")
|
1109
|
+
|
839
1110
|
@property
|
840
1111
|
@pulumi.getter(name="shouldEnableSession")
|
841
1112
|
def should_enable_session(self) -> pulumi.Output[builtins.bool]:
|