google-apis-discoveryengine_v1 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 06014f8b267e0cb52a91bada1a5e75e6feab3f44fd9987bf770f0c0aaf4b4e0a
4
- data.tar.gz: d59295cbd6c2076df6ff25fb89933058fed654c3e856da2532b80fe754a66f4f
3
+ metadata.gz: 7642b15bc710010e1a0183832c05b42b82cf78e19b3a0277650eb7c495bc6efd
4
+ data.tar.gz: 50ddc32dc2f555a0562ac90938dd8ae61dd3863facb935e04b6eb200796e3254
5
5
  SHA512:
6
- metadata.gz: 01b65e3f3b22c5f8638cb6656af12a6edbc3caa774d5f500279583f46fc792541bff02bae648c8fb072d6021b9976aebd0caa773a8757554587ff84a3f1e298c
7
- data.tar.gz: '099d4660b1360d7098b87832aa5063bb747295b598469916940a47bb5edf59f4c831f731ca301545044125fb36e81edf65bd73540863b68ddd53dc97025ac6a1'
6
+ metadata.gz: da6c327f8fa49a96c2fa0461f3668aee90ae128fa66c0f5fa48fbfbfc9a6e679e49a062960c3699867b1e4517aab14dafbe8f554e7eedea2e44c5d9d5aebe379
7
+ data.tar.gz: ba7b92e1f51bd4f982d79c7b4f3d29fe5d20b7b9222b6a548f352bb7609576ed32d9a6a695e9db45a7493a1542fdee6acdba3d409f698f3b63b75f27e3d3e035
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.2.0 (2024-05-05)
4
+
5
+ * Regenerated from discovery document revision 20240502
6
+
3
7
  ### v0.1.0 (2024-04-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20240415
@@ -3406,9 +3406,9 @@ module Google
3406
3406
 
3407
3407
  # The order in which documents are returned. Documents can be ordered by a field
3408
3408
  # in an Document object. Leave it unset if ordered by relevance. `order_by`
3409
- # expression is case-sensitive. For more information on ordering, see [Ordering](
3410
- # https://cloud.google.com/retail/docs/filter-and-order#order) If this field is
3411
- # unrecognizable, an `INVALID_ARGUMENT` is returned.
3409
+ # expression is case-sensitive. For more information on ordering for retail
3410
+ # search, see [Ordering](https://cloud.google.com/retail/docs/filter-and-order#
3411
+ # order) If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
3412
3412
  # Corresponds to the JSON property `orderBy`
3413
3413
  # @return [String]
3414
3414
  attr_accessor :order_by
@@ -4684,6 +4684,11 @@ module Google
4684
4684
  # @return [String]
4685
4685
  attr_accessor :provided_uri_pattern
4686
4686
 
4687
+ # Output only. Root domain of the provided_uri_pattern.
4688
+ # Corresponds to the JSON property `rootDomainUri`
4689
+ # @return [String]
4690
+ attr_accessor :root_domain_uri
4691
+
4687
4692
  # Verification information for target sites in advanced site search.
4688
4693
  # Corresponds to the JSON property `siteVerificationInfo`
4689
4694
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SiteVerificationInfo]
@@ -4712,6 +4717,7 @@ module Google
4712
4717
  @indexing_status = args[:indexing_status] if args.key?(:indexing_status)
4713
4718
  @name = args[:name] if args.key?(:name)
4714
4719
  @provided_uri_pattern = args[:provided_uri_pattern] if args.key?(:provided_uri_pattern)
4720
+ @root_domain_uri = args[:root_domain_uri] if args.key?(:root_domain_uri)
4715
4721
  @site_verification_info = args[:site_verification_info] if args.key?(:site_verification_info)
4716
4722
  @type = args[:type] if args.key?(:type)
4717
4723
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -5846,6 +5852,58 @@ module Google
5846
5852
  end
5847
5853
  end
5848
5854
 
5855
+ # Metadata that describes a custom tuned model.
5856
+ class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
5857
+ include Google::Apis::Core::Hashable
5858
+
5859
+ # Timestamp the Model was created at.
5860
+ # Corresponds to the JSON property `createTime`
5861
+ # @return [String]
5862
+ attr_accessor :create_time
5863
+
5864
+ # The display name of the model.
5865
+ # Corresponds to the JSON property `displayName`
5866
+ # @return [String]
5867
+ attr_accessor :display_name
5868
+
5869
+ # The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`).
5870
+ # Corresponds to the JSON property `modelState`
5871
+ # @return [String]
5872
+ attr_accessor :model_state
5873
+
5874
+ #
5875
+ # Corresponds to the JSON property `modelVersion`
5876
+ # @return [Fixnum]
5877
+ attr_accessor :model_version
5878
+
5879
+ # Required. The fully qualified resource name of the model. Format: `projects/`
5880
+ # project_number`/locations/`location`/collections/`collection`/dataStores/`
5881
+ # data_store`/customTuningModels/`custom_tuning_model`` model must be an alpha-
5882
+ # numerical string with limit of 40 characters.
5883
+ # Corresponds to the JSON property `name`
5884
+ # @return [String]
5885
+ attr_accessor :name
5886
+
5887
+ # Timestamp the model training was initiated.
5888
+ # Corresponds to the JSON property `trainingStartTime`
5889
+ # @return [String]
5890
+ attr_accessor :training_start_time
5891
+
5892
+ def initialize(**args)
5893
+ update!(**args)
5894
+ end
5895
+
5896
+ # Update properties of this object
5897
+ def update!(**args)
5898
+ @create_time = args[:create_time] if args.key?(:create_time)
5899
+ @display_name = args[:display_name] if args.key?(:display_name)
5900
+ @model_state = args[:model_state] if args.key?(:model_state)
5901
+ @model_version = args[:model_version] if args.key?(:model_version)
5902
+ @name = args[:name] if args.key?(:name)
5903
+ @training_start_time = args[:training_start_time] if args.key?(:training_start_time)
5904
+ end
5905
+ end
5906
+
5849
5907
  # DataStore captures global settings and configs at the DataStore level.
5850
5908
  class GoogleCloudDiscoveryengineV1alphaDataStore
5851
5909
  include Google::Apis::Core::Hashable
@@ -7153,6 +7211,25 @@ module Google
7153
7211
  end
7154
7212
  end
7155
7213
 
7214
+ # Response message for SearchTuningService.ListCustomModels method.
7215
+ class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
7216
+ include Google::Apis::Core::Hashable
7217
+
7218
+ # List of custom tuning models.
7219
+ # Corresponds to the JSON property `models`
7220
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomTuningModel>]
7221
+ attr_accessor :models
7222
+
7223
+ def initialize(**args)
7224
+ update!(**args)
7225
+ end
7226
+
7227
+ # Update properties of this object
7228
+ def update!(**args)
7229
+ @models = args[:models] if args.key?(:models)
7230
+ end
7231
+ end
7232
+
7156
7233
  # Metadata and configurations for a Google Cloud project in the service.
7157
7234
  class GoogleCloudDiscoveryengineV1alphaProject
7158
7235
  include Google::Apis::Core::Hashable
@@ -7787,6 +7864,11 @@ module Google
7787
7864
  # @return [String]
7788
7865
  attr_accessor :provided_uri_pattern
7789
7866
 
7867
+ # Output only. Root domain of the provided_uri_pattern.
7868
+ # Corresponds to the JSON property `rootDomainUri`
7869
+ # @return [String]
7870
+ attr_accessor :root_domain_uri
7871
+
7790
7872
  # Verification information for target sites in advanced site search.
7791
7873
  # Corresponds to the JSON property `siteVerificationInfo`
7792
7874
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo]
@@ -7815,6 +7897,7 @@ module Google
7815
7897
  @indexing_status = args[:indexing_status] if args.key?(:indexing_status)
7816
7898
  @name = args[:name] if args.key?(:name)
7817
7899
  @provided_uri_pattern = args[:provided_uri_pattern] if args.key?(:provided_uri_pattern)
7900
+ @root_domain_uri = args[:root_domain_uri] if args.key?(:root_domain_uri)
7818
7901
  @site_verification_info = args[:site_verification_info] if args.key?(:site_verification_info)
7819
7902
  @type = args[:type] if args.key?(:type)
7820
7903
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -7907,6 +7990,11 @@ module Google
7907
7990
  # @return [Hash<String,Float>]
7908
7991
  attr_accessor :metrics
7909
7992
 
7993
+ # Fully qualified name of the CustomTuningModel.
7994
+ # Corresponds to the JSON property `modelName`
7995
+ # @return [String]
7996
+ attr_accessor :model_name
7997
+
7910
7998
  # The trained model status. Possible values are: * **bad-data**: The training
7911
7999
  # data quality is bad. * **no-improvement**: Tuning didn't improve performance.
7912
8000
  # Won't deploy. * **in-progress**: Model training job creation is in progress. *
@@ -7926,6 +8014,7 @@ module Google
7926
8014
  @error_config = args[:error_config] if args.key?(:error_config)
7927
8015
  @error_samples = args[:error_samples] if args.key?(:error_samples)
7928
8016
  @metrics = args[:metrics] if args.key?(:metrics)
8017
+ @model_name = args[:model_name] if args.key?(:model_name)
7929
8018
  @model_status = args[:model_status] if args.key?(:model_status)
7930
8019
  end
7931
8020
  end
@@ -8174,6 +8263,58 @@ module Google
8174
8263
  end
8175
8264
  end
8176
8265
 
8266
+ # Metadata that describes a custom tuned model.
8267
+ class GoogleCloudDiscoveryengineV1betaCustomTuningModel
8268
+ include Google::Apis::Core::Hashable
8269
+
8270
+ # Timestamp the Model was created at.
8271
+ # Corresponds to the JSON property `createTime`
8272
+ # @return [String]
8273
+ attr_accessor :create_time
8274
+
8275
+ # The display name of the model.
8276
+ # Corresponds to the JSON property `displayName`
8277
+ # @return [String]
8278
+ attr_accessor :display_name
8279
+
8280
+ # The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`).
8281
+ # Corresponds to the JSON property `modelState`
8282
+ # @return [String]
8283
+ attr_accessor :model_state
8284
+
8285
+ #
8286
+ # Corresponds to the JSON property `modelVersion`
8287
+ # @return [Fixnum]
8288
+ attr_accessor :model_version
8289
+
8290
+ # Required. The fully qualified resource name of the model. Format: `projects/`
8291
+ # project_number`/locations/`location`/collections/`collection`/dataStores/`
8292
+ # data_store`/customTuningModels/`custom_tuning_model`` model must be an alpha-
8293
+ # numerical string with limit of 40 characters.
8294
+ # Corresponds to the JSON property `name`
8295
+ # @return [String]
8296
+ attr_accessor :name
8297
+
8298
+ # Timestamp the model training was initiated.
8299
+ # Corresponds to the JSON property `trainingStartTime`
8300
+ # @return [String]
8301
+ attr_accessor :training_start_time
8302
+
8303
+ def initialize(**args)
8304
+ update!(**args)
8305
+ end
8306
+
8307
+ # Update properties of this object
8308
+ def update!(**args)
8309
+ @create_time = args[:create_time] if args.key?(:create_time)
8310
+ @display_name = args[:display_name] if args.key?(:display_name)
8311
+ @model_state = args[:model_state] if args.key?(:model_state)
8312
+ @model_version = args[:model_version] if args.key?(:model_version)
8313
+ @name = args[:name] if args.key?(:name)
8314
+ @training_start_time = args[:training_start_time] if args.key?(:training_start_time)
8315
+ end
8316
+ end
8317
+
8177
8318
  # DataStore captures global settings and configs at the DataStore level.
8178
8319
  class GoogleCloudDiscoveryengineV1betaDataStore
8179
8320
  include Google::Apis::Core::Hashable
@@ -9020,6 +9161,25 @@ module Google
9020
9161
  end
9021
9162
  end
9022
9163
 
9164
+ # Response message for SearchTuningService.ListCustomModels method.
9165
+ class GoogleCloudDiscoveryengineV1betaListCustomModelsResponse
9166
+ include Google::Apis::Core::Hashable
9167
+
9168
+ # List of custom tuning models.
9169
+ # Corresponds to the JSON property `models`
9170
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCustomTuningModel>]
9171
+ attr_accessor :models
9172
+
9173
+ def initialize(**args)
9174
+ update!(**args)
9175
+ end
9176
+
9177
+ # Update properties of this object
9178
+ def update!(**args)
9179
+ @models = args[:models] if args.key?(:models)
9180
+ end
9181
+ end
9182
+
9023
9183
  # Metadata related to the progress of the PurgeDocuments operation. This will be
9024
9184
  # returned by the google.longrunning.Operation.metadata field.
9025
9185
  class GoogleCloudDiscoveryengineV1betaPurgeDocumentsMetadata
@@ -9249,6 +9409,11 @@ module Google
9249
9409
  # @return [String]
9250
9410
  attr_accessor :provided_uri_pattern
9251
9411
 
9412
+ # Output only. Root domain of the provided_uri_pattern.
9413
+ # Corresponds to the JSON property `rootDomainUri`
9414
+ # @return [String]
9415
+ attr_accessor :root_domain_uri
9416
+
9252
9417
  # Verification information for target sites in advanced site search.
9253
9418
  # Corresponds to the JSON property `siteVerificationInfo`
9254
9419
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSiteVerificationInfo]
@@ -9277,6 +9442,7 @@ module Google
9277
9442
  @indexing_status = args[:indexing_status] if args.key?(:indexing_status)
9278
9443
  @name = args[:name] if args.key?(:name)
9279
9444
  @provided_uri_pattern = args[:provided_uri_pattern] if args.key?(:provided_uri_pattern)
9445
+ @root_domain_uri = args[:root_domain_uri] if args.key?(:root_domain_uri)
9280
9446
  @site_verification_info = args[:site_verification_info] if args.key?(:site_verification_info)
9281
9447
  @type = args[:type] if args.key?(:type)
9282
9448
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -9369,6 +9535,11 @@ module Google
9369
9535
  # @return [Hash<String,Float>]
9370
9536
  attr_accessor :metrics
9371
9537
 
9538
+ # Fully qualified name of the CustomTuningModel.
9539
+ # Corresponds to the JSON property `modelName`
9540
+ # @return [String]
9541
+ attr_accessor :model_name
9542
+
9372
9543
  # The trained model status. Possible values are: * **bad-data**: The training
9373
9544
  # data quality is bad. * **no-improvement**: Tuning didn't improve performance.
9374
9545
  # Won't deploy. * **in-progress**: Model training job creation is in progress. *
@@ -9388,6 +9559,7 @@ module Google
9388
9559
  @error_config = args[:error_config] if args.key?(:error_config)
9389
9560
  @error_samples = args[:error_samples] if args.key?(:error_samples)
9390
9561
  @metrics = args[:metrics] if args.key?(:metrics)
9562
+ @model_name = args[:model_name] if args.key?(:model_name)
9391
9563
  @model_status = args[:model_status] if args.key?(:model_status)
9392
9564
  end
9393
9565
  end
@@ -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.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240415"
25
+ REVISION = "20240502"
26
26
  end
27
27
  end
28
28
  end
@@ -982,6 +982,12 @@ module Google
982
982
  include Google::Apis::Core::JsonObjectSupport
983
983
  end
984
984
 
985
+ class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
986
+ class Representation < Google::Apis::Core::JsonRepresentation; end
987
+
988
+ include Google::Apis::Core::JsonObjectSupport
989
+ end
990
+
985
991
  class GoogleCloudDiscoveryengineV1alphaDataStore
986
992
  class Representation < Google::Apis::Core::JsonRepresentation; end
987
993
 
@@ -1210,6 +1216,12 @@ module Google
1210
1216
  include Google::Apis::Core::JsonObjectSupport
1211
1217
  end
1212
1218
 
1219
+ class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
1220
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1221
+
1222
+ include Google::Apis::Core::JsonObjectSupport
1223
+ end
1224
+
1213
1225
  class GoogleCloudDiscoveryengineV1alphaProject
1214
1226
  class Representation < Google::Apis::Core::JsonRepresentation; end
1215
1227
 
@@ -1408,6 +1420,12 @@ module Google
1408
1420
  include Google::Apis::Core::JsonObjectSupport
1409
1421
  end
1410
1422
 
1423
+ class GoogleCloudDiscoveryengineV1betaCustomTuningModel
1424
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1425
+
1426
+ include Google::Apis::Core::JsonObjectSupport
1427
+ end
1428
+
1411
1429
  class GoogleCloudDiscoveryengineV1betaDataStore
1412
1430
  class Representation < Google::Apis::Core::JsonRepresentation; end
1413
1431
 
@@ -1564,6 +1582,12 @@ module Google
1564
1582
  include Google::Apis::Core::JsonObjectSupport
1565
1583
  end
1566
1584
 
1585
+ class GoogleCloudDiscoveryengineV1betaListCustomModelsResponse
1586
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1587
+
1588
+ include Google::Apis::Core::JsonObjectSupport
1589
+ end
1590
+
1567
1591
  class GoogleCloudDiscoveryengineV1betaPurgeDocumentsMetadata
1568
1592
  class Representation < Google::Apis::Core::JsonRepresentation; end
1569
1593
 
@@ -2937,6 +2961,7 @@ module Google
2937
2961
  property :indexing_status, as: 'indexingStatus'
2938
2962
  property :name, as: 'name'
2939
2963
  property :provided_uri_pattern, as: 'providedUriPattern'
2964
+ property :root_domain_uri, as: 'rootDomainUri'
2940
2965
  property :site_verification_info, as: 'siteVerificationInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SiteVerificationInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SiteVerificationInfo::Representation
2941
2966
 
2942
2967
  property :type, as: 'type'
@@ -3264,6 +3289,18 @@ module Google
3264
3289
  end
3265
3290
  end
3266
3291
 
3292
+ class GoogleCloudDiscoveryengineV1alphaCustomTuningModel
3293
+ # @private
3294
+ class Representation < Google::Apis::Core::JsonRepresentation
3295
+ property :create_time, as: 'createTime'
3296
+ property :display_name, as: 'displayName'
3297
+ property :model_state, as: 'modelState'
3298
+ property :model_version, :numeric_string => true, as: 'modelVersion'
3299
+ property :name, as: 'name'
3300
+ property :training_start_time, as: 'trainingStartTime'
3301
+ end
3302
+ end
3303
+
3267
3304
  class GoogleCloudDiscoveryengineV1alphaDataStore
3268
3305
  # @private
3269
3306
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3623,6 +3660,14 @@ module Google
3623
3660
  end
3624
3661
  end
3625
3662
 
3663
+ class GoogleCloudDiscoveryengineV1alphaListCustomModelsResponse
3664
+ # @private
3665
+ class Representation < Google::Apis::Core::JsonRepresentation
3666
+ collection :models, as: 'models', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomTuningModel, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomTuningModel::Representation
3667
+
3668
+ end
3669
+ end
3670
+
3626
3671
  class GoogleCloudDiscoveryengineV1alphaProject
3627
3672
  # @private
3628
3673
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3802,6 +3847,7 @@ module Google
3802
3847
  property :indexing_status, as: 'indexingStatus'
3803
3848
  property :name, as: 'name'
3804
3849
  property :provided_uri_pattern, as: 'providedUriPattern'
3850
+ property :root_domain_uri, as: 'rootDomainUri'
3805
3851
  property :site_verification_info, as: 'siteVerificationInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo::Representation
3806
3852
 
3807
3853
  property :type, as: 'type'
@@ -3840,6 +3886,7 @@ module Google
3840
3886
  collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
3841
3887
 
3842
3888
  hash :metrics, as: 'metrics'
3889
+ property :model_name, as: 'modelName'
3843
3890
  property :model_status, as: 'modelStatus'
3844
3891
  end
3845
3892
  end
@@ -3921,6 +3968,18 @@ module Google
3921
3968
  end
3922
3969
  end
3923
3970
 
3971
+ class GoogleCloudDiscoveryengineV1betaCustomTuningModel
3972
+ # @private
3973
+ class Representation < Google::Apis::Core::JsonRepresentation
3974
+ property :create_time, as: 'createTime'
3975
+ property :display_name, as: 'displayName'
3976
+ property :model_state, as: 'modelState'
3977
+ property :model_version, :numeric_string => true, as: 'modelVersion'
3978
+ property :name, as: 'name'
3979
+ property :training_start_time, as: 'trainingStartTime'
3980
+ end
3981
+ end
3982
+
3924
3983
  class GoogleCloudDiscoveryengineV1betaDataStore
3925
3984
  # @private
3926
3985
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4163,6 +4222,14 @@ module Google
4163
4222
  end
4164
4223
  end
4165
4224
 
4225
+ class GoogleCloudDiscoveryengineV1betaListCustomModelsResponse
4226
+ # @private
4227
+ class Representation < Google::Apis::Core::JsonRepresentation
4228
+ collection :models, as: 'models', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCustomTuningModel, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCustomTuningModel::Representation
4229
+
4230
+ end
4231
+ end
4232
+
4166
4233
  class GoogleCloudDiscoveryengineV1betaPurgeDocumentsMetadata
4167
4234
  # @private
4168
4235
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4226,6 +4293,7 @@ module Google
4226
4293
  property :indexing_status, as: 'indexingStatus'
4227
4294
  property :name, as: 'name'
4228
4295
  property :provided_uri_pattern, as: 'providedUriPattern'
4296
+ property :root_domain_uri, as: 'rootDomainUri'
4229
4297
  property :site_verification_info, as: 'siteVerificationInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSiteVerificationInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSiteVerificationInfo::Representation
4230
4298
 
4231
4299
  property :type, as: 'type'
@@ -4264,6 +4332,7 @@ module Google
4264
4332
  collection :error_samples, as: 'errorSamples', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
4265
4333
 
4266
4334
  hash :metrics, as: 'metrics'
4335
+ property :model_name, as: 'modelName'
4267
4336
  property :model_status, as: 'modelStatus'
4268
4337
  end
4269
4338
  end
@@ -342,7 +342,7 @@ module Google
342
342
  # permission to list DataStores under this location, regardless of whether or
343
343
  # not this data store exists, a PERMISSION_DENIED error is returned.
344
344
  # @param [String] filter
345
- # Filter by solution type. For example: filter = 'solution_type:
345
+ # Filter by solution type . For example: filter = 'solution_type:
346
346
  # SOLUTION_TYPE_SEARCH'
347
347
  # @param [Fixnum] page_size
348
348
  # Maximum number of DataStores to return. If unspecified, defaults to 10. The
@@ -3075,7 +3075,7 @@ module Google
3075
3075
  # permission to list DataStores under this location, regardless of whether or
3076
3076
  # not this data store exists, a PERMISSION_DENIED error is returned.
3077
3077
  # @param [String] filter
3078
- # Filter by solution type. For example: filter = 'solution_type:
3078
+ # Filter by solution type . For example: filter = 'solution_type:
3079
3079
  # SOLUTION_TYPE_SEARCH'
3080
3080
  # @param [Fixnum] page_size
3081
3081
  # Maximum number of DataStores to return. If unspecified, defaults to 10. The
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.1.0
4
+ version: 0.2.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-05 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.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.2.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: []