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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions mmv1/products/discoveryengine/LicenseConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ timeouts:
examples:
- name: 'discoveryengine_licenseconfig_basic'
primary_resource_id: 'basic'
# License Config creation has been deprecated at the project level for Gemini Enterprise
exclude_test: true
vars:
license_config_id: 'license-config-id'
parameters:
Expand Down
4 changes: 4 additions & 0 deletions mmv1/products/discoveryengine/SearchEngine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ properties:
- 'SEARCH_TIER_ENTERPRISE'
- name: 'searchAddOns'
type: Array
default_from_api: true
description: |
The add-on that this search engine enables.
item_type:
Expand Down Expand Up @@ -164,6 +165,7 @@ properties:
Whether to disable analytics for searches performed on this engine.
- name: 'features'
type: KeyValuePairs
default_from_api: true
description: |
A map of the feature config for the engine to opt in or opt out of features.
- name: 'kmsKeyName'
Expand All @@ -179,6 +181,7 @@ properties:
protected by the KMS key, as indicated in the cmek_config field.
- name: 'knowledgeGraphConfig'
type: NestedObject
default_from_api: true
description: |
Configurations for the Knowledge Graph.
properties:
Expand All @@ -189,6 +192,7 @@ properties:
Whether to enable the Cloud Knowledge Graph for the engine.
- name: 'cloudKnowledgeGraphTypes'
type: Array
default_from_api: true
description: |
Specify entity types to support.
item_type:
Expand Down
2 changes: 2 additions & 0 deletions mmv1/products/discoveryengine/UserStore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ timeouts:
examples:
- name: 'discoveryengine_userstore_basic'
primary_resource_id: 'basic'
# License Config creation has been deprecated at the project level for Gemini Enterprise
exclude_test: true
vars:
license_config_id: 'license-config-id'
parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
)

func TestAccDiscoveryEngineLicenseConfig_discoveryengineLicenseconfigBasicExample_update(t *testing.T) {
t.Skip("License Config creation has been deprecated at the project level for Gemini Enterprise")
t.Parallel()

context := map[string]interface{}{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
)

func TestAccDiscoveryEngineUserStore_discoveryengineUserstoreBasicExample_update(t *testing.T) {
t.Skip("License Config creation has been deprecated at the project level for Gemini Enterprise")
t.Parallel()

context := map[string]interface{}{
Expand Down
Loading