google-apis-discoveryengine_v1alpha 0.91.0 → 0.92.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_v1alpha/classes.rb +204 -8
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +71 -1
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +71 -0
- 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: 82f1bb3229f43029a299b4111cb1ee4c42c688a026670291dc3d75055b186c75
|
|
4
|
+
data.tar.gz: d5122bdad071f619f8072ba6d38910053ead75f0a5a160f1030faf5dfd4d8f35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b8a90f9ece009665f08a6ce7c3bd30dcd0789cb91fda2a84992f028bd5a0384e0119386c4163d71235ea178f6d9c639e889069cd1190dc105a8e93d0bc41f61
|
|
7
|
+
data.tar.gz: 00b5e88b7d909ce0bf5a9fcad616be11c890b2738b7d70f844189d35dab189d89bfc440ecd334874197288b0da6c79c10144115ae56b3421e1def68959f169b1
|
data/CHANGELOG.md
CHANGED
|
@@ -4665,11 +4665,33 @@ module Google
|
|
|
4665
4665
|
# @return [Fixnum]
|
|
4666
4666
|
attr_accessor :effective_search_qpm_threshold
|
|
4667
4667
|
|
|
4668
|
+
# Output only. The earliest next update time for the indexing core subscription
|
|
4669
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
4670
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
4671
|
+
# indexing core subscription threshold request is succeeded.
|
|
4672
|
+
# Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
|
|
4673
|
+
# @return [String]
|
|
4674
|
+
attr_accessor :indexing_core_threshold_next_update_time
|
|
4675
|
+
|
|
4676
|
+
# Output only. The earliest next update time for the search QPM subscription
|
|
4677
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
4678
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
4679
|
+
# QPM subscription threshold request is succeeded.
|
|
4680
|
+
# Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
|
|
4681
|
+
# @return [String]
|
|
4682
|
+
attr_accessor :search_qpm_threshold_next_update_time
|
|
4683
|
+
|
|
4668
4684
|
# Optional. The start time of the currently active billing subscription.
|
|
4669
4685
|
# Corresponds to the JSON property `startTime`
|
|
4670
4686
|
# @return [String]
|
|
4671
4687
|
attr_accessor :start_time
|
|
4672
4688
|
|
|
4689
|
+
# Output only. The latest terminate effective time of search qpm and indexing
|
|
4690
|
+
# core subscriptions.
|
|
4691
|
+
# Corresponds to the JSON property `terminateTime`
|
|
4692
|
+
# @return [String]
|
|
4693
|
+
attr_accessor :terminate_time
|
|
4694
|
+
|
|
4673
4695
|
def initialize(**args)
|
|
4674
4696
|
update!(**args)
|
|
4675
4697
|
end
|
|
@@ -4678,7 +4700,10 @@ module Google
|
|
|
4678
4700
|
def update!(**args)
|
|
4679
4701
|
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
4680
4702
|
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
4703
|
+
@indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
|
|
4704
|
+
@search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
|
|
4681
4705
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
4706
|
+
@terminate_time = args[:terminate_time] if args.key?(:terminate_time)
|
|
4682
4707
|
end
|
|
4683
4708
|
end
|
|
4684
4709
|
|
|
@@ -6528,7 +6553,7 @@ module Google
|
|
|
6528
6553
|
class GoogleCloudDiscoveryengineV1alphaAdvancedCompleteQueryRequest
|
|
6529
6554
|
include Google::Apis::Core::Hashable
|
|
6530
6555
|
|
|
6531
|
-
# Specification to boost suggestions based on the
|
|
6556
|
+
# Specification to boost suggestions based on the condition of the suggestion.
|
|
6532
6557
|
# Corresponds to the JSON property `boostSpec`
|
|
6533
6558
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAdvancedCompleteQueryRequestBoostSpec]
|
|
6534
6559
|
attr_accessor :boost_spec
|
|
@@ -6616,7 +6641,7 @@ module Google
|
|
|
6616
6641
|
end
|
|
6617
6642
|
end
|
|
6618
6643
|
|
|
6619
|
-
# Specification to boost suggestions based on the
|
|
6644
|
+
# Specification to boost suggestions based on the condition of the suggestion.
|
|
6620
6645
|
class GoogleCloudDiscoveryengineV1alphaAdvancedCompleteQueryRequestBoostSpec
|
|
6621
6646
|
include Google::Apis::Core::Hashable
|
|
6622
6647
|
|
|
@@ -7250,11 +7275,6 @@ module Google
|
|
|
7250
7275
|
# @return [String]
|
|
7251
7276
|
attr_accessor :name
|
|
7252
7277
|
|
|
7253
|
-
# Output only. The display name of the agent owner.
|
|
7254
|
-
# Corresponds to the JSON property `ownerDisplayName`
|
|
7255
|
-
# @return [String]
|
|
7256
|
-
attr_accessor :owner_display_name
|
|
7257
|
-
|
|
7258
7278
|
# The reason why the agent was rejected. Only set if the state is PRIVATE, and
|
|
7259
7279
|
# got there via rejection.
|
|
7260
7280
|
# Corresponds to the JSON property `rejectionReason`
|
|
@@ -7307,7 +7327,6 @@ module Google
|
|
|
7307
7327
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
7308
7328
|
@icon = args[:icon] if args.key?(:icon)
|
|
7309
7329
|
@name = args[:name] if args.key?(:name)
|
|
7310
|
-
@owner_display_name = args[:owner_display_name] if args.key?(:owner_display_name)
|
|
7311
7330
|
@rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
|
|
7312
7331
|
@state = args[:state] if args.key?(:state)
|
|
7313
7332
|
@suggested_prompts = args[:suggested_prompts] if args.key?(:suggested_prompts)
|
|
@@ -7580,6 +7599,34 @@ module Google
|
|
|
7580
7599
|
end
|
|
7581
7600
|
end
|
|
7582
7601
|
|
|
7602
|
+
# The customer controllable config for Analytics.
|
|
7603
|
+
class GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
|
|
7604
|
+
include Google::Apis::Core::Hashable
|
|
7605
|
+
|
|
7606
|
+
# Required. The resource name of the analytics customer config. Format: `
|
|
7607
|
+
# projects/`project`/locations/`location`/collections/`collection_id`/engines/`
|
|
7608
|
+
# engine_id`/analytics/config`
|
|
7609
|
+
# Corresponds to the JSON property `name`
|
|
7610
|
+
# @return [String]
|
|
7611
|
+
attr_accessor :name
|
|
7612
|
+
|
|
7613
|
+
# Whether user-level metrics are enabled.
|
|
7614
|
+
# Corresponds to the JSON property `userLevelMetricsEnabled`
|
|
7615
|
+
# @return [Boolean]
|
|
7616
|
+
attr_accessor :user_level_metrics_enabled
|
|
7617
|
+
alias_method :user_level_metrics_enabled?, :user_level_metrics_enabled
|
|
7618
|
+
|
|
7619
|
+
def initialize(**args)
|
|
7620
|
+
update!(**args)
|
|
7621
|
+
end
|
|
7622
|
+
|
|
7623
|
+
# Update properties of this object
|
|
7624
|
+
def update!(**args)
|
|
7625
|
+
@name = args[:name] if args.key?(:name)
|
|
7626
|
+
@user_level_metrics_enabled = args[:user_level_metrics_enabled] if args.key?(:user_level_metrics_enabled)
|
|
7627
|
+
end
|
|
7628
|
+
end
|
|
7629
|
+
|
|
7583
7630
|
# Defines an answer.
|
|
7584
7631
|
class GoogleCloudDiscoveryengineV1alphaAnswer
|
|
7585
7632
|
include Google::Apis::Core::Hashable
|
|
@@ -19701,11 +19748,33 @@ module Google
|
|
|
19701
19748
|
# @return [Fixnum]
|
|
19702
19749
|
attr_accessor :effective_search_qpm_threshold
|
|
19703
19750
|
|
|
19751
|
+
# Output only. The earliest next update time for the indexing core subscription
|
|
19752
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
19753
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
19754
|
+
# indexing core subscription threshold request is succeeded.
|
|
19755
|
+
# Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
|
|
19756
|
+
# @return [String]
|
|
19757
|
+
attr_accessor :indexing_core_threshold_next_update_time
|
|
19758
|
+
|
|
19759
|
+
# Output only. The earliest next update time for the search QPM subscription
|
|
19760
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
19761
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
19762
|
+
# QPM subscription threshold request is succeeded.
|
|
19763
|
+
# Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
|
|
19764
|
+
# @return [String]
|
|
19765
|
+
attr_accessor :search_qpm_threshold_next_update_time
|
|
19766
|
+
|
|
19704
19767
|
# Optional. The start time of the currently active billing subscription.
|
|
19705
19768
|
# Corresponds to the JSON property `startTime`
|
|
19706
19769
|
# @return [String]
|
|
19707
19770
|
attr_accessor :start_time
|
|
19708
19771
|
|
|
19772
|
+
# Output only. The latest terminate effective time of search qpm and indexing
|
|
19773
|
+
# core subscriptions.
|
|
19774
|
+
# Corresponds to the JSON property `terminateTime`
|
|
19775
|
+
# @return [String]
|
|
19776
|
+
attr_accessor :terminate_time
|
|
19777
|
+
|
|
19709
19778
|
def initialize(**args)
|
|
19710
19779
|
update!(**args)
|
|
19711
19780
|
end
|
|
@@ -19714,7 +19783,10 @@ module Google
|
|
|
19714
19783
|
def update!(**args)
|
|
19715
19784
|
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
19716
19785
|
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
19786
|
+
@indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
|
|
19787
|
+
@search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
|
|
19717
19788
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
19789
|
+
@terminate_time = args[:terminate_time] if args.key?(:terminate_time)
|
|
19718
19790
|
end
|
|
19719
19791
|
end
|
|
19720
19792
|
|
|
@@ -27031,6 +27103,11 @@ module Google
|
|
|
27031
27103
|
# @return [String]
|
|
27032
27104
|
attr_accessor :name
|
|
27033
27105
|
|
|
27106
|
+
# Output only. The nodes associated with the Widget Config.
|
|
27107
|
+
# Corresponds to the JSON property `nodes`
|
|
27108
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigNode>]
|
|
27109
|
+
attr_accessor :nodes
|
|
27110
|
+
|
|
27034
27111
|
# The type of snippet to display in UCS widget. -
|
|
27035
27112
|
# RESULT_DISPLAY_TYPE_UNSPECIFIED for existing users. - SNIPPET for new non-
|
|
27036
27113
|
# enterprise search users. - EXTRACTIVE_ANSWER for new enterprise search users.
|
|
@@ -27097,6 +27174,7 @@ module Google
|
|
|
27097
27174
|
@llm_enabled = args[:llm_enabled] if args.key?(:llm_enabled)
|
|
27098
27175
|
@minimum_data_term_accepted = args[:minimum_data_term_accepted] if args.key?(:minimum_data_term_accepted)
|
|
27099
27176
|
@name = args[:name] if args.key?(:name)
|
|
27177
|
+
@nodes = args[:nodes] if args.key?(:nodes)
|
|
27100
27178
|
@result_display_type = args[:result_display_type] if args.key?(:result_display_type)
|
|
27101
27179
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
27102
27180
|
@ui_branding = args[:ui_branding] if args.key?(:ui_branding)
|
|
@@ -27490,6 +27568,61 @@ module Google
|
|
|
27490
27568
|
end
|
|
27491
27569
|
end
|
|
27492
27570
|
|
|
27571
|
+
# Represents a single reusable computational or logical unit.
|
|
27572
|
+
class GoogleCloudDiscoveryengineV1alphaWidgetConfigNode
|
|
27573
|
+
include Google::Apis::Core::Hashable
|
|
27574
|
+
|
|
27575
|
+
# Output only. A detailed description of what the node does.
|
|
27576
|
+
# Corresponds to the JSON property `description`
|
|
27577
|
+
# @return [String]
|
|
27578
|
+
attr_accessor :description
|
|
27579
|
+
|
|
27580
|
+
# Output only. A human readable name for the node.
|
|
27581
|
+
# Corresponds to the JSON property `displayName`
|
|
27582
|
+
# @return [String]
|
|
27583
|
+
attr_accessor :display_name
|
|
27584
|
+
|
|
27585
|
+
# Output only. An identifier or URL pointing to an icon representing this node
|
|
27586
|
+
# type.
|
|
27587
|
+
# Corresponds to the JSON property `iconUrl`
|
|
27588
|
+
# @return [String]
|
|
27589
|
+
attr_accessor :icon_url
|
|
27590
|
+
|
|
27591
|
+
# Output only. The output schema of the tool. This schema is expected to conform
|
|
27592
|
+
# to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.3.html/
|
|
27593
|
+
# and AIP-146). It describes the structure of the output produced by this node.
|
|
27594
|
+
# Corresponds to the JSON property `outputSchema`
|
|
27595
|
+
# @return [Hash<String,Object>]
|
|
27596
|
+
attr_accessor :output_schema
|
|
27597
|
+
|
|
27598
|
+
# Output only. The parameter schema of the tool. This schema is expected to
|
|
27599
|
+
# conform to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.
|
|
27600
|
+
# 3.html and AIP-146). It describes the expected structure of the parameters
|
|
27601
|
+
# that this node accepts.
|
|
27602
|
+
# Corresponds to the JSON property `parameterSchema`
|
|
27603
|
+
# @return [Hash<String,Object>]
|
|
27604
|
+
attr_accessor :parameter_schema
|
|
27605
|
+
|
|
27606
|
+
# Output only. The type of the node.
|
|
27607
|
+
# Corresponds to the JSON property `type`
|
|
27608
|
+
# @return [String]
|
|
27609
|
+
attr_accessor :type
|
|
27610
|
+
|
|
27611
|
+
def initialize(**args)
|
|
27612
|
+
update!(**args)
|
|
27613
|
+
end
|
|
27614
|
+
|
|
27615
|
+
# Update properties of this object
|
|
27616
|
+
def update!(**args)
|
|
27617
|
+
@description = args[:description] if args.key?(:description)
|
|
27618
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
27619
|
+
@icon_url = args[:icon_url] if args.key?(:icon_url)
|
|
27620
|
+
@output_schema = args[:output_schema] if args.key?(:output_schema)
|
|
27621
|
+
@parameter_schema = args[:parameter_schema] if args.key?(:parameter_schema)
|
|
27622
|
+
@type = args[:type] if args.key?(:type)
|
|
27623
|
+
end
|
|
27624
|
+
end
|
|
27625
|
+
|
|
27493
27626
|
# Facet field that maps to a UI Component.
|
|
27494
27627
|
class GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
|
|
27495
27628
|
include Google::Apis::Core::Hashable
|
|
@@ -30986,11 +31119,33 @@ module Google
|
|
|
30986
31119
|
# @return [Fixnum]
|
|
30987
31120
|
attr_accessor :effective_search_qpm_threshold
|
|
30988
31121
|
|
|
31122
|
+
# Output only. The earliest next update time for the indexing core subscription
|
|
31123
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
31124
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
31125
|
+
# indexing core subscription threshold request is succeeded.
|
|
31126
|
+
# Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
|
|
31127
|
+
# @return [String]
|
|
31128
|
+
attr_accessor :indexing_core_threshold_next_update_time
|
|
31129
|
+
|
|
31130
|
+
# Output only. The earliest next update time for the search QPM subscription
|
|
31131
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
31132
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
31133
|
+
# QPM subscription threshold request is succeeded.
|
|
31134
|
+
# Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
|
|
31135
|
+
# @return [String]
|
|
31136
|
+
attr_accessor :search_qpm_threshold_next_update_time
|
|
31137
|
+
|
|
30989
31138
|
# Optional. The start time of the currently active billing subscription.
|
|
30990
31139
|
# Corresponds to the JSON property `startTime`
|
|
30991
31140
|
# @return [String]
|
|
30992
31141
|
attr_accessor :start_time
|
|
30993
31142
|
|
|
31143
|
+
# Output only. The latest terminate effective time of search qpm and indexing
|
|
31144
|
+
# core subscriptions.
|
|
31145
|
+
# Corresponds to the JSON property `terminateTime`
|
|
31146
|
+
# @return [String]
|
|
31147
|
+
attr_accessor :terminate_time
|
|
31148
|
+
|
|
30994
31149
|
def initialize(**args)
|
|
30995
31150
|
update!(**args)
|
|
30996
31151
|
end
|
|
@@ -30999,7 +31154,10 @@ module Google
|
|
|
30999
31154
|
def update!(**args)
|
|
31000
31155
|
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
31001
31156
|
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
31157
|
+
@indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
|
|
31158
|
+
@search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
|
|
31002
31159
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
31160
|
+
@terminate_time = args[:terminate_time] if args.key?(:terminate_time)
|
|
31003
31161
|
end
|
|
31004
31162
|
end
|
|
31005
31163
|
|
|
@@ -33964,11 +34122,21 @@ module Google
|
|
|
33964
34122
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonIngestionError]
|
|
33965
34123
|
attr_accessor :ingestion_error
|
|
33966
34124
|
|
|
34125
|
+
# Indicates that the source MIME type is blocked.
|
|
34126
|
+
# Corresponds to the JSON property `mimeTypeBlocked`
|
|
34127
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked]
|
|
34128
|
+
attr_accessor :mime_type_blocked
|
|
34129
|
+
|
|
33967
34130
|
# Indicates that the source is paywalled and cannot be ingested.
|
|
33968
34131
|
# Corresponds to the JSON property `paywallError`
|
|
33969
34132
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPaywallError]
|
|
33970
34133
|
attr_accessor :paywall_error
|
|
33971
34134
|
|
|
34135
|
+
# Indicates that the policy check failed.
|
|
34136
|
+
# Corresponds to the JSON property `policyCheckFailed`
|
|
34137
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed]
|
|
34138
|
+
attr_accessor :policy_check_failed
|
|
34139
|
+
|
|
33972
34140
|
# Indicates that the source is empty.
|
|
33973
34141
|
# Corresponds to the JSON property `sourceEmpty`
|
|
33974
34142
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty]
|
|
@@ -34015,7 +34183,9 @@ module Google
|
|
|
34015
34183
|
@domain_blocked = args[:domain_blocked] if args.key?(:domain_blocked)
|
|
34016
34184
|
@google_drive_error = args[:google_drive_error] if args.key?(:google_drive_error)
|
|
34017
34185
|
@ingestion_error = args[:ingestion_error] if args.key?(:ingestion_error)
|
|
34186
|
+
@mime_type_blocked = args[:mime_type_blocked] if args.key?(:mime_type_blocked)
|
|
34018
34187
|
@paywall_error = args[:paywall_error] if args.key?(:paywall_error)
|
|
34188
|
+
@policy_check_failed = args[:policy_check_failed] if args.key?(:policy_check_failed)
|
|
34019
34189
|
@source_empty = args[:source_empty] if args.key?(:source_empty)
|
|
34020
34190
|
@source_limit_exceeded = args[:source_limit_exceeded] if args.key?(:source_limit_exceeded)
|
|
34021
34191
|
@source_too_long = args[:source_too_long] if args.key?(:source_too_long)
|
|
@@ -34135,6 +34305,19 @@ module Google
|
|
|
34135
34305
|
end
|
|
34136
34306
|
end
|
|
34137
34307
|
|
|
34308
|
+
# Indicates that the source MIME type is blocked.
|
|
34309
|
+
class GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked
|
|
34310
|
+
include Google::Apis::Core::Hashable
|
|
34311
|
+
|
|
34312
|
+
def initialize(**args)
|
|
34313
|
+
update!(**args)
|
|
34314
|
+
end
|
|
34315
|
+
|
|
34316
|
+
# Update properties of this object
|
|
34317
|
+
def update!(**args)
|
|
34318
|
+
end
|
|
34319
|
+
end
|
|
34320
|
+
|
|
34138
34321
|
# Indicates that the source is paywalled and cannot be ingested.
|
|
34139
34322
|
class GoogleCloudNotebooklmV1alphaFailureReasonPaywallError
|
|
34140
34323
|
include Google::Apis::Core::Hashable
|
|
@@ -34148,6 +34331,19 @@ module Google
|
|
|
34148
34331
|
end
|
|
34149
34332
|
end
|
|
34150
34333
|
|
|
34334
|
+
# Indicates that the policy check failed.
|
|
34335
|
+
class GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed
|
|
34336
|
+
include Google::Apis::Core::Hashable
|
|
34337
|
+
|
|
34338
|
+
def initialize(**args)
|
|
34339
|
+
update!(**args)
|
|
34340
|
+
end
|
|
34341
|
+
|
|
34342
|
+
# Update properties of this object
|
|
34343
|
+
def update!(**args)
|
|
34344
|
+
end
|
|
34345
|
+
end
|
|
34346
|
+
|
|
34151
34347
|
# Indicates that the source is empty.
|
|
34152
34348
|
class GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty
|
|
34153
34349
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DiscoveryengineV1alpha
|
|
18
18
|
# Version of the google-apis-discoveryengine_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.92.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 = "20260125"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1156,6 +1156,12 @@ module Google
|
|
|
1156
1156
|
include Google::Apis::Core::JsonObjectSupport
|
|
1157
1157
|
end
|
|
1158
1158
|
|
|
1159
|
+
class GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
|
|
1160
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1161
|
+
|
|
1162
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1163
|
+
end
|
|
1164
|
+
|
|
1159
1165
|
class GoogleCloudDiscoveryengineV1alphaAnswer
|
|
1160
1166
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1161
1167
|
|
|
@@ -4324,6 +4330,12 @@ module Google
|
|
|
4324
4330
|
include Google::Apis::Core::JsonObjectSupport
|
|
4325
4331
|
end
|
|
4326
4332
|
|
|
4333
|
+
class GoogleCloudDiscoveryengineV1alphaWidgetConfigNode
|
|
4334
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4335
|
+
|
|
4336
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4337
|
+
end
|
|
4338
|
+
|
|
4327
4339
|
class GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
|
|
4328
4340
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4329
4341
|
|
|
@@ -5380,12 +5392,24 @@ module Google
|
|
|
5380
5392
|
include Google::Apis::Core::JsonObjectSupport
|
|
5381
5393
|
end
|
|
5382
5394
|
|
|
5395
|
+
class GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked
|
|
5396
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
5397
|
+
|
|
5398
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
5399
|
+
end
|
|
5400
|
+
|
|
5383
5401
|
class GoogleCloudNotebooklmV1alphaFailureReasonPaywallError
|
|
5384
5402
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
5385
5403
|
|
|
5386
5404
|
include Google::Apis::Core::JsonObjectSupport
|
|
5387
5405
|
end
|
|
5388
5406
|
|
|
5407
|
+
class GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed
|
|
5408
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
5409
|
+
|
|
5410
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
5411
|
+
end
|
|
5412
|
+
|
|
5389
5413
|
class GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty
|
|
5390
5414
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
5391
5415
|
|
|
@@ -6847,7 +6871,10 @@ module Google
|
|
|
6847
6871
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6848
6872
|
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
6849
6873
|
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
6874
|
+
property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
|
|
6875
|
+
property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
|
|
6850
6876
|
property :start_time, as: 'startTime'
|
|
6877
|
+
property :terminate_time, as: 'terminateTime'
|
|
6851
6878
|
end
|
|
6852
6879
|
end
|
|
6853
6880
|
|
|
@@ -7505,7 +7532,6 @@ module Google
|
|
|
7505
7532
|
property :icon, as: 'icon', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentImage, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentImage::Representation
|
|
7506
7533
|
|
|
7507
7534
|
property :name, as: 'name'
|
|
7508
|
-
property :owner_display_name, as: 'ownerDisplayName'
|
|
7509
7535
|
property :rejection_reason, as: 'rejectionReason'
|
|
7510
7536
|
property :state, as: 'state'
|
|
7511
7537
|
collection :suggested_prompts, as: 'suggestedPrompts', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentViewSuggestedPrompt, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentViewSuggestedPrompt::Representation
|
|
@@ -7589,6 +7615,14 @@ module Google
|
|
|
7589
7615
|
end
|
|
7590
7616
|
end
|
|
7591
7617
|
|
|
7618
|
+
class GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
|
|
7619
|
+
# @private
|
|
7620
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7621
|
+
property :name, as: 'name'
|
|
7622
|
+
property :user_level_metrics_enabled, as: 'userLevelMetricsEnabled'
|
|
7623
|
+
end
|
|
7624
|
+
end
|
|
7625
|
+
|
|
7592
7626
|
class GoogleCloudDiscoveryengineV1alphaAnswer
|
|
7593
7627
|
# @private
|
|
7594
7628
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10997,7 +11031,10 @@ module Google
|
|
|
10997
11031
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10998
11032
|
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
10999
11033
|
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
11034
|
+
property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
|
|
11035
|
+
property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
|
|
11000
11036
|
property :start_time, as: 'startTime'
|
|
11037
|
+
property :terminate_time, as: 'terminateTime'
|
|
11001
11038
|
end
|
|
11002
11039
|
end
|
|
11003
11040
|
|
|
@@ -12891,6 +12928,8 @@ module Google
|
|
|
12891
12928
|
property :llm_enabled, as: 'llmEnabled'
|
|
12892
12929
|
property :minimum_data_term_accepted, as: 'minimumDataTermAccepted'
|
|
12893
12930
|
property :name, as: 'name'
|
|
12931
|
+
collection :nodes, as: 'nodes', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigNode, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigNode::Representation
|
|
12932
|
+
|
|
12894
12933
|
property :result_display_type, as: 'resultDisplayType'
|
|
12895
12934
|
property :solution_type, as: 'solutionType'
|
|
12896
12935
|
property :ui_branding, as: 'uiBranding', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiBrandingSettings, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiBrandingSettings::Representation
|
|
@@ -13001,6 +13040,18 @@ module Google
|
|
|
13001
13040
|
end
|
|
13002
13041
|
end
|
|
13003
13042
|
|
|
13043
|
+
class GoogleCloudDiscoveryengineV1alphaWidgetConfigNode
|
|
13044
|
+
# @private
|
|
13045
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13046
|
+
property :description, as: 'description'
|
|
13047
|
+
property :display_name, as: 'displayName'
|
|
13048
|
+
property :icon_url, as: 'iconUrl'
|
|
13049
|
+
hash :output_schema, as: 'outputSchema'
|
|
13050
|
+
hash :parameter_schema, as: 'parameterSchema'
|
|
13051
|
+
property :type, as: 'type'
|
|
13052
|
+
end
|
|
13053
|
+
end
|
|
13054
|
+
|
|
13004
13055
|
class GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
|
|
13005
13056
|
# @private
|
|
13006
13057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -13952,7 +14003,10 @@ module Google
|
|
|
13952
14003
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13953
14004
|
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
13954
14005
|
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
14006
|
+
property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
|
|
14007
|
+
property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
|
|
13955
14008
|
property :start_time, as: 'startTime'
|
|
14009
|
+
property :terminate_time, as: 'terminateTime'
|
|
13956
14010
|
end
|
|
13957
14011
|
end
|
|
13958
14012
|
|
|
@@ -14708,8 +14762,12 @@ module Google
|
|
|
14708
14762
|
|
|
14709
14763
|
property :ingestion_error, as: 'ingestionError', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonIngestionError, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonIngestionError::Representation
|
|
14710
14764
|
|
|
14765
|
+
property :mime_type_blocked, as: 'mimeTypeBlocked', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked::Representation
|
|
14766
|
+
|
|
14711
14767
|
property :paywall_error, as: 'paywallError', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPaywallError, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPaywallError::Representation
|
|
14712
14768
|
|
|
14769
|
+
property :policy_check_failed, as: 'policyCheckFailed', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed::Representation
|
|
14770
|
+
|
|
14713
14771
|
property :source_empty, as: 'sourceEmpty', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty::Representation
|
|
14714
14772
|
|
|
14715
14773
|
property :source_limit_exceeded, as: 'sourceLimitExceeded', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceLimitExceeded, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceLimitExceeded::Representation
|
|
@@ -14775,12 +14833,24 @@ module Google
|
|
|
14775
14833
|
end
|
|
14776
14834
|
end
|
|
14777
14835
|
|
|
14836
|
+
class GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked
|
|
14837
|
+
# @private
|
|
14838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14839
|
+
end
|
|
14840
|
+
end
|
|
14841
|
+
|
|
14778
14842
|
class GoogleCloudNotebooklmV1alphaFailureReasonPaywallError
|
|
14779
14843
|
# @private
|
|
14780
14844
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14781
14845
|
end
|
|
14782
14846
|
end
|
|
14783
14847
|
|
|
14848
|
+
class GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed
|
|
14849
|
+
# @private
|
|
14850
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14851
|
+
end
|
|
14852
|
+
end
|
|
14853
|
+
|
|
14784
14854
|
class GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty
|
|
14785
14855
|
# @private
|
|
14786
14856
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5837,6 +5837,77 @@ module Google
|
|
|
5837
5837
|
execute_or_queue_command(command, &block)
|
|
5838
5838
|
end
|
|
5839
5839
|
|
|
5840
|
+
# Gets the AnalyticsConfig.
|
|
5841
|
+
# @param [String] name
|
|
5842
|
+
# Required. The resource name of the analytics customer config. Format: `
|
|
5843
|
+
# projects/`project`/locations/`location`/collections/`collection_id`/engines/`
|
|
5844
|
+
# engine_id`/analytics/config`
|
|
5845
|
+
# @param [String] fields
|
|
5846
|
+
# Selector specifying which fields to include in a partial response.
|
|
5847
|
+
# @param [String] quota_user
|
|
5848
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
5849
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
5850
|
+
# @param [Google::Apis::RequestOptions] options
|
|
5851
|
+
# Request-specific options
|
|
5852
|
+
#
|
|
5853
|
+
# @yield [result, err] Result & error if block supplied
|
|
5854
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig] parsed result object
|
|
5855
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
5856
|
+
#
|
|
5857
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig]
|
|
5858
|
+
#
|
|
5859
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
5860
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
5861
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
5862
|
+
def get_project_location_collection_engine_analytic_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
5863
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
|
5864
|
+
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig::Representation
|
|
5865
|
+
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
|
|
5866
|
+
command.params['name'] = name unless name.nil?
|
|
5867
|
+
command.query['fields'] = fields unless fields.nil?
|
|
5868
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
5869
|
+
execute_or_queue_command(command, &block)
|
|
5870
|
+
end
|
|
5871
|
+
|
|
5872
|
+
# Updates the AnalyticsConfig for analytics.
|
|
5873
|
+
# @param [String] name
|
|
5874
|
+
# Required. The resource name of the analytics customer config. Format: `
|
|
5875
|
+
# projects/`project`/locations/`location`/collections/`collection_id`/engines/`
|
|
5876
|
+
# engine_id`/analytics/config`
|
|
5877
|
+
# @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig] google_cloud_discoveryengine_v1alpha_analytics_config_object
|
|
5878
|
+
# @param [String] update_mask
|
|
5879
|
+
# The list of fields of AnalyticsConfig to update. If not specified, the method
|
|
5880
|
+
# will perform a full replacement.
|
|
5881
|
+
# @param [String] fields
|
|
5882
|
+
# Selector specifying which fields to include in a partial response.
|
|
5883
|
+
# @param [String] quota_user
|
|
5884
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
5885
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
5886
|
+
# @param [Google::Apis::RequestOptions] options
|
|
5887
|
+
# Request-specific options
|
|
5888
|
+
#
|
|
5889
|
+
# @yield [result, err] Result & error if block supplied
|
|
5890
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig] parsed result object
|
|
5891
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
5892
|
+
#
|
|
5893
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig]
|
|
5894
|
+
#
|
|
5895
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
5896
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
5897
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
5898
|
+
def update_project_location_collection_engine_analytic_config(name, google_cloud_discoveryengine_v1alpha_analytics_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
5899
|
+
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
|
5900
|
+
command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig::Representation
|
|
5901
|
+
command.request_object = google_cloud_discoveryengine_v1alpha_analytics_config_object
|
|
5902
|
+
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig::Representation
|
|
5903
|
+
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
|
|
5904
|
+
command.params['name'] = name unless name.nil?
|
|
5905
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
5906
|
+
command.query['fields'] = fields unless fields.nil?
|
|
5907
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
5908
|
+
execute_or_queue_command(command, &block)
|
|
5909
|
+
end
|
|
5910
|
+
|
|
5840
5911
|
# Creates an Assistant.
|
|
5841
5912
|
# @param [String] parent
|
|
5842
5913
|
# Required. The parent resource name. Format: `projects/`project`/locations/`
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-discoveryengine_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.92.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_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.92.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|