google-apis-discoveryengine_v1 0.17.0 → 0.18.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: 707a38075cb5ec43862ced439b8a3388632a99427743b938697b9f76caa68752
4
- data.tar.gz: e5925ee1bde4fffe24d779fe4cfb29a1588fdddd44b877d775bbdc9b44dce5cf
3
+ metadata.gz: 61542eb41766d8e0c8145ec914fc97f92246f1fec06257bf10525f1a4db07188
4
+ data.tar.gz: 4bb3d21bd126512066c92ee61056dd3d92040e3f7e5f15e3bf359f17e6735ff6
5
5
  SHA512:
6
- metadata.gz: 0d8be2c40351495f13a9429174c86b5c35de08b08c15c8afe7d38af9df427a640fcea87d809d87603082d44ebb75a872ea5c2b02d22d7269f7514d9304b27d9f
7
- data.tar.gz: b99e8c4661170f5d54c8412db267b9ca3540167e80c847a20129ce87f688aff765952ef53ba29b81cf0c074075afe81d14e6e11c6f139cdd7dc11e33f99a17e3
6
+ metadata.gz: fcb72bd8a2c9bcc04318a27bb5701f417aaf66449076713952bfff723dae30cb7296bcf51516a9072f16ae5d9bd4388bbe9e8ab45a2849e9721f7c9013f3cf73
7
+ data.tar.gz: 0f37a2304e2f3e961542162a18929b87f0d650e356b7078f2d925cf1e862aafc8fae603e189d2a058d4e4b56212ccd7f684e3d30ab6f66a80a08dae03b852b53
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.18.0 (2024-10-06)
4
+
5
+ * Regenerated from discovery document revision 20240930
6
+
3
7
  ### v0.17.0 (2024-09-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20240920
@@ -3227,6 +3227,12 @@ module Google
3227
3227
  # @return [String]
3228
3228
  attr_accessor :display_name
3229
3229
 
3230
+ # Currently this is only populated if the model state is `
3231
+ # INPUT_VALIDATION_FAILED`.
3232
+ # Corresponds to the JSON property `errorMessage`
3233
+ # @return [String]
3234
+ attr_accessor :error_message
3235
+
3230
3236
  # The metrics of the trained model.
3231
3237
  # Corresponds to the JSON property `metrics`
3232
3238
  # @return [Hash<String,Float>]
@@ -3263,6 +3269,7 @@ module Google
3263
3269
  def update!(**args)
3264
3270
  @create_time = args[:create_time] if args.key?(:create_time)
3265
3271
  @display_name = args[:display_name] if args.key?(:display_name)
3272
+ @error_message = args[:error_message] if args.key?(:error_message)
3266
3273
  @metrics = args[:metrics] if args.key?(:metrics)
3267
3274
  @model_state = args[:model_state] if args.key?(:model_state)
3268
3275
  @model_version = args[:model_version] if args.key?(:model_version)
@@ -4062,6 +4069,12 @@ module Google
4062
4069
  # @return [Array<String>]
4063
4070
  attr_accessor :data_store_ids
4064
4071
 
4072
+ # Optional. Whether to disable analytics for searches performed on this engine.
4073
+ # Corresponds to the JSON property `disableAnalytics`
4074
+ # @return [Boolean]
4075
+ attr_accessor :disable_analytics
4076
+ alias_method :disable_analytics?, :disable_analytics
4077
+
4065
4078
  # Required. The display name of the engine. Should be human readable. UTF-8
4066
4079
  # encoded string with limit of 1024 characters.
4067
4080
  # Corresponds to the JSON property `displayName`
@@ -4110,6 +4123,7 @@ module Google
4110
4123
  @common_config = args[:common_config] if args.key?(:common_config)
4111
4124
  @create_time = args[:create_time] if args.key?(:create_time)
4112
4125
  @data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
4126
+ @disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
4113
4127
  @display_name = args[:display_name] if args.key?(:display_name)
4114
4128
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
4115
4129
  @name = args[:name] if args.key?(:name)
@@ -8794,6 +8808,20 @@ module Google
8794
8808
  # @return [String]
8795
8809
  attr_accessor :dasher_customer_id
8796
8810
 
8811
+ # Optional. The super admin email address for the workspace that will be used
8812
+ # for access token generation. For now we only use it for Native Google Drive
8813
+ # connector data ingestion.
8814
+ # Corresponds to the JSON property `superAdminEmailAddress`
8815
+ # @return [String]
8816
+ attr_accessor :super_admin_email_address
8817
+
8818
+ # Optional. The super admin service account for the workspace that will be used
8819
+ # for access token generation. For now we only use it for Native Google Drive
8820
+ # connector data ingestion.
8821
+ # Corresponds to the JSON property `superAdminServiceAccount`
8822
+ # @return [String]
8823
+ attr_accessor :super_admin_service_account
8824
+
8797
8825
  # The Google Workspace data source.
8798
8826
  # Corresponds to the JSON property `type`
8799
8827
  # @return [String]
@@ -8806,6 +8834,8 @@ module Google
8806
8834
  # Update properties of this object
8807
8835
  def update!(**args)
8808
8836
  @dasher_customer_id = args[:dasher_customer_id] if args.key?(:dasher_customer_id)
8837
+ @super_admin_email_address = args[:super_admin_email_address] if args.key?(:super_admin_email_address)
8838
+ @super_admin_service_account = args[:super_admin_service_account] if args.key?(:super_admin_service_account)
8809
8839
  @type = args[:type] if args.key?(:type)
8810
8840
  end
8811
8841
  end
@@ -9920,6 +9950,12 @@ module Google
9920
9950
  # @return [String]
9921
9951
  attr_accessor :display_name
9922
9952
 
9953
+ # Currently this is only populated if the model state is `
9954
+ # INPUT_VALIDATION_FAILED`.
9955
+ # Corresponds to the JSON property `errorMessage`
9956
+ # @return [String]
9957
+ attr_accessor :error_message
9958
+
9923
9959
  # The metrics of the trained model.
9924
9960
  # Corresponds to the JSON property `metrics`
9925
9961
  # @return [Hash<String,Float>]
@@ -9956,6 +9992,7 @@ module Google
9956
9992
  def update!(**args)
9957
9993
  @create_time = args[:create_time] if args.key?(:create_time)
9958
9994
  @display_name = args[:display_name] if args.key?(:display_name)
9995
+ @error_message = args[:error_message] if args.key?(:error_message)
9959
9996
  @metrics = args[:metrics] if args.key?(:metrics)
9960
9997
  @model_state = args[:model_state] if args.key?(:model_state)
9961
9998
  @model_version = args[:model_version] if args.key?(:model_version)
@@ -10546,6 +10583,12 @@ module Google
10546
10583
  # @return [Array<String>]
10547
10584
  attr_accessor :data_store_ids
10548
10585
 
10586
+ # Optional. Whether to disable analytics for searches performed on this engine.
10587
+ # Corresponds to the JSON property `disableAnalytics`
10588
+ # @return [Boolean]
10589
+ attr_accessor :disable_analytics
10590
+ alias_method :disable_analytics?, :disable_analytics
10591
+
10549
10592
  # Required. The display name of the engine. Should be human readable. UTF-8
10550
10593
  # encoded string with limit of 1024 characters.
10551
10594
  # Corresponds to the JSON property `displayName`
@@ -10609,6 +10652,7 @@ module Google
10609
10652
  @common_config = args[:common_config] if args.key?(:common_config)
10610
10653
  @create_time = args[:create_time] if args.key?(:create_time)
10611
10654
  @data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
10655
+ @disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
10612
10656
  @display_name = args[:display_name] if args.key?(:display_name)
10613
10657
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
10614
10658
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
@@ -14087,6 +14131,20 @@ module Google
14087
14131
  # @return [String]
14088
14132
  attr_accessor :dasher_customer_id
14089
14133
 
14134
+ # Optional. The super admin email address for the workspace that will be used
14135
+ # for access token generation. For now we only use it for Native Google Drive
14136
+ # connector data ingestion.
14137
+ # Corresponds to the JSON property `superAdminEmailAddress`
14138
+ # @return [String]
14139
+ attr_accessor :super_admin_email_address
14140
+
14141
+ # Optional. The super admin service account for the workspace that will be used
14142
+ # for access token generation. For now we only use it for Native Google Drive
14143
+ # connector data ingestion.
14144
+ # Corresponds to the JSON property `superAdminServiceAccount`
14145
+ # @return [String]
14146
+ attr_accessor :super_admin_service_account
14147
+
14090
14148
  # The Google Workspace data source.
14091
14149
  # Corresponds to the JSON property `type`
14092
14150
  # @return [String]
@@ -14099,6 +14157,8 @@ module Google
14099
14157
  # Update properties of this object
14100
14158
  def update!(**args)
14101
14159
  @dasher_customer_id = args[:dasher_customer_id] if args.key?(:dasher_customer_id)
14160
+ @super_admin_email_address = args[:super_admin_email_address] if args.key?(:super_admin_email_address)
14161
+ @super_admin_service_account = args[:super_admin_service_account] if args.key?(:super_admin_service_account)
14102
14162
  @type = args[:type] if args.key?(:type)
14103
14163
  end
14104
14164
  end
@@ -14561,6 +14621,12 @@ module Google
14561
14621
  # @return [String]
14562
14622
  attr_accessor :display_name
14563
14623
 
14624
+ # Currently this is only populated if the model state is `
14625
+ # INPUT_VALIDATION_FAILED`.
14626
+ # Corresponds to the JSON property `errorMessage`
14627
+ # @return [String]
14628
+ attr_accessor :error_message
14629
+
14564
14630
  # The metrics of the trained model.
14565
14631
  # Corresponds to the JSON property `metrics`
14566
14632
  # @return [Hash<String,Float>]
@@ -14597,6 +14663,7 @@ module Google
14597
14663
  def update!(**args)
14598
14664
  @create_time = args[:create_time] if args.key?(:create_time)
14599
14665
  @display_name = args[:display_name] if args.key?(:display_name)
14666
+ @error_message = args[:error_message] if args.key?(:error_message)
14600
14667
  @metrics = args[:metrics] if args.key?(:metrics)
14601
14668
  @model_state = args[:model_state] if args.key?(:model_state)
14602
14669
  @model_version = args[:model_version] if args.key?(:model_version)
@@ -15169,6 +15236,12 @@ module Google
15169
15236
  # @return [Array<String>]
15170
15237
  attr_accessor :data_store_ids
15171
15238
 
15239
+ # Optional. Whether to disable analytics for searches performed on this engine.
15240
+ # Corresponds to the JSON property `disableAnalytics`
15241
+ # @return [Boolean]
15242
+ attr_accessor :disable_analytics
15243
+ alias_method :disable_analytics?, :disable_analytics
15244
+
15172
15245
  # Required. The display name of the engine. Should be human readable. UTF-8
15173
15246
  # encoded string with limit of 1024 characters.
15174
15247
  # Corresponds to the JSON property `displayName`
@@ -15217,6 +15290,7 @@ module Google
15217
15290
  @common_config = args[:common_config] if args.key?(:common_config)
15218
15291
  @create_time = args[:create_time] if args.key?(:create_time)
15219
15292
  @data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
15293
+ @disable_analytics = args[:disable_analytics] if args.key?(:disable_analytics)
15220
15294
  @display_name = args[:display_name] if args.key?(:display_name)
15221
15295
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
15222
15296
  @name = args[:name] if args.key?(:name)
@@ -17893,6 +17967,20 @@ module Google
17893
17967
  # @return [String]
17894
17968
  attr_accessor :dasher_customer_id
17895
17969
 
17970
+ # Optional. The super admin email address for the workspace that will be used
17971
+ # for access token generation. For now we only use it for Native Google Drive
17972
+ # connector data ingestion.
17973
+ # Corresponds to the JSON property `superAdminEmailAddress`
17974
+ # @return [String]
17975
+ attr_accessor :super_admin_email_address
17976
+
17977
+ # Optional. The super admin service account for the workspace that will be used
17978
+ # for access token generation. For now we only use it for Native Google Drive
17979
+ # connector data ingestion.
17980
+ # Corresponds to the JSON property `superAdminServiceAccount`
17981
+ # @return [String]
17982
+ attr_accessor :super_admin_service_account
17983
+
17896
17984
  # The Google Workspace data source.
17897
17985
  # Corresponds to the JSON property `type`
17898
17986
  # @return [String]
@@ -17905,6 +17993,8 @@ module Google
17905
17993
  # Update properties of this object
17906
17994
  def update!(**args)
17907
17995
  @dasher_customer_id = args[:dasher_customer_id] if args.key?(:dasher_customer_id)
17996
+ @super_admin_email_address = args[:super_admin_email_address] if args.key?(:super_admin_email_address)
17997
+ @super_admin_service_account = args[:super_admin_service_account] if args.key?(:super_admin_service_account)
17908
17998
  @type = args[:type] if args.key?(:type)
17909
17999
  end
17910
18000
  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.17.0"
19
+ GEM_VERSION = "0.18.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 = "20240920"
25
+ REVISION = "20240930"
26
26
  end
27
27
  end
28
28
  end
@@ -3897,6 +3897,7 @@ module Google
3897
3897
  class Representation < Google::Apis::Core::JsonRepresentation
3898
3898
  property :create_time, as: 'createTime'
3899
3899
  property :display_name, as: 'displayName'
3900
+ property :error_message, as: 'errorMessage'
3900
3901
  hash :metrics, as: 'metrics'
3901
3902
  property :model_state, as: 'modelState'
3902
3903
  property :model_version, :numeric_string => true, as: 'modelVersion'
@@ -4132,6 +4133,7 @@ module Google
4132
4133
 
4133
4134
  property :create_time, as: 'createTime'
4134
4135
  collection :data_store_ids, as: 'dataStoreIds'
4136
+ property :disable_analytics, as: 'disableAnalytics'
4135
4137
  property :display_name, as: 'displayName'
4136
4138
  property :industry_vertical, as: 'industryVertical'
4137
4139
  property :name, as: 'name'
@@ -5377,6 +5379,8 @@ module Google
5377
5379
  # @private
5378
5380
  class Representation < Google::Apis::Core::JsonRepresentation
5379
5381
  property :dasher_customer_id, as: 'dasherCustomerId'
5382
+ property :super_admin_email_address, as: 'superAdminEmailAddress'
5383
+ property :super_admin_service_account, as: 'superAdminServiceAccount'
5380
5384
  property :type, as: 'type'
5381
5385
  end
5382
5386
  end
@@ -5718,6 +5722,7 @@ module Google
5718
5722
  class Representation < Google::Apis::Core::JsonRepresentation
5719
5723
  property :create_time, as: 'createTime'
5720
5724
  property :display_name, as: 'displayName'
5725
+ property :error_message, as: 'errorMessage'
5721
5726
  hash :metrics, as: 'metrics'
5722
5727
  property :model_state, as: 'modelState'
5723
5728
  property :model_version, :numeric_string => true, as: 'modelVersion'
@@ -5900,6 +5905,7 @@ module Google
5900
5905
 
5901
5906
  property :create_time, as: 'createTime'
5902
5907
  collection :data_store_ids, as: 'dataStoreIds'
5908
+ property :disable_analytics, as: 'disableAnalytics'
5903
5909
  property :display_name, as: 'displayName'
5904
5910
  property :industry_vertical, as: 'industryVertical'
5905
5911
  property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
@@ -6820,6 +6826,8 @@ module Google
6820
6826
  # @private
6821
6827
  class Representation < Google::Apis::Core::JsonRepresentation
6822
6828
  property :dasher_customer_id, as: 'dasherCustomerId'
6829
+ property :super_admin_email_address, as: 'superAdminEmailAddress'
6830
+ property :super_admin_service_account, as: 'superAdminServiceAccount'
6823
6831
  property :type, as: 'type'
6824
6832
  end
6825
6833
  end
@@ -6961,6 +6969,7 @@ module Google
6961
6969
  class Representation < Google::Apis::Core::JsonRepresentation
6962
6970
  property :create_time, as: 'createTime'
6963
6971
  property :display_name, as: 'displayName'
6972
+ property :error_message, as: 'errorMessage'
6964
6973
  hash :metrics, as: 'metrics'
6965
6974
  property :model_state, as: 'modelState'
6966
6975
  property :model_version, :numeric_string => true, as: 'modelVersion'
@@ -7140,6 +7149,7 @@ module Google
7140
7149
 
7141
7150
  property :create_time, as: 'createTime'
7142
7151
  collection :data_store_ids, as: 'dataStoreIds'
7152
+ property :disable_analytics, as: 'disableAnalytics'
7143
7153
  property :display_name, as: 'displayName'
7144
7154
  property :industry_vertical, as: 'industryVertical'
7145
7155
  property :name, as: 'name'
@@ -7842,6 +7852,8 @@ module Google
7842
7852
  # @private
7843
7853
  class Representation < Google::Apis::Core::JsonRepresentation
7844
7854
  property :dasher_customer_id, as: 'dasherCustomerId'
7855
+ property :super_admin_email_address, as: 'superAdminEmailAddress'
7856
+ property :super_admin_service_account, as: 'superAdminServiceAccount'
7845
7857
  property :type, as: 'type'
7846
7858
  end
7847
7859
  end
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.17.0
4
+ version: 0.18.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-29 00:00:00.000000000 Z
11
+ date: 2024-10-06 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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.18.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: []