Skip to content

Commit d9bddea

Browse files
committed
2 parents 3ec521d + 81c4bde commit d9bddea

20 files changed

Lines changed: 133 additions & 32 deletions

mmv1/products/vectorsearch/Collection.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ examples:
2626
primary_resource_id: "example-collection"
2727
vars:
2828
collection_id: "example-collection"
29+
- name: vectorsearch_collection_cmek
30+
primary_resource_id: "example-cmek-collection"
31+
vars:
32+
collection_id: "example-cmek-collection"
2933
autogen_async: true
3034
async:
3135
operation:
@@ -81,6 +85,23 @@ properties:
8185
- name: displayName
8286
type: String
8387
description: User-specified display name of the collection
88+
- name: encryptionSpec
89+
type: NestedObject
90+
description: |-
91+
Represents a customer-managed encryption key specification that can be
92+
applied to a Vector Search collection.
93+
immutable: true
94+
properties:
95+
- name: cryptoKeyName
96+
type: String
97+
required: true
98+
immutable: true
99+
description: |-
100+
Resource name of the Cloud KMS key used to protect the resource.
101+
102+
The Cloud KMS key must be in the same region as the resource. It must have
103+
the format
104+
`projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
84105
- name: labels
85106
type: KeyValueLabels
86107
description: Labels as key value pairs.

mmv1/products/workstations/WorkstationConfig.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ properties:
421421
enum_values:
422422
- 'DELETE'
423423
- 'RETAIN'
424+
default_from_api: true
424425
- name: 'sourceSnapshot'
425426
type: String
426427
description: |

mmv1/templates/terraform/examples/ces_agent_basic.tf.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ resource "google_ces_agent" "ces_child_agent" {
7171
instruction = "You are a helpful assistant for this example."
7272

7373
model_settings {
74-
model = "gemini-2.5-flash"
74+
model = "gemini-2.5-flash-001"
7575
temperature = 0.5
7676
}
7777

@@ -116,7 +116,7 @@ resource "google_ces_agent" "ces_agent_basic" {
116116
instruction = "You are a helpful assistant for this example."
117117

118118
model_settings {
119-
model = "gemini-2.5-flash"
119+
model = "gemini-2.5-flash-001"
120120
temperature = 0.5
121121
}
122122

mmv1/templates/terraform/examples/ces_agent_remote_dialogflow_agent.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ resource "google_ces_agent" "ces_agent_remote_dialogflow_agent" {
2323
display_name = "{{index $.Vars "agent_display_name"}}"
2424

2525
model_settings {
26-
model = "gemini-1.5-flash"
26+
model = "gemini-2.5-flash-001"
2727
temperature = 0.5
2828
}
2929

mmv1/templates/terraform/examples/ces_agent_remote_dialogflow_agent_interruption.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ resource "google_ces_agent" "{{$.PrimaryResourceId}}" {
2323
display_name = "{{index $.Vars "agent_display_name"}}"
2424

2525
model_settings {
26-
model = "gemini-1.5-flash"
26+
model = "gemini-2.5-flash-001"
2727
temperature = 0.5
2828
}
2929

mmv1/templates/terraform/examples/ces_app_ambient_sound_gcs_uri.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ resource "google_ces_app" "ces_app_ambient_sound_gcs_uri" {
6363
}
6464

6565
model_settings {
66-
model = "gemini-1.5-flash"
66+
model = "gemini-2.5-flash-001"
6767
temperature = 0.5
6868
}
6969

mmv1/templates/terraform/examples/ces_app_basic.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ resource "google_ces_app" "ces_app_basic" {
8585
}
8686

8787
model_settings {
88-
model = "gemini-1.5-flash"
88+
model = "gemini-2.5-flash-001"
8989
temperature = 0.5
9090
}
9191

mmv1/templates/terraform/examples/ces_example_basic.tf.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ resource "google_ces_agent" "ces_base_agent" {
6262
instruction = "You are a helpful assistant for this example."
6363

6464
model_settings {
65-
model = "gemini-2.5-flash"
65+
model = "gemini-2.5-flash-001"
6666
temperature = 0.5
6767
}
6868

@@ -79,7 +79,7 @@ resource "google_ces_agent" "ces_child_agent" {
7979
instruction = "You are a helpful assistant for this example."
8080

8181
model_settings {
82-
model = "gemini-2.5-flash"
82+
model = "gemini-2.5-flash-001"
8383
temperature = 0.5
8484
}
8585

mmv1/templates/terraform/examples/ces_guardrail_generative_answer_llm_prompt_security.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ resource "google_ces_guardrail" "ces_guardrail_generative_answer_llm_prompt_secu
3131
custom_policy {
3232
max_conversation_messages = 10
3333
model_settings {
34-
model = "gemini-2.5-flash"
34+
model = "gemini-2.5-flash-001"
3535
temperature = 50
3636
}
3737
prompt = "example_prompt"

mmv1/templates/terraform/examples/ces_guardrail_llm_policy.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ resource "google_ces_guardrail" "ces_guardrail_llm_policy" {
3030
llm_policy {
3131
max_conversation_messages = 10
3232
model_settings {
33-
model = "gemini-2.5-flash"
33+
model = "gemini-2.5-flash-001"
3434
temperature = 50
3535
}
3636
prompt = "example_prompt"

0 commit comments

Comments
 (0)