google-apis-discoveryengine_v1 0.16.0 → 0.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3f73a4a318a918a1f92732627adb7f644e92c97693b479822f3f3d82800e70b
4
- data.tar.gz: 8d7e0937cca694129b2d7a336102800c9a97f6358fa4f19af4ea401fb255ebd6
3
+ metadata.gz: 707a38075cb5ec43862ced439b8a3388632a99427743b938697b9f76caa68752
4
+ data.tar.gz: e5925ee1bde4fffe24d779fe4cfb29a1588fdddd44b877d775bbdc9b44dce5cf
5
5
  SHA512:
6
- metadata.gz: d662d5c1225b9333929af70d93e3a3b9af7a0ebc4be5752d4183e57d70c75eaafbc5168e6b3a42ef1b973b6350413c537898a566a6ed59dce82fa56b8b8d88f7
7
- data.tar.gz: 1104be1681e38817cf39745a5fed35e4eaf6b0bd3e564893c22ae1f8d5f37ff0cd5bfa61f2372e8502843b5f41329f55d04f4fd6d4403f7970ecbb87f92dfebb
6
+ metadata.gz: 0d8be2c40351495f13a9429174c86b5c35de08b08c15c8afe7d38af9df427a640fcea87d809d87603082d44ebb75a872ea5c2b02d22d7269f7514d9304b27d9f
7
+ data.tar.gz: b99e8c4661170f5d54c8412db267b9ca3540167e80c847a20129ce87f688aff765952ef53ba29b81cf0c074075afe81d14e6e11c6f139cdd7dc11e33f99a17e3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.17.0 (2024-09-29)
4
+
5
+ * Regenerated from discovery document revision 20240920
6
+
3
7
  ### v0.16.0 (2024-09-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20240912
@@ -3275,6 +3275,11 @@ module Google
3275
3275
  class GoogleCloudDiscoveryengineV1DataStore
3276
3276
  include Google::Apis::Core::Hashable
3277
3277
 
3278
+ # Estimation of data size per data store.
3279
+ # Corresponds to the JSON property `billingEstimation`
3280
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DataStoreBillingEstimation]
3281
+ attr_accessor :billing_estimation
3282
+
3278
3283
  # Immutable. The content config of the data store. If this field is unset, the
3279
3284
  # server behavior defaults to ContentConfig.NO_CONTENT.
3280
3285
  # Corresponds to the JSON property `contentConfig`
@@ -3347,6 +3352,7 @@ module Google
3347
3352
 
3348
3353
  # Update properties of this object
3349
3354
  def update!(**args)
3355
+ @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
3350
3356
  @content_config = args[:content_config] if args.key?(:content_config)
3351
3357
  @create_time = args[:create_time] if args.key?(:create_time)
3352
3358
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -3361,6 +3367,55 @@ module Google
3361
3367
  end
3362
3368
  end
3363
3369
 
3370
+ # Estimation of data size per data store.
3371
+ class GoogleCloudDiscoveryengineV1DataStoreBillingEstimation
3372
+ include Google::Apis::Core::Hashable
3373
+
3374
+ # Data size for structured data in terms of bytes.
3375
+ # Corresponds to the JSON property `structuredDataSize`
3376
+ # @return [Fixnum]
3377
+ attr_accessor :structured_data_size
3378
+
3379
+ # Last updated timestamp for structured data.
3380
+ # Corresponds to the JSON property `structuredDataUpdateTime`
3381
+ # @return [String]
3382
+ attr_accessor :structured_data_update_time
3383
+
3384
+ # Data size for unstructured data in terms of bytes.
3385
+ # Corresponds to the JSON property `unstructuredDataSize`
3386
+ # @return [Fixnum]
3387
+ attr_accessor :unstructured_data_size
3388
+
3389
+ # Last updated timestamp for unstructured data.
3390
+ # Corresponds to the JSON property `unstructuredDataUpdateTime`
3391
+ # @return [String]
3392
+ attr_accessor :unstructured_data_update_time
3393
+
3394
+ # Data size for websites in terms of bytes.
3395
+ # Corresponds to the JSON property `websiteDataSize`
3396
+ # @return [Fixnum]
3397
+ attr_accessor :website_data_size
3398
+
3399
+ # Last updated timestamp for websites.
3400
+ # Corresponds to the JSON property `websiteDataUpdateTime`
3401
+ # @return [String]
3402
+ attr_accessor :website_data_update_time
3403
+
3404
+ def initialize(**args)
3405
+ update!(**args)
3406
+ end
3407
+
3408
+ # Update properties of this object
3409
+ def update!(**args)
3410
+ @structured_data_size = args[:structured_data_size] if args.key?(:structured_data_size)
3411
+ @structured_data_update_time = args[:structured_data_update_time] if args.key?(:structured_data_update_time)
3412
+ @unstructured_data_size = args[:unstructured_data_size] if args.key?(:unstructured_data_size)
3413
+ @unstructured_data_update_time = args[:unstructured_data_update_time] if args.key?(:unstructured_data_update_time)
3414
+ @website_data_size = args[:website_data_size] if args.key?(:website_data_size)
3415
+ @website_data_update_time = args[:website_data_update_time] if args.key?(:website_data_update_time)
3416
+ end
3417
+ end
3418
+
3364
3419
  # Metadata related to the progress of the DataStoreService.DeleteDataStore
3365
3420
  # operation. This will be returned by the google.longrunning.Operation.metadata
3366
3421
  # field.
@@ -7076,6 +7131,13 @@ module Google
7076
7131
  # @return [String]
7077
7132
  attr_accessor :data_store
7078
7133
 
7134
+ # Optional. Filter specification to filter documents in the data store specified
7135
+ # by data_store field. For more information on filtering, see [Filtering](https:/
7136
+ # /cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
7137
+ # Corresponds to the JSON property `filter`
7138
+ # @return [String]
7139
+ attr_accessor :filter
7140
+
7079
7141
  def initialize(**args)
7080
7142
  update!(**args)
7081
7143
  end
@@ -7083,6 +7145,7 @@ module Google
7083
7145
  # Update properties of this object
7084
7146
  def update!(**args)
7085
7147
  @data_store = args[:data_store] if args.key?(:data_store)
7148
+ @filter = args[:filter] if args.key?(:filter)
7086
7149
  end
7087
7150
  end
7088
7151
 
@@ -9916,6 +9979,11 @@ module Google
9916
9979
  attr_accessor :acl_enabled
9917
9980
  alias_method :acl_enabled?, :acl_enabled
9918
9981
 
9982
+ # Estimation of data size per data store.
9983
+ # Corresponds to the JSON property `billingEstimation`
9984
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataStoreBillingEstimation]
9985
+ attr_accessor :billing_estimation
9986
+
9919
9987
  # Immutable. The content config of the data store. If this field is unset, the
9920
9988
  # server behavior defaults to ContentConfig.NO_CONTENT.
9921
9989
  # Corresponds to the JSON property `contentConfig`
@@ -10004,6 +10072,7 @@ module Google
10004
10072
  # Update properties of this object
10005
10073
  def update!(**args)
10006
10074
  @acl_enabled = args[:acl_enabled] if args.key?(:acl_enabled)
10075
+ @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
10007
10076
  @content_config = args[:content_config] if args.key?(:content_config)
10008
10077
  @create_time = args[:create_time] if args.key?(:create_time)
10009
10078
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -10021,6 +10090,55 @@ module Google
10021
10090
  end
10022
10091
  end
10023
10092
 
10093
+ # Estimation of data size per data store.
10094
+ class GoogleCloudDiscoveryengineV1alphaDataStoreBillingEstimation
10095
+ include Google::Apis::Core::Hashable
10096
+
10097
+ # Data size for structured data in terms of bytes.
10098
+ # Corresponds to the JSON property `structuredDataSize`
10099
+ # @return [Fixnum]
10100
+ attr_accessor :structured_data_size
10101
+
10102
+ # Last updated timestamp for structured data.
10103
+ # Corresponds to the JSON property `structuredDataUpdateTime`
10104
+ # @return [String]
10105
+ attr_accessor :structured_data_update_time
10106
+
10107
+ # Data size for unstructured data in terms of bytes.
10108
+ # Corresponds to the JSON property `unstructuredDataSize`
10109
+ # @return [Fixnum]
10110
+ attr_accessor :unstructured_data_size
10111
+
10112
+ # Last updated timestamp for unstructured data.
10113
+ # Corresponds to the JSON property `unstructuredDataUpdateTime`
10114
+ # @return [String]
10115
+ attr_accessor :unstructured_data_update_time
10116
+
10117
+ # Data size for websites in terms of bytes.
10118
+ # Corresponds to the JSON property `websiteDataSize`
10119
+ # @return [Fixnum]
10120
+ attr_accessor :website_data_size
10121
+
10122
+ # Last updated timestamp for websites.
10123
+ # Corresponds to the JSON property `websiteDataUpdateTime`
10124
+ # @return [String]
10125
+ attr_accessor :website_data_update_time
10126
+
10127
+ def initialize(**args)
10128
+ update!(**args)
10129
+ end
10130
+
10131
+ # Update properties of this object
10132
+ def update!(**args)
10133
+ @structured_data_size = args[:structured_data_size] if args.key?(:structured_data_size)
10134
+ @structured_data_update_time = args[:structured_data_update_time] if args.key?(:structured_data_update_time)
10135
+ @unstructured_data_size = args[:unstructured_data_size] if args.key?(:unstructured_data_size)
10136
+ @unstructured_data_update_time = args[:unstructured_data_update_time] if args.key?(:unstructured_data_update_time)
10137
+ @website_data_size = args[:website_data_size] if args.key?(:website_data_size)
10138
+ @website_data_update_time = args[:website_data_update_time] if args.key?(:website_data_update_time)
10139
+ end
10140
+ end
10141
+
10024
10142
  # Metadata related to the progress of the DataStoreService.DeleteDataStore
10025
10143
  # operation. This will be returned by the google.longrunning.Operation.metadata
10026
10144
  # field.
@@ -11020,6 +11138,14 @@ module Google
11020
11138
  # @return [String]
11021
11139
  attr_accessor :key_property_type
11022
11140
 
11141
+ # Optional. The metatag name found in the HTML page. If user defines this field,
11142
+ # the value of this metatag name will be used to extract metatag. If the user
11143
+ # does not define this field, the FieldConfig.field_path will be used to extract
11144
+ # metatag.
11145
+ # Corresponds to the JSON property `metatagName`
11146
+ # @return [String]
11147
+ attr_accessor :metatag_name
11148
+
11023
11149
  # If recs_filterable_option is FILTERABLE_ENABLED, field values are filterable
11024
11150
  # by filter expression in RecommendationService.Recommend. If FILTERABLE_ENABLED
11025
11151
  # but the field type is numerical, field values are not filterable by text
@@ -11081,6 +11207,7 @@ module Google
11081
11207
  @field_type = args[:field_type] if args.key?(:field_type)
11082
11208
  @indexable_option = args[:indexable_option] if args.key?(:indexable_option)
11083
11209
  @key_property_type = args[:key_property_type] if args.key?(:key_property_type)
11210
+ @metatag_name = args[:metatag_name] if args.key?(:metatag_name)
11084
11211
  @recs_filterable_option = args[:recs_filterable_option] if args.key?(:recs_filterable_option)
11085
11212
  @retrievable_option = args[:retrievable_option] if args.key?(:retrievable_option)
11086
11213
  @schema_org_paths = args[:schema_org_paths] if args.key?(:schema_org_paths)
@@ -12404,6 +12531,11 @@ module Google
12404
12531
  # @return [Hash<String,Object>]
12405
12532
  attr_accessor :params
12406
12533
 
12534
+ # The specification for personalization.
12535
+ # Corresponds to the JSON property `personalizationSpec`
12536
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestPersonalizationSpec]
12537
+ attr_accessor :personalization_spec
12538
+
12407
12539
  # Raw search query.
12408
12540
  # Corresponds to the JSON property `query`
12409
12541
  # @return [String]
@@ -12554,6 +12686,7 @@ module Google
12554
12686
  @page_size = args[:page_size] if args.key?(:page_size)
12555
12687
  @page_token = args[:page_token] if args.key?(:page_token)
12556
12688
  @params = args[:params] if args.key?(:params)
12689
+ @personalization_spec = args[:personalization_spec] if args.key?(:personalization_spec)
12557
12690
  @query = args[:query] if args.key?(:query)
12558
12691
  @query_expansion_spec = args[:query_expansion_spec] if args.key?(:query_expansion_spec)
12559
12692
  @ranking_expression = args[:ranking_expression] if args.key?(:ranking_expression)
@@ -13071,6 +13204,13 @@ module Google
13071
13204
  # @return [String]
13072
13205
  attr_accessor :data_store
13073
13206
 
13207
+ # Optional. Filter specification to filter documents in the data store specified
13208
+ # by data_store field. For more information on filtering, see [Filtering](https:/
13209
+ # /cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
13210
+ # Corresponds to the JSON property `filter`
13211
+ # @return [String]
13212
+ attr_accessor :filter
13213
+
13074
13214
  def initialize(**args)
13075
13215
  update!(**args)
13076
13216
  end
@@ -13078,6 +13218,7 @@ module Google
13078
13218
  # Update properties of this object
13079
13219
  def update!(**args)
13080
13220
  @data_store = args[:data_store] if args.key?(:data_store)
13221
+ @filter = args[:filter] if args.key?(:filter)
13081
13222
  end
13082
13223
  end
13083
13224
 
@@ -13326,6 +13467,25 @@ module Google
13326
13467
  end
13327
13468
  end
13328
13469
 
13470
+ # The specification for personalization.
13471
+ class GoogleCloudDiscoveryengineV1alphaSearchRequestPersonalizationSpec
13472
+ include Google::Apis::Core::Hashable
13473
+
13474
+ # The personalization mode of the search request. Defaults to Mode.AUTO.
13475
+ # Corresponds to the JSON property `mode`
13476
+ # @return [String]
13477
+ attr_accessor :mode
13478
+
13479
+ def initialize(**args)
13480
+ update!(**args)
13481
+ end
13482
+
13483
+ # Update properties of this object
13484
+ def update!(**args)
13485
+ @mode = args[:mode] if args.key?(:mode)
13486
+ end
13487
+ end
13488
+
13329
13489
  # Specification to determine under which conditions query expansion should occur.
13330
13490
  class GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec
13331
13491
  include Google::Apis::Core::Hashable
@@ -14449,6 +14609,11 @@ module Google
14449
14609
  class GoogleCloudDiscoveryengineV1betaDataStore
14450
14610
  include Google::Apis::Core::Hashable
14451
14611
 
14612
+ # Estimation of data size per data store.
14613
+ # Corresponds to the JSON property `billingEstimation`
14614
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaDataStoreBillingEstimation]
14615
+ attr_accessor :billing_estimation
14616
+
14452
14617
  # Immutable. The content config of the data store. If this field is unset, the
14453
14618
  # server behavior defaults to ContentConfig.NO_CONTENT.
14454
14619
  # Corresponds to the JSON property `contentConfig`
@@ -14531,6 +14696,7 @@ module Google
14531
14696
 
14532
14697
  # Update properties of this object
14533
14698
  def update!(**args)
14699
+ @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
14534
14700
  @content_config = args[:content_config] if args.key?(:content_config)
14535
14701
  @create_time = args[:create_time] if args.key?(:create_time)
14536
14702
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -14547,6 +14713,55 @@ module Google
14547
14713
  end
14548
14714
  end
14549
14715
 
14716
+ # Estimation of data size per data store.
14717
+ class GoogleCloudDiscoveryengineV1betaDataStoreBillingEstimation
14718
+ include Google::Apis::Core::Hashable
14719
+
14720
+ # Data size for structured data in terms of bytes.
14721
+ # Corresponds to the JSON property `structuredDataSize`
14722
+ # @return [Fixnum]
14723
+ attr_accessor :structured_data_size
14724
+
14725
+ # Last updated timestamp for structured data.
14726
+ # Corresponds to the JSON property `structuredDataUpdateTime`
14727
+ # @return [String]
14728
+ attr_accessor :structured_data_update_time
14729
+
14730
+ # Data size for unstructured data in terms of bytes.
14731
+ # Corresponds to the JSON property `unstructuredDataSize`
14732
+ # @return [Fixnum]
14733
+ attr_accessor :unstructured_data_size
14734
+
14735
+ # Last updated timestamp for unstructured data.
14736
+ # Corresponds to the JSON property `unstructuredDataUpdateTime`
14737
+ # @return [String]
14738
+ attr_accessor :unstructured_data_update_time
14739
+
14740
+ # Data size for websites in terms of bytes.
14741
+ # Corresponds to the JSON property `websiteDataSize`
14742
+ # @return [Fixnum]
14743
+ attr_accessor :website_data_size
14744
+
14745
+ # Last updated timestamp for websites.
14746
+ # Corresponds to the JSON property `websiteDataUpdateTime`
14747
+ # @return [String]
14748
+ attr_accessor :website_data_update_time
14749
+
14750
+ def initialize(**args)
14751
+ update!(**args)
14752
+ end
14753
+
14754
+ # Update properties of this object
14755
+ def update!(**args)
14756
+ @structured_data_size = args[:structured_data_size] if args.key?(:structured_data_size)
14757
+ @structured_data_update_time = args[:structured_data_update_time] if args.key?(:structured_data_update_time)
14758
+ @unstructured_data_size = args[:unstructured_data_size] if args.key?(:unstructured_data_size)
14759
+ @unstructured_data_update_time = args[:unstructured_data_update_time] if args.key?(:unstructured_data_update_time)
14760
+ @website_data_size = args[:website_data_size] if args.key?(:website_data_size)
14761
+ @website_data_update_time = args[:website_data_update_time] if args.key?(:website_data_update_time)
14762
+ end
14763
+ end
14764
+
14550
14765
  # Metadata related to the progress of the DataStoreService.DeleteDataStore
14551
14766
  # operation. This will be returned by the google.longrunning.Operation.metadata
14552
14767
  # field.
@@ -16240,6 +16455,11 @@ module Google
16240
16455
  # @return [Hash<String,Object>]
16241
16456
  attr_accessor :params
16242
16457
 
16458
+ # The specification for personalization.
16459
+ # Corresponds to the JSON property `personalizationSpec`
16460
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestPersonalizationSpec]
16461
+ attr_accessor :personalization_spec
16462
+
16243
16463
  # Raw search query.
16244
16464
  # Corresponds to the JSON property `query`
16245
16465
  # @return [String]
@@ -16389,6 +16609,7 @@ module Google
16389
16609
  @page_size = args[:page_size] if args.key?(:page_size)
16390
16610
  @page_token = args[:page_token] if args.key?(:page_token)
16391
16611
  @params = args[:params] if args.key?(:params)
16612
+ @personalization_spec = args[:personalization_spec] if args.key?(:personalization_spec)
16392
16613
  @query = args[:query] if args.key?(:query)
16393
16614
  @query_expansion_spec = args[:query_expansion_spec] if args.key?(:query_expansion_spec)
16394
16615
  @ranking_expression = args[:ranking_expression] if args.key?(:ranking_expression)
@@ -16906,6 +17127,13 @@ module Google
16906
17127
  # @return [String]
16907
17128
  attr_accessor :data_store
16908
17129
 
17130
+ # Optional. Filter specification to filter documents in the data store specified
17131
+ # by data_store field. For more information on filtering, see [Filtering](https:/
17132
+ # /cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
17133
+ # Corresponds to the JSON property `filter`
17134
+ # @return [String]
17135
+ attr_accessor :filter
17136
+
16909
17137
  def initialize(**args)
16910
17138
  update!(**args)
16911
17139
  end
@@ -16913,6 +17141,7 @@ module Google
16913
17141
  # Update properties of this object
16914
17142
  def update!(**args)
16915
17143
  @data_store = args[:data_store] if args.key?(:data_store)
17144
+ @filter = args[:filter] if args.key?(:filter)
16916
17145
  end
16917
17146
  end
16918
17147
 
@@ -17161,6 +17390,25 @@ module Google
17161
17390
  end
17162
17391
  end
17163
17392
 
17393
+ # The specification for personalization.
17394
+ class GoogleCloudDiscoveryengineV1betaSearchRequestPersonalizationSpec
17395
+ include Google::Apis::Core::Hashable
17396
+
17397
+ # The personalization mode of the search request. Defaults to Mode.AUTO.
17398
+ # Corresponds to the JSON property `mode`
17399
+ # @return [String]
17400
+ attr_accessor :mode
17401
+
17402
+ def initialize(**args)
17403
+ update!(**args)
17404
+ end
17405
+
17406
+ # Update properties of this object
17407
+ def update!(**args)
17408
+ @mode = args[:mode] if args.key?(:mode)
17409
+ end
17410
+ end
17411
+
17164
17412
  # Specification to determine under which conditions query expansion should occur.
17165
17413
  class GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec
17166
17414
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1
18
18
  # Version of the google-apis-discoveryengine_v1 gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240912"
25
+ REVISION = "20240920"
26
26
  end
27
27
  end
28
28
  end
@@ -574,6 +574,12 @@ module Google
574
574
  include Google::Apis::Core::JsonObjectSupport
575
575
  end
576
576
 
577
+ class GoogleCloudDiscoveryengineV1DataStoreBillingEstimation
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
577
583
  class GoogleCloudDiscoveryengineV1DeleteDataStoreMetadata
578
584
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
585
 
@@ -1666,6 +1672,12 @@ module Google
1666
1672
  include Google::Apis::Core::JsonObjectSupport
1667
1673
  end
1668
1674
 
1675
+ class GoogleCloudDiscoveryengineV1alphaDataStoreBillingEstimation
1676
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1677
+
1678
+ include Google::Apis::Core::JsonObjectSupport
1679
+ end
1680
+
1669
1681
  class GoogleCloudDiscoveryengineV1alphaDeleteDataStoreMetadata
1670
1682
  class Representation < Google::Apis::Core::JsonRepresentation; end
1671
1683
 
@@ -2188,6 +2200,12 @@ module Google
2188
2200
  include Google::Apis::Core::JsonObjectSupport
2189
2201
  end
2190
2202
 
2203
+ class GoogleCloudDiscoveryengineV1alphaSearchRequestPersonalizationSpec
2204
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2205
+
2206
+ include Google::Apis::Core::JsonObjectSupport
2207
+ end
2208
+
2191
2209
  class GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec
2192
2210
  class Representation < Google::Apis::Core::JsonRepresentation; end
2193
2211
 
@@ -2416,6 +2434,12 @@ module Google
2416
2434
  include Google::Apis::Core::JsonObjectSupport
2417
2435
  end
2418
2436
 
2437
+ class GoogleCloudDiscoveryengineV1betaDataStoreBillingEstimation
2438
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2439
+
2440
+ include Google::Apis::Core::JsonObjectSupport
2441
+ end
2442
+
2419
2443
  class GoogleCloudDiscoveryengineV1betaDeleteDataStoreMetadata
2420
2444
  class Representation < Google::Apis::Core::JsonRepresentation; end
2421
2445
 
@@ -2824,6 +2848,12 @@ module Google
2824
2848
  include Google::Apis::Core::JsonObjectSupport
2825
2849
  end
2826
2850
 
2851
+ class GoogleCloudDiscoveryengineV1betaSearchRequestPersonalizationSpec
2852
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2853
+
2854
+ include Google::Apis::Core::JsonObjectSupport
2855
+ end
2856
+
2827
2857
  class GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec
2828
2858
  class Representation < Google::Apis::Core::JsonRepresentation; end
2829
2859
 
@@ -3878,6 +3908,8 @@ module Google
3878
3908
  class GoogleCloudDiscoveryengineV1DataStore
3879
3909
  # @private
3880
3910
  class Representation < Google::Apis::Core::JsonRepresentation
3911
+ property :billing_estimation, as: 'billingEstimation', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DataStoreBillingEstimation, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DataStoreBillingEstimation::Representation
3912
+
3881
3913
  property :content_config, as: 'contentConfig'
3882
3914
  property :create_time, as: 'createTime'
3883
3915
  property :default_schema_id, as: 'defaultSchemaId'
@@ -3896,6 +3928,18 @@ module Google
3896
3928
  end
3897
3929
  end
3898
3930
 
3931
+ class GoogleCloudDiscoveryengineV1DataStoreBillingEstimation
3932
+ # @private
3933
+ class Representation < Google::Apis::Core::JsonRepresentation
3934
+ property :structured_data_size, :numeric_string => true, as: 'structuredDataSize'
3935
+ property :structured_data_update_time, as: 'structuredDataUpdateTime'
3936
+ property :unstructured_data_size, :numeric_string => true, as: 'unstructuredDataSize'
3937
+ property :unstructured_data_update_time, as: 'unstructuredDataUpdateTime'
3938
+ property :website_data_size, :numeric_string => true, as: 'websiteDataSize'
3939
+ property :website_data_update_time, as: 'websiteDataUpdateTime'
3940
+ end
3941
+ end
3942
+
3899
3943
  class GoogleCloudDiscoveryengineV1DeleteDataStoreMetadata
3900
3944
  # @private
3901
3945
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4901,6 +4945,7 @@ module Google
4901
4945
  # @private
4902
4946
  class Representation < Google::Apis::Core::JsonRepresentation
4903
4947
  property :data_store, as: 'dataStore'
4948
+ property :filter, as: 'filter'
4904
4949
  end
4905
4950
  end
4906
4951
 
@@ -5685,6 +5730,8 @@ module Google
5685
5730
  # @private
5686
5731
  class Representation < Google::Apis::Core::JsonRepresentation
5687
5732
  property :acl_enabled, as: 'aclEnabled'
5733
+ property :billing_estimation, as: 'billingEstimation', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataStoreBillingEstimation, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataStoreBillingEstimation::Representation
5734
+
5688
5735
  property :content_config, as: 'contentConfig'
5689
5736
  property :create_time, as: 'createTime'
5690
5737
  property :default_schema_id, as: 'defaultSchemaId'
@@ -5709,6 +5756,18 @@ module Google
5709
5756
  end
5710
5757
  end
5711
5758
 
5759
+ class GoogleCloudDiscoveryengineV1alphaDataStoreBillingEstimation
5760
+ # @private
5761
+ class Representation < Google::Apis::Core::JsonRepresentation
5762
+ property :structured_data_size, :numeric_string => true, as: 'structuredDataSize'
5763
+ property :structured_data_update_time, as: 'structuredDataUpdateTime'
5764
+ property :unstructured_data_size, :numeric_string => true, as: 'unstructuredDataSize'
5765
+ property :unstructured_data_update_time, as: 'unstructuredDataUpdateTime'
5766
+ property :website_data_size, :numeric_string => true, as: 'websiteDataSize'
5767
+ property :website_data_update_time, as: 'websiteDataUpdateTime'
5768
+ end
5769
+ end
5770
+
5712
5771
  class GoogleCloudDiscoveryengineV1alphaDeleteDataStoreMetadata
5713
5772
  # @private
5714
5773
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5993,6 +6052,7 @@ module Google
5993
6052
  property :field_type, as: 'fieldType'
5994
6053
  property :indexable_option, as: 'indexableOption'
5995
6054
  property :key_property_type, as: 'keyPropertyType'
6055
+ property :metatag_name, as: 'metatagName'
5996
6056
  property :recs_filterable_option, as: 'recsFilterableOption'
5997
6057
  property :retrievable_option, as: 'retrievableOption'
5998
6058
  collection :schema_org_paths, as: 'schemaOrgPaths'
@@ -6377,6 +6437,8 @@ module Google
6377
6437
  property :page_size, as: 'pageSize'
6378
6438
  property :page_token, as: 'pageToken'
6379
6439
  hash :params, as: 'params'
6440
+ property :personalization_spec, as: 'personalizationSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestPersonalizationSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestPersonalizationSpec::Representation
6441
+
6380
6442
  property :query, as: 'query'
6381
6443
  property :query_expansion_spec, as: 'queryExpansionSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec::Representation
6382
6444
 
@@ -6515,6 +6577,7 @@ module Google
6515
6577
  # @private
6516
6578
  class Representation < Google::Apis::Core::JsonRepresentation
6517
6579
  property :data_store, as: 'dataStore'
6580
+ property :filter, as: 'filter'
6518
6581
  end
6519
6582
  end
6520
6583
 
@@ -6574,6 +6637,13 @@ module Google
6574
6637
  end
6575
6638
  end
6576
6639
 
6640
+ class GoogleCloudDiscoveryengineV1alphaSearchRequestPersonalizationSpec
6641
+ # @private
6642
+ class Representation < Google::Apis::Core::JsonRepresentation
6643
+ property :mode, as: 'mode'
6644
+ end
6645
+ end
6646
+
6577
6647
  class GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec
6578
6648
  # @private
6579
6649
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6902,6 +6972,8 @@ module Google
6902
6972
  class GoogleCloudDiscoveryengineV1betaDataStore
6903
6973
  # @private
6904
6974
  class Representation < Google::Apis::Core::JsonRepresentation
6975
+ property :billing_estimation, as: 'billingEstimation', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaDataStoreBillingEstimation, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaDataStoreBillingEstimation::Representation
6976
+
6905
6977
  property :content_config, as: 'contentConfig'
6906
6978
  property :create_time, as: 'createTime'
6907
6979
  property :default_schema_id, as: 'defaultSchemaId'
@@ -6924,6 +6996,18 @@ module Google
6924
6996
  end
6925
6997
  end
6926
6998
 
6999
+ class GoogleCloudDiscoveryengineV1betaDataStoreBillingEstimation
7000
+ # @private
7001
+ class Representation < Google::Apis::Core::JsonRepresentation
7002
+ property :structured_data_size, :numeric_string => true, as: 'structuredDataSize'
7003
+ property :structured_data_update_time, as: 'structuredDataUpdateTime'
7004
+ property :unstructured_data_size, :numeric_string => true, as: 'unstructuredDataSize'
7005
+ property :unstructured_data_update_time, as: 'unstructuredDataUpdateTime'
7006
+ property :website_data_size, :numeric_string => true, as: 'websiteDataSize'
7007
+ property :website_data_update_time, as: 'websiteDataUpdateTime'
7008
+ end
7009
+ end
7010
+
6927
7011
  class GoogleCloudDiscoveryengineV1betaDeleteDataStoreMetadata
6928
7012
  # @private
6929
7013
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7411,6 +7495,8 @@ module Google
7411
7495
  property :page_size, as: 'pageSize'
7412
7496
  property :page_token, as: 'pageToken'
7413
7497
  hash :params, as: 'params'
7498
+ property :personalization_spec, as: 'personalizationSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestPersonalizationSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestPersonalizationSpec::Representation
7499
+
7414
7500
  property :query, as: 'query'
7415
7501
  property :query_expansion_spec, as: 'queryExpansionSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec::Representation
7416
7502
 
@@ -7549,6 +7635,7 @@ module Google
7549
7635
  # @private
7550
7636
  class Representation < Google::Apis::Core::JsonRepresentation
7551
7637
  property :data_store, as: 'dataStore'
7638
+ property :filter, as: 'filter'
7552
7639
  end
7553
7640
  end
7554
7641
 
@@ -7608,6 +7695,13 @@ module Google
7608
7695
  end
7609
7696
  end
7610
7697
 
7698
+ class GoogleCloudDiscoveryengineV1betaSearchRequestPersonalizationSpec
7699
+ # @private
7700
+ class Representation < Google::Apis::Core::JsonRepresentation
7701
+ property :mode, as: 'mode'
7702
+ end
7703
+ end
7704
+
7611
7705
  class GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec
7612
7706
  # @private
7613
7707
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-22 00:00:00.000000000 Z
11
+ date: 2024-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
63
63
  post_install_message:
64
64
  rdoc_options: []