google-apis-discoveryengine_v1 0.24.0 → 0.25.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: de65942ad412f503bbaf68e739b25aa5fac7a2925616f07c4b514073a164cc7d
4
- data.tar.gz: eee64eebabe4ba01f5612b334af362438526d3d9328f0e626cfa30ec06e54adf
3
+ metadata.gz: f4c6929cd7e3430c2d8af02babd158455e80ffa006a25df1832b4ea9b98294c5
4
+ data.tar.gz: 33063d80a012f81fbdfaea1967b67b04485bc1dd9bfc75bbe8636bebfd771063
5
5
  SHA512:
6
- metadata.gz: fbff10da6d308119cac642c1944e648b249fbf88674ad48449480cf1856bc29bae3f83a993858d3557157cabb2d430b99cbe32e4ff7d50dd9e9ec1f7e728237d
7
- data.tar.gz: 568479f6de23e7bd83cdaa97aa44b68b8a18d03601cd2f0a53326927a1e554d2397d4753911f198270f0703640d18fd8935748eab3416780fed64284966dba8a
6
+ metadata.gz: 54c650ced302a74c021fb15e9d343c2aabbf51e7746b7f47073737e2bc4f0193f2c3bd485abc9b4fb0e24b9cda27e3c17f635b2bd1e175410e590c0e5c8a07d4
7
+ data.tar.gz: 942c9fc91f516134864fb6c5f450041b6ae8de081e410d10c4b2a291d226da7608a86531fd6dedc6ffaa632e311f89371adcf7fc1f66673aab6f65da928a4eb0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.25.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241210
6
+
3
7
  ### v0.24.0 (2024-12-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20241206
@@ -4813,8 +4813,8 @@ module Google
4813
4813
  attr_accessor :display_name
4814
4814
 
4815
4815
  # The industry vertical that the engine registers. The restriction of the Engine
4816
- # industry vertical is based on DataStore: If unspecified, default to `GENERIC`.
4817
- # Vertical on Engine has to match vertical of the DataStore linked to the engine.
4816
+ # industry vertical is based on DataStore: Vertical on Engine has to match
4817
+ # vertical of the DataStore linked to the engine.
4818
4818
  # Corresponds to the JSON property `industryVertical`
4819
4819
  # @return [String]
4820
4820
  attr_accessor :industry_vertical
@@ -11307,71 +11307,6 @@ module Google
11307
11307
  end
11308
11308
  end
11309
11309
 
11310
- # Metadata that describes a custom tuned model.
11311
- class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
11312
- include Google::Apis::Core::Hashable
11313
-
11314
- # Deprecated: Timestamp the Model was created at.
11315
- # Corresponds to the JSON property `createTime`
11316
- # @return [String]
11317
- attr_accessor :create_time
11318
-
11319
- # The display name of the model.
11320
- # Corresponds to the JSON property `displayName`
11321
- # @return [String]
11322
- attr_accessor :display_name
11323
-
11324
- # Currently this is only populated if the model state is `
11325
- # INPUT_VALIDATION_FAILED`.
11326
- # Corresponds to the JSON property `errorMessage`
11327
- # @return [String]
11328
- attr_accessor :error_message
11329
-
11330
- # The metrics of the trained model.
11331
- # Corresponds to the JSON property `metrics`
11332
- # @return [Hash<String,Float>]
11333
- attr_accessor :metrics
11334
-
11335
- # The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`).
11336
- # Corresponds to the JSON property `modelState`
11337
- # @return [String]
11338
- attr_accessor :model_state
11339
-
11340
- # The version of the model.
11341
- # Corresponds to the JSON property `modelVersion`
11342
- # @return [Fixnum]
11343
- attr_accessor :model_version
11344
-
11345
- # Required. The fully qualified resource name of the model. Format: `projects/`
11346
- # project`/locations/`location`/collections/`collection`/dataStores/`data_store`/
11347
- # customTuningModels/`custom_tuning_model``. Model must be an alpha-numerical
11348
- # string with limit of 40 characters.
11349
- # Corresponds to the JSON property `name`
11350
- # @return [String]
11351
- attr_accessor :name
11352
-
11353
- # Timestamp the model training was initiated.
11354
- # Corresponds to the JSON property `trainingStartTime`
11355
- # @return [String]
11356
- attr_accessor :training_start_time
11357
-
11358
- def initialize(**args)
11359
- update!(**args)
11360
- end
11361
-
11362
- # Update properties of this object
11363
- def update!(**args)
11364
- @create_time = args[:create_time] if args.key?(:create_time)
11365
- @display_name = args[:display_name] if args.key?(:display_name)
11366
- @error_message = args[:error_message] if args.key?(:error_message)
11367
- @metrics = args[:metrics] if args.key?(:metrics)
11368
- @model_state = args[:model_state] if args.key?(:model_state)
11369
- @model_version = args[:model_version] if args.key?(:model_version)
11370
- @name = args[:name] if args.key?(:name)
11371
- @training_start_time = args[:training_start_time] if args.key?(:training_start_time)
11372
- end
11373
- end
11374
-
11375
11310
  # DataStore captures global settings and configs at the DataStore level.
11376
11311
  class GoogleCloudDiscoveryengineV1alphaDataStore
11377
11312
  include Google::Apis::Core::Hashable
@@ -12084,8 +12019,8 @@ module Google
12084
12019
  attr_accessor :display_name
12085
12020
 
12086
12021
  # The industry vertical that the engine registers. The restriction of the Engine
12087
- # industry vertical is based on DataStore: If unspecified, default to `GENERIC`.
12088
- # Vertical on Engine has to match vertical of the DataStore linked to the engine.
12022
+ # industry vertical is based on DataStore: Vertical on Engine has to match
12023
+ # vertical of the DataStore linked to the engine.
12089
12024
  # Corresponds to the JSON property `industryVertical`
12090
12025
  # @return [String]
12091
12026
  attr_accessor :industry_vertical
@@ -13325,25 +13260,6 @@ module Google
13325
13260
  end
13326
13261
  end
13327
13262
 
13328
- # Response message for SearchTuningService.ListCustomModels method.
13329
- class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
13330
- include Google::Apis::Core::Hashable
13331
-
13332
- # List of custom tuning models.
13333
- # Corresponds to the JSON property `models`
13334
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomTuningModel>]
13335
- attr_accessor :models
13336
-
13337
- def initialize(**args)
13338
- update!(**args)
13339
- end
13340
-
13341
- # Update properties of this object
13342
- def update!(**args)
13343
- @models = args[:models] if args.key?(:models)
13344
- end
13345
- end
13346
-
13347
13263
  # Request for ListSessions method.
13348
13264
  class GoogleCloudDiscoveryengineV1alphaListSessionsRequest
13349
13265
  include Google::Apis::Core::Hashable
@@ -16622,71 +16538,6 @@ module Google
16622
16538
  end
16623
16539
  end
16624
16540
 
16625
- # Metadata that describes a custom tuned model.
16626
- class GoogleCloudDiscoveryengineV1betaCustomTuningModel
16627
- include Google::Apis::Core::Hashable
16628
-
16629
- # Deprecated: Timestamp the Model was created at.
16630
- # Corresponds to the JSON property `createTime`
16631
- # @return [String]
16632
- attr_accessor :create_time
16633
-
16634
- # The display name of the model.
16635
- # Corresponds to the JSON property `displayName`
16636
- # @return [String]
16637
- attr_accessor :display_name
16638
-
16639
- # Currently this is only populated if the model state is `
16640
- # INPUT_VALIDATION_FAILED`.
16641
- # Corresponds to the JSON property `errorMessage`
16642
- # @return [String]
16643
- attr_accessor :error_message
16644
-
16645
- # The metrics of the trained model.
16646
- # Corresponds to the JSON property `metrics`
16647
- # @return [Hash<String,Float>]
16648
- attr_accessor :metrics
16649
-
16650
- # The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`).
16651
- # Corresponds to the JSON property `modelState`
16652
- # @return [String]
16653
- attr_accessor :model_state
16654
-
16655
- # The version of the model.
16656
- # Corresponds to the JSON property `modelVersion`
16657
- # @return [Fixnum]
16658
- attr_accessor :model_version
16659
-
16660
- # Required. The fully qualified resource name of the model. Format: `projects/`
16661
- # project`/locations/`location`/collections/`collection`/dataStores/`data_store`/
16662
- # customTuningModels/`custom_tuning_model``. Model must be an alpha-numerical
16663
- # string with limit of 40 characters.
16664
- # Corresponds to the JSON property `name`
16665
- # @return [String]
16666
- attr_accessor :name
16667
-
16668
- # Timestamp the model training was initiated.
16669
- # Corresponds to the JSON property `trainingStartTime`
16670
- # @return [String]
16671
- attr_accessor :training_start_time
16672
-
16673
- def initialize(**args)
16674
- update!(**args)
16675
- end
16676
-
16677
- # Update properties of this object
16678
- def update!(**args)
16679
- @create_time = args[:create_time] if args.key?(:create_time)
16680
- @display_name = args[:display_name] if args.key?(:display_name)
16681
- @error_message = args[:error_message] if args.key?(:error_message)
16682
- @metrics = args[:metrics] if args.key?(:metrics)
16683
- @model_state = args[:model_state] if args.key?(:model_state)
16684
- @model_version = args[:model_version] if args.key?(:model_version)
16685
- @name = args[:name] if args.key?(:name)
16686
- @training_start_time = args[:training_start_time] if args.key?(:training_start_time)
16687
- end
16688
- end
16689
-
16690
16541
  # DataStore captures global settings and configs at the DataStore level.
16691
16542
  class GoogleCloudDiscoveryengineV1betaDataStore
16692
16543
  include Google::Apis::Core::Hashable
@@ -17333,8 +17184,8 @@ module Google
17333
17184
  attr_accessor :display_name
17334
17185
 
17335
17186
  # The industry vertical that the engine registers. The restriction of the Engine
17336
- # industry vertical is based on DataStore: If unspecified, default to `GENERIC`.
17337
- # Vertical on Engine has to match vertical of the DataStore linked to the engine.
17187
+ # industry vertical is based on DataStore: Vertical on Engine has to match
17188
+ # vertical of the DataStore linked to the engine.
17338
17189
  # Corresponds to the JSON property `industryVertical`
17339
17190
  # @return [String]
17340
17191
  attr_accessor :industry_vertical
@@ -18132,25 +17983,6 @@ module Google
18132
17983
  end
18133
17984
  end
18134
17985
 
18135
- # Response message for SearchTuningService.ListCustomModels method.
18136
- class GoogleCloudDiscoveryengineV1betaListCustomModelsResponse
18137
- include Google::Apis::Core::Hashable
18138
-
18139
- # List of custom tuning models.
18140
- # Corresponds to the JSON property `models`
18141
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCustomTuningModel>]
18142
- attr_accessor :models
18143
-
18144
- def initialize(**args)
18145
- update!(**args)
18146
- end
18147
-
18148
- # Update properties of this object
18149
- def update!(**args)
18150
- @models = args[:models] if args.key?(:models)
18151
- end
18152
- end
18153
-
18154
17986
  # Configuration for Natural Language Query Understanding.
18155
17987
  class GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig
18156
17988
  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.24.0"
19
+ GEM_VERSION = "0.25.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 = "20241206"
25
+ REVISION = "20241210"
26
26
  end
27
27
  end
28
28
  end
@@ -1828,12 +1828,6 @@ module Google
1828
1828
  include Google::Apis::Core::JsonObjectSupport
1829
1829
  end
1830
1830
 
1831
- class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
1832
- class Representation < Google::Apis::Core::JsonRepresentation; end
1833
-
1834
- include Google::Apis::Core::JsonObjectSupport
1835
- end
1836
-
1837
1831
  class GoogleCloudDiscoveryengineV1alphaDataStore
1838
1832
  class Representation < Google::Apis::Core::JsonRepresentation; end
1839
1833
 
@@ -2170,12 +2164,6 @@ module Google
2170
2164
  include Google::Apis::Core::JsonObjectSupport
2171
2165
  end
2172
2166
 
2173
- class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
2174
- class Representation < Google::Apis::Core::JsonRepresentation; end
2175
-
2176
- include Google::Apis::Core::JsonObjectSupport
2177
- end
2178
-
2179
2167
  class GoogleCloudDiscoveryengineV1alphaListSessionsRequest
2180
2168
  class Representation < Google::Apis::Core::JsonRepresentation; end
2181
2169
 
@@ -2698,12 +2686,6 @@ module Google
2698
2686
  include Google::Apis::Core::JsonObjectSupport
2699
2687
  end
2700
2688
 
2701
- class GoogleCloudDiscoveryengineV1betaCustomTuningModel
2702
- class Representation < Google::Apis::Core::JsonRepresentation; end
2703
-
2704
- include Google::Apis::Core::JsonObjectSupport
2705
- end
2706
-
2707
2689
  class GoogleCloudDiscoveryengineV1betaDataStore
2708
2690
  class Representation < Google::Apis::Core::JsonRepresentation; end
2709
2691
 
@@ -2962,12 +2944,6 @@ module Google
2962
2944
  include Google::Apis::Core::JsonObjectSupport
2963
2945
  end
2964
2946
 
2965
- class GoogleCloudDiscoveryengineV1betaListCustomModelsResponse
2966
- class Representation < Google::Apis::Core::JsonRepresentation; end
2967
-
2968
- include Google::Apis::Core::JsonObjectSupport
2969
- end
2970
-
2971
2947
  class GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig
2972
2948
  class Representation < Google::Apis::Core::JsonRepresentation; end
2973
2949
 
@@ -6363,20 +6339,6 @@ module Google
6363
6339
  end
6364
6340
  end
6365
6341
 
6366
- class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
6367
- # @private
6368
- class Representation < Google::Apis::Core::JsonRepresentation
6369
- property :create_time, as: 'createTime'
6370
- property :display_name, as: 'displayName'
6371
- property :error_message, as: 'errorMessage'
6372
- hash :metrics, as: 'metrics'
6373
- property :model_state, as: 'modelState'
6374
- property :model_version, :numeric_string => true, as: 'modelVersion'
6375
- property :name, as: 'name'
6376
- property :training_start_time, as: 'trainingStartTime'
6377
- end
6378
- end
6379
-
6380
6342
  class GoogleCloudDiscoveryengineV1alphaDataStore
6381
6343
  # @private
6382
6344
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6925,14 +6887,6 @@ module Google
6925
6887
  end
6926
6888
  end
6927
6889
 
6928
- class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
6929
- # @private
6930
- class Representation < Google::Apis::Core::JsonRepresentation
6931
- collection :models, as: 'models', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomTuningModel, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomTuningModel::Representation
6932
-
6933
- end
6934
- end
6935
-
6936
6890
  class GoogleCloudDiscoveryengineV1alphaListSessionsRequest
6937
6891
  # @private
6938
6892
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7792,20 +7746,6 @@ module Google
7792
7746
  end
7793
7747
  end
7794
7748
 
7795
- class GoogleCloudDiscoveryengineV1betaCustomTuningModel
7796
- # @private
7797
- class Representation < Google::Apis::Core::JsonRepresentation
7798
- property :create_time, as: 'createTime'
7799
- property :display_name, as: 'displayName'
7800
- property :error_message, as: 'errorMessage'
7801
- hash :metrics, as: 'metrics'
7802
- property :model_state, as: 'modelState'
7803
- property :model_version, :numeric_string => true, as: 'modelVersion'
7804
- property :name, as: 'name'
7805
- property :training_start_time, as: 'trainingStartTime'
7806
- end
7807
- end
7808
-
7809
7749
  class GoogleCloudDiscoveryengineV1betaDataStore
7810
7750
  # @private
7811
7751
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8229,14 +8169,6 @@ module Google
8229
8169
  end
8230
8170
  end
8231
8171
 
8232
- class GoogleCloudDiscoveryengineV1betaListCustomModelsResponse
8233
- # @private
8234
- class Representation < Google::Apis::Core::JsonRepresentation
8235
- collection :models, as: 'models', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCustomTuningModel, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCustomTuningModel::Representation
8236
-
8237
- end
8238
- end
8239
-
8240
8172
  class GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig
8241
8173
  # @private
8242
8174
  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.24.0
4
+ version: 0.25.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-12-08 00:00:00.000000000 Z
11
+ date: 2024-12-15 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.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.25.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: []