UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

276 lines (275 loc) 15.4 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface GenerativeAiAgentAgentEndpointConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#agent_id GenerativeAiAgentAgentEndpoint#agent_id} */ readonly agentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#compartment_id GenerativeAiAgentAgentEndpoint#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#defined_tags GenerativeAiAgentAgentEndpoint#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#description GenerativeAiAgentAgentEndpoint#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#display_name GenerativeAiAgentAgentEndpoint#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#freeform_tags GenerativeAiAgentAgentEndpoint#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#id GenerativeAiAgentAgentEndpoint#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#should_enable_citation GenerativeAiAgentAgentEndpoint#should_enable_citation} */ readonly shouldEnableCitation?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#should_enable_session GenerativeAiAgentAgentEndpoint#should_enable_session} */ readonly shouldEnableSession?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#should_enable_trace GenerativeAiAgentAgentEndpoint#should_enable_trace} */ readonly shouldEnableTrace?: boolean | cdktf.IResolvable; /** * content_moderation_config block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#content_moderation_config GenerativeAiAgentAgentEndpoint#content_moderation_config} */ readonly contentModerationConfig?: GenerativeAiAgentAgentEndpointContentModerationConfig; /** * session_config block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#session_config GenerativeAiAgentAgentEndpoint#session_config} */ readonly sessionConfig?: GenerativeAiAgentAgentEndpointSessionConfig; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#timeouts GenerativeAiAgentAgentEndpoint#timeouts} */ readonly timeouts?: GenerativeAiAgentAgentEndpointTimeouts; } export interface GenerativeAiAgentAgentEndpointContentModerationConfig { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#should_enable_on_input GenerativeAiAgentAgentEndpoint#should_enable_on_input} */ readonly shouldEnableOnInput?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#should_enable_on_output GenerativeAiAgentAgentEndpoint#should_enable_on_output} */ readonly shouldEnableOnOutput?: boolean | cdktf.IResolvable; } export declare function generativeAiAgentAgentEndpointContentModerationConfigToTerraform(struct?: GenerativeAiAgentAgentEndpointContentModerationConfigOutputReference | GenerativeAiAgentAgentEndpointContentModerationConfig): any; export declare function generativeAiAgentAgentEndpointContentModerationConfigToHclTerraform(struct?: GenerativeAiAgentAgentEndpointContentModerationConfigOutputReference | GenerativeAiAgentAgentEndpointContentModerationConfig): any; export declare class GenerativeAiAgentAgentEndpointContentModerationConfigOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): GenerativeAiAgentAgentEndpointContentModerationConfig | undefined; set internalValue(value: GenerativeAiAgentAgentEndpointContentModerationConfig | undefined); private _shouldEnableOnInput?; get shouldEnableOnInput(): boolean | cdktf.IResolvable; set shouldEnableOnInput(value: boolean | cdktf.IResolvable); resetShouldEnableOnInput(): void; get shouldEnableOnInputInput(): boolean | cdktf.IResolvable | undefined; private _shouldEnableOnOutput?; get shouldEnableOnOutput(): boolean | cdktf.IResolvable; set shouldEnableOnOutput(value: boolean | cdktf.IResolvable); resetShouldEnableOnOutput(): void; get shouldEnableOnOutputInput(): boolean | cdktf.IResolvable | undefined; } export interface GenerativeAiAgentAgentEndpointSessionConfig { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#idle_timeout_in_seconds GenerativeAiAgentAgentEndpoint#idle_timeout_in_seconds} */ readonly idleTimeoutInSeconds?: number; } export declare function generativeAiAgentAgentEndpointSessionConfigToTerraform(struct?: GenerativeAiAgentAgentEndpointSessionConfigOutputReference | GenerativeAiAgentAgentEndpointSessionConfig): any; export declare function generativeAiAgentAgentEndpointSessionConfigToHclTerraform(struct?: GenerativeAiAgentAgentEndpointSessionConfigOutputReference | GenerativeAiAgentAgentEndpointSessionConfig): any; export declare class GenerativeAiAgentAgentEndpointSessionConfigOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): GenerativeAiAgentAgentEndpointSessionConfig | undefined; set internalValue(value: GenerativeAiAgentAgentEndpointSessionConfig | undefined); private _idleTimeoutInSeconds?; get idleTimeoutInSeconds(): number; set idleTimeoutInSeconds(value: number); resetIdleTimeoutInSeconds(): void; get idleTimeoutInSecondsInput(): number | undefined; } export interface GenerativeAiAgentAgentEndpointTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#create GenerativeAiAgentAgentEndpoint#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#delete GenerativeAiAgentAgentEndpoint#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#update GenerativeAiAgentAgentEndpoint#update} */ readonly update?: string; } export declare function generativeAiAgentAgentEndpointTimeoutsToTerraform(struct?: GenerativeAiAgentAgentEndpointTimeouts | cdktf.IResolvable): any; export declare function generativeAiAgentAgentEndpointTimeoutsToHclTerraform(struct?: GenerativeAiAgentAgentEndpointTimeouts | cdktf.IResolvable): any; export declare class GenerativeAiAgentAgentEndpointTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): GenerativeAiAgentAgentEndpointTimeouts | cdktf.IResolvable | undefined; set internalValue(value: GenerativeAiAgentAgentEndpointTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint oci_generative_ai_agent_agent_endpoint} */ export declare class GenerativeAiAgentAgentEndpoint extends cdktf.TerraformResource { static readonly tfResourceType = "oci_generative_ai_agent_agent_endpoint"; /** * Generates CDKTF code for importing a GenerativeAiAgentAgentEndpoint resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the GenerativeAiAgentAgentEndpoint to import * @param importFromId The id of the existing GenerativeAiAgentAgentEndpoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the GenerativeAiAgentAgentEndpoint to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generative_ai_agent_agent_endpoint oci_generative_ai_agent_agent_endpoint} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options GenerativeAiAgentAgentEndpointConfig */ constructor(scope: Construct, id: string, config: GenerativeAiAgentAgentEndpointConfig); private _agentId?; get agentId(): string; set agentId(value: string); get agentIdInput(): string | undefined; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string | undefined; private _freeformTags?; get freeformTags(): { [key: string]: string; }; set freeformTags(value: { [key: string]: string; }); resetFreeformTags(): void; get freeformTagsInput(): { [key: string]: string; } | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; get lifecycleDetails(): string; private _shouldEnableCitation?; get shouldEnableCitation(): boolean | cdktf.IResolvable; set shouldEnableCitation(value: boolean | cdktf.IResolvable); resetShouldEnableCitation(): void; get shouldEnableCitationInput(): boolean | cdktf.IResolvable | undefined; private _shouldEnableSession?; get shouldEnableSession(): boolean | cdktf.IResolvable; set shouldEnableSession(value: boolean | cdktf.IResolvable); resetShouldEnableSession(): void; get shouldEnableSessionInput(): boolean | cdktf.IResolvable | undefined; private _shouldEnableTrace?; get shouldEnableTrace(): boolean | cdktf.IResolvable; set shouldEnableTrace(value: boolean | cdktf.IResolvable); resetShouldEnableTrace(): void; get shouldEnableTraceInput(): boolean | cdktf.IResolvable | undefined; get state(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; private _contentModerationConfig; get contentModerationConfig(): GenerativeAiAgentAgentEndpointContentModerationConfigOutputReference; putContentModerationConfig(value: GenerativeAiAgentAgentEndpointContentModerationConfig): void; resetContentModerationConfig(): void; get contentModerationConfigInput(): GenerativeAiAgentAgentEndpointContentModerationConfig | undefined; private _sessionConfig; get sessionConfig(): GenerativeAiAgentAgentEndpointSessionConfigOutputReference; putSessionConfig(value: GenerativeAiAgentAgentEndpointSessionConfig): void; resetSessionConfig(): void; get sessionConfigInput(): GenerativeAiAgentAgentEndpointSessionConfig | undefined; private _timeouts; get timeouts(): GenerativeAiAgentAgentEndpointTimeoutsOutputReference; putTimeouts(value: GenerativeAiAgentAgentEndpointTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | GenerativeAiAgentAgentEndpointTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }