@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
708 lines • 28.2 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* ReasoningEngine provides a customizable runtime for models to determine which actions to take and in which order.
*
* To get more information about ReasoningEngine, see:
*
* * [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.reasoningEngines/)
* * How-to Guides
* * [Develop and deploy agents on Vertex AI Agent Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/quickstart)
*
* ## Example Usage
*
* ### Vertex Ai Reasoning Engine Source Based Deployment
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as std from "@pulumi/std";
*
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "reasoning-engine",
* description: "A basic reasoning engine",
* region: "us-central1",
* spec: {
* sourceCodeSpec: {
* inlineSource: {
* sourceArchive: std.filebase64({
* input: "./test-fixtures/source.tar.gz",
* }).then(invoke => invoke.result),
* },
* pythonSpec: {
* entrypointModule: "simple_agent",
* entrypointObject: "fixed_name_generator",
* version: "3.14",
* },
* },
* },
* });
* ```
* ### Vertex Ai Reasoning Engine Developer Connect Source
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const project = gcp.organizations.getProject({});
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "reasoning-engine",
* description: "A basic reasoning engine",
* region: "us-central1",
* spec: {
* sourceCodeSpec: {
* developerConnectSource: {
* config: {
* gitRepositoryLink: project.then(project => `projects/${project.projectId}/locations/us-central1/connections/tpg-test-bot-github/gitRepositoryLinks/tpg-test-vertex-reasoning`),
* dir: "source",
* revision: "main",
* },
* },
* pythonSpec: {
* version: "3.14",
* entrypointModule: "simple_agent",
* entrypointObject: "fixed_name_generator",
* },
* },
* },
* });
* ```
* ### Vertex Ai Reasoning Engine Image Spec
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as std from "@pulumi/std";
*
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "reasoning-engine",
* description: "Deployed with BYOC Dockerfile through Terraform",
* region: "us-central1",
* spec: {
* sourceCodeSpec: {
* inlineSource: {
* sourceArchive: std.filebase64({
* input: "./test-fixtures/agent_src.tar.gz",
* }).then(invoke => invoke.result),
* },
* imageSpec: {
* buildArgs: {},
* },
* },
* },
* });
* ```
* ### Vertex Ai Reasoning Engine Byoc
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as std from "@pulumi/std";
*
* const project = gcp.organizations.getProject({});
* const vertexArReader = new gcp.projects.IAMMember("vertex_ar_reader", {
* project: project.then(project => project.projectId),
* role: "roles/artifactregistry.reader",
* member: project.then(project => `serviceAccount:service-${project.number}@gcp-sa-aiplatform-re.iam.gserviceaccount.com`),
* });
* // Provision and retrieve the tenant service agent through another agent
* const tenantMdsAiReasoningEngine = new gcp.vertex.AiReasoningEngine("tenant_mds", {
* displayName: "reasoning-engine-mds",
* region: "us-central1",
* spec: {
* sourceCodeSpec: {
* inlineSource: {
* sourceArchive: std.filebase64({
* input: "./test-fixtures/mds_agent_src.tar.gz",
* }).then(invoke => invoke.result),
* },
* pythonSpec: {
* entrypointModule: "metadata_agent",
* entrypointObject: "root_agent",
* },
* },
* },
* });
* const tenantMds = gcp.vertex.getAiReasoningEngineQueryOutput({
* region: "us-central1",
* reasoningEngineId: tenantMdsAiReasoningEngine.name,
* });
* const tenantArReader = new gcp.projects.IAMMember("tenant_ar_reader", {
* project: project.then(project => project.projectId),
* role: "roles/artifactregistry.reader",
* member: std.jsondecodeOutput({
* input: tenantMds.apply(tenantMds => tenantMds.output),
* }).apply(invoke => `serviceAccount:${invoke.result?.output}`),
* });
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "reasoning-engine",
* description: "Deployed with BYOC through Terraform",
* region: "us-central1",
* spec: {
* containerSpec: {
* imageUri: project.then(project => `us-central1-docker.pkg.dev/${project.projectId}/vertex-byoc/byoc-agent:latest`),
* },
* },
* }, {
* dependsOn: [
* vertexArReader,
* tenantArReader,
* ],
* });
* ```
* ### Vertex Ai Reasoning Engine Psc Interface
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as time from "@pulumiverse/time";
*
* const bucket = new gcp.storage.Bucket("bucket", {
* name: "reasoning-engine",
* location: "us-central1",
* uniformBucketLevelAccess: true,
* forceDestroy: true,
* });
* const bucketObjRequirementsTxt = new gcp.storage.BucketObject("bucket_obj_requirements_txt", {
* name: "requirements.txt",
* bucket: bucket.id,
* source: new pulumi.asset.FileAsset("./test-fixtures/requirements_adk.txt"),
* });
* const bucketObjPickle = new gcp.storage.BucketObject("bucket_obj_pickle", {
* name: "code.pkl",
* bucket: bucket.id,
* source: new pulumi.asset.FileAsset("./test-fixtures/pickle_adk.pkl"),
* });
* const bucketObjDependenciesTarGz = new gcp.storage.BucketObject("bucket_obj_dependencies_tar_gz", {
* name: "dependencies.tar.gz",
* bucket: bucket.id,
* source: new pulumi.asset.FileAsset("./test-fixtures/dependencies_adk.tar.gz"),
* });
* const network = new gcp.compute.Network("network", {
* name: "network",
* autoCreateSubnetworks: false,
* });
* const subnetwork = new gcp.compute.Subnetwork("subnetwork", {
* name: "subnetwork",
* region: "us-central1",
* ipCidrRange: "10.0.0.0/16",
* network: network.id,
* });
* const networkAttachment = new gcp.compute.NetworkAttachment("network_attachment", {
* name: "network-attachment",
* region: "us-central1",
* connectionPreference: "ACCEPT_MANUAL",
* subnetworks: [subnetwork.id],
* });
* // Destroy network attachment 35 minutes after reasoning engine is deleted.
* // It guarantees that the network attachment has no more active PSC interfaces.
* const wait35Minutes = new time.Sleep("wait_35_minutes", {destroyDuration: "35m"}, {
* dependsOn: [networkAttachment],
* });
* const project = gcp.organizations.getProject({});
* // When PSC-I is configured, Agent deletion will fail,
* // although the agent will be deleted.
* // Bug at https://github.com/hashicorp/terraform-provider-google/issues/25637
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "reasoning-engine",
* description: "A basic reasoning engine",
* region: "us-central1",
* spec: {
* agentFramework: "google-adk",
* packageSpec: {
* pythonVersion: "3.11",
* dependencyFilesGcsUri: pulumi.interpolate`${bucket.url}/${bucketObjDependenciesTarGz.name}`,
* pickleObjectGcsUri: pulumi.interpolate`${bucket.url}/${bucketObjPickle.name}`,
* requirementsGcsUri: pulumi.interpolate`${bucket.url}/${bucketObjRequirementsTxt.name}`,
* },
* deploymentSpec: {
* pscInterfaceConfig: {
* networkAttachment: networkAttachment.id,
* dnsPeeringConfigs: [{
* domain: "example.com.",
* targetProject: project.then(project => project.projectId),
* targetNetwork: network.name,
* }],
* },
* },
* },
* }, {
* dependsOn: [wait35Minutes],
* });
* ```
* ### Vertex Ai Reasoning Engine Full
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as time from "@pulumiverse/time";
*
* const classMethods = [{
* apiMode: "async",
* description: null,
* name: "async_query",
* parameters: {
* type: "object",
* required: [],
* properties: {},
* },
* }];
* const secret = new gcp.secretmanager.Secret("secret", {
* secretId: "secret",
* replication: {
* auto: {},
* },
* });
* const secretVersion = new gcp.secretmanager.SecretVersion("secret_version", {
* secret: secret.id,
* secretData: "test",
* });
* const serviceAccount = new gcp.serviceaccount.Account("service_account", {accountId: "sa"});
* const secretAccess = new gcp.secretmanager.SecretIamMember("secret_access", {
* secretId: secret.id,
* role: "roles/secretmanager.secretAccessor",
* member: serviceAccount.member,
* });
* const project = gcp.organizations.getProject({});
* const saIamObjectViewer = new gcp.projects.IAMMember("sa_iam_object_viewer", {
* role: "roles/storage.objectViewer",
* project: project.then(project => project.id),
* member: serviceAccount.member,
* });
* const saIamAiPlatformUser = new gcp.projects.IAMMember("sa_iam_ai_platform_user", {
* role: "roles/aiplatform.user",
* project: project.then(project => project.id),
* member: serviceAccount.member,
* });
* const saIamViewer = new gcp.projects.IAMMember("sa_iam_viewer", {
* role: "roles/viewer",
* project: project.then(project => project.id),
* member: serviceAccount.member,
* });
* // Ensure we wait enough time for IAM permissions to be propagated
* const wait5Minutes = new time.Sleep("wait_5_minutes", {createDuration: "5m"}, {
* dependsOn: [
* saIamAiPlatformUser,
* saIamObjectViewer,
* saIamViewer,
* secretAccess,
* secretVersion,
* ],
* });
* const bucket = new gcp.storage.Bucket("bucket", {
* name: "reasoning-engine",
* location: "us-central1",
* uniformBucketLevelAccess: true,
* forceDestroy: true,
* });
* const bucketObjRequirementsTxt = new gcp.storage.BucketObject("bucket_obj_requirements_txt", {
* name: "requirements.txt",
* bucket: bucket.id,
* source: new pulumi.asset.FileAsset("./test-fixtures/requirements_adk.txt"),
* });
* const bucketObjPickle = new gcp.storage.BucketObject("bucket_obj_pickle", {
* name: "code.pkl",
* bucket: bucket.id,
* source: new pulumi.asset.FileAsset("./test-fixtures/pickle_adk.pkl"),
* });
* const bucketObjDependenciesTarGz = new gcp.storage.BucketObject("bucket_obj_dependencies_tar_gz", {
* name: "dependencies.tar.gz",
* bucket: bucket.id,
* source: new pulumi.asset.FileAsset("./test-fixtures/dependencies_adk.tar.gz"),
* });
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "reasoning-engine",
* description: "A basic reasoning engine",
* region: "us-central1",
* encryptionSpec: {
* kmsKeyName: "example-key",
* },
* spec: {
* agentFramework: "google-adk",
* classMethods: JSON.stringify(classMethods),
* serviceAccount: serviceAccount.email,
* deploymentSpec: {
* minInstances: 1,
* maxInstances: 3,
* containerConcurrency: 5,
* resourceLimits: {
* cpu: "4",
* memory: "4Gi",
* },
* envs: [
* {
* name: "var_1",
* value: "value_2",
* },
* {
* name: "var_2",
* value: "value_2",
* },
* ],
* secretEnvs: [
* {
* name: "secret_var_1",
* secretRef: {
* secret: secret.secretId,
* version: "latest",
* },
* },
* {
* name: "secret_var_2",
* secretRef: {
* secret: secret.secretId,
* version: "latest",
* },
* },
* ],
* },
* packageSpec: {
* dependencyFilesGcsUri: pulumi.interpolate`${bucket.url}/${bucketObjDependenciesTarGz.name}`,
* pickleObjectGcsUri: pulumi.interpolate`${bucket.url}/${bucketObjPickle.name}`,
* pythonVersion: "3.11",
* requirementsGcsUri: pulumi.interpolate`${bucket.url}/${bucketObjRequirementsTxt.name}`,
* },
* },
* }, {
* dependsOn: [wait5Minutes],
* });
* ```
* ### Vertex Ai Reasoning Engine Context Spec
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const project = gcp.organizations.getProject({});
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "re-ctx-spec",
* description: "Reasoning engine with context spec",
* region: "us-central1",
* contextSpec: {
* memoryBankConfig: {
* generationConfig: {
* model: project.then(project => `projects/${project.projectId}/locations/us-central1/publishers/google/models/gemini-2.5-flash`),
* },
* similaritySearchConfig: {
* embeddingModel: project.then(project => `projects/${project.projectId}/locations/us-central1/publishers/google/models/text-embedding-005`),
* },
* disableMemoryRevisions: false,
* ttlConfig: {
* defaultTtl: "86400s",
* },
* },
* },
* });
* ```
* ### Vertex Ai Reasoning Engine Granular Ttl
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const project = gcp.organizations.getProject({});
* const reasoningEngine = new gcp.vertex.AiReasoningEngine("reasoning_engine", {
* displayName: "re-gran-ttl",
* description: "Reasoning engine with granular ttl",
* region: "us-central1",
* contextSpec: {
* memoryBankConfig: {
* generationConfig: {
* model: project.then(project => `projects/${project.projectId}/locations/us-central1/publishers/google/models/gemini-2.5-flash`),
* },
* similaritySearchConfig: {
* embeddingModel: project.then(project => `projects/${project.projectId}/locations/us-central1/publishers/google/models/text-embedding-005`),
* },
* disableMemoryRevisions: false,
* ttlConfig: {
* memoryRevisionDefaultTtl: "86400s",
* granularTtlConfig: {
* createTtl: "86400s",
* generateCreatedTtl: "86400s",
* generateUpdatedTtl: "86400s",
* },
* },
* },
* },
* });
* ```
*
* ## Import
*
* ReasoningEngine can be imported using any of these accepted formats:
*
* * `projects/{{project}}/locations/{{region}}/reasoningEngines/{{name}}`
* * `{{project}}/{{region}}/{{name}}`
* * `{{region}}/{{name}}`
* * `{{name}}`
*
* When using the `pulumi import` command, ReasoningEngine can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:vertex/aiReasoningEngine:AiReasoningEngine default projects/{{project}}/locations/{{region}}/reasoningEngines/{{name}}
* $ pulumi import gcp:vertex/aiReasoningEngine:AiReasoningEngine default {{project}}/{{region}}/{{name}}
* $ pulumi import gcp:vertex/aiReasoningEngine:AiReasoningEngine default {{region}}/{{name}}
* $ pulumi import gcp:vertex/aiReasoningEngine:AiReasoningEngine default {{name}}
* ```
*/
export declare class AiReasoningEngine extends pulumi.CustomResource {
/**
* Get an existing AiReasoningEngine resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AiReasoningEngineState, opts?: pulumi.CustomResourceOptions): AiReasoningEngine;
/**
* Returns true if the given object is an instance of AiReasoningEngine. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is AiReasoningEngine;
/**
* (Optional, Beta)
* Optional. Configuration for how Agent Engine sub-resources should manage context.
* Structure is documented below.
*/
readonly contextSpec: pulumi.Output<outputs.vertex.AiReasoningEngineContextSpec | undefined>;
/**
* The timestamp of when the Index was created in RFC3339 UTC "Zulu" format,
* with nanosecond resolution and up to nine fractional digits.
*/
readonly createTime: pulumi.Output<string>;
/**
* Optional. The deletion policy for the reasoning engine.
* Setting this to FORCE allows the reasoning engine to be deleted regardless of child undeleted resources.
*
* When a 'terraform destroy' or 'pulumi up' would delete the resource,
* the command will fail if this field is set to "PREVENT" in Terraform state.
* When set to "ABANDON", the command will remove the resource from Terraform
* management without updating or deleting the resource in the API.
* When set to "DELETE", deleting the resource is permitted.
*/
readonly deletionPolicy: pulumi.Output<string>;
/**
* The description of the ReasoningEngine.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The display name of the ReasoningEngine.
*/
readonly displayName: pulumi.Output<string>;
/**
* All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
*/
readonly effectiveLabels: pulumi.Output<{
[key: string]: string;
}>;
/**
* Optional. Customer-managed encryption key spec for a ReasoningEngine.
* If set, this ReasoningEngine and all sub-resources of this ReasoningEngine
* will be secured by this key.
* Structure is documented below.
*/
readonly encryptionSpec: pulumi.Output<outputs.vertex.AiReasoningEngineEncryptionSpec | undefined>;
/**
* The labels associated with this ReasoningEngine. You can use these to
* organize and group your ReasoningEngines.
*
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effectiveLabels` for all of the labels present on the resource.
*/
readonly labels: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* The generated name of the ReasoningEngine, in the format
* projects/{project}/locations/{location}/reasoningEngines/{reasoningEngine}
*/
readonly name: pulumi.Output<string>;
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
readonly project: pulumi.Output<string>;
/**
* The combination of labels configured directly on the resource
* and default labels configured on the provider.
*/
readonly pulumiLabels: pulumi.Output<{
[key: string]: string;
}>;
/**
* The region of the reasoning engine. eg us-central1
*/
readonly region: pulumi.Output<string | undefined>;
/**
* Optional. Configurations of the ReasoningEngine.
* Structure is documented below.
*/
readonly spec: pulumi.Output<outputs.vertex.AiReasoningEngineSpec>;
/**
* The timestamp of when the Index was last updated in RFC3339 UTC "Zulu"
* format, with nanosecond resolution and up to nine fractional digits.
*/
readonly updateTime: pulumi.Output<string>;
/**
* Create a AiReasoningEngine resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: AiReasoningEngineArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering AiReasoningEngine resources.
*/
export interface AiReasoningEngineState {
/**
* (Optional, Beta)
* Optional. Configuration for how Agent Engine sub-resources should manage context.
* Structure is documented below.
*/
contextSpec?: pulumi.Input<inputs.vertex.AiReasoningEngineContextSpec | undefined>;
/**
* The timestamp of when the Index was created in RFC3339 UTC "Zulu" format,
* with nanosecond resolution and up to nine fractional digits.
*/
createTime?: pulumi.Input<string | undefined>;
/**
* Optional. The deletion policy for the reasoning engine.
* Setting this to FORCE allows the reasoning engine to be deleted regardless of child undeleted resources.
*
* When a 'terraform destroy' or 'pulumi up' would delete the resource,
* the command will fail if this field is set to "PREVENT" in Terraform state.
* When set to "ABANDON", the command will remove the resource from Terraform
* management without updating or deleting the resource in the API.
* When set to "DELETE", deleting the resource is permitted.
*/
deletionPolicy?: pulumi.Input<string | undefined>;
/**
* The description of the ReasoningEngine.
*/
description?: pulumi.Input<string | undefined>;
/**
* The display name of the ReasoningEngine.
*/
displayName?: pulumi.Input<string | undefined>;
/**
* All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
*/
effectiveLabels?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
} | undefined>;
/**
* Optional. Customer-managed encryption key spec for a ReasoningEngine.
* If set, this ReasoningEngine and all sub-resources of this ReasoningEngine
* will be secured by this key.
* Structure is documented below.
*/
encryptionSpec?: pulumi.Input<inputs.vertex.AiReasoningEngineEncryptionSpec | undefined>;
/**
* The labels associated with this ReasoningEngine. You can use these to
* organize and group your ReasoningEngines.
*
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effectiveLabels` for all of the labels present on the resource.
*/
labels?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
} | undefined>;
/**
* The generated name of the ReasoningEngine, in the format
* projects/{project}/locations/{location}/reasoningEngines/{reasoningEngine}
*/
name?: pulumi.Input<string | undefined>;
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
project?: pulumi.Input<string | undefined>;
/**
* The combination of labels configured directly on the resource
* and default labels configured on the provider.
*/
pulumiLabels?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
} | undefined>;
/**
* The region of the reasoning engine. eg us-central1
*/
region?: pulumi.Input<string | undefined>;
/**
* Optional. Configurations of the ReasoningEngine.
* Structure is documented below.
*/
spec?: pulumi.Input<inputs.vertex.AiReasoningEngineSpec | undefined>;
/**
* The timestamp of when the Index was last updated in RFC3339 UTC "Zulu"
* format, with nanosecond resolution and up to nine fractional digits.
*/
updateTime?: pulumi.Input<string | undefined>;
}
/**
* The set of arguments for constructing a AiReasoningEngine resource.
*/
export interface AiReasoningEngineArgs {
/**
* (Optional, Beta)
* Optional. Configuration for how Agent Engine sub-resources should manage context.
* Structure is documented below.
*/
contextSpec?: pulumi.Input<inputs.vertex.AiReasoningEngineContextSpec | undefined>;
/**
* Optional. The deletion policy for the reasoning engine.
* Setting this to FORCE allows the reasoning engine to be deleted regardless of child undeleted resources.
*
* When a 'terraform destroy' or 'pulumi up' would delete the resource,
* the command will fail if this field is set to "PREVENT" in Terraform state.
* When set to "ABANDON", the command will remove the resource from Terraform
* management without updating or deleting the resource in the API.
* When set to "DELETE", deleting the resource is permitted.
*/
deletionPolicy?: pulumi.Input<string | undefined>;
/**
* The description of the ReasoningEngine.
*/
description?: pulumi.Input<string | undefined>;
/**
* The display name of the ReasoningEngine.
*/
displayName: pulumi.Input<string>;
/**
* Optional. Customer-managed encryption key spec for a ReasoningEngine.
* If set, this ReasoningEngine and all sub-resources of this ReasoningEngine
* will be secured by this key.
* Structure is documented below.
*/
encryptionSpec?: pulumi.Input<inputs.vertex.AiReasoningEngineEncryptionSpec | undefined>;
/**
* The labels associated with this ReasoningEngine. You can use these to
* organize and group your ReasoningEngines.
*
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effectiveLabels` for all of the labels present on the resource.
*/
labels?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
} | undefined>;
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
project?: pulumi.Input<string | undefined>;
/**
* The region of the reasoning engine. eg us-central1
*/
region?: pulumi.Input<string | undefined>;
/**
* Optional. Configurations of the ReasoningEngine.
* Structure is documented below.
*/
spec?: pulumi.Input<inputs.vertex.AiReasoningEngineSpec | undefined>;
}
//# sourceMappingURL=aiReasoningEngine.d.ts.map