google-apis-discoveryengine_v1 0.38.0 → 0.40.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_v1/classes.rb +294 -34
- data/lib/google/apis/discoveryengine_v1/gem_version.rb +3 -3
- data/lib/google/apis/discoveryengine_v1/representations.rb +93 -4
- data/lib/google/apis/discoveryengine_v1/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: d885baa0b0af9d379d0ce9ec0a93dc5d826fd9d23d768624d0328a32a35a99d6
|
4
|
+
data.tar.gz: b081a42fe23c24550ff11d7d659298e0f32c3501b383a20fc36b3f7e15fcc7c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67dbf32f0e594a2e4d5d5a251bb32ccf599e146cf5c0436e47ce63c76dfea4ebf3728f862a59ea90ee6da6cd8c1facb20ffddd196becb3bb393ad9a8b8bcc83e
|
7
|
+
data.tar.gz: 5e49108f8999ff3e757d88c258eaa79cc49dcbe109ba51a17731bb1a3cc160d7cbbcacc1a465431a0e1b46a313a29259de3d2808a8f8b9ece02f63c1fe35606b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-discoveryengine_v1
|
2
2
|
|
3
|
+
### v0.40.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250604
|
6
|
+
|
7
|
+
### v0.39.0 (2025-05-25)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250521
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.38.0 (2025-05-21)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250519
|
@@ -2657,6 +2657,46 @@ module Google
|
|
2657
2657
|
end
|
2658
2658
|
end
|
2659
2659
|
|
2660
|
+
# Metadata related to the progress of the UserLicenseService.
|
2661
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
2662
|
+
# longrunning.Operation.metadata field.
|
2663
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
2664
|
+
include Google::Apis::Core::Hashable
|
2665
|
+
|
2666
|
+
# Operation create time.
|
2667
|
+
# Corresponds to the JSON property `createTime`
|
2668
|
+
# @return [String]
|
2669
|
+
attr_accessor :create_time
|
2670
|
+
|
2671
|
+
# Count of user licenses that failed to be updated.
|
2672
|
+
# Corresponds to the JSON property `failureCount`
|
2673
|
+
# @return [Fixnum]
|
2674
|
+
attr_accessor :failure_count
|
2675
|
+
|
2676
|
+
# Count of user licenses successfully updated.
|
2677
|
+
# Corresponds to the JSON property `successCount`
|
2678
|
+
# @return [Fixnum]
|
2679
|
+
attr_accessor :success_count
|
2680
|
+
|
2681
|
+
# Operation last update time. If the operation is done, this is also the finish
|
2682
|
+
# time.
|
2683
|
+
# Corresponds to the JSON property `updateTime`
|
2684
|
+
# @return [String]
|
2685
|
+
attr_accessor :update_time
|
2686
|
+
|
2687
|
+
def initialize(**args)
|
2688
|
+
update!(**args)
|
2689
|
+
end
|
2690
|
+
|
2691
|
+
# Update properties of this object
|
2692
|
+
def update!(**args)
|
2693
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2694
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
2695
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
2696
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2697
|
+
end
|
2698
|
+
end
|
2699
|
+
|
2660
2700
|
# Request message for UserLicenseService.BatchUpdateUserLicenses method.
|
2661
2701
|
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequest
|
2662
2702
|
include Google::Apis::Core::Hashable
|
@@ -2669,11 +2709,6 @@ module Google
|
|
2669
2709
|
attr_accessor :delete_unassigned_user_licenses
|
2670
2710
|
alias_method :delete_unassigned_user_licenses?, :delete_unassigned_user_licenses
|
2671
2711
|
|
2672
|
-
# Cloud Storage location for input content.
|
2673
|
-
# Corresponds to the JSON property `gcsSource`
|
2674
|
-
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource]
|
2675
|
-
attr_accessor :gcs_source
|
2676
|
-
|
2677
2712
|
# The inline source for the input config for BatchUpdateUserLicenses method.
|
2678
2713
|
# Corresponds to the JSON property `inlineSource`
|
2679
2714
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequestInlineSource]
|
@@ -2686,7 +2721,6 @@ module Google
|
|
2686
2721
|
# Update properties of this object
|
2687
2722
|
def update!(**args)
|
2688
2723
|
@delete_unassigned_user_licenses = args[:delete_unassigned_user_licenses] if args.key?(:delete_unassigned_user_licenses)
|
2689
|
-
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
2690
2724
|
@inline_source = args[:inline_source] if args.key?(:inline_source)
|
2691
2725
|
end
|
2692
2726
|
end
|
@@ -2717,6 +2751,31 @@ module Google
|
|
2717
2751
|
end
|
2718
2752
|
end
|
2719
2753
|
|
2754
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
2755
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
2756
|
+
include Google::Apis::Core::Hashable
|
2757
|
+
|
2758
|
+
# A sample of errors encountered while processing the request.
|
2759
|
+
# Corresponds to the JSON property `errorSamples`
|
2760
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
|
2761
|
+
attr_accessor :error_samples
|
2762
|
+
|
2763
|
+
# UserLicenses successfully updated.
|
2764
|
+
# Corresponds to the JSON property `userLicenses`
|
2765
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1UserLicense>]
|
2766
|
+
attr_accessor :user_licenses
|
2767
|
+
|
2768
|
+
def initialize(**args)
|
2769
|
+
update!(**args)
|
2770
|
+
end
|
2771
|
+
|
2772
|
+
# Update properties of this object
|
2773
|
+
def update!(**args)
|
2774
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
2775
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
2776
|
+
end
|
2777
|
+
end
|
2778
|
+
|
2720
2779
|
# Request message for SiteSearchEngineService.BatchVerifyTargetSites method.
|
2721
2780
|
class GoogleCloudDiscoveryengineV1BatchVerifyTargetSitesRequest
|
2722
2781
|
include Google::Apis::Core::Hashable
|
@@ -3484,7 +3543,7 @@ module Google
|
|
3484
3543
|
|
3485
3544
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
3486
3545
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
3487
|
-
# `
|
3546
|
+
# `cmek_config``.
|
3488
3547
|
# Corresponds to the JSON property `name`
|
3489
3548
|
# @return [String]
|
3490
3549
|
attr_accessor :name
|
@@ -5498,6 +5557,12 @@ module Google
|
|
5498
5557
|
# @return [Array<String>]
|
5499
5558
|
attr_accessor :exclude_html_ids
|
5500
5559
|
|
5560
|
+
# Optional. Contains the required structure types to extract from the document.
|
5561
|
+
# Supported values: * `shareholder-structure`
|
5562
|
+
# Corresponds to the JSON property `structuredContentTypes`
|
5563
|
+
# @return [Array<String>]
|
5564
|
+
attr_accessor :structured_content_types
|
5565
|
+
|
5501
5566
|
def initialize(**args)
|
5502
5567
|
update!(**args)
|
5503
5568
|
end
|
@@ -5509,6 +5574,7 @@ module Google
|
|
5509
5574
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
5510
5575
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
5511
5576
|
@exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
|
5577
|
+
@structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
|
5512
5578
|
end
|
5513
5579
|
end
|
5514
5580
|
|
@@ -5660,6 +5726,15 @@ module Google
|
|
5660
5726
|
# @return [String]
|
5661
5727
|
attr_accessor :display_name
|
5662
5728
|
|
5729
|
+
# Optional. Feature config for the engine to opt in or opt out of features.
|
5730
|
+
# Supported keys: * `*`: all features, if it's present, all other feature state
|
5731
|
+
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
5732
|
+
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
5733
|
+
# org-chart` * `bi-directional-audio` * `feedback`
|
5734
|
+
# Corresponds to the JSON property `features`
|
5735
|
+
# @return [Hash<String,String>]
|
5736
|
+
attr_accessor :features
|
5737
|
+
|
5663
5738
|
# Optional. The industry vertical that the engine registers. The restriction of
|
5664
5739
|
# the Engine industry vertical is based on DataStore: Vertical on Engine has to
|
5665
5740
|
# match vertical of the DataStore linked to the engine.
|
@@ -5709,6 +5784,7 @@ module Google
|
|
5709
5784
|
@data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
|
5710
5785
|
@disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
|
5711
5786
|
@display_name = args[:display_name] if args.key?(:display_name)
|
5787
|
+
@features = args[:features] if args.key?(:features)
|
5712
5788
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
5713
5789
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
5714
5790
|
@name = args[:name] if args.key?(:name)
|
@@ -10684,6 +10760,19 @@ module Google
|
|
10684
10760
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query]
|
10685
10761
|
attr_accessor :query
|
10686
10762
|
|
10763
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
10764
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
10765
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
10766
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
10767
|
+
# information is used in particular when rendering alternative answers to the
|
10768
|
+
# same prompt, providing visual information about how each answer was generated.
|
10769
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
10770
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
10771
|
+
# services can use anything not starting with "google."
|
10772
|
+
# Corresponds to the JSON property `queryConfigs`
|
10773
|
+
# @return [Hash<String,String>]
|
10774
|
+
attr_accessor :query_configs
|
10775
|
+
|
10687
10776
|
def initialize(**args)
|
10688
10777
|
update!(**args)
|
10689
10778
|
end
|
@@ -10693,6 +10782,7 @@ module Google
|
|
10693
10782
|
@answer = args[:answer] if args.key?(:answer)
|
10694
10783
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
10695
10784
|
@query = args[:query] if args.key?(:query)
|
10785
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
10696
10786
|
end
|
10697
10787
|
end
|
10698
10788
|
|
@@ -11631,15 +11721,6 @@ module Google
|
|
11631
11721
|
# @return [String]
|
11632
11722
|
attr_accessor :update_time
|
11633
11723
|
|
11634
|
-
# Optional. The full resource name of the User, in the format of `projects/`
|
11635
|
-
# project`/locations/`location`/userStores/`user_store`/users/`user_id``. This
|
11636
|
-
# field must be a UTF-8 encoded string with a length limit of 2048 characters.
|
11637
|
-
# If the user field is empty, it's indicating the user has not logged in yet and
|
11638
|
-
# no User entity is created.
|
11639
|
-
# Corresponds to the JSON property `user`
|
11640
|
-
# @return [String]
|
11641
|
-
attr_accessor :user
|
11642
|
-
|
11643
11724
|
# Required. Immutable. The user principal of the User, could be email address or
|
11644
11725
|
# other prinical identifier. This field is immutable. Admin assign licenses
|
11645
11726
|
# based on the user principal.
|
@@ -11664,7 +11745,6 @@ module Google
|
|
11664
11745
|
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
11665
11746
|
@license_config = args[:license_config] if args.key?(:license_config)
|
11666
11747
|
@update_time = args[:update_time] if args.key?(:update_time)
|
11667
|
-
@user = args[:user] if args.key?(:user)
|
11668
11748
|
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
11669
11749
|
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
11670
11750
|
end
|
@@ -12775,7 +12855,7 @@ module Google
|
|
12775
12855
|
|
12776
12856
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
12777
12857
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
12778
|
-
# `
|
12858
|
+
# `cmek_config``.
|
12779
12859
|
# Corresponds to the JSON property `name`
|
12780
12860
|
# @return [String]
|
12781
12861
|
attr_accessor :name
|
@@ -13048,7 +13128,7 @@ module Google
|
|
13048
13128
|
attr_accessor :errors
|
13049
13129
|
|
13050
13130
|
# The number of documents extracted from connector source, ready to be ingested
|
13051
|
-
# to
|
13131
|
+
# to VAIS.
|
13052
13132
|
# Corresponds to the JSON property `extractedRecordCount`
|
13053
13133
|
# @return [Fixnum]
|
13054
13134
|
attr_accessor :extracted_record_count
|
@@ -13063,6 +13143,12 @@ module Google
|
|
13063
13143
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress]
|
13064
13144
|
attr_accessor :progress
|
13065
13145
|
|
13146
|
+
# The number of documents scheduled to be crawled/extracted from connector
|
13147
|
+
# source. This only applies to third party connectors.
|
13148
|
+
# Corresponds to the JSON property `scheduledRecordCount`
|
13149
|
+
# @return [Fixnum]
|
13150
|
+
attr_accessor :scheduled_record_count
|
13151
|
+
|
13066
13152
|
# The number of requests sent to 3p API.
|
13067
13153
|
# Corresponds to the JSON property `sourceApiRequestCount`
|
13068
13154
|
# @return [Fixnum]
|
@@ -13102,6 +13188,7 @@ module Google
|
|
13102
13188
|
@extracted_record_count = args[:extracted_record_count] if args.key?(:extracted_record_count)
|
13103
13189
|
@indexed_record_count = args[:indexed_record_count] if args.key?(:indexed_record_count)
|
13104
13190
|
@progress = args[:progress] if args.key?(:progress)
|
13191
|
+
@scheduled_record_count = args[:scheduled_record_count] if args.key?(:scheduled_record_count)
|
13105
13192
|
@source_api_request_count = args[:source_api_request_count] if args.key?(:source_api_request_count)
|
13106
13193
|
@state = args[:state] if args.key?(:state)
|
13107
13194
|
@state_update_time = args[:state_update_time] if args.key?(:state_update_time)
|
@@ -13769,13 +13856,13 @@ module Google
|
|
13769
13856
|
|
13770
13857
|
# Optional. The refresh interval specifically for incremental data syncs. If
|
13771
13858
|
# unset, incremental syncs will use the default from env, set to 3hrs. The
|
13772
|
-
# minimum is 30 minutes and maximum is 7 days.
|
13859
|
+
# minimum is 30 minutes and maximum is 7 days. Applicable to only 3P connectors.
|
13773
13860
|
# Corresponds to the JSON property `incrementalRefreshInterval`
|
13774
13861
|
# @return [String]
|
13775
13862
|
attr_accessor :incremental_refresh_interval
|
13776
13863
|
|
13777
13864
|
# Optional. Indicates whether incremental syncs are paused for this connector.
|
13778
|
-
# This is independent of auto_run_disabled.
|
13865
|
+
# This is independent of auto_run_disabled. Applicable to only 3P connectors.
|
13779
13866
|
# Corresponds to the JSON property `incrementalSyncDisabled`
|
13780
13867
|
# @return [Boolean]
|
13781
13868
|
attr_accessor :incremental_sync_disabled
|
@@ -14852,6 +14939,12 @@ module Google
|
|
14852
14939
|
# @return [Array<String>]
|
14853
14940
|
attr_accessor :exclude_html_ids
|
14854
14941
|
|
14942
|
+
# Optional. Contains the required structure types to extract from the document.
|
14943
|
+
# Supported values: * `shareholder-structure`
|
14944
|
+
# Corresponds to the JSON property `structuredContentTypes`
|
14945
|
+
# @return [Array<String>]
|
14946
|
+
attr_accessor :structured_content_types
|
14947
|
+
|
14855
14948
|
def initialize(**args)
|
14856
14949
|
update!(**args)
|
14857
14950
|
end
|
@@ -14863,6 +14956,7 @@ module Google
|
|
14863
14956
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
14864
14957
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
14865
14958
|
@exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
|
14959
|
+
@structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
|
14866
14960
|
end
|
14867
14961
|
end
|
14868
14962
|
|
@@ -14982,6 +15076,15 @@ module Google
|
|
14982
15076
|
# @return [String]
|
14983
15077
|
attr_accessor :display_name
|
14984
15078
|
|
15079
|
+
# Optional. Feature config for the engine to opt in or opt out of features.
|
15080
|
+
# Supported keys: * `*`: all features, if it's present, all other feature state
|
15081
|
+
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
15082
|
+
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
15083
|
+
# org-chart` * `bi-directional-audio` * `feedback`
|
15084
|
+
# Corresponds to the JSON property `features`
|
15085
|
+
# @return [Hash<String,String>]
|
15086
|
+
attr_accessor :features
|
15087
|
+
|
14985
15088
|
# Optional. The industry vertical that the engine registers. The restriction of
|
14986
15089
|
# the Engine industry vertical is based on DataStore: Vertical on Engine has to
|
14987
15090
|
# match vertical of the DataStore linked to the engine.
|
@@ -15041,6 +15144,7 @@ module Google
|
|
15041
15144
|
@data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
|
15042
15145
|
@disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
|
15043
15146
|
@display_name = args[:display_name] if args.key?(:display_name)
|
15147
|
+
@features = args[:features] if args.key?(:features)
|
15044
15148
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
15045
15149
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
15046
15150
|
@name = args[:name] if args.key?(:name)
|
@@ -15350,6 +15454,12 @@ module Google
|
|
15350
15454
|
# @return [String]
|
15351
15455
|
attr_accessor :data_state
|
15352
15456
|
|
15457
|
+
# Output only. The timestamp when the latest successful training finished. Only
|
15458
|
+
# applicable on Media Recommendation engines.
|
15459
|
+
# Corresponds to the JSON property `lastTrainTime`
|
15460
|
+
# @return [String]
|
15461
|
+
attr_accessor :last_train_time
|
15462
|
+
|
15353
15463
|
# Output only. The timestamp when the latest successful tune finished. Only
|
15354
15464
|
# applicable on Media Recommendation engines.
|
15355
15465
|
# Corresponds to the JSON property `lastTuneTime`
|
@@ -15378,6 +15488,7 @@ module Google
|
|
15378
15488
|
# Update properties of this object
|
15379
15489
|
def update!(**args)
|
15380
15490
|
@data_state = args[:data_state] if args.key?(:data_state)
|
15491
|
+
@last_train_time = args[:last_train_time] if args.key?(:last_train_time)
|
15381
15492
|
@last_tune_time = args[:last_tune_time] if args.key?(:last_tune_time)
|
15382
15493
|
@serving_state = args[:serving_state] if args.key?(:serving_state)
|
15383
15494
|
@tuning_operation = args[:tuning_operation] if args.key?(:tuning_operation)
|
@@ -15569,7 +15680,7 @@ module Google
|
|
15569
15680
|
class GoogleCloudDiscoveryengineV1alphaEvaluationEvaluationSpecQuerySetSpec
|
15570
15681
|
include Google::Apis::Core::Hashable
|
15571
15682
|
|
15572
|
-
#
|
15683
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
15573
15684
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
15574
15685
|
# sampleQuerySet``.
|
15575
15686
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -18807,6 +18918,19 @@ module Google
|
|
18807
18918
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery]
|
18808
18919
|
attr_accessor :query
|
18809
18920
|
|
18921
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
18922
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
18923
|
+
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
18924
|
+
# as this will serve a more general purpose and a wider set of customers. This
|
18925
|
+
# information is used in particular when rendering alternative answers to the
|
18926
|
+
# same prompt, providing visual information about how each answer was generated.
|
18927
|
+
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
18928
|
+
# Assistant, etc.) should always store their information with "google..". 3P
|
18929
|
+
# services can use anything not starting with "google."
|
18930
|
+
# Corresponds to the JSON property `queryConfigs`
|
18931
|
+
# @return [Hash<String,String>]
|
18932
|
+
attr_accessor :query_configs
|
18933
|
+
|
18810
18934
|
def initialize(**args)
|
18811
18935
|
update!(**args)
|
18812
18936
|
end
|
@@ -18816,6 +18940,7 @@ module Google
|
|
18816
18940
|
@answer = args[:answer] if args.key?(:answer)
|
18817
18941
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
18818
18942
|
@query = args[:query] if args.key?(:query)
|
18943
|
+
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
18819
18944
|
end
|
18820
18945
|
end
|
18821
18946
|
|
@@ -19456,15 +19581,6 @@ module Google
|
|
19456
19581
|
# @return [String]
|
19457
19582
|
attr_accessor :update_time
|
19458
19583
|
|
19459
|
-
# Optional. The full resource name of the User, in the format of `projects/`
|
19460
|
-
# project`/locations/`location`/userStores/`user_store`/users/`user_id``. This
|
19461
|
-
# field must be a UTF-8 encoded string with a length limit of 2048 characters.
|
19462
|
-
# If the user field is empty, it's indicating the user has not logged in yet and
|
19463
|
-
# no User entity is created.
|
19464
|
-
# Corresponds to the JSON property `user`
|
19465
|
-
# @return [String]
|
19466
|
-
attr_accessor :user
|
19467
|
-
|
19468
19584
|
# Required. Immutable. The user principal of the User, could be email address or
|
19469
19585
|
# other prinical identifier. This field is immutable. Admin assign licenses
|
19470
19586
|
# based on the user principal.
|
@@ -19489,7 +19605,6 @@ module Google
|
|
19489
19605
|
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
19490
19606
|
@license_config = args[:license_config] if args.key?(:license_config)
|
19491
19607
|
@update_time = args[:update_time] if args.key?(:update_time)
|
19492
|
-
@user = args[:user] if args.key?(:user)
|
19493
19608
|
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
19494
19609
|
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
19495
19610
|
end
|
@@ -19610,6 +19725,71 @@ module Google
|
|
19610
19725
|
end
|
19611
19726
|
end
|
19612
19727
|
|
19728
|
+
# Metadata related to the progress of the UserLicenseService.
|
19729
|
+
# BatchUpdateUserLicenses operation. This will be returned by the google.
|
19730
|
+
# longrunning.Operation.metadata field.
|
19731
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
19732
|
+
include Google::Apis::Core::Hashable
|
19733
|
+
|
19734
|
+
# Operation create time.
|
19735
|
+
# Corresponds to the JSON property `createTime`
|
19736
|
+
# @return [String]
|
19737
|
+
attr_accessor :create_time
|
19738
|
+
|
19739
|
+
# Count of user licenses that failed to be updated.
|
19740
|
+
# Corresponds to the JSON property `failureCount`
|
19741
|
+
# @return [Fixnum]
|
19742
|
+
attr_accessor :failure_count
|
19743
|
+
|
19744
|
+
# Count of user licenses successfully updated.
|
19745
|
+
# Corresponds to the JSON property `successCount`
|
19746
|
+
# @return [Fixnum]
|
19747
|
+
attr_accessor :success_count
|
19748
|
+
|
19749
|
+
# Operation last update time. If the operation is done, this is also the finish
|
19750
|
+
# time.
|
19751
|
+
# Corresponds to the JSON property `updateTime`
|
19752
|
+
# @return [String]
|
19753
|
+
attr_accessor :update_time
|
19754
|
+
|
19755
|
+
def initialize(**args)
|
19756
|
+
update!(**args)
|
19757
|
+
end
|
19758
|
+
|
19759
|
+
# Update properties of this object
|
19760
|
+
def update!(**args)
|
19761
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
19762
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
19763
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
19764
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
19765
|
+
end
|
19766
|
+
end
|
19767
|
+
|
19768
|
+
# Response message for UserLicenseService.BatchUpdateUserLicenses method.
|
19769
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
19770
|
+
include Google::Apis::Core::Hashable
|
19771
|
+
|
19772
|
+
# A sample of errors encountered while processing the request.
|
19773
|
+
# Corresponds to the JSON property `errorSamples`
|
19774
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
|
19775
|
+
attr_accessor :error_samples
|
19776
|
+
|
19777
|
+
# UserLicenses successfully updated.
|
19778
|
+
# Corresponds to the JSON property `userLicenses`
|
19779
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaUserLicense>]
|
19780
|
+
attr_accessor :user_licenses
|
19781
|
+
|
19782
|
+
def initialize(**args)
|
19783
|
+
update!(**args)
|
19784
|
+
end
|
19785
|
+
|
19786
|
+
# Update properties of this object
|
19787
|
+
def update!(**args)
|
19788
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
19789
|
+
@user_licenses = args[:user_licenses] if args.key?(:user_licenses)
|
19790
|
+
end
|
19791
|
+
end
|
19792
|
+
|
19613
19793
|
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
19614
19794
|
class GoogleCloudDiscoveryengineV1betaCmekConfig
|
19615
19795
|
include Google::Apis::Core::Hashable
|
@@ -19639,7 +19819,7 @@ module Google
|
|
19639
19819
|
|
19640
19820
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
19641
19821
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
19642
|
-
# `
|
19822
|
+
# `cmek_config``.
|
19643
19823
|
# Corresponds to the JSON property `name`
|
19644
19824
|
# @return [String]
|
19645
19825
|
attr_accessor :name
|
@@ -20912,6 +21092,12 @@ module Google
|
|
20912
21092
|
# @return [Array<String>]
|
20913
21093
|
attr_accessor :exclude_html_ids
|
20914
21094
|
|
21095
|
+
# Optional. Contains the required structure types to extract from the document.
|
21096
|
+
# Supported values: * `shareholder-structure`
|
21097
|
+
# Corresponds to the JSON property `structuredContentTypes`
|
21098
|
+
# @return [Array<String>]
|
21099
|
+
attr_accessor :structured_content_types
|
21100
|
+
|
20915
21101
|
def initialize(**args)
|
20916
21102
|
update!(**args)
|
20917
21103
|
end
|
@@ -20923,6 +21109,7 @@ module Google
|
|
20923
21109
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
20924
21110
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
20925
21111
|
@exclude_html_ids = args[:exclude_html_ids] if args.key?(:exclude_html_ids)
|
21112
|
+
@structured_content_types = args[:structured_content_types] if args.key?(:structured_content_types)
|
20926
21113
|
end
|
20927
21114
|
end
|
20928
21115
|
|
@@ -21042,6 +21229,15 @@ module Google
|
|
21042
21229
|
# @return [String]
|
21043
21230
|
attr_accessor :display_name
|
21044
21231
|
|
21232
|
+
# Optional. Feature config for the engine to opt in or opt out of features.
|
21233
|
+
# Supported keys: * `*`: all features, if it's present, all other feature state
|
21234
|
+
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
21235
|
+
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
21236
|
+
# org-chart` * `bi-directional-audio` * `feedback`
|
21237
|
+
# Corresponds to the JSON property `features`
|
21238
|
+
# @return [Hash<String,String>]
|
21239
|
+
attr_accessor :features
|
21240
|
+
|
21045
21241
|
# Optional. The industry vertical that the engine registers. The restriction of
|
21046
21242
|
# the Engine industry vertical is based on DataStore: Vertical on Engine has to
|
21047
21243
|
# match vertical of the DataStore linked to the engine.
|
@@ -21091,6 +21287,7 @@ module Google
|
|
21091
21287
|
@data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
|
21092
21288
|
@disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
|
21093
21289
|
@display_name = args[:display_name] if args.key?(:display_name)
|
21290
|
+
@features = args[:features] if args.key?(:features)
|
21094
21291
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
21095
21292
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
21096
21293
|
@name = args[:name] if args.key?(:name)
|
@@ -21510,7 +21707,7 @@ module Google
|
|
21510
21707
|
class GoogleCloudDiscoveryengineV1betaEvaluationEvaluationSpecQuerySetSpec
|
21511
21708
|
include Google::Apis::Core::Hashable
|
21512
21709
|
|
21513
|
-
#
|
21710
|
+
# Optional. The full resource name of the SampleQuerySet used for the evaluation,
|
21514
21711
|
# in the format of `projects/`project`/locations/`location`/sampleQuerySets/`
|
21515
21712
|
# sampleQuerySet``.
|
21516
21713
|
# Corresponds to the JSON property `sampleQuerySet`
|
@@ -24401,6 +24598,69 @@ module Google
|
|
24401
24598
|
end
|
24402
24599
|
end
|
24403
24600
|
|
24601
|
+
# User License information assigned by the admin.
|
24602
|
+
class GoogleCloudDiscoveryengineV1betaUserLicense
|
24603
|
+
include Google::Apis::Core::Hashable
|
24604
|
+
|
24605
|
+
# Output only. User created timestamp.
|
24606
|
+
# Corresponds to the JSON property `createTime`
|
24607
|
+
# @return [String]
|
24608
|
+
attr_accessor :create_time
|
24609
|
+
|
24610
|
+
# Output only. User last logged in time. If the user has not logged in yet, this
|
24611
|
+
# field will be empty.
|
24612
|
+
# Corresponds to the JSON property `lastLoginTime`
|
24613
|
+
# @return [String]
|
24614
|
+
attr_accessor :last_login_time
|
24615
|
+
|
24616
|
+
# Output only. License assignment state of the user. If the user is assigned
|
24617
|
+
# with a license config, the user loggin will be assigned with the license; If
|
24618
|
+
# the user's license assignment state is unassigned or unspecified, no license
|
24619
|
+
# config will be associated to the user;
|
24620
|
+
# Corresponds to the JSON property `licenseAssignmentState`
|
24621
|
+
# @return [String]
|
24622
|
+
attr_accessor :license_assignment_state
|
24623
|
+
|
24624
|
+
# Optional. The full resource name of the Subscription(LicenseConfig) assigned
|
24625
|
+
# to the user.
|
24626
|
+
# Corresponds to the JSON property `licenseConfig`
|
24627
|
+
# @return [String]
|
24628
|
+
attr_accessor :license_config
|
24629
|
+
|
24630
|
+
# Output only. User update timestamp.
|
24631
|
+
# Corresponds to the JSON property `updateTime`
|
24632
|
+
# @return [String]
|
24633
|
+
attr_accessor :update_time
|
24634
|
+
|
24635
|
+
# Required. Immutable. The user principal of the User, could be email address or
|
24636
|
+
# other prinical identifier. This field is immutable. Admin assign licenses
|
24637
|
+
# based on the user principal.
|
24638
|
+
# Corresponds to the JSON property `userPrincipal`
|
24639
|
+
# @return [String]
|
24640
|
+
attr_accessor :user_principal
|
24641
|
+
|
24642
|
+
# Optional. The user profile. We user user full name(First name + Last name) as
|
24643
|
+
# user profile.
|
24644
|
+
# Corresponds to the JSON property `userProfile`
|
24645
|
+
# @return [String]
|
24646
|
+
attr_accessor :user_profile
|
24647
|
+
|
24648
|
+
def initialize(**args)
|
24649
|
+
update!(**args)
|
24650
|
+
end
|
24651
|
+
|
24652
|
+
# Update properties of this object
|
24653
|
+
def update!(**args)
|
24654
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
24655
|
+
@last_login_time = args[:last_login_time] if args.key?(:last_login_time)
|
24656
|
+
@license_assignment_state = args[:license_assignment_state] if args.key?(:license_assignment_state)
|
24657
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
24658
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
24659
|
+
@user_principal = args[:user_principal] if args.key?(:user_principal)
|
24660
|
+
@user_profile = args[:user_profile] if args.key?(:user_profile)
|
24661
|
+
end
|
24662
|
+
end
|
24663
|
+
|
24404
24664
|
# Config to store data store type configuration for workspace data
|
24405
24665
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
24406
24666
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1
|
18
18
|
# Version of the google-apis-discoveryengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.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
|
@@ -466,6 +466,12 @@ module Google
|
|
466
466
|
include Google::Apis::Core::JsonObjectSupport
|
467
467
|
end
|
468
468
|
|
469
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
469
475
|
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequest
|
470
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
477
|
|
@@ -478,6 +484,12 @@ module Google
|
|
478
484
|
include Google::Apis::Core::JsonObjectSupport
|
479
485
|
end
|
480
486
|
|
487
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
|
+
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
491
|
+
end
|
492
|
+
|
481
493
|
class GoogleCloudDiscoveryengineV1BatchVerifyTargetSitesRequest
|
482
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
495
|
|
@@ -3118,6 +3130,18 @@ module Google
|
|
3118
3130
|
include Google::Apis::Core::JsonObjectSupport
|
3119
3131
|
end
|
3120
3132
|
|
3133
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
3134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3135
|
+
|
3136
|
+
include Google::Apis::Core::JsonObjectSupport
|
3137
|
+
end
|
3138
|
+
|
3139
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
3140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3141
|
+
|
3142
|
+
include Google::Apis::Core::JsonObjectSupport
|
3143
|
+
end
|
3144
|
+
|
3121
3145
|
class GoogleCloudDiscoveryengineV1betaCmekConfig
|
3122
3146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3123
3147
|
|
@@ -3886,6 +3910,12 @@ module Google
|
|
3886
3910
|
include Google::Apis::Core::JsonObjectSupport
|
3887
3911
|
end
|
3888
3912
|
|
3913
|
+
class GoogleCloudDiscoveryengineV1betaUserLicense
|
3914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3915
|
+
|
3916
|
+
include Google::Apis::Core::JsonObjectSupport
|
3917
|
+
end
|
3918
|
+
|
3889
3919
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
3890
3920
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3891
3921
|
|
@@ -4702,12 +4732,20 @@ module Google
|
|
4702
4732
|
end
|
4703
4733
|
end
|
4704
4734
|
|
4735
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata
|
4736
|
+
# @private
|
4737
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4738
|
+
property :create_time, as: 'createTime'
|
4739
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
4740
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
4741
|
+
property :update_time, as: 'updateTime'
|
4742
|
+
end
|
4743
|
+
end
|
4744
|
+
|
4705
4745
|
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequest
|
4706
4746
|
# @private
|
4707
4747
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4708
4748
|
property :delete_unassigned_user_licenses, as: 'deleteUnassignedUserLicenses'
|
4709
|
-
property :gcs_source, as: 'gcsSource', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource::Representation
|
4710
|
-
|
4711
4749
|
property :inline_source, as: 'inlineSource', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequestInlineSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesRequestInlineSource::Representation
|
4712
4750
|
|
4713
4751
|
end
|
@@ -4722,6 +4760,16 @@ module Google
|
|
4722
4760
|
end
|
4723
4761
|
end
|
4724
4762
|
|
4763
|
+
class GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesResponse
|
4764
|
+
# @private
|
4765
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4766
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
|
4767
|
+
|
4768
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1UserLicense, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1UserLicense::Representation
|
4769
|
+
|
4770
|
+
end
|
4771
|
+
end
|
4772
|
+
|
4725
4773
|
class GoogleCloudDiscoveryengineV1BatchVerifyTargetSitesRequest
|
4726
4774
|
# @private
|
4727
4775
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5461,6 +5509,7 @@ module Google
|
|
5461
5509
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
5462
5510
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
5463
5511
|
collection :exclude_html_ids, as: 'excludeHtmlIds'
|
5512
|
+
collection :structured_content_types, as: 'structuredContentTypes'
|
5464
5513
|
end
|
5465
5514
|
end
|
5466
5515
|
|
@@ -5512,6 +5561,7 @@ module Google
|
|
5512
5561
|
collection :data_store_ids, as: 'dataStoreIds'
|
5513
5562
|
property :disable_analytics, as: 'disableAnalytics'
|
5514
5563
|
property :display_name, as: 'displayName'
|
5564
|
+
hash :features, as: 'features'
|
5515
5565
|
property :industry_vertical, as: 'industryVertical'
|
5516
5566
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
|
5517
5567
|
|
@@ -6847,6 +6897,7 @@ module Google
|
|
6847
6897
|
|
6848
6898
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query::Representation
|
6849
6899
|
|
6900
|
+
hash :query_configs, as: 'queryConfigs'
|
6850
6901
|
end
|
6851
6902
|
end
|
6852
6903
|
|
@@ -7076,7 +7127,6 @@ module Google
|
|
7076
7127
|
property :license_assignment_state, as: 'licenseAssignmentState'
|
7077
7128
|
property :license_config, as: 'licenseConfig'
|
7078
7129
|
property :update_time, as: 'updateTime'
|
7079
|
-
property :user, as: 'user'
|
7080
7130
|
property :user_principal, as: 'userPrincipal'
|
7081
7131
|
property :user_profile, as: 'userProfile'
|
7082
7132
|
end
|
@@ -7484,6 +7534,7 @@ module Google
|
|
7484
7534
|
property :indexed_record_count, :numeric_string => true, as: 'indexedRecordCount'
|
7485
7535
|
property :progress, as: 'progress', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress::Representation
|
7486
7536
|
|
7537
|
+
property :scheduled_record_count, :numeric_string => true, as: 'scheduledRecordCount'
|
7487
7538
|
property :source_api_request_count, :numeric_string => true, as: 'sourceApiRequestCount'
|
7488
7539
|
property :state, as: 'state'
|
7489
7540
|
property :state_update_time, as: 'stateUpdateTime'
|
@@ -7957,6 +8008,7 @@ module Google
|
|
7957
8008
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
7958
8009
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
7959
8010
|
collection :exclude_html_ids, as: 'excludeHtmlIds'
|
8011
|
+
collection :structured_content_types, as: 'structuredContentTypes'
|
7960
8012
|
end
|
7961
8013
|
end
|
7962
8014
|
|
@@ -7995,6 +8047,7 @@ module Google
|
|
7995
8047
|
collection :data_store_ids, as: 'dataStoreIds'
|
7996
8048
|
property :disable_analytics, as: 'disableAnalytics'
|
7997
8049
|
property :display_name, as: 'displayName'
|
8050
|
+
hash :features, as: 'features'
|
7998
8051
|
property :industry_vertical, as: 'industryVertical'
|
7999
8052
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
|
8000
8053
|
|
@@ -8093,6 +8146,7 @@ module Google
|
|
8093
8146
|
# @private
|
8094
8147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8095
8148
|
property :data_state, as: 'dataState'
|
8149
|
+
property :last_train_time, as: 'lastTrainTime'
|
8096
8150
|
property :last_tune_time, as: 'lastTuneTime'
|
8097
8151
|
property :serving_state, as: 'servingState'
|
8098
8152
|
property :tuning_operation, as: 'tuningOperation'
|
@@ -8973,6 +9027,7 @@ module Google
|
|
8973
9027
|
|
8974
9028
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery::Representation
|
8975
9029
|
|
9030
|
+
hash :query_configs, as: 'queryConfigs'
|
8976
9031
|
end
|
8977
9032
|
end
|
8978
9033
|
|
@@ -9162,7 +9217,6 @@ module Google
|
|
9162
9217
|
property :license_assignment_state, as: 'licenseAssignmentState'
|
9163
9218
|
property :license_config, as: 'licenseConfig'
|
9164
9219
|
property :update_time, as: 'updateTime'
|
9165
|
-
property :user, as: 'user'
|
9166
9220
|
property :user_principal, as: 'userPrincipal'
|
9167
9221
|
property :user_profile, as: 'userProfile'
|
9168
9222
|
end
|
@@ -9202,6 +9256,26 @@ module Google
|
|
9202
9256
|
end
|
9203
9257
|
end
|
9204
9258
|
|
9259
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesMetadata
|
9260
|
+
# @private
|
9261
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9262
|
+
property :create_time, as: 'createTime'
|
9263
|
+
property :failure_count, :numeric_string => true, as: 'failureCount'
|
9264
|
+
property :success_count, :numeric_string => true, as: 'successCount'
|
9265
|
+
property :update_time, as: 'updateTime'
|
9266
|
+
end
|
9267
|
+
end
|
9268
|
+
|
9269
|
+
class GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesResponse
|
9270
|
+
# @private
|
9271
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9272
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
|
9273
|
+
|
9274
|
+
collection :user_licenses, as: 'userLicenses', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaUserLicense, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaUserLicense::Representation
|
9275
|
+
|
9276
|
+
end
|
9277
|
+
end
|
9278
|
+
|
9205
9279
|
class GoogleCloudDiscoveryengineV1betaCmekConfig
|
9206
9280
|
# @private
|
9207
9281
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9570,6 +9644,7 @@ module Google
|
|
9570
9644
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
9571
9645
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
9572
9646
|
collection :exclude_html_ids, as: 'excludeHtmlIds'
|
9647
|
+
collection :structured_content_types, as: 'structuredContentTypes'
|
9573
9648
|
end
|
9574
9649
|
end
|
9575
9650
|
|
@@ -9608,6 +9683,7 @@ module Google
|
|
9608
9683
|
collection :data_store_ids, as: 'dataStoreIds'
|
9609
9684
|
property :disable_analytics, as: 'disableAnalytics'
|
9610
9685
|
property :display_name, as: 'displayName'
|
9686
|
+
hash :features, as: 'features'
|
9611
9687
|
property :industry_vertical, as: 'industryVertical'
|
9612
9688
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
|
9613
9689
|
|
@@ -10481,6 +10557,19 @@ module Google
|
|
10481
10557
|
end
|
10482
10558
|
end
|
10483
10559
|
|
10560
|
+
class GoogleCloudDiscoveryengineV1betaUserLicense
|
10561
|
+
# @private
|
10562
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10563
|
+
property :create_time, as: 'createTime'
|
10564
|
+
property :last_login_time, as: 'lastLoginTime'
|
10565
|
+
property :license_assignment_state, as: 'licenseAssignmentState'
|
10566
|
+
property :license_config, as: 'licenseConfig'
|
10567
|
+
property :update_time, as: 'updateTime'
|
10568
|
+
property :user_principal, as: 'userPrincipal'
|
10569
|
+
property :user_profile, as: 'userProfile'
|
10570
|
+
end
|
10571
|
+
end
|
10572
|
+
|
10484
10573
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
10485
10574
|
# @private
|
10486
10575
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -127,7 +127,7 @@ module Google
|
|
127
127
|
# @param [String] name
|
128
128
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
129
129
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
130
|
-
# `
|
130
|
+
# `cmek_config``.
|
131
131
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig] google_cloud_discoveryengine_v1_cmek_config_object
|
132
132
|
# @param [Boolean] set_default
|
133
133
|
# Set the following CmekConfig as the default to be used for child resources if
|
@@ -265,7 +265,7 @@ module Google
|
|
265
265
|
# @param [String] name
|
266
266
|
# Required. The name of the CmekConfig of the form `projects/`project`/locations/
|
267
267
|
# `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
|
268
|
-
# `
|
268
|
+
# `cmek_config``.
|
269
269
|
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig] google_cloud_discoveryengine_v1_cmek_config_object
|
270
270
|
# @param [Boolean] set_default
|
271
271
|
# 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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.40.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|