google-apis-discoveryengine_v1beta 0.87.0 → 0.88.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 +207 -9
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +68 -0
- data/lib/google/apis/discoveryengine_v1beta/service.rb +6 -6
- 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: afe2ab6c17dbfda2a15aa2ce41e80561747c027e781d63ce37c93f2a9094f31f
|
|
4
|
+
data.tar.gz: da4d14ec67c2517539bea2c7365530cc769d7da2f144df586d3834cab93359f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d33cea69c03c7a1be1e1f004292323015d79a5c6ee3d1e55cb02c04424e72565a92290e4ce8445639e1fa79e953067a70fe6f8cc3001cf711b28eae27a49b27
|
|
7
|
+
data.tar.gz: 4b2cf1a6f84a5df27e1b9311436bbfa97144e68813d66f8bfc9f4b73cabb418ac243c3cb2004b9c7121bf62dcf63dc62a4a98fecb33590a01105285480ed9666
|
data/CHANGELOG.md
CHANGED
|
@@ -3253,6 +3253,11 @@ module Google
|
|
|
3253
3253
|
# @return [String]
|
|
3254
3254
|
attr_accessor :configurable_billing_approach
|
|
3255
3255
|
|
|
3256
|
+
# Output only. The timestamp when configurable_billing_approach was last updated.
|
|
3257
|
+
# Corresponds to the JSON property `configurableBillingApproachUpdateTime`
|
|
3258
|
+
# @return [String]
|
|
3259
|
+
attr_accessor :configurable_billing_approach_update_time
|
|
3260
|
+
|
|
3256
3261
|
# Immutable. The content config of the data store. If this field is unset, the
|
|
3257
3262
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
|
3258
3263
|
# Corresponds to the JSON property `contentConfig`
|
|
@@ -3357,6 +3362,7 @@ module Google
|
|
|
3357
3362
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
|
3358
3363
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
3359
3364
|
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
3365
|
+
@configurable_billing_approach_update_time = args[:configurable_billing_approach_update_time] if args.key?(:configurable_billing_approach_update_time)
|
|
3360
3366
|
@content_config = args[:content_config] if args.key?(:content_config)
|
|
3361
3367
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3362
3368
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
|
@@ -5046,6 +5052,16 @@ module Google
|
|
|
5046
5052
|
class GoogleCloudDiscoveryengineV1Project
|
|
5047
5053
|
include Google::Apis::Core::Hashable
|
|
5048
5054
|
|
|
5055
|
+
# Represents the currently effective configurable billing parameters. These
|
|
5056
|
+
# values are derived from the customer's subscription history stored internally
|
|
5057
|
+
# and reflect the thresholds actively being used for billing purposes at the
|
|
5058
|
+
# time of the GetProject call. This includes the start_time of the subscription
|
|
5059
|
+
# and may differ from the values in `customer_provided_config` due to billing
|
|
5060
|
+
# rules (e.g., scale-downs taking effect only at the start of a new month).
|
|
5061
|
+
# Corresponds to the JSON property `configurableBillingStatus`
|
|
5062
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus]
|
|
5063
|
+
attr_accessor :configurable_billing_status
|
|
5064
|
+
|
|
5049
5065
|
# Output only. The timestamp when this project is created.
|
|
5050
5066
|
# Corresponds to the JSON property `createTime`
|
|
5051
5067
|
# @return [String]
|
|
@@ -5080,6 +5096,7 @@ module Google
|
|
|
5080
5096
|
|
|
5081
5097
|
# Update properties of this object
|
|
5082
5098
|
def update!(**args)
|
|
5099
|
+
@configurable_billing_status = args[:configurable_billing_status] if args.key?(:configurable_billing_status)
|
|
5083
5100
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
5084
5101
|
@customer_provided_config = args[:customer_provided_config] if args.key?(:customer_provided_config)
|
|
5085
5102
|
@name = args[:name] if args.key?(:name)
|
|
@@ -5088,6 +5105,46 @@ module Google
|
|
|
5088
5105
|
end
|
|
5089
5106
|
end
|
|
5090
5107
|
|
|
5108
|
+
# Represents the currently effective configurable billing parameters. These
|
|
5109
|
+
# values are derived from the customer's subscription history stored internally
|
|
5110
|
+
# and reflect the thresholds actively being used for billing purposes at the
|
|
5111
|
+
# time of the GetProject call. This includes the start_time of the subscription
|
|
5112
|
+
# and may differ from the values in `customer_provided_config` due to billing
|
|
5113
|
+
# rules (e.g., scale-downs taking effect only at the start of a new month).
|
|
5114
|
+
class GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus
|
|
5115
|
+
include Google::Apis::Core::Hashable
|
|
5116
|
+
|
|
5117
|
+
# Optional. The currently effective Indexing Core threshold. This is the
|
|
5118
|
+
# threshold against which Indexing Core usage is compared for overage
|
|
5119
|
+
# calculations.
|
|
5120
|
+
# Corresponds to the JSON property `effectiveIndexingCoreThreshold`
|
|
5121
|
+
# @return [Fixnum]
|
|
5122
|
+
attr_accessor :effective_indexing_core_threshold
|
|
5123
|
+
|
|
5124
|
+
# Optional. The currently effective Search QPM threshold in queries per minute.
|
|
5125
|
+
# This is the threshold against which QPM usage is compared for overage
|
|
5126
|
+
# calculations.
|
|
5127
|
+
# Corresponds to the JSON property `effectiveSearchQpmThreshold`
|
|
5128
|
+
# @return [Fixnum]
|
|
5129
|
+
attr_accessor :effective_search_qpm_threshold
|
|
5130
|
+
|
|
5131
|
+
# Optional. The start time of the currently active billing subscription.
|
|
5132
|
+
# Corresponds to the JSON property `startTime`
|
|
5133
|
+
# @return [String]
|
|
5134
|
+
attr_accessor :start_time
|
|
5135
|
+
|
|
5136
|
+
def initialize(**args)
|
|
5137
|
+
update!(**args)
|
|
5138
|
+
end
|
|
5139
|
+
|
|
5140
|
+
# Update properties of this object
|
|
5141
|
+
def update!(**args)
|
|
5142
|
+
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
5143
|
+
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
5144
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
5145
|
+
end
|
|
5146
|
+
end
|
|
5147
|
+
|
|
5091
5148
|
# Customer provided configurations.
|
|
5092
5149
|
class GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfig
|
|
5093
5150
|
include Google::Apis::Core::Hashable
|
|
@@ -9878,6 +9935,11 @@ module Google
|
|
|
9878
9935
|
# @return [String]
|
|
9879
9936
|
attr_accessor :configurable_billing_approach
|
|
9880
9937
|
|
|
9938
|
+
# Output only. The timestamp when configurable_billing_approach was last updated.
|
|
9939
|
+
# Corresponds to the JSON property `configurableBillingApproachUpdateTime`
|
|
9940
|
+
# @return [String]
|
|
9941
|
+
attr_accessor :configurable_billing_approach_update_time
|
|
9942
|
+
|
|
9881
9943
|
# Immutable. The content config of the data store. If this field is unset, the
|
|
9882
9944
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
|
9883
9945
|
# Corresponds to the JSON property `contentConfig`
|
|
@@ -9997,6 +10059,7 @@ module Google
|
|
|
9997
10059
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
|
9998
10060
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
9999
10061
|
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
10062
|
+
@configurable_billing_approach_update_time = args[:configurable_billing_approach_update_time] if args.key?(:configurable_billing_approach_update_time)
|
|
10000
10063
|
@content_config = args[:content_config] if args.key?(:content_config)
|
|
10001
10064
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
10002
10065
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
|
@@ -10127,6 +10190,33 @@ module Google
|
|
|
10127
10190
|
end
|
|
10128
10191
|
end
|
|
10129
10192
|
|
|
10193
|
+
# Metadata related to the progress of the AgentService.DeleteAgent operation.
|
|
10194
|
+
# This will be returned by the google.longrunning.Operation.metadata field.
|
|
10195
|
+
class GoogleCloudDiscoveryengineV1alphaDeleteAgentMetadata
|
|
10196
|
+
include Google::Apis::Core::Hashable
|
|
10197
|
+
|
|
10198
|
+
# Operation create time.
|
|
10199
|
+
# Corresponds to the JSON property `createTime`
|
|
10200
|
+
# @return [String]
|
|
10201
|
+
attr_accessor :create_time
|
|
10202
|
+
|
|
10203
|
+
# Operation last update time. If the operation is done, this is also the finish
|
|
10204
|
+
# time.
|
|
10205
|
+
# Corresponds to the JSON property `updateTime`
|
|
10206
|
+
# @return [String]
|
|
10207
|
+
attr_accessor :update_time
|
|
10208
|
+
|
|
10209
|
+
def initialize(**args)
|
|
10210
|
+
update!(**args)
|
|
10211
|
+
end
|
|
10212
|
+
|
|
10213
|
+
# Update properties of this object
|
|
10214
|
+
def update!(**args)
|
|
10215
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
10216
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
10217
|
+
end
|
|
10218
|
+
end
|
|
10219
|
+
|
|
10130
10220
|
# Metadata related to the progress of the CmekConfigService.DeleteCmekConfig
|
|
10131
10221
|
# operation. This will be returned by the google.longrunning.Operation.metadata
|
|
10132
10222
|
# field.
|
|
@@ -12593,6 +12683,16 @@ module Google
|
|
|
12593
12683
|
class GoogleCloudDiscoveryengineV1alphaProject
|
|
12594
12684
|
include Google::Apis::Core::Hashable
|
|
12595
12685
|
|
|
12686
|
+
# Represents the currently effective configurable billing parameters. These
|
|
12687
|
+
# values are derived from the customer's subscription history stored internally
|
|
12688
|
+
# and reflect the thresholds actively being used for billing purposes at the
|
|
12689
|
+
# time of the GetProject call. This includes the start_time of the subscription
|
|
12690
|
+
# and may differ from the values in `customer_provided_config` due to billing
|
|
12691
|
+
# rules (e.g., scale-downs taking effect only at the start of a new month).
|
|
12692
|
+
# Corresponds to the JSON property `configurableBillingStatus`
|
|
12693
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus]
|
|
12694
|
+
attr_accessor :configurable_billing_status
|
|
12695
|
+
|
|
12596
12696
|
# Output only. The timestamp when this project is created.
|
|
12597
12697
|
# Corresponds to the JSON property `createTime`
|
|
12598
12698
|
# @return [String]
|
|
@@ -12627,6 +12727,7 @@ module Google
|
|
|
12627
12727
|
|
|
12628
12728
|
# Update properties of this object
|
|
12629
12729
|
def update!(**args)
|
|
12730
|
+
@configurable_billing_status = args[:configurable_billing_status] if args.key?(:configurable_billing_status)
|
|
12630
12731
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
12631
12732
|
@customer_provided_config = args[:customer_provided_config] if args.key?(:customer_provided_config)
|
|
12632
12733
|
@name = args[:name] if args.key?(:name)
|
|
@@ -12635,6 +12736,46 @@ module Google
|
|
|
12635
12736
|
end
|
|
12636
12737
|
end
|
|
12637
12738
|
|
|
12739
|
+
# Represents the currently effective configurable billing parameters. These
|
|
12740
|
+
# values are derived from the customer's subscription history stored internally
|
|
12741
|
+
# and reflect the thresholds actively being used for billing purposes at the
|
|
12742
|
+
# time of the GetProject call. This includes the start_time of the subscription
|
|
12743
|
+
# and may differ from the values in `customer_provided_config` due to billing
|
|
12744
|
+
# rules (e.g., scale-downs taking effect only at the start of a new month).
|
|
12745
|
+
class GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus
|
|
12746
|
+
include Google::Apis::Core::Hashable
|
|
12747
|
+
|
|
12748
|
+
# Optional. The currently effective Indexing Core threshold. This is the
|
|
12749
|
+
# threshold against which Indexing Core usage is compared for overage
|
|
12750
|
+
# calculations.
|
|
12751
|
+
# Corresponds to the JSON property `effectiveIndexingCoreThreshold`
|
|
12752
|
+
# @return [Fixnum]
|
|
12753
|
+
attr_accessor :effective_indexing_core_threshold
|
|
12754
|
+
|
|
12755
|
+
# Optional. The currently effective Search QPM threshold in queries per minute.
|
|
12756
|
+
# This is the threshold against which QPM usage is compared for overage
|
|
12757
|
+
# calculations.
|
|
12758
|
+
# Corresponds to the JSON property `effectiveSearchQpmThreshold`
|
|
12759
|
+
# @return [Fixnum]
|
|
12760
|
+
attr_accessor :effective_search_qpm_threshold
|
|
12761
|
+
|
|
12762
|
+
# Optional. The start time of the currently active billing subscription.
|
|
12763
|
+
# Corresponds to the JSON property `startTime`
|
|
12764
|
+
# @return [String]
|
|
12765
|
+
attr_accessor :start_time
|
|
12766
|
+
|
|
12767
|
+
def initialize(**args)
|
|
12768
|
+
update!(**args)
|
|
12769
|
+
end
|
|
12770
|
+
|
|
12771
|
+
# Update properties of this object
|
|
12772
|
+
def update!(**args)
|
|
12773
|
+
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
12774
|
+
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
12775
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
12776
|
+
end
|
|
12777
|
+
end
|
|
12778
|
+
|
|
12638
12779
|
# Customer provided configurations.
|
|
12639
12780
|
class GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfig
|
|
12640
12781
|
include Google::Apis::Core::Hashable
|
|
@@ -13829,9 +13970,9 @@ module Google
|
|
|
13829
13970
|
# @return [Hash<String,String>]
|
|
13830
13971
|
attr_accessor :user_labels
|
|
13831
13972
|
|
|
13832
|
-
# A unique identifier for tracking visitors. For example, this could
|
|
13833
|
-
# implemented with an HTTP cookie, which should be able to uniquely identify
|
|
13834
|
-
# visitor on a single device. This unique identifier should not change if the
|
|
13973
|
+
# Optional. A unique identifier for tracking visitors. For example, this could
|
|
13974
|
+
# be implemented with an HTTP cookie, which should be able to uniquely identify
|
|
13975
|
+
# a visitor on a single device. This unique identifier should not change if the
|
|
13835
13976
|
# visitor logs in or out of the website. This field should NOT have a fixed
|
|
13836
13977
|
# value such as `unknown_visitor`. This should be the same identifier as
|
|
13837
13978
|
# UserEvent.user_pseudo_id and CompleteQueryRequest.user_pseudo_id The field
|
|
@@ -15878,9 +16019,9 @@ module Google
|
|
|
15878
16019
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserInfo]
|
|
15879
16020
|
attr_accessor :user_info
|
|
15880
16021
|
|
|
15881
|
-
# A unique identifier for tracking visitors. For example, this could
|
|
15882
|
-
# implemented with an HTTP cookie, which should be able to uniquely identify
|
|
15883
|
-
# visitor on a single device. This unique identifier should not change if the
|
|
16022
|
+
# Optional. A unique identifier for tracking visitors. For example, this could
|
|
16023
|
+
# be implemented with an HTTP cookie, which should be able to uniquely identify
|
|
16024
|
+
# a visitor on a single device. This unique identifier should not change if the
|
|
15884
16025
|
# visitor logs in or out of the website. This field should NOT have a fixed
|
|
15885
16026
|
# value such as `unknown_visitor`. This should be the same identifier as
|
|
15886
16027
|
# UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id. The field must be a
|
|
@@ -21121,6 +21262,11 @@ module Google
|
|
|
21121
21262
|
# @return [String]
|
|
21122
21263
|
attr_accessor :configurable_billing_approach
|
|
21123
21264
|
|
|
21265
|
+
# Output only. The timestamp when configurable_billing_approach was last updated.
|
|
21266
|
+
# Corresponds to the JSON property `configurableBillingApproachUpdateTime`
|
|
21267
|
+
# @return [String]
|
|
21268
|
+
attr_accessor :configurable_billing_approach_update_time
|
|
21269
|
+
|
|
21124
21270
|
# Immutable. The content config of the data store. If this field is unset, the
|
|
21125
21271
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
|
21126
21272
|
# Corresponds to the JSON property `contentConfig`
|
|
@@ -21235,6 +21381,7 @@ module Google
|
|
|
21235
21381
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
|
21236
21382
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
21237
21383
|
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
21384
|
+
@configurable_billing_approach_update_time = args[:configurable_billing_approach_update_time] if args.key?(:configurable_billing_approach_update_time)
|
|
21238
21385
|
@content_config = args[:content_config] if args.key?(:content_config)
|
|
21239
21386
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
21240
21387
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
|
@@ -24975,6 +25122,16 @@ module Google
|
|
|
24975
25122
|
class GoogleCloudDiscoveryengineV1betaProject
|
|
24976
25123
|
include Google::Apis::Core::Hashable
|
|
24977
25124
|
|
|
25125
|
+
# Represents the currently effective configurable billing parameters. These
|
|
25126
|
+
# values are derived from the customer's subscription history stored internally
|
|
25127
|
+
# and reflect the thresholds actively being used for billing purposes at the
|
|
25128
|
+
# time of the GetProject call. This includes the start_time of the subscription
|
|
25129
|
+
# and may differ from the values in `customer_provided_config` due to billing
|
|
25130
|
+
# rules (e.g., scale-downs taking effect only at the start of a new month).
|
|
25131
|
+
# Corresponds to the JSON property `configurableBillingStatus`
|
|
25132
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus]
|
|
25133
|
+
attr_accessor :configurable_billing_status
|
|
25134
|
+
|
|
24978
25135
|
# Output only. The timestamp when this project is created.
|
|
24979
25136
|
# Corresponds to the JSON property `createTime`
|
|
24980
25137
|
# @return [String]
|
|
@@ -25009,6 +25166,7 @@ module Google
|
|
|
25009
25166
|
|
|
25010
25167
|
# Update properties of this object
|
|
25011
25168
|
def update!(**args)
|
|
25169
|
+
@configurable_billing_status = args[:configurable_billing_status] if args.key?(:configurable_billing_status)
|
|
25012
25170
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
25013
25171
|
@customer_provided_config = args[:customer_provided_config] if args.key?(:customer_provided_config)
|
|
25014
25172
|
@name = args[:name] if args.key?(:name)
|
|
@@ -25017,6 +25175,46 @@ module Google
|
|
|
25017
25175
|
end
|
|
25018
25176
|
end
|
|
25019
25177
|
|
|
25178
|
+
# Represents the currently effective configurable billing parameters. These
|
|
25179
|
+
# values are derived from the customer's subscription history stored internally
|
|
25180
|
+
# and reflect the thresholds actively being used for billing purposes at the
|
|
25181
|
+
# time of the GetProject call. This includes the start_time of the subscription
|
|
25182
|
+
# and may differ from the values in `customer_provided_config` due to billing
|
|
25183
|
+
# rules (e.g., scale-downs taking effect only at the start of a new month).
|
|
25184
|
+
class GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus
|
|
25185
|
+
include Google::Apis::Core::Hashable
|
|
25186
|
+
|
|
25187
|
+
# Optional. The currently effective Indexing Core threshold. This is the
|
|
25188
|
+
# threshold against which Indexing Core usage is compared for overage
|
|
25189
|
+
# calculations.
|
|
25190
|
+
# Corresponds to the JSON property `effectiveIndexingCoreThreshold`
|
|
25191
|
+
# @return [Fixnum]
|
|
25192
|
+
attr_accessor :effective_indexing_core_threshold
|
|
25193
|
+
|
|
25194
|
+
# Optional. The currently effective Search QPM threshold in queries per minute.
|
|
25195
|
+
# This is the threshold against which QPM usage is compared for overage
|
|
25196
|
+
# calculations.
|
|
25197
|
+
# Corresponds to the JSON property `effectiveSearchQpmThreshold`
|
|
25198
|
+
# @return [Fixnum]
|
|
25199
|
+
attr_accessor :effective_search_qpm_threshold
|
|
25200
|
+
|
|
25201
|
+
# Optional. The start time of the currently active billing subscription.
|
|
25202
|
+
# Corresponds to the JSON property `startTime`
|
|
25203
|
+
# @return [String]
|
|
25204
|
+
attr_accessor :start_time
|
|
25205
|
+
|
|
25206
|
+
def initialize(**args)
|
|
25207
|
+
update!(**args)
|
|
25208
|
+
end
|
|
25209
|
+
|
|
25210
|
+
# Update properties of this object
|
|
25211
|
+
def update!(**args)
|
|
25212
|
+
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
25213
|
+
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
25214
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
25215
|
+
end
|
|
25216
|
+
end
|
|
25217
|
+
|
|
25020
25218
|
# Customer provided configurations.
|
|
25021
25219
|
class GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfig
|
|
25022
25220
|
include Google::Apis::Core::Hashable
|
|
@@ -26864,9 +27062,9 @@ module Google
|
|
|
26864
27062
|
# @return [Hash<String,String>]
|
|
26865
27063
|
attr_accessor :user_labels
|
|
26866
27064
|
|
|
26867
|
-
# A unique identifier for tracking visitors. For example, this could
|
|
26868
|
-
# implemented with an HTTP cookie, which should be able to uniquely identify
|
|
26869
|
-
# visitor on a single device. This unique identifier should not change if the
|
|
27065
|
+
# Optional. A unique identifier for tracking visitors. For example, this could
|
|
27066
|
+
# be implemented with an HTTP cookie, which should be able to uniquely identify
|
|
27067
|
+
# a visitor on a single device. This unique identifier should not change if the
|
|
26870
27068
|
# visitor logs in or out of the website. This field should NOT have a fixed
|
|
26871
27069
|
# value such as `unknown_visitor`. This should be the same identifier as
|
|
26872
27070
|
# UserEvent.user_pseudo_id and CompleteQueryRequest.user_pseudo_id The field
|
|
@@ -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.88.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 = "20251030"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -772,6 +772,12 @@ module Google
|
|
|
772
772
|
include Google::Apis::Core::JsonObjectSupport
|
|
773
773
|
end
|
|
774
774
|
|
|
775
|
+
class GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus
|
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
777
|
+
|
|
778
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
779
|
+
end
|
|
780
|
+
|
|
775
781
|
class GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfig
|
|
776
782
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
777
783
|
|
|
@@ -1522,6 +1528,12 @@ module Google
|
|
|
1522
1528
|
include Google::Apis::Core::JsonObjectSupport
|
|
1523
1529
|
end
|
|
1524
1530
|
|
|
1531
|
+
class GoogleCloudDiscoveryengineV1alphaDeleteAgentMetadata
|
|
1532
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1533
|
+
|
|
1534
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1535
|
+
end
|
|
1536
|
+
|
|
1525
1537
|
class GoogleCloudDiscoveryengineV1alphaDeleteCmekConfigMetadata
|
|
1526
1538
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1527
1539
|
|
|
@@ -1954,6 +1966,12 @@ module Google
|
|
|
1954
1966
|
include Google::Apis::Core::JsonObjectSupport
|
|
1955
1967
|
end
|
|
1956
1968
|
|
|
1969
|
+
class GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus
|
|
1970
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1971
|
+
|
|
1972
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1973
|
+
end
|
|
1974
|
+
|
|
1957
1975
|
class GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfig
|
|
1958
1976
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1959
1977
|
|
|
@@ -4012,6 +4030,12 @@ module Google
|
|
|
4012
4030
|
include Google::Apis::Core::JsonObjectSupport
|
|
4013
4031
|
end
|
|
4014
4032
|
|
|
4033
|
+
class GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus
|
|
4034
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4035
|
+
|
|
4036
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4037
|
+
end
|
|
4038
|
+
|
|
4015
4039
|
class GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfig
|
|
4016
4040
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4017
4041
|
|
|
@@ -5766,6 +5790,7 @@ module Google
|
|
|
5766
5790
|
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig::Representation
|
|
5767
5791
|
|
|
5768
5792
|
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
|
5793
|
+
property :configurable_billing_approach_update_time, as: 'configurableBillingApproachUpdateTime'
|
|
5769
5794
|
property :content_config, as: 'contentConfig'
|
|
5770
5795
|
property :create_time, as: 'createTime'
|
|
5771
5796
|
property :default_schema_id, as: 'defaultSchemaId'
|
|
@@ -6260,6 +6285,8 @@ module Google
|
|
|
6260
6285
|
class GoogleCloudDiscoveryengineV1Project
|
|
6261
6286
|
# @private
|
|
6262
6287
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6288
|
+
property :configurable_billing_status, as: 'configurableBillingStatus', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus::Representation
|
|
6289
|
+
|
|
6263
6290
|
property :create_time, as: 'createTime'
|
|
6264
6291
|
property :customer_provided_config, as: 'customerProvidedConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfig::Representation
|
|
6265
6292
|
|
|
@@ -6270,6 +6297,15 @@ module Google
|
|
|
6270
6297
|
end
|
|
6271
6298
|
end
|
|
6272
6299
|
|
|
6300
|
+
class GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus
|
|
6301
|
+
# @private
|
|
6302
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6303
|
+
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
6304
|
+
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
6305
|
+
property :start_time, as: 'startTime'
|
|
6306
|
+
end
|
|
6307
|
+
end
|
|
6308
|
+
|
|
6273
6309
|
class GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfig
|
|
6274
6310
|
# @private
|
|
6275
6311
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7548,6 +7584,7 @@ module Google
|
|
|
7548
7584
|
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig::Representation
|
|
7549
7585
|
|
|
7550
7586
|
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
|
7587
|
+
property :configurable_billing_approach_update_time, as: 'configurableBillingApproachUpdateTime'
|
|
7551
7588
|
property :content_config, as: 'contentConfig'
|
|
7552
7589
|
property :create_time, as: 'createTime'
|
|
7553
7590
|
property :default_schema_id, as: 'defaultSchemaId'
|
|
@@ -7610,6 +7647,14 @@ module Google
|
|
|
7610
7647
|
end
|
|
7611
7648
|
end
|
|
7612
7649
|
|
|
7650
|
+
class GoogleCloudDiscoveryengineV1alphaDeleteAgentMetadata
|
|
7651
|
+
# @private
|
|
7652
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7653
|
+
property :create_time, as: 'createTime'
|
|
7654
|
+
property :update_time, as: 'updateTime'
|
|
7655
|
+
end
|
|
7656
|
+
end
|
|
7657
|
+
|
|
7613
7658
|
class GoogleCloudDiscoveryengineV1alphaDeleteCmekConfigMetadata
|
|
7614
7659
|
# @private
|
|
7615
7660
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8288,6 +8333,8 @@ module Google
|
|
|
8288
8333
|
class GoogleCloudDiscoveryengineV1alphaProject
|
|
8289
8334
|
# @private
|
|
8290
8335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8336
|
+
property :configurable_billing_status, as: 'configurableBillingStatus', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus::Representation
|
|
8337
|
+
|
|
8291
8338
|
property :create_time, as: 'createTime'
|
|
8292
8339
|
property :customer_provided_config, as: 'customerProvidedConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfig::Representation
|
|
8293
8340
|
|
|
@@ -8298,6 +8345,15 @@ module Google
|
|
|
8298
8345
|
end
|
|
8299
8346
|
end
|
|
8300
8347
|
|
|
8348
|
+
class GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus
|
|
8349
|
+
# @private
|
|
8350
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8351
|
+
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
8352
|
+
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
8353
|
+
property :start_time, as: 'startTime'
|
|
8354
|
+
end
|
|
8355
|
+
end
|
|
8356
|
+
|
|
8301
8357
|
class GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfig
|
|
8302
8358
|
# @private
|
|
8303
8359
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10610,6 +10666,7 @@ module Google
|
|
|
10610
10666
|
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig::Representation
|
|
10611
10667
|
|
|
10612
10668
|
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
|
10669
|
+
property :configurable_billing_approach_update_time, as: 'configurableBillingApproachUpdateTime'
|
|
10613
10670
|
property :content_config, as: 'contentConfig'
|
|
10614
10671
|
property :create_time, as: 'createTime'
|
|
10615
10672
|
property :default_schema_id, as: 'defaultSchemaId'
|
|
@@ -11735,6 +11792,8 @@ module Google
|
|
|
11735
11792
|
class GoogleCloudDiscoveryengineV1betaProject
|
|
11736
11793
|
# @private
|
|
11737
11794
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11795
|
+
property :configurable_billing_status, as: 'configurableBillingStatus', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus::Representation
|
|
11796
|
+
|
|
11738
11797
|
property :create_time, as: 'createTime'
|
|
11739
11798
|
property :customer_provided_config, as: 'customerProvidedConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfig::Representation
|
|
11740
11799
|
|
|
@@ -11745,6 +11804,15 @@ module Google
|
|
|
11745
11804
|
end
|
|
11746
11805
|
end
|
|
11747
11806
|
|
|
11807
|
+
class GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus
|
|
11808
|
+
# @private
|
|
11809
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11810
|
+
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
11811
|
+
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
11812
|
+
property :start_time, as: 'startTime'
|
|
11813
|
+
end
|
|
11814
|
+
end
|
|
11815
|
+
|
|
11748
11816
|
class GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfig
|
|
11749
11817
|
# @private
|
|
11750
11818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -631,9 +631,9 @@ module Google
|
|
|
631
631
|
# values: * `document` is the default model for regular dataStores. * `search-
|
|
632
632
|
# history` is the default model for site search dataStores.
|
|
633
633
|
# @param [String] user_pseudo_id
|
|
634
|
-
# A unique identifier for tracking visitors. For example, this could
|
|
635
|
-
# implemented with an HTTP cookie, which should be able to uniquely identify
|
|
636
|
-
# visitor on a single device. This unique identifier should not change if the
|
|
634
|
+
# Optional. A unique identifier for tracking visitors. For example, this could
|
|
635
|
+
# be implemented with an HTTP cookie, which should be able to uniquely identify
|
|
636
|
+
# a visitor on a single device. This unique identifier should not change if the
|
|
637
637
|
# visitor logs in or out of the website. This field should NOT have a fixed
|
|
638
638
|
# value such as `unknown_visitor`. This should be the same identifier as
|
|
639
639
|
# UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id. The field must be a
|
|
@@ -5444,9 +5444,9 @@ module Google
|
|
|
5444
5444
|
# values: * `document` is the default model for regular dataStores. * `search-
|
|
5445
5445
|
# history` is the default model for site search dataStores.
|
|
5446
5446
|
# @param [String] user_pseudo_id
|
|
5447
|
-
# A unique identifier for tracking visitors. For example, this could
|
|
5448
|
-
# implemented with an HTTP cookie, which should be able to uniquely identify
|
|
5449
|
-
# visitor on a single device. This unique identifier should not change if the
|
|
5447
|
+
# Optional. A unique identifier for tracking visitors. For example, this could
|
|
5448
|
+
# be implemented with an HTTP cookie, which should be able to uniquely identify
|
|
5449
|
+
# a visitor on a single device. This unique identifier should not change if the
|
|
5450
5450
|
# visitor logs in or out of the website. This field should NOT have a fixed
|
|
5451
5451
|
# value such as `unknown_visitor`. This should be the same identifier as
|
|
5452
5452
|
# UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id. The field must be a
|
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.88.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.88.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:
|