Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions packages/google-cloud-aiplatform/.jsdoc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025 Google LLC
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -40,7 +40,7 @@ module.exports = {
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2025 Google LLC',
copyright: 'Copyright 2026 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/aiplatform',
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-aiplatform/.mocharc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025 Google LLC
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-aiplatform/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025 Google LLC
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025 Google LLC
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -798,7 +798,7 @@ message RagManagedDbConfig {
// * Latency insensitive workload.
// * Only using RAG Engine with external vector DBs.
//
// NOTE: This is the default tier if not explicitly chosen.
// NOTE: This is the default tier under Spanner mode if not explicitly chosen.
message Basic {}

// Disables the RAG Engine service and deletes all your data held
Expand All @@ -809,20 +809,52 @@ message RagManagedDbConfig {
// UpdateRagEngineConfig API.
message Unprovisioned {}

// Message to configure the Spanner database used by RagManagedDb.
message Spanner {
// The tier of the RagManagedDb, built on top of Spanner.
oneof tier {
// Sets the RagManagedDb to the Scaled tier.
Scaled scaled = 1;

// Sets the RagManagedDb to the Basic tier. This is the default tier for
// Spanner mode if not explicitly chosen.
Basic basic = 2;

// Sets the RagManagedDb to the Unprovisioned tier.
Unprovisioned unprovisioned = 3;
}
}

// Message to configure the serverless mode offered by RAG Engine.
message Serverless {}

// The tier of the RagManagedDb.
oneof tier {
// Sets the RagManagedDb to the Enterprise tier.
Enterprise enterprise = 1 [deprecated = true];

// Sets the RagManagedDb to the Scaled tier. This is the default tier
// if not explicitly chosen.
Scaled scaled = 4;
// Deprecated: Use `mode` instead to set the tier under Spanner.
// Sets the RagManagedDb to the Scaled tier.
Scaled scaled = 4 [deprecated = true];

// Deprecated: Use `mode` instead to set the tier under Spanner.
// Sets the RagManagedDb to the Basic tier.
Basic basic = 2;
Basic basic = 2 [deprecated = true];

// Deprecated: Use `mode` instead to set the tier under Spanner.
// Sets the RagManagedDb to the Unprovisioned tier.
Unprovisioned unprovisioned = 3;
Unprovisioned unprovisioned = 3 [deprecated = true];
}

// The choice of backend for your RagEngine.
oneof mode {
// Sets the backend to be the serverless mode offered by RAG Engine.
Serverless serverless = 5;

// Sets the RAG Engine backend to be RagManagedDb, built on top of Spanner.
//
// NOTE: This is the default mode (w/ Basic Tier) if not explicitly chosen.
Spanner spanner = 6;
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025 Google LLC
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025 Google LLC
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Loading