google-apis-discoveryengine_v1 0.48.0 → 0.50.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/discoveryengine_v1/classes.rb +208 -0
- data/lib/google/apis/discoveryengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1/representations.rb +106 -0
- data/lib/google/apis/discoveryengine_v1/service.rb +69 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c56926b6d1a6f6589d6a92e17bc30872f6f69fe0ab8fbdb154530cd41128a08
|
4
|
+
data.tar.gz: 89714260678dafd41acfa3d0cd7d218e3bee19a5632bb9e123b3cd458e3f37aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d08cf81627e3fe62b09528f3ceb92db877ee7af05c498beee3dc3999fb894c94aa369f2a23b818d89a878e10a0f4d564ae063ff3c3637f7dd52cdef8318614eb
|
7
|
+
data.tar.gz: c15f63d460481c99140d6ad6c7f1091179da4ada3255117159ebae26f3521d01cc8d159177a7102e70d4314dbb4c9a0baa3d91a28ca9e6753e1c57a646f6ea95
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-discoveryengine_v1
|
2
2
|
|
3
|
+
### v0.50.0 (2025-09-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250902
|
6
|
+
|
7
|
+
### v0.49.0 (2025-08-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250824
|
10
|
+
|
3
11
|
### v0.48.0 (2025-08-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250816
|
@@ -1432,6 +1432,33 @@ module Google
|
|
1432
1432
|
end
|
1433
1433
|
end
|
1434
1434
|
|
1435
|
+
# Access Control Configuration.
|
1436
|
+
class GoogleCloudDiscoveryengineV1AclConfig
|
1437
|
+
include Google::Apis::Core::Hashable
|
1438
|
+
|
1439
|
+
# Identity Provider Config.
|
1440
|
+
# Corresponds to the JSON property `idpConfig`
|
1441
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdpConfig]
|
1442
|
+
attr_accessor :idp_config
|
1443
|
+
|
1444
|
+
# Immutable. The full resource name of the acl configuration. Format: `projects/`
|
1445
|
+
# project`/locations/`location`/aclConfig`. This field must be a UTF-8 encoded
|
1446
|
+
# string with a length limit of 1024 characters.
|
1447
|
+
# Corresponds to the JSON property `name`
|
1448
|
+
# @return [String]
|
1449
|
+
attr_accessor :name
|
1450
|
+
|
1451
|
+
def initialize(**args)
|
1452
|
+
update!(**args)
|
1453
|
+
end
|
1454
|
+
|
1455
|
+
# Update properties of this object
|
1456
|
+
def update!(**args)
|
1457
|
+
@idp_config = args[:idp_config] if args.key?(:idp_config)
|
1458
|
+
@name = args[:name] if args.key?(:name)
|
1459
|
+
end
|
1460
|
+
end
|
1461
|
+
|
1435
1462
|
# Request message for CompletionService.AdvancedCompleteQuery method. .
|
1436
1463
|
class GoogleCloudDiscoveryengineV1AdvancedCompleteQueryRequest
|
1437
1464
|
include Google::Apis::Core::Hashable
|
@@ -7384,6 +7411,13 @@ module Google
|
|
7384
7411
|
class GoogleCloudDiscoveryengineV1Engine
|
7385
7412
|
include Google::Apis::Core::Hashable
|
7386
7413
|
|
7414
|
+
# Optional. Immutable. This the application type which this engine resource
|
7415
|
+
# represents. NOTE: this is a new concept independ of existing industry vertical
|
7416
|
+
# or solution type.
|
7417
|
+
# Corresponds to the JSON property `appType`
|
7418
|
+
# @return [String]
|
7419
|
+
attr_accessor :app_type
|
7420
|
+
|
7387
7421
|
# Configurations for a Chat Engine.
|
7388
7422
|
# Corresponds to the JSON property `chatEngineConfig`
|
7389
7423
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineChatEngineConfig]
|
@@ -7479,6 +7513,7 @@ module Google
|
|
7479
7513
|
|
7480
7514
|
# Update properties of this object
|
7481
7515
|
def update!(**args)
|
7516
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
7482
7517
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
7483
7518
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
7484
7519
|
@common_config = args[:common_config] if args.key?(:common_config)
|
@@ -8236,6 +8271,50 @@ module Google
|
|
8236
8271
|
end
|
8237
8272
|
end
|
8238
8273
|
|
8274
|
+
# Identity Provider Config.
|
8275
|
+
class GoogleCloudDiscoveryengineV1IdpConfig
|
8276
|
+
include Google::Apis::Core::Hashable
|
8277
|
+
|
8278
|
+
# Third party IDP Config.
|
8279
|
+
# Corresponds to the JSON property `externalIdpConfig`
|
8280
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig]
|
8281
|
+
attr_accessor :external_idp_config
|
8282
|
+
|
8283
|
+
# Identity provider type configured.
|
8284
|
+
# Corresponds to the JSON property `idpType`
|
8285
|
+
# @return [String]
|
8286
|
+
attr_accessor :idp_type
|
8287
|
+
|
8288
|
+
def initialize(**args)
|
8289
|
+
update!(**args)
|
8290
|
+
end
|
8291
|
+
|
8292
|
+
# Update properties of this object
|
8293
|
+
def update!(**args)
|
8294
|
+
@external_idp_config = args[:external_idp_config] if args.key?(:external_idp_config)
|
8295
|
+
@idp_type = args[:idp_type] if args.key?(:idp_type)
|
8296
|
+
end
|
8297
|
+
end
|
8298
|
+
|
8299
|
+
# Third party IDP Config.
|
8300
|
+
class GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig
|
8301
|
+
include Google::Apis::Core::Hashable
|
8302
|
+
|
8303
|
+
# Workforce pool name. Example: "locations/global/workforcePools/pool_id"
|
8304
|
+
# Corresponds to the JSON property `workforcePoolName`
|
8305
|
+
# @return [String]
|
8306
|
+
attr_accessor :workforce_pool_name
|
8307
|
+
|
8308
|
+
def initialize(**args)
|
8309
|
+
update!(**args)
|
8310
|
+
end
|
8311
|
+
|
8312
|
+
# Update properties of this object
|
8313
|
+
def update!(**args)
|
8314
|
+
@workforce_pool_name = args[:workforce_pool_name] if args.key?(:workforce_pool_name)
|
8315
|
+
end
|
8316
|
+
end
|
8317
|
+
|
8239
8318
|
# Metadata related to the progress of the ImportCompletionSuggestions operation.
|
8240
8319
|
# This will be returned by the google.longrunning.Operation.metadata field.
|
8241
8320
|
class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
|
@@ -15977,6 +16056,12 @@ module Google
|
|
15977
16056
|
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
|
15978
16057
|
attr_accessor :errors
|
15979
16058
|
|
16059
|
+
# Any params and credentials used specifically for hybrid connectors supporting
|
16060
|
+
# FEDERATED mode.
|
16061
|
+
# Corresponds to the JSON property `federatedConfig`
|
16062
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig]
|
16063
|
+
attr_accessor :federated_config
|
16064
|
+
|
15980
16065
|
# Optional. If the connector is a hybrid connector, determines whether ingestion
|
15981
16066
|
# is enabled and appropriate resources are provisioned during connector creation.
|
15982
16067
|
# If the connector is not a hybrid connector, this field is ignored.
|
@@ -16116,6 +16201,14 @@ module Google
|
|
16116
16201
|
# @return [String]
|
16117
16202
|
attr_accessor :refresh_interval
|
16118
16203
|
|
16204
|
+
# Optional. Specifies keys to be removed from the 'params' field. This is only
|
16205
|
+
# active when 'params' is included in the 'update_mask' in an
|
16206
|
+
# UpdateDataConnectorRequest. Deletion takes precedence if a key is both in '
|
16207
|
+
# remove_param_keys' and present in the 'params' field of the request.
|
16208
|
+
# Corresponds to the JSON property `removeParamKeys`
|
16209
|
+
# @return [Array<String>]
|
16210
|
+
attr_accessor :remove_param_keys
|
16211
|
+
|
16119
16212
|
# Output only. State of the connector.
|
16120
16213
|
# Corresponds to the JSON property `state`
|
16121
16214
|
# @return [String]
|
@@ -16164,6 +16257,7 @@ module Google
|
|
16164
16257
|
@end_user_config = args[:end_user_config] if args.key?(:end_user_config)
|
16165
16258
|
@entities = args[:entities] if args.key?(:entities)
|
16166
16259
|
@errors = args[:errors] if args.key?(:errors)
|
16260
|
+
@federated_config = args[:federated_config] if args.key?(:federated_config)
|
16167
16261
|
@hybrid_ingestion_disabled = args[:hybrid_ingestion_disabled] if args.key?(:hybrid_ingestion_disabled)
|
16168
16262
|
@identity_refresh_interval = args[:identity_refresh_interval] if args.key?(:identity_refresh_interval)
|
16169
16263
|
@identity_schedule_config = args[:identity_schedule_config] if args.key?(:identity_schedule_config)
|
@@ -16179,6 +16273,7 @@ module Google
|
|
16179
16273
|
@realtime_state = args[:realtime_state] if args.key?(:realtime_state)
|
16180
16274
|
@realtime_sync_config = args[:realtime_sync_config] if args.key?(:realtime_sync_config)
|
16181
16275
|
@refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
|
16276
|
+
@remove_param_keys = args[:remove_param_keys] if args.key?(:remove_param_keys)
|
16182
16277
|
@state = args[:state] if args.key?(:state)
|
16183
16278
|
@static_ip_addresses = args[:static_ip_addresses] if args.key?(:static_ip_addresses)
|
16184
16279
|
@static_ip_enabled = args[:static_ip_enabled] if args.key?(:static_ip_enabled)
|
@@ -16220,6 +16315,32 @@ module Google
|
|
16220
16315
|
end
|
16221
16316
|
end
|
16222
16317
|
|
16318
|
+
# Any params and credentials used specifically for hybrid connectors supporting
|
16319
|
+
# FEDERATED mode.
|
16320
|
+
class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
|
16321
|
+
include Google::Apis::Core::Hashable
|
16322
|
+
|
16323
|
+
# Optional. Any additional parameters needed for FEDERATED.
|
16324
|
+
# Corresponds to the JSON property `additionalParams`
|
16325
|
+
# @return [Hash<String,Object>]
|
16326
|
+
attr_accessor :additional_params
|
16327
|
+
|
16328
|
+
# Optional. Any authentication parameters specific to FEDERATED.
|
16329
|
+
# Corresponds to the JSON property `authParams`
|
16330
|
+
# @return [Hash<String,Object>]
|
16331
|
+
attr_accessor :auth_params
|
16332
|
+
|
16333
|
+
def initialize(**args)
|
16334
|
+
update!(**args)
|
16335
|
+
end
|
16336
|
+
|
16337
|
+
# Update properties of this object
|
16338
|
+
def update!(**args)
|
16339
|
+
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
16340
|
+
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
16341
|
+
end
|
16342
|
+
end
|
16343
|
+
|
16223
16344
|
# The configuration for realtime sync to store additional params for realtime
|
16224
16345
|
# sync.
|
16225
16346
|
class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
|
@@ -17237,6 +17358,13 @@ module Google
|
|
17237
17358
|
class GoogleCloudDiscoveryengineV1alphaEngine
|
17238
17359
|
include Google::Apis::Core::Hashable
|
17239
17360
|
|
17361
|
+
# Optional. Immutable. This the application type which this engine resource
|
17362
|
+
# represents. NOTE: this is a new concept independ of existing industry vertical
|
17363
|
+
# or solution type.
|
17364
|
+
# Corresponds to the JSON property `appType`
|
17365
|
+
# @return [String]
|
17366
|
+
attr_accessor :app_type
|
17367
|
+
|
17240
17368
|
# Configurations for a Chat Engine.
|
17241
17369
|
# Corresponds to the JSON property `chatEngineConfig`
|
17242
17370
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig]
|
@@ -17342,6 +17470,7 @@ module Google
|
|
17342
17470
|
|
17343
17471
|
# Update properties of this object
|
17344
17472
|
def update!(**args)
|
17473
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
17345
17474
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
17346
17475
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
17347
17476
|
@common_config = args[:common_config] if args.key?(:common_config)
|
@@ -21974,6 +22103,33 @@ module Google
|
|
21974
22103
|
end
|
21975
22104
|
end
|
21976
22105
|
|
22106
|
+
# Access Control Configuration.
|
22107
|
+
class GoogleCloudDiscoveryengineV1betaAclConfig
|
22108
|
+
include Google::Apis::Core::Hashable
|
22109
|
+
|
22110
|
+
# Identity Provider Config.
|
22111
|
+
# Corresponds to the JSON property `idpConfig`
|
22112
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaIdpConfig]
|
22113
|
+
attr_accessor :idp_config
|
22114
|
+
|
22115
|
+
# Immutable. The full resource name of the acl configuration. Format: `projects/`
|
22116
|
+
# project`/locations/`location`/aclConfig`. This field must be a UTF-8 encoded
|
22117
|
+
# string with a length limit of 1024 characters.
|
22118
|
+
# Corresponds to the JSON property `name`
|
22119
|
+
# @return [String]
|
22120
|
+
attr_accessor :name
|
22121
|
+
|
22122
|
+
def initialize(**args)
|
22123
|
+
update!(**args)
|
22124
|
+
end
|
22125
|
+
|
22126
|
+
# Update properties of this object
|
22127
|
+
def update!(**args)
|
22128
|
+
@idp_config = args[:idp_config] if args.key?(:idp_config)
|
22129
|
+
@name = args[:name] if args.key?(:name)
|
22130
|
+
end
|
22131
|
+
end
|
22132
|
+
|
21977
22133
|
# Configuration data for advance site search.
|
21978
22134
|
class GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig
|
21979
22135
|
include Google::Apis::Core::Hashable
|
@@ -23517,6 +23673,13 @@ module Google
|
|
23517
23673
|
class GoogleCloudDiscoveryengineV1betaEngine
|
23518
23674
|
include Google::Apis::Core::Hashable
|
23519
23675
|
|
23676
|
+
# Optional. Immutable. This the application type which this engine resource
|
23677
|
+
# represents. NOTE: this is a new concept independ of existing industry vertical
|
23678
|
+
# or solution type.
|
23679
|
+
# Corresponds to the JSON property `appType`
|
23680
|
+
# @return [String]
|
23681
|
+
attr_accessor :app_type
|
23682
|
+
|
23520
23683
|
# Configurations for a Chat Engine.
|
23521
23684
|
# Corresponds to the JSON property `chatEngineConfig`
|
23522
23685
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig]
|
@@ -23612,6 +23775,7 @@ module Google
|
|
23612
23775
|
|
23613
23776
|
# Update properties of this object
|
23614
23777
|
def update!(**args)
|
23778
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
23615
23779
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
23616
23780
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
23617
23781
|
@common_config = args[:common_config] if args.key?(:common_config)
|
@@ -24120,6 +24284,50 @@ module Google
|
|
24120
24284
|
end
|
24121
24285
|
end
|
24122
24286
|
|
24287
|
+
# Identity Provider Config.
|
24288
|
+
class GoogleCloudDiscoveryengineV1betaIdpConfig
|
24289
|
+
include Google::Apis::Core::Hashable
|
24290
|
+
|
24291
|
+
# Third party IDP Config.
|
24292
|
+
# Corresponds to the JSON property `externalIdpConfig`
|
24293
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig]
|
24294
|
+
attr_accessor :external_idp_config
|
24295
|
+
|
24296
|
+
# Identity provider type configured.
|
24297
|
+
# Corresponds to the JSON property `idpType`
|
24298
|
+
# @return [String]
|
24299
|
+
attr_accessor :idp_type
|
24300
|
+
|
24301
|
+
def initialize(**args)
|
24302
|
+
update!(**args)
|
24303
|
+
end
|
24304
|
+
|
24305
|
+
# Update properties of this object
|
24306
|
+
def update!(**args)
|
24307
|
+
@external_idp_config = args[:external_idp_config] if args.key?(:external_idp_config)
|
24308
|
+
@idp_type = args[:idp_type] if args.key?(:idp_type)
|
24309
|
+
end
|
24310
|
+
end
|
24311
|
+
|
24312
|
+
# Third party IDP Config.
|
24313
|
+
class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
|
24314
|
+
include Google::Apis::Core::Hashable
|
24315
|
+
|
24316
|
+
# Workforce pool name. Example: "locations/global/workforcePools/pool_id"
|
24317
|
+
# Corresponds to the JSON property `workforcePoolName`
|
24318
|
+
# @return [String]
|
24319
|
+
attr_accessor :workforce_pool_name
|
24320
|
+
|
24321
|
+
def initialize(**args)
|
24322
|
+
update!(**args)
|
24323
|
+
end
|
24324
|
+
|
24325
|
+
# Update properties of this object
|
24326
|
+
def update!(**args)
|
24327
|
+
@workforce_pool_name = args[:workforce_pool_name] if args.key?(:workforce_pool_name)
|
24328
|
+
end
|
24329
|
+
end
|
24330
|
+
|
24123
24331
|
# Metadata related to the progress of the ImportCompletionSuggestions operation.
|
24124
24332
|
# This will be returned by the google.longrunning.Operation.metadata field.
|
24125
24333
|
class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.50.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250902"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -196,6 +196,12 @@ module Google
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
197
197
|
end
|
198
198
|
|
199
|
+
class GoogleCloudDiscoveryengineV1AclConfig
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
199
205
|
class GoogleCloudDiscoveryengineV1AdvancedCompleteQueryRequest
|
200
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
207
|
|
@@ -1330,6 +1336,18 @@ module Google
|
|
1330
1336
|
include Google::Apis::Core::JsonObjectSupport
|
1331
1337
|
end
|
1332
1338
|
|
1339
|
+
class GoogleCloudDiscoveryengineV1IdpConfig
|
1340
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1341
|
+
|
1342
|
+
include Google::Apis::Core::JsonObjectSupport
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
class GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig
|
1346
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1347
|
+
|
1348
|
+
include Google::Apis::Core::JsonObjectSupport
|
1349
|
+
end
|
1350
|
+
|
1333
1351
|
class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
|
1334
1352
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1335
1353
|
|
@@ -2536,6 +2554,12 @@ module Google
|
|
2536
2554
|
include Google::Apis::Core::JsonObjectSupport
|
2537
2555
|
end
|
2538
2556
|
|
2557
|
+
class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
|
2558
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2559
|
+
|
2560
|
+
include Google::Apis::Core::JsonObjectSupport
|
2561
|
+
end
|
2562
|
+
|
2539
2563
|
class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
|
2540
2564
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2541
2565
|
|
@@ -3448,6 +3472,12 @@ module Google
|
|
3448
3472
|
include Google::Apis::Core::JsonObjectSupport
|
3449
3473
|
end
|
3450
3474
|
|
3475
|
+
class GoogleCloudDiscoveryengineV1betaAclConfig
|
3476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3477
|
+
|
3478
|
+
include Google::Apis::Core::JsonObjectSupport
|
3479
|
+
end
|
3480
|
+
|
3451
3481
|
class GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig
|
3452
3482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3453
3483
|
|
@@ -3814,6 +3844,18 @@ module Google
|
|
3814
3844
|
include Google::Apis::Core::JsonObjectSupport
|
3815
3845
|
end
|
3816
3846
|
|
3847
|
+
class GoogleCloudDiscoveryengineV1betaIdpConfig
|
3848
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3849
|
+
|
3850
|
+
include Google::Apis::Core::JsonObjectSupport
|
3851
|
+
end
|
3852
|
+
|
3853
|
+
class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
|
3854
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3855
|
+
|
3856
|
+
include Google::Apis::Core::JsonObjectSupport
|
3857
|
+
end
|
3858
|
+
|
3817
3859
|
class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
|
3818
3860
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3819
3861
|
|
@@ -4660,6 +4702,15 @@ module Google
|
|
4660
4702
|
end
|
4661
4703
|
end
|
4662
4704
|
|
4705
|
+
class GoogleCloudDiscoveryengineV1AclConfig
|
4706
|
+
# @private
|
4707
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4708
|
+
property :idp_config, as: 'idpConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdpConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdpConfig::Representation
|
4709
|
+
|
4710
|
+
property :name, as: 'name'
|
4711
|
+
end
|
4712
|
+
end
|
4713
|
+
|
4663
4714
|
class GoogleCloudDiscoveryengineV1AdvancedCompleteQueryRequest
|
4664
4715
|
# @private
|
4665
4716
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6335,6 +6386,7 @@ module Google
|
|
6335
6386
|
class GoogleCloudDiscoveryengineV1Engine
|
6336
6387
|
# @private
|
6337
6388
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6389
|
+
property :app_type, as: 'appType'
|
6338
6390
|
property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineChatEngineConfig::Representation
|
6339
6391
|
|
6340
6392
|
property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineChatEngineMetadata::Representation
|
@@ -6555,6 +6607,22 @@ module Google
|
|
6555
6607
|
end
|
6556
6608
|
end
|
6557
6609
|
|
6610
|
+
class GoogleCloudDiscoveryengineV1IdpConfig
|
6611
|
+
# @private
|
6612
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6613
|
+
property :external_idp_config, as: 'externalIdpConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig::Representation
|
6614
|
+
|
6615
|
+
property :idp_type, as: 'idpType'
|
6616
|
+
end
|
6617
|
+
end
|
6618
|
+
|
6619
|
+
class GoogleCloudDiscoveryengineV1IdpConfigExternalIdpConfig
|
6620
|
+
# @private
|
6621
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6622
|
+
property :workforce_pool_name, as: 'workforcePoolName'
|
6623
|
+
end
|
6624
|
+
end
|
6625
|
+
|
6558
6626
|
class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
|
6559
6627
|
# @private
|
6560
6628
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8628,6 +8696,8 @@ module Google
|
|
8628
8696
|
|
8629
8697
|
collection :errors, as: 'errors', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
|
8630
8698
|
|
8699
|
+
property :federated_config, as: 'federatedConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig::Representation
|
8700
|
+
|
8631
8701
|
property :hybrid_ingestion_disabled, as: 'hybridIngestionDisabled'
|
8632
8702
|
property :identity_refresh_interval, as: 'identityRefreshInterval'
|
8633
8703
|
property :identity_schedule_config, as: 'identityScheduleConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig::Representation
|
@@ -8646,6 +8716,7 @@ module Google
|
|
8646
8716
|
property :realtime_sync_config, as: 'realtimeSyncConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig::Representation
|
8647
8717
|
|
8648
8718
|
property :refresh_interval, as: 'refreshInterval'
|
8719
|
+
collection :remove_param_keys, as: 'removeParamKeys'
|
8649
8720
|
property :state, as: 'state'
|
8650
8721
|
collection :static_ip_addresses, as: 'staticIpAddresses'
|
8651
8722
|
property :static_ip_enabled, as: 'staticIpEnabled'
|
@@ -8664,6 +8735,14 @@ module Google
|
|
8664
8735
|
end
|
8665
8736
|
end
|
8666
8737
|
|
8738
|
+
class GoogleCloudDiscoveryengineV1alphaDataConnectorFederatedConfig
|
8739
|
+
# @private
|
8740
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8741
|
+
hash :additional_params, as: 'additionalParams'
|
8742
|
+
hash :auth_params, as: 'authParams'
|
8743
|
+
end
|
8744
|
+
end
|
8745
|
+
|
8667
8746
|
class GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig
|
8668
8747
|
# @private
|
8669
8748
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8957,6 +9036,7 @@ module Google
|
|
8957
9036
|
class GoogleCloudDiscoveryengineV1alphaEngine
|
8958
9037
|
# @private
|
8959
9038
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9039
|
+
property :app_type, as: 'appType'
|
8960
9040
|
property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig::Representation
|
8961
9041
|
|
8962
9042
|
property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineChatEngineMetadata::Representation
|
@@ -10177,6 +10257,15 @@ module Google
|
|
10177
10257
|
end
|
10178
10258
|
end
|
10179
10259
|
|
10260
|
+
class GoogleCloudDiscoveryengineV1betaAclConfig
|
10261
|
+
# @private
|
10262
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10263
|
+
property :idp_config, as: 'idpConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaIdpConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaIdpConfig::Representation
|
10264
|
+
|
10265
|
+
property :name, as: 'name'
|
10266
|
+
end
|
10267
|
+
end
|
10268
|
+
|
10180
10269
|
class GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig
|
10181
10270
|
# @private
|
10182
10271
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10619,6 +10708,7 @@ module Google
|
|
10619
10708
|
class GoogleCloudDiscoveryengineV1betaEngine
|
10620
10709
|
# @private
|
10621
10710
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10711
|
+
property :app_type, as: 'appType'
|
10622
10712
|
property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig::Representation
|
10623
10713
|
|
10624
10714
|
property :chat_engine_metadata, as: 'chatEngineMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineChatEngineMetadata::Representation
|
@@ -10780,6 +10870,22 @@ module Google
|
|
10780
10870
|
end
|
10781
10871
|
end
|
10782
10872
|
|
10873
|
+
class GoogleCloudDiscoveryengineV1betaIdpConfig
|
10874
|
+
# @private
|
10875
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10876
|
+
property :external_idp_config, as: 'externalIdpConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig::Representation
|
10877
|
+
|
10878
|
+
property :idp_type, as: 'idpType'
|
10879
|
+
end
|
10880
|
+
end
|
10881
|
+
|
10882
|
+
class GoogleCloudDiscoveryengineV1betaIdpConfigExternalIdpConfig
|
10883
|
+
# @private
|
10884
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10885
|
+
property :workforce_pool_name, as: 'workforcePoolName'
|
10886
|
+
end
|
10887
|
+
end
|
10888
|
+
|
10783
10889
|
class GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata
|
10784
10890
|
# @private
|
10785
10891
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -133,6 +133,38 @@ module Google
|
|
133
133
|
execute_or_queue_command(command, &block)
|
134
134
|
end
|
135
135
|
|
136
|
+
# Gets the AclConfig.
|
137
|
+
# @param [String] name
|
138
|
+
# Required. Resource name of AclConfig, such as `projects/*/locations/*/
|
139
|
+
# aclConfig`. If the caller does not have permission to access the AclConfig,
|
140
|
+
# regardless of whether or not it exists, a PERMISSION_DENIED error is returned.
|
141
|
+
# @param [String] fields
|
142
|
+
# Selector specifying which fields to include in a partial response.
|
143
|
+
# @param [String] quota_user
|
144
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
145
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
146
|
+
# @param [Google::Apis::RequestOptions] options
|
147
|
+
# Request-specific options
|
148
|
+
#
|
149
|
+
# @yield [result, err] Result & error if block supplied
|
150
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig] parsed result object
|
151
|
+
# @yieldparam err [StandardError] error object if request failed
|
152
|
+
#
|
153
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig]
|
154
|
+
#
|
155
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
156
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
157
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
158
|
+
def get_project_location_acl_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
159
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
160
|
+
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig::Representation
|
161
|
+
command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig
|
162
|
+
command.params['name'] = name unless name.nil?
|
163
|
+
command.query['fields'] = fields unless fields.nil?
|
164
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
165
|
+
execute_or_queue_command(command, &block)
|
166
|
+
end
|
167
|
+
|
136
168
|
# Gets the CmekConfig.
|
137
169
|
# @param [String] name
|
138
170
|
# Required. Resource name of CmekConfig, such as `projects/*/locations/*/
|
@@ -166,6 +198,43 @@ module Google
|
|
166
198
|
execute_or_queue_command(command, &block)
|
167
199
|
end
|
168
200
|
|
201
|
+
# Default ACL configuration for use in a location of a customer's project.
|
202
|
+
# Updates will only reflect to new data stores. Existing data stores will still
|
203
|
+
# use the old value.
|
204
|
+
# @param [String] name
|
205
|
+
# Immutable. The full resource name of the acl configuration. Format: `projects/`
|
206
|
+
# project`/locations/`location`/aclConfig`. This field must be a UTF-8 encoded
|
207
|
+
# string with a length limit of 1024 characters.
|
208
|
+
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig] google_cloud_discoveryengine_v1_acl_config_object
|
209
|
+
# @param [String] fields
|
210
|
+
# Selector specifying which fields to include in a partial response.
|
211
|
+
# @param [String] quota_user
|
212
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
213
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
214
|
+
# @param [Google::Apis::RequestOptions] options
|
215
|
+
# Request-specific options
|
216
|
+
#
|
217
|
+
# @yield [result, err] Result & error if block supplied
|
218
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig] parsed result object
|
219
|
+
# @yieldparam err [StandardError] error object if request failed
|
220
|
+
#
|
221
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig]
|
222
|
+
#
|
223
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
224
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
225
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
226
|
+
def update_project_location_acl_config(name, google_cloud_discoveryengine_v1_acl_config_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
227
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
228
|
+
command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig::Representation
|
229
|
+
command.request_object = google_cloud_discoveryengine_v1_acl_config_object
|
230
|
+
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig::Representation
|
231
|
+
command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AclConfig
|
232
|
+
command.params['name'] = name unless name.nil?
|
233
|
+
command.query['fields'] = fields unless fields.nil?
|
234
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
235
|
+
execute_or_queue_command(command, &block)
|
236
|
+
end
|
237
|
+
|
169
238
|
# Provisions a CMEK key for use in a location of a customer's project. This
|
170
239
|
# method will also conduct location validation on the provided cmekConfig to
|
171
240
|
# make sure the key is valid and can be used in the selected location.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.50.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.50.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|