@pulumi/oci 3.1.0 → 3.2.0-alpha.1752121229
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.
- package/bigdataservice/bdsInstanceNodeBackup.d.ts +131 -0
- package/bigdataservice/bdsInstanceNodeBackup.js +104 -0
- package/bigdataservice/bdsInstanceNodeBackup.js.map +1 -0
- package/bigdataservice/bdsInstanceNodeBackupConfiguration.d.ts +192 -0
- package/bigdataservice/bdsInstanceNodeBackupConfiguration.js +110 -0
- package/bigdataservice/bdsInstanceNodeBackupConfiguration.js.map +1 -0
- package/bigdataservice/bdsInstanceNodeReplaceConfiguration.d.ts +167 -0
- package/bigdataservice/bdsInstanceNodeReplaceConfiguration.js +115 -0
- package/bigdataservice/bdsInstanceNodeReplaceConfiguration.js.map +1 -0
- package/bigdataservice/bdsInstanceReplaceNodeAction.d.ts +128 -0
- package/bigdataservice/bdsInstanceReplaceNodeAction.js +91 -0
- package/bigdataservice/bdsInstanceReplaceNodeAction.js.map +1 -0
- package/bigdataservice/getBdsInstanceNodeBackup.d.ts +106 -0
- package/bigdataservice/getBdsInstanceNodeBackup.js +58 -0
- package/bigdataservice/getBdsInstanceNodeBackup.js.map +1 -0
- package/bigdataservice/getBdsInstanceNodeBackupConfiguration.d.ts +114 -0
- package/bigdataservice/getBdsInstanceNodeBackupConfiguration.js +58 -0
- package/bigdataservice/getBdsInstanceNodeBackupConfiguration.js.map +1 -0
- package/bigdataservice/getBdsInstanceNodeBackupConfigurations.d.ts +103 -0
- package/bigdataservice/getBdsInstanceNodeBackupConfigurations.js +64 -0
- package/bigdataservice/getBdsInstanceNodeBackupConfigurations.js.map +1 -0
- package/bigdataservice/getBdsInstanceNodeBackups.d.ts +114 -0
- package/bigdataservice/getBdsInstanceNodeBackups.js +68 -0
- package/bigdataservice/getBdsInstanceNodeBackups.js.map +1 -0
- package/bigdataservice/getBdsInstanceNodeReplaceConfiguration.d.ts +107 -0
- package/bigdataservice/getBdsInstanceNodeReplaceConfiguration.js +58 -0
- package/bigdataservice/getBdsInstanceNodeReplaceConfiguration.js.map +1 -0
- package/bigdataservice/getBdsInstanceNodeReplaceConfigurations.d.ts +103 -0
- package/bigdataservice/getBdsInstanceNodeReplaceConfigurations.js +64 -0
- package/bigdataservice/getBdsInstanceNodeReplaceConfigurations.js.map +1 -0
- package/bigdataservice/index.d.ts +30 -0
- package/bigdataservice/index.js +40 -1
- package/bigdataservice/index.js.map +1 -1
- package/generativeai/agentAgent.d.ts +22 -5
- package/generativeai/agentAgent.js +7 -2
- package/generativeai/agentAgent.js.map +1 -1
- package/generativeai/agentAgentEndpoint.d.ts +96 -11
- package/generativeai/agentAgentEndpoint.js +37 -2
- package/generativeai/agentAgentEndpoint.js.map +1 -1
- package/generativeai/agentDataSource.d.ts +28 -9
- package/generativeai/agentDataSource.js +3 -0
- package/generativeai/agentDataSource.js.map +1 -1
- package/generativeai/agentTool.d.ts +201 -0
- package/generativeai/agentTool.js +96 -0
- package/generativeai/agentTool.js.map +1 -0
- package/generativeai/getAgentAgent.d.ts +6 -1
- package/generativeai/getAgentAgent.js.map +1 -1
- package/generativeai/getAgentAgentEndpoint.d.ts +23 -5
- package/generativeai/getAgentAgentEndpoint.js +0 -4
- package/generativeai/getAgentAgentEndpoint.js.map +1 -1
- package/generativeai/getAgentAgentEndpoints.d.ts +0 -4
- package/generativeai/getAgentAgentEndpoints.js +0 -4
- package/generativeai/getAgentAgentEndpoints.js.map +1 -1
- package/generativeai/getAgentDataSource.d.ts +6 -0
- package/generativeai/getAgentDataSource.js.map +1 -1
- package/generativeai/getAgentTool.d.ts +120 -0
- package/generativeai/getAgentTool.js +54 -0
- package/generativeai/getAgentTool.js.map +1 -0
- package/generativeai/getAgentTools.d.ts +117 -0
- package/generativeai/getAgentTools.js +70 -0
- package/generativeai/getAgentTools.js.map +1 -0
- package/generativeai/index.d.ts +9 -0
- package/generativeai/index.js +12 -1
- package/generativeai/index.js.map +1 -1
- package/kms/vaultVerification.d.ts +6 -0
- package/kms/vaultVerification.js +6 -0
- package/kms/vaultVerification.js.map +1 -1
- package/ospgateway/getSubscription.d.ts +4 -0
- package/ospgateway/getSubscription.js.map +1 -1
- package/ospgateway/subscription.d.ts +8 -0
- package/ospgateway/subscription.js +2 -0
- package/ospgateway/subscription.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +350 -0
- package/types/output.d.ts +1117 -2
package/types/input.d.ts
CHANGED
|
@@ -5252,6 +5252,52 @@ export declare namespace BigDataService {
|
|
|
5252
5252
|
*/
|
|
5253
5253
|
volumeSizeInGbs?: pulumi.Input<string>;
|
|
5254
5254
|
}
|
|
5255
|
+
interface BdsInstanceNodeBackupConfigurationLevelTypeDetails {
|
|
5256
|
+
/**
|
|
5257
|
+
* (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
|
5258
|
+
*/
|
|
5259
|
+
levelType: pulumi.Input<string>;
|
|
5260
|
+
/**
|
|
5261
|
+
* (Updatable) Host name of the node to create backup configuration.
|
|
5262
|
+
*/
|
|
5263
|
+
nodeHostName?: pulumi.Input<string>;
|
|
5264
|
+
/**
|
|
5265
|
+
* (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
|
|
5266
|
+
*/
|
|
5267
|
+
nodeType?: pulumi.Input<string>;
|
|
5268
|
+
}
|
|
5269
|
+
interface BdsInstanceNodeBackupLevelTypeDetails {
|
|
5270
|
+
/**
|
|
5271
|
+
* Type of level used to trigger the creation of a new node backup.
|
|
5272
|
+
*/
|
|
5273
|
+
levelType: pulumi.Input<string>;
|
|
5274
|
+
/**
|
|
5275
|
+
* (Updatable) Host name of the node to create backup.
|
|
5276
|
+
*/
|
|
5277
|
+
nodeHostName?: pulumi.Input<string>;
|
|
5278
|
+
/**
|
|
5279
|
+
* (Updatable) Type of the node or nodes of the node backup which are going to be created.
|
|
5280
|
+
*
|
|
5281
|
+
*
|
|
5282
|
+
* ** IMPORTANT **
|
|
5283
|
+
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
5284
|
+
*/
|
|
5285
|
+
nodeType?: pulumi.Input<string>;
|
|
5286
|
+
}
|
|
5287
|
+
interface BdsInstanceNodeReplaceConfigurationLevelTypeDetails {
|
|
5288
|
+
/**
|
|
5289
|
+
* (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
|
|
5290
|
+
*/
|
|
5291
|
+
levelType: pulumi.Input<string>;
|
|
5292
|
+
/**
|
|
5293
|
+
* (Updatable) Host name of the node to create backup configuration.
|
|
5294
|
+
*/
|
|
5295
|
+
nodeHostName?: pulumi.Input<string>;
|
|
5296
|
+
/**
|
|
5297
|
+
* (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
|
|
5298
|
+
*/
|
|
5299
|
+
nodeType?: pulumi.Input<string>;
|
|
5300
|
+
}
|
|
5255
5301
|
interface BdsInstanceOperationCertificateManagementsManagementHostCertDetail {
|
|
5256
5302
|
/**
|
|
5257
5303
|
* Certificate value in string format
|
|
@@ -5470,6 +5516,36 @@ export declare namespace BigDataService {
|
|
|
5470
5516
|
regex?: pulumi.Input<boolean>;
|
|
5471
5517
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
5472
5518
|
}
|
|
5519
|
+
interface GetBdsInstanceNodeBackupConfigurationsFilter {
|
|
5520
|
+
name: string;
|
|
5521
|
+
regex?: boolean;
|
|
5522
|
+
values: string[];
|
|
5523
|
+
}
|
|
5524
|
+
interface GetBdsInstanceNodeBackupConfigurationsFilterArgs {
|
|
5525
|
+
name: pulumi.Input<string>;
|
|
5526
|
+
regex?: pulumi.Input<boolean>;
|
|
5527
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
5528
|
+
}
|
|
5529
|
+
interface GetBdsInstanceNodeBackupsFilter {
|
|
5530
|
+
name: string;
|
|
5531
|
+
regex?: boolean;
|
|
5532
|
+
values: string[];
|
|
5533
|
+
}
|
|
5534
|
+
interface GetBdsInstanceNodeBackupsFilterArgs {
|
|
5535
|
+
name: pulumi.Input<string>;
|
|
5536
|
+
regex?: pulumi.Input<boolean>;
|
|
5537
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
5538
|
+
}
|
|
5539
|
+
interface GetBdsInstanceNodeReplaceConfigurationsFilter {
|
|
5540
|
+
name: string;
|
|
5541
|
+
regex?: boolean;
|
|
5542
|
+
values: string[];
|
|
5543
|
+
}
|
|
5544
|
+
interface GetBdsInstanceNodeReplaceConfigurationsFilterArgs {
|
|
5545
|
+
name: pulumi.Input<string>;
|
|
5546
|
+
regex?: pulumi.Input<boolean>;
|
|
5547
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
5548
|
+
}
|
|
5473
5549
|
interface GetBdsInstancePatchHistoriesFilter {
|
|
5474
5550
|
name: string;
|
|
5475
5551
|
regex?: boolean;
|
|
@@ -39695,12 +39771,98 @@ export declare namespace GenerativeAi {
|
|
|
39695
39771
|
*/
|
|
39696
39772
|
shouldEnableOnOutput?: pulumi.Input<boolean>;
|
|
39697
39773
|
}
|
|
39774
|
+
interface AgentAgentEndpointGuardrailConfig {
|
|
39775
|
+
/**
|
|
39776
|
+
* (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.
|
|
39777
|
+
*/
|
|
39778
|
+
contentModerationConfig?: pulumi.Input<inputs.GenerativeAi.AgentAgentEndpointGuardrailConfigContentModerationConfig>;
|
|
39779
|
+
/**
|
|
39780
|
+
* (Updatable) The configuration details for Personally Identifiable Information.
|
|
39781
|
+
*/
|
|
39782
|
+
personallyIdentifiableInformationConfig?: pulumi.Input<inputs.GenerativeAi.AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig>;
|
|
39783
|
+
/**
|
|
39784
|
+
* (Updatable) The configuration details for Prompt Injection.
|
|
39785
|
+
*/
|
|
39786
|
+
promptInjectionConfig?: pulumi.Input<inputs.GenerativeAi.AgentAgentEndpointGuardrailConfigPromptInjectionConfig>;
|
|
39787
|
+
}
|
|
39788
|
+
interface AgentAgentEndpointGuardrailConfigContentModerationConfig {
|
|
39789
|
+
/**
|
|
39790
|
+
* (Updatable) An input guardrail mode for content moderation.
|
|
39791
|
+
*/
|
|
39792
|
+
inputGuardrailMode?: pulumi.Input<string>;
|
|
39793
|
+
/**
|
|
39794
|
+
* (Updatable) An output guardrail mode for content moderation.
|
|
39795
|
+
*/
|
|
39796
|
+
outputGuardrailMode?: pulumi.Input<string>;
|
|
39797
|
+
}
|
|
39798
|
+
interface AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig {
|
|
39799
|
+
/**
|
|
39800
|
+
* (Updatable) An input guardrail mode for personally identifiable information.
|
|
39801
|
+
*/
|
|
39802
|
+
inputGuardrailMode?: pulumi.Input<string>;
|
|
39803
|
+
/**
|
|
39804
|
+
* (Updatable) An output guardrail mode for personally identifiable information.
|
|
39805
|
+
*/
|
|
39806
|
+
outputGuardrailMode?: pulumi.Input<string>;
|
|
39807
|
+
}
|
|
39808
|
+
interface AgentAgentEndpointGuardrailConfigPromptInjectionConfig {
|
|
39809
|
+
/**
|
|
39810
|
+
* (Updatable) An input guardrail mode for prompt injection.
|
|
39811
|
+
*/
|
|
39812
|
+
inputGuardrailMode?: pulumi.Input<string>;
|
|
39813
|
+
}
|
|
39814
|
+
interface AgentAgentEndpointHumanInputConfig {
|
|
39815
|
+
/**
|
|
39816
|
+
* (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
|
|
39817
|
+
*/
|
|
39818
|
+
shouldEnableHumanInput: pulumi.Input<boolean>;
|
|
39819
|
+
}
|
|
39820
|
+
interface AgentAgentEndpointOutputConfig {
|
|
39821
|
+
/**
|
|
39822
|
+
* (Updatable) Location of the output.
|
|
39823
|
+
*/
|
|
39824
|
+
outputLocation: pulumi.Input<inputs.GenerativeAi.AgentAgentEndpointOutputConfigOutputLocation>;
|
|
39825
|
+
/**
|
|
39826
|
+
* (Updatable) Retention duration of the output data.
|
|
39827
|
+
*/
|
|
39828
|
+
retentionPeriodInMinutes?: pulumi.Input<number>;
|
|
39829
|
+
}
|
|
39830
|
+
interface AgentAgentEndpointOutputConfigOutputLocation {
|
|
39831
|
+
/**
|
|
39832
|
+
* (Updatable) The name of the bucket.
|
|
39833
|
+
*/
|
|
39834
|
+
bucket: pulumi.Input<string>;
|
|
39835
|
+
/**
|
|
39836
|
+
* (Updatable) The namespace of the object storage.
|
|
39837
|
+
*/
|
|
39838
|
+
namespace: pulumi.Input<string>;
|
|
39839
|
+
/**
|
|
39840
|
+
* (Updatable) Type of OutputLocation.
|
|
39841
|
+
*/
|
|
39842
|
+
outputLocationType: pulumi.Input<string>;
|
|
39843
|
+
/**
|
|
39844
|
+
* (Updatable) The prefix of the object storage.
|
|
39845
|
+
*/
|
|
39846
|
+
prefix?: pulumi.Input<string>;
|
|
39847
|
+
}
|
|
39698
39848
|
interface AgentAgentEndpointSessionConfig {
|
|
39699
39849
|
/**
|
|
39700
39850
|
* (Updatable) The session will become inactive after this timeout.
|
|
39701
39851
|
*/
|
|
39702
39852
|
idleTimeoutInSeconds?: pulumi.Input<number>;
|
|
39703
39853
|
}
|
|
39854
|
+
interface AgentAgentLlmConfig {
|
|
39855
|
+
/**
|
|
39856
|
+
* (Updatable) Configuration to customize LLM.
|
|
39857
|
+
*/
|
|
39858
|
+
routingLlmCustomization?: pulumi.Input<inputs.GenerativeAi.AgentAgentLlmConfigRoutingLlmCustomization>;
|
|
39859
|
+
}
|
|
39860
|
+
interface AgentAgentLlmConfigRoutingLlmCustomization {
|
|
39861
|
+
/**
|
|
39862
|
+
* (Updatable) If specified, the default instruction is replaced with provided instruction.
|
|
39863
|
+
*/
|
|
39864
|
+
instruction?: pulumi.Input<string>;
|
|
39865
|
+
}
|
|
39704
39866
|
interface AgentDataIngestionJobDataIngestionJobStatistic {
|
|
39705
39867
|
/**
|
|
39706
39868
|
* The duration of this ingestion job.
|
|
@@ -39852,6 +40014,174 @@ export declare namespace GenerativeAi {
|
|
|
39852
40014
|
*/
|
|
39853
40015
|
vaultSecretId: pulumi.Input<string>;
|
|
39854
40016
|
}
|
|
40017
|
+
interface AgentToolToolConfig {
|
|
40018
|
+
/**
|
|
40019
|
+
* (Updatable) The connection type for Databases.
|
|
40020
|
+
*/
|
|
40021
|
+
databaseConnection?: pulumi.Input<inputs.GenerativeAi.AgentToolToolConfigDatabaseConnection>;
|
|
40022
|
+
/**
|
|
40023
|
+
* (Updatable) The input location definition.
|
|
40024
|
+
*/
|
|
40025
|
+
databaseSchema?: pulumi.Input<inputs.GenerativeAi.AgentToolToolConfigDatabaseSchema>;
|
|
40026
|
+
/**
|
|
40027
|
+
* (Updatable) Dialect to be used for SQL generation.
|
|
40028
|
+
*/
|
|
40029
|
+
dialect?: pulumi.Input<string>;
|
|
40030
|
+
/**
|
|
40031
|
+
* (Updatable) Details of Function for Function calling tool.
|
|
40032
|
+
*/
|
|
40033
|
+
function?: pulumi.Input<inputs.GenerativeAi.AgentToolToolConfigFunction>;
|
|
40034
|
+
/**
|
|
40035
|
+
* (Updatable) Configuration to customize LLM.
|
|
40036
|
+
*/
|
|
40037
|
+
generationLlmCustomization?: pulumi.Input<inputs.GenerativeAi.AgentToolToolConfigGenerationLlmCustomization>;
|
|
40038
|
+
/**
|
|
40039
|
+
* (Updatable) The input location definition.
|
|
40040
|
+
*/
|
|
40041
|
+
iclExamples?: pulumi.Input<inputs.GenerativeAi.AgentToolToolConfigIclExamples>;
|
|
40042
|
+
/**
|
|
40043
|
+
* (Updatable) The KnowledgeBase configurations that this RAG Tool uses
|
|
40044
|
+
*/
|
|
40045
|
+
knowledgeBaseConfigs?: pulumi.Input<pulumi.Input<inputs.GenerativeAi.AgentToolToolConfigKnowledgeBaseConfig>[]>;
|
|
40046
|
+
/**
|
|
40047
|
+
* (Updatable) Size of the model.
|
|
40048
|
+
*/
|
|
40049
|
+
modelSize?: pulumi.Input<string>;
|
|
40050
|
+
/**
|
|
40051
|
+
* (Updatable) To enable/disable self correction.
|
|
40052
|
+
*/
|
|
40053
|
+
shouldEnableSelfCorrection?: pulumi.Input<boolean>;
|
|
40054
|
+
/**
|
|
40055
|
+
* (Updatable) To enable/disable SQL execution.
|
|
40056
|
+
*/
|
|
40057
|
+
shouldEnableSqlExecution?: pulumi.Input<boolean>;
|
|
40058
|
+
/**
|
|
40059
|
+
* (Updatable) The input location definition.
|
|
40060
|
+
*/
|
|
40061
|
+
tableAndColumnDescription?: pulumi.Input<inputs.GenerativeAi.AgentToolToolConfigTableAndColumnDescription>;
|
|
40062
|
+
/**
|
|
40063
|
+
* (Updatable) The type of the Tool config. The allowed values are:
|
|
40064
|
+
* * `SQL_TOOL_CONFIG`: The config for sql Tool.
|
|
40065
|
+
* * `RAG_TOOL_CONFIG`: The config for rag Tool.
|
|
40066
|
+
* * FUNCTION_CALLING_TOOL_CONFIG: The config for Function calling Tool.
|
|
40067
|
+
*
|
|
40068
|
+
*
|
|
40069
|
+
* ** IMPORTANT **
|
|
40070
|
+
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
40071
|
+
*/
|
|
40072
|
+
toolConfigType: pulumi.Input<string>;
|
|
40073
|
+
}
|
|
40074
|
+
interface AgentToolToolConfigDatabaseConnection {
|
|
40075
|
+
/**
|
|
40076
|
+
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Tools Connection.
|
|
40077
|
+
*/
|
|
40078
|
+
connectionId: pulumi.Input<string>;
|
|
40079
|
+
/**
|
|
40080
|
+
* (Updatable) The type of Database connection. The allowed values are:
|
|
40081
|
+
* * `DATABASE_TOOL_CONNECTION`: This allows the service to connect to a vector store via a Database Tools Connection.
|
|
40082
|
+
*/
|
|
40083
|
+
connectionType: pulumi.Input<string>;
|
|
40084
|
+
}
|
|
40085
|
+
interface AgentToolToolConfigDatabaseSchema {
|
|
40086
|
+
/**
|
|
40087
|
+
* (Updatable) The bucket name of an object.
|
|
40088
|
+
*/
|
|
40089
|
+
bucket?: pulumi.Input<string>;
|
|
40090
|
+
/**
|
|
40091
|
+
* (Updatable) Inline content as input.
|
|
40092
|
+
*/
|
|
40093
|
+
content?: pulumi.Input<string>;
|
|
40094
|
+
/**
|
|
40095
|
+
* (Updatable) Type of InputLocation. The allowed values are:
|
|
40096
|
+
* * `INLINE`: The input location is inline.
|
|
40097
|
+
* * `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
|
40098
|
+
*/
|
|
40099
|
+
inputLocationType: pulumi.Input<string>;
|
|
40100
|
+
/**
|
|
40101
|
+
* (Updatable) The namespace name of an object.
|
|
40102
|
+
*/
|
|
40103
|
+
namespace?: pulumi.Input<string>;
|
|
40104
|
+
/**
|
|
40105
|
+
* (Updatable) The prefix of file object(s) or folder prefix.
|
|
40106
|
+
*/
|
|
40107
|
+
prefix?: pulumi.Input<string>;
|
|
40108
|
+
}
|
|
40109
|
+
interface AgentToolToolConfigFunction {
|
|
40110
|
+
/**
|
|
40111
|
+
* (Updatable) A description of the function.
|
|
40112
|
+
*/
|
|
40113
|
+
description?: pulumi.Input<string>;
|
|
40114
|
+
/**
|
|
40115
|
+
* (Updatable) The name of the function to invoke.
|
|
40116
|
+
*/
|
|
40117
|
+
name?: pulumi.Input<string>;
|
|
40118
|
+
/**
|
|
40119
|
+
* (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.
|
|
40120
|
+
*/
|
|
40121
|
+
parameters?: pulumi.Input<{
|
|
40122
|
+
[key: string]: pulumi.Input<string>;
|
|
40123
|
+
}>;
|
|
40124
|
+
}
|
|
40125
|
+
interface AgentToolToolConfigGenerationLlmCustomization {
|
|
40126
|
+
/**
|
|
40127
|
+
* (Updatable) If specified, the default instruction is replaced with provided instruction.
|
|
40128
|
+
*/
|
|
40129
|
+
instruction?: pulumi.Input<string>;
|
|
40130
|
+
}
|
|
40131
|
+
interface AgentToolToolConfigIclExamples {
|
|
40132
|
+
/**
|
|
40133
|
+
* (Updatable) The bucket name of an object.
|
|
40134
|
+
*/
|
|
40135
|
+
bucket?: pulumi.Input<string>;
|
|
40136
|
+
/**
|
|
40137
|
+
* (Updatable) Inline content as input.
|
|
40138
|
+
*/
|
|
40139
|
+
content?: pulumi.Input<string>;
|
|
40140
|
+
/**
|
|
40141
|
+
* (Updatable) Type of InputLocation. The allowed values are:
|
|
40142
|
+
* * `INLINE`: The input location is inline.
|
|
40143
|
+
* * `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
|
40144
|
+
*/
|
|
40145
|
+
inputLocationType: pulumi.Input<string>;
|
|
40146
|
+
/**
|
|
40147
|
+
* (Updatable) The namespace name of an object.
|
|
40148
|
+
*/
|
|
40149
|
+
namespace?: pulumi.Input<string>;
|
|
40150
|
+
/**
|
|
40151
|
+
* (Updatable) The prefix of file object(s) or folder prefix.
|
|
40152
|
+
*/
|
|
40153
|
+
prefix?: pulumi.Input<string>;
|
|
40154
|
+
}
|
|
40155
|
+
interface AgentToolToolConfigKnowledgeBaseConfig {
|
|
40156
|
+
/**
|
|
40157
|
+
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBase this RAG Tool uses
|
|
40158
|
+
*/
|
|
40159
|
+
knowledgeBaseId?: pulumi.Input<string>;
|
|
40160
|
+
}
|
|
40161
|
+
interface AgentToolToolConfigTableAndColumnDescription {
|
|
40162
|
+
/**
|
|
40163
|
+
* (Updatable) The bucket name of an object.
|
|
40164
|
+
*/
|
|
40165
|
+
bucket?: pulumi.Input<string>;
|
|
40166
|
+
/**
|
|
40167
|
+
* (Updatable) Inline content as input.
|
|
40168
|
+
*/
|
|
40169
|
+
content?: pulumi.Input<string>;
|
|
40170
|
+
/**
|
|
40171
|
+
* (Updatable) Type of InputLocation. The allowed values are:
|
|
40172
|
+
* * `INLINE`: The input location is inline.
|
|
40173
|
+
* * `OBJECT_STORAGE_PREFIX`: The input location is object storage.
|
|
40174
|
+
*/
|
|
40175
|
+
inputLocationType: pulumi.Input<string>;
|
|
40176
|
+
/**
|
|
40177
|
+
* (Updatable) The namespace name of an object.
|
|
40178
|
+
*/
|
|
40179
|
+
namespace?: pulumi.Input<string>;
|
|
40180
|
+
/**
|
|
40181
|
+
* (Updatable) The prefix of file object(s) or folder prefix.
|
|
40182
|
+
*/
|
|
40183
|
+
prefix?: pulumi.Input<string>;
|
|
40184
|
+
}
|
|
39855
40185
|
interface DedicatedAiClusterCapacity {
|
|
39856
40186
|
/**
|
|
39857
40187
|
* The type of the dedicated AI cluster capacity.
|
|
@@ -39928,6 +40258,22 @@ export declare namespace GenerativeAi {
|
|
|
39928
40258
|
regex?: pulumi.Input<boolean>;
|
|
39929
40259
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
39930
40260
|
}
|
|
40261
|
+
interface GetAgentToolsFilter {
|
|
40262
|
+
/**
|
|
40263
|
+
* The name of the function to invoke.
|
|
40264
|
+
*/
|
|
40265
|
+
name: string;
|
|
40266
|
+
regex?: boolean;
|
|
40267
|
+
values: string[];
|
|
40268
|
+
}
|
|
40269
|
+
interface GetAgentToolsFilterArgs {
|
|
40270
|
+
/**
|
|
40271
|
+
* The name of the function to invoke.
|
|
40272
|
+
*/
|
|
40273
|
+
name: pulumi.Input<string>;
|
|
40274
|
+
regex?: pulumi.Input<boolean>;
|
|
40275
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
40276
|
+
}
|
|
39931
40277
|
interface GetDedicatedAiClustersFilter {
|
|
39932
40278
|
name: string;
|
|
39933
40279
|
regex?: boolean;
|
|
@@ -79897,6 +80243,10 @@ export declare namespace OspGateway {
|
|
|
79897
80243
|
* (Updatable) Subscription id identifier (OCID).
|
|
79898
80244
|
*/
|
|
79899
80245
|
id?: pulumi.Input<string>;
|
|
80246
|
+
/**
|
|
80247
|
+
* (Updatable) Corporate conversion allowed status
|
|
80248
|
+
*/
|
|
80249
|
+
isCorporateConversionAllowed?: pulumi.Input<boolean>;
|
|
79900
80250
|
/**
|
|
79901
80251
|
* (Updatable) Payment intension.
|
|
79902
80252
|
*/
|