google-apis-discoveryengine_v1beta 0.52.0 → 0.53.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: a35fabd9e91c7703cde04a4c09bd3b5b52ad6e740489ec47472e63979f079422
4
- data.tar.gz: 3055869979643ec2ec5f86de63eb8b30d12fe688f0d7c06b4bbdc47161a661c6
3
+ metadata.gz: 5ad5975619d392568489a5762f2692b908d1a80c3e2828b6d403256ef537a95d
4
+ data.tar.gz: 9c2a5282afbb1f297bc779f21d6797a1534ce6191b4c7e9dac6c271b9cf58bee
5
5
  SHA512:
6
- metadata.gz: c974eae01becca110b60f1ad107515ba828f8819973f0f7e88296f479c2e5746e965935da20d4aa034584e7f08f76e112b96dc6a54bcd596f989ddb6e84f5d33
7
- data.tar.gz: 6145a88bcceabaa3b20e66a7c789cd1d42a8beff71382effd5a7ca03787a2d3f6c3dae4a9cc8b0fb620780c0283ef5392eb8daab267d835f2b2842e5c38b37b5
6
+ metadata.gz: 51947d6d395389d16a178c38bcb034fec976e1f5cc68d5a758a2a1f5a938cd91e287313b845fb3b5dde5afc69e20fbb4774267666c5e439aa54e42ca6a0916a7
7
+ data.tar.gz: 86e4e57be8187825e3bb10bcbef9b000de5206589fc3c09edde91c860c064df597effa5c8531193e6dd33f70dc618f49b06b4498ddfc0d2a3a3982afbe5abd2f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.53.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241210
6
+
3
7
  ### v0.52.0 (2024-12-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20241206
@@ -1839,8 +1839,8 @@ module Google
1839
1839
  attr_accessor :display_name
1840
1840
 
1841
1841
  # The industry vertical that the engine registers. The restriction of the Engine
1842
- # industry vertical is based on DataStore: If unspecified, default to `GENERIC`.
1843
- # Vertical on Engine has to match vertical of the DataStore linked to the engine.
1842
+ # industry vertical is based on DataStore: Vertical on Engine has to match
1843
+ # vertical of the DataStore linked to the engine.
1844
1844
  # Corresponds to the JSON property `industryVertical`
1845
1845
  # @return [String]
1846
1846
  attr_accessor :industry_vertical
@@ -4982,71 +4982,6 @@ module Google
4982
4982
  end
4983
4983
  end
4984
4984
 
4985
- # Metadata that describes a custom tuned model.
4986
- class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
4987
- include Google::Apis::Core::Hashable
4988
-
4989
- # Deprecated: Timestamp the Model was created at.
4990
- # Corresponds to the JSON property `createTime`
4991
- # @return [String]
4992
- attr_accessor :create_time
4993
-
4994
- # The display name of the model.
4995
- # Corresponds to the JSON property `displayName`
4996
- # @return [String]
4997
- attr_accessor :display_name
4998
-
4999
- # Currently this is only populated if the model state is `
5000
- # INPUT_VALIDATION_FAILED`.
5001
- # Corresponds to the JSON property `errorMessage`
5002
- # @return [String]
5003
- attr_accessor :error_message
5004
-
5005
- # The metrics of the trained model.
5006
- # Corresponds to the JSON property `metrics`
5007
- # @return [Hash<String,Float>]
5008
- attr_accessor :metrics
5009
-
5010
- # The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`).
5011
- # Corresponds to the JSON property `modelState`
5012
- # @return [String]
5013
- attr_accessor :model_state
5014
-
5015
- # The version of the model.
5016
- # Corresponds to the JSON property `modelVersion`
5017
- # @return [Fixnum]
5018
- attr_accessor :model_version
5019
-
5020
- # Required. The fully qualified resource name of the model. Format: `projects/`
5021
- # project`/locations/`location`/collections/`collection`/dataStores/`data_store`/
5022
- # customTuningModels/`custom_tuning_model``. Model must be an alpha-numerical
5023
- # string with limit of 40 characters.
5024
- # Corresponds to the JSON property `name`
5025
- # @return [String]
5026
- attr_accessor :name
5027
-
5028
- # Timestamp the model training was initiated.
5029
- # Corresponds to the JSON property `trainingStartTime`
5030
- # @return [String]
5031
- attr_accessor :training_start_time
5032
-
5033
- def initialize(**args)
5034
- update!(**args)
5035
- end
5036
-
5037
- # Update properties of this object
5038
- def update!(**args)
5039
- @create_time = args[:create_time] if args.key?(:create_time)
5040
- @display_name = args[:display_name] if args.key?(:display_name)
5041
- @error_message = args[:error_message] if args.key?(:error_message)
5042
- @metrics = args[:metrics] if args.key?(:metrics)
5043
- @model_state = args[:model_state] if args.key?(:model_state)
5044
- @model_version = args[:model_version] if args.key?(:model_version)
5045
- @name = args[:name] if args.key?(:name)
5046
- @training_start_time = args[:training_start_time] if args.key?(:training_start_time)
5047
- end
5048
- end
5049
-
5050
4985
  # DataStore captures global settings and configs at the DataStore level.
5051
4986
  class GoogleCloudDiscoveryengineV1alphaDataStore
5052
4987
  include Google::Apis::Core::Hashable
@@ -5759,8 +5694,8 @@ module Google
5759
5694
  attr_accessor :display_name
5760
5695
 
5761
5696
  # The industry vertical that the engine registers. The restriction of the Engine
5762
- # industry vertical is based on DataStore: If unspecified, default to `GENERIC`.
5763
- # Vertical on Engine has to match vertical of the DataStore linked to the engine.
5697
+ # industry vertical is based on DataStore: Vertical on Engine has to match
5698
+ # vertical of the DataStore linked to the engine.
5764
5699
  # Corresponds to the JSON property `industryVertical`
5765
5700
  # @return [String]
5766
5701
  attr_accessor :industry_vertical
@@ -7000,25 +6935,6 @@ module Google
7000
6935
  end
7001
6936
  end
7002
6937
 
7003
- # Response message for SearchTuningService.ListCustomModels method.
7004
- class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
7005
- include Google::Apis::Core::Hashable
7006
-
7007
- # List of custom tuning models.
7008
- # Corresponds to the JSON property `models`
7009
- # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCustomTuningModel>]
7010
- attr_accessor :models
7011
-
7012
- def initialize(**args)
7013
- update!(**args)
7014
- end
7015
-
7016
- # Update properties of this object
7017
- def update!(**args)
7018
- @models = args[:models] if args.key?(:models)
7019
- end
7020
- end
7021
-
7022
6938
  # Request for ListSessions method.
7023
6939
  class GoogleCloudDiscoveryengineV1alphaListSessionsRequest
7024
6940
  include Google::Apis::Core::Hashable
@@ -14287,8 +14203,8 @@ module Google
14287
14203
  attr_accessor :display_name
14288
14204
 
14289
14205
  # The industry vertical that the engine registers. The restriction of the Engine
14290
- # industry vertical is based on DataStore: If unspecified, default to `GENERIC`.
14291
- # Vertical on Engine has to match vertical of the DataStore linked to the engine.
14206
+ # industry vertical is based on DataStore: Vertical on Engine has to match
14207
+ # vertical of the DataStore linked to the engine.
14292
14208
  # Corresponds to the JSON property `industryVertical`
14293
14209
  # @return [String]
14294
14210
  attr_accessor :industry_vertical
@@ -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.52.0"
19
+ GEM_VERSION = "0.53.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
@@ -856,12 +856,6 @@ module Google
856
856
  include Google::Apis::Core::JsonObjectSupport
857
857
  end
858
858
 
859
- class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
860
- class Representation < Google::Apis::Core::JsonRepresentation; end
861
-
862
- include Google::Apis::Core::JsonObjectSupport
863
- end
864
-
865
859
  class GoogleCloudDiscoveryengineV1alphaDataStore
866
860
  class Representation < Google::Apis::Core::JsonRepresentation; end
867
861
 
@@ -1198,12 +1192,6 @@ module Google
1198
1192
  include Google::Apis::Core::JsonObjectSupport
1199
1193
  end
1200
1194
 
1201
- class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
1202
- class Representation < Google::Apis::Core::JsonRepresentation; end
1203
-
1204
- include Google::Apis::Core::JsonObjectSupport
1205
- end
1206
-
1207
1195
  class GoogleCloudDiscoveryengineV1alphaListSessionsRequest
1208
1196
  class Representation < Google::Apis::Core::JsonRepresentation; end
1209
1197
 
@@ -4816,20 +4804,6 @@ module Google
4816
4804
  end
4817
4805
  end
4818
4806
 
4819
- class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
4820
- # @private
4821
- class Representation < Google::Apis::Core::JsonRepresentation
4822
- property :create_time, as: 'createTime'
4823
- property :display_name, as: 'displayName'
4824
- property :error_message, as: 'errorMessage'
4825
- hash :metrics, as: 'metrics'
4826
- property :model_state, as: 'modelState'
4827
- property :model_version, :numeric_string => true, as: 'modelVersion'
4828
- property :name, as: 'name'
4829
- property :training_start_time, as: 'trainingStartTime'
4830
- end
4831
- end
4832
-
4833
4807
  class GoogleCloudDiscoveryengineV1alphaDataStore
4834
4808
  # @private
4835
4809
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5378,14 +5352,6 @@ module Google
5378
5352
  end
5379
5353
  end
5380
5354
 
5381
- class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
5382
- # @private
5383
- class Representation < Google::Apis::Core::JsonRepresentation
5384
- collection :models, as: 'models', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCustomTuningModel, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCustomTuningModel::Representation
5385
-
5386
- end
5387
- end
5388
-
5389
5355
  class GoogleCloudDiscoveryengineV1alphaListSessionsRequest
5390
5356
  # @private
5391
5357
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.53.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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.53.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []