google-apis-discoveryengine_v1beta 0.88.0 → 0.89.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 +4 -0
- data/lib/google/apis/discoveryengine_v1beta/classes.rb +119 -0
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +40 -0
- data/lib/google/apis/discoveryengine_v1beta/service.rb +39 -7
- 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: db7be11838352384ec51a1461e5d77205e2645e900e152a26286bdda50f25583
|
|
4
|
+
data.tar.gz: 43e8eb38e51cd8166c0f6740bd1b45929463d452f60bc98fa509ac918db754e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6330d8d609bf66d15b67c52c0fb0f5fae935d4d487c90d3cd7b03f7f5758009f54c69c80ad35511293d97eb6249004b354cf213eae4400bb27f3905bfad10ef
|
|
7
|
+
data.tar.gz: 96cac3ba1daf9860a65873525dd0718513f8fc64d164b7dd247cc3032e120bd9880443f128e2b933523f15a2c1165c867f9996730c94e8fed3079602a51de0d9
|
data/CHANGELOG.md
CHANGED
|
@@ -3934,6 +3934,12 @@ module Google
|
|
|
3934
3934
|
attr_accessor :enable_image_annotation
|
|
3935
3935
|
alias_method :enable_image_annotation?, :enable_image_annotation
|
|
3936
3936
|
|
|
3937
|
+
# Optional. If true, the pdf layout will be refined using an LLM.
|
|
3938
|
+
# Corresponds to the JSON property `enableLlmLayoutParsing`
|
|
3939
|
+
# @return [Boolean]
|
|
3940
|
+
attr_accessor :enable_llm_layout_parsing
|
|
3941
|
+
alias_method :enable_llm_layout_parsing?, :enable_llm_layout_parsing
|
|
3942
|
+
|
|
3937
3943
|
# Optional. If true, the LLM based annotation is added to the table during
|
|
3938
3944
|
# parsing.
|
|
3939
3945
|
# Corresponds to the JSON property `enableTableAnnotation`
|
|
@@ -3970,6 +3976,7 @@ module Google
|
|
|
3970
3976
|
def update!(**args)
|
|
3971
3977
|
@enable_get_processed_document = args[:enable_get_processed_document] if args.key?(:enable_get_processed_document)
|
|
3972
3978
|
@enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
|
|
3979
|
+
@enable_llm_layout_parsing = args[:enable_llm_layout_parsing] if args.key?(:enable_llm_layout_parsing)
|
|
3973
3980
|
@enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
|
|
3974
3981
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
|
3975
3982
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
|
@@ -4069,6 +4076,11 @@ module Google
|
|
|
4069
4076
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata]
|
|
4070
4077
|
attr_accessor :chat_engine_metadata
|
|
4071
4078
|
|
|
4079
|
+
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
|
4080
|
+
# Corresponds to the JSON property `cmekConfig`
|
|
4081
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig]
|
|
4082
|
+
attr_accessor :cmek_config
|
|
4083
|
+
|
|
4072
4084
|
# Common configurations for an Engine.
|
|
4073
4085
|
# Corresponds to the JSON property `commonConfig`
|
|
4074
4086
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineCommonConfig]
|
|
@@ -4130,6 +4142,17 @@ module Google
|
|
|
4130
4142
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
|
|
4131
4143
|
attr_accessor :media_recommendation_engine_config
|
|
4132
4144
|
|
|
4145
|
+
# Optional. Maps a model name to its specific configuration for this engine.
|
|
4146
|
+
# This allows admin users to turn on/off individual models. This only stores
|
|
4147
|
+
# models whose states are overridden by the admin. When the state is unspecified,
|
|
4148
|
+
# or model_configs is empty for this model, the system will decide if this
|
|
4149
|
+
# model should be available or not based on the default configuration. For
|
|
4150
|
+
# example, a preview model should be disabled by default if the admin has not
|
|
4151
|
+
# chosen to enable it.
|
|
4152
|
+
# Corresponds to the JSON property `modelConfigs`
|
|
4153
|
+
# @return [Hash<String,String>]
|
|
4154
|
+
attr_accessor :model_configs
|
|
4155
|
+
|
|
4133
4156
|
# Immutable. Identifier. The fully qualified resource name of the engine. This
|
|
4134
4157
|
# field must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
4135
4158
|
# Format: `projects/`project`/locations/`location`/collections/`collection`/
|
|
@@ -4163,6 +4186,7 @@ module Google
|
|
|
4163
4186
|
@app_type = args[:app_type] if args.key?(:app_type)
|
|
4164
4187
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
|
4165
4188
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
|
4189
|
+
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
4166
4190
|
@common_config = args[:common_config] if args.key?(:common_config)
|
|
4167
4191
|
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
4168
4192
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
@@ -4172,6 +4196,7 @@ module Google
|
|
|
4172
4196
|
@features = args[:features] if args.key?(:features)
|
|
4173
4197
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
4174
4198
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
4199
|
+
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
4175
4200
|
@name = args[:name] if args.key?(:name)
|
|
4176
4201
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
4177
4202
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
@@ -10750,6 +10775,12 @@ module Google
|
|
|
10750
10775
|
attr_accessor :enable_image_annotation
|
|
10751
10776
|
alias_method :enable_image_annotation?, :enable_image_annotation
|
|
10752
10777
|
|
|
10778
|
+
# Optional. If true, the pdf layout will be refined using an LLM.
|
|
10779
|
+
# Corresponds to the JSON property `enableLlmLayoutParsing`
|
|
10780
|
+
# @return [Boolean]
|
|
10781
|
+
attr_accessor :enable_llm_layout_parsing
|
|
10782
|
+
alias_method :enable_llm_layout_parsing?, :enable_llm_layout_parsing
|
|
10783
|
+
|
|
10753
10784
|
# Optional. If true, the LLM based annotation is added to the table during
|
|
10754
10785
|
# parsing.
|
|
10755
10786
|
# Corresponds to the JSON property `enableTableAnnotation`
|
|
@@ -10786,6 +10817,7 @@ module Google
|
|
|
10786
10817
|
def update!(**args)
|
|
10787
10818
|
@enable_get_processed_document = args[:enable_get_processed_document] if args.key?(:enable_get_processed_document)
|
|
10788
10819
|
@enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
|
|
10820
|
+
@enable_llm_layout_parsing = args[:enable_llm_layout_parsing] if args.key?(:enable_llm_layout_parsing)
|
|
10789
10821
|
@enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
|
|
10790
10822
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
|
10791
10823
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
|
@@ -10885,6 +10917,11 @@ module Google
|
|
|
10885
10917
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata]
|
|
10886
10918
|
attr_accessor :chat_engine_metadata
|
|
10887
10919
|
|
|
10920
|
+
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
|
10921
|
+
# Corresponds to the JSON property `cmekConfig`
|
|
10922
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig]
|
|
10923
|
+
attr_accessor :cmek_config
|
|
10924
|
+
|
|
10888
10925
|
# Common configurations for an Engine.
|
|
10889
10926
|
# Corresponds to the JSON property `commonConfig`
|
|
10890
10927
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineCommonConfig]
|
|
@@ -10946,6 +10983,17 @@ module Google
|
|
|
10946
10983
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
|
|
10947
10984
|
attr_accessor :media_recommendation_engine_config
|
|
10948
10985
|
|
|
10986
|
+
# Optional. Maps a model name to its specific configuration for this engine.
|
|
10987
|
+
# This allows admin users to turn on/off individual models. This only stores
|
|
10988
|
+
# models whose states are overridden by the admin. When the state is unspecified,
|
|
10989
|
+
# or model_configs is empty for this model, the system will decide if this
|
|
10990
|
+
# model should be available or not based on the default configuration. For
|
|
10991
|
+
# example, a preview model should be disabled by default if the admin has not
|
|
10992
|
+
# chosen to enable it.
|
|
10993
|
+
# Corresponds to the JSON property `modelConfigs`
|
|
10994
|
+
# @return [Hash<String,String>]
|
|
10995
|
+
attr_accessor :model_configs
|
|
10996
|
+
|
|
10949
10997
|
# Immutable. Identifier. The fully qualified resource name of the engine. This
|
|
10950
10998
|
# field must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
10951
10999
|
# Format: `projects/`project`/locations/`location`/collections/`collection`/
|
|
@@ -10989,6 +11037,7 @@ module Google
|
|
|
10989
11037
|
@app_type = args[:app_type] if args.key?(:app_type)
|
|
10990
11038
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
|
10991
11039
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
|
11040
|
+
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
10992
11041
|
@common_config = args[:common_config] if args.key?(:common_config)
|
|
10993
11042
|
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
10994
11043
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
@@ -10998,6 +11047,7 @@ module Google
|
|
|
10998
11047
|
@features = args[:features] if args.key?(:features)
|
|
10999
11048
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
11000
11049
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
11050
|
+
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
11001
11051
|
@name = args[:name] if args.key?(:name)
|
|
11002
11052
|
@recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
|
|
11003
11053
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
@@ -22181,6 +22231,12 @@ module Google
|
|
|
22181
22231
|
attr_accessor :enable_image_annotation
|
|
22182
22232
|
alias_method :enable_image_annotation?, :enable_image_annotation
|
|
22183
22233
|
|
|
22234
|
+
# Optional. If true, the pdf layout will be refined using an LLM.
|
|
22235
|
+
# Corresponds to the JSON property `enableLlmLayoutParsing`
|
|
22236
|
+
# @return [Boolean]
|
|
22237
|
+
attr_accessor :enable_llm_layout_parsing
|
|
22238
|
+
alias_method :enable_llm_layout_parsing?, :enable_llm_layout_parsing
|
|
22239
|
+
|
|
22184
22240
|
# Optional. If true, the LLM based annotation is added to the table during
|
|
22185
22241
|
# parsing.
|
|
22186
22242
|
# Corresponds to the JSON property `enableTableAnnotation`
|
|
@@ -22217,6 +22273,7 @@ module Google
|
|
|
22217
22273
|
def update!(**args)
|
|
22218
22274
|
@enable_get_processed_document = args[:enable_get_processed_document] if args.key?(:enable_get_processed_document)
|
|
22219
22275
|
@enable_image_annotation = args[:enable_image_annotation] if args.key?(:enable_image_annotation)
|
|
22276
|
+
@enable_llm_layout_parsing = args[:enable_llm_layout_parsing] if args.key?(:enable_llm_layout_parsing)
|
|
22220
22277
|
@enable_table_annotation = args[:enable_table_annotation] if args.key?(:enable_table_annotation)
|
|
22221
22278
|
@exclude_html_classes = args[:exclude_html_classes] if args.key?(:exclude_html_classes)
|
|
22222
22279
|
@exclude_html_elements = args[:exclude_html_elements] if args.key?(:exclude_html_elements)
|
|
@@ -22367,6 +22424,11 @@ module Google
|
|
|
22367
22424
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata]
|
|
22368
22425
|
attr_accessor :chat_engine_metadata
|
|
22369
22426
|
|
|
22427
|
+
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
|
22428
|
+
# Corresponds to the JSON property `cmekConfig`
|
|
22429
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig]
|
|
22430
|
+
attr_accessor :cmek_config
|
|
22431
|
+
|
|
22370
22432
|
# Common configurations for an Engine.
|
|
22371
22433
|
# Corresponds to the JSON property `commonConfig`
|
|
22372
22434
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineCommonConfig]
|
|
@@ -22428,6 +22490,17 @@ module Google
|
|
|
22428
22490
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
|
|
22429
22491
|
attr_accessor :media_recommendation_engine_config
|
|
22430
22492
|
|
|
22493
|
+
# Optional. Maps a model name to its specific configuration for this engine.
|
|
22494
|
+
# This allows admin users to turn on/off individual models. This only stores
|
|
22495
|
+
# models whose states are overridden by the admin. When the state is unspecified,
|
|
22496
|
+
# or model_configs is empty for this model, the system will decide if this
|
|
22497
|
+
# model should be available or not based on the default configuration. For
|
|
22498
|
+
# example, a preview model should be disabled by default if the admin has not
|
|
22499
|
+
# chosen to enable it.
|
|
22500
|
+
# Corresponds to the JSON property `modelConfigs`
|
|
22501
|
+
# @return [Hash<String,String>]
|
|
22502
|
+
attr_accessor :model_configs
|
|
22503
|
+
|
|
22431
22504
|
# Immutable. Identifier. The fully qualified resource name of the engine. This
|
|
22432
22505
|
# field must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
22433
22506
|
# Format: `projects/`project`/locations/`location`/collections/`collection`/
|
|
@@ -22461,6 +22534,7 @@ module Google
|
|
|
22461
22534
|
@app_type = args[:app_type] if args.key?(:app_type)
|
|
22462
22535
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
|
22463
22536
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
|
22537
|
+
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
22464
22538
|
@common_config = args[:common_config] if args.key?(:common_config)
|
|
22465
22539
|
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
22466
22540
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
@@ -22470,6 +22544,7 @@ module Google
|
|
|
22470
22544
|
@features = args[:features] if args.key?(:features)
|
|
22471
22545
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
22472
22546
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
22547
|
+
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
22473
22548
|
@name = args[:name] if args.key?(:name)
|
|
22474
22549
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
22475
22550
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
@@ -24336,6 +24411,31 @@ module Google
|
|
|
24336
24411
|
end
|
|
24337
24412
|
end
|
|
24338
24413
|
|
|
24414
|
+
# Stats about users' licenses.
|
|
24415
|
+
class GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats
|
|
24416
|
+
include Google::Apis::Core::Hashable
|
|
24417
|
+
|
|
24418
|
+
# Required. The LicenseConfig name.
|
|
24419
|
+
# Corresponds to the JSON property `licenseConfig`
|
|
24420
|
+
# @return [String]
|
|
24421
|
+
attr_accessor :license_config
|
|
24422
|
+
|
|
24423
|
+
# Required. The number of licenses used.
|
|
24424
|
+
# Corresponds to the JSON property `usedLicenseCount`
|
|
24425
|
+
# @return [Fixnum]
|
|
24426
|
+
attr_accessor :used_license_count
|
|
24427
|
+
|
|
24428
|
+
def initialize(**args)
|
|
24429
|
+
update!(**args)
|
|
24430
|
+
end
|
|
24431
|
+
|
|
24432
|
+
# Update properties of this object
|
|
24433
|
+
def update!(**args)
|
|
24434
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
|
24435
|
+
@used_license_count = args[:used_license_count] if args.key?(:used_license_count)
|
|
24436
|
+
end
|
|
24437
|
+
end
|
|
24438
|
+
|
|
24339
24439
|
# Response message for CmekConfigService.ListCmekConfigs method.
|
|
24340
24440
|
class GoogleCloudDiscoveryengineV1betaListCmekConfigsResponse
|
|
24341
24441
|
include Google::Apis::Core::Hashable
|
|
@@ -24631,6 +24731,25 @@ module Google
|
|
|
24631
24731
|
end
|
|
24632
24732
|
end
|
|
24633
24733
|
|
|
24734
|
+
# Response message for UserLicenseService.ListLicenseConfigUsageStats method.
|
|
24735
|
+
class GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse
|
|
24736
|
+
include Google::Apis::Core::Hashable
|
|
24737
|
+
|
|
24738
|
+
# All the customer's LicenseConfigUsageStats.
|
|
24739
|
+
# Corresponds to the JSON property `licenseConfigUsageStats`
|
|
24740
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats>]
|
|
24741
|
+
attr_accessor :license_config_usage_stats
|
|
24742
|
+
|
|
24743
|
+
def initialize(**args)
|
|
24744
|
+
update!(**args)
|
|
24745
|
+
end
|
|
24746
|
+
|
|
24747
|
+
# Update properties of this object
|
|
24748
|
+
def update!(**args)
|
|
24749
|
+
@license_config_usage_stats = args[:license_config_usage_stats] if args.key?(:license_config_usage_stats)
|
|
24750
|
+
end
|
|
24751
|
+
end
|
|
24752
|
+
|
|
24634
24753
|
# Response message for SampleQueryService.ListSampleQueries method.
|
|
24635
24754
|
class GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse
|
|
24636
24755
|
include Google::Apis::Core::Hashable
|
|
@@ -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.89.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251109"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3856,6 +3856,12 @@ module Google
|
|
|
3856
3856
|
include Google::Apis::Core::JsonObjectSupport
|
|
3857
3857
|
end
|
|
3858
3858
|
|
|
3859
|
+
class GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats
|
|
3860
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3861
|
+
|
|
3862
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3863
|
+
end
|
|
3864
|
+
|
|
3859
3865
|
class GoogleCloudDiscoveryengineV1betaListCmekConfigsResponse
|
|
3860
3866
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3861
3867
|
|
|
@@ -3928,6 +3934,12 @@ module Google
|
|
|
3928
3934
|
include Google::Apis::Core::JsonObjectSupport
|
|
3929
3935
|
end
|
|
3930
3936
|
|
|
3937
|
+
class GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse
|
|
3938
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3939
|
+
|
|
3940
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3941
|
+
end
|
|
3942
|
+
|
|
3931
3943
|
class GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse
|
|
3932
3944
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3933
3945
|
|
|
@@ -5982,6 +5994,7 @@ module Google
|
|
|
5982
5994
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5983
5995
|
property :enable_get_processed_document, as: 'enableGetProcessedDocument'
|
|
5984
5996
|
property :enable_image_annotation, as: 'enableImageAnnotation'
|
|
5997
|
+
property :enable_llm_layout_parsing, as: 'enableLlmLayoutParsing'
|
|
5985
5998
|
property :enable_table_annotation, as: 'enableTableAnnotation'
|
|
5986
5999
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
|
5987
6000
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
|
@@ -6020,6 +6033,8 @@ module Google
|
|
|
6020
6033
|
|
|
6021
6034
|
property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata::Representation
|
|
6022
6035
|
|
|
6036
|
+
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig::Representation
|
|
6037
|
+
|
|
6023
6038
|
property :common_config, as: 'commonConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineCommonConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineCommonConfig::Representation
|
|
6024
6039
|
|
|
6025
6040
|
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
|
@@ -6031,6 +6046,7 @@ module Google
|
|
|
6031
6046
|
property :industry_vertical, as: 'industryVertical'
|
|
6032
6047
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
|
|
6033
6048
|
|
|
6049
|
+
hash :model_configs, as: 'modelConfigs'
|
|
6034
6050
|
property :name, as: 'name'
|
|
6035
6051
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig::Representation
|
|
6036
6052
|
|
|
@@ -7819,6 +7835,7 @@ module Google
|
|
|
7819
7835
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7820
7836
|
property :enable_get_processed_document, as: 'enableGetProcessedDocument'
|
|
7821
7837
|
property :enable_image_annotation, as: 'enableImageAnnotation'
|
|
7838
|
+
property :enable_llm_layout_parsing, as: 'enableLlmLayoutParsing'
|
|
7822
7839
|
property :enable_table_annotation, as: 'enableTableAnnotation'
|
|
7823
7840
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
|
7824
7841
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
|
@@ -7857,6 +7874,8 @@ module Google
|
|
|
7857
7874
|
|
|
7858
7875
|
property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata::Representation
|
|
7859
7876
|
|
|
7877
|
+
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig::Representation
|
|
7878
|
+
|
|
7860
7879
|
property :common_config, as: 'commonConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineCommonConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineCommonConfig::Representation
|
|
7861
7880
|
|
|
7862
7881
|
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
|
@@ -7868,6 +7887,7 @@ module Google
|
|
|
7868
7887
|
property :industry_vertical, as: 'industryVertical'
|
|
7869
7888
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
|
|
7870
7889
|
|
|
7890
|
+
hash :model_configs, as: 'modelConfigs'
|
|
7871
7891
|
property :name, as: 'name'
|
|
7872
7892
|
property :recommendation_metadata, as: 'recommendationMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata::Representation
|
|
7873
7893
|
|
|
@@ -10916,6 +10936,7 @@ module Google
|
|
|
10916
10936
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10917
10937
|
property :enable_get_processed_document, as: 'enableGetProcessedDocument'
|
|
10918
10938
|
property :enable_image_annotation, as: 'enableImageAnnotation'
|
|
10939
|
+
property :enable_llm_layout_parsing, as: 'enableLlmLayoutParsing'
|
|
10919
10940
|
property :enable_table_annotation, as: 'enableTableAnnotation'
|
|
10920
10941
|
collection :exclude_html_classes, as: 'excludeHtmlClasses'
|
|
10921
10942
|
collection :exclude_html_elements, as: 'excludeHtmlElements'
|
|
@@ -10974,6 +10995,8 @@ module Google
|
|
|
10974
10995
|
|
|
10975
10996
|
property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata::Representation
|
|
10976
10997
|
|
|
10998
|
+
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig::Representation
|
|
10999
|
+
|
|
10977
11000
|
property :common_config, as: 'commonConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineCommonConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineCommonConfig::Representation
|
|
10978
11001
|
|
|
10979
11002
|
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
|
@@ -10985,6 +11008,7 @@ module Google
|
|
|
10985
11008
|
property :industry_vertical, as: 'industryVertical'
|
|
10986
11009
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
|
|
10987
11010
|
|
|
11011
|
+
hash :model_configs, as: 'modelConfigs'
|
|
10988
11012
|
property :name, as: 'name'
|
|
10989
11013
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig::Representation
|
|
10990
11014
|
|
|
@@ -11536,6 +11560,14 @@ module Google
|
|
|
11536
11560
|
end
|
|
11537
11561
|
end
|
|
11538
11562
|
|
|
11563
|
+
class GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats
|
|
11564
|
+
# @private
|
|
11565
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11566
|
+
property :license_config, as: 'licenseConfig'
|
|
11567
|
+
property :used_license_count, :numeric_string => true, as: 'usedLicenseCount'
|
|
11568
|
+
end
|
|
11569
|
+
end
|
|
11570
|
+
|
|
11539
11571
|
class GoogleCloudDiscoveryengineV1betaListCmekConfigsResponse
|
|
11540
11572
|
# @private
|
|
11541
11573
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -11643,6 +11675,14 @@ module Google
|
|
|
11643
11675
|
end
|
|
11644
11676
|
end
|
|
11645
11677
|
|
|
11678
|
+
class GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse
|
|
11679
|
+
# @private
|
|
11680
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11681
|
+
collection :license_config_usage_stats, as: 'licenseConfigUsageStats', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats::Representation
|
|
11682
|
+
|
|
11683
|
+
end
|
|
11684
|
+
end
|
|
11685
|
+
|
|
11646
11686
|
class GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse
|
|
11647
11687
|
# @private
|
|
11648
11688
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9856,18 +9856,50 @@ module Google
|
|
|
9856
9856
|
execute_or_queue_command(command, &block)
|
|
9857
9857
|
end
|
|
9858
9858
|
|
|
9859
|
+
# Lists all the LicenseConfigUsageStatss associated with the project.
|
|
9860
|
+
# @param [String] parent
|
|
9861
|
+
# Required. The parent branch resource name, such as `projects/`project`/
|
|
9862
|
+
# locations/`location`/userStores/`user_store_id``.
|
|
9863
|
+
# @param [String] fields
|
|
9864
|
+
# Selector specifying which fields to include in a partial response.
|
|
9865
|
+
# @param [String] quota_user
|
|
9866
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
9867
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
9868
|
+
# @param [Google::Apis::RequestOptions] options
|
|
9869
|
+
# Request-specific options
|
|
9870
|
+
#
|
|
9871
|
+
# @yield [result, err] Result & error if block supplied
|
|
9872
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse] parsed result object
|
|
9873
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
9874
|
+
#
|
|
9875
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse]
|
|
9876
|
+
#
|
|
9877
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
9878
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
9879
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
9880
|
+
def list_project_location_user_store_license_configs_usage_stats(parent, fields: nil, quota_user: nil, options: nil, &block)
|
|
9881
|
+
command = make_simple_command(:get, 'v1beta/{+parent}/licenseConfigsUsageStats', options)
|
|
9882
|
+
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse::Representation
|
|
9883
|
+
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListLicenseConfigsUsageStatsResponse
|
|
9884
|
+
command.params['parent'] = parent unless parent.nil?
|
|
9885
|
+
command.query['fields'] = fields unless fields.nil?
|
|
9886
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
9887
|
+
execute_or_queue_command(command, &block)
|
|
9888
|
+
end
|
|
9889
|
+
|
|
9859
9890
|
# Lists the User Licenses.
|
|
9860
9891
|
# @param [String] parent
|
|
9861
9892
|
# Required. The parent UserStore resource name, format: `projects/`project`/
|
|
9862
9893
|
# locations/`location`/userStores/`user_store_id``.
|
|
9863
9894
|
# @param [String] filter
|
|
9864
|
-
# Optional. Filter for the list request. Supported fields: * `
|
|
9865
|
-
#
|
|
9866
|
-
# list assigned user licenses. * `
|
|
9867
|
-
# not licensed users. * `
|
|
9868
|
-
# to list users who attempted
|
|
9869
|
-
#
|
|
9870
|
-
# who attempted login but no
|
|
9895
|
+
# Optional. Filter for the list request. Supported fields: * `license`_`
|
|
9896
|
+
# assignment`_`state` * `user_principal` * `user_profile` Examples: * `license`_`
|
|
9897
|
+
# assignment`_`state = ASSIGNED` to list assigned user licenses. * `license`_`
|
|
9898
|
+
# assignment`_`state = NO_LICENSE` to list not licensed users. * `license`_`
|
|
9899
|
+
# assignment`_`state = NO_LICENSE_ATTEMPTED_LOGIN` to list users who attempted
|
|
9900
|
+
# login but no license assigned. * `license`_`assignment`_`state !=
|
|
9901
|
+
# NO_LICENSE_ATTEMPTED_LOGIN` to filter out users who attempted login but no
|
|
9902
|
+
# license assigned.
|
|
9871
9903
|
# @param [Fixnum] page_size
|
|
9872
9904
|
# Optional. Requested page size. Server may return fewer items than requested.
|
|
9873
9905
|
# If unspecified, defaults to 10. The maximum value is 50; values above 50 will
|
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.89.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.89.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:
|