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
@@ -18,8 +18,26 @@ from .. import _utilities
|
|
18
18
|
__all__ = [
|
19
19
|
'AgentAgentEndpointContentModerationConfigArgs',
|
20
20
|
'AgentAgentEndpointContentModerationConfigArgsDict',
|
21
|
+
'AgentAgentEndpointGuardrailConfigArgs',
|
22
|
+
'AgentAgentEndpointGuardrailConfigArgsDict',
|
23
|
+
'AgentAgentEndpointGuardrailConfigContentModerationConfigArgs',
|
24
|
+
'AgentAgentEndpointGuardrailConfigContentModerationConfigArgsDict',
|
25
|
+
'AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs',
|
26
|
+
'AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgsDict',
|
27
|
+
'AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs',
|
28
|
+
'AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgsDict',
|
29
|
+
'AgentAgentEndpointHumanInputConfigArgs',
|
30
|
+
'AgentAgentEndpointHumanInputConfigArgsDict',
|
31
|
+
'AgentAgentEndpointOutputConfigArgs',
|
32
|
+
'AgentAgentEndpointOutputConfigArgsDict',
|
33
|
+
'AgentAgentEndpointOutputConfigOutputLocationArgs',
|
34
|
+
'AgentAgentEndpointOutputConfigOutputLocationArgsDict',
|
21
35
|
'AgentAgentEndpointSessionConfigArgs',
|
22
36
|
'AgentAgentEndpointSessionConfigArgsDict',
|
37
|
+
'AgentAgentLlmConfigArgs',
|
38
|
+
'AgentAgentLlmConfigArgsDict',
|
39
|
+
'AgentAgentLlmConfigRoutingLlmCustomizationArgs',
|
40
|
+
'AgentAgentLlmConfigRoutingLlmCustomizationArgsDict',
|
23
41
|
'AgentDataIngestionJobDataIngestionJobStatisticArgs',
|
24
42
|
'AgentDataIngestionJobDataIngestionJobStatisticArgsDict',
|
25
43
|
'AgentDataSourceDataSourceConfigArgs',
|
@@ -38,6 +56,22 @@ __all__ = [
|
|
38
56
|
'AgentKnowledgeBaseIndexConfigIndexSchemaArgsDict',
|
39
57
|
'AgentKnowledgeBaseIndexConfigSecretDetailArgs',
|
40
58
|
'AgentKnowledgeBaseIndexConfigSecretDetailArgsDict',
|
59
|
+
'AgentToolToolConfigArgs',
|
60
|
+
'AgentToolToolConfigArgsDict',
|
61
|
+
'AgentToolToolConfigDatabaseConnectionArgs',
|
62
|
+
'AgentToolToolConfigDatabaseConnectionArgsDict',
|
63
|
+
'AgentToolToolConfigDatabaseSchemaArgs',
|
64
|
+
'AgentToolToolConfigDatabaseSchemaArgsDict',
|
65
|
+
'AgentToolToolConfigFunctionArgs',
|
66
|
+
'AgentToolToolConfigFunctionArgsDict',
|
67
|
+
'AgentToolToolConfigGenerationLlmCustomizationArgs',
|
68
|
+
'AgentToolToolConfigGenerationLlmCustomizationArgsDict',
|
69
|
+
'AgentToolToolConfigIclExamplesArgs',
|
70
|
+
'AgentToolToolConfigIclExamplesArgsDict',
|
71
|
+
'AgentToolToolConfigKnowledgeBaseConfigArgs',
|
72
|
+
'AgentToolToolConfigKnowledgeBaseConfigArgsDict',
|
73
|
+
'AgentToolToolConfigTableAndColumnDescriptionArgs',
|
74
|
+
'AgentToolToolConfigTableAndColumnDescriptionArgsDict',
|
41
75
|
'DedicatedAiClusterCapacityArgs',
|
42
76
|
'DedicatedAiClusterCapacityArgsDict',
|
43
77
|
'EndpointContentModerationConfigArgs',
|
@@ -60,6 +94,8 @@ __all__ = [
|
|
60
94
|
'GetAgentDataSourcesFilterArgsDict',
|
61
95
|
'GetAgentKnowledgeBasesFilterArgs',
|
62
96
|
'GetAgentKnowledgeBasesFilterArgsDict',
|
97
|
+
'GetAgentToolsFilterArgs',
|
98
|
+
'GetAgentToolsFilterArgsDict',
|
63
99
|
'GetDedicatedAiClustersFilterArgs',
|
64
100
|
'GetDedicatedAiClustersFilterArgsDict',
|
65
101
|
'GetEndpointsFilterArgs',
|
@@ -122,6 +158,385 @@ class AgentAgentEndpointContentModerationConfigArgs:
|
|
122
158
|
pulumi.set(self, "should_enable_on_output", value)
|
123
159
|
|
124
160
|
|
161
|
+
if not MYPY:
|
162
|
+
class AgentAgentEndpointGuardrailConfigArgsDict(TypedDict):
|
163
|
+
content_moderation_config: NotRequired[pulumi.Input['AgentAgentEndpointGuardrailConfigContentModerationConfigArgsDict']]
|
164
|
+
"""
|
165
|
+
(Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
|
166
|
+
"""
|
167
|
+
personally_identifiable_information_config: NotRequired[pulumi.Input['AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgsDict']]
|
168
|
+
"""
|
169
|
+
(Updatable) The configuration details for Personally Identifiable Information.
|
170
|
+
"""
|
171
|
+
prompt_injection_config: NotRequired[pulumi.Input['AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgsDict']]
|
172
|
+
"""
|
173
|
+
(Updatable) The configuration details for Prompt Injection.
|
174
|
+
"""
|
175
|
+
elif False:
|
176
|
+
AgentAgentEndpointGuardrailConfigArgsDict: TypeAlias = Mapping[str, Any]
|
177
|
+
|
178
|
+
@pulumi.input_type
|
179
|
+
class AgentAgentEndpointGuardrailConfigArgs:
|
180
|
+
def __init__(__self__, *,
|
181
|
+
content_moderation_config: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigContentModerationConfigArgs']] = None,
|
182
|
+
personally_identifiable_information_config: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs']] = None,
|
183
|
+
prompt_injection_config: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs']] = None):
|
184
|
+
"""
|
185
|
+
:param pulumi.Input['AgentAgentEndpointGuardrailConfigContentModerationConfigArgs'] content_moderation_config: (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
|
186
|
+
:param pulumi.Input['AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs'] personally_identifiable_information_config: (Updatable) The configuration details for Personally Identifiable Information.
|
187
|
+
:param pulumi.Input['AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs'] prompt_injection_config: (Updatable) The configuration details for Prompt Injection.
|
188
|
+
"""
|
189
|
+
if content_moderation_config is not None:
|
190
|
+
pulumi.set(__self__, "content_moderation_config", content_moderation_config)
|
191
|
+
if personally_identifiable_information_config is not None:
|
192
|
+
pulumi.set(__self__, "personally_identifiable_information_config", personally_identifiable_information_config)
|
193
|
+
if prompt_injection_config is not None:
|
194
|
+
pulumi.set(__self__, "prompt_injection_config", prompt_injection_config)
|
195
|
+
|
196
|
+
@property
|
197
|
+
@pulumi.getter(name="contentModerationConfig")
|
198
|
+
def content_moderation_config(self) -> Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigContentModerationConfigArgs']]:
|
199
|
+
"""
|
200
|
+
(Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
|
201
|
+
"""
|
202
|
+
return pulumi.get(self, "content_moderation_config")
|
203
|
+
|
204
|
+
@content_moderation_config.setter
|
205
|
+
def content_moderation_config(self, value: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigContentModerationConfigArgs']]):
|
206
|
+
pulumi.set(self, "content_moderation_config", value)
|
207
|
+
|
208
|
+
@property
|
209
|
+
@pulumi.getter(name="personallyIdentifiableInformationConfig")
|
210
|
+
def personally_identifiable_information_config(self) -> Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs']]:
|
211
|
+
"""
|
212
|
+
(Updatable) The configuration details for Personally Identifiable Information.
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "personally_identifiable_information_config")
|
215
|
+
|
216
|
+
@personally_identifiable_information_config.setter
|
217
|
+
def personally_identifiable_information_config(self, value: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs']]):
|
218
|
+
pulumi.set(self, "personally_identifiable_information_config", value)
|
219
|
+
|
220
|
+
@property
|
221
|
+
@pulumi.getter(name="promptInjectionConfig")
|
222
|
+
def prompt_injection_config(self) -> Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs']]:
|
223
|
+
"""
|
224
|
+
(Updatable) The configuration details for Prompt Injection.
|
225
|
+
"""
|
226
|
+
return pulumi.get(self, "prompt_injection_config")
|
227
|
+
|
228
|
+
@prompt_injection_config.setter
|
229
|
+
def prompt_injection_config(self, value: Optional[pulumi.Input['AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs']]):
|
230
|
+
pulumi.set(self, "prompt_injection_config", value)
|
231
|
+
|
232
|
+
|
233
|
+
if not MYPY:
|
234
|
+
class AgentAgentEndpointGuardrailConfigContentModerationConfigArgsDict(TypedDict):
|
235
|
+
input_guardrail_mode: NotRequired[pulumi.Input[builtins.str]]
|
236
|
+
"""
|
237
|
+
(Updatable) An input guardrail mode for content moderation.
|
238
|
+
"""
|
239
|
+
output_guardrail_mode: NotRequired[pulumi.Input[builtins.str]]
|
240
|
+
"""
|
241
|
+
(Updatable) An output guardrail mode for content moderation.
|
242
|
+
"""
|
243
|
+
elif False:
|
244
|
+
AgentAgentEndpointGuardrailConfigContentModerationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
245
|
+
|
246
|
+
@pulumi.input_type
|
247
|
+
class AgentAgentEndpointGuardrailConfigContentModerationConfigArgs:
|
248
|
+
def __init__(__self__, *,
|
249
|
+
input_guardrail_mode: Optional[pulumi.Input[builtins.str]] = None,
|
250
|
+
output_guardrail_mode: Optional[pulumi.Input[builtins.str]] = None):
|
251
|
+
"""
|
252
|
+
:param pulumi.Input[builtins.str] input_guardrail_mode: (Updatable) An input guardrail mode for content moderation.
|
253
|
+
:param pulumi.Input[builtins.str] output_guardrail_mode: (Updatable) An output guardrail mode for content moderation.
|
254
|
+
"""
|
255
|
+
if input_guardrail_mode is not None:
|
256
|
+
pulumi.set(__self__, "input_guardrail_mode", input_guardrail_mode)
|
257
|
+
if output_guardrail_mode is not None:
|
258
|
+
pulumi.set(__self__, "output_guardrail_mode", output_guardrail_mode)
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="inputGuardrailMode")
|
262
|
+
def input_guardrail_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
263
|
+
"""
|
264
|
+
(Updatable) An input guardrail mode for content moderation.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "input_guardrail_mode")
|
267
|
+
|
268
|
+
@input_guardrail_mode.setter
|
269
|
+
def input_guardrail_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
270
|
+
pulumi.set(self, "input_guardrail_mode", value)
|
271
|
+
|
272
|
+
@property
|
273
|
+
@pulumi.getter(name="outputGuardrailMode")
|
274
|
+
def output_guardrail_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
275
|
+
"""
|
276
|
+
(Updatable) An output guardrail mode for content moderation.
|
277
|
+
"""
|
278
|
+
return pulumi.get(self, "output_guardrail_mode")
|
279
|
+
|
280
|
+
@output_guardrail_mode.setter
|
281
|
+
def output_guardrail_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
282
|
+
pulumi.set(self, "output_guardrail_mode", value)
|
283
|
+
|
284
|
+
|
285
|
+
if not MYPY:
|
286
|
+
class AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgsDict(TypedDict):
|
287
|
+
input_guardrail_mode: NotRequired[pulumi.Input[builtins.str]]
|
288
|
+
"""
|
289
|
+
(Updatable) An input guardrail mode for personally identifiable information.
|
290
|
+
"""
|
291
|
+
output_guardrail_mode: NotRequired[pulumi.Input[builtins.str]]
|
292
|
+
"""
|
293
|
+
(Updatable) An output guardrail mode for personally identifiable information.
|
294
|
+
"""
|
295
|
+
elif False:
|
296
|
+
AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
297
|
+
|
298
|
+
@pulumi.input_type
|
299
|
+
class AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs:
|
300
|
+
def __init__(__self__, *,
|
301
|
+
input_guardrail_mode: Optional[pulumi.Input[builtins.str]] = None,
|
302
|
+
output_guardrail_mode: Optional[pulumi.Input[builtins.str]] = None):
|
303
|
+
"""
|
304
|
+
:param pulumi.Input[builtins.str] input_guardrail_mode: (Updatable) An input guardrail mode for personally identifiable information.
|
305
|
+
:param pulumi.Input[builtins.str] output_guardrail_mode: (Updatable) An output guardrail mode for personally identifiable information.
|
306
|
+
"""
|
307
|
+
if input_guardrail_mode is not None:
|
308
|
+
pulumi.set(__self__, "input_guardrail_mode", input_guardrail_mode)
|
309
|
+
if output_guardrail_mode is not None:
|
310
|
+
pulumi.set(__self__, "output_guardrail_mode", output_guardrail_mode)
|
311
|
+
|
312
|
+
@property
|
313
|
+
@pulumi.getter(name="inputGuardrailMode")
|
314
|
+
def input_guardrail_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
315
|
+
"""
|
316
|
+
(Updatable) An input guardrail mode for personally identifiable information.
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "input_guardrail_mode")
|
319
|
+
|
320
|
+
@input_guardrail_mode.setter
|
321
|
+
def input_guardrail_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
322
|
+
pulumi.set(self, "input_guardrail_mode", value)
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="outputGuardrailMode")
|
326
|
+
def output_guardrail_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
327
|
+
"""
|
328
|
+
(Updatable) An output guardrail mode for personally identifiable information.
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "output_guardrail_mode")
|
331
|
+
|
332
|
+
@output_guardrail_mode.setter
|
333
|
+
def output_guardrail_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
334
|
+
pulumi.set(self, "output_guardrail_mode", value)
|
335
|
+
|
336
|
+
|
337
|
+
if not MYPY:
|
338
|
+
class AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgsDict(TypedDict):
|
339
|
+
input_guardrail_mode: NotRequired[pulumi.Input[builtins.str]]
|
340
|
+
"""
|
341
|
+
(Updatable) An input guardrail mode for prompt injection.
|
342
|
+
"""
|
343
|
+
elif False:
|
344
|
+
AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgsDict: TypeAlias = Mapping[str, Any]
|
345
|
+
|
346
|
+
@pulumi.input_type
|
347
|
+
class AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs:
|
348
|
+
def __init__(__self__, *,
|
349
|
+
input_guardrail_mode: Optional[pulumi.Input[builtins.str]] = None):
|
350
|
+
"""
|
351
|
+
:param pulumi.Input[builtins.str] input_guardrail_mode: (Updatable) An input guardrail mode for prompt injection.
|
352
|
+
"""
|
353
|
+
if input_guardrail_mode is not None:
|
354
|
+
pulumi.set(__self__, "input_guardrail_mode", input_guardrail_mode)
|
355
|
+
|
356
|
+
@property
|
357
|
+
@pulumi.getter(name="inputGuardrailMode")
|
358
|
+
def input_guardrail_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
359
|
+
"""
|
360
|
+
(Updatable) An input guardrail mode for prompt injection.
|
361
|
+
"""
|
362
|
+
return pulumi.get(self, "input_guardrail_mode")
|
363
|
+
|
364
|
+
@input_guardrail_mode.setter
|
365
|
+
def input_guardrail_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
366
|
+
pulumi.set(self, "input_guardrail_mode", value)
|
367
|
+
|
368
|
+
|
369
|
+
if not MYPY:
|
370
|
+
class AgentAgentEndpointHumanInputConfigArgsDict(TypedDict):
|
371
|
+
should_enable_human_input: pulumi.Input[builtins.bool]
|
372
|
+
"""
|
373
|
+
(Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
|
374
|
+
"""
|
375
|
+
elif False:
|
376
|
+
AgentAgentEndpointHumanInputConfigArgsDict: TypeAlias = Mapping[str, Any]
|
377
|
+
|
378
|
+
@pulumi.input_type
|
379
|
+
class AgentAgentEndpointHumanInputConfigArgs:
|
380
|
+
def __init__(__self__, *,
|
381
|
+
should_enable_human_input: pulumi.Input[builtins.bool]):
|
382
|
+
"""
|
383
|
+
:param pulumi.Input[builtins.bool] should_enable_human_input: (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
|
384
|
+
"""
|
385
|
+
pulumi.set(__self__, "should_enable_human_input", should_enable_human_input)
|
386
|
+
|
387
|
+
@property
|
388
|
+
@pulumi.getter(name="shouldEnableHumanInput")
|
389
|
+
def should_enable_human_input(self) -> pulumi.Input[builtins.bool]:
|
390
|
+
"""
|
391
|
+
(Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
|
392
|
+
"""
|
393
|
+
return pulumi.get(self, "should_enable_human_input")
|
394
|
+
|
395
|
+
@should_enable_human_input.setter
|
396
|
+
def should_enable_human_input(self, value: pulumi.Input[builtins.bool]):
|
397
|
+
pulumi.set(self, "should_enable_human_input", value)
|
398
|
+
|
399
|
+
|
400
|
+
if not MYPY:
|
401
|
+
class AgentAgentEndpointOutputConfigArgsDict(TypedDict):
|
402
|
+
output_location: pulumi.Input['AgentAgentEndpointOutputConfigOutputLocationArgsDict']
|
403
|
+
"""
|
404
|
+
(Updatable) Location of the output.
|
405
|
+
"""
|
406
|
+
retention_period_in_minutes: NotRequired[pulumi.Input[builtins.int]]
|
407
|
+
"""
|
408
|
+
(Updatable) Retention duration of the output data.
|
409
|
+
"""
|
410
|
+
elif False:
|
411
|
+
AgentAgentEndpointOutputConfigArgsDict: TypeAlias = Mapping[str, Any]
|
412
|
+
|
413
|
+
@pulumi.input_type
|
414
|
+
class AgentAgentEndpointOutputConfigArgs:
|
415
|
+
def __init__(__self__, *,
|
416
|
+
output_location: pulumi.Input['AgentAgentEndpointOutputConfigOutputLocationArgs'],
|
417
|
+
retention_period_in_minutes: Optional[pulumi.Input[builtins.int]] = None):
|
418
|
+
"""
|
419
|
+
:param pulumi.Input['AgentAgentEndpointOutputConfigOutputLocationArgs'] output_location: (Updatable) Location of the output.
|
420
|
+
:param pulumi.Input[builtins.int] retention_period_in_minutes: (Updatable) Retention duration of the output data.
|
421
|
+
"""
|
422
|
+
pulumi.set(__self__, "output_location", output_location)
|
423
|
+
if retention_period_in_minutes is not None:
|
424
|
+
pulumi.set(__self__, "retention_period_in_minutes", retention_period_in_minutes)
|
425
|
+
|
426
|
+
@property
|
427
|
+
@pulumi.getter(name="outputLocation")
|
428
|
+
def output_location(self) -> pulumi.Input['AgentAgentEndpointOutputConfigOutputLocationArgs']:
|
429
|
+
"""
|
430
|
+
(Updatable) Location of the output.
|
431
|
+
"""
|
432
|
+
return pulumi.get(self, "output_location")
|
433
|
+
|
434
|
+
@output_location.setter
|
435
|
+
def output_location(self, value: pulumi.Input['AgentAgentEndpointOutputConfigOutputLocationArgs']):
|
436
|
+
pulumi.set(self, "output_location", value)
|
437
|
+
|
438
|
+
@property
|
439
|
+
@pulumi.getter(name="retentionPeriodInMinutes")
|
440
|
+
def retention_period_in_minutes(self) -> Optional[pulumi.Input[builtins.int]]:
|
441
|
+
"""
|
442
|
+
(Updatable) Retention duration of the output data.
|
443
|
+
"""
|
444
|
+
return pulumi.get(self, "retention_period_in_minutes")
|
445
|
+
|
446
|
+
@retention_period_in_minutes.setter
|
447
|
+
def retention_period_in_minutes(self, value: Optional[pulumi.Input[builtins.int]]):
|
448
|
+
pulumi.set(self, "retention_period_in_minutes", value)
|
449
|
+
|
450
|
+
|
451
|
+
if not MYPY:
|
452
|
+
class AgentAgentEndpointOutputConfigOutputLocationArgsDict(TypedDict):
|
453
|
+
bucket: pulumi.Input[builtins.str]
|
454
|
+
"""
|
455
|
+
(Updatable) The name of the bucket.
|
456
|
+
"""
|
457
|
+
namespace: pulumi.Input[builtins.str]
|
458
|
+
"""
|
459
|
+
(Updatable) The namespace of the object storage.
|
460
|
+
"""
|
461
|
+
output_location_type: pulumi.Input[builtins.str]
|
462
|
+
"""
|
463
|
+
(Updatable) Type of OutputLocation.
|
464
|
+
"""
|
465
|
+
prefix: NotRequired[pulumi.Input[builtins.str]]
|
466
|
+
"""
|
467
|
+
(Updatable) The prefix of the object storage.
|
468
|
+
"""
|
469
|
+
elif False:
|
470
|
+
AgentAgentEndpointOutputConfigOutputLocationArgsDict: TypeAlias = Mapping[str, Any]
|
471
|
+
|
472
|
+
@pulumi.input_type
|
473
|
+
class AgentAgentEndpointOutputConfigOutputLocationArgs:
|
474
|
+
def __init__(__self__, *,
|
475
|
+
bucket: pulumi.Input[builtins.str],
|
476
|
+
namespace: pulumi.Input[builtins.str],
|
477
|
+
output_location_type: pulumi.Input[builtins.str],
|
478
|
+
prefix: Optional[pulumi.Input[builtins.str]] = None):
|
479
|
+
"""
|
480
|
+
:param pulumi.Input[builtins.str] bucket: (Updatable) The name of the bucket.
|
481
|
+
:param pulumi.Input[builtins.str] namespace: (Updatable) The namespace of the object storage.
|
482
|
+
:param pulumi.Input[builtins.str] output_location_type: (Updatable) Type of OutputLocation.
|
483
|
+
:param pulumi.Input[builtins.str] prefix: (Updatable) The prefix of the object storage.
|
484
|
+
"""
|
485
|
+
pulumi.set(__self__, "bucket", bucket)
|
486
|
+
pulumi.set(__self__, "namespace", namespace)
|
487
|
+
pulumi.set(__self__, "output_location_type", output_location_type)
|
488
|
+
if prefix is not None:
|
489
|
+
pulumi.set(__self__, "prefix", prefix)
|
490
|
+
|
491
|
+
@property
|
492
|
+
@pulumi.getter
|
493
|
+
def bucket(self) -> pulumi.Input[builtins.str]:
|
494
|
+
"""
|
495
|
+
(Updatable) The name of the bucket.
|
496
|
+
"""
|
497
|
+
return pulumi.get(self, "bucket")
|
498
|
+
|
499
|
+
@bucket.setter
|
500
|
+
def bucket(self, value: pulumi.Input[builtins.str]):
|
501
|
+
pulumi.set(self, "bucket", value)
|
502
|
+
|
503
|
+
@property
|
504
|
+
@pulumi.getter
|
505
|
+
def namespace(self) -> pulumi.Input[builtins.str]:
|
506
|
+
"""
|
507
|
+
(Updatable) The namespace of the object storage.
|
508
|
+
"""
|
509
|
+
return pulumi.get(self, "namespace")
|
510
|
+
|
511
|
+
@namespace.setter
|
512
|
+
def namespace(self, value: pulumi.Input[builtins.str]):
|
513
|
+
pulumi.set(self, "namespace", value)
|
514
|
+
|
515
|
+
@property
|
516
|
+
@pulumi.getter(name="outputLocationType")
|
517
|
+
def output_location_type(self) -> pulumi.Input[builtins.str]:
|
518
|
+
"""
|
519
|
+
(Updatable) Type of OutputLocation.
|
520
|
+
"""
|
521
|
+
return pulumi.get(self, "output_location_type")
|
522
|
+
|
523
|
+
@output_location_type.setter
|
524
|
+
def output_location_type(self, value: pulumi.Input[builtins.str]):
|
525
|
+
pulumi.set(self, "output_location_type", value)
|
526
|
+
|
527
|
+
@property
|
528
|
+
@pulumi.getter
|
529
|
+
def prefix(self) -> Optional[pulumi.Input[builtins.str]]:
|
530
|
+
"""
|
531
|
+
(Updatable) The prefix of the object storage.
|
532
|
+
"""
|
533
|
+
return pulumi.get(self, "prefix")
|
534
|
+
|
535
|
+
@prefix.setter
|
536
|
+
def prefix(self, value: Optional[pulumi.Input[builtins.str]]):
|
537
|
+
pulumi.set(self, "prefix", value)
|
538
|
+
|
539
|
+
|
125
540
|
if not MYPY:
|
126
541
|
class AgentAgentEndpointSessionConfigArgsDict(TypedDict):
|
127
542
|
idle_timeout_in_seconds: NotRequired[pulumi.Input[builtins.int]]
|
@@ -154,6 +569,70 @@ class AgentAgentEndpointSessionConfigArgs:
|
|
154
569
|
pulumi.set(self, "idle_timeout_in_seconds", value)
|
155
570
|
|
156
571
|
|
572
|
+
if not MYPY:
|
573
|
+
class AgentAgentLlmConfigArgsDict(TypedDict):
|
574
|
+
routing_llm_customization: NotRequired[pulumi.Input['AgentAgentLlmConfigRoutingLlmCustomizationArgsDict']]
|
575
|
+
"""
|
576
|
+
(Updatable) Configuration to customize LLM.
|
577
|
+
"""
|
578
|
+
elif False:
|
579
|
+
AgentAgentLlmConfigArgsDict: TypeAlias = Mapping[str, Any]
|
580
|
+
|
581
|
+
@pulumi.input_type
|
582
|
+
class AgentAgentLlmConfigArgs:
|
583
|
+
def __init__(__self__, *,
|
584
|
+
routing_llm_customization: Optional[pulumi.Input['AgentAgentLlmConfigRoutingLlmCustomizationArgs']] = None):
|
585
|
+
"""
|
586
|
+
:param pulumi.Input['AgentAgentLlmConfigRoutingLlmCustomizationArgs'] routing_llm_customization: (Updatable) Configuration to customize LLM.
|
587
|
+
"""
|
588
|
+
if routing_llm_customization is not None:
|
589
|
+
pulumi.set(__self__, "routing_llm_customization", routing_llm_customization)
|
590
|
+
|
591
|
+
@property
|
592
|
+
@pulumi.getter(name="routingLlmCustomization")
|
593
|
+
def routing_llm_customization(self) -> Optional[pulumi.Input['AgentAgentLlmConfigRoutingLlmCustomizationArgs']]:
|
594
|
+
"""
|
595
|
+
(Updatable) Configuration to customize LLM.
|
596
|
+
"""
|
597
|
+
return pulumi.get(self, "routing_llm_customization")
|
598
|
+
|
599
|
+
@routing_llm_customization.setter
|
600
|
+
def routing_llm_customization(self, value: Optional[pulumi.Input['AgentAgentLlmConfigRoutingLlmCustomizationArgs']]):
|
601
|
+
pulumi.set(self, "routing_llm_customization", value)
|
602
|
+
|
603
|
+
|
604
|
+
if not MYPY:
|
605
|
+
class AgentAgentLlmConfigRoutingLlmCustomizationArgsDict(TypedDict):
|
606
|
+
instruction: NotRequired[pulumi.Input[builtins.str]]
|
607
|
+
"""
|
608
|
+
(Updatable) If specified, the default instruction is replaced with provided instruction.
|
609
|
+
"""
|
610
|
+
elif False:
|
611
|
+
AgentAgentLlmConfigRoutingLlmCustomizationArgsDict: TypeAlias = Mapping[str, Any]
|
612
|
+
|
613
|
+
@pulumi.input_type
|
614
|
+
class AgentAgentLlmConfigRoutingLlmCustomizationArgs:
|
615
|
+
def __init__(__self__, *,
|
616
|
+
instruction: Optional[pulumi.Input[builtins.str]] = None):
|
617
|
+
"""
|
618
|
+
:param pulumi.Input[builtins.str] instruction: (Updatable) If specified, the default instruction is replaced with provided instruction.
|
619
|
+
"""
|
620
|
+
if instruction is not None:
|
621
|
+
pulumi.set(__self__, "instruction", instruction)
|
622
|
+
|
623
|
+
@property
|
624
|
+
@pulumi.getter
|
625
|
+
def instruction(self) -> Optional[pulumi.Input[builtins.str]]:
|
626
|
+
"""
|
627
|
+
(Updatable) If specified, the default instruction is replaced with provided instruction.
|
628
|
+
"""
|
629
|
+
return pulumi.get(self, "instruction")
|
630
|
+
|
631
|
+
@instruction.setter
|
632
|
+
def instruction(self, value: Optional[pulumi.Input[builtins.str]]):
|
633
|
+
pulumi.set(self, "instruction", value)
|
634
|
+
|
635
|
+
|
157
636
|
if not MYPY:
|
158
637
|
class AgentDataIngestionJobDataIngestionJobStatisticArgsDict(TypedDict):
|
159
638
|
duration_in_seconds: NotRequired[pulumi.Input[builtins.int]]
|
@@ -669,219 +1148,1031 @@ class AgentKnowledgeBaseIndexConfigIndexArgs:
|
|
669
1148
|
|
670
1149
|
The index schema details.
|
671
1150
|
"""
|
672
|
-
return pulumi.get(self, "schema")
|
1151
|
+
return pulumi.get(self, "schema")
|
1152
|
+
|
1153
|
+
@schema.setter
|
1154
|
+
def schema(self, value: Optional[pulumi.Input['AgentKnowledgeBaseIndexConfigIndexSchemaArgs']]):
|
1155
|
+
pulumi.set(self, "schema", value)
|
1156
|
+
|
1157
|
+
|
1158
|
+
if not MYPY:
|
1159
|
+
class AgentKnowledgeBaseIndexConfigIndexSchemaArgsDict(TypedDict):
|
1160
|
+
body_key: NotRequired[pulumi.Input[builtins.str]]
|
1161
|
+
"""
|
1162
|
+
(Updatable) Body key name.
|
1163
|
+
"""
|
1164
|
+
embedding_body_key: NotRequired[pulumi.Input[builtins.str]]
|
1165
|
+
"""
|
1166
|
+
(Updatable) Field within customer managed Oracle Cloud Infrastructure OpenSearch document containing the vector embedding for queries.
|
1167
|
+
"""
|
1168
|
+
title_key: NotRequired[pulumi.Input[builtins.str]]
|
1169
|
+
"""
|
1170
|
+
(Updatable) Title key that stores the Title of a document, if available.
|
1171
|
+
"""
|
1172
|
+
url_key: NotRequired[pulumi.Input[builtins.str]]
|
1173
|
+
"""
|
1174
|
+
(Updatable) URL key that stores the URL of a document, if available.
|
1175
|
+
"""
|
1176
|
+
elif False:
|
1177
|
+
AgentKnowledgeBaseIndexConfigIndexSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
1178
|
+
|
1179
|
+
@pulumi.input_type
|
1180
|
+
class AgentKnowledgeBaseIndexConfigIndexSchemaArgs:
|
1181
|
+
def __init__(__self__, *,
|
1182
|
+
body_key: Optional[pulumi.Input[builtins.str]] = None,
|
1183
|
+
embedding_body_key: Optional[pulumi.Input[builtins.str]] = None,
|
1184
|
+
title_key: Optional[pulumi.Input[builtins.str]] = None,
|
1185
|
+
url_key: Optional[pulumi.Input[builtins.str]] = None):
|
1186
|
+
"""
|
1187
|
+
:param pulumi.Input[builtins.str] body_key: (Updatable) Body key name.
|
1188
|
+
:param pulumi.Input[builtins.str] embedding_body_key: (Updatable) Field within customer managed Oracle Cloud Infrastructure OpenSearch document containing the vector embedding for queries.
|
1189
|
+
:param pulumi.Input[builtins.str] title_key: (Updatable) Title key that stores the Title of a document, if available.
|
1190
|
+
:param pulumi.Input[builtins.str] url_key: (Updatable) URL key that stores the URL of a document, if available.
|
1191
|
+
"""
|
1192
|
+
if body_key is not None:
|
1193
|
+
pulumi.set(__self__, "body_key", body_key)
|
1194
|
+
if embedding_body_key is not None:
|
1195
|
+
pulumi.set(__self__, "embedding_body_key", embedding_body_key)
|
1196
|
+
if title_key is not None:
|
1197
|
+
pulumi.set(__self__, "title_key", title_key)
|
1198
|
+
if url_key is not None:
|
1199
|
+
pulumi.set(__self__, "url_key", url_key)
|
1200
|
+
|
1201
|
+
@property
|
1202
|
+
@pulumi.getter(name="bodyKey")
|
1203
|
+
def body_key(self) -> Optional[pulumi.Input[builtins.str]]:
|
1204
|
+
"""
|
1205
|
+
(Updatable) Body key name.
|
1206
|
+
"""
|
1207
|
+
return pulumi.get(self, "body_key")
|
1208
|
+
|
1209
|
+
@body_key.setter
|
1210
|
+
def body_key(self, value: Optional[pulumi.Input[builtins.str]]):
|
1211
|
+
pulumi.set(self, "body_key", value)
|
1212
|
+
|
1213
|
+
@property
|
1214
|
+
@pulumi.getter(name="embeddingBodyKey")
|
1215
|
+
def embedding_body_key(self) -> Optional[pulumi.Input[builtins.str]]:
|
1216
|
+
"""
|
1217
|
+
(Updatable) Field within customer managed Oracle Cloud Infrastructure OpenSearch document containing the vector embedding for queries.
|
1218
|
+
"""
|
1219
|
+
return pulumi.get(self, "embedding_body_key")
|
1220
|
+
|
1221
|
+
@embedding_body_key.setter
|
1222
|
+
def embedding_body_key(self, value: Optional[pulumi.Input[builtins.str]]):
|
1223
|
+
pulumi.set(self, "embedding_body_key", value)
|
1224
|
+
|
1225
|
+
@property
|
1226
|
+
@pulumi.getter(name="titleKey")
|
1227
|
+
def title_key(self) -> Optional[pulumi.Input[builtins.str]]:
|
1228
|
+
"""
|
1229
|
+
(Updatable) Title key that stores the Title of a document, if available.
|
1230
|
+
"""
|
1231
|
+
return pulumi.get(self, "title_key")
|
1232
|
+
|
1233
|
+
@title_key.setter
|
1234
|
+
def title_key(self, value: Optional[pulumi.Input[builtins.str]]):
|
1235
|
+
pulumi.set(self, "title_key", value)
|
1236
|
+
|
1237
|
+
@property
|
1238
|
+
@pulumi.getter(name="urlKey")
|
1239
|
+
def url_key(self) -> Optional[pulumi.Input[builtins.str]]:
|
1240
|
+
"""
|
1241
|
+
(Updatable) URL key that stores the URL of a document, if available.
|
1242
|
+
"""
|
1243
|
+
return pulumi.get(self, "url_key")
|
1244
|
+
|
1245
|
+
@url_key.setter
|
1246
|
+
def url_key(self, value: Optional[pulumi.Input[builtins.str]]):
|
1247
|
+
pulumi.set(self, "url_key", value)
|
1248
|
+
|
1249
|
+
|
1250
|
+
if not MYPY:
|
1251
|
+
class AgentKnowledgeBaseIndexConfigSecretDetailArgsDict(TypedDict):
|
1252
|
+
type: pulumi.Input[builtins.str]
|
1253
|
+
"""
|
1254
|
+
(Updatable) The type of OpenID. The allowed values are:
|
1255
|
+
* `IDCS_SECRET`: The OpenID configuration used is OpenSearch is IDCS.
|
1256
|
+
* `BASIC_AUTH_SECRET`: Basic authentication use for OpenSearch
|
1257
|
+
"""
|
1258
|
+
vault_secret_id: pulumi.Input[builtins.str]
|
1259
|
+
"""
|
1260
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret for basic authentication.
|
1261
|
+
"""
|
1262
|
+
client_id: NotRequired[pulumi.Input[builtins.str]]
|
1263
|
+
"""
|
1264
|
+
(Updatable) The IDCS Connect clientId.
|
1265
|
+
"""
|
1266
|
+
idcs_url: NotRequired[pulumi.Input[builtins.str]]
|
1267
|
+
"""
|
1268
|
+
(Updatable) The URL represent authentication url of the IDCS.
|
1269
|
+
"""
|
1270
|
+
scope_url: NotRequired[pulumi.Input[builtins.str]]
|
1271
|
+
"""
|
1272
|
+
(Updatable) Fully qualified scope url
|
1273
|
+
"""
|
1274
|
+
elif False:
|
1275
|
+
AgentKnowledgeBaseIndexConfigSecretDetailArgsDict: TypeAlias = Mapping[str, Any]
|
1276
|
+
|
1277
|
+
@pulumi.input_type
|
1278
|
+
class AgentKnowledgeBaseIndexConfigSecretDetailArgs:
|
1279
|
+
def __init__(__self__, *,
|
1280
|
+
type: pulumi.Input[builtins.str],
|
1281
|
+
vault_secret_id: pulumi.Input[builtins.str],
|
1282
|
+
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
1283
|
+
idcs_url: Optional[pulumi.Input[builtins.str]] = None,
|
1284
|
+
scope_url: Optional[pulumi.Input[builtins.str]] = None):
|
1285
|
+
"""
|
1286
|
+
:param pulumi.Input[builtins.str] type: (Updatable) The type of OpenID. The allowed values are:
|
1287
|
+
* `IDCS_SECRET`: The OpenID configuration used is OpenSearch is IDCS.
|
1288
|
+
* `BASIC_AUTH_SECRET`: Basic authentication use for OpenSearch
|
1289
|
+
:param pulumi.Input[builtins.str] vault_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret for basic authentication.
|
1290
|
+
:param pulumi.Input[builtins.str] client_id: (Updatable) The IDCS Connect clientId.
|
1291
|
+
:param pulumi.Input[builtins.str] idcs_url: (Updatable) The URL represent authentication url of the IDCS.
|
1292
|
+
:param pulumi.Input[builtins.str] scope_url: (Updatable) Fully qualified scope url
|
1293
|
+
"""
|
1294
|
+
pulumi.set(__self__, "type", type)
|
1295
|
+
pulumi.set(__self__, "vault_secret_id", vault_secret_id)
|
1296
|
+
if client_id is not None:
|
1297
|
+
pulumi.set(__self__, "client_id", client_id)
|
1298
|
+
if idcs_url is not None:
|
1299
|
+
pulumi.set(__self__, "idcs_url", idcs_url)
|
1300
|
+
if scope_url is not None:
|
1301
|
+
pulumi.set(__self__, "scope_url", scope_url)
|
1302
|
+
|
1303
|
+
@property
|
1304
|
+
@pulumi.getter
|
1305
|
+
def type(self) -> pulumi.Input[builtins.str]:
|
1306
|
+
"""
|
1307
|
+
(Updatable) The type of OpenID. The allowed values are:
|
1308
|
+
* `IDCS_SECRET`: The OpenID configuration used is OpenSearch is IDCS.
|
1309
|
+
* `BASIC_AUTH_SECRET`: Basic authentication use for OpenSearch
|
1310
|
+
"""
|
1311
|
+
return pulumi.get(self, "type")
|
1312
|
+
|
1313
|
+
@type.setter
|
1314
|
+
def type(self, value: pulumi.Input[builtins.str]):
|
1315
|
+
pulumi.set(self, "type", value)
|
1316
|
+
|
1317
|
+
@property
|
1318
|
+
@pulumi.getter(name="vaultSecretId")
|
1319
|
+
def vault_secret_id(self) -> pulumi.Input[builtins.str]:
|
1320
|
+
"""
|
1321
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret for basic authentication.
|
1322
|
+
"""
|
1323
|
+
return pulumi.get(self, "vault_secret_id")
|
1324
|
+
|
1325
|
+
@vault_secret_id.setter
|
1326
|
+
def vault_secret_id(self, value: pulumi.Input[builtins.str]):
|
1327
|
+
pulumi.set(self, "vault_secret_id", value)
|
1328
|
+
|
1329
|
+
@property
|
1330
|
+
@pulumi.getter(name="clientId")
|
1331
|
+
def client_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
1332
|
+
"""
|
1333
|
+
(Updatable) The IDCS Connect clientId.
|
1334
|
+
"""
|
1335
|
+
return pulumi.get(self, "client_id")
|
1336
|
+
|
1337
|
+
@client_id.setter
|
1338
|
+
def client_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
1339
|
+
pulumi.set(self, "client_id", value)
|
1340
|
+
|
1341
|
+
@property
|
1342
|
+
@pulumi.getter(name="idcsUrl")
|
1343
|
+
def idcs_url(self) -> Optional[pulumi.Input[builtins.str]]:
|
1344
|
+
"""
|
1345
|
+
(Updatable) The URL represent authentication url of the IDCS.
|
1346
|
+
"""
|
1347
|
+
return pulumi.get(self, "idcs_url")
|
1348
|
+
|
1349
|
+
@idcs_url.setter
|
1350
|
+
def idcs_url(self, value: Optional[pulumi.Input[builtins.str]]):
|
1351
|
+
pulumi.set(self, "idcs_url", value)
|
1352
|
+
|
1353
|
+
@property
|
1354
|
+
@pulumi.getter(name="scopeUrl")
|
1355
|
+
def scope_url(self) -> Optional[pulumi.Input[builtins.str]]:
|
1356
|
+
"""
|
1357
|
+
(Updatable) Fully qualified scope url
|
1358
|
+
"""
|
1359
|
+
return pulumi.get(self, "scope_url")
|
1360
|
+
|
1361
|
+
@scope_url.setter
|
1362
|
+
def scope_url(self, value: Optional[pulumi.Input[builtins.str]]):
|
1363
|
+
pulumi.set(self, "scope_url", value)
|
1364
|
+
|
1365
|
+
|
1366
|
+
if not MYPY:
|
1367
|
+
class AgentToolToolConfigArgsDict(TypedDict):
|
1368
|
+
tool_config_type: pulumi.Input[builtins.str]
|
1369
|
+
"""
|
1370
|
+
(Updatable) The type of the Tool config. The allowed values are:
|
1371
|
+
* `SQL_TOOL_CONFIG`: The config for sql Tool.
|
1372
|
+
* `RAG_TOOL_CONFIG`: The config for rag Tool.
|
1373
|
+
* FUNCTION_CALLING_TOOL_CONFIG: The config for Function calling Tool.
|
1374
|
+
|
1375
|
+
|
1376
|
+
** IMPORTANT **
|
1377
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1378
|
+
"""
|
1379
|
+
database_connection: NotRequired[pulumi.Input['AgentToolToolConfigDatabaseConnectionArgsDict']]
|
1380
|
+
"""
|
1381
|
+
(Updatable) The connection type for Databases.
|
1382
|
+
"""
|
1383
|
+
database_schema: NotRequired[pulumi.Input['AgentToolToolConfigDatabaseSchemaArgsDict']]
|
1384
|
+
"""
|
1385
|
+
(Updatable) The input location definition.
|
1386
|
+
"""
|
1387
|
+
dialect: NotRequired[pulumi.Input[builtins.str]]
|
1388
|
+
"""
|
1389
|
+
(Updatable) Dialect to be used for SQL generation.
|
1390
|
+
"""
|
1391
|
+
function: NotRequired[pulumi.Input['AgentToolToolConfigFunctionArgsDict']]
|
1392
|
+
"""
|
1393
|
+
(Updatable) Details of Function for Function calling tool.
|
1394
|
+
"""
|
1395
|
+
generation_llm_customization: NotRequired[pulumi.Input['AgentToolToolConfigGenerationLlmCustomizationArgsDict']]
|
1396
|
+
"""
|
1397
|
+
(Updatable) Configuration to customize LLM.
|
1398
|
+
"""
|
1399
|
+
icl_examples: NotRequired[pulumi.Input['AgentToolToolConfigIclExamplesArgsDict']]
|
1400
|
+
"""
|
1401
|
+
(Updatable) The input location definition.
|
1402
|
+
"""
|
1403
|
+
knowledge_base_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['AgentToolToolConfigKnowledgeBaseConfigArgsDict']]]]
|
1404
|
+
"""
|
1405
|
+
(Updatable) The KnowledgeBase configurations that this RAG Tool uses
|
1406
|
+
"""
|
1407
|
+
model_size: NotRequired[pulumi.Input[builtins.str]]
|
1408
|
+
"""
|
1409
|
+
(Updatable) Size of the model.
|
1410
|
+
"""
|
1411
|
+
should_enable_self_correction: NotRequired[pulumi.Input[builtins.bool]]
|
1412
|
+
"""
|
1413
|
+
(Updatable) To enable/disable self correction.
|
1414
|
+
"""
|
1415
|
+
should_enable_sql_execution: NotRequired[pulumi.Input[builtins.bool]]
|
1416
|
+
"""
|
1417
|
+
(Updatable) To enable/disable SQL execution.
|
1418
|
+
"""
|
1419
|
+
table_and_column_description: NotRequired[pulumi.Input['AgentToolToolConfigTableAndColumnDescriptionArgsDict']]
|
1420
|
+
"""
|
1421
|
+
(Updatable) The input location definition.
|
1422
|
+
"""
|
1423
|
+
elif False:
|
1424
|
+
AgentToolToolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1425
|
+
|
1426
|
+
@pulumi.input_type
|
1427
|
+
class AgentToolToolConfigArgs:
|
1428
|
+
def __init__(__self__, *,
|
1429
|
+
tool_config_type: pulumi.Input[builtins.str],
|
1430
|
+
database_connection: Optional[pulumi.Input['AgentToolToolConfigDatabaseConnectionArgs']] = None,
|
1431
|
+
database_schema: Optional[pulumi.Input['AgentToolToolConfigDatabaseSchemaArgs']] = None,
|
1432
|
+
dialect: Optional[pulumi.Input[builtins.str]] = None,
|
1433
|
+
function: Optional[pulumi.Input['AgentToolToolConfigFunctionArgs']] = None,
|
1434
|
+
generation_llm_customization: Optional[pulumi.Input['AgentToolToolConfigGenerationLlmCustomizationArgs']] = None,
|
1435
|
+
icl_examples: Optional[pulumi.Input['AgentToolToolConfigIclExamplesArgs']] = None,
|
1436
|
+
knowledge_base_configs: Optional[pulumi.Input[Sequence[pulumi.Input['AgentToolToolConfigKnowledgeBaseConfigArgs']]]] = None,
|
1437
|
+
model_size: Optional[pulumi.Input[builtins.str]] = None,
|
1438
|
+
should_enable_self_correction: Optional[pulumi.Input[builtins.bool]] = None,
|
1439
|
+
should_enable_sql_execution: Optional[pulumi.Input[builtins.bool]] = None,
|
1440
|
+
table_and_column_description: Optional[pulumi.Input['AgentToolToolConfigTableAndColumnDescriptionArgs']] = None):
|
1441
|
+
"""
|
1442
|
+
:param pulumi.Input[builtins.str] tool_config_type: (Updatable) The type of the Tool config. The allowed values are:
|
1443
|
+
* `SQL_TOOL_CONFIG`: The config for sql Tool.
|
1444
|
+
* `RAG_TOOL_CONFIG`: The config for rag Tool.
|
1445
|
+
* FUNCTION_CALLING_TOOL_CONFIG: The config for Function calling Tool.
|
1446
|
+
|
1447
|
+
|
1448
|
+
** IMPORTANT **
|
1449
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1450
|
+
:param pulumi.Input['AgentToolToolConfigDatabaseConnectionArgs'] database_connection: (Updatable) The connection type for Databases.
|
1451
|
+
:param pulumi.Input['AgentToolToolConfigDatabaseSchemaArgs'] database_schema: (Updatable) The input location definition.
|
1452
|
+
:param pulumi.Input[builtins.str] dialect: (Updatable) Dialect to be used for SQL generation.
|
1453
|
+
:param pulumi.Input['AgentToolToolConfigFunctionArgs'] function: (Updatable) Details of Function for Function calling tool.
|
1454
|
+
:param pulumi.Input['AgentToolToolConfigGenerationLlmCustomizationArgs'] generation_llm_customization: (Updatable) Configuration to customize LLM.
|
1455
|
+
:param pulumi.Input['AgentToolToolConfigIclExamplesArgs'] icl_examples: (Updatable) The input location definition.
|
1456
|
+
:param pulumi.Input[Sequence[pulumi.Input['AgentToolToolConfigKnowledgeBaseConfigArgs']]] knowledge_base_configs: (Updatable) The KnowledgeBase configurations that this RAG Tool uses
|
1457
|
+
:param pulumi.Input[builtins.str] model_size: (Updatable) Size of the model.
|
1458
|
+
:param pulumi.Input[builtins.bool] should_enable_self_correction: (Updatable) To enable/disable self correction.
|
1459
|
+
:param pulumi.Input[builtins.bool] should_enable_sql_execution: (Updatable) To enable/disable SQL execution.
|
1460
|
+
:param pulumi.Input['AgentToolToolConfigTableAndColumnDescriptionArgs'] table_and_column_description: (Updatable) The input location definition.
|
1461
|
+
"""
|
1462
|
+
pulumi.set(__self__, "tool_config_type", tool_config_type)
|
1463
|
+
if database_connection is not None:
|
1464
|
+
pulumi.set(__self__, "database_connection", database_connection)
|
1465
|
+
if database_schema is not None:
|
1466
|
+
pulumi.set(__self__, "database_schema", database_schema)
|
1467
|
+
if dialect is not None:
|
1468
|
+
pulumi.set(__self__, "dialect", dialect)
|
1469
|
+
if function is not None:
|
1470
|
+
pulumi.set(__self__, "function", function)
|
1471
|
+
if generation_llm_customization is not None:
|
1472
|
+
pulumi.set(__self__, "generation_llm_customization", generation_llm_customization)
|
1473
|
+
if icl_examples is not None:
|
1474
|
+
pulumi.set(__self__, "icl_examples", icl_examples)
|
1475
|
+
if knowledge_base_configs is not None:
|
1476
|
+
pulumi.set(__self__, "knowledge_base_configs", knowledge_base_configs)
|
1477
|
+
if model_size is not None:
|
1478
|
+
pulumi.set(__self__, "model_size", model_size)
|
1479
|
+
if should_enable_self_correction is not None:
|
1480
|
+
pulumi.set(__self__, "should_enable_self_correction", should_enable_self_correction)
|
1481
|
+
if should_enable_sql_execution is not None:
|
1482
|
+
pulumi.set(__self__, "should_enable_sql_execution", should_enable_sql_execution)
|
1483
|
+
if table_and_column_description is not None:
|
1484
|
+
pulumi.set(__self__, "table_and_column_description", table_and_column_description)
|
1485
|
+
|
1486
|
+
@property
|
1487
|
+
@pulumi.getter(name="toolConfigType")
|
1488
|
+
def tool_config_type(self) -> pulumi.Input[builtins.str]:
|
1489
|
+
"""
|
1490
|
+
(Updatable) The type of the Tool config. The allowed values are:
|
1491
|
+
* `SQL_TOOL_CONFIG`: The config for sql Tool.
|
1492
|
+
* `RAG_TOOL_CONFIG`: The config for rag Tool.
|
1493
|
+
* FUNCTION_CALLING_TOOL_CONFIG: The config for Function calling Tool.
|
1494
|
+
|
1495
|
+
|
1496
|
+
** IMPORTANT **
|
1497
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1498
|
+
"""
|
1499
|
+
return pulumi.get(self, "tool_config_type")
|
1500
|
+
|
1501
|
+
@tool_config_type.setter
|
1502
|
+
def tool_config_type(self, value: pulumi.Input[builtins.str]):
|
1503
|
+
pulumi.set(self, "tool_config_type", value)
|
1504
|
+
|
1505
|
+
@property
|
1506
|
+
@pulumi.getter(name="databaseConnection")
|
1507
|
+
def database_connection(self) -> Optional[pulumi.Input['AgentToolToolConfigDatabaseConnectionArgs']]:
|
1508
|
+
"""
|
1509
|
+
(Updatable) The connection type for Databases.
|
1510
|
+
"""
|
1511
|
+
return pulumi.get(self, "database_connection")
|
1512
|
+
|
1513
|
+
@database_connection.setter
|
1514
|
+
def database_connection(self, value: Optional[pulumi.Input['AgentToolToolConfigDatabaseConnectionArgs']]):
|
1515
|
+
pulumi.set(self, "database_connection", value)
|
1516
|
+
|
1517
|
+
@property
|
1518
|
+
@pulumi.getter(name="databaseSchema")
|
1519
|
+
def database_schema(self) -> Optional[pulumi.Input['AgentToolToolConfigDatabaseSchemaArgs']]:
|
1520
|
+
"""
|
1521
|
+
(Updatable) The input location definition.
|
1522
|
+
"""
|
1523
|
+
return pulumi.get(self, "database_schema")
|
1524
|
+
|
1525
|
+
@database_schema.setter
|
1526
|
+
def database_schema(self, value: Optional[pulumi.Input['AgentToolToolConfigDatabaseSchemaArgs']]):
|
1527
|
+
pulumi.set(self, "database_schema", value)
|
1528
|
+
|
1529
|
+
@property
|
1530
|
+
@pulumi.getter
|
1531
|
+
def dialect(self) -> Optional[pulumi.Input[builtins.str]]:
|
1532
|
+
"""
|
1533
|
+
(Updatable) Dialect to be used for SQL generation.
|
1534
|
+
"""
|
1535
|
+
return pulumi.get(self, "dialect")
|
1536
|
+
|
1537
|
+
@dialect.setter
|
1538
|
+
def dialect(self, value: Optional[pulumi.Input[builtins.str]]):
|
1539
|
+
pulumi.set(self, "dialect", value)
|
1540
|
+
|
1541
|
+
@property
|
1542
|
+
@pulumi.getter
|
1543
|
+
def function(self) -> Optional[pulumi.Input['AgentToolToolConfigFunctionArgs']]:
|
1544
|
+
"""
|
1545
|
+
(Updatable) Details of Function for Function calling tool.
|
1546
|
+
"""
|
1547
|
+
return pulumi.get(self, "function")
|
1548
|
+
|
1549
|
+
@function.setter
|
1550
|
+
def function(self, value: Optional[pulumi.Input['AgentToolToolConfigFunctionArgs']]):
|
1551
|
+
pulumi.set(self, "function", value)
|
1552
|
+
|
1553
|
+
@property
|
1554
|
+
@pulumi.getter(name="generationLlmCustomization")
|
1555
|
+
def generation_llm_customization(self) -> Optional[pulumi.Input['AgentToolToolConfigGenerationLlmCustomizationArgs']]:
|
1556
|
+
"""
|
1557
|
+
(Updatable) Configuration to customize LLM.
|
1558
|
+
"""
|
1559
|
+
return pulumi.get(self, "generation_llm_customization")
|
1560
|
+
|
1561
|
+
@generation_llm_customization.setter
|
1562
|
+
def generation_llm_customization(self, value: Optional[pulumi.Input['AgentToolToolConfigGenerationLlmCustomizationArgs']]):
|
1563
|
+
pulumi.set(self, "generation_llm_customization", value)
|
1564
|
+
|
1565
|
+
@property
|
1566
|
+
@pulumi.getter(name="iclExamples")
|
1567
|
+
def icl_examples(self) -> Optional[pulumi.Input['AgentToolToolConfigIclExamplesArgs']]:
|
1568
|
+
"""
|
1569
|
+
(Updatable) The input location definition.
|
1570
|
+
"""
|
1571
|
+
return pulumi.get(self, "icl_examples")
|
1572
|
+
|
1573
|
+
@icl_examples.setter
|
1574
|
+
def icl_examples(self, value: Optional[pulumi.Input['AgentToolToolConfigIclExamplesArgs']]):
|
1575
|
+
pulumi.set(self, "icl_examples", value)
|
1576
|
+
|
1577
|
+
@property
|
1578
|
+
@pulumi.getter(name="knowledgeBaseConfigs")
|
1579
|
+
def knowledge_base_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AgentToolToolConfigKnowledgeBaseConfigArgs']]]]:
|
1580
|
+
"""
|
1581
|
+
(Updatable) The KnowledgeBase configurations that this RAG Tool uses
|
1582
|
+
"""
|
1583
|
+
return pulumi.get(self, "knowledge_base_configs")
|
1584
|
+
|
1585
|
+
@knowledge_base_configs.setter
|
1586
|
+
def knowledge_base_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AgentToolToolConfigKnowledgeBaseConfigArgs']]]]):
|
1587
|
+
pulumi.set(self, "knowledge_base_configs", value)
|
1588
|
+
|
1589
|
+
@property
|
1590
|
+
@pulumi.getter(name="modelSize")
|
1591
|
+
def model_size(self) -> Optional[pulumi.Input[builtins.str]]:
|
1592
|
+
"""
|
1593
|
+
(Updatable) Size of the model.
|
1594
|
+
"""
|
1595
|
+
return pulumi.get(self, "model_size")
|
1596
|
+
|
1597
|
+
@model_size.setter
|
1598
|
+
def model_size(self, value: Optional[pulumi.Input[builtins.str]]):
|
1599
|
+
pulumi.set(self, "model_size", value)
|
1600
|
+
|
1601
|
+
@property
|
1602
|
+
@pulumi.getter(name="shouldEnableSelfCorrection")
|
1603
|
+
def should_enable_self_correction(self) -> Optional[pulumi.Input[builtins.bool]]:
|
1604
|
+
"""
|
1605
|
+
(Updatable) To enable/disable self correction.
|
1606
|
+
"""
|
1607
|
+
return pulumi.get(self, "should_enable_self_correction")
|
1608
|
+
|
1609
|
+
@should_enable_self_correction.setter
|
1610
|
+
def should_enable_self_correction(self, value: Optional[pulumi.Input[builtins.bool]]):
|
1611
|
+
pulumi.set(self, "should_enable_self_correction", value)
|
1612
|
+
|
1613
|
+
@property
|
1614
|
+
@pulumi.getter(name="shouldEnableSqlExecution")
|
1615
|
+
def should_enable_sql_execution(self) -> Optional[pulumi.Input[builtins.bool]]:
|
1616
|
+
"""
|
1617
|
+
(Updatable) To enable/disable SQL execution.
|
1618
|
+
"""
|
1619
|
+
return pulumi.get(self, "should_enable_sql_execution")
|
1620
|
+
|
1621
|
+
@should_enable_sql_execution.setter
|
1622
|
+
def should_enable_sql_execution(self, value: Optional[pulumi.Input[builtins.bool]]):
|
1623
|
+
pulumi.set(self, "should_enable_sql_execution", value)
|
1624
|
+
|
1625
|
+
@property
|
1626
|
+
@pulumi.getter(name="tableAndColumnDescription")
|
1627
|
+
def table_and_column_description(self) -> Optional[pulumi.Input['AgentToolToolConfigTableAndColumnDescriptionArgs']]:
|
1628
|
+
"""
|
1629
|
+
(Updatable) The input location definition.
|
1630
|
+
"""
|
1631
|
+
return pulumi.get(self, "table_and_column_description")
|
1632
|
+
|
1633
|
+
@table_and_column_description.setter
|
1634
|
+
def table_and_column_description(self, value: Optional[pulumi.Input['AgentToolToolConfigTableAndColumnDescriptionArgs']]):
|
1635
|
+
pulumi.set(self, "table_and_column_description", value)
|
1636
|
+
|
1637
|
+
|
1638
|
+
if not MYPY:
|
1639
|
+
class AgentToolToolConfigDatabaseConnectionArgsDict(TypedDict):
|
1640
|
+
connection_id: pulumi.Input[builtins.str]
|
1641
|
+
"""
|
1642
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Tools Connection.
|
1643
|
+
"""
|
1644
|
+
connection_type: pulumi.Input[builtins.str]
|
1645
|
+
"""
|
1646
|
+
(Updatable) The type of Database connection. The allowed values are:
|
1647
|
+
* `DATABASE_TOOL_CONNECTION`: This allows the service to connect to a vector store via a Database Tools Connection.
|
1648
|
+
"""
|
1649
|
+
elif False:
|
1650
|
+
AgentToolToolConfigDatabaseConnectionArgsDict: TypeAlias = Mapping[str, Any]
|
1651
|
+
|
1652
|
+
@pulumi.input_type
|
1653
|
+
class AgentToolToolConfigDatabaseConnectionArgs:
|
1654
|
+
def __init__(__self__, *,
|
1655
|
+
connection_id: pulumi.Input[builtins.str],
|
1656
|
+
connection_type: pulumi.Input[builtins.str]):
|
1657
|
+
"""
|
1658
|
+
:param pulumi.Input[builtins.str] connection_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Tools Connection.
|
1659
|
+
:param pulumi.Input[builtins.str] connection_type: (Updatable) The type of Database connection. The allowed values are:
|
1660
|
+
* `DATABASE_TOOL_CONNECTION`: This allows the service to connect to a vector store via a Database Tools Connection.
|
1661
|
+
"""
|
1662
|
+
pulumi.set(__self__, "connection_id", connection_id)
|
1663
|
+
pulumi.set(__self__, "connection_type", connection_type)
|
1664
|
+
|
1665
|
+
@property
|
1666
|
+
@pulumi.getter(name="connectionId")
|
1667
|
+
def connection_id(self) -> pulumi.Input[builtins.str]:
|
1668
|
+
"""
|
1669
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Tools Connection.
|
1670
|
+
"""
|
1671
|
+
return pulumi.get(self, "connection_id")
|
1672
|
+
|
1673
|
+
@connection_id.setter
|
1674
|
+
def connection_id(self, value: pulumi.Input[builtins.str]):
|
1675
|
+
pulumi.set(self, "connection_id", value)
|
1676
|
+
|
1677
|
+
@property
|
1678
|
+
@pulumi.getter(name="connectionType")
|
1679
|
+
def connection_type(self) -> pulumi.Input[builtins.str]:
|
1680
|
+
"""
|
1681
|
+
(Updatable) The type of Database connection. The allowed values are:
|
1682
|
+
* `DATABASE_TOOL_CONNECTION`: This allows the service to connect to a vector store via a Database Tools Connection.
|
1683
|
+
"""
|
1684
|
+
return pulumi.get(self, "connection_type")
|
1685
|
+
|
1686
|
+
@connection_type.setter
|
1687
|
+
def connection_type(self, value: pulumi.Input[builtins.str]):
|
1688
|
+
pulumi.set(self, "connection_type", value)
|
1689
|
+
|
1690
|
+
|
1691
|
+
if not MYPY:
|
1692
|
+
class AgentToolToolConfigDatabaseSchemaArgsDict(TypedDict):
|
1693
|
+
input_location_type: pulumi.Input[builtins.str]
|
1694
|
+
"""
|
1695
|
+
(Updatable) Type of InputLocation. The allowed values are:
|
1696
|
+
* `INLINE`: The input location is inline.
|
1697
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
1698
|
+
"""
|
1699
|
+
bucket: NotRequired[pulumi.Input[builtins.str]]
|
1700
|
+
"""
|
1701
|
+
(Updatable) The bucket name of an object.
|
1702
|
+
"""
|
1703
|
+
content: NotRequired[pulumi.Input[builtins.str]]
|
1704
|
+
"""
|
1705
|
+
(Updatable) Inline content as input.
|
1706
|
+
"""
|
1707
|
+
namespace: NotRequired[pulumi.Input[builtins.str]]
|
1708
|
+
"""
|
1709
|
+
(Updatable) The namespace name of an object.
|
1710
|
+
"""
|
1711
|
+
prefix: NotRequired[pulumi.Input[builtins.str]]
|
1712
|
+
"""
|
1713
|
+
(Updatable) The prefix of file object(s) or folder prefix.
|
1714
|
+
"""
|
1715
|
+
elif False:
|
1716
|
+
AgentToolToolConfigDatabaseSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
1717
|
+
|
1718
|
+
@pulumi.input_type
|
1719
|
+
class AgentToolToolConfigDatabaseSchemaArgs:
|
1720
|
+
def __init__(__self__, *,
|
1721
|
+
input_location_type: pulumi.Input[builtins.str],
|
1722
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
1723
|
+
content: Optional[pulumi.Input[builtins.str]] = None,
|
1724
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
1725
|
+
prefix: Optional[pulumi.Input[builtins.str]] = None):
|
1726
|
+
"""
|
1727
|
+
:param pulumi.Input[builtins.str] input_location_type: (Updatable) Type of InputLocation. The allowed values are:
|
1728
|
+
* `INLINE`: The input location is inline.
|
1729
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
1730
|
+
:param pulumi.Input[builtins.str] bucket: (Updatable) The bucket name of an object.
|
1731
|
+
:param pulumi.Input[builtins.str] content: (Updatable) Inline content as input.
|
1732
|
+
:param pulumi.Input[builtins.str] namespace: (Updatable) The namespace name of an object.
|
1733
|
+
:param pulumi.Input[builtins.str] prefix: (Updatable) The prefix of file object(s) or folder prefix.
|
1734
|
+
"""
|
1735
|
+
pulumi.set(__self__, "input_location_type", input_location_type)
|
1736
|
+
if bucket is not None:
|
1737
|
+
pulumi.set(__self__, "bucket", bucket)
|
1738
|
+
if content is not None:
|
1739
|
+
pulumi.set(__self__, "content", content)
|
1740
|
+
if namespace is not None:
|
1741
|
+
pulumi.set(__self__, "namespace", namespace)
|
1742
|
+
if prefix is not None:
|
1743
|
+
pulumi.set(__self__, "prefix", prefix)
|
1744
|
+
|
1745
|
+
@property
|
1746
|
+
@pulumi.getter(name="inputLocationType")
|
1747
|
+
def input_location_type(self) -> pulumi.Input[builtins.str]:
|
1748
|
+
"""
|
1749
|
+
(Updatable) Type of InputLocation. The allowed values are:
|
1750
|
+
* `INLINE`: The input location is inline.
|
1751
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
1752
|
+
"""
|
1753
|
+
return pulumi.get(self, "input_location_type")
|
1754
|
+
|
1755
|
+
@input_location_type.setter
|
1756
|
+
def input_location_type(self, value: pulumi.Input[builtins.str]):
|
1757
|
+
pulumi.set(self, "input_location_type", value)
|
1758
|
+
|
1759
|
+
@property
|
1760
|
+
@pulumi.getter
|
1761
|
+
def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
|
1762
|
+
"""
|
1763
|
+
(Updatable) The bucket name of an object.
|
1764
|
+
"""
|
1765
|
+
return pulumi.get(self, "bucket")
|
1766
|
+
|
1767
|
+
@bucket.setter
|
1768
|
+
def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
|
1769
|
+
pulumi.set(self, "bucket", value)
|
1770
|
+
|
1771
|
+
@property
|
1772
|
+
@pulumi.getter
|
1773
|
+
def content(self) -> Optional[pulumi.Input[builtins.str]]:
|
1774
|
+
"""
|
1775
|
+
(Updatable) Inline content as input.
|
1776
|
+
"""
|
1777
|
+
return pulumi.get(self, "content")
|
1778
|
+
|
1779
|
+
@content.setter
|
1780
|
+
def content(self, value: Optional[pulumi.Input[builtins.str]]):
|
1781
|
+
pulumi.set(self, "content", value)
|
1782
|
+
|
1783
|
+
@property
|
1784
|
+
@pulumi.getter
|
1785
|
+
def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
|
1786
|
+
"""
|
1787
|
+
(Updatable) The namespace name of an object.
|
1788
|
+
"""
|
1789
|
+
return pulumi.get(self, "namespace")
|
1790
|
+
|
1791
|
+
@namespace.setter
|
1792
|
+
def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
|
1793
|
+
pulumi.set(self, "namespace", value)
|
1794
|
+
|
1795
|
+
@property
|
1796
|
+
@pulumi.getter
|
1797
|
+
def prefix(self) -> Optional[pulumi.Input[builtins.str]]:
|
1798
|
+
"""
|
1799
|
+
(Updatable) The prefix of file object(s) or folder prefix.
|
1800
|
+
"""
|
1801
|
+
return pulumi.get(self, "prefix")
|
1802
|
+
|
1803
|
+
@prefix.setter
|
1804
|
+
def prefix(self, value: Optional[pulumi.Input[builtins.str]]):
|
1805
|
+
pulumi.set(self, "prefix", value)
|
1806
|
+
|
1807
|
+
|
1808
|
+
if not MYPY:
|
1809
|
+
class AgentToolToolConfigFunctionArgsDict(TypedDict):
|
1810
|
+
description: NotRequired[pulumi.Input[builtins.str]]
|
1811
|
+
"""
|
1812
|
+
(Updatable) A description of the function.
|
1813
|
+
"""
|
1814
|
+
name: NotRequired[pulumi.Input[builtins.str]]
|
1815
|
+
"""
|
1816
|
+
(Updatable) The name of the function to invoke.
|
1817
|
+
"""
|
1818
|
+
parameters: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]
|
1819
|
+
"""
|
1820
|
+
(Updatable) The parameters the function accepts, defined using a JSON Schema object. Refer to the guide for examples and the JSON Schema documentation for details on the format.
|
1821
|
+
"""
|
1822
|
+
elif False:
|
1823
|
+
AgentToolToolConfigFunctionArgsDict: TypeAlias = Mapping[str, Any]
|
1824
|
+
|
1825
|
+
@pulumi.input_type
|
1826
|
+
class AgentToolToolConfigFunctionArgs:
|
1827
|
+
def __init__(__self__, *,
|
1828
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
1829
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
1830
|
+
parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
1831
|
+
"""
|
1832
|
+
:param pulumi.Input[builtins.str] description: (Updatable) A description of the function.
|
1833
|
+
:param pulumi.Input[builtins.str] name: (Updatable) The name of the function to invoke.
|
1834
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] parameters: (Updatable) The parameters the function accepts, defined using a JSON Schema object. Refer to the guide for examples and the JSON Schema documentation for details on the format.
|
1835
|
+
"""
|
1836
|
+
if description is not None:
|
1837
|
+
pulumi.set(__self__, "description", description)
|
1838
|
+
if name is not None:
|
1839
|
+
pulumi.set(__self__, "name", name)
|
1840
|
+
if parameters is not None:
|
1841
|
+
pulumi.set(__self__, "parameters", parameters)
|
1842
|
+
|
1843
|
+
@property
|
1844
|
+
@pulumi.getter
|
1845
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
1846
|
+
"""
|
1847
|
+
(Updatable) A description of the function.
|
1848
|
+
"""
|
1849
|
+
return pulumi.get(self, "description")
|
1850
|
+
|
1851
|
+
@description.setter
|
1852
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
1853
|
+
pulumi.set(self, "description", value)
|
1854
|
+
|
1855
|
+
@property
|
1856
|
+
@pulumi.getter
|
1857
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
1858
|
+
"""
|
1859
|
+
(Updatable) The name of the function to invoke.
|
1860
|
+
"""
|
1861
|
+
return pulumi.get(self, "name")
|
1862
|
+
|
1863
|
+
@name.setter
|
1864
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
1865
|
+
pulumi.set(self, "name", value)
|
1866
|
+
|
1867
|
+
@property
|
1868
|
+
@pulumi.getter
|
1869
|
+
def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
1870
|
+
"""
|
1871
|
+
(Updatable) The parameters the function accepts, defined using a JSON Schema object. Refer to the guide for examples and the JSON Schema documentation for details on the format.
|
1872
|
+
"""
|
1873
|
+
return pulumi.get(self, "parameters")
|
1874
|
+
|
1875
|
+
@parameters.setter
|
1876
|
+
def parameters(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
1877
|
+
pulumi.set(self, "parameters", value)
|
1878
|
+
|
1879
|
+
|
1880
|
+
if not MYPY:
|
1881
|
+
class AgentToolToolConfigGenerationLlmCustomizationArgsDict(TypedDict):
|
1882
|
+
instruction: NotRequired[pulumi.Input[builtins.str]]
|
1883
|
+
"""
|
1884
|
+
(Updatable) If specified, the default instruction is replaced with provided instruction.
|
1885
|
+
"""
|
1886
|
+
elif False:
|
1887
|
+
AgentToolToolConfigGenerationLlmCustomizationArgsDict: TypeAlias = Mapping[str, Any]
|
1888
|
+
|
1889
|
+
@pulumi.input_type
|
1890
|
+
class AgentToolToolConfigGenerationLlmCustomizationArgs:
|
1891
|
+
def __init__(__self__, *,
|
1892
|
+
instruction: Optional[pulumi.Input[builtins.str]] = None):
|
1893
|
+
"""
|
1894
|
+
:param pulumi.Input[builtins.str] instruction: (Updatable) If specified, the default instruction is replaced with provided instruction.
|
1895
|
+
"""
|
1896
|
+
if instruction is not None:
|
1897
|
+
pulumi.set(__self__, "instruction", instruction)
|
1898
|
+
|
1899
|
+
@property
|
1900
|
+
@pulumi.getter
|
1901
|
+
def instruction(self) -> Optional[pulumi.Input[builtins.str]]:
|
1902
|
+
"""
|
1903
|
+
(Updatable) If specified, the default instruction is replaced with provided instruction.
|
1904
|
+
"""
|
1905
|
+
return pulumi.get(self, "instruction")
|
673
1906
|
|
674
|
-
@
|
675
|
-
def
|
676
|
-
pulumi.set(self, "
|
1907
|
+
@instruction.setter
|
1908
|
+
def instruction(self, value: Optional[pulumi.Input[builtins.str]]):
|
1909
|
+
pulumi.set(self, "instruction", value)
|
677
1910
|
|
678
1911
|
|
679
1912
|
if not MYPY:
|
680
|
-
class
|
681
|
-
|
1913
|
+
class AgentToolToolConfigIclExamplesArgsDict(TypedDict):
|
1914
|
+
input_location_type: pulumi.Input[builtins.str]
|
682
1915
|
"""
|
683
|
-
(Updatable)
|
1916
|
+
(Updatable) Type of InputLocation. The allowed values are:
|
1917
|
+
* `INLINE`: The input location is inline.
|
1918
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
684
1919
|
"""
|
685
|
-
|
1920
|
+
bucket: NotRequired[pulumi.Input[builtins.str]]
|
686
1921
|
"""
|
687
|
-
(Updatable)
|
1922
|
+
(Updatable) The bucket name of an object.
|
688
1923
|
"""
|
689
|
-
|
1924
|
+
content: NotRequired[pulumi.Input[builtins.str]]
|
690
1925
|
"""
|
691
|
-
(Updatable)
|
1926
|
+
(Updatable) Inline content as input.
|
692
1927
|
"""
|
693
|
-
|
1928
|
+
namespace: NotRequired[pulumi.Input[builtins.str]]
|
694
1929
|
"""
|
695
|
-
(Updatable)
|
1930
|
+
(Updatable) The namespace name of an object.
|
1931
|
+
"""
|
1932
|
+
prefix: NotRequired[pulumi.Input[builtins.str]]
|
1933
|
+
"""
|
1934
|
+
(Updatable) The prefix of file object(s) or folder prefix.
|
696
1935
|
"""
|
697
1936
|
elif False:
|
698
|
-
|
1937
|
+
AgentToolToolConfigIclExamplesArgsDict: TypeAlias = Mapping[str, Any]
|
699
1938
|
|
700
1939
|
@pulumi.input_type
|
701
|
-
class
|
1940
|
+
class AgentToolToolConfigIclExamplesArgs:
|
702
1941
|
def __init__(__self__, *,
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
1942
|
+
input_location_type: pulumi.Input[builtins.str],
|
1943
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
1944
|
+
content: Optional[pulumi.Input[builtins.str]] = None,
|
1945
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
1946
|
+
prefix: Optional[pulumi.Input[builtins.str]] = None):
|
707
1947
|
"""
|
708
|
-
:param pulumi.Input[builtins.str]
|
709
|
-
|
710
|
-
|
711
|
-
:param pulumi.Input[builtins.str]
|
1948
|
+
:param pulumi.Input[builtins.str] input_location_type: (Updatable) Type of InputLocation. The allowed values are:
|
1949
|
+
* `INLINE`: The input location is inline.
|
1950
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
1951
|
+
:param pulumi.Input[builtins.str] bucket: (Updatable) The bucket name of an object.
|
1952
|
+
:param pulumi.Input[builtins.str] content: (Updatable) Inline content as input.
|
1953
|
+
:param pulumi.Input[builtins.str] namespace: (Updatable) The namespace name of an object.
|
1954
|
+
:param pulumi.Input[builtins.str] prefix: (Updatable) The prefix of file object(s) or folder prefix.
|
1955
|
+
"""
|
1956
|
+
pulumi.set(__self__, "input_location_type", input_location_type)
|
1957
|
+
if bucket is not None:
|
1958
|
+
pulumi.set(__self__, "bucket", bucket)
|
1959
|
+
if content is not None:
|
1960
|
+
pulumi.set(__self__, "content", content)
|
1961
|
+
if namespace is not None:
|
1962
|
+
pulumi.set(__self__, "namespace", namespace)
|
1963
|
+
if prefix is not None:
|
1964
|
+
pulumi.set(__self__, "prefix", prefix)
|
1965
|
+
|
1966
|
+
@property
|
1967
|
+
@pulumi.getter(name="inputLocationType")
|
1968
|
+
def input_location_type(self) -> pulumi.Input[builtins.str]:
|
712
1969
|
"""
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
1970
|
+
(Updatable) Type of InputLocation. The allowed values are:
|
1971
|
+
* `INLINE`: The input location is inline.
|
1972
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
1973
|
+
"""
|
1974
|
+
return pulumi.get(self, "input_location_type")
|
1975
|
+
|
1976
|
+
@input_location_type.setter
|
1977
|
+
def input_location_type(self, value: pulumi.Input[builtins.str]):
|
1978
|
+
pulumi.set(self, "input_location_type", value)
|
721
1979
|
|
722
1980
|
@property
|
723
|
-
@pulumi.getter
|
724
|
-
def
|
1981
|
+
@pulumi.getter
|
1982
|
+
def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
|
725
1983
|
"""
|
726
|
-
(Updatable)
|
1984
|
+
(Updatable) The bucket name of an object.
|
727
1985
|
"""
|
728
|
-
return pulumi.get(self, "
|
1986
|
+
return pulumi.get(self, "bucket")
|
729
1987
|
|
730
|
-
@
|
731
|
-
def
|
732
|
-
pulumi.set(self, "
|
1988
|
+
@bucket.setter
|
1989
|
+
def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
|
1990
|
+
pulumi.set(self, "bucket", value)
|
733
1991
|
|
734
1992
|
@property
|
735
|
-
@pulumi.getter
|
736
|
-
def
|
1993
|
+
@pulumi.getter
|
1994
|
+
def content(self) -> Optional[pulumi.Input[builtins.str]]:
|
737
1995
|
"""
|
738
|
-
(Updatable)
|
1996
|
+
(Updatable) Inline content as input.
|
739
1997
|
"""
|
740
|
-
return pulumi.get(self, "
|
1998
|
+
return pulumi.get(self, "content")
|
741
1999
|
|
742
|
-
@
|
743
|
-
def
|
744
|
-
pulumi.set(self, "
|
2000
|
+
@content.setter
|
2001
|
+
def content(self, value: Optional[pulumi.Input[builtins.str]]):
|
2002
|
+
pulumi.set(self, "content", value)
|
745
2003
|
|
746
2004
|
@property
|
747
|
-
@pulumi.getter
|
748
|
-
def
|
2005
|
+
@pulumi.getter
|
2006
|
+
def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
|
749
2007
|
"""
|
750
|
-
(Updatable)
|
2008
|
+
(Updatable) The namespace name of an object.
|
751
2009
|
"""
|
752
|
-
return pulumi.get(self, "
|
2010
|
+
return pulumi.get(self, "namespace")
|
753
2011
|
|
754
|
-
@
|
755
|
-
def
|
756
|
-
pulumi.set(self, "
|
2012
|
+
@namespace.setter
|
2013
|
+
def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
|
2014
|
+
pulumi.set(self, "namespace", value)
|
757
2015
|
|
758
2016
|
@property
|
759
|
-
@pulumi.getter
|
760
|
-
def
|
2017
|
+
@pulumi.getter
|
2018
|
+
def prefix(self) -> Optional[pulumi.Input[builtins.str]]:
|
761
2019
|
"""
|
762
|
-
(Updatable)
|
2020
|
+
(Updatable) The prefix of file object(s) or folder prefix.
|
763
2021
|
"""
|
764
|
-
return pulumi.get(self, "
|
2022
|
+
return pulumi.get(self, "prefix")
|
765
2023
|
|
766
|
-
@
|
767
|
-
def
|
768
|
-
pulumi.set(self, "
|
2024
|
+
@prefix.setter
|
2025
|
+
def prefix(self, value: Optional[pulumi.Input[builtins.str]]):
|
2026
|
+
pulumi.set(self, "prefix", value)
|
769
2027
|
|
770
2028
|
|
771
2029
|
if not MYPY:
|
772
|
-
class
|
773
|
-
|
2030
|
+
class AgentToolToolConfigKnowledgeBaseConfigArgsDict(TypedDict):
|
2031
|
+
knowledge_base_id: NotRequired[pulumi.Input[builtins.str]]
|
774
2032
|
"""
|
775
|
-
(Updatable) The
|
776
|
-
* `IDCS_SECRET`: The OpenID configuration used is OpenSearch is IDCS.
|
777
|
-
* `BASIC_AUTH_SECRET`: Basic authentication use for OpenSearch
|
2033
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBase this RAG Tool uses
|
778
2034
|
"""
|
779
|
-
|
2035
|
+
elif False:
|
2036
|
+
AgentToolToolConfigKnowledgeBaseConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2037
|
+
|
2038
|
+
@pulumi.input_type
|
2039
|
+
class AgentToolToolConfigKnowledgeBaseConfigArgs:
|
2040
|
+
def __init__(__self__, *,
|
2041
|
+
knowledge_base_id: Optional[pulumi.Input[builtins.str]] = None):
|
780
2042
|
"""
|
781
|
-
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the
|
2043
|
+
:param pulumi.Input[builtins.str] knowledge_base_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBase this RAG Tool uses
|
782
2044
|
"""
|
783
|
-
|
2045
|
+
if knowledge_base_id is not None:
|
2046
|
+
pulumi.set(__self__, "knowledge_base_id", knowledge_base_id)
|
2047
|
+
|
2048
|
+
@property
|
2049
|
+
@pulumi.getter(name="knowledgeBaseId")
|
2050
|
+
def knowledge_base_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
784
2051
|
"""
|
785
|
-
(Updatable) The
|
2052
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBase this RAG Tool uses
|
786
2053
|
"""
|
787
|
-
|
2054
|
+
return pulumi.get(self, "knowledge_base_id")
|
2055
|
+
|
2056
|
+
@knowledge_base_id.setter
|
2057
|
+
def knowledge_base_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
2058
|
+
pulumi.set(self, "knowledge_base_id", value)
|
2059
|
+
|
2060
|
+
|
2061
|
+
if not MYPY:
|
2062
|
+
class AgentToolToolConfigTableAndColumnDescriptionArgsDict(TypedDict):
|
2063
|
+
input_location_type: pulumi.Input[builtins.str]
|
788
2064
|
"""
|
789
|
-
(Updatable)
|
2065
|
+
(Updatable) Type of InputLocation. The allowed values are:
|
2066
|
+
* `INLINE`: The input location is inline.
|
2067
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
790
2068
|
"""
|
791
|
-
|
2069
|
+
bucket: NotRequired[pulumi.Input[builtins.str]]
|
792
2070
|
"""
|
793
|
-
(Updatable)
|
2071
|
+
(Updatable) The bucket name of an object.
|
2072
|
+
"""
|
2073
|
+
content: NotRequired[pulumi.Input[builtins.str]]
|
2074
|
+
"""
|
2075
|
+
(Updatable) Inline content as input.
|
2076
|
+
"""
|
2077
|
+
namespace: NotRequired[pulumi.Input[builtins.str]]
|
2078
|
+
"""
|
2079
|
+
(Updatable) The namespace name of an object.
|
2080
|
+
"""
|
2081
|
+
prefix: NotRequired[pulumi.Input[builtins.str]]
|
2082
|
+
"""
|
2083
|
+
(Updatable) The prefix of file object(s) or folder prefix.
|
794
2084
|
"""
|
795
2085
|
elif False:
|
796
|
-
|
2086
|
+
AgentToolToolConfigTableAndColumnDescriptionArgsDict: TypeAlias = Mapping[str, Any]
|
797
2087
|
|
798
2088
|
@pulumi.input_type
|
799
|
-
class
|
2089
|
+
class AgentToolToolConfigTableAndColumnDescriptionArgs:
|
800
2090
|
def __init__(__self__, *,
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
"""
|
807
|
-
:param pulumi.Input[builtins.str] type: (Updatable) The type of OpenID. The allowed values are:
|
808
|
-
* `IDCS_SECRET`: The OpenID configuration used is OpenSearch is IDCS.
|
809
|
-
* `BASIC_AUTH_SECRET`: Basic authentication use for OpenSearch
|
810
|
-
:param pulumi.Input[builtins.str] vault_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret for basic authentication.
|
811
|
-
:param pulumi.Input[builtins.str] client_id: (Updatable) The IDCS Connect clientId.
|
812
|
-
:param pulumi.Input[builtins.str] idcs_url: (Updatable) The URL represent authentication url of the IDCS.
|
813
|
-
:param pulumi.Input[builtins.str] scope_url: (Updatable) Fully qualified scope url
|
2091
|
+
input_location_type: pulumi.Input[builtins.str],
|
2092
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
2093
|
+
content: Optional[pulumi.Input[builtins.str]] = None,
|
2094
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
2095
|
+
prefix: Optional[pulumi.Input[builtins.str]] = None):
|
814
2096
|
"""
|
815
|
-
pulumi.
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
2097
|
+
:param pulumi.Input[builtins.str] input_location_type: (Updatable) Type of InputLocation. The allowed values are:
|
2098
|
+
* `INLINE`: The input location is inline.
|
2099
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
2100
|
+
:param pulumi.Input[builtins.str] bucket: (Updatable) The bucket name of an object.
|
2101
|
+
:param pulumi.Input[builtins.str] content: (Updatable) Inline content as input.
|
2102
|
+
:param pulumi.Input[builtins.str] namespace: (Updatable) The namespace name of an object.
|
2103
|
+
:param pulumi.Input[builtins.str] prefix: (Updatable) The prefix of file object(s) or folder prefix.
|
2104
|
+
"""
|
2105
|
+
pulumi.set(__self__, "input_location_type", input_location_type)
|
2106
|
+
if bucket is not None:
|
2107
|
+
pulumi.set(__self__, "bucket", bucket)
|
2108
|
+
if content is not None:
|
2109
|
+
pulumi.set(__self__, "content", content)
|
2110
|
+
if namespace is not None:
|
2111
|
+
pulumi.set(__self__, "namespace", namespace)
|
2112
|
+
if prefix is not None:
|
2113
|
+
pulumi.set(__self__, "prefix", prefix)
|
823
2114
|
|
824
2115
|
@property
|
825
|
-
@pulumi.getter
|
826
|
-
def
|
2116
|
+
@pulumi.getter(name="inputLocationType")
|
2117
|
+
def input_location_type(self) -> pulumi.Input[builtins.str]:
|
827
2118
|
"""
|
828
|
-
(Updatable)
|
829
|
-
* `
|
830
|
-
* `
|
2119
|
+
(Updatable) Type of InputLocation. The allowed values are:
|
2120
|
+
* `INLINE`: The input location is inline.
|
2121
|
+
* `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
831
2122
|
"""
|
832
|
-
return pulumi.get(self, "
|
2123
|
+
return pulumi.get(self, "input_location_type")
|
833
2124
|
|
834
|
-
@
|
835
|
-
def
|
836
|
-
pulumi.set(self, "
|
2125
|
+
@input_location_type.setter
|
2126
|
+
def input_location_type(self, value: pulumi.Input[builtins.str]):
|
2127
|
+
pulumi.set(self, "input_location_type", value)
|
837
2128
|
|
838
2129
|
@property
|
839
|
-
@pulumi.getter
|
840
|
-
def
|
2130
|
+
@pulumi.getter
|
2131
|
+
def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
|
841
2132
|
"""
|
842
|
-
(Updatable) The
|
2133
|
+
(Updatable) The bucket name of an object.
|
843
2134
|
"""
|
844
|
-
return pulumi.get(self, "
|
2135
|
+
return pulumi.get(self, "bucket")
|
845
2136
|
|
846
|
-
@
|
847
|
-
def
|
848
|
-
pulumi.set(self, "
|
2137
|
+
@bucket.setter
|
2138
|
+
def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
|
2139
|
+
pulumi.set(self, "bucket", value)
|
849
2140
|
|
850
2141
|
@property
|
851
|
-
@pulumi.getter
|
852
|
-
def
|
2142
|
+
@pulumi.getter
|
2143
|
+
def content(self) -> Optional[pulumi.Input[builtins.str]]:
|
853
2144
|
"""
|
854
|
-
(Updatable)
|
2145
|
+
(Updatable) Inline content as input.
|
855
2146
|
"""
|
856
|
-
return pulumi.get(self, "
|
2147
|
+
return pulumi.get(self, "content")
|
857
2148
|
|
858
|
-
@
|
859
|
-
def
|
860
|
-
pulumi.set(self, "
|
2149
|
+
@content.setter
|
2150
|
+
def content(self, value: Optional[pulumi.Input[builtins.str]]):
|
2151
|
+
pulumi.set(self, "content", value)
|
861
2152
|
|
862
2153
|
@property
|
863
|
-
@pulumi.getter
|
864
|
-
def
|
2154
|
+
@pulumi.getter
|
2155
|
+
def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
|
865
2156
|
"""
|
866
|
-
(Updatable) The
|
2157
|
+
(Updatable) The namespace name of an object.
|
867
2158
|
"""
|
868
|
-
return pulumi.get(self, "
|
2159
|
+
return pulumi.get(self, "namespace")
|
869
2160
|
|
870
|
-
@
|
871
|
-
def
|
872
|
-
pulumi.set(self, "
|
2161
|
+
@namespace.setter
|
2162
|
+
def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
|
2163
|
+
pulumi.set(self, "namespace", value)
|
873
2164
|
|
874
2165
|
@property
|
875
|
-
@pulumi.getter
|
876
|
-
def
|
2166
|
+
@pulumi.getter
|
2167
|
+
def prefix(self) -> Optional[pulumi.Input[builtins.str]]:
|
877
2168
|
"""
|
878
|
-
(Updatable)
|
2169
|
+
(Updatable) The prefix of file object(s) or folder prefix.
|
879
2170
|
"""
|
880
|
-
return pulumi.get(self, "
|
2171
|
+
return pulumi.get(self, "prefix")
|
881
2172
|
|
882
|
-
@
|
883
|
-
def
|
884
|
-
pulumi.set(self, "
|
2173
|
+
@prefix.setter
|
2174
|
+
def prefix(self, value: Optional[pulumi.Input[builtins.str]]):
|
2175
|
+
pulumi.set(self, "prefix", value)
|
885
2176
|
|
886
2177
|
|
887
2178
|
if not MYPY:
|
@@ -1704,6 +2995,62 @@ class GetAgentKnowledgeBasesFilterArgs:
|
|
1704
2995
|
pulumi.set(self, "regex", value)
|
1705
2996
|
|
1706
2997
|
|
2998
|
+
if not MYPY:
|
2999
|
+
class GetAgentToolsFilterArgsDict(TypedDict):
|
3000
|
+
name: builtins.str
|
3001
|
+
"""
|
3002
|
+
The name of the function to invoke.
|
3003
|
+
"""
|
3004
|
+
values: Sequence[builtins.str]
|
3005
|
+
regex: NotRequired[builtins.bool]
|
3006
|
+
elif False:
|
3007
|
+
GetAgentToolsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
3008
|
+
|
3009
|
+
@pulumi.input_type
|
3010
|
+
class GetAgentToolsFilterArgs:
|
3011
|
+
def __init__(__self__, *,
|
3012
|
+
name: builtins.str,
|
3013
|
+
values: Sequence[builtins.str],
|
3014
|
+
regex: Optional[builtins.bool] = None):
|
3015
|
+
"""
|
3016
|
+
:param builtins.str name: The name of the function to invoke.
|
3017
|
+
"""
|
3018
|
+
pulumi.set(__self__, "name", name)
|
3019
|
+
pulumi.set(__self__, "values", values)
|
3020
|
+
if regex is not None:
|
3021
|
+
pulumi.set(__self__, "regex", regex)
|
3022
|
+
|
3023
|
+
@property
|
3024
|
+
@pulumi.getter
|
3025
|
+
def name(self) -> builtins.str:
|
3026
|
+
"""
|
3027
|
+
The name of the function to invoke.
|
3028
|
+
"""
|
3029
|
+
return pulumi.get(self, "name")
|
3030
|
+
|
3031
|
+
@name.setter
|
3032
|
+
def name(self, value: builtins.str):
|
3033
|
+
pulumi.set(self, "name", value)
|
3034
|
+
|
3035
|
+
@property
|
3036
|
+
@pulumi.getter
|
3037
|
+
def values(self) -> Sequence[builtins.str]:
|
3038
|
+
return pulumi.get(self, "values")
|
3039
|
+
|
3040
|
+
@values.setter
|
3041
|
+
def values(self, value: Sequence[builtins.str]):
|
3042
|
+
pulumi.set(self, "values", value)
|
3043
|
+
|
3044
|
+
@property
|
3045
|
+
@pulumi.getter
|
3046
|
+
def regex(self) -> Optional[builtins.bool]:
|
3047
|
+
return pulumi.get(self, "regex")
|
3048
|
+
|
3049
|
+
@regex.setter
|
3050
|
+
def regex(self, value: Optional[builtins.bool]):
|
3051
|
+
pulumi.set(self, "regex", value)
|
3052
|
+
|
3053
|
+
|
1707
3054
|
if not MYPY:
|
1708
3055
|
class GetDedicatedAiClustersFilterArgsDict(TypedDict):
|
1709
3056
|
name: builtins.str
|