google-apis-discoveryengine_v1beta 0.66.0 → 0.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/discoveryengine_v1beta/classes.rb +294 -34
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +93 -4
- data/lib/google/apis/discoveryengine_v1beta/service.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec504f63a249aa30f6f863cb389c41d7b69bc0716f58fa9b5bb6d859b4bef039
|
4
|
+
data.tar.gz: 97e2925e978a6c2fca42f2f366c10babcfa67ca3af3038381ea3275bb8ebc9e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ab707a06de964de12ecf6b1f06b10c551c81e01c9ef52348796d1114ab502fa16838bd94718fcd8f7bfab173739c84c624aaf3967f16e758d73bc9beb79d09e
|
7
|
+
data.tar.gz: 938ecf02895fe4490e574d8207564830df4d18fcff2ace125fc7ff10aa3f3296d52b9f3945ec269ba6bf742663395728322110da5a7d9a34611ad205831e96cd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-discoveryengine_v1beta
|
2
2
|
|
3
|
+
### v0.68.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250604
|
6
|
+
|
7
|
+
### v0.67.0 (2025-05-25)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250521
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.66.0 (2025-05-21)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250519
|
@@ -914,6 +914,71 @@ module Google
|
|
914
914
|
end
|
915
915
|
end
|
916
916
|
|
917
|
+
# Metadata related to the progress of the UserLicenseService.
|
918
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
919
|
+
# longrunning.Operation.metadata field.
|
920
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
921
|
+
include Google::Apis::Core::Hashable
|
922
|
+
|
923
|
+
# Operation create time.
|
924
|
+
# Corresponds to the JSON property `createTime`
|
925
|
+
# @return [String]
|
926
|
+
attr_accessor :create_time
|
927
|
+
|
928
|
+
# Count of user licenses that failed to be updated.
|
929
|
+
# Corresponds to the JSON property `failureCount`
|
930
|
+
# @return [Fixnum]
|
931
|
+
attr_accessor :failure_count
|
932
|
+
|
933
|
+
# Count of user licenses successfully updated.
|
934
|
+
# Corresponds to the JSON property `successCount`
|
935
|
+
# @return [Fixnum]
|
936
|
+
attr_accessor :success_count
|
937
|
+
|
938
|
+
# Operation last update time. If the operation is done, this is also the finish
|
939
|
+
# time.
|
940
|
+
# Corresponds to the JSON property `updateTime`
|
941
|
+
# @return [String]
|
942
|
+
attr_accessor :update_time
|
943
|
+
|
944
|
+
def initialize(**args)
|
945
|
+
update!(**args)
|
946
|
+
end
|
947
|
+
|
948
|
+
# Update properties of this object
|
949
|
+
def update!(**args)
|
950
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
951
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
952
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
953
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
954
|
+
end
|
955
|
+
end
|
956
|
+
|
957
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
958
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
959
|
+
include Google::Apis::Core::Hashable
|
960
|
+
|
961
|
+
# A sample of errors encountered while processing the request.
|
962
|
+
# Corresponds to the JSON property `errorSamples`
|
963
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
|
964
|
+
attr_accessor :error_samples
|
965
|
+
|
966
|
+
# UserLicenses successfully updated.
|
967
|
+
# Corresponds to the JSON property `userLicenses`
|
968
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1UserLicense>]
|
969
|
+
attr_accessor :user_licenses
|
970
|
+
|
971
|
+
def initialize(**args)
|
972
|
+
update!(**args)
|
973
|
+
end
|
974
|
+
|
975
|
+
# Update properties of this object
|
976
|
+
def update!(**args)
|
977
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
978
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
979
|
+
end
|
980
|
+
end
|
981
|
+
|
917
982
|
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
918
983
|
class GoogleCloudDiscoveryengineV1CmekConfig
|
919
984
|
include Google::Apis::Core::Hashable
|
@@ -943,7 +1008,7 @@ module Google
|
|
943
1008
|
|
944
1009
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
945
1010
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
946
|
-
# `
|
1011
|
+
# `cmek_config``.
|
947
1012
|
# Corresponds to the JSON property `name`
|
948
1013
|
# @return [String]
|
949
1014
|
attr_accessor :name
|
@@ -2158,6 +2223,12 @@ module Google
|
|
2158
2223
|
# @return [Array<String>]
|
2159
2224
|
attr_accessor :exclude_html_ids
|
2160
2225
|
|
2226
|
+
# Optional. Contains the required structure types to extract from the document.
|
2227
|
+
# Supported values: * `shareholder-structure`
|
2228
|
+
# Corresponds to the JSON property `structuredContentTypes`
|
2229
|
+
# @return [Array<String>]
|
2230
|
+
attr_accessor :structured_content_types
|
2231
|
+
|
2161
2232
|
def initialize(**args)
|
2162
2233
|
update!(**args)
|
2163
2234
|
end
|
@@ -2169,6 +2240,7 @@ module Google
|
|
2169
2240
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
2170
2241
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
2171
2242
|
@exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
|
2243
|
+
@structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
|
2172
2244
|
end
|
2173
2245
|
end
|
2174
2246
|
|
@@ -2288,6 +2360,15 @@ module Google
|
|
2288
2360
|
# @return [String]
|
2289
2361
|
attr_accessor :display_name
|
2290
2362
|
|
2363
|
+
# Optional. Feature config for the engine to opt in or opt out of features.
|
2364
|
+
# Supported keys: * `*`: all features, if it's present, all other feature state
|
2365
|
+
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
2366
|
+
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
2367
|
+
# org-chart` * `bi-directional-audio` * `feedback`
|
2368
|
+
# Corresponds to the JSON property `features`
|
2369
|
+
# @return [Hash<String,String>]
|
2370
|
+
attr_accessor :features
|
2371
|
+
|
2291
2372
|
# Optional. The industry vertical that the engine registers. The restriction of
|
2292
2373
|
# the Engine industry vertical is based on DataStore: Vertical on Engine has to
|
2293
2374
|
# match vertical of the DataStore linked to the engine.
|
@@ -2337,6 +2418,7 @@ module Google
|
|
2337
2418
|
@data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
|
2338
2419
|
@disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
|
2339
2420
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2421
|
+
@features = args[:features] if args.key?(:features)
|
2340
2422
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
2341
2423
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
2342
2424
|
@name = args[:name] if args.key?(:name)
|
@@ -4377,6 +4459,69 @@ module Google
|
|
4377
4459
|
end
|
4378
4460
|
end
|
4379
4461
|
|
4462
|
+
# User License information assigned by the admin.
|
4463
|
+
class GoogleCloudDiscoveryengineV1UserLicense
|
4464
|
+
include Google::Apis::Core::Hashable
|
4465
|
+
|
4466
|
+
# Output only. User created timestamp.
|
4467
|
+
# Corresponds to the JSON property `createTime`
|
4468
|
+
# @return [String]
|
4469
|
+
attr_accessor :create_time
|
4470
|
+
|
4471
|
+
# Output only. User last logged in time. If the user has not logged in yet, this
|
4472
|
+
# field will be empty.
|
4473
|
+
# Corresponds to the JSON property `lastLoginTime`
|
4474
|
+
# @return [String]
|
4475
|
+
attr_accessor :last_login_time
|
4476
|
+
|
4477
|
+
# Output only. License assignment state of the user. If the user is assigned
|
4478
|
+
# with a license config, the user loggin will be assigned with the license; If
|
4479
|
+
# the user's license assignment state is unassigned or unspecified, no license
|
4480
|
+
# config will be associated to the user;
|
4481
|
+
# Corresponds to the JSON property `licenseAssignmentState`
|
4482
|
+
# @return [String]
|
4483
|
+
attr_accessor :license_assignment_state
|
4484
|
+
|
4485
|
+
# Optional. The full resource name of the Subscription(LicenseConfig) assigned
|
4486
|
+
# to the user.
|
4487
|
+
# Corresponds to the JSON property `licenseConfig`
|
4488
|
+
# @return [String]
|
4489
|
+
attr_accessor :license_config
|
4490
|
+
|
4491
|
+
# Output only. User update timestamp.
|
4492
|
+
# Corresponds to the JSON property `updateTime`
|
4493
|
+
# @return [String]
|
4494
|
+
attr_accessor :update_time
|
4495
|
+
|
4496
|
+
# Required. Immutable. The user principal of the User, could be email address or
|
4497
|
+
# other prinical identifier. This field is immutable. Admin assign licenses
|
4498
|
+
# based on the user principal.
|
4499
|
+
# Corresponds to the JSON property `userPrincipal`
|
4500
|
+
# @return [String]
|
4501
|
+
attr_accessor :user_principal
|
4502
|
+
|
4503
|
+
# Optional. The user profile. We user user full name(First name + Last name) as
|
4504
|
+
# user profile.
|
4505
|
+
# Corresponds to the JSON property `userProfile`
|
4506
|
+
# @return [String]
|
4507
|
+
attr_accessor :user_profile
|
4508
|
+
|
4509
|
+
def initialize(**args)
|
4510
|
+
update!(**args)
|
4511
|
+
end
|
4512
|
+
|
4513
|
+
# Update properties of this object
|
4514
|
+
def update!(**args)
|
4515
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
4516
|
+
@last_login_time = args[:last_login_time] if args.key?(:last_login_time)
|
4517
|
+
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
4518
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
4519
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
4520
|
+
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
4521
|
+
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
4522
|
+
end
|
4523
|
+
end
|
4524
|
+
|
4380
4525
|
# Config to store data store type configuration for workspace data
|
4381
4526
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
4382
4527
|
include Google::Apis::Core::Hashable
|
@@ -5482,7 +5627,7 @@ module Google
|
|
5482
5627
|
|
5483
5628
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
5484
5629
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
5485
|
-
# `
|
5630
|
+
# `cmek_config``.
|
5486
5631
|
# Corresponds to the JSON property `name`
|
5487
5632
|
# @return [String]
|
5488
5633
|
attr_accessor :name
|
@@ -5755,7 +5900,7 @@ module Google
|
|
5755
5900
|
attr_accessor :errors
|
5756
5901
|
|
5757
5902
|
# The number of documents extracted from connector source, ready to be ingested
|
5758
|
-
# to
|
5903
|
+
# to VAIS.
|
5759
5904
|
# Corresponds to the JSON property `extractedRecordCount`
|
5760
5905
|
# @return [Fixnum]
|
5761
5906
|
attr_accessor :extracted_record_count
|
@@ -5770,6 +5915,12 @@ module Google
|
|
5770
5915
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress]
|
5771
5916
|
attr_accessor :progress
|
5772
5917
|
|
5918
|
+
# The number of documents scheduled to be crawled/extracted from connector
|
5919
|
+
# source. This only applies to third party connectors.
|
5920
|
+
# Corresponds to the JSON property `scheduledRecordCount`
|
5921
|
+
# @return [Fixnum]
|
5922
|
+
attr_accessor :scheduled_record_count
|
5923
|
+
|
5773
5924
|
# The number of requests sent to 3p API.
|
5774
5925
|
# Corresponds to the JSON property `sourceApiRequestCount`
|
5775
5926
|
# @return [Fixnum]
|
@@ -5809,6 +5960,7 @@ module Google
|
|
5809
5960
|
@extracted_record_count = args[:extracted_record_count] if args.key?(:extracted_record_count)
|
5810
5961
|
@indexed_record_count = args[:indexed_record_count] if args.key?(:indexed_record_count)
|
5811
5962
|
@progress = args[:progress] if args.key?(:progress)
|
5963
|
+
@scheduled_record_count = args[:scheduled_record_count] if args.key?(:scheduled_record_count)
|
5812
5964
|
@source_api_request_count = args[:source_api_request_count] if args.key?(:source_api_request_count)
|
5813
5965
|
@state = args[:state] if args.key?(:state)
|
5814
5966
|
@state_update_time = args[:state_update_time] if args.key?(:state_update_time)
|
@@ -6476,13 +6628,13 @@ module Google
|
|
6476
6628
|
|
6477
6629
|
# Optional. The refresh interval specifically for incremental data syncs. If
|
6478
6630
|
# unset, incremental syncs will use the default from env, set to 3hrs. The
|
6479
|
-
# minimum is 30 minutes and maximum is 7 days.
|
6631
|
+
# minimum is 30 minutes and maximum is 7 days. Applicable to only 3P connectors.
|
6480
6632
|
# Corresponds to the JSON property `incrementalRefreshInterval`
|
6481
6633
|
# @return [String]
|
6482
6634
|
attr_accessor :incremental_refresh_interval
|
6483
6635
|
|
6484
6636
|
# Optional. Indicates whether incremental syncs are paused for this connector.
|
6485
|
-
# This is independent of auto_run_disabled.
|
6637
|
+
# This is independent of auto_run_disabled. Applicable to only 3P connectors.
|
6486
6638
|
# Corresponds to the JSON property `incrementalSyncDisabled`
|
6487
6639
|
# @return [Boolean]
|
6488
6640
|
attr_accessor :incremental_sync_disabled
|
@@ -7559,6 +7711,12 @@ module Google
|
|
7559
7711
|
# @return [Array<String>]
|
7560
7712
|
attr_accessor :exclude_html_ids
|
7561
7713
|
|
7714
|
+
# Optional. Contains the required structure types to extract from the document.
|
7715
|
+
# Supported values: * `shareholder-structure`
|
7716
|
+
# Corresponds to the JSON property `structuredContentTypes`
|
7717
|
+
# @return [Array<String>]
|
7718
|
+
attr_accessor :structured_content_types
|
7719
|
+
|
7562
7720
|
def initialize(**args)
|
7563
7721
|
update!(**args)
|
7564
7722
|
end
|
@@ -7570,6 +7728,7 @@ module Google
|
|
7570
7728
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
7571
7729
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
7572
7730
|
@exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
|
7731
|
+
@structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
|
7573
7732
|
end
|
7574
7733
|
end
|
7575
7734
|
|
@@ -7689,6 +7848,15 @@ module Google
|
|
7689
7848
|
# @return [String]
|
7690
7849
|
attr_accessor :display_name
|
7691
7850
|
|
7851
|
+
# Optional. Feature config for the engine to opt in or opt out of features.
|
7852
|
+
# Supported keys: * `*`: all features, if it's present, all other feature state
|
7853
|
+
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
7854
|
+
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
7855
|
+
# org-chart` * `bi-directional-audio` * `feedback`
|
7856
|
+
# Corresponds to the JSON property `features`
|
7857
|
+
# @return [Hash<String,String>]
|
7858
|
+
attr_accessor :features
|
7859
|
+
|
7692
7860
|
# Optional. The industry vertical that the engine registers. The restriction of
|
7693
7861
|
# the Engine industry vertical is based on DataStore: Vertical on Engine has to
|
7694
7862
|
# match vertical of the DataStore linked to the engine.
|
@@ -7748,6 +7916,7 @@ module Google
|
|
7748
7916
|
@data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
|
7749
7917
|
@disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
|
7750
7918
|
@display_name = args[:display_name] if args.key?(:display_name)
|
7919
|
+
@features = args[:features] if args.key?(:features)
|
7751
7920
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
7752
7921
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
7753
7922
|
@name = args[:name] if args.key?(:name)
|
@@ -8057,6 +8226,12 @@ module Google
|
|
8057
8226
|
# @return [String]
|
8058
8227
|
attr_accessor :data_state
|
8059
8228
|
|
8229
|
+
# Output only. The timestamp when the latest successful training finished. Only
|
8230
|
+
# applicable on Media Recommendation engines.
|
8231
|
+
# Corresponds to the JSON property `lastTrainTime`
|
8232
|
+
# @return [String]
|
8233
|
+
attr_accessor :last_train_time
|
8234
|
+
|
8060
8235
|
# Output only. The timestamp when the latest successful tune finished. Only
|
8061
8236
|
# applicable on Media Recommendation engines.
|
8062
8237
|
# Corresponds to the JSON property `lastTuneTime`
|
@@ -8085,6 +8260,7 @@ module Google
|
|
8085
8260
|
# Update properties of this object
|
8086
8261
|
def update!(**args)
|
8087
8262
|
@data_state = args[:data_state] if args.key?(:data_state)
|
8263
|
+
@last_train_time = args[:last_train_time] if args.key?(:last_train_time)
|
8088
8264
|
@last_tune_time = args[:last_tune_time] if args.key?(:last_tune_time)
|
8089
8265
|
@serving_state = args[:serving_state] if args.key?(:serving_state)
|
8090
8266
|
@tuning_operation = args[:tuning_operation] if args.key?(:tuning_operation)
|
@@ -8276,7 +8452,7 @@ module Google
|
|
8276
8452
|
class GoogleCloudDiscoveryengineV1alphaEvaluationEvaluationSpecQuerySetSpec
|
8277
8453
|
include Google::Apis::Core::Hashable
|
8278
8454
|
|
8279
|
-
#
|
8455
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
8280
8456
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
8281
8457
|
# sampleQuerySet``.
|
8282
8458
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -11514,6 +11690,19 @@ module Google
|
|
11514
11690
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery]
|
11515
11691
|
attr_accessor :query
|
11516
11692
|
|
11693
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
11694
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
11695
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
11696
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
11697
|
+
# information is used in particular when rendering alternative answers to the
|
11698
|
+
# same prompt, providing visual information about how each answer was generated.
|
11699
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
11700
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
11701
|
+
# services can use anything not starting with "google."
|
11702
|
+
# Corresponds to the JSON property `queryConfigs`
|
11703
|
+
# @return [Hash<String,String>]
|
11704
|
+
attr_accessor :query_configs
|
11705
|
+
|
11517
11706
|
def initialize(**args)
|
11518
11707
|
update!(**args)
|
11519
11708
|
end
|
@@ -11523,6 +11712,7 @@ module Google
|
|
11523
11712
|
@answer = args[:answer] if args.key?(:answer)
|
11524
11713
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
11525
11714
|
@query = args[:query] if args.key?(:query)
|
11715
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
11526
11716
|
end
|
11527
11717
|
end
|
11528
11718
|
|
@@ -12163,15 +12353,6 @@ module Google
|
|
12163
12353
|
# @return [String]
|
12164
12354
|
attr_accessor :update_time
|
12165
12355
|
|
12166
|
-
# Optional. The full resource name of the User, in the format of `projects/`
|
12167
|
-
# project`/locations/`location`/userStores/`user_store`/users/`user_id``. This
|
12168
|
-
# field must be a UTF-8 encoded string with a length limit of 2048 characters.
|
12169
|
-
# If the user field is empty, it's indicating the user has not logged in yet and
|
12170
|
-
# no User entity is created.
|
12171
|
-
# Corresponds to the JSON property `user`
|
12172
|
-
# @return [String]
|
12173
|
-
attr_accessor :user
|
12174
|
-
|
12175
12356
|
# Required. Immutable. The user principal of the User, could be email address or
|
12176
12357
|
# other prinical identifier. This field is immutable. Admin assign licenses
|
12177
12358
|
# based on the user principal.
|
@@ -12196,7 +12377,6 @@ module Google
|
|
12196
12377
|
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
12197
12378
|
@license_config = args[:license_config] if args.key?(:license_config)
|
12198
12379
|
@update_time = args[:update_time] if args.key?(:update_time)
|
12199
|
-
@user = args[:user] if args.key?(:user)
|
12200
12380
|
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
12201
12381
|
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
12202
12382
|
end
|
@@ -14649,6 +14829,46 @@ module Google
|
|
14649
14829
|
end
|
14650
14830
|
end
|
14651
14831
|
|
14832
|
+
# Metadata related to the progress of the UserLicenseService.
|
14833
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
14834
|
+
# longrunning.Operation.metadata field.
|
14835
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
14836
|
+
include Google::Apis::Core::Hashable
|
14837
|
+
|
14838
|
+
# Operation create time.
|
14839
|
+
# Corresponds to the JSON property `createTime`
|
14840
|
+
# @return [String]
|
14841
|
+
attr_accessor :create_time
|
14842
|
+
|
14843
|
+
# Count of user licenses that failed to be updated.
|
14844
|
+
# Corresponds to the JSON property `failureCount`
|
14845
|
+
# @return [Fixnum]
|
14846
|
+
attr_accessor :failure_count
|
14847
|
+
|
14848
|
+
# Count of user licenses successfully updated.
|
14849
|
+
# Corresponds to the JSON property `successCount`
|
14850
|
+
# @return [Fixnum]
|
14851
|
+
attr_accessor :success_count
|
14852
|
+
|
14853
|
+
# Operation last update time. If the operation is done, this is also the finish
|
14854
|
+
# time.
|
14855
|
+
# Corresponds to the JSON property `updateTime`
|
14856
|
+
# @return [String]
|
14857
|
+
attr_accessor :update_time
|
14858
|
+
|
14859
|
+
def initialize(**args)
|
14860
|
+
update!(**args)
|
14861
|
+
end
|
14862
|
+
|
14863
|
+
# Update properties of this object
|
14864
|
+
def update!(**args)
|
14865
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
14866
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
14867
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
14868
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
14869
|
+
end
|
14870
|
+
end
|
14871
|
+
|
14652
14872
|
# Request message for UserLicenseService.BatchUpdateUserLicenses method.
|
14653
14873
|
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequest
|
14654
14874
|
include Google::Apis::Core::Hashable
|
@@ -14661,11 +14881,6 @@ module Google
|
|
14661
14881
|
attr_accessor :delete_unassigned_user_licenses
|
14662
14882
|
alias_method :delete_unassigned_user_licenses?, :delete_unassigned_user_licenses
|
14663
14883
|
|
14664
|
-
# Cloud Storage location for input content.
|
14665
|
-
# Corresponds to the JSON property `gcsSource`
|
14666
|
-
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaGcsSource]
|
14667
|
-
attr_accessor :gcs_source
|
14668
|
-
|
14669
14884
|
# The inline source for the input config for BatchUpdateUserLicenses method.
|
14670
14885
|
# Corresponds to the JSON property `inlineSource`
|
14671
14886
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequestInlineSource]
|
@@ -14678,7 +14893,6 @@ module Google
|
|
14678
14893
|
# Update properties of this object
|
14679
14894
|
def update!(**args)
|
14680
14895
|
@delete_unassigned_user_licenses = args[:delete_unassigned_user_licenses] if args.key?(:delete_unassigned_user_licenses)
|
14681
|
-
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
14682
14896
|
@inline_source = args[:inline_source] if args.key?(:inline_source)
|
14683
14897
|
end
|
14684
14898
|
end
|
@@ -14709,6 +14923,31 @@ module Google
|
|
14709
14923
|
end
|
14710
14924
|
end
|
14711
14925
|
|
14926
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
14927
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
14928
|
+
include Google::Apis::Core::Hashable
|
14929
|
+
|
14930
|
+
# A sample of errors encountered while processing the request.
|
14931
|
+
# Corresponds to the JSON property `errorSamples`
|
14932
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
|
14933
|
+
attr_accessor :error_samples
|
14934
|
+
|
14935
|
+
# UserLicenses successfully updated.
|
14936
|
+
# Corresponds to the JSON property `userLicenses`
|
14937
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense>]
|
14938
|
+
attr_accessor :user_licenses
|
14939
|
+
|
14940
|
+
def initialize(**args)
|
14941
|
+
update!(**args)
|
14942
|
+
end
|
14943
|
+
|
14944
|
+
# Update properties of this object
|
14945
|
+
def update!(**args)
|
14946
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
14947
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
14948
|
+
end
|
14949
|
+
end
|
14950
|
+
|
14712
14951
|
# Request message for SiteSearchEngineService.BatchVerifyTargetSites method.
|
14713
14952
|
class GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest
|
14714
14953
|
include Google::Apis::Core::Hashable
|
@@ -15476,7 +15715,7 @@ module Google
|
|
15476
15715
|
|
15477
15716
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
15478
15717
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
15479
|
-
# `
|
15718
|
+
# `cmek_config``.
|
15480
15719
|
# Corresponds to the JSON property `name`
|
15481
15720
|
# @return [String]
|
15482
15721
|
attr_accessor :name
|
@@ -17554,6 +17793,12 @@ module Google
|
|
17554
17793
|
# @return [Array<String>]
|
17555
17794
|
attr_accessor :exclude_html_ids
|
17556
17795
|
|
17796
|
+
# Optional. Contains the required structure types to extract from the document.
|
17797
|
+
# Supported values: * `shareholder-structure`
|
17798
|
+
# Corresponds to the JSON property `structuredContentTypes`
|
17799
|
+
# @return [Array<String>]
|
17800
|
+
attr_accessor :structured_content_types
|
17801
|
+
|
17557
17802
|
def initialize(**args)
|
17558
17803
|
update!(**args)
|
17559
17804
|
end
|
@@ -17565,6 +17810,7 @@ module Google
|
|
17565
17810
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
17566
17811
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
17567
17812
|
@exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
|
17813
|
+
@structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
|
17568
17814
|
end
|
17569
17815
|
end
|
17570
17816
|
|
@@ -17735,6 +17981,15 @@ module Google
|
|
17735
17981
|
# @return [String]
|
17736
17982
|
attr_accessor :display_name
|
17737
17983
|
|
17984
|
+
# Optional. Feature config for the engine to opt in or opt out of features.
|
17985
|
+
# Supported keys: * `*`: all features, if it's present, all other feature state
|
17986
|
+
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
17987
|
+
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
17988
|
+
# org-chart` * `bi-directional-audio` * `feedback`
|
17989
|
+
# Corresponds to the JSON property `features`
|
17990
|
+
# @return [Hash<String,String>]
|
17991
|
+
attr_accessor :features
|
17992
|
+
|
17738
17993
|
# Optional. The industry vertical that the engine registers. The restriction of
|
17739
17994
|
# the Engine industry vertical is based on DataStore: Vertical on Engine has to
|
17740
17995
|
# match vertical of the DataStore linked to the engine.
|
@@ -17784,6 +18039,7 @@ module Google
|
|
17784
18039
|
@data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
|
17785
18040
|
@disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
|
17786
18041
|
@display_name = args[:display_name] if args.key?(:display_name)
|
18042
|
+
@features = args[:features] if args.key?(:features)
|
17787
18043
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
17788
18044
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
17789
18045
|
@name = args[:name] if args.key?(:name)
|
@@ -18203,7 +18459,7 @@ module Google
|
|
18203
18459
|
class GoogleCloudDiscoveryengineV1betaEvaluationEvaluationSpecQuerySetSpec
|
18204
18460
|
include Google::Apis::Core::Hashable
|
18205
18461
|
|
18206
|
-
#
|
18462
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
18207
18463
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
18208
18464
|
# sampleQuerySet``.
|
18209
18465
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -24381,6 +24637,19 @@ module Google
|
|
24381
24637
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery]
|
24382
24638
|
attr_accessor :query
|
24383
24639
|
|
24640
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
24641
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
24642
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
24643
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
24644
|
+
# information is used in particular when rendering alternative answers to the
|
24645
|
+
# same prompt, providing visual information about how each answer was generated.
|
24646
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
24647
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
24648
|
+
# services can use anything not starting with "google."
|
24649
|
+
# Corresponds to the JSON property `queryConfigs`
|
24650
|
+
# @return [Hash<String,String>]
|
24651
|
+
attr_accessor :query_configs
|
24652
|
+
|
24384
24653
|
def initialize(**args)
|
24385
24654
|
update!(**args)
|
24386
24655
|
end
|
@@ -24390,6 +24659,7 @@ module Google
|
|
24390
24659
|
@answer = args[:answer] if args.key?(:answer)
|
24391
24660
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
24392
24661
|
@query = args[:query] if args.key?(:query)
|
24662
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
24393
24663
|
end
|
24394
24664
|
end
|
24395
24665
|
|
@@ -25455,15 +25725,6 @@ module Google
|
|
25455
25725
|
# @return [String]
|
25456
25726
|
attr_accessor :update_time
|
25457
25727
|
|
25458
|
-
# Optional. The full resource name of the User, in the format of `projects/`
|
25459
|
-
# project`/locations/`location`/userStores/`user_store`/users/`user_id``. This
|
25460
|
-
# field must be a UTF-8 encoded string with a length limit of 2048 characters.
|
25461
|
-
# If the user field is empty, it's indicating the user has not logged in yet and
|
25462
|
-
# no User entity is created.
|
25463
|
-
# Corresponds to the JSON property `user`
|
25464
|
-
# @return [String]
|
25465
|
-
attr_accessor :user
|
25466
|
-
|
25467
25728
|
# Required. Immutable. The user principal of the User, could be email address or
|
25468
25729
|
# other prinical identifier. This field is immutable. Admin assign licenses
|
25469
25730
|
# based on the user principal.
|
@@ -25488,7 +25749,6 @@ module Google
|
|
25488
25749
|
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
25489
25750
|
@license_config = args[:license_config] if args.key?(:license_config)
|
25490
25751
|
@update_time = args[:update_time] if args.key?(:update_time)
|
25491
|
-
@user = args[:user] if args.key?(:user)
|
25492
25752
|
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
25493
25753
|
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
25494
25754
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1beta
|
18
18
|
# Version of the google-apis-discoveryengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.68.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250604"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -160,6 +160,18 @@ module Google
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
161
161
|
end
|
162
162
|
|
163
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
169
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
163
175
|
class GoogleCloudDiscoveryengineV1CmekConfig
|
164
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
177
|
|
@@ -718,6 +730,12 @@ module Google
|
|
718
730
|
include Google::Apis::Core::JsonObjectSupport
|
719
731
|
end
|
720
732
|
|
733
|
+
class GoogleCloudDiscoveryengineV1UserLicense
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
721
739
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
722
740
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
723
741
|
|
@@ -2362,6 +2380,12 @@ module Google
|
|
2362
2380
|
include Google::Apis::Core::JsonObjectSupport
|
2363
2381
|
end
|
2364
2382
|
|
2383
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
2384
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2385
|
+
|
2386
|
+
include Google::Apis::Core::JsonObjectSupport
|
2387
|
+
end
|
2388
|
+
|
2365
2389
|
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequest
|
2366
2390
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2367
2391
|
|
@@ -2374,6 +2398,12 @@ module Google
|
|
2374
2398
|
include Google::Apis::Core::JsonObjectSupport
|
2375
2399
|
end
|
2376
2400
|
|
2401
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
2402
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2403
|
+
|
2404
|
+
include Google::Apis::Core::JsonObjectSupport
|
2405
|
+
end
|
2406
|
+
|
2377
2407
|
class GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest
|
2378
2408
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2379
2409
|
|
@@ -4403,6 +4433,26 @@ module Google
|
|
4403
4433
|
end
|
4404
4434
|
end
|
4405
4435
|
|
4436
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
4437
|
+
# @private
|
4438
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4439
|
+
property :create_time, as: 'createTime'
|
4440
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
4441
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
4442
|
+
property :update_time, as: 'updateTime'
|
4443
|
+
end
|
4444
|
+
end
|
4445
|
+
|
4446
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
4447
|
+
# @private
|
4448
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4449
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
|
4450
|
+
|
4451
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1UserLicense, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1UserLicense::Representation
|
4452
|
+
|
4453
|
+
end
|
4454
|
+
end
|
4455
|
+
|
4406
4456
|
class GoogleCloudDiscoveryengineV1CmekConfig
|
4407
4457
|
# @private
|
4408
4458
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4747,6 +4797,7 @@ module Google
|
|
4747
4797
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
4748
4798
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
4749
4799
|
collection :exclude_html_ids, as: 'excludeHtmlIds'
|
4800
|
+
collection :structured_content_types, as: 'structuredContentTypes'
|
4750
4801
|
end
|
4751
4802
|
end
|
4752
4803
|
|
@@ -4785,6 +4836,7 @@ module Google
|
|
4785
4836
|
collection :data_store_ids, as: 'dataStoreIds'
|
4786
4837
|
property :disable_analytics, as: 'disableAnalytics'
|
4787
4838
|
property :display_name, as: 'displayName'
|
4839
|
+
hash :features, as: 'features'
|
4788
4840
|
property :industry_vertical, as: 'industryVertical'
|
4789
4841
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
|
4790
4842
|
|
@@ -5323,6 +5375,19 @@ module Google
|
|
5323
5375
|
end
|
5324
5376
|
end
|
5325
5377
|
|
5378
|
+
class GoogleCloudDiscoveryengineV1UserLicense
|
5379
|
+
# @private
|
5380
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5381
|
+
property :create_time, as: 'createTime'
|
5382
|
+
property :last_login_time, as: 'lastLoginTime'
|
5383
|
+
property :license_assignment_state, as: 'licenseAssignmentState'
|
5384
|
+
property :license_config, as: 'licenseConfig'
|
5385
|
+
property :update_time, as: 'updateTime'
|
5386
|
+
property :user_principal, as: 'userPrincipal'
|
5387
|
+
property :user_profile, as: 'userProfile'
|
5388
|
+
end
|
5389
|
+
end
|
5390
|
+
|
5326
5391
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
5327
5392
|
# @private
|
5328
5393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5725,6 +5790,7 @@ module Google
|
|
5725
5790
|
property :indexed_record_count, :numeric_string => true, as: 'indexedRecordCount'
|
5726
5791
|
property :progress, as: 'progress', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress::Representation
|
5727
5792
|
|
5793
|
+
property :scheduled_record_count, :numeric_string => true, as: 'scheduledRecordCount'
|
5728
5794
|
property :source_api_request_count, :numeric_string => true, as: 'sourceApiRequestCount'
|
5729
5795
|
property :state, as: 'state'
|
5730
5796
|
property :state_update_time, as: 'stateUpdateTime'
|
@@ -6198,6 +6264,7 @@ module Google
|
|
6198
6264
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
6199
6265
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
6200
6266
|
collection :exclude_html_ids, as: 'excludeHtmlIds'
|
6267
|
+
collection :structured_content_types, as: 'structuredContentTypes'
|
6201
6268
|
end
|
6202
6269
|
end
|
6203
6270
|
|
@@ -6236,6 +6303,7 @@ module Google
|
|
6236
6303
|
collection :data_store_ids, as: 'dataStoreIds'
|
6237
6304
|
property :disable_analytics, as: 'disableAnalytics'
|
6238
6305
|
property :display_name, as: 'displayName'
|
6306
|
+
hash :features, as: 'features'
|
6239
6307
|
property :industry_vertical, as: 'industryVertical'
|
6240
6308
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
|
6241
6309
|
|
@@ -6334,6 +6402,7 @@ module Google
|
|
6334
6402
|
# @private
|
6335
6403
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6336
6404
|
property :data_state, as: 'dataState'
|
6405
|
+
property :last_train_time, as: 'lastTrainTime'
|
6337
6406
|
property :last_tune_time, as: 'lastTuneTime'
|
6338
6407
|
property :serving_state, as: 'servingState'
|
6339
6408
|
property :tuning_operation, as: 'tuningOperation'
|
@@ -7214,6 +7283,7 @@ module Google
|
|
7214
7283
|
|
7215
7284
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery::Representation
|
7216
7285
|
|
7286
|
+
hash :query_configs, as: 'queryConfigs'
|
7217
7287
|
end
|
7218
7288
|
end
|
7219
7289
|
|
@@ -7403,7 +7473,6 @@ module Google
|
|
7403
7473
|
property :license_assignment_state, as: 'licenseAssignmentState'
|
7404
7474
|
property :license_config, as: 'licenseConfig'
|
7405
7475
|
property :update_time, as: 'updateTime'
|
7406
|
-
property :user, as: 'user'
|
7407
7476
|
property :user_principal, as: 'userPrincipal'
|
7408
7477
|
property :user_profile, as: 'userProfile'
|
7409
7478
|
end
|
@@ -8116,12 +8185,20 @@ module Google
|
|
8116
8185
|
end
|
8117
8186
|
end
|
8118
8187
|
|
8188
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
8189
|
+
# @private
|
8190
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8191
|
+
property :create_time, as: 'createTime'
|
8192
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
8193
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
8194
|
+
property :update_time, as: 'updateTime'
|
8195
|
+
end
|
8196
|
+
end
|
8197
|
+
|
8119
8198
|
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequest
|
8120
8199
|
# @private
|
8121
8200
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8122
8201
|
property :delete_unassigned_user_licenses, as: 'deleteUnassignedUserLicenses'
|
8123
|
-
property :gcs_source, as: 'gcsSource', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaGcsSource, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaGcsSource::Representation
|
8124
|
-
|
8125
8202
|
property :inline_source, as: 'inlineSource', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequestInlineSource, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequestInlineSource::Representation
|
8126
8203
|
|
8127
8204
|
end
|
@@ -8136,6 +8213,16 @@ module Google
|
|
8136
8213
|
end
|
8137
8214
|
end
|
8138
8215
|
|
8216
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
8217
|
+
# @private
|
8218
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8219
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
|
8220
|
+
|
8221
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense::Representation
|
8222
|
+
|
8223
|
+
end
|
8224
|
+
end
|
8225
|
+
|
8139
8226
|
class GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest
|
8140
8227
|
# @private
|
8141
8228
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8900,6 +8987,7 @@ module Google
|
|
8900
8987
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
8901
8988
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
8902
8989
|
collection :exclude_html_ids, as: 'excludeHtmlIds'
|
8990
|
+
collection :structured_content_types, as: 'structuredContentTypes'
|
8903
8991
|
end
|
8904
8992
|
end
|
8905
8993
|
|
@@ -8958,6 +9046,7 @@ module Google
|
|
8958
9046
|
collection :data_store_ids, as: 'dataStoreIds'
|
8959
9047
|
property :disable_analytics, as: 'disableAnalytics'
|
8960
9048
|
property :display_name, as: 'displayName'
|
9049
|
+
hash :features, as: 'features'
|
8961
9050
|
property :industry_vertical, as: 'industryVertical'
|
8962
9051
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
|
8963
9052
|
|
@@ -10786,6 +10875,7 @@ module Google
|
|
10786
10875
|
|
10787
10876
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery::Representation
|
10788
10877
|
|
10878
|
+
hash :query_configs, as: 'queryConfigs'
|
10789
10879
|
end
|
10790
10880
|
end
|
10791
10881
|
|
@@ -11053,7 +11143,6 @@ module Google
|
|
11053
11143
|
property :license_assignment_state, as: 'licenseAssignmentState'
|
11054
11144
|
property :license_config, as: 'licenseConfig'
|
11055
11145
|
property :update_time, as: 'updateTime'
|
11056
|
-
property :user, as: 'user'
|
11057
11146
|
property :user_principal, as: 'userPrincipal'
|
11058
11147
|
property :user_profile, as: 'userProfile'
|
11059
11148
|
end
|
@@ -241,7 +241,7 @@ module Google
|
|
241
241
|
# @param [String] name
|
242
242
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
243
243
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
244
|
-
# `
|
244
|
+
# `cmek_config``.
|
245
245
|
# @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig] google_cloud_discoveryengine_v1beta_cmek_config_object
|
246
246
|
# @param [Boolean] set_default
|
247
247
|
# Set the following CmekConfig as the default to be used for child resources if
|
@@ -379,7 +379,7 @@ module Google
|
|
379
379
|
# @param [String] name
|
380
380
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
381
381
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
382
|
-
# `
|
382
|
+
# `cmek_config``.
|
383
383
|
# @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig] google_cloud_discoveryengine_v1beta_cmek_config_object
|
384
384
|
# @param [Boolean] set_default
|
385
385
|
# Set the following CmekConfig as the default to be used for child resources if
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.68.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.68.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|